summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx
blob: 9eb10f3f58adc0fba76efd8c23ac815c1fcaf9ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 *  The Contents of this file are made available subject to the terms of
 *  the BSD license.
 *
 *  Copyright 2000, 2010 Oracle and/or its affiliates.
 *  All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *  3. Neither the name of Sun Microsystems, Inc. nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *************************************************************************/

#include "SDriver.hxx"
#include "SConnection.hxx"

using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
using namespace com::sun::star::beans;
using namespace com::sun::star::sdbc;
using namespace connectivity::skeleton;

namespace connectivity
{
    namespace skeleton
    {
        //------------------------------------------------------------------
        ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >  SAL_CALL SkeletonDriver_CreateInstance(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxFactory) throw( ::com::sun::star::uno::Exception )
        {
            return *(new SkeletonDriver());
        }
    }
}
// --------------------------------------------------------------------------------
SkeletonDriver::SkeletonDriver()
    : ODriver_BASE(m_aMutex)
{
}
// --------------------------------------------------------------------------------
void SkeletonDriver::disposing()
{
    ::osl::MutexGuard aGuard(m_aMutex);

    // when driver will be destroied so all our connections have to be destroied as well
    for (OWeakRefArray::iterator i = m_xConnections.begin(); m_xConnections.end() != i; ++i)
    {
        Reference< XComponent > xComp(i->get(), UNO_QUERY);
        if (xComp.is())
            xComp->dispose();
    }
    m_xConnections.clear();

    ODriver_BASE::disposing();
}

// static ServiceInfo
//------------------------------------------------------------------------------
rtl::OUString SkeletonDriver::getImplementationName_Static(  ) throw(RuntimeException)
{
    return rtl::OUString("com.sun.star.comp.sdbc.SkeletonDriver");
        // this name is referenced in the configuration and in the skeleton.xml
        // Please take care when changing it.
}
//------------------------------------------------------------------------------
Sequence< ::rtl::OUString > SkeletonDriver::getSupportedServiceNames_Static(  ) throw (RuntimeException)
{
    // which service is supported
    // for more information @see com.sun.star.sdbc.Driver
    Sequence< ::rtl::OUString > aSNS( 1 );
    aSNS[0] = ::rtl::OUString("com.sun.star.sdbc.Driver");
    return aSNS;
}

//------------------------------------------------------------------
::rtl::OUString SAL_CALL SkeletonDriver::getImplementationName(  ) throw(RuntimeException)
{
    return getImplementationName_Static();
}

//------------------------------------------------------------------
sal_Bool SAL_CALL SkeletonDriver::supportsService( const ::rtl::OUString& _rServiceName ) throw(RuntimeException)
{
    Sequence< ::rtl::OUString > aSupported(getSupportedServiceNames());
    const ::rtl::OUString* pSupported = aSupported.getConstArray();
    const ::rtl::OUString* pEnd = pSupported + aSupported.getLength();
    for (;pSupported != pEnd && !pSupported->equals(_rServiceName); ++pSupported)
        ;

    return pSupported != pEnd;
}

//------------------------------------------------------------------
Sequence< ::rtl::OUString > SAL_CALL SkeletonDriver::getSupportedServiceNames(  ) throw(RuntimeException)
{
    return getSupportedServiceNames_Static();
}

// --------------------------------------------------------------------------------
Reference< XConnection > SAL_CALL SkeletonDriver::connect( const ::rtl::OUString& url, const Sequence< PropertyValue >& info ) throw(SQLException, RuntimeException)
{
    // create a new connection with the given properties and append it to our vector
    OConnection* pCon = new OConnection(this);
    Reference< XConnection > xCon = pCon;   // important here because otherwise the connection could be deleted inside (refcount goes -> 0)
    pCon->construct(url,info);              // late constructor call which can throw exception and allows a correct dtor call when so
    m_xConnections.push_back(WeakReferenceHelper(*pCon));

    return xCon;
}
// --------------------------------------------------------------------------------
sal_Bool SAL_CALL SkeletonDriver::acceptsURL( const ::rtl::OUString& url )
        throw(SQLException, RuntimeException)
{
    // here we have to look if we support this url format
    // change the URL format to your needs, but please aware that the first on who accepts the URl wins.
    return (!url.compareTo(::rtl::OUString("sdbc:skeleton:"),14));
}
// --------------------------------------------------------------------------------
Sequence< DriverPropertyInfo > SAL_CALL SkeletonDriver::getPropertyInfo( const ::rtl::OUString& url, const Sequence< PropertyValue >& info ) throw(SQLException, RuntimeException)
{
    // if you have somthing special to say, return it here :-)
    return Sequence< DriverPropertyInfo >();
}
// --------------------------------------------------------------------------------
sal_Int32 SAL_CALL SkeletonDriver::getMajorVersion(  ) throw(RuntimeException)
{
    return 0; // depends on you
}
// --------------------------------------------------------------------------------
sal_Int32 SAL_CALL SkeletonDriver::getMinorVersion(  ) throw(RuntimeException)
{
    return 1; // depends on you
}
// --------------------------------------------------------------------------------

//.........................................................................
namespace connectivity
{
    namespace skeleton
    {
//.........................................................................

void release(oslInterlockedCount& _refCount,
             ::cppu::OBroadcastHelper& rBHelper,
             ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _xInterface,
             ::com::sun::star::lang::XComponent* _pObject)
{
    if (osl_atomic_decrement( &_refCount ) == 0)
    {
        osl_atomic_increment( &_refCount );

        if (!rBHelper.bDisposed && !rBHelper.bInDispose)
        {
            // remember the parent
            ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xParent;
            {
                ::osl::MutexGuard aGuard( rBHelper.rMutex );
                xParent = _xInterface;
                _xInterface = NULL;
            }

            // First dispose
            _pObject->dispose();

            // only the alive ref holds the object
            OSL_ASSERT( _refCount == 1 );

            // release the parent in the ~
            if (xParent.is())
            {
                ::osl::MutexGuard aGuard( rBHelper.rMutex );
                _xInterface = xParent;
            }
        }
    }
    else
        osl_atomic_increment( &_refCount );
}

void checkDisposed(sal_Bool _bThrow) throw ( DisposedException )
{
    if (_bThrow)
        throw DisposedException();

}
//.........................................................................
    }
}
//.........................................................................

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
openoffice/Office/UI.po?h=cp-6.4-27&id=3a8e01f5e88f26c3a455d3cf8c2b92c3d7b11422'>source/as/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/as/sc/source/ui/src.po6
-rw-r--r--source/as/sfx2/source/view.po10
-rw-r--r--source/as/svtools/source/control.po106
-rw-r--r--source/as/svtools/source/misc.po17
-rw-r--r--source/as/sw/source/core/undo.po62
-rw-r--r--source/as/sw/source/uibase/docvw.po42
-rw-r--r--source/as/sw/source/uibase/ribbar.po10
-rw-r--r--source/as/sw/source/uibase/uiview.po10
-rw-r--r--source/as/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ast/desktop/source/deployment/gui.po24
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ast/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ast/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ast/sc/source/ui/src.po6
-rw-r--r--source/ast/sfx2/source/view.po10
-rw-r--r--source/ast/svtools/source/control.po106
-rw-r--r--source/ast/svtools/source/misc.po17
-rw-r--r--source/ast/sw/source/core/undo.po62
-rw-r--r--source/ast/sw/source/uibase/docvw.po42
-rw-r--r--source/ast/sw/source/uibase/ribbar.po10
-rw-r--r--source/ast/sw/source/uibase/uiview.po10
-rw-r--r--source/ast/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/be/chart2/source/controller/dialogs.po8
-rw-r--r--source/be/connectivity/source/resource.po6
-rw-r--r--source/be/cui/source/tabpages.po6
-rw-r--r--source/be/cui/uiconfig/ui.po159
-rw-r--r--source/be/desktop/source/deployment/gui.po20
-rw-r--r--source/be/dictionaries/en/dialog.po8
-rw-r--r--source/be/dictionaries/is.po10
-rw-r--r--source/be/dictionaries/lo_LA.po12
-rw-r--r--source/be/editeng/source/items.po30
-rw-r--r--source/be/extensions/source/propctrlr.po6
-rw-r--r--source/be/extras/source/autocorr/emoji.po22
-rw-r--r--source/be/filter/source/config/fragments/filters.po14
-rw-r--r--source/be/filter/source/pdf.po12
-rw-r--r--source/be/filter/uiconfig/ui.po12
-rw-r--r--source/be/formula/source/core/resource.po51
-rw-r--r--source/be/fpicker/source/office.po6
-rw-r--r--source/be/fpicker/uiconfig/ui.po12
-rw-r--r--source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po14
-rw-r--r--source/be/librelogo/source/pythonpath.po25
-rw-r--r--source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/be/nlpsolver/src/locale.po7
-rw-r--r--source/be/officecfg/registry/data/org/openoffice.po14
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office.po332
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po1741
-rw-r--r--source/be/readlicense_oo/docs.po32
-rw-r--r--source/be/reportdesign/source/ui/dlg.po7
-rw-r--r--source/be/reportdesign/source/ui/inspection.po12
-rw-r--r--source/be/reportdesign/source/ui/report.po7
-rw-r--r--source/be/sc/source/ui/StatisticsDialogs.po14
-rw-r--r--source/be/sc/source/ui/miscdlgs.po19
-rw-r--r--source/be/sc/source/ui/navipi.po23
-rw-r--r--source/be/sc/source/ui/src.po231
-rw-r--r--source/be/sc/uiconfig/scalc/ui.po326
-rw-r--r--source/be/scaddins/source/analysis.po178
-rw-r--r--source/be/scaddins/source/pricing.po18
-rw-r--r--source/be/scp2/source/activex.po10
-rw-r--r--source/be/scp2/source/calc.po8
-rw-r--r--source/be/scp2/source/ooo.po23
-rw-r--r--source/be/sd/source/ui/app.po8
-rw-r--r--source/be/sd/source/ui/view.po24
-rw-r--r--source/be/sd/uiconfig/sdraw/ui.po20
-rw-r--r--source/be/sd/uiconfig/simpress/ui.po62
-rw-r--r--source/be/sfx2/source/dialog.po28
-rw-r--r--source/be/sfx2/source/view.po10
-rw-r--r--source/be/sfx2/uiconfig/ui.po48
-rw-r--r--source/be/starmath/source.po43
-rw-r--r--source/be/starmath/uiconfig/smath/ui.po14
-rw-r--r--source/be/svl/source/misc.po18
-rw-r--r--source/be/svtools/source/control.po106
-rw-r--r--source/be/svtools/source/dialogs.po8
-rw-r--r--source/be/svtools/source/misc.po50
-rw-r--r--source/be/svtools/uiconfig/ui.po75
-rw-r--r--source/be/svx/source/dialog.po29
-rw-r--r--source/be/svx/source/form.po8
-rw-r--r--source/be/svx/source/items.po13
-rw-r--r--source/be/svx/source/src.po9
-rw-r--r--source/be/svx/source/tbxctrls.po13
-rw-r--r--source/be/svx/uiconfig/ui.po147
-rw-r--r--source/be/sw/source/core/undo.po81
-rw-r--r--source/be/sw/source/core/unocore.po12
-rw-r--r--source/be/sw/source/ui/app.po52
-rw-r--r--source/be/sw/source/ui/config.po31
-rw-r--r--source/be/sw/source/ui/dbui.po51
-rw-r--r--source/be/sw/source/ui/dochdl.po13
-rw-r--r--source/be/sw/source/ui/envelp.po9
-rw-r--r--source/be/sw/source/ui/fldui.po18
-rw-r--r--source/be/sw/source/ui/index.po56
-rw-r--r--source/be/sw/source/ui/shells.po10
-rw-r--r--source/be/sw/source/ui/sidebar.po20
-rw-r--r--source/be/sw/source/ui/utlui.po83
-rw-r--r--source/be/sw/source/uibase/dbui.po20
-rw-r--r--source/be/sw/source/uibase/dialog.po10
-rw-r--r--source/be/sw/source/uibase/docvw.po90
-rw-r--r--source/be/sw/source/uibase/lingu.po20
-rw-r--r--source/be/sw/source/uibase/ribbar.po112
-rw-r--r--source/be/sw/source/uibase/uiview.po36
-rw-r--r--source/be/sw/source/uibase/utlui.po70
-rw-r--r--source/be/sw/uiconfig/swriter/ui.po402
-rw-r--r--source/be/swext/mediawiki/help.po5
-rw-r--r--source/be/wizards/source/formwizard.po79
-rw-r--r--source/be/xmlsecurity/source/dialogs.po8
-rw-r--r--source/be/xmlsecurity/uiconfig/ui.po77
-rw-r--r--source/bg/chart2/uiconfig/ui.po6
-rw-r--r--source/bg/cui/uiconfig/ui.po6
-rw-r--r--source/bg/desktop/source/deployment/gui.po24
-rw-r--r--source/bg/filter/source/config/fragments/filters.po8
-rw-r--r--source/bg/filter/source/config/fragments/types.po8
-rw-r--r--source/bg/filter/uiconfig/ui.po6
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/bg/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/bg/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/bg/helpcontent2/source/text/swriter.po6
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po76
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po166
-rw-r--r--source/bg/sc/source/ui/src.po12
-rw-r--r--source/bg/sd/source/ui/app.po6
-rw-r--r--source/bg/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/bg/sfx2/source/view.po12
-rw-r--r--source/bg/starmath/source.po6
-rw-r--r--source/bg/svtools/source/control.po106
-rw-r--r--source/bg/svtools/source/misc.po17
-rw-r--r--source/bg/svx/source/dialog.po8
-rw-r--r--source/bg/svx/source/tbxctrls.po6
-rw-r--r--source/bg/svx/uiconfig/ui.po251
-rw-r--r--source/bg/sw/source/core/undo.po74
-rw-r--r--source/bg/sw/source/uibase/docvw.po42
-rw-r--r--source/bg/sw/source/uibase/ribbar.po10
-rw-r--r--source/bg/sw/source/uibase/uiview.po10
-rw-r--r--source/bg/sw/uiconfig/swriter/ui.po38
-rw-r--r--source/bg/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/bn-IN/desktop/source/deployment/gui.po26
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/bn-IN/sc/source/ui/src.po6
-rw-r--r--source/bn-IN/sfx2/source/view.po10
-rw-r--r--source/bn-IN/svtools/source/control.po106
-rw-r--r--source/bn-IN/svtools/source/misc.po17
-rw-r--r--source/bn-IN/sw/source/core/undo.po62
-rw-r--r--source/bn-IN/sw/source/uibase/docvw.po42
-rw-r--r--source/bn-IN/sw/source/uibase/ribbar.po10
-rw-r--r--source/bn-IN/sw/source/uibase/uiview.po10
-rw-r--r--source/bn-IN/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/bn/desktop/source/deployment/gui.po24
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/bn/helpcontent2/source/text/swriter.po6
-rw-r--r--source/bn/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/bn/sc/source/ui/src.po6
-rw-r--r--source/bn/sfx2/source/view.po10
-rw-r--r--source/bn/svtools/source/control.po106
-rw-r--r--source/bn/svtools/source/misc.po17
-rw-r--r--source/bn/sw/source/core/undo.po62
-rw-r--r--source/bn/sw/source/uibase/docvw.po42
-rw-r--r--source/bn/sw/source/uibase/ribbar.po10
-rw-r--r--source/bn/sw/source/uibase/uiview.po10
-rw-r--r--source/bn/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/bo/desktop/source/deployment/gui.po24
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/bo/helpcontent2/source/text/swriter.po6
-rw-r--r--source/bo/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po58
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/bo/sc/source/ui/src.po6
-rw-r--r--source/bo/sfx2/source/view.po10
-rw-r--r--source/bo/svtools/source/control.po106
-rw-r--r--source/bo/svtools/source/misc.po15
-rw-r--r--source/bo/sw/source/core/undo.po62
-rw-r--r--source/bo/sw/source/uibase/docvw.po42
-rw-r--r--source/bo/sw/source/uibase/ribbar.po10
-rw-r--r--source/bo/sw/source/uibase/uiview.po10
-rw-r--r--source/bo/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/br/desktop/source/deployment/gui.po26
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/br/sc/source/ui/src.po6
-rw-r--r--source/br/sfx2/source/view.po10
-rw-r--r--source/br/svtools/source/control.po106
-rw-r--r--source/br/svtools/source/misc.po17
-rw-r--r--source/br/sw/source/core/undo.po62
-rw-r--r--source/br/sw/source/uibase/docvw.po42
-rw-r--r--source/br/sw/source/uibase/ribbar.po10
-rw-r--r--source/br/sw/source/uibase/uiview.po10
-rw-r--r--source/br/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/brx/desktop/source/deployment/gui.po24
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/brx/sc/source/ui/src.po6
-rw-r--r--source/brx/sfx2/source/view.po10
-rw-r--r--source/brx/svtools/source/control.po106
-rw-r--r--source/brx/svtools/source/misc.po15
-rw-r--r--source/brx/sw/source/core/undo.po62
-rw-r--r--source/brx/sw/source/uibase/docvw.po42
-rw-r--r--source/brx/sw/source/uibase/ribbar.po10
-rw-r--r--source/brx/sw/source/uibase/uiview.po10
-rw-r--r--source/brx/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/bs/desktop/source/deployment/gui.po24
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/bs/helpcontent2/source/text/swriter.po4
-rw-r--r--source/bs/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/bs/sc/source/ui/src.po6
-rw-r--r--source/bs/sfx2/source/view.po10
-rw-r--r--source/bs/svtools/source/control.po106
-rw-r--r--source/bs/svtools/source/misc.po17
-rw-r--r--source/bs/sw/source/core/undo.po62
-rw-r--r--source/bs/sw/source/uibase/docvw.po42
-rw-r--r--source/bs/sw/source/uibase/ribbar.po10
-rw-r--r--source/bs/sw/source/uibase/uiview.po10
-rw-r--r--source/bs/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ca-valencia/desktop/source/deployment/gui.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ca-valencia/sc/source/ui/src.po6
-rw-r--r--source/ca-valencia/sfx2/source/view.po10
-rw-r--r--source/ca-valencia/svtools/source/control.po106
-rw-r--r--source/ca-valencia/svtools/source/misc.po17
-rw-r--r--source/ca-valencia/sw/source/core/undo.po62
-rw-r--r--source/ca-valencia/sw/source/uibase/docvw.po42
-rw-r--r--source/ca-valencia/sw/source/uibase/ribbar.po10
-rw-r--r--source/ca-valencia/sw/source/uibase/uiview.po10
-rw-r--r--source/ca-valencia/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ca/desktop/source/deployment/gui.po26
-rw-r--r--source/ca/filter/source/config/fragments/filters.po8
-rw-r--r--source/ca/filter/source/config/fragments/types.po8
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po60
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po159
-rw-r--r--source/ca/sc/source/ui/src.po13
-rw-r--r--source/ca/scp2/source/ooo.po10
-rw-r--r--source/ca/sd/source/ui/app.po8
-rw-r--r--source/ca/sd/uiconfig/simpress/ui.po14
-rw-r--r--source/ca/sfx2/source/view.po12
-rw-r--r--source/ca/svtools/source/control.po106
-rw-r--r--source/ca/svtools/source/misc.po17
-rw-r--r--source/ca/sw/source/core/undo.po64
-rw-r--r--source/ca/sw/source/uibase/docvw.po42
-rw-r--r--source/ca/sw/source/uibase/ribbar.po10
-rw-r--r--source/ca/sw/source/uibase/uiview.po10
-rw-r--r--source/ca/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/ca/wizards/source/formwizard.po18
-rw-r--r--source/ca/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/cs/desktop/source/deployment/gui.po26
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po6
-rw-r--r--source/cs/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/cs/sc/source/ui/src.po6
-rw-r--r--source/cs/sfx2/source/view.po20
-rw-r--r--source/cs/svtools/source/control.po106
-rw-r--r--source/cs/svtools/source/misc.po19
-rw-r--r--source/cs/sw/source/core/undo.po62
-rw-r--r--source/cs/sw/source/uibase/docvw.po42
-rw-r--r--source/cs/sw/source/uibase/ribbar.po10
-rw-r--r--source/cs/sw/source/uibase/uiview.po10
-rw-r--r--source/cs/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/cy/desktop/source/deployment/gui.po24
-rw-r--r--source/cy/editeng/uiconfig/ui.po6
-rw-r--r--source/cy/filter/source/config/fragments/filters.po8
-rw-r--r--source/cy/filter/source/config/fragments/types.po8
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po164
-rw-r--r--source/cy/sc/source/ui/src.po23
-rw-r--r--source/cy/scp2/source/ooo.po10
-rw-r--r--source/cy/sd/source/ui/app.po8
-rw-r--r--source/cy/sd/uiconfig/simpress/ui.po18
-rw-r--r--source/cy/sfx2/source/view.po12
-rw-r--r--source/cy/sfx2/uiconfig/ui.po6
-rw-r--r--source/cy/svtools/source/control.po106
-rw-r--r--source/cy/svtools/source/misc.po17
-rw-r--r--source/cy/svx/source/src.po6
-rw-r--r--source/cy/svx/source/tbxctrls.po8
-rw-r--r--source/cy/sw/source/core/undo.po64
-rw-r--r--source/cy/sw/source/uibase/docvw.po42
-rw-r--r--source/cy/sw/source/uibase/ribbar.po10
-rw-r--r--source/cy/sw/source/uibase/uiview.po10
-rw-r--r--source/cy/sw/uiconfig/swriter/ui.po36
-rw-r--r--source/cy/uui/source.po6
-rw-r--r--source/cy/wizards/source/formwizard.po18
-rw-r--r--source/cy/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/da/desktop/source/deployment/gui.po20
-rw-r--r--source/da/filter/source/config/fragments/filters.po8
-rw-r--r--source/da/filter/source/config/fragments/types.po8
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po848
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/da/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/autopi.po16
-rw-r--r--source/da/helpcontent2/source/text/shared/explorer/database.po20
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po38
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po20
-rw-r--r--source/da/helpcontent2/source/text/swriter.po6
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po122
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/da/sc/source/ui/src.po15
-rw-r--r--source/da/scp2/source/ooo.po10
-rw-r--r--source/da/sfx2/source/view.po12
-rw-r--r--source/da/svtools/source/control.po106
-rw-r--r--source/da/svtools/source/misc.po19
-rw-r--r--source/da/sw/source/core/undo.po64
-rw-r--r--source/da/sw/source/uibase/docvw.po42
-rw-r--r--source/da/sw/source/uibase/ribbar.po10
-rw-r--r--source/da/sw/source/uibase/uiview.po10
-rw-r--r--source/da/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/da/wizards/source/formwizard.po8
-rw-r--r--source/da/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/de/basic/source/classes.po12
-rw-r--r--source/de/connectivity/source/resource.po20
-rw-r--r--source/de/cui/source/dialogs.po10
-rw-r--r--source/de/cui/uiconfig/ui.po10
-rw-r--r--source/de/desktop/source/deployment/gui.po24
-rw-r--r--source/de/extensions/source/propctrlr.po8
-rw-r--r--source/de/filter/source/config/fragments/filters.po8
-rw-r--r--source/de/filter/source/config/fragments/types.po8
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po10
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po1028
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po162
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po16
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po12
-rw-r--r--source/de/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/de/helpcontent2/source/text/shared.po28
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po142
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/de/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/autokorr.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po16
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po152
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po150
-rw-r--r--source/de/helpcontent2/source/text/simpress.po10
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/de/helpcontent2/source/text/swriter.po16
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po142
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po122
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po24
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po172
-rw-r--r--source/de/sc/source/ui/src.po29
-rw-r--r--source/de/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/de/sd/source/ui/app.po6
-rw-r--r--source/de/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/de/sfx2/source/view.po12
-rw-r--r--source/de/sfx2/uiconfig/ui.po8
-rw-r--r--source/de/svtools/source/control.po106
-rw-r--r--source/de/svtools/source/misc.po19
-rw-r--r--source/de/sw/source/core/undo.po64
-rw-r--r--source/de/sw/source/uibase/docvw.po42
-rw-r--r--source/de/sw/source/uibase/ribbar.po10
-rw-r--r--source/de/sw/source/uibase/uiview.po10
-rw-r--r--source/de/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/de/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/dgo/desktop/source/deployment/gui.po18
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/dgo/sc/source/ui/src.po6
-rw-r--r--source/dgo/sfx2/source/view.po10
-rw-r--r--source/dgo/svtools/source/control.po106
-rw-r--r--source/dgo/svtools/source/misc.po17
-rw-r--r--source/dgo/sw/source/core/undo.po62
-rw-r--r--source/dgo/sw/source/uibase/docvw.po42
-rw-r--r--source/dgo/sw/source/uibase/ribbar.po10
-rw-r--r--source/dgo/sw/source/uibase/uiview.po10
-rw-r--r--source/dgo/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/dz/desktop/source/deployment/gui.po24
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/dz/helpcontent2/source/text/swriter.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po58
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/dz/sc/source/ui/src.po6
-rw-r--r--source/dz/sfx2/source/view.po10
-rw-r--r--source/dz/svtools/source/control.po106
-rw-r--r--source/dz/svtools/source/misc.po15
-rw-r--r--source/dz/sw/source/core/undo.po63
-rw-r--r--source/dz/sw/source/uibase/docvw.po42
-rw-r--r--source/dz/sw/source/uibase/ribbar.po10
-rw-r--r--source/dz/sw/source/uibase/uiview.po10
-rw-r--r--source/dz/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/el/desktop/source/deployment/gui.po24
-rw-r--r--source/el/filter/source/config/fragments/filters.po8
-rw-r--r--source/el/filter/source/config/fragments/types.po8
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po832
-rw-r--r--source/el/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/el/helpcontent2/source/text/shared.po24
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po34
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po84
-rw-r--r--source/el/helpcontent2/source/text/swriter.po8
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po72
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po72
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po160
-rw-r--r--source/el/sc/source/ui/src.po13
-rw-r--r--source/el/sfx2/source/view.po10
-rw-r--r--source/el/svtools/source/control.po106
-rw-r--r--source/el/svtools/source/misc.po19
-rw-r--r--source/el/sw/source/core/undo.po62
-rw-r--r--source/el/sw/source/uibase/docvw.po42
-rw-r--r--source/el/sw/source/uibase/ribbar.po10
-rw-r--r--source/el/sw/source/uibase/uiview.po10
-rw-r--r--source/el/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/el/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/en-GB/desktop/source/deployment/gui.po24
-rw-r--r--source/en-GB/filter/source/config/fragments/filters.po8
-rw-r--r--source/en-GB/filter/source/config/fragments/types.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po834
-rw-r--r--source/en-GB/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared.po24
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po92
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po74
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po74
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/en-GB/sc/source/ui/src.po12
-rw-r--r--source/en-GB/sfx2/source/view.po14
-rw-r--r--source/en-GB/svtools/source/control.po112
-rw-r--r--source/en-GB/svtools/source/misc.po29
-rw-r--r--source/en-GB/sw/source/core/undo.po56
-rw-r--r--source/en-GB/sw/source/uibase/docvw.po48
-rw-r--r--source/en-GB/sw/source/uibase/ribbar.po16
-rw-r--r--source/en-GB/sw/source/uibase/uiview.po16
-rw-r--r--source/en-GB/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/en-GB/xmlsecurity/uiconfig/ui.po15
-rw-r--r--source/en-ZA/desktop/source/deployment/gui.po18
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/en-ZA/sc/source/ui/src.po6
-rw-r--r--source/en-ZA/sfx2/source/view.po10
-rw-r--r--source/en-ZA/svtools/source/control.po106
-rw-r--r--source/en-ZA/svtools/source/misc.po15
-rw-r--r--source/en-ZA/sw/source/core/undo.po62
-rw-r--r--source/en-ZA/sw/source/uibase/docvw.po42
-rw-r--r--source/en-ZA/sw/source/uibase/ribbar.po10
-rw-r--r--source/en-ZA/sw/source/uibase/uiview.po10
-rw-r--r--source/en-ZA/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/eo/desktop/source/deployment/gui.po24
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po6
-rw-r--r--source/eo/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/eo/sc/source/ui/src.po15
-rw-r--r--source/eo/sfx2/source/view.po22
-rw-r--r--source/eo/svtools/source/control.po106
-rw-r--r--source/eo/svtools/source/misc.po19
-rw-r--r--source/eo/sw/source/core/undo.po64
-rw-r--r--source/eo/sw/source/uibase/docvw.po42
-rw-r--r--source/eo/sw/source/uibase/ribbar.po10
-rw-r--r--source/eo/sw/source/uibase/uiview.po10
-rw-r--r--source/eo/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/es/cui/uiconfig/ui.po12
-rw-r--r--source/es/desktop/source/deployment/gui.po24
-rw-r--r--source/es/editeng/source/items.po10
-rw-r--r--source/es/filter/source/config/fragments/filters.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po908
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po192
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/es/helpcontent2/source/text/sdraw/04.po8
-rw-r--r--source/es/helpcontent2/source/text/shared.po24
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po18
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po124
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po26
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po62
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/es/helpcontent2/source/text/smath/00.po24
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po514
-rw-r--r--source/es/helpcontent2/source/text/smath/02.po8
-rw-r--r--source/es/helpcontent2/source/text/smath/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po112
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/es/sc/source/ui/StatisticsDialogs.po6
-rw-r--r--source/es/sc/source/ui/src.po22
-rw-r--r--source/es/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/es/scp2/source/ooo.po10
-rw-r--r--source/es/sd/uiconfig/simpress/ui.po12
-rw-r--r--source/es/sfx2/source/view.po10
-rw-r--r--source/es/svtools/source/control.po112
-rw-r--r--source/es/svtools/source/misc.po27
-rw-r--r--source/es/svx/uiconfig/ui.po8
-rw-r--r--source/es/sw/source/core/undo.po58
-rw-r--r--source/es/sw/source/ui/dbui.po12
-rw-r--r--source/es/sw/source/uibase/docvw.po48
-rw-r--r--source/es/sw/source/uibase/ribbar.po10
-rw-r--r--source/es/sw/source/uibase/uiview.po10
-rw-r--r--source/es/sw/uiconfig/swriter/ui.po40
-rw-r--r--source/es/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/et/dbaccess/source/ui/browser.po6
-rw-r--r--source/et/desktop/source/deployment/gui.po24
-rw-r--r--source/et/editeng/source/editeng.po10
-rw-r--r--source/et/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/et/helpcontent2/source/text/scalc.po126
-rw-r--r--source/et/helpcontent2/source/text/sdraw.po114
-rw-r--r--source/et/helpcontent2/source/text/shared.po86
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/et/helpcontent2/source/text/simpress.po74
-rw-r--r--source/et/helpcontent2/source/text/smath.po20
-rw-r--r--source/et/helpcontent2/source/text/swriter.po210
-rw-r--r--source/et/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po54
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po158
-rw-r--r--source/et/reportdesign/uiconfig/dbreport/ui.po6
-rw-r--r--source/et/sc/source/core/src.po30
-rw-r--r--source/et/sc/source/ui/StatisticsDialogs.po214
-rw-r--r--source/et/sc/source/ui/cctrl.po22
-rw-r--r--source/et/sc/source/ui/src.po70
-rw-r--r--source/et/sc/uiconfig/scalc/ui.po33
-rw-r--r--source/et/scaddins/source/analysis.po8
-rw-r--r--source/et/scaddins/source/datefunc.po12
-rw-r--r--source/et/scaddins/source/pricing.po6
-rw-r--r--source/et/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/et/sfx2/source/doc.po8
-rw-r--r--source/et/sfx2/source/view.po12
-rw-r--r--source/et/sfx2/uiconfig/ui.po10
-rw-r--r--source/et/starmath/source.po68
-rw-r--r--source/et/svtools/source/control.po106
-rw-r--r--source/et/svtools/source/dialogs.po6
-rw-r--r--source/et/svtools/source/misc.po19
-rw-r--r--source/et/svx/source/dialog.po10
-rw-r--r--source/et/svx/source/svdraw.po6
-rw-r--r--source/et/svx/source/tbxctrls.po10
-rw-r--r--source/et/svx/source/toolbars.po11
-rw-r--r--source/et/svx/uiconfig/ui.po95
-rw-r--r--source/et/sw/source/core/undo.po64
-rw-r--r--source/et/sw/source/uibase/docvw.po42
-rw-r--r--source/et/sw/source/uibase/ribbar.po10
-rw-r--r--source/et/sw/source/uibase/uiview.po10
-rw-r--r--source/et/sw/source/uibase/utlui.po6
-rw-r--r--source/et/sw/uiconfig/swriter/ui.po78
-rw-r--r--source/et/vcl/source/src.po6
-rw-r--r--source/et/vcl/uiconfig/ui.po6
-rw-r--r--source/et/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/eu/accessibility/source/helper.po10
-rw-r--r--source/eu/cui/source/customize.po12
-rw-r--r--source/eu/cui/uiconfig/ui.po8
-rw-r--r--source/eu/desktop/source/deployment/gui.po26
-rw-r--r--source/eu/dictionaries/gu_IN.po12
-rw-r--r--source/eu/editeng/source/items.po8
-rw-r--r--source/eu/editeng/uiconfig/ui.po6
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po832
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po152
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/eu/helpcontent2/source/text/schart/01.po28
-rw-r--r--source/eu/helpcontent2/source/text/shared.po24
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po268
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/eu/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po24
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po96
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po16
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po96
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po808
-rw-r--r--source/eu/helpcontent2/source/text/smath/04.po10
-rw-r--r--source/eu/helpcontent2/source/text/smath/guide.po24
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po54
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po173
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/eu/reportdesign/uiconfig/dbreport/ui.po6
-rw-r--r--source/eu/sc/source/ui/src.po16
-rw-r--r--source/eu/sc/uiconfig/scalc/ui.po14
-rw-r--r--source/eu/scp2/source/ooo.po16
-rw-r--r--source/eu/sd/source/ui/app.po6
-rw-r--r--source/eu/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/eu/sfx2/source/dialog.po6
-rw-r--r--source/eu/sfx2/source/view.po14
-rw-r--r--source/eu/starmath/source.po8
-rw-r--r--source/eu/svtools/source/control.po116
-rw-r--r--source/eu/svtools/source/misc.po23
-rw-r--r--source/eu/svx/source/dialog.po8
-rw-r--r--source/eu/svx/source/items.po6
-rw-r--r--source/eu/svx/source/tbxctrls.po6
-rw-r--r--source/eu/svx/uiconfig/ui.po8
-rw-r--r--source/eu/sw/source/core/undo.po62
-rw-r--r--source/eu/sw/source/ui/app.po6
-rw-r--r--source/eu/sw/source/uibase/docvw.po50
-rw-r--r--source/eu/sw/source/uibase/ribbar.po18
-rw-r--r--source/eu/sw/source/uibase/uiview.po18
-rw-r--r--source/eu/sw/uiconfig/swriter/ui.po20
-rw-r--r--source/eu/uui/source.po6
-rw-r--r--source/eu/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/fa/basctl/uiconfig/basicide/ui.po12
-rw-r--r--source/fa/desktop/source/deployment/gui.po26
-rw-r--r--source/fa/editeng/uiconfig/ui.po21
-rw-r--r--source/fa/framework/source/classes.po18
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/fa/sc/source/ui/src.po6
-rw-r--r--source/fa/sfx2/source/view.po12
-rw-r--r--source/fa/svtools/source/control.po106
-rw-r--r--source/fa/svtools/source/misc.po24
-rw-r--r--source/fa/sw/source/core/undo.po62
-rw-r--r--source/fa/sw/source/uibase/docvw.po42
-rw-r--r--source/fa/sw/source/uibase/ribbar.po10
-rw-r--r--source/fa/sw/source/uibase/uiview.po10
-rw-r--r--source/fa/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/fi/desktop/source/deployment/gui.po26
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/fi/sc/source/ui/src.po6
-rw-r--r--source/fi/sfx2/source/view.po10
-rw-r--r--source/fi/svtools/source/control.po106
-rw-r--r--source/fi/svtools/source/misc.po17
-rw-r--r--source/fi/sw/source/core/undo.po62
-rw-r--r--source/fi/sw/source/uibase/docvw.po42
-rw-r--r--source/fi/sw/source/uibase/ribbar.po10
-rw-r--r--source/fi/sw/source/uibase/uiview.po10
-rw-r--r--source/fi/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/fr/desktop/source/deployment/gui.po26
-rw-r--r--source/fr/filter/source/config/fragments/types.po8
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po1244
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po156
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po92
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po8
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po78
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po72
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/fr/sc/source/ui/src.po16
-rw-r--r--source/fr/sfx2/source/view.po14
-rw-r--r--source/fr/svtools/source/control.po112
-rw-r--r--source/fr/svtools/source/misc.po25
-rw-r--r--source/fr/sw/source/core/undo.po62
-rw-r--r--source/fr/sw/source/uibase/docvw.po48
-rw-r--r--source/fr/sw/source/uibase/ribbar.po16
-rw-r--r--source/fr/sw/source/uibase/uiview.po16
-rw-r--r--source/fr/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/fr/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/ga/desktop/source/deployment/gui.po24
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ga/sc/source/ui/src.po6
-rw-r--r--source/ga/sfx2/source/view.po10
-rw-r--r--source/ga/svtools/source/control.po106
-rw-r--r--source/ga/svtools/source/misc.po15
-rw-r--r--source/ga/sw/source/core/undo.po62
-rw-r--r--source/ga/sw/source/uibase/docvw.po42
-rw-r--r--source/ga/sw/source/uibase/ribbar.po10
-rw-r--r--source/ga/sw/source/uibase/uiview.po10
-rw-r--r--source/ga/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/gd/desktop/source/deployment/gui.po26
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/gd/sc/source/ui/src.po6
-rw-r--r--source/gd/sfx2/source/view.po10
-rw-r--r--source/gd/svtools/source/control.po106
-rw-r--r--source/gd/svtools/source/misc.po17
-rw-r--r--source/gd/sw/source/core/undo.po62
-rw-r--r--source/gd/sw/source/uibase/docvw.po42
-rw-r--r--source/gd/sw/source/uibase/ribbar.po10
-rw-r--r--source/gd/sw/source/uibase/uiview.po10
-rw-r--r--source/gd/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/gl/cui/source/tabpages.po10
-rw-r--r--source/gl/cui/uiconfig/ui.po12
-rw-r--r--source/gl/desktop/source/deployment/gui.po24
-rw-r--r--source/gl/filter/source/config/fragments/filters.po10
-rw-r--r--source/gl/filter/source/config/fragments/types.po10
-rw-r--r--source/gl/filter/uiconfig/ui.po8
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po914
-rw-r--r--source/gl/helpcontent2/source/text/scalc.po6
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po32
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/gl/helpcontent2/source/text/schart.po24
-rw-r--r--source/gl/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/gl/helpcontent2/source/text/schart/01.po158
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/guide.po18
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po209
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po22
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po63
-rw-r--r--source/gl/helpcontent2/source/text/simpress/02.po112
-rw-r--r--source/gl/helpcontent2/source/text/simpress/guide.po17
-rw-r--r--source/gl/helpcontent2/source/text/smath/01.po26
-rw-r--r--source/gl/helpcontent2/source/text/smath/guide.po12
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po8
-rw-r--r--source/gl/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po78
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po105
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po186
-rw-r--r--source/gl/sc/source/ui/src.po18
-rw-r--r--source/gl/sd/source/ui/app.po8
-rw-r--r--source/gl/sd/uiconfig/simpress/ui.po24
-rw-r--r--source/gl/sfx2/source/dialog.po10
-rw-r--r--source/gl/sfx2/source/view.po12
-rw-r--r--source/gl/sfx2/uiconfig/ui.po8
-rw-r--r--source/gl/starmath/source.po12
-rw-r--r--source/gl/svtools/source/control.po114
-rw-r--r--source/gl/svtools/source/misc.po23
-rw-r--r--source/gl/svx/uiconfig/ui.po67
-rw-r--r--source/gl/sw/source/core/undo.po62
-rw-r--r--source/gl/sw/source/ui/app.po8
-rw-r--r--source/gl/sw/source/uibase/docvw.po48
-rw-r--r--source/gl/sw/source/uibase/ribbar.po10
-rw-r--r--source/gl/sw/source/uibase/uiview.po18
-rw-r--r--source/gl/sw/uiconfig/swriter/ui.po150
-rw-r--r--source/gl/uui/uiconfig/ui.po8
-rw-r--r--source/gl/wizards/source/formwizard.po18
-rw-r--r--source/gl/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/gu/desktop/source/deployment/gui.po20
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/gu/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po64
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po56
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/gu/sc/source/ui/src.po6
-rw-r--r--source/gu/sfx2/source/view.po10
-rw-r--r--source/gu/svtools/source/control.po106
-rw-r--r--source/gu/svtools/source/misc.po17
-rw-r--r--source/gu/sw/source/core/undo.po62
-rw-r--r--source/gu/sw/source/uibase/docvw.po42
-rw-r--r--source/gu/sw/source/uibase/ribbar.po10
-rw-r--r--source/gu/sw/source/uibase/uiview.po10
-rw-r--r--source/gu/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/gug/desktop/source/deployment/gui.po26
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/gug/sc/source/ui/src.po6
-rw-r--r--source/gug/sfx2/source/view.po10
-rw-r--r--source/gug/svtools/source/control.po106
-rw-r--r--source/gug/svtools/source/misc.po17
-rw-r--r--source/gug/sw/source/core/undo.po62
-rw-r--r--source/gug/sw/source/uibase/docvw.po42
-rw-r--r--source/gug/sw/source/uibase/ribbar.po10
-rw-r--r--source/gug/sw/source/uibase/uiview.po10
-rw-r--r--source/gug/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/he/desktop/source/deployment/gui.po20
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/he/helpcontent2/source/text/swriter.po4
-rw-r--r--source/he/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po54
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/he/sc/source/ui/src.po6
-rw-r--r--source/he/sfx2/source/view.po10
-rw-r--r--source/he/svtools/source/control.po106
-rw-r--r--source/he/svtools/source/misc.po17
-rw-r--r--source/he/sw/source/core/undo.po62
-rw-r--r--source/he/sw/source/uibase/docvw.po42
-rw-r--r--source/he/sw/source/uibase/ribbar.po10
-rw-r--r--source/he/sw/source/uibase/uiview.po10
-rw-r--r--source/he/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/hi/desktop/source/deployment/gui.po24
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/hi/helpcontent2/source/text/swriter.po4
-rw-r--r--source/hi/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/hi/sc/source/ui/src.po6
-rw-r--r--source/hi/sfx2/source/view.po10
-rw-r--r--source/hi/svtools/source/control.po106
-rw-r--r--source/hi/svtools/source/misc.po17
-rw-r--r--source/hi/sw/source/core/undo.po62
-rw-r--r--source/hi/sw/source/uibase/docvw.po42
-rw-r--r--source/hi/sw/source/uibase/ribbar.po10
-rw-r--r--source/hi/sw/source/uibase/uiview.po10
-rw-r--r--source/hi/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/hr/chart2/uiconfig/ui.po6
-rw-r--r--source/hr/cui/source/tabpages.po14
-rw-r--r--source/hr/cui/uiconfig/ui.po26
-rw-r--r--source/hr/dbaccess/source/core/resource.po8
-rw-r--r--source/hr/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/hr/dbaccess/uiconfig/ui.po10
-rw-r--r--source/hr/desktop/source/deployment/gui.po26
-rw-r--r--source/hr/filter/source/config/fragments/filters.po12
-rw-r--r--source/hr/filter/source/config/fragments/types.po12
-rw-r--r--source/hr/filter/uiconfig/ui.po12
-rw-r--r--source/hr/formula/source/core/resource.po10
-rw-r--r--source/hr/framework/source/classes.po8
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/hr/helpcontent2/source/text/swriter.po6
-rw-r--r--source/hr/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po30
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/hr/sc/source/ui/src.po48
-rw-r--r--source/hr/sc/uiconfig/scalc/ui.po24
-rw-r--r--source/hr/scaddins/source/analysis.po12
-rw-r--r--source/hr/scaddins/source/datefunc.po24
-rw-r--r--source/hr/scaddins/source/pricing.po16
-rw-r--r--source/hr/scp2/source/calc.po10
-rw-r--r--source/hr/scp2/source/ooo.po10
-rw-r--r--source/hr/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/hr/sfx2/source/view.po12
-rw-r--r--source/hr/svtools/source/control.po106
-rw-r--r--source/hr/svtools/source/misc.po17
-rw-r--r--source/hr/svx/uiconfig/ui.po14
-rw-r--r--source/hr/sw/source/core/undo.po64
-rw-r--r--source/hr/sw/source/uibase/docvw.po42
-rw-r--r--source/hr/sw/source/uibase/ribbar.po12
-rw-r--r--source/hr/sw/source/uibase/uiview.po10
-rw-r--r--source/hr/sw/uiconfig/swriter/ui.po16
-rw-r--r--source/hr/wizards/source/template.po12
-rw-r--r--source/hr/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/hsb/desktop/source/deployment/gui.po18
-rw-r--r--source/hsb/filter/source/config/fragments/filters.po8
-rw-r--r--source/hsb/filter/source/config/fragments/types.po8
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office.po1064
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po2564
-rw-r--r--source/hsb/sc/source/ui/src.po6
-rw-r--r--source/hsb/sfx2/source/view.po10
-rw-r--r--source/hsb/svtools/source/control.po106
-rw-r--r--source/hsb/svtools/source/misc.po17
-rw-r--r--source/hsb/sw/source/core/undo.po62
-rw-r--r--source/hsb/sw/source/uibase/docvw.po42
-rw-r--r--source/hsb/sw/source/uibase/ribbar.po10
-rw-r--r--source/hsb/sw/source/uibase/uiview.po10
-rw-r--r--source/hsb/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/hsb/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/hu/accessibility/source/helper.po12
-rw-r--r--source/hu/avmedia/source/framework.po8
-rw-r--r--source/hu/basctl/uiconfig/basicide/ui.po14
-rw-r--r--source/hu/chart2/uiconfig/ui.po14
-rw-r--r--source/hu/cui/source/dialogs.po10
-rw-r--r--source/hu/cui/source/tabpages.po12
-rw-r--r--source/hu/cui/uiconfig/ui.po32
-rw-r--r--source/hu/desktop/source/deployment/gui.po24
-rw-r--r--source/hu/editeng/uiconfig/ui.po21
-rw-r--r--source/hu/extensions/source/update/check/org/openoffice/Office.po10
-rw-r--r--source/hu/filter/source/config/fragments/filters.po14
-rw-r--r--source/hu/filter/source/config/fragments/types.po12
-rw-r--r--source/hu/filter/uiconfig/ui.po10
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/hu/librelogo/source/pythonpath.po10
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/hu/reportdesign/uiconfig/dbreport/ui.po20
-rw-r--r--source/hu/sc/source/ui/src.po6
-rw-r--r--source/hu/scp2/source/calc.po10
-rw-r--r--source/hu/scp2/source/ooo.po10
-rw-r--r--source/hu/sd/source/core.po10
-rw-r--r--source/hu/sd/source/ui/app.po16
-rw-r--r--source/hu/sd/source/ui/view.po108
-rw-r--r--source/hu/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/hu/sd/uiconfig/simpress/ui.po160
-rw-r--r--source/hu/setup_native/source/mac.po10
-rw-r--r--source/hu/sfx2/source/view.po10
-rw-r--r--source/hu/svtools/source/control.po106
-rw-r--r--source/hu/svtools/source/misc.po17
-rw-r--r--source/hu/sw/source/core/undo.po62
-rw-r--r--source/hu/sw/source/uibase/docvw.po42
-rw-r--r--source/hu/sw/source/uibase/ribbar.po10
-rw-r--r--source/hu/sw/source/uibase/uiview.po10
-rw-r--r--source/hu/uui/source.po16
-rw-r--r--source/hu/vcl/source/src.po16
-rw-r--r--source/hu/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/id/accessibility/source/helper.po12
-rw-r--r--source/id/avmedia/source/framework.po8
-rw-r--r--source/id/basctl/uiconfig/basicide/ui.po14
-rw-r--r--source/id/chart2/uiconfig/ui.po14
-rw-r--r--source/id/cui/source/dialogs.po10
-rw-r--r--source/id/cui/source/options.po7
-rw-r--r--source/id/cui/source/tabpages.po12
-rw-r--r--source/id/cui/uiconfig/ui.po48
-rw-r--r--source/id/dbaccess/source/ui/browser.po16
-rw-r--r--source/id/dbaccess/uiconfig/ui.po38
-rw-r--r--source/id/desktop/source/deployment/gui.po26
-rw-r--r--source/id/editeng/source/editeng.po8
-rw-r--r--source/id/editeng/source/items.po12
-rw-r--r--source/id/editeng/uiconfig/ui.po21
-rw-r--r--source/id/extensions/source/propctrlr.po26
-rw-r--r--source/id/extensions/source/update/check/org/openoffice/Office.po10
-rw-r--r--source/id/filter/source/config/fragments/filters.po14
-rw-r--r--source/id/filter/source/config/fragments/types.po12
-rw-r--r--source/id/filter/uiconfig/ui.po10
-rw-r--r--source/id/formula/source/core/resource.po8
-rw-r--r--source/id/framework/source/classes.po18
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/id/helpcontent2/source/text/scalc.po12
-rw-r--r--source/id/helpcontent2/source/text/shared.po14
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/id/helpcontent2/source/text/swriter.po12
-rw-r--r--source/id/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po46
-rw-r--r--source/id/librelogo/source/pythonpath.po10
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po286
-rw-r--r--source/id/reportdesign/uiconfig/dbreport/ui.po20
-rw-r--r--source/id/sc/source/core/src.po28
-rw-r--r--source/id/sc/source/ui/StatisticsDialogs.po206
-rw-r--r--source/id/sc/source/ui/cctrl.po22
-rw-r--r--source/id/sc/source/ui/navipi.po8
-rw-r--r--source/id/sc/source/ui/src.po81
-rw-r--r--source/id/sc/uiconfig/scalc/ui.po453
-rw-r--r--source/id/scaddins/source/analysis.po12
-rw-r--r--source/id/scaddins/source/datefunc.po24
-rw-r--r--source/id/scaddins/source/pricing.po16
-rw-r--r--source/id/scp2/source/calc.po8
-rw-r--r--source/id/scp2/source/ooo.po10
-rw-r--r--source/id/sd/source/core.po10
-rw-r--r--source/id/sd/source/ui/animations.po10
-rw-r--r--source/id/sd/source/ui/app.po16
-rw-r--r--source/id/sd/source/ui/view.po108
-rw-r--r--source/id/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/id/sd/uiconfig/simpress/ui.po18
-rw-r--r--source/id/setup_native/source/mac.po10
-rw-r--r--source/id/sfx2/source/dialog.po22
-rw-r--r--source/id/sfx2/source/doc.po16
-rw-r--r--source/id/sfx2/source/sidebar.po6
-rw-r--r--source/id/sfx2/source/view.po24
-rw-r--r--source/id/sfx2/uiconfig/ui.po14
-rw-r--r--source/id/starmath/source.po44
-rw-r--r--source/id/svtools/source/control.po106
-rw-r--r--source/id/svtools/source/dialogs.po22
-rw-r--r--source/id/svtools/source/misc.po33
-rw-r--r--source/id/svtools/uiconfig/ui.po10
-rw-r--r--source/id/sw/source/core/undo.po74
-rw-r--r--source/id/sw/source/ui/app.po8
-rw-r--r--source/id/sw/source/ui/dbui.po8
-rw-r--r--source/id/sw/source/ui/utlui.po52
-rw-r--r--source/id/sw/source/uibase/docvw.po42
-rw-r--r--source/id/sw/source/uibase/ribbar.po10
-rw-r--r--source/id/sw/source/uibase/uiview.po10
-rw-r--r--source/id/sw/source/uibase/utlui.po74
-rw-r--r--source/id/sw/uiconfig/swriter/ui.po68
-rw-r--r--source/id/uui/source.po16
-rw-r--r--source/id/vcl/source/src.po16
-rw-r--r--source/id/vcl/uiconfig/ui.po22
-rw-r--r--source/id/wizards/source/formwizard.po20
-rw-r--r--source/id/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/is/chart2/uiconfig/ui.po14
-rw-r--r--source/is/cui/source/dialogs.po10
-rw-r--r--source/is/cui/source/tabpages.po12
-rw-r--r--source/is/cui/uiconfig/ui.po32
-rw-r--r--source/is/dbaccess/source/ui/browser.po16
-rw-r--r--source/is/dbaccess/uiconfig/ui.po38
-rw-r--r--source/is/desktop/source/deployment/gui.po24
-rw-r--r--source/is/editeng/source/editeng.po8
-rw-r--r--source/is/editeng/source/items.po10
-rw-r--r--source/is/editeng/uiconfig/ui.po21
-rw-r--r--source/is/filter/source/config/fragments/filters.po14
-rw-r--r--source/is/filter/source/config/fragments/types.po10
-rw-r--r--source/is/filter/uiconfig/ui.po10
-rw-r--r--source/is/framework/source/classes.po18
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/is/helpcontent2/source/text/swriter.po6
-rw-r--r--source/is/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po364
-rw-r--r--source/is/reportdesign/uiconfig/dbreport/ui.po12
-rw-r--r--source/is/sc/source/ui/src.po6
-rw-r--r--source/is/scp2/source/ooo.po10
-rw-r--r--source/is/sfx2/source/view.po12
-rw-r--r--source/is/svtools/source/control.po106
-rw-r--r--source/is/svtools/source/misc.po19
-rw-r--r--source/is/svx/source/tbxctrls.po8
-rw-r--r--source/is/sw/source/core/undo.po64
-rw-r--r--source/is/sw/source/uibase/docvw.po42
-rw-r--r--source/is/sw/source/uibase/ribbar.po10
-rw-r--r--source/is/sw/source/uibase/uiview.po10
-rw-r--r--source/is/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/it/avmedia/source/framework.po8
-rw-r--r--source/it/desktop/source/deployment/gui.po24
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/it/helpcontent2/source/text/swriter.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/it/librelogo/source/pythonpath.po6
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/it/sc/source/ui/src.po6
-rw-r--r--source/it/sfx2/source/view.po10
-rw-r--r--source/it/svtools/source/control.po106
-rw-r--r--source/it/svtools/source/misc.po17
-rw-r--r--source/it/sw/source/core/undo.po62
-rw-r--r--source/it/sw/source/uibase/docvw.po42
-rw-r--r--source/it/sw/source/uibase/ribbar.po10
-rw-r--r--source/it/sw/source/uibase/uiview.po10
-rw-r--r--source/it/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ja/avmedia/source/framework.po10
-rw-r--r--source/ja/basctl/uiconfig/basicide/ui.po12
-rw-r--r--source/ja/basic/source/classes.po10
-rw-r--r--source/ja/chart2/uiconfig/ui.po8
-rw-r--r--source/ja/cui/source/dialogs.po12
-rw-r--r--source/ja/cui/uiconfig/ui.po22
-rw-r--r--source/ja/dbaccess/uiconfig/ui.po24
-rw-r--r--source/ja/desktop/source/deployment/gui.po26
-rw-r--r--source/ja/editeng/uiconfig/ui.po17
-rw-r--r--source/ja/framework/source/classes.po16
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ja/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ja/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ja/librelogo/source/pythonpath.po10
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po251
-rw-r--r--source/ja/sc/source/ui/src.po6
-rw-r--r--source/ja/sfx2/source/view.po12
-rw-r--r--source/ja/svtools/source/control.po106
-rw-r--r--source/ja/svtools/source/dialogs.po14
-rw-r--r--source/ja/svtools/source/misc.po27
-rw-r--r--source/ja/svx/source/svdraw.po10
-rw-r--r--source/ja/sw/source/core/undo.po62
-rw-r--r--source/ja/sw/source/uibase/docvw.po42
-rw-r--r--source/ja/sw/source/uibase/ribbar.po10
-rw-r--r--source/ja/sw/source/uibase/uiview.po10
-rw-r--r--source/ja/swext/mediawiki/help.po80
-rw-r--r--source/ja/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ka/desktop/source/deployment/gui.po18
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ka/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ka/sc/source/ui/src.po6
-rw-r--r--source/ka/sfx2/source/view.po10
-rw-r--r--source/ka/svtools/source/control.po106
-rw-r--r--source/ka/svtools/source/misc.po15
-rw-r--r--source/ka/sw/source/core/undo.po62
-rw-r--r--source/ka/sw/source/uibase/docvw.po42
-rw-r--r--source/ka/sw/source/uibase/ribbar.po10
-rw-r--r--source/ka/sw/source/uibase/uiview.po10
-rw-r--r--source/ka/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/kk/desktop/source/deployment/gui.po24
-rw-r--r--source/kk/filter/source/config/fragments/filters.po8
-rw-r--r--source/kk/filter/source/config/fragments/types.po8
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/kk/sc/source/ui/src.po10
-rw-r--r--source/kk/sfx2/source/view.po14
-rw-r--r--source/kk/svtools/source/control.po112
-rw-r--r--source/kk/svtools/source/misc.po23
-rw-r--r--source/kk/sw/source/core/undo.po60
-rw-r--r--source/kk/sw/source/uibase/docvw.po48
-rw-r--r--source/kk/sw/source/uibase/ribbar.po16
-rw-r--r--source/kk/sw/source/uibase/uiview.po18
-rw-r--r--source/kk/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/kk/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/km/desktop/source/deployment/gui.po24
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/km/helpcontent2/source/text/swriter.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/km/sc/source/ui/src.po6
-rw-r--r--source/km/sfx2/source/view.po10
-rw-r--r--source/km/svtools/source/control.po106
-rw-r--r--source/km/svtools/source/misc.po17
-rw-r--r--source/km/sw/source/core/undo.po62
-rw-r--r--source/km/sw/source/uibase/docvw.po42
-rw-r--r--source/km/sw/source/uibase/ribbar.po10
-rw-r--r--source/km/sw/source/uibase/uiview.po10
-rw-r--r--source/km/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/kmr-Latn/desktop/source/deployment/gui.po24
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/kmr-Latn/sc/source/ui/src.po6
-rw-r--r--source/kmr-Latn/sfx2/source/view.po10
-rw-r--r--source/kmr-Latn/svtools/source/control.po106
-rw-r--r--source/kmr-Latn/svtools/source/misc.po15
-rw-r--r--source/kmr-Latn/sw/source/core/undo.po62
-rw-r--r--source/kmr-Latn/sw/source/uibase/docvw.po42
-rw-r--r--source/kmr-Latn/sw/source/uibase/ribbar.po10
-rw-r--r--source/kmr-Latn/sw/source/uibase/uiview.po10
-rw-r--r--source/kmr-Latn/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/kn/desktop/source/deployment/gui.po24
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/kn/sc/source/ui/src.po6
-rw-r--r--source/kn/sfx2/source/view.po10
-rw-r--r--source/kn/svtools/source/control.po106
-rw-r--r--source/kn/svtools/source/misc.po17
-rw-r--r--source/kn/sw/source/core/undo.po62
-rw-r--r--source/kn/sw/source/uibase/docvw.po42
-rw-r--r--source/kn/sw/source/uibase/ribbar.po10
-rw-r--r--source/kn/sw/source/uibase/uiview.po10
-rw-r--r--source/kn/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ko/desktop/source/deployment/gui.po26
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ko/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ko/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ko/sc/source/ui/src.po6
-rw-r--r--source/ko/sfx2/source/view.po10
-rw-r--r--source/ko/svtools/source/control.po106
-rw-r--r--source/ko/svtools/source/misc.po17
-rw-r--r--source/ko/sw/source/core/undo.po62
-rw-r--r--source/ko/sw/source/uibase/docvw.po42
-rw-r--r--source/ko/sw/source/uibase/ribbar.po10
-rw-r--r--source/ko/sw/source/uibase/uiview.po10
-rw-r--r--source/ko/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/kok/desktop/source/deployment/gui.po24
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/kok/sc/source/ui/src.po6
-rw-r--r--source/kok/sfx2/source/view.po10
-rw-r--r--source/kok/svtools/source/control.po106
-rw-r--r--source/kok/svtools/source/misc.po17
-rw-r--r--source/kok/sw/source/core/undo.po62
-rw-r--r--source/kok/sw/source/uibase/docvw.po42
-rw-r--r--source/kok/sw/source/uibase/ribbar.po10
-rw-r--r--source/kok/sw/source/uibase/uiview.po10
-rw-r--r--source/kok/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ks/desktop/source/deployment/gui.po18
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ks/sc/source/ui/src.po6
-rw-r--r--source/ks/sfx2/source/view.po10
-rw-r--r--source/ks/svtools/source/control.po106
-rw-r--r--source/ks/svtools/source/misc.po15
-rw-r--r--source/ks/sw/source/core/undo.po62
-rw-r--r--source/ks/sw/source/uibase/docvw.po42
-rw-r--r--source/ks/sw/source/uibase/ribbar.po10
-rw-r--r--source/ks/sw/source/uibase/uiview.po10
-rw-r--r--source/ks/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/lo/desktop/source/deployment/gui.po24
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/lo/helpcontent2/source/text/swriter.po4
-rw-r--r--source/lo/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po36
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po36
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/lo/sc/source/ui/src.po6
-rw-r--r--source/lo/sfx2/source/view.po10
-rw-r--r--source/lo/svtools/source/control.po106
-rw-r--r--source/lo/svtools/source/misc.po15
-rw-r--r--source/lo/sw/source/core/undo.po62
-rw-r--r--source/lo/sw/source/uibase/docvw.po42
-rw-r--r--source/lo/sw/source/uibase/ribbar.po10
-rw-r--r--source/lo/sw/source/uibase/uiview.po10
-rw-r--r--source/lo/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/lt/desktop/source/deployment/gui.po24
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po152
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/lt/helpcontent2/source/text/swriter.po6
-rw-r--r--source/lt/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po36
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/lt/sc/source/ui/src.po6
-rw-r--r--source/lt/sfx2/source/view.po10
-rw-r--r--source/lt/sfx2/uiconfig/ui.po29
-rw-r--r--source/lt/svtools/source/control.po106
-rw-r--r--source/lt/svtools/source/misc.po17
-rw-r--r--source/lt/sw/source/core/undo.po62
-rw-r--r--source/lt/sw/source/uibase/docvw.po42
-rw-r--r--source/lt/sw/source/uibase/ribbar.po10
-rw-r--r--source/lt/sw/source/uibase/uiview.po10
-rw-r--r--source/lt/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/lv/desktop/source/deployment/gui.po24
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/lv/helpcontent2/source/text/swriter.po6
-rw-r--r--source/lv/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/lv/sc/source/ui/src.po6
-rw-r--r--source/lv/sfx2/source/view.po10
-rw-r--r--source/lv/svtools/source/control.po106
-rw-r--r--source/lv/svtools/source/misc.po17
-rw-r--r--source/lv/sw/source/core/undo.po64
-rw-r--r--source/lv/sw/source/uibase/docvw.po42
-rw-r--r--source/lv/sw/source/uibase/ribbar.po10
-rw-r--r--source/lv/sw/source/uibase/uiview.po10
-rw-r--r--source/lv/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/mai/desktop/source/deployment/gui.po18
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/mai/sc/source/ui/src.po6
-rw-r--r--source/mai/sfx2/source/view.po10
-rw-r--r--source/mai/svtools/source/control.po106
-rw-r--r--source/mai/svtools/source/misc.po15
-rw-r--r--source/mai/sw/source/core/undo.po62
-rw-r--r--source/mai/sw/source/uibase/docvw.po42
-rw-r--r--source/mai/sw/source/uibase/ribbar.po10
-rw-r--r--source/mai/sw/source/uibase/uiview.po10
-rw-r--r--source/mai/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/mk/desktop/source/deployment/gui.po24
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/mk/sc/source/ui/src.po6
-rw-r--r--source/mk/sfx2/source/view.po10
-rw-r--r--source/mk/svtools/source/control.po106
-rw-r--r--source/mk/svtools/source/misc.po15
-rw-r--r--source/mk/sw/source/core/undo.po62
-rw-r--r--source/mk/sw/source/uibase/docvw.po42
-rw-r--r--source/mk/sw/source/uibase/ribbar.po10
-rw-r--r--source/mk/sw/source/uibase/uiview.po10
-rw-r--r--source/mk/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ml/desktop/source/deployment/gui.po26
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ml/sc/source/ui/src.po6
-rw-r--r--source/ml/sfx2/source/view.po10
-rw-r--r--source/ml/svtools/source/control.po106
-rw-r--r--source/ml/svtools/source/misc.po17
-rw-r--r--source/ml/sw/source/core/undo.po62
-rw-r--r--source/ml/sw/source/uibase/docvw.po42
-rw-r--r--source/ml/sw/source/uibase/ribbar.po10
-rw-r--r--source/ml/sw/source/uibase/uiview.po10
-rw-r--r--source/ml/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/mn/desktop/source/deployment/gui.po24
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/mn/sc/source/ui/src.po6
-rw-r--r--source/mn/sfx2/source/view.po10
-rw-r--r--source/mn/svtools/source/control.po106
-rw-r--r--source/mn/svtools/source/misc.po15
-rw-r--r--source/mn/sw/source/core/undo.po62
-rw-r--r--source/mn/sw/source/uibase/docvw.po42
-rw-r--r--source/mn/sw/source/uibase/ribbar.po10
-rw-r--r--source/mn/sw/source/uibase/uiview.po10
-rw-r--r--source/mn/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/mni/desktop/source/deployment/gui.po24
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/mni/sc/source/ui/src.po6
-rw-r--r--source/mni/sfx2/source/view.po10
-rw-r--r--source/mni/svtools/source/control.po106
-rw-r--r--source/mni/svtools/source/misc.po15
-rw-r--r--source/mni/sw/source/core/undo.po62
-rw-r--r--source/mni/sw/source/uibase/docvw.po42
-rw-r--r--source/mni/sw/source/uibase/ribbar.po10
-rw-r--r--source/mni/sw/source/uibase/uiview.po10
-rw-r--r--source/mni/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/mr/desktop/source/deployment/gui.po24
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/mr/sc/source/ui/src.po6
-rw-r--r--source/mr/sfx2/source/view.po10
-rw-r--r--source/mr/svtools/source/control.po106
-rw-r--r--source/mr/svtools/source/misc.po17
-rw-r--r--source/mr/sw/source/core/undo.po62
-rw-r--r--source/mr/sw/source/uibase/docvw.po42
-rw-r--r--source/mr/sw/source/uibase/ribbar.po10
-rw-r--r--source/mr/sw/source/uibase/uiview.po10
-rw-r--r--source/mr/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/my/desktop/source/deployment/gui.po18
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/my/sc/source/ui/src.po6
-rw-r--r--source/my/sfx2/source/view.po10
-rw-r--r--source/my/svtools/source/control.po106
-rw-r--r--source/my/svtools/source/misc.po15
-rw-r--r--source/my/sw/source/core/undo.po62
-rw-r--r--source/my/sw/source/uibase/docvw.po42
-rw-r--r--source/my/sw/source/uibase/ribbar.po10
-rw-r--r--source/my/sw/source/uibase/uiview.po10
-rw-r--r--source/my/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/nb/cui/source/options.po8
-rw-r--r--source/nb/desktop/source/deployment/gui.po26
-rw-r--r--source/nb/filter/source/config/fragments/filters.po8
-rw-r--r--source/nb/filter/source/config/fragments/types.po8
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po852
-rw-r--r--source/nb/helpcontent2/source/text/scalc.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared.po38
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po60
-rw-r--r--source/nb/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po168
-rw-r--r--source/nb/reportdesign/uiconfig/dbreport/ui.po9
-rw-r--r--source/nb/sc/source/ui/src.po30
-rw-r--r--source/nb/scp2/source/ooo.po10
-rw-r--r--source/nb/sd/source/ui/app.po8
-rw-r--r--source/nb/sd/uiconfig/simpress/ui.po30
-rw-r--r--source/nb/sfx2/source/view.po10
-rw-r--r--source/nb/starmath/source.po24
-rw-r--r--source/nb/svtools/source/control.po106
-rw-r--r--source/nb/svtools/source/misc.po17
-rw-r--r--source/nb/svx/source/tbxctrls.po8
-rw-r--r--source/nb/svx/uiconfig/ui.po22
-rw-r--r--source/nb/sw/source/core/undo.po62
-rw-r--r--source/nb/sw/source/uibase/docvw.po42
-rw-r--r--source/nb/sw/source/uibase/ribbar.po10
-rw-r--r--source/nb/sw/source/uibase/uiview.po10
-rw-r--r--source/nb/sw/uiconfig/swriter/ui.po67
-rw-r--r--source/nb/wizards/source/formwizard.po18
-rw-r--r--source/nb/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ne/desktop/source/deployment/gui.po24
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ne/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po68
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ne/sc/source/ui/src.po6
-rw-r--r--source/ne/sfx2/source/view.po10
-rw-r--r--source/ne/svtools/source/control.po106
-rw-r--r--source/ne/svtools/source/misc.po15
-rw-r--r--source/ne/sw/source/core/undo.po60
-rw-r--r--source/ne/sw/source/uibase/docvw.po42
-rw-r--r--source/ne/sw/source/uibase/ribbar.po10
-rw-r--r--source/ne/sw/source/uibase/uiview.po10
-rw-r--r--source/ne/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/nl/desktop/source/deployment/gui.po24
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po1230
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po772
-rw-r--r--source/nl/helpcontent2/source/text/scalc/02.po10
-rw-r--r--source/nl/helpcontent2/source/text/scalc/04.po12
-rw-r--r--source/nl/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po62
-rw-r--r--source/nl/helpcontent2/source/text/schart/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/schart/01.po160
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared.po48
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po152
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po608
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po6
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po156
-rw-r--r--source/nl/sc/source/ui/src.po13
-rw-r--r--source/nl/scp2/source/ooo.po10
-rw-r--r--source/nl/sfx2/source/view.po12
-rw-r--r--source/nl/svtools/source/control.po106
-rw-r--r--source/nl/svtools/source/misc.po17
-rw-r--r--source/nl/sw/source/core/undo.po64
-rw-r--r--source/nl/sw/source/uibase/docvw.po42
-rw-r--r--source/nl/sw/source/uibase/ribbar.po10
-rw-r--r--source/nl/sw/source/uibase/uiview.po10
-rw-r--r--source/nl/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/nl/wizards/source/formwizard.po10
-rw-r--r--source/nl/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/nn/cui/uiconfig/ui.po8
-rw-r--r--source/nn/desktop/source/deployment/gui.po26
-rw-r--r--source/nn/filter/source/config/fragments/filters.po8
-rw-r--r--source/nn/filter/source/config/fragments/types.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po1080
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po80
-rw-r--r--source/nn/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/nn/helpcontent2/source/text/schart/01.po26
-rw-r--r--source/nn/helpcontent2/source/text/shared.po38
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po394
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po82
-rw-r--r--source/nn/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po16
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po54
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po192
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po214
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po80
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po60
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po22
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po58
-rw-r--r--source/nn/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po472
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po58
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po154
-rw-r--r--source/nn/helpcontent2/source/text/swriter/librelogo.po20
-rw-r--r--source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/nn/readlicense_oo/docs.po8
-rw-r--r--source/nn/sc/source/ui/src.po15
-rw-r--r--source/nn/scp2/source/ooo.po10
-rw-r--r--source/nn/sd/source/ui/app.po8
-rw-r--r--source/nn/sd/uiconfig/simpress/ui.po14
-rw-r--r--source/nn/sfx2/source/view.po12
-rw-r--r--source/nn/svtools/source/control.po106
-rw-r--r--source/nn/svtools/source/misc.po17
-rw-r--r--source/nn/svx/source/tbxctrls.po8
-rw-r--r--source/nn/svx/source/toolbars.po12
-rw-r--r--source/nn/svx/uiconfig/ui.po6
-rw-r--r--source/nn/sw/source/core/undo.po64
-rw-r--r--source/nn/sw/source/uibase/docvw.po42
-rw-r--r--source/nn/sw/source/uibase/ribbar.po10
-rw-r--r--source/nn/sw/source/uibase/uiview.po10
-rw-r--r--source/nn/sw/uiconfig/swriter/ui.po38
-rw-r--r--source/nn/wizards/source/formwizard.po18
-rw-r--r--source/nn/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/nr/desktop/source/deployment/gui.po24
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/nr/sc/source/ui/src.po6
-rw-r--r--source/nr/sfx2/source/view.po10
-rw-r--r--source/nr/svtools/source/control.po106
-rw-r--r--source/nr/svtools/source/misc.po15
-rw-r--r--source/nr/sw/source/core/undo.po64
-rw-r--r--source/nr/sw/source/uibase/docvw.po42
-rw-r--r--source/nr/sw/source/uibase/ribbar.po10
-rw-r--r--source/nr/sw/source/uibase/uiview.po10
-rw-r--r--source/nr/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/nso/desktop/source/deployment/gui.po24
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/nso/sc/source/ui/src.po6
-rw-r--r--source/nso/sfx2/source/view.po10
-rw-r--r--source/nso/svtools/source/control.po106
-rw-r--r--source/nso/svtools/source/misc.po15
-rw-r--r--source/nso/sw/source/core/undo.po62
-rw-r--r--source/nso/sw/source/uibase/docvw.po42
-rw-r--r--source/nso/sw/source/uibase/ribbar.po10
-rw-r--r--source/nso/sw/source/uibase/uiview.po10
-rw-r--r--source/nso/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/oc/desktop/source/deployment/gui.po24
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/oc/sc/source/ui/src.po6
-rw-r--r--source/oc/sfx2/source/view.po10
-rw-r--r--source/oc/svtools/source/control.po106
-rw-r--r--source/oc/svtools/source/misc.po17
-rw-r--r--source/oc/sw/source/core/undo.po62
-rw-r--r--source/oc/sw/source/uibase/docvw.po42
-rw-r--r--source/oc/sw/source/uibase/ribbar.po10
-rw-r--r--source/oc/sw/source/uibase/uiview.po10
-rw-r--r--source/oc/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/om/desktop/source/deployment/gui.po24
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/om/helpcontent2/source/text/swriter.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/om/sc/source/ui/src.po6
-rw-r--r--source/om/sfx2/source/view.po10
-rw-r--r--source/om/svtools/source/control.po106
-rw-r--r--source/om/svtools/source/misc.po15
-rw-r--r--source/om/sw/source/core/undo.po62
-rw-r--r--source/om/sw/source/uibase/docvw.po42
-rw-r--r--source/om/sw/source/uibase/ribbar.po10
-rw-r--r--source/om/sw/source/uibase/uiview.po10
-rw-r--r--source/om/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/or/desktop/source/deployment/gui.po24
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/or/sc/source/ui/src.po6
-rw-r--r--source/or/sfx2/source/view.po10
-rw-r--r--source/or/svtools/source/control.po106
-rw-r--r--source/or/svtools/source/misc.po17
-rw-r--r--source/or/sw/source/core/undo.po62
-rw-r--r--source/or/sw/source/uibase/docvw.po42
-rw-r--r--source/or/sw/source/uibase/ribbar.po10
-rw-r--r--source/or/sw/source/uibase/uiview.po10
-rw-r--r--source/or/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/pa-IN/desktop/source/deployment/gui.po24
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/pa-IN/sc/source/ui/src.po6
-rw-r--r--source/pa-IN/sfx2/source/view.po10
-rw-r--r--source/pa-IN/svtools/source/control.po106
-rw-r--r--source/pa-IN/svtools/source/misc.po17
-rw-r--r--source/pa-IN/sw/source/core/undo.po62
-rw-r--r--source/pa-IN/sw/source/uibase/docvw.po42
-rw-r--r--source/pa-IN/sw/source/uibase/ribbar.po10
-rw-r--r--source/pa-IN/sw/source/uibase/uiview.po10
-rw-r--r--source/pa-IN/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/pl/desktop/source/deployment/gui.po22
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/pl/helpcontent2/source/text/swriter.po6
-rw-r--r--source/pl/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/pl/sc/source/ui/src.po6
-rw-r--r--source/pl/sfx2/source/view.po10
-rw-r--r--source/pl/svtools/source/control.po106
-rw-r--r--source/pl/svtools/source/misc.po17
-rw-r--r--source/pl/sw/source/core/undo.po62
-rw-r--r--source/pl/sw/source/uibase/docvw.po42
-rw-r--r--source/pl/sw/source/uibase/ribbar.po10
-rw-r--r--source/pl/sw/source/uibase/uiview.po10
-rw-r--r--source/pl/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/pt-BR/desktop/source/deployment/gui.po24
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po966
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared.po26
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po18
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po18
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/explorer/database.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po82
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po72
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po72
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po136
-rw-r--r--source/pt-BR/sc/source/ui/src.po14
-rw-r--r--source/pt-BR/sfx2/source/view.po14
-rw-r--r--source/pt-BR/svtools/source/control.po112
-rw-r--r--source/pt-BR/svtools/source/misc.po21
-rw-r--r--source/pt-BR/sw/source/core/undo.po62
-rw-r--r--source/pt-BR/sw/source/uibase/docvw.po48
-rw-r--r--source/pt-BR/sw/source/uibase/ribbar.po16
-rw-r--r--source/pt-BR/sw/source/uibase/uiview.po18
-rw-r--r--source/pt-BR/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/pt/desktop/source/deployment/gui.po24
-rw-r--r--source/pt/filter/source/config/fragments/filters.po8
-rw-r--r--source/pt/filter/source/config/fragments/types.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po1028
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po44
-rw-r--r--source/pt/helpcontent2/source/text/shared.po22
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po18
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po186
-rw-r--r--source/pt/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po26
-rw-r--r--source/pt/helpcontent2/source/text/smath/00.po24
-rw-r--r--source/pt/helpcontent2/source/text/smath/01.po72
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po48
-rw-r--r--source/pt/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po186
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po166
-rw-r--r--source/pt/sc/source/ui/src.po10
-rw-r--r--source/pt/scp2/source/ooo.po10
-rw-r--r--source/pt/sfx2/source/view.po16
-rw-r--r--source/pt/starmath/source.po12
-rw-r--r--source/pt/svtools/source/control.po112
-rw-r--r--source/pt/svtools/source/misc.po21
-rw-r--r--source/pt/sw/source/core/undo.po56
-rw-r--r--source/pt/sw/source/uibase/docvw.po48
-rw-r--r--source/pt/sw/source/uibase/ribbar.po16
-rw-r--r--source/pt/sw/source/uibase/uiview.po16
-rw-r--r--source/pt/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/pt/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ro/desktop/source/deployment/gui.po24
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po4
-rw-r--r--source/ro/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po36
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po36
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ro/sc/source/ui/src.po6
-rw-r--r--source/ro/sfx2/source/view.po10
-rw-r--r--source/ro/svtools/source/control.po106
-rw-r--r--source/ro/svtools/source/misc.po19
-rw-r--r--source/ro/sw/source/core/undo.po64
-rw-r--r--source/ro/sw/source/uibase/docvw.po42
-rw-r--r--source/ro/sw/source/uibase/ribbar.po10
-rw-r--r--source/ro/sw/source/uibase/uiview.po10
-rw-r--r--source/ro/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ru/desktop/source/deployment/gui.po20
-rw-r--r--source/ru/filter/source/config/fragments/filters.po10
-rw-r--r--source/ru/filter/source/config/fragments/types.po8
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ru/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/ru/sc/source/ui/src.po15
-rw-r--r--source/ru/sfx2/source/view.po12
-rw-r--r--source/ru/svtools/source/control.po106
-rw-r--r--source/ru/svtools/source/dialogs.po20
-rw-r--r--source/ru/svtools/source/misc.po19
-rw-r--r--source/ru/svtools/uiconfig/ui.po10
-rw-r--r--source/ru/sw/source/core/undo.po64
-rw-r--r--source/ru/sw/source/uibase/docvw.po42
-rw-r--r--source/ru/sw/source/uibase/ribbar.po10
-rw-r--r--source/ru/sw/source/uibase/uiview.po10
-rw-r--r--source/ru/sw/uiconfig/swriter/ui.po21
-rw-r--r--source/ru/wizards/source/formwizard.po6
-rw-r--r--source/ru/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/rw/desktop/source/deployment/gui.po24
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/rw/sc/source/ui/src.po6
-rw-r--r--source/rw/sfx2/source/view.po10
-rw-r--r--source/rw/svtools/source/control.po106
-rw-r--r--source/rw/svtools/source/misc.po15
-rw-r--r--source/rw/sw/source/core/undo.po62
-rw-r--r--source/rw/sw/source/uibase/docvw.po42
-rw-r--r--source/rw/sw/source/uibase/ribbar.po10
-rw-r--r--source/rw/sw/source/uibase/uiview.po10
-rw-r--r--source/rw/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sa-IN/desktop/source/deployment/gui.po24
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sa-IN/sc/source/ui/src.po6
-rw-r--r--source/sa-IN/sfx2/source/view.po10
-rw-r--r--source/sa-IN/svtools/source/control.po106
-rw-r--r--source/sa-IN/svtools/source/misc.po17
-rw-r--r--source/sa-IN/sw/source/core/undo.po62
-rw-r--r--source/sa-IN/sw/source/uibase/docvw.po42
-rw-r--r--source/sa-IN/sw/source/uibase/ribbar.po10
-rw-r--r--source/sa-IN/sw/source/uibase/uiview.po10
-rw-r--r--source/sa-IN/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sat/desktop/source/deployment/gui.po24
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sat/sc/source/ui/src.po6
-rw-r--r--source/sat/sfx2/source/view.po10
-rw-r--r--source/sat/svtools/source/control.po106
-rw-r--r--source/sat/svtools/source/misc.po17
-rw-r--r--source/sat/sw/source/core/undo.po62
-rw-r--r--source/sat/sw/source/uibase/docvw.po42
-rw-r--r--source/sat/sw/source/uibase/ribbar.po10
-rw-r--r--source/sat/sw/source/uibase/uiview.po10
-rw-r--r--source/sat/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sd/desktop/source/deployment/gui.po24
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sd/sc/source/ui/src.po6
-rw-r--r--source/sd/sfx2/source/view.po10
-rw-r--r--source/sd/svtools/source/control.po106
-rw-r--r--source/sd/svtools/source/misc.po17
-rw-r--r--source/sd/sw/source/core/undo.po62
-rw-r--r--source/sd/sw/source/uibase/docvw.po42
-rw-r--r--source/sd/sw/source/uibase/ribbar.po10
-rw-r--r--source/sd/sw/source/uibase/uiview.po10
-rw-r--r--source/sd/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/si/desktop/source/deployment/gui.po18
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/si/helpcontent2/source/text/swriter.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po36
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/si/sc/source/ui/src.po6
-rw-r--r--source/si/sfx2/source/view.po10
-rw-r--r--source/si/svtools/source/control.po106
-rw-r--r--source/si/svtools/source/misc.po15
-rw-r--r--source/si/sw/source/core/undo.po62
-rw-r--r--source/si/sw/source/uibase/docvw.po42
-rw-r--r--source/si/sw/source/uibase/ribbar.po10
-rw-r--r--source/si/sw/source/uibase/uiview.po10
-rw-r--r--source/si/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sid/desktop/source/deployment/gui.po24
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/sid/helpcontent2/source/text/swriter.po6
-rw-r--r--source/sid/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po62
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sid/sc/source/ui/src.po6
-rw-r--r--source/sid/sfx2/source/view.po10
-rw-r--r--source/sid/svtools/source/control.po106
-rw-r--r--source/sid/svtools/source/misc.po17
-rw-r--r--source/sid/sw/source/core/undo.po62
-rw-r--r--source/sid/sw/source/uibase/docvw.po42
-rw-r--r--source/sid/sw/source/uibase/ribbar.po10
-rw-r--r--source/sid/sw/source/uibase/uiview.po10
-rw-r--r--source/sid/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sk/dbaccess/source/ui/browser.po16
-rw-r--r--source/sk/dbaccess/uiconfig/ui.po26
-rw-r--r--source/sk/desktop/source/deployment/gui.po24
-rw-r--r--source/sk/editeng/source/editeng.po8
-rw-r--r--source/sk/editeng/source/items.po8
-rw-r--r--source/sk/editeng/uiconfig/ui.po21
-rw-r--r--source/sk/filter/source/config/fragments/filters.po14
-rw-r--r--source/sk/filter/source/config/fragments/types.po10
-rw-r--r--source/sk/filter/uiconfig/ui.po10
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po54
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po54
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sk/sc/source/ui/src.po6
-rw-r--r--source/sk/scp2/source/ooo.po6
-rw-r--r--source/sk/sfx2/source/view.po10
-rw-r--r--source/sk/svtools/source/control.po106
-rw-r--r--source/sk/svtools/source/misc.po17
-rw-r--r--source/sk/sw/source/core/undo.po62
-rw-r--r--source/sk/sw/source/uibase/docvw.po42
-rw-r--r--source/sk/sw/source/uibase/ribbar.po10
-rw-r--r--source/sk/sw/source/uibase/uiview.po10
-rw-r--r--source/sk/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sq/desktop/source/deployment/gui.po26
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/sq/helpcontent2/source/text/swriter.po4
-rw-r--r--source/sq/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sq/sc/source/ui/src.po6
-rw-r--r--source/sq/sfx2/source/view.po10
-rw-r--r--source/sq/svtools/source/control.po106
-rw-r--r--source/sq/svtools/source/misc.po15
-rw-r--r--source/sq/sw/source/core/undo.po62
-rw-r--r--source/sq/sw/source/uibase/docvw.po42
-rw-r--r--source/sq/sw/source/uibase/ribbar.po10
-rw-r--r--source/sq/sw/source/uibase/uiview.po10
-rw-r--r--source/sq/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ss/desktop/source/deployment/gui.po24
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ss/sc/source/ui/src.po6
-rw-r--r--source/ss/sfx2/source/view.po10
-rw-r--r--source/ss/svtools/source/control.po106
-rw-r--r--source/ss/svtools/source/misc.po15
-rw-r--r--source/ss/sw/source/core/undo.po64
-rw-r--r--source/ss/sw/source/uibase/docvw.po42
-rw-r--r--source/ss/sw/source/uibase/ribbar.po10
-rw-r--r--source/ss/sw/source/uibase/uiview.po10
-rw-r--r--source/ss/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/st/desktop/source/deployment/gui.po24
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/st/sc/source/ui/src.po6
-rw-r--r--source/st/sfx2/source/view.po10
-rw-r--r--source/st/svtools/source/control.po106
-rw-r--r--source/st/svtools/source/misc.po15
-rw-r--r--source/st/sw/source/core/undo.po64
-rw-r--r--source/st/sw/source/uibase/docvw.po42
-rw-r--r--source/st/sw/source/uibase/ribbar.po10
-rw-r--r--source/st/sw/source/uibase/uiview.po10
-rw-r--r--source/st/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sv/desktop/source/deployment/gui.po26
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sv/sc/source/ui/src.po6
-rw-r--r--source/sv/sfx2/source/view.po10
-rw-r--r--source/sv/svtools/source/control.po106
-rw-r--r--source/sv/svtools/source/misc.po17
-rw-r--r--source/sv/sw/source/core/undo.po62
-rw-r--r--source/sv/sw/source/uibase/docvw.po42
-rw-r--r--source/sv/sw/source/uibase/ribbar.po10
-rw-r--r--source/sv/sw/source/uibase/uiview.po10
-rw-r--r--source/sv/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/sw-TZ/desktop/source/deployment/gui.po24
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sw-TZ/sc/source/ui/src.po6
-rw-r--r--source/sw-TZ/sfx2/source/view.po10
-rw-r--r--source/sw-TZ/svtools/source/control.po106
-rw-r--r--source/sw-TZ/svtools/source/misc.po15
-rw-r--r--source/sw-TZ/sw/source/core/undo.po62
-rw-r--r--source/sw-TZ/sw/source/uibase/docvw.po42
-rw-r--r--source/sw-TZ/sw/source/uibase/ribbar.po10
-rw-r--r--source/sw-TZ/sw/source/uibase/uiview.po10
-rw-r--r--source/sw-TZ/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/szl/desktop/source/deployment/gui.po20
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/szl/sc/source/ui/src.po6
-rw-r--r--source/szl/sfx2/source/view.po10
-rw-r--r--source/szl/svtools/source/control.po106
-rw-r--r--source/szl/svtools/source/misc.po15
-rw-r--r--source/szl/sw/source/core/undo.po52
-rw-r--r--source/szl/sw/source/uibase/docvw.po42
-rw-r--r--source/szl/sw/source/uibase/ribbar.po10
-rw-r--r--source/szl/sw/source/uibase/uiview.po10
-rw-r--r--source/szl/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ta/desktop/source/deployment/gui.po26
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po836
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ta/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po46
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ta/sc/source/ui/src.po6
-rw-r--r--source/ta/sfx2/source/view.po10
-rw-r--r--source/ta/svtools/source/control.po106
-rw-r--r--source/ta/svtools/source/misc.po17
-rw-r--r--source/ta/sw/source/core/undo.po62
-rw-r--r--source/ta/sw/source/uibase/docvw.po42
-rw-r--r--source/ta/sw/source/uibase/ribbar.po10
-rw-r--r--source/ta/sw/source/uibase/uiview.po10
-rw-r--r--source/ta/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/te/desktop/source/deployment/gui.po24
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/te/sc/source/ui/src.po6
-rw-r--r--source/te/sfx2/source/view.po10
-rw-r--r--source/te/svtools/source/control.po106
-rw-r--r--source/te/svtools/source/misc.po17
-rw-r--r--source/te/sw/source/core/undo.po62
-rw-r--r--source/te/sw/source/uibase/docvw.po42
-rw-r--r--source/te/sw/source/uibase/ribbar.po10
-rw-r--r--source/te/sw/source/uibase/uiview.po10
-rw-r--r--source/te/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/tg/desktop/source/deployment/gui.po24
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po828
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/tg/helpcontent2/source/text/swriter.po6
-rw-r--r--source/tg/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/tg/sc/source/ui/src.po6
-rw-r--r--source/tg/sfx2/source/view.po10
-rw-r--r--source/tg/svtools/source/control.po106
-rw-r--r--source/tg/svtools/source/misc.po15
-rw-r--r--source/tg/sw/source/core/undo.po62
-rw-r--r--source/tg/sw/source/uibase/docvw.po42
-rw-r--r--source/tg/sw/source/uibase/ribbar.po10
-rw-r--r--source/tg/sw/source/uibase/uiview.po10
-rw-r--r--source/tg/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/th/desktop/source/deployment/gui.po24
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/th/sc/source/ui/src.po6
-rw-r--r--source/th/sfx2/source/view.po10
-rw-r--r--source/th/svtools/source/control.po106
-rw-r--r--source/th/svtools/source/misc.po17
-rw-r--r--source/th/sw/source/core/undo.po62
-rw-r--r--source/th/sw/source/uibase/docvw.po42
-rw-r--r--source/th/sw/source/uibase/ribbar.po10
-rw-r--r--source/th/sw/source/uibase/uiview.po10
-rw-r--r--source/th/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/tn/desktop/source/deployment/gui.po24
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/tn/sc/source/ui/src.po6
-rw-r--r--source/tn/sfx2/source/view.po10
-rw-r--r--source/tn/svtools/source/control.po106
-rw-r--r--source/tn/svtools/source/misc.po15
-rw-r--r--source/tn/sw/source/core/undo.po63
-rw-r--r--source/tn/sw/source/uibase/docvw.po42
-rw-r--r--source/tn/sw/source/uibase/ribbar.po10
-rw-r--r--source/tn/sw/source/uibase/uiview.po10
-rw-r--r--source/tn/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/tr/desktop/source/deployment/gui.po22
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po832
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/tr/helpcontent2/source/text/swriter.po10
-rw-r--r--source/tr/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po72
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po72
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po136
-rw-r--r--source/tr/sc/source/ui/src.po12
-rw-r--r--source/tr/sfx2/source/view.po14
-rw-r--r--source/tr/svtools/source/control.po112
-rw-r--r--source/tr/svtools/source/misc.po21
-rw-r--r--source/tr/sw/source/core/undo.po62
-rw-r--r--source/tr/sw/source/uibase/docvw.po48
-rw-r--r--source/tr/sw/source/uibase/ribbar.po18
-rw-r--r--source/tr/sw/source/uibase/uiview.po18
-rw-r--r--source/tr/wizards/source/formwizard.po10
-rw-r--r--source/tr/xmlsecurity/uiconfig/ui.po15
-rw-r--r--source/ts/desktop/source/deployment/gui.po24
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ts/sc/source/ui/src.po6
-rw-r--r--source/ts/sfx2/source/view.po10
-rw-r--r--source/ts/svtools/source/control.po106
-rw-r--r--source/ts/svtools/source/misc.po15
-rw-r--r--source/ts/sw/source/core/undo.po64
-rw-r--r--source/ts/sw/source/uibase/docvw.po42
-rw-r--r--source/ts/sw/source/uibase/ribbar.po10
-rw-r--r--source/ts/sw/source/uibase/uiview.po10
-rw-r--r--source/ts/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ug/desktop/source/deployment/gui.po24
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ug/helpcontent2/source/text/swriter.po6
-rw-r--r--source/ug/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ug/sc/source/ui/src.po6
-rw-r--r--source/ug/sfx2/source/view.po10
-rw-r--r--source/ug/svtools/source/control.po106
-rw-r--r--source/ug/svtools/source/misc.po17
-rw-r--r--source/ug/sw/source/core/undo.po62
-rw-r--r--source/ug/sw/source/uibase/docvw.po42
-rw-r--r--source/ug/sw/source/uibase/ribbar.po10
-rw-r--r--source/ug/sw/source/uibase/uiview.po10
-rw-r--r--source/ug/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/uk/desktop/source/deployment/gui.po24
-rw-r--r--source/uk/filter/source/config/fragments/filters.po10
-rw-r--r--source/uk/filter/source/config/fragments/types.po10
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po870
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/guide.po12
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po16
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po280
-rw-r--r--source/uk/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/uk/helpcontent2/source/text/simpress.po12
-rw-r--r--source/uk/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po56
-rw-r--r--source/uk/helpcontent2/source/text/simpress/guide.po28
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/uk/helpcontent2/source/text/swriter/librelogo.po16
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office.po1890
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/uk/sc/source/ui/src.po13
-rw-r--r--source/uk/sd/source/ui/app.po6
-rw-r--r--source/uk/sd/uiconfig/simpress/ui.po24
-rw-r--r--source/uk/sfx2/source/view.po10
-rw-r--r--source/uk/svtools/source/control.po106
-rw-r--r--source/uk/svtools/source/misc.po17
-rw-r--r--source/uk/sw/source/core/undo.po56
-rw-r--r--source/uk/sw/source/uibase/docvw.po48
-rw-r--r--source/uk/sw/source/uibase/ribbar.po16
-rw-r--r--source/uk/sw/source/uibase/uiview.po18
-rw-r--r--source/uk/sw/uiconfig/swriter/ui.po48
-rw-r--r--source/uk/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/uz/desktop/source/deployment/gui.po24
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/uz/sc/source/ui/src.po6
-rw-r--r--source/uz/sfx2/source/view.po10
-rw-r--r--source/uz/svtools/source/control.po106
-rw-r--r--source/uz/svtools/source/misc.po15
-rw-r--r--source/uz/sw/source/core/undo.po62
-rw-r--r--source/uz/sw/source/uibase/docvw.po42
-rw-r--r--source/uz/sw/source/uibase/ribbar.po10
-rw-r--r--source/uz/sw/source/uibase/uiview.po10
-rw-r--r--source/uz/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/ve/desktop/source/deployment/gui.po18
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ve/sc/source/ui/src.po6
-rw-r--r--source/ve/sfx2/source/view.po10
-rw-r--r--source/ve/svtools/source/control.po106
-rw-r--r--source/ve/svtools/source/misc.po15
-rw-r--r--source/ve/sw/source/core/undo.po64
-rw-r--r--source/ve/sw/source/uibase/docvw.po42
-rw-r--r--source/ve/sw/source/uibase/ribbar.po10
-rw-r--r--source/ve/sw/source/uibase/uiview.po10
-rw-r--r--source/ve/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/vec/desktop/source/deployment/gui.po20
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/vec/sc/source/ui/src.po91
-rw-r--r--source/vec/sc/uiconfig/scalc/ui.po26
-rw-r--r--source/vec/scaddins/source/analysis.po6
-rw-r--r--source/vec/scaddins/source/datefunc.po6
-rw-r--r--source/vec/sd/source/core.po10
-rw-r--r--source/vec/sd/source/ui/app.po16
-rw-r--r--source/vec/sd/source/ui/view.po8
-rw-r--r--source/vec/sfx2/source/view.po12
-rw-r--r--source/vec/svtools/source/control.po106
-rw-r--r--source/vec/svtools/source/misc.po19
-rw-r--r--source/vec/sw/source/core/undo.po64
-rw-r--r--source/vec/sw/source/uibase/docvw.po42
-rw-r--r--source/vec/sw/source/uibase/ribbar.po10
-rw-r--r--source/vec/sw/source/uibase/uiview.po10
-rw-r--r--source/vec/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/vi/desktop/source/deployment/gui.po24
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/vi/sc/source/ui/src.po6
-rw-r--r--source/vi/sfx2/source/view.po10
-rw-r--r--source/vi/svtools/source/control.po106
-rw-r--r--source/vi/svtools/source/misc.po17
-rw-r--r--source/vi/sw/source/core/undo.po62
-rw-r--r--source/vi/sw/source/uibase/docvw.po42
-rw-r--r--source/vi/sw/source/uibase/ribbar.po10
-rw-r--r--source/vi/sw/source/uibase/uiview.po10
-rw-r--r--source/vi/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/xh/desktop/source/deployment/gui.po18
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/xh/sc/source/ui/src.po6
-rw-r--r--source/xh/sfx2/source/view.po10
-rw-r--r--source/xh/svtools/source/control.po106
-rw-r--r--source/xh/svtools/source/misc.po15
-rw-r--r--source/xh/sw/source/core/undo.po64
-rw-r--r--source/xh/sw/source/uibase/docvw.po42
-rw-r--r--source/xh/sw/source/uibase/ribbar.po10
-rw-r--r--source/xh/sw/source/uibase/uiview.po10
-rw-r--r--source/xh/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/zh-CN/desktop/source/deployment/gui.po24
-rw-r--r--source/zh-CN/editeng/source/items.po12
-rw-r--r--source/zh-CN/filter/source/config/fragments/filters.po16
-rw-r--r--source/zh-CN/filter/source/config/fragments/types.po10
-rw-r--r--source/zh-CN/filter/uiconfig/ui.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po496
-rw-r--r--source/zh-CN/reportdesign/uiconfig/dbreport/ui.po20
-rw-r--r--source/zh-CN/sc/source/core/src.po16
-rw-r--r--source/zh-CN/sc/source/ui/cctrl.po20
-rw-r--r--source/zh-CN/sc/source/ui/src.po36
-rw-r--r--source/zh-CN/sc/uiconfig/scalc/ui.po26
-rw-r--r--source/zh-CN/scaddins/source/analysis.po14
-rw-r--r--source/zh-CN/scaddins/source/datefunc.po24
-rw-r--r--source/zh-CN/scaddins/source/pricing.po16
-rw-r--r--source/zh-CN/scp2/source/ooo.po84
-rw-r--r--source/zh-CN/sfx2/source/view.po10
-rw-r--r--source/zh-CN/svtools/source/control.po106
-rw-r--r--source/zh-CN/svtools/source/misc.po43
-rw-r--r--source/zh-CN/sw/source/core/undo.po62
-rw-r--r--source/zh-CN/sw/source/uibase/docvw.po42
-rw-r--r--source/zh-CN/sw/source/uibase/ribbar.po10
-rw-r--r--source/zh-CN/sw/source/uibase/uiview.po10
-rw-r--r--source/zh-CN/sw/uiconfig/swriter/ui.po232
-rw-r--r--source/zh-CN/vcl/source/src.po12
-rw-r--r--source/zh-CN/vcl/uiconfig/ui.po10
-rw-r--r--source/zh-CN/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/zh-TW/desktop/source/deployment/gui.po24
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po830
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po70
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po68
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/zh-TW/sc/source/ui/src.po6
-rw-r--r--source/zh-TW/sfx2/source/view.po10
-rw-r--r--source/zh-TW/svtools/source/control.po106
-rw-r--r--source/zh-TW/svtools/source/misc.po17
-rw-r--r--source/zh-TW/sw/source/core/undo.po62
-rw-r--r--source/zh-TW/sw/source/uibase/docvw.po42
-rw-r--r--source/zh-TW/sw/source/uibase/ribbar.po10
-rw-r--r--source/zh-TW/sw/source/uibase/uiview.po10
-rw-r--r--source/zh-TW/xmlsecurity/uiconfig/ui.po11
-rw-r--r--source/zu/desktop/source/deployment/gui.po24
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/zu/sc/source/ui/src.po6
-rw-r--r--source/zu/sfx2/source/view.po10
-rw-r--r--source/zu/svtools/source/control.po106
-rw-r--r--source/zu/svtools/source/misc.po17
-rw-r--r--source/zu/sw/source/core/undo.po62
-rw-r--r--source/zu/sw/source/uibase/docvw.po42
-rw-r--r--source/zu/sw/source/uibase/ribbar.po10
-rw-r--r--source/zu/sw/source/uibase/uiview.po10
-rw-r--r--source/zu/xmlsecurity/uiconfig/ui.po11
2303 files changed, 119065 insertions, 30404 deletions
diff --git a/source/af/desktop/source/deployment/gui.po b/source/af/desktop/source/deployment/gui.po
index c25abf29c7c..7947d81e728 100644
--- a/source/af/desktop/source/deployment/gui.po
+++ b/source/af/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 15:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-01 15:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467647062.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462118000.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -176,6 +176,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -190,6 +198,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
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 7ee10170fa2..519779c9b8a 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 17:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Kies temas"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4095,6 +4095,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27056,15 +27173,6 @@ msgid "~Properties..."
msgstr "Eienskappe..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/af/sc/source/ui/src.po b/source/af/sc/source/ui/src.po
index fad026a00e1..f2229562372 100644
--- a/source/af/sc/source/ui/src.po
+++ b/source/af/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 10:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "Reikwydte van #1 na #2 geskuif"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2884,7 +2884,7 @@ msgstr "Geneste skikkings word nie ondersteun nie."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/af/sfx2/source/view.po b/source/af/sfx2/source/view.po
index a799cf46e76..406575215cc 100644
--- a/source/af/sfx2/source/view.po
+++ b/source/af/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 11:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/af/svtools/source/control.po b/source/af/svtools/source/control.po
index 8e26b5ef7ab..58f46dd2264 100644
--- a/source/af/svtools/source/control.po
+++ b/source/af/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 22:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Swart skuinsdruk"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/af/svtools/source/misc.po b/source/af/svtools/source/misc.po
index d3ccf92c1e3..4b38747c321 100644
--- a/source/af/svtools/source/misc.po
+++ b/source/af/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 11:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3193,9 +3193,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3923,6 +3923,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/af/sw/source/core/undo.po b/source/af/sw/source/core/undo.po
index ee32c8a9d2a..6d81b85d79c 100644
--- a/source/af/sw/source/core/undo.po
+++ b/source/af/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-02 11:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "kolombreuk"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Voeg $1 in"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Skrap $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attribute gewysig"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabel is verander"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Styl gewysig"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/af/sw/source/uibase/docvw.po b/source/af/sw/source/uibase/docvw.po
index 680821ac5d4..93853fb35d8 100644
--- a/source/af/sw/source/uibase/docvw.po
+++ b/source/af/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/af/sw/source/uibase/ribbar.po b/source/af/sw/source/uibase/ribbar.po
index 1ff5d49ca3c..886625de79b 100644
--- a/source/af/sw/source/uibase/ribbar.po
+++ b/source/af/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-02 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/af/sw/source/uibase/uiview.po b/source/af/sw/source/uibase/uiview.po
index bd286e515e0..3fd87d7d12d 100644
--- a/source/af/sw/source/uibase/uiview.po
+++ b/source/af/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/af/xmlsecurity/uiconfig/ui.po b/source/af/xmlsecurity/uiconfig/ui.po
index f59581c46d4..b70bacc2f86 100644
--- a/source/af/xmlsecurity/uiconfig/ui.po
+++ b/source/af/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 12:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/am/basctl/source/basicide.po b/source/am/basctl/source/basicide.po
index 4c17f41959e..2db92998916 100644
--- a/source/am/basctl/source/basicide.po
+++ b/source/am/basctl/source/basicide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-08 00:36+0000\n"
+"PO-Revision-Date: 2017-06-19 13:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481157392.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497879888.000000\n"
#: basicprint.src
msgctxt ""
@@ -496,7 +496,7 @@ msgctxt ""
"RID_STR_SHAREMACROS\n"
"string.text"
msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME ማክሮስ"
#: basidesh.src
msgctxt ""
@@ -528,7 +528,7 @@ msgctxt ""
"RID_STR_QUERYREPLACEMACRO\n"
"string.text"
msgid "Do you want to overwrite the XX macro?"
-msgstr "በ XX macro ላይ ደርበው መጻፍ ይፈልጋሉ?"
+msgstr "በ XX ማክሮ ላይ ደርበው መጻፍ ይፈልጋሉ?"
#: basidesh.src
msgctxt ""
diff --git a/source/am/basic/source/classes.po b/source/am/basic/source/classes.po
index 1c54144390e..f8bd573004d 100644
--- a/source/am/basic/source/classes.po
+++ b/source/am/basic/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 18:39+0000\n"
+"PO-Revision-Date: 2017-06-07 04:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492713562.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496809724.000000\n"
#: sb.src
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"Incorrect record length.\n"
"itemlist.text"
msgid "Incorrect record length."
-msgstr "የተሳሳተ የ መዝገብ እርዝመት"
+msgstr "የ ተሳሳተ የ መዝገብ እርዝመት"
#: sb.src
msgctxt ""
diff --git a/source/am/chart2/source/controller/dialogs.po b/source/am/chart2/source/controller/dialogs.po
index c8c01cb7225..d3b80b42e26 100644
--- a/source/am/chart2/source/controller/dialogs.po
+++ b/source/am/chart2/source/controller/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-02-16 21:28+0000\n"
+"PO-Revision-Date: 2017-06-14 22:20+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487280481.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497478830.000000\n"
#: Strings.src
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"STR_OBJECT_AXIS\n"
"string.text"
msgid "Axis"
-msgstr "Axis"
+msgstr "አክሲስ"
#: Strings.src
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"STR_OBJECT_AXIS_X\n"
"string.text"
msgid "X Axis"
-msgstr "X Axis"
+msgstr "X አክሲስ"
#: Strings.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STR_OBJECT_AXIS_Y\n"
"string.text"
msgid "Y Axis"
-msgstr "Y Axis"
+msgstr "Y አክሲስ"
#: Strings.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"STR_OBJECT_AXIS_Z\n"
"string.text"
msgid "Z Axis"
-msgstr "Z Axis"
+msgstr "Z አክሲስ"
#: Strings.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STR_OBJECT_SECONDARY_X_AXIS\n"
"string.text"
msgid "Secondary X Axis"
-msgstr "ሁለተኛ X Axis"
+msgstr "ሁለተኛ X አክሲስ"
#: Strings.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"STR_OBJECT_SECONDARY_Y_AXIS\n"
"string.text"
msgid "Secondary Y Axis"
-msgstr "ሁለተኛ Y Axis"
+msgstr "ሁለተኛ Y አክሲስ"
#: Strings.src
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"STR_OBJECT_AXES\n"
"string.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: Strings.src
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"STR_OBJECT_GRID_MAJOR_X\n"
"string.text"
msgid "X Axis Major Grid"
-msgstr "የ X Axis ዋና መጋጠሚያ"
+msgstr "የ X አክሲስ ዋና መጋጠሚያ"
#: Strings.src
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"STR_OBJECT_GRID_MAJOR_Y\n"
"string.text"
msgid "Y Axis Major Grid"
-msgstr "የ Y Axis ዋና መጋጠሚያ"
+msgstr "የ Y አክሲስ ዋና መጋጠሚያ"
#: Strings.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"STR_OBJECT_GRID_MAJOR_Z\n"
"string.text"
msgid "Z Axis Major Grid"
-msgstr "የ Z Axis ዋና መጋጠሚያ"
+msgstr "የ Z አክሲስ ዋና መጋጠሚያ"
#: Strings.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_OBJECT_GRID_MINOR_X\n"
"string.text"
msgid "X Axis Minor Grid"
-msgstr "የ X Axis አነስተኛ መጋጠሚያ"
+msgstr "የ X አክሲስ አነስተኛ መጋጠሚያ"
#: Strings.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_OBJECT_GRID_MINOR_Y\n"
"string.text"
msgid "Y Axis Minor Grid"
-msgstr "የ Y Axis አነስተኛ መጋጠሚያ"
+msgstr "የ Y አክሲስ አነስተኛ መጋጠሚያ"
#: Strings.src
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"STR_OBJECT_GRID_MINOR_Z\n"
"string.text"
msgid "Z Axis Minor Grid"
-msgstr "የ Z Axis አነስተኛ መጋጠሚያ"
+msgstr "የ Z አክሲስ አነስተኛ መጋጠሚያ"
#: Strings.src
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"STR_OBJECT_TITLE_X_AXIS\n"
"string.text"
msgid "X Axis Title"
-msgstr "X Axis አርእስት"
+msgstr "የ X አክሲስ አርእስት"
#: Strings.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"STR_OBJECT_TITLE_Y_AXIS\n"
"string.text"
msgid "Y Axis Title"
-msgstr "Y Axis አርእስት"
+msgstr "የ Y አክሲስ አርእስት"
#: Strings.src
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"STR_OBJECT_TITLE_Z_AXIS\n"
"string.text"
msgid "Z Axis Title"
-msgstr "Z Axis አርእስት"
+msgstr "የ Z አክሲስ አርእስት"
#: Strings.src
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"STR_OBJECT_TITLE_SECONDARY_X_AXIS\n"
"string.text"
msgid "Secondary X Axis Title"
-msgstr "ሁለተኛ X Axis አርእስት"
+msgstr "ሁለተኛ X አክሲስ አርእስት"
#: Strings.src
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"STR_OBJECT_TITLE_SECONDARY_Y_AXIS\n"
"string.text"
msgid "Secondary Y Axis Title"
-msgstr "ሁለተኛ Y Axis አርእስት"
+msgstr "ሁለተኛ Y አክሲስ አርእስት"
#: Strings.src
msgctxt ""
diff --git a/source/am/chart2/uiconfig/ui.po b/source/am/chart2/uiconfig/ui.po
index ba7b7e87a5d..11a5f551088 100644
--- a/source/am/chart2/uiconfig/ui.po
+++ b/source/am/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-04 16:16+0000\n"
+"PO-Revision-Date: 2017-06-14 22:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493914589.000000\n"
+"X-POOTLE-MTIME: 1497478878.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Axes"
-msgstr "ዘንጎች"
+msgstr "አክሲስ"
#: insertaxisdlg.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr "_X ዘንግ"
+msgstr "_X አክሲስ"
#: insertaxisdlg.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr "_Y ዘንግ"
+msgstr "_Y አክሲስ"
#: insertaxisdlg.ui
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr "_Z ዘንግ"
+msgstr "_Z አክሲስ"
#: insertaxisdlg.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr "ዘንጎች"
+msgstr "አክሲስ"
#: insertaxisdlg.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr "X _ዘንግ"
+msgstr "X _አክሲስ"
#: insertaxisdlg.ui
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Axes"
-msgstr "ሁለተኛ ዘንጎች"
+msgstr "ሁለተኛ አክሲስ"
#: insertgriddlg.ui
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr "_X ዘንግ"
+msgstr "_X አክሲስ"
#: insertgriddlg.ui
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr "_Y ዘንግ"
+msgstr "_Y አክሲስ"
#: insertgriddlg.ui
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr "_Z ዘንግ"
+msgstr "_Z አክሲስ"
#: insertgriddlg.ui
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr "X _ዘንግ"
+msgstr "X _አክሲስ"
#: insertgriddlg.ui
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr "_X ዘንግ"
+msgstr "_X አክሲስ"
#: inserttitledlg.ui
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr "_Y ዘንግ"
+msgstr "_Y አክሲስ"
#: inserttitledlg.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr "_Z ዘንግ"
+msgstr "_Z አክሲስ"
#: inserttitledlg.ui
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr "ዘንጎች"
+msgstr "አክሲስ"
#: inserttitledlg.ui
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr "X _ዘንግ"
+msgstr "X _አክሲስ"
#: inserttitledlg.ui
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Axes"
-msgstr "ሁለተኛ ዘንጎች"
+msgstr "ሁለተኛ አክሲስ"
#: paradialog.ui
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Near Axis"
-msgstr "Axis አጠገብ"
+msgstr "አክሲስ አጠገብ"
#: sidebaraxis.ui
msgctxt ""
@@ -1076,7 +1076,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Near Axis (other side)"
-msgstr "Axis አጠገብ (በ ሌላ በኩል)"
+msgstr "አክሲስ አጠገብ (በ ሌላ በኩል)"
#: sidebaraxis.ui
msgctxt ""
@@ -1211,7 +1211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis"
-msgstr "X ዘንግ"
+msgstr "X አክሲስ"
#: sidebarelements.ui
msgctxt ""
@@ -1220,7 +1220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis title"
-msgstr "የ X axis አርእስት"
+msgstr "የ X አክሲስ አርእስት"
#: sidebarelements.ui
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis"
-msgstr "Y ዘንግ"
+msgstr "Y አክሲስ"
#: sidebarelements.ui
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis title"
-msgstr "የ Y axis አርእስት"
+msgstr "የ Y አክሲስ አርእስት"
#: sidebarelements.ui
msgctxt ""
@@ -1247,7 +1247,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis"
-msgstr "Z ዘንግ"
+msgstr "Z አክሲስ"
#: sidebarelements.ui
msgctxt ""
@@ -1256,7 +1256,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis title"
-msgstr "የ Z axis አርእስት"
+msgstr "የ Z አክሲስ አርእስት"
#: sidebarelements.ui
msgctxt ""
@@ -1265,7 +1265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd X axis"
-msgstr "2ኛ X axis"
+msgstr "2ኛ X አክሲስ"
#: sidebarelements.ui
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd X axis title"
-msgstr "2ኛ የ X axis አርእስት"
+msgstr "2ኛ የ X አክሲስ አርእስት"
#: sidebarelements.ui
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd Y axis"
-msgstr "2ኛ Y axis"
+msgstr "2ኛ Y አክሲስ"
#: sidebarelements.ui
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd Y axis title"
-msgstr "2ኛ የ Y axis አርእስት"
+msgstr "2ኛ የ Y አክሲስ አርእስት"
#: sidebarelements.ui
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: sidebarelements.ui
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Y axis"
-msgstr "ቀዳሚ የ Y axis"
+msgstr "ቀዳሚ የ Y አክሲስ"
#: sidebarseries.ui
msgctxt ""
@@ -1634,7 +1634,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Y axis"
-msgstr "ሁለተኛ የ Y axis"
+msgstr "ሁለተኛ የ Y አክሲስ"
#: sidebarseries.ui
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Align Series to Axis"
-msgstr "ተከታታይ ወደ Axis ማሳለፊያ"
+msgstr "ተከታታይ ወደ አክሲስ ማሳለፊያ"
#: sidebarseries.ui
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Right-angled axes"
-msgstr "_ራይት-አንግል axes"
+msgstr "_ራይት-አንግል አክሲስ"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -2057,7 +2057,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Cross other axis at"
-msgstr "_መገናኛ ከ ሌላ axis ጋር በ"
+msgstr "_መገናኛ ከ ሌላ አክሲስ ጋር በ"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axis _between categories"
-msgstr "Axis በ ምድቦች _መካከል"
+msgstr "አክሲስ በ ምድቦች _መካከል"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2111,7 +2111,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axis Line"
-msgstr "Axis መስመር"
+msgstr "የ አክሲስ መስመር"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2129,7 +2129,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Near axis"
-msgstr "axis አጠገብ"
+msgstr "አክሲስ አጠገብ"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2138,7 +2138,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Near axis (other side)"
-msgstr "axis አጠገብ (በሌላ በኩል)"
+msgstr "አክሲስ አጠገብ (በሌላ በኩል)"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "At axis"
-msgstr "በ axis ላይ"
+msgstr "በ አክሲስ ላይ"
#: tp_AxisPositions.ui
msgctxt ""
@@ -2264,7 +2264,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "At axis and labels"
-msgstr "በ axis እና ምልክቶች ላይ"
+msgstr "በ አክሲስ እና ምልክቶች ላይ"
#: tp_AxisPositions.ui
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Y axis"
-msgstr "ቀዳሚ የ Y ዘንግ"
+msgstr "ቀዳሚ የ Y አክሲስ"
#: tp_SeriesToAxis.ui
msgctxt ""
@@ -3551,7 +3551,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Y axis"
-msgstr "ሁለተኛ የ Y ዘንግ"
+msgstr "ሁለተኛ የ Y አክሲስ"
#: tp_SeriesToAxis.ui
msgctxt ""
@@ -3956,7 +3956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr "_X ዘንግ"
+msgstr "_X አክሲስ"
#: wizelementspage.ui
msgctxt ""
@@ -3965,7 +3965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr "_Y ዘንግ"
+msgstr "_Y አክሲስ"
#: wizelementspage.ui
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr "_Z ዘንግ"
+msgstr "_Z አክሲስ"
#: wizelementspage.ui
msgctxt ""
@@ -4001,7 +4001,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr "X _ዘንግ"
+msgstr "X _አክሲስ"
#: wizelementspage.ui
msgctxt ""
@@ -4073,7 +4073,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis"
-msgstr "X ዘንግ"
+msgstr "X አክሲስ"
#: wizelementspage.ui
msgctxt ""
diff --git a/source/am/cui/source/options.po b/source/am/cui/source/options.po
index 863b81a68ab..af51a8053be 100644
--- a/source/am/cui/source/options.po
+++ b/source/am/cui/source/options.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-02-16 16:40+0000\n"
+"PO-Revision-Date: 2017-06-19 13:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487263253.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497879963.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"RID_SVXSTR_CAPITAL_WORDS\n"
"string.text"
msgid "Check uppercase words"
-msgstr "Check uppercase words"
+msgstr "መመርመሪያ በ ላይኛው ጉዳይ ፊደል የ ተጻፈ ቃላት"
#: optlingu.src
msgctxt ""
diff --git a/source/am/cui/uiconfig/ui.po b/source/am/cui/uiconfig/ui.po
index 5fe1b10e791..4dab1c986cb 100644
--- a/source/am/cui/uiconfig/ui.po
+++ b/source/am/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 00:58+0000\n"
+"PO-Revision-Date: 2017-06-20 15:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495760302.000000\n"
+"X-POOTLE-MTIME: 1497971794.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Abbreviations (no Subsequent Capital)"
-msgstr "Abbreviations (no Subsequent Capital)"
+msgstr "ምህጻረ ቃል (ምንም አቢይ ፊደል የለም)"
#: acorexceptpage.ui
msgctxt ""
@@ -4667,7 +4667,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Lowercase"
-msgstr "Lowercase"
+msgstr "በትንንሽ ፊደል መጻፊያ"
#: effectspage.ui
msgctxt ""
@@ -4757,7 +4757,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Accent"
-msgstr "አክሰንት"
+msgstr "ማጉሊያ"
#: effectspage.ui
msgctxt ""
@@ -5099,7 +5099,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "M_acro..."
-msgstr "M_acro..."
+msgstr "ማ_ክሮስ..."
#: eventsconfigpage.ui
msgctxt ""
@@ -7872,7 +7872,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "M_acro..."
-msgstr "M_acro..."
+msgstr "ማ_ክሮስ..."
#: macroassignpage.ui
msgctxt ""
@@ -8709,7 +8709,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Boolean Value"
-msgstr "Boolean Value"
+msgstr "የ ቡሊያን ዋጋ"
#: numberingformatpage.ui
msgctxt ""
@@ -12904,7 +12904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Register-tr_ue"
-msgstr "Register-tr_ue"
+msgstr "በ እው_ነት-መመዝገቢያ"
#: pageformatpage.ui
msgctxt ""
@@ -14728,7 +14728,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%MACROLANG Macros"
-msgstr "%MACROLANG Macros"
+msgstr "%MACROLANG ማክሮስ"
#: scriptorganizer.ui
msgctxt ""
@@ -14773,7 +14773,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Macros"
-msgstr "Macros"
+msgstr "ማክሮስ"
#: searchattrdialog.ui
msgctxt ""
@@ -15394,7 +15394,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hexadecimal:"
-msgstr "Hexadecimal:"
+msgstr "ሄክሳ ዴሲማል:"
#: specialcharacters.ui
msgctxt ""
diff --git a/source/am/dbaccess/source/ui/querydesign.po b/source/am/dbaccess/source/ui/querydesign.po
index ef72e3b8277..0d1a5fd371c 100644
--- a/source/am/dbaccess/source/ui/querydesign.po
+++ b/source/am/dbaccess/source/ui/querydesign.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-26 00:58+0000\n"
+"PO-Revision-Date: 2017-06-19 13:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495760311.000000\n"
+"X-POOTLE-MTIME: 1497880279.000000\n"
#: query.src
msgctxt ""
@@ -332,7 +332,7 @@ msgctxt ""
"STR_ERROR_PARSING_STATEMENT\n"
"string.text"
msgid "$object$ is based on an SQL command which could not be parsed."
-msgstr "$object$ is based on an SQL command which could not be parsed."
+msgstr "$object$ መሰረት ያደረገው የ SQL ትእዛዝ ነው ስለዚህ መተንተን አይቻልም"
#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
#: query.src
diff --git a/source/am/desktop/source/deployment/gui.po b/source/am/desktop/source/deployment/gui.po
index fdd08ae4dfb..b7e58191b07 100644
--- a/source/am/desktop/source/deployment/gui.po
+++ b/source/am/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-04-13 00:49+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 15:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492044585.000000\n"
+"X-POOTLE-MTIME: 1497971132.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "ተጨማሪ መግጠሚያ አሁን ተሰናክሏል: እባክዎን ለ በለጠ የ ስርአት አስተዳዳሪውን ያማክሩ"
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "ተጨማሪ ማስወገጃ አሁን ተሰናክሏል: እባክዎን ለ በለጠ የ ስርአት አስተዳዳሪውን ያማክሩ"
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/am/editeng/source/items.po b/source/am/editeng/source/items.po
index f234f6bd853..e1c435de5fd 100644
--- a/source/am/editeng/source/items.po
+++ b/source/am/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-18 22:49+0000\n"
+"PO-Revision-Date: 2017-06-20 15:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492555751.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497971809.000000\n"
#: page.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"RID_SVXITEMS_CASEMAP_GEMEINE\n"
"string.text"
msgid "Lowercase"
-msgstr "Lowercase"
+msgstr "በትንንሽ ፊደል መጻፊያ"
#: svxitems.src
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"RID_SVXITEMS_EMPHASIS_ACCENT_STYLE\n"
"string.text"
msgid "Accent "
-msgstr "አክሰንት "
+msgstr "ማጉሊያ "
#: svxitems.src
msgctxt ""
@@ -1663,7 +1663,7 @@ msgctxt ""
"RID_SVXITEMS_RELIEF_EMBOSSED\n"
"string.text"
msgid "Relief"
-msgstr "Relief"
+msgstr "ክፍተት"
#: svxitems.src
msgctxt ""
diff --git a/source/am/extras/source/autocorr/emoji.po b/source/am/extras/source/autocorr/emoji.po
index e4e8475d670..5e087a58a99 100644
--- a/source/am/extras/source/autocorr/emoji.po
+++ b/source/am/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-10-18 13:02+0200\n"
-"PO-Revision-Date: 2017-05-23 23:03+0000\n"
+"PO-Revision-Date: 2017-06-20 15:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495580596.000000\n"
+"X-POOTLE-MTIME: 1497972857.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3852,12 +3852,13 @@ msgstr "የ መጀመሪያ ሩብ"
#. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
+#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WAXING_GIBBOUS_MOON_SYMBOL\n"
"LngText.text"
msgid "waxing gibbous moon"
-msgstr ""
+msgstr "ሩብ ጨረቃ"
#. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4919,7 +4920,7 @@ msgctxt ""
"TOP_HAT\n"
"LngText.text"
msgid "top hat"
-msgstr ""
+msgstr "ከ ላይ ባርኔጣ"
#. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index 15d43ffb3c0..4b5674a5f06 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-05-20 17:55+0000\n"
+"PO-Revision-Date: 2017-06-18 00:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495302907.000000\n"
+"X-POOTLE-MTIME: 1497746903.000000\n"
#: sbasic.tree
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"07\n"
"help_section.text"
msgid "Macros and Programming"
-msgstr "Macros እና ፕሮግራም"
+msgstr "ማክሮስ እና ፕሮግራም"
#: sbasic.tree
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Command Reference"
-msgstr "የትእዛዝ ማመሳከሪያዎች"
+msgstr "የ ትእዛዝ ማመሳከሪያዎች"
#: sbasic.tree
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/guide.po b/source/am/helpcontent2/source/text/sbasic/guide.po
index e2b31d7826b..4de46e6d6f0 100644
--- a/source/am/helpcontent2/source/text/sbasic/guide.po
+++ b/source/am/helpcontent2/source/text/sbasic/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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-05 14:09+0000\n"
+"PO-Revision-Date: 2017-06-20 01:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496671740.000000\n"
+"X-POOTLE-MTIME: 1497920875.000000\n"
#: access2base.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_idA2B004\n"
"help.text"
msgid "Access2Base is a LibreOffice Basic library of macros for (business or personal) application developers and advanced users. It is one of the libraries stored in \"LibreOffice macros and dialogs\"."
-msgstr "Access2Base የ LibreOffice Basic መጻህፍት ቤት ነው ለ macros ለ (ንግድ ወይንም ለ ግል) መተግበሪያዎች አበልጻጊዎች እና ለ ረቀቁ ተጠቃሚዎች: አንዱ መጻህፍት ቤት የ ተቀመጠው በ \"LibreOffice macros እና ንግግሮች\" ውስጥ ነው"
+msgstr "Access2Base የ LibreOffice Basic መጻህፍት ቤት ነው ለ ማክሮስ ለ (ንግድ ወይንም ለ ግል) መተግበሪያዎች አበልጻጊዎች እና ለ ረቀቁ ተጠቃሚዎች: አንዱ መጻህፍት ቤት የ ተቀመጠው በ \"LibreOffice ማክሮስ እና ንግግሮች\" ውስጥ ነው"
#: access2base.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_idA2B005\n"
"help.text"
msgid "The provided macros implement functionalities, all directly inspired by Microsoft Access. The macros are callable from a LibreOffice <emph>Base</emph> application only."
-msgstr "የ ተሰጠው macros ተግባሮች ይፈጽማል: ሁሉም በ ቀጥታ የ ተገለጸው በ Microsoft Access. macros መጥራት ይቻላል በ LibreOffice <emph>Base</emph> መፈጸሚያ ብቻ"
+msgstr "የ ተሰጠው ማክሮስ ተግባሮች ይፈጽማል: ሁሉም በ ቀጥታ የ ተገለጸው በ Microsoft Access. ማክሮስ መጥራት ይቻላል በ LibreOffice <emph> ቤዝ </emph> መፈጸሚያ ብቻ"
#: access2base.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"hd_idA2B008\n"
"help.text"
msgid "The implemented macros include:"
-msgstr "የ ተፈጸመው macros ይህን ያካትታል:"
+msgstr "የ ተፈጸመው ማክሮስ ይህን ያካትታል:"
#: access2base.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_idA2B010\n"
"help.text"
msgid "an API for database access with the <emph>table</emph>, <emph>query</emph>, <emph>recordset</emph> and <emph>field</emph> objects"
-msgstr "የ API ለ ዳታቤዝ መድረሻ በ <emph>ሰንጠረዥ</emph>, <emph>ጥያቄ</emph>, <emph>መቅረጫ ማሰናጃ</emph> እና <emph>ሜዳ</emph> እቃዎች"
+msgstr "የ API ለ ዳታቤዝ መድረሻ በ <emph> ሰንጠረዥ </emph><emph> ጥያቄ </emph> <emph> መቅረጫ ማሰናጃ </emph> እና <emph> ሜዳ </emph> እቃዎች"
#: access2base.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_idA2B011\n"
"help.text"
msgid "a number of <emph>actions</emph> with a syntax identical to their corresponding MSAccess macros/actions"
-msgstr "በ ቁጥር <emph>ተግባሮች</emph> አገባብ ለ ተመሳሳይ ወደ ተመሳሳያቸው MSAccess macros/actions"
+msgstr "በ ቁጥር <emph> ተግባሮች </emph> አገባብ ለ ተመሳሳይ ወደ ተመሳሳያቸው MSAccess macros/actions"
#: access2base.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_idA2B012\n"
"help.text"
msgid "the <emph>DLookup</emph>, <emph>DSum</emph>, ... database functions"
-msgstr "የ <emph>ዳታ መፈለጊያ</emph> <emph>የ ዳታ ድምር</emph> ... የ ዳታቤዝ ተግባሮች"
+msgstr "የ <emph> ዳታ መፈለጊያ </emph><emph> የ ዳታ ድምር </emph> ... የ ዳታቤዝ ተግባሮች"
#: access2base.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_idA2B016\n"
"help.text"
msgid "facilities for programming form, dialog and control <emph>events</emph>"
-msgstr "ለ ፎርም ፕሮግራም ማሰናጃ: ንግግር እና መቆጣጠሪያ <emph>ሁኔታዎች</emph>"
+msgstr "ለ ፎርም ፕሮግራም ማሰናጃ: ንግግር እና መቆጣጠሪያ <emph> ሁኔታዎች </emph>"
#: access2base.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3145749\n"
"help.text"
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
-msgstr "በ ንድፍ ዘዴ ውስጥ የ መቆጣጠሪያ ባህሪዎችን ለ መቀየር: በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph>ባህሪዎች</emph>"
+msgstr "በ ንድፍ ዘዴ ውስጥ የ መቆጣጠሪያ ባህሪዎችን ለ መቀየር: በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph> ባህሪዎች </emph>"
#: create_dialog.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - ንግግር ማዘጋጃ</emph> እና ከዛ ይጫኑ <emph> አዲስ </emph>"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ንግግር ማዘጋጃ </emph> እና ከዛ ይጫኑ <emph> አዲስ </emph>"
#: create_dialog.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
-msgstr "ካልታየዎት <emph>የ እቃ ሳጥን</emph> መደርደሪያውን ይጫኑ: ቀስት <emph>ከ መቆጣጠሪያዎች ማስገቢያ ቀጥሎ ያለውን </emph>ምልክቶች መክፈቻ <emph>የ እቃ ሳጥን</emph> መደርደሪያ"
+msgstr "እርስዎ ካልታየዎት <emph> የ እቃ ሳጥን</emph> መደርደሪያውን ይጫኑ: ቀስት <emph> ከ መቆጣጠሪያዎች ማስገቢያ ቀጥሎ ያለውን </emph> ምልክቶች መክፈቻ <emph> የ እቃ ሳጥን </emph> መደርደሪያ"
#: create_dialog.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3150276\n"
"help.text"
msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
-msgstr "ለመክፈት <emph>የ እቃ ሳጥን </emph> ይጫኑ ቀስት ቀጥሎ ያለውን <emph> መቆጣጠሪያዎች ማስገቢያ </emph> ምልክት ከ <emph>Macro</emph> እቃ መደርደሪያ ላይ"
+msgstr "ለመክፈት <emph> የ እቃ ሳጥን </emph> ይጫኑ ቀስት ቀጥሎ ያለውን <emph> መቆጣጠሪያዎች ማስገቢያ </emph> ምልክት ከ <emph> ማክሮስ </emph> እቃ መደርደሪያ ላይ"
#: insert_control.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
-msgstr "ይጫኑ እቃውን ከ እቃ መደርደሪያው ላይ ፡ ለምሳሌ <emph>ቁልፍ</emph>."
+msgstr "ይጫኑ እቃውን ከ እቃ መደርደሪያው ላይ: ለምሳሌ <emph> ቁልፍ </emph>"
#: insert_control.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
-msgstr "የ ሚቀጥሉት ምሳሌዎች ለ አዲስ <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\"> ንግግር </link> ለተባለ \"ንግግር1\" ነው: ይጠቀሙ መሳሪያዎችን ከ <emph> እቃ ሳጥን </emph> መደርደሪያ ውስጥ በ ንግግር አራሚ ንግግር ለ መፍጠር: እና ለ መጨመር የሚከተሉትን መቆጣጠሪያዎች: ከ <emph> ምልክት ማድረጊያ ሳጥን </emph> የተባለ \"ምልክት ማድረጊያ ሳጥን1\": ከ <emph> የ ምልክት ሜዳ </emph> የተባለ \"ምልክት1\": ከ <emph> ቁልፍ </emph> የተባለ \"የ ትእዛዝ ቁልፍ1\": እና ከ <emph> ዝርዝር ሳጥን </emph> የተባለ \"ዝርዝር ሳጥን1\"."
+msgstr "የ ሚቀጥሉት ምሳሌዎች ለ አዲስ <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\"> ንግግር </link> ለተባለ \"ንግግር1\" ነው: ይጠቀሙ መሳሪያዎችን ከ <emph> እቃ ሳጥን </emph> መደርደሪያ ውስጥ በ ንግግር አራሚ ንግግር ለ መፍጠር: እና ለ መጨመር የሚከተሉትን መቆጣጠሪያዎች: ከ <emph> ምልክት ማድረጊያ ሳጥን </emph> የተባለ \"ምልክት ማድረጊያ ሳጥን1\": ከ <emph> የ ምልክት ሜዳ </emph> የተባለ \"ምልክት1\": ከ <emph> ቁልፍ </emph> የተባለ \"የ ትእዛዝ ቁልፍ1\": እና ከ <emph> ዝርዝር ሳጥን </emph> የተባለ \"ዝርዝር ሳጥን1\""
#: sample_code.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3154141\n"
"help.text"
msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
-msgstr "ተስማሚ መሆኑን እርግጠኛ ይሁኑ ከ ላይኛው ጉዳይ ፊደል ጋር እርስዎ በሚያያይዙ ጊዜ መቆጣጠሪያ ለ ተለዋዋጭ እቃ"
+msgstr "ተስማሚ መሆኑን እርግጠኛ ይሁኑ የ ላይኛው ጉዳይ ፊደል እና የ ታችኛው ጉዳይ ፊደል ጋር እርስዎ በሚያያይዙ ጊዜ መቆጣጠሪያ ለ ተለዋዋጭ እቃ"
#: sample_code.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"bm_id3154140\n"
"help.text"
msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>ክፍል/ንግግር መቀያየሪያ</bookmark_value><bookmark_value>ንግግር;የ ፕሮግራም ኮድ በመጠቀም ማሳያ (ምሳሌ)</bookmark_value><bookmark_value>ምሳሌዎች; ንግግር ማሳያ የ ፕሮግራም ኮድ በመጠቀም</bookmark_value>"
+msgstr "<bookmark_value>ክፍል/ንግግር መቀያየሪያ</bookmark_value><bookmark_value>ንግግር: የ ፕሮግራም ኮድ በመጠቀም ማሳያ (ምሳሌ)</bookmark_value><bookmark_value>ምሳሌዎች: ንግግር ማሳያ የ ፕሮግራም ኮድ በመጠቀም</bookmark_value>"
#: show_dialog.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
-msgstr "የሚቀጥለውን ኮድ ያስገቡ ንዑስ ተከታታይ ፕሮግራም የተባለ <emph>ንግግር1 ማሳያ </emph> በዚህ ምሳሌ ውስጥ: የ ንግግሩን ስም እርስዎ የ ፈጠሩት ነው \"ንግግር1\":"
+msgstr "የሚቀጥለውን ኮድ ያስገቡ ንዑስ ተከታታይ ፕሮግራም የተባለ <emph> ንግግር1 ማሳያ </emph> በዚህ ምሳሌ ውስጥ: የ ንግግሩን ስም እርስዎ የ ፈጠሩት ነው \"ንግግር1\":"
#: show_dialog.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id8750572\n"
"help.text"
msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>."
-msgstr "በ Basic IDE ንግግር ማረሚያ ውስጥ: ይክፈቱ የ ቋንቋ እቃ መደርደሪያ ይምረጡ <item type=\"menuitem\">መመልከቻ - እቃ መደርደሪያ - ቋንቋ</item>."
+msgstr "በ Basic IDE ንግግር ማረሚያ ውስጥ: ይክፈቱ የ ቋንቋ እቃ መደርደሪያ ይምረጡ <item type=\"menuitem\"> መመልከቻ - እቃ መደርደሪያ - ቋንቋ </item>"
#: translation.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 39e7bc7eab4..59bf3312689 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 16:55+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 13:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496681721.000000\n"
+"X-POOTLE-MTIME: 1498052776.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3153092\n"
"help.text"
msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-msgstr "ባህሪው ተጽእኖ አለው በ ሁለቱም መቀየሪያዎች ላይ ( 1 + \"2.3\" = 3.3 ) እንዲሁም በ ማስኬጃ ጊዜ ተግባር ውስጥ <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">ቁጥር ነው</link>."
+msgstr "ባህሪው ተጽእኖ አለው በ ሁለቱም መቀየሪያዎች ላይ ( 1 + \"2.3\" = 3.3 ) እንዲሁም በ ማስኬጃ ጊዜ ተግባር ውስጥ <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\"> ቁጥር ነው </link>"
#: 00000002.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3145366\n"
"help.text"
msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
-msgstr "በ $[officename] መሰረታዊ: ቀለሞች የሚታዩት እንደ ረጅም ኢንቲጀር የ ቁጥር ዋጋ ነው: የ ቀለም ጥያቄ መልስ እንዲሁም ሁልጊዜ ረጅም ኢንቲጀር የ ቁጥር ዋጋ ነው: ባህሪዎችን በሚገልጹ ጊዜ: ቀለሞች መወሰን ይቻላል በ መጠቀም የ ቀአሰ ኮድ የ ተቀየረውን ወደ ረጅም ኢንቲጀር የ ቁጥር ዋጋ ነው በ መጠቀም የ <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">ቀአሰ ተግባር</link>."
+msgstr "በ $[officename] መሰረታዊ: ቀለሞች የሚታዩት እንደ ረጅም ኢንቲጀር የ ቁጥር ዋጋ ነው: የ ቀለም ጥያቄ መልስ እንዲሁም ሁልጊዜ ረጅም ኢንቲጀር የ ቁጥር ዋጋ ነው: ባህሪዎችን በሚገልጹ ጊዜ: ቀለሞች መወሰን ይቻላል በ መጠቀም የ ቀአሰ ኮድ የ ተቀየረውን ወደ ረጅም ኢንቲጀር የ ቁጥር ዋጋ ነው በ መጠቀም የ <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\"> ቀአሰ ተግባር </link>"
#: 00000002.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3153381\n"
"help.text"
msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
-msgstr "እርስዎ ማሰናዳት ይችላሉ ለሚጠቀሙበት ቋንቋ የ ቁጥር አቀራረብ: የ ቀኖች እና የ ገንዘብ በ $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>. In Basic format codes, የ ዴሲማል ነጥብ (<emph>.</emph>) ሁልጊዜ የሚጠቀሙት ለ <emph> ቦታ ያዢ </emph> ለ ዴሲማል መለያያ በ እርስዎ ቋንቋ እንደ ተገለጸው በ ተመሳሳይ ባህሪ ይቀየራል"
+msgstr "እርስዎ ማሰናዳት ይችላሉ ለሚጠቀሙበት ቋንቋ የ ቁጥር: የ ቀኖች እና የ ገንዘብ አቀራረብ መቆጣጠሪያ: በ $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph> በ Basic ኮድ አቀራረብ ውስጥ: የ ዴሲማል ነጥብ (<emph></emph>) ሁልጊዜ የሚቅሙት ለ <emph> ቦታ ያዢ </emph> ነው: ለ ዴሲማል መለያያ በ እርስዎ ቋንቋ እንደ ተገለጸው በ ተመሳሳይ ባህሪ ይቀየራል:"
#: 00000003.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3145150\n"
"help.text"
msgid "Magenta"
-msgstr "ቀይ የ ወይን ጠጅ"
+msgstr "ማጄንታ"
#: 00000003.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3159097\n"
"help.text"
msgid "Light magenta"
-msgstr "ነጣ ያለ ቀይ የ ወይን ጠጅ"
+msgstr "ነጣ ያለ ማጄንታ"
#: 00000003.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr "ይህ ተግባር የሚቻለው ከ አረፍተ ነገር ጋር
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr "<variable id=\"functsyntax\">አገባብ:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr "<variable id=\"functvalue\">ዋጋ ይመልሳል:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr "<variable id=\"functparameters\">ደንቦች:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr "<variable id=\"functexample\">ለምሳሌ:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">የ ስህተት ኮዶች</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr "<variable id=\"errorcode\">የ ስህተት ኮዶች:</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1478,7 +1510,7 @@ msgctxt ""
"par_id3153708\n"
"help.text"
msgid "This is where you find general information about working with macros and $[officename] Basic."
-msgstr "እዚህ ነው ባጠቃላይ መረጃ የሚያገኙት እንዴት እንደሚሰሩ በ macros እና $[officename] Basic."
+msgstr "እዚህ ነው ባጠቃላይ መረጃ የሚያገኙት እንዴት እንደሚሰሩ በ ማክሮስ እና $[officename] Basic."
#: 01010210.xhp
msgctxt ""
@@ -1518,7 +1550,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
-msgstr "$[officename] መሰረታዊ ኮድ መሰረት ያደረገው ንዑስ ትእዛዞችን እና ተግባሮች መካከል የ ተወሰኑ በ <emph>ንዑስ...መጨረሻ ንዑስ</emph> እና <emph>ተግባሮች...መጨረሻ ተግባሮች</emph> ክፍሎች: እያንዳንዱ ንዑስ ወይንም ተግባር መጥራት ይችላል ሌላ ንዑስ እና ተግባር: እርስዎ የሚጽፉ ከሆነ generic ኮድ ለ ንዑስ ወይንም ተግባር: እርስዎ ምናልባት እንደገና-መጠቀም ይችላሉ በ ሌላ ፕሮግራም: ይህን ይመልከቱ <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">አሰራሮች እና ተግባሮች</link>."
+msgstr "$[officename] መሰረታዊ ኮድ መሰረት ያደረገው ንዑስ ትእዛዞችን እና ተግባሮች መካከል የ ተወሰኑ በ <emph> ንዑስ...መጨረሻ ንዑስ </emph> እና <emph> ተግባሮች...መጨረሻ ተግባሮች </emph> ክፍሎች: እያንዳንዱ ንዑስ ወይንም ተግባር መጥራት ይችላል ሌላ ንዑስ እና ተግባር: እርስዎ የሚጽፉ ከሆነ generic ኮድ ለ ንዑስ ወይንም ተግባር: እርስዎ ምናልባት እንደገና-መጠቀም ይችላሉ በ ሌላ ፕሮግራም: ይህን ይመልከቱ <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\"> አሰራሮች እና ተግባሮች </link>"
#: 01010210.xhp
msgctxt ""
@@ -1622,7 +1654,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
-msgstr "እርስዎ ኮፒ ማድረግ ወይንም ማንቀሳቀስ ይችላሉ ንዑስ ተግባሮችን: ክፍሎችን: እና መጻህፍት ቤቶችን ከ አንድ ፋይል ወደ ሌላ በ መጠቀም የ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> ንግግር"
+msgstr "እርስዎ ኮፒ ማድረግ ወይንም ማንቀሳቀስ ይችላሉ ንዑስ ተግባሮችን: ክፍሎችን: እና መጻህፍት ቤቶችን ከ አንድ ፋይል ወደ ሌላ በ መጠቀም የ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\"> ማክሮስ </link> ንግግር"
#: 01020000.xhp
msgctxt ""
@@ -2086,7 +2118,7 @@ msgctxt ""
"par_id3159116\n"
"help.text"
msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
-msgstr "ተለዋውጭ ቀን የሚይዘው የ ቀኖች እና ሰአት ዋጋ ነው በ ውስጣዊ አቀራረብ የሚያስቀምጠው: ለ ተለዋውጭ ቀን የተመደቡ ዋጋዎችን በ <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph> ተከታታይ ቀን </emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph> የ ቀን ዋጋ </emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph> ተከታታይ ሰአት </emph></link> ወይንም <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph> የ ሰአት ዋጋ </emph></link> ራሱ በራሱ ይቀየራል ወደ ውስጣዊ አቀራረብ: የ ተለዋዋጭ-ቀን የሚቀየረው ወደ መደበኛ ቁጥሮች ነው በ መጠቀም የ <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph> ቀን </emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>ወር</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph> አመት </emph></link> ወይንም የ <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph> ሰአት </emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph> ደቂቃ </emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph> ሰከንድ </emph></link> ተግባሮችን: የ ውስጥ አቀራረብ የሚያስችለው ማነፃፃር ነው የ ቀን/ሰአት ዋጋዎችን በማስላት ልዩነቱን በ ሁለቱ ቁጥሮች መካከል ያለውን: እነዚህን ተለዋዋጮች መግለጽ የሚቻለው በ ቁልፍ ቃልነው በ <emph> ቀን </emph>."
+msgstr "ተለዋውጭ ቀን የሚይዘው የ ቀኖች እና ሰአት ዋጋ ነው በ ውስጣዊ አቀራረብ የሚያስቀምጠው: ለ ተለዋውጭ ቀን የተመደቡ ዋጋዎችን በ <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph> ተከታታይ ቀን </emph></link> <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph> የ ቀን ዋጋ </emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph> ተከታታይ ሰአት </emph></link> ወይንም <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph> የ ሰአት ዋጋ </emph></link> ራሱ በራሱ ይቀየራል ወደ ውስጣዊ አቀራረብ: የ ተለዋዋጭ-ቀን የሚቀየረው ወደ መደበኛ ቁጥሮች ነው በ መጠቀም የ <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph> ቀን </emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph> ወር </emph></link> <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph> አመት </emph></link> ወይንም የ <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph> ሰአት </emph></link> <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph> ደቂቃ </emph></link> <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph> ሰከንድ </emph></link> ተግባሮችን: የ ውስጥ አቀራረብ የሚያስችለው ማነፃፃር ነው የ ቀን/ሰአት ዋጋዎችን በማስላት ልዩነቱን በ ሁለቱ ቁጥሮች መካከል ያለውን: እነዚህን ተለዋዋጮች መግለጽ የሚቻለው በ ቁልፍ ቃልነው በ <emph> ቀን </emph>"
#: 01020100.xhp
msgctxt ""
@@ -2238,7 +2270,7 @@ msgctxt ""
"par_id3147346\n"
"help.text"
msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
-msgstr "ይጫኑ የ <emph>እቃዎች መዝገብ</emph> ምልክት <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">ምልክት</alt></image> ከ Macro እቃ መደርደሪያ እቃዎች መዝገብ ማሳያ ላይ"
+msgstr "ይጫኑ የ <emph> እቃዎች መዝገብ </emph> ምልክት <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\"> ምልክት </alt></image> ከ ማክሮስ እቃ መደርደሪያ እቃዎች መዝገብ ማሳያ ላይ"
#: 01020200.xhp
msgctxt ""
@@ -2398,7 +2430,7 @@ msgctxt ""
"par_id3146914\n"
"help.text"
msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr "ተለዋዋ=የ ተግባር ስም(ደንብ1: ደንብ2,...)"
+msgstr "ተለዋዋጭ=የ ተግባር ስም(ደንብ1: ደንብ2,...)"
#: 01020300.xhp
msgctxt ""
@@ -2590,7 +2622,7 @@ msgctxt ""
"par_id8055970\n"
"help.text"
msgid "Print \"Now in module2 : \", myText"
-msgstr "ማተሚያ \"አሁን በ ክፍል2 : \", የኔ ጽሁፍ"
+msgstr "ማተሚያ \"አሁን በ ክፍል2 : \", የ እኔ ጽሁፍ"
#: 01020300.xhp
msgctxt ""
@@ -2774,7 +2806,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
-msgstr "የ <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro እቃ መደርደሪያ</emph></link> በ IDE የሚያቀርበው የ ተለያዩ ምልክቶች ለ ማረም እና ፕሮግራሞች ለ መሞከር ነው"
+msgstr "የ <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph> ማክሮስ እቃ መደርደሪያ </emph></link> በ IDE የሚያቀርበው የ ተለያዩ ምልክቶች ለ ማረም እና ፕሮግራሞች ለ መሞከር ነው"
#: 01030100.xhp
msgctxt ""
@@ -2782,7 +2814,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
-msgstr "በ <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>ማረሚያ መስኮት</emph></link> ውስጥ በ ቀጥታ ከ ታች በኩል በ Macro እቃ መደርደሪያ ውስጥ: እርስዎ ማረም ይችላሉ የ Basic ፕሮግራም ኮድ: የ አምድ በ ግራ ጠርዝ በኩል ያለውን ይጠቀሙ የ መጨረሻ ነጥቦችን ለ ማሰናዳት በ ፕሮግራም ኮድ ውስጥ"
+msgstr "በ <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph> ማረሚያ መስኮት </emph></link> ውስጥ በ ቀጥታ ከ ታች በኩል በ ማክሮስ እቃ መደርደሪያ ውስጥ: እርስዎ ማረም ይችላሉ የ Basic ፕሮግራም ኮድ: የ አምድ በ ግራ ጠርዝ በኩል ያለውን ይጠቀሙ የ መጨረሻ ነጥቦችን ለ ማሰናዳት በ ፕሮግራም ኮድ ውስጥ"
#: 01030100.xhp
msgctxt ""
@@ -2838,7 +2870,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
-msgstr "የ Basic ማረሚያ የሚያቀርብርው መደበኛ የ ማረሚያ ተግባሮች ነው እርስዎ በጣም የ ተላመዱትን በሚሰሩ ጊዜ በ ጽሁፍ ሰነድ ውስጥ: ተግባሮችን ይደግፋል ለ <emph> ማረሚያ </emph> ዝርዝር (መቁረጫ: ማጥፊያ: መለጠፊያ): ጽሁፍ የ መምረጥ ችሎታ በ Shift ቁልፍ: እንዲሁም በ መጠቆሚያ ተግባሮችን ቦታ ማስያዣ (ለምሳሌ:ከ ቃላት ወደ ቃላት መንቀሳቀሻ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና የ ቀስት ቁልፎች) በ መጠቀም:"
+msgstr "የ Basic ማረሚያ የሚያቀርብርው መደበኛ የ ማረሚያ ተግባሮች ነው እርስዎ በጣም የ ተላመዱትን በሚሰሩ ጊዜ በ ጽሁፍ ሰነድ ውስጥ: ተግባሮችን ይደግፋል ለ <emph> ማረሚያ </emph> ዝርዝር (መቁረጫ: ማጥፊያ: መለጠፊያ): ጽሁፍ የ መምረጥ ችሎታ በ Shift ቁልፍ: እንዲሁም በ መጠቆሚያ ተግባሮችን ቦታ ማስያዣ (ለምሳሌ:ከ ቃላት ወደ ቃላት መንቀሳቀሻ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና የ ቀስት ቁልፎች) በ መጠቀም:"
#: 01030200.xhp
msgctxt ""
@@ -2854,7 +2886,7 @@ msgctxt ""
"par_id3151042\n"
"help.text"
msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
-msgstr "እርስዎ ከ ተጫኑ የ <emph>BASIC ማስኬጃ</emph> ምልክት በ <emph>Macro</emph> መደርደሪያ ላይ: ፕሮግራም መፈጸሚያ ይጀምራል በ Basic ማረሚያ ላይ ይጀምራል: ፕሮግራሙ የሚፈጽመው የ መጀመሪያ ንዑስ ወይንም ተግባሮች እና ከዛ ፕሮግራሙ መፈጸሙን ያቆማል: የ \"ዋናው ንዑስ\" ምንም ነገር አይፈጽምም በ ፕሮግራም መፈጸሚያ ላይ"
+msgstr "እርስዎ ከ ተጫኑ የ <emph> BASIC ማስኬጃ </emph> ምልክት በ <emph> ማክሮስ </emph> መደርደሪያ ላይ: ፕሮግራም መፈጸሚያ ይጀምራል በ Basic ማረሚያ ላይ ይጀምራል: ፕሮግራሙ የሚፈጽመው የ መጀመሪያ ንዑስ ወይንም ተግባሮች እና ከዛ ፕሮግራሙ መፈጸሙን ያቆማል: የ \"ዋናው ንዑስ\" ምንም ነገር አይፈጽምም በ ፕሮግራም መፈጸሚያ ላይ"
#: 01030200.xhp
msgctxt ""
@@ -2886,7 +2918,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
-msgstr "ይምረጡ መጻህፍት ቤት ከ <emph>መጻህፍት ቤት</emph> ዝርዝር ውስጥ በ ግራ በኩል ከ እቃ መደርደሪያው ላይ መጻህፍት ቤት ለ መጫን በ ማረሚያ ውስጥ: የ መጀመሪያው ክፍል የ ተመረጠው መጻህፍት ቤት ይታያል"
+msgstr "ይምረጡ መጻህፍት ቤት ከ <emph> መጻህፍት ቤት </emph> ዝርዝር ውስጥ በ ግራ በኩል ከ እቃ መደርደሪያው ላይ መጻህፍት ቤት ለ መጫን በ ማረሚያ ውስጥ: የ መጀመሪያው ክፍል የ ተመረጠው መጻህፍት ቤት ይታያል"
#: 01030200.xhp
msgctxt ""
@@ -2942,7 +2974,7 @@ msgctxt ""
"par_id3150752\n"
"help.text"
msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
-msgstr "ይጫኑ የ <emph>ምንጭ ማሰቀመጫ እንደ </emph> ምልክት በ Macro እቃ መደርደሪያ ላይ"
+msgstr "ይጫኑ የ <emph> ምንጭ ማሰቀመጫ እንደ </emph> ምልክት በ ማክሮስ እቃ መደርደሪያ ላይ"
#: 01030200.xhp
msgctxt ""
@@ -2982,7 +3014,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
-msgstr "ይጫኑ የ <emph>ምንጭ ጽሁፍ </emph> ምልክት በ Macro እቃ መደርደሪያ ላይ"
+msgstr "ይጫኑ የ <emph> ምንጭ ጽሁፍ </emph> ምልክት በ ማክሮስ እቃ መደርደሪያ ላይ"
#: 01030200.xhp
msgctxt ""
@@ -2990,7 +3022,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "Select the text file containing the source code and click <emph>OK</emph>."
-msgstr "ይምረጡ የ ጽሁፍ ፋይል የ ኮድ ምንጭ የያዘውን እና ይጫኑ <emph>አሺ</emph>."
+msgstr "ይምረጡ የ ጽሁፍ ፋይል የ ኮድ ምንጭ የያዘውን እና ይጫኑ <emph> አሺ </emph>"
#: 01030200.xhp
msgctxt ""
@@ -3046,7 +3078,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
-msgstr "ሁለት ጊዜ-ይጫኑ በ <emph>መጨረሻ ነጥብ</emph> አምድ ውስጥ በ ግራ በኩል በ ማረሚያው መስኮት ለ መቀያየር የ መጨረሻ ነጥብ በ ተመሳሳይ መስመር ውስጥ: ፕሮግራሙ መጨረሻ ነጥብ ጋር ሲደርስ: ፕሮግራም መፈጸሚያው ይቋረጣል"
+msgstr "ሁለት ጊዜ-ይጫኑ በ <emph> መጨረሻ ነጥብ </emph> አምድ ውስጥ በ ግራ በኩል በ ማረሚያው መስኮት ለ መቀያየር የ መጨረሻ ነጥብ በ ተመሳሳይ መስመር ውስጥ: ፕሮግራሙ መጨረሻ ነጥብ ጋር ሲደርስ: ፕሮግራም መፈጸሚያው ይቋረጣል"
#: 01030300.xhp
msgctxt ""
@@ -3054,7 +3086,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
-msgstr "የ <emph>ነጠላ ደረጃ </emph>መፈጸሚያ በ መጠቀም የ <emph>ነጠላ ደረጃ </emph> ምልክት ለ ፕሮግራሙ ቅርንጫፍ ለ አሰራሮች እና ተግባሮች ይፈጥራል"
+msgstr "የ <emph> ነጠላ ደረጃ </emph> መፈጸሚያ በ መጠቀም የ <emph> ነጠላ ደረጃ </emph> ምልክት ለ ፕሮግራሙ ቅርንጫፍ ለ አሰራሮች እና ተግባሮች ይፈጥራል"
#: 01030300.xhp
msgctxt ""
@@ -3062,7 +3094,7 @@ msgctxt ""
"par_id3151110\n"
"help.text"
msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
-msgstr "የ አሰራር ደረጃ መፈጸሚያ በ መጠቀም የ <emph>አሰራር ደረጃ</emph> ምልክት ፕሮግራሙን መዝለል ያስችለዋል አሰራር እና ተግባሮች እንደ ነጠላ ደረጃ"
+msgstr "የ አሰራር ደረጃ መፈጸሚያ በ መጠቀም የ <emph> አሰራር ደረጃ </emph> ምልክት ፕሮግራሙን መዝለል ያስችለዋል አሰራር እና ተግባሮች እንደ ነጠላ ደረጃ"
#: 01030300.xhp
msgctxt ""
@@ -3094,7 +3126,7 @@ msgctxt ""
"par_id3159413\n"
"help.text"
msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
-msgstr "ይምረጡ <emph>ባህሪዎች</emph> ከ አገባብ ዝርዝር ከ መጨረሻ ነጥብ ውስጥ ወይንም ይምረጡ <emph>መጨረሻ ነጥብ</emph> ከ አገባብ ዝርዝር ከ መጨረሻ ነጥብ አምድ ውስጥ ለ መጥራት የ <emph>መጨረሻ ነጥብ</emph> ንግግር እርስዎ የሚገልጹበት ሌላ የ መጨረሻ ነጥብ ምርጫ"
+msgstr "ይምረጡ <emph> ባህሪዎች </emph> ከ አገባብ ዝርዝር ከ መጨረሻ ነጥብ ውስጥ ወይንም ይምረጡ <emph> መጨረሻ ነጥብ </emph> ከ አገባብ ዝርዝር ከ መጨረሻ ነጥብ አምድ ውስጥ ለ መጥራት የ <emph> መጨረሻ ነጥብ </emph> ንግግር እርስዎ የሚገልጹበት ሌላ የ መጨረሻ ነጥብ ምርጫ"
#: 01030300.xhp
msgctxt ""
@@ -3134,7 +3166,7 @@ msgctxt ""
"par_id3153368\n"
"help.text"
msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
-msgstr "እርስዎ መቆጣጠር ይችላሉ የ ተለዋዋጭ ዋጋ በ መጨመር ወደ <emph>መመልከቻ</emph> መስኮት ውስጥ: ተለዋዋጭ ለ መጨመር ወደ ዝርዝር ውስጥ በ ተለዋዋጭ መመልከቻ: ይጻፉ የ ተላዋዋጭ ስም በ <emph>መመልከቻ</emph> ጽሁፍ ሳጥን ውስጥ እና ይጫኑ ማስገቢያውን"
+msgstr "እርስዎ መቆጣጠር ይችላሉ የ ተለዋዋጭ ዋጋ በ መጨመር ወደ <emph> መመልከቻ </emph> መስኮት ውስጥ: ተለዋዋጭ ለ መጨመር ወደ ዝርዝር ውስጥ በ ተለዋዋጭ መመልከቻ: ይጻፉ የ ተላዋዋጭ ስም በ <emph> መመልከቻ </emph> ጽሁፍ ሳጥን ውስጥ እና ይጫኑ ማስገቢያውን"
#: 01030300.xhp
msgctxt ""
@@ -3230,7 +3262,7 @@ msgctxt ""
"par_id3152576\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3246,7 +3278,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
-msgstr "እርስዎ ይምረጡ መጻህፍት ቤት ማያያዝ የሚፈልጉበትን በ <emph>አካባቢ</emph> ዝርዝር ውስጥ: እርስዎ ከ መረጡ %PRODUCTNAME Macros & ምግግሮች: መጻህፍት ቤቱ እዚህ ይሆናል ለ $[officename] መተግበሪያ እና ዝግጁ ይሆናል ለ ሁሉም ሰነዶች: እርስዎ ከ መረጡ ሰነድ መጻህፍት ቤቱ ይያያዛል ከዚህ ሰነድ ጋር እና ዝግጁ የሚሆነው ከዚህ ብቻ ይሆናል"
+msgstr "እርስዎ ይምረጡ መጻህፍት ቤት ማያያዝ የሚፈልጉበትን በ <emph> አካባቢ </emph> ዝርዝር ውስጥ: እርስዎ ከ መረጡ %PRODUCTNAME ማክሮስ & ምግግሮች: መጻህፍት ቤቱ እዚህ ይሆናል ለ $[officename] መተግበሪያ እና ዝግጁ ይሆናል ለ ሁሉም ሰነዶች: እርስዎ ከ መረጡ ሰነድ መጻህፍት ቤቱ ይያያዛል ከዚህ ሰነድ ጋር እና ዝግጁ የሚሆነው ከዚህ ብቻ ይሆናል"
#: 01030400.xhp
msgctxt ""
@@ -3270,7 +3302,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3286,7 +3318,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
-msgstr "እርስዎ ይምረጡ መጻህፍት ቤት ማምጣት የሚፈልጉበትን በ <emph>አካባቢ</emph> ዝርዝር ውስጥ: እርስዎ ከ መረጡ %PRODUCTNAME Macros & ምግግሮች: መጻህፍት ቤቱ እዚህ ይሆናል ለ $[officename] መተግበሪያ እና ዝግጁ ይሆናል ለ ሁሉም ሰነዶች: እርስዎ ከ መረጡ ሰነድ መጻህፍት ቤቱ ይያያዛል ከዚህ ሰነድ ጋር እና ዝግጁ የሚሆነው ከዚህ ብቻ ይሆናል"
+msgstr "እርስዎ ይምረጡ መጻህፍት ቤት ማምጣት የሚፈልጉበትን በ <emph> አካባቢ </emph> ዝርዝር ውስጥ: እርስዎ ከ መረጡ %PRODUCTNAME ማክሮስ & ምግግሮች: መጻህፍት ቤቱ እዚህ ይሆናል ለ $[officename] መተግበሪያ እና ዝግጁ ይሆናል ለ ሁሉም ሰነዶች: እርስዎ ከ መረጡ ሰነድ መጻህፍት ቤቱ ይያያዛል ከዚህ ሰነድ ጋር እና ዝግጁ የሚሆነው ከዚህ ብቻ ይሆናል"
#: 01030400.xhp
msgctxt ""
@@ -3302,7 +3334,7 @@ msgctxt ""
"par_id3154705\n"
"help.text"
msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
-msgstr "ይምረጡ ሁሉንም የ መጡትን መጻህፍት ቤት በ <emph>መጻህፍት ቤት ማምጫ</emph> ንግግር: ይህ ንግግር የሚያሳየው ሁሉንም መጻህፍት ቤት ነው በ ተመረጠው ፋይል ውስጥ ያሉትን በሙሉ"
+msgstr "ይምረጡ ሁሉንም የ መጡትን መጻህፍት ቤት በ <emph> መጻህፍት ቤት ማምጫ </emph> ንግግር: ይህ ንግግር የሚያሳየው ሁሉንም መጻህፍት ቤት ነው በ ተመረጠው ፋይል ውስጥ ያሉትን በሙሉ"
#: 01030400.xhp
msgctxt ""
@@ -3310,7 +3342,7 @@ msgctxt ""
"par_id3163807\n"
"help.text"
msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
-msgstr "እርስዎ መጻህፍት ቤት ማስገባት ከ ፈለጉ እንደ ማመሳከሪያ ብቻ ምልክት ያድርጉ በ <emph>እንደ ማመሳከሪያ ማስገቢያ (ለንባብ-ብቻ)</emph> ሳጥን ውስጥ: ለንባብ-ብቻ መጻህፍት ቤት ተግባራዊ ናቸው ነገር ግን ማሻሻል አይቻልም በ Basic IDE. ውስጥ"
+msgstr "እርስዎ መጻህፍት ቤት ማስገባት ከ ፈለጉ እንደ ማመሳከሪያ ብቻ ምልክት ያድርጉ በ <emph> እንደ ማመሳከሪያ ማስገቢያ (ለንባብ-ብቻ) </emph> ሳጥን ውስጥ: ለንባብ-ብቻ መጻህፍት ቤት ተግባራዊ ናቸው ነገር ግን ማሻሻል አይቻልም በ Basic IDE. ውስጥ"
#: 01030400.xhp
msgctxt ""
@@ -3318,7 +3350,7 @@ msgctxt ""
"par_id3145228\n"
"help.text"
msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
-msgstr "ይመርምሩ የ <emph>የ ነበረውን መጻህፍት ቤት መቀየሪያs</emph> ሳጥን እርስዎ ከ ፈለጉ በ ነበረው መጻህፍት ቤት ተመሳሳይ ስም ላይ ደርቦ ለ መጻፍ"
+msgstr "ይመርምሩ የ <emph> ነበረውን መጻህፍት ቤት መቀየሪያ </emph> ሳጥን እርስዎ ከ ፈለጉ በ ነበረው መጻህፍት ቤት ተመሳሳይ ስም ላይ ደርቦ ለ መጻፍ"
#: 01030400.xhp
msgctxt ""
@@ -3342,7 +3374,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph> ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3414,7 +3446,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME Basic</emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት በ Basic IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic</emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት በ Basic IDE ለመክፈት የ <emph> ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3438,7 +3470,7 @@ msgctxt ""
"par_id3150361\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ይጫኑ <emph> ማጥፊያ </emph>"
#: 01030400.xhp
msgctxt ""
@@ -3486,7 +3518,7 @@ msgctxt ""
"par_id3154537\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph> ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3526,7 +3558,7 @@ msgctxt ""
"par_id3159230\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME Basic</emph> እና ይጫኑ <emph>አደራጅ</emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት በ Basic IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic</emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት በ Basic IDE ለመክፈት የ <emph> ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3566,7 +3598,7 @@ msgctxt ""
"par_id3147547\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME መሰረታዊ </emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት መሰረታዊ IDE ለመክፈት የ <emph> ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3590,7 +3622,7 @@ msgctxt ""
"par_id3147248\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ይጫኑ <emph> ማጥፊያ </emph>"
#: 01030400.xhp
msgctxt ""
@@ -3630,7 +3662,7 @@ msgctxt ""
"par_id3149319\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macros ማደራጃ - %PRODUCTNAME Basic</emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት በ Basic IDE ለመክፈት የ <emph>Macro አደራጅ </emph> ንግግር"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic</emph> እና ይጫኑ <emph> አደራጅ </emph> ወይንም ይጫኑ የ <emph> ክፍል መምረጫ </emph> ምልክት በ Basic IDE ለመክፈት የ <emph> ማክሮስ አደራጅ </emph> ንግግር"
#: 01030400.xhp
msgctxt ""
@@ -3638,7 +3670,7 @@ msgctxt ""
"par_id3145637\n"
"help.text"
msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
-msgstr "ለ ማንቀሳቀስ ክፍል ወይንም ንግግር ወደ ሌላ ሰነድ ውስጥ: ይጫኑ ተመሳሳይ እቃ ከ ዝርዝር ውስጥ እና ይጎትቱ ወደሚፈለገው ቦታ: የ አግድም መስመር ይጠቁማል የ ኢላማውን ቦታ በ አሁኑ እቃ ውስጥ በሚጎትቱ ጊዜ: ተጭነው ይያዙየ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ በሚጎትቱ ጊዜ እቃውን ኮፒ ለማድረግ ከ ማንቀሳቀስ ይልቅ"
+msgstr "ለ ማንቀሳቀስ ክፍል ወይንም ንግግር ወደ ሌላ ሰነድ ውስጥ: ይጫኑ ተመሳሳይ እቃ ከ ዝርዝር ውስጥ እና ይጎትቱ ወደሚፈለገው ቦታ: የ አግድም መስመር ይጠቁማል የ ኢላማውን ቦታ በ አሁኑ እቃ ውስጥ በሚጎትቱ ጊዜ: ተጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ በሚጎትቱ ጊዜ እቃውን ኮፒ ለማድረግ ከ ማንቀሳቀስ ይልቅ:"
#: 01040000.xhp
msgctxt ""
@@ -3646,7 +3678,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Event-Driven Macros"
-msgstr "ሁኔታውን-መሰረት ያደረገ Macros"
+msgstr "ሁኔታውን-መሰረት ያደረገ ማክሮስ"
#: 01040000.xhp
msgctxt ""
@@ -3654,7 +3686,7 @@ msgctxt ""
"bm_id3154581\n"
"help.text"
msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
-msgstr "<bookmark_value>ማጥፊያ: macro ስራዎች ለ ሁኔታዎች</bookmark_value> <bookmark_value>macros; መመደቢያ ለ ሁኔታዎች</bookmark_value> <bookmark_value>መመደቢያ macros ለ ሁኔታዎች</bookmark_value> <bookmark_value>ሁኔታዎች: መመደቢያ ለ macros</bookmark_value>"
+msgstr "<bookmark_value>ማጥፊያ: የ ማክሮስ ስራዎች ለ ሁኔታዎች</bookmark_value> <bookmark_value>ማክሮስ: መመደቢያ ለ ሁኔታዎች</bookmark_value> <bookmark_value>መመደቢያ ማክሮስ ለ ሁኔታዎች</bookmark_value> <bookmark_value>ሁኔታዎች: መመደቢያ ለ ማክሮስ</bookmark_value>"
#: 01040000.xhp
msgctxt ""
@@ -3662,7 +3694,7 @@ msgctxt ""
"hd_id3147348\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">ሁኔታውን-መሰረት ያደረገ Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">ሁኔታውን-መሰረት ያደረገ ማክሮስ</link>"
#: 01040000.xhp
msgctxt ""
@@ -3678,7 +3710,7 @@ msgctxt ""
"par_id3149263\n"
"help.text"
msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
-msgstr "እርስዎ macro ራሱ በራሱ እንዲፈጽም ማድረግ ይችላሉ የ ተወሰነ ሶፍትዌር ሁኔታ ሲፈጠር በ መመደብ የሚፈለገውን macro ለ ሁኔታው: የሚቀጥለው ሰንጠረዥ የሚያቀርበው ባጠቃላይ የ ፕሮግራም ሁኔታዎች እና በ ምን ጊዜ የ ተመደበው macro እንደሚፈጸም ነው"
+msgstr "እርስዎ ማክሮስ ራሱ በራሱ እንዲፈጽም ማድረግ ይችላሉ የ ተወሰነ ሶፍትዌር ሁኔታ ሲፈጠር በ መመደብ የሚፈለገውን ማክሮስ ለ ሁኔታው: የሚቀጥለው ሰንጠረዥ የሚያቀርበው ባጠቃላይ የ ፕሮግራም ሁኔታዎች እና በ ምን ጊዜ የ ተመደበው ማክሮስ እንደሚፈጸም ነው"
#: 01040000.xhp
msgctxt ""
@@ -3694,7 +3726,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "An assigned macro is executed..."
-msgstr "የ ተመደበው macro ይፈጸማል..."
+msgstr "የ ተመደበው ማክሮስ ይፈጸማል..."
#: 01040000.xhp
msgctxt ""
@@ -3974,7 +4006,7 @@ msgctxt ""
"hd_id3153299\n"
"help.text"
msgid "Assigning a Macro to an Event"
-msgstr "ለ ሁኔታ Macro መመደቢያ"
+msgstr "ለ ሁኔታ ማክሮስ መመደቢያ"
#: 01040000.xhp
msgctxt ""
@@ -4006,7 +4038,7 @@ msgctxt ""
"par_id3148742\n"
"help.text"
msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
-msgstr "ይጫኑ <emph>Macro</emph> እና ይምረጡ macro ለተመረጠው ሁኔታ የሚፈጸመውን"
+msgstr "ይጫኑ <emph> ማክሮስ </emph> እና ይምረጡ ማክሮስ ለ ተመረጠው ሁኔታ የሚፈጸመውን"
#: 01040000.xhp
msgctxt ""
@@ -4014,7 +4046,7 @@ msgctxt ""
"par_id3146321\n"
"help.text"
msgid "Click <emph>OK</emph> to assign the macro."
-msgstr "ይጫኑ <emph> እሺ</emph> macro ለ መመደብ"
+msgstr "ይጫኑ <emph> እሺ </emph> ማክሮስ ለ መመደብ"
#: 01040000.xhp
msgctxt ""
@@ -4030,7 +4062,7 @@ msgctxt ""
"hd_id3154581\n"
"help.text"
msgid "Removing the Assignment of a Macro to an Event"
-msgstr "ለ ሁኔታ የ Macro ስራ ማስወገጃ"
+msgstr "ለ ሁኔታ የ ማክሮስ ስራ ማስወገጃ"
#: 01040000.xhp
msgctxt ""
@@ -4062,7 +4094,7 @@ msgctxt ""
"par_id3149143\n"
"help.text"
msgid "Click <emph>Remove</emph>."
-msgstr "ይጫኑ <emph>ማስወገጃ</emph>."
+msgstr "ይጫኑ <emph> ማስወገጃ </emph>"
#: 01040000.xhp
msgctxt ""
@@ -4102,7 +4134,7 @@ msgctxt ""
"par_idN105C9\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">መክፈቻ የ Basic IDE እርስዎ macros መጻፍ እና ማረም የሚችሉበት </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">መክፈቻ የ Basic IDE እርስዎ ማክሮስ መጻፍ እና ማረም የሚችሉበት </ahelp>"
#: 01050000.xhp
msgctxt ""
@@ -4214,7 +4246,7 @@ msgctxt ""
"par_id3153965\n"
"help.text"
msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
-msgstr "መክፈቻ የ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> ንግግር"
+msgstr "መክፈቻ የ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph> ማክሮስ ማደረጃ </emph></link> ንግግር"
#: 01050100.xhp
msgctxt ""
@@ -4518,7 +4550,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "Alt+Up Arrow"
-msgstr "Alt+የላይ ቀስት"
+msgstr "Alt+ ቀስት ወደ ላይ"
#: 01170100.xhp
msgctxt ""
@@ -4550,7 +4582,7 @@ msgctxt ""
"par_id3146914\n"
"help.text"
msgid "(UpArrow)"
-msgstr "(የላይ ቀስት)"
+msgstr "(ቀስት ወደ ላይ)"
#: 01170100.xhp
msgctxt ""
@@ -4958,7 +4990,7 @@ msgctxt ""
"par_id3157983\n"
"help.text"
msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
-msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን ከ ገቡ ራሱ በራሱ ይቀየራል ወደ ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን ከ ገቡ ራሱ በራሱ ይቀየራል ወደ የ ታችኛው ጉዳይ ፊደሎች"
#: 01170101.xhp
msgctxt ""
@@ -4974,7 +5006,7 @@ msgctxt ""
"par_id3159204\n"
"help.text"
msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
-msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 እዚህ ማስገባት ይቻላል: ዝቅተኛ ጉዳይ ፊደሎች ከ ገቡ ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደሎች"
+msgstr "እነዚህ ባህሪዎች A-Z: እዚህ ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደሎች ከ ገቡ ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደሎች"
#: 01170101.xhp
msgctxt ""
@@ -4990,7 +5022,7 @@ msgctxt ""
"par_id3151304\n"
"help.text"
msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
-msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን ከ ገቡ ራሱ በራሱ ይቀየራል ወደ ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን ከ ገቡ ራሱ በራሱ ይቀየራል ወደ ታችኛው ጉዳይ ፊደሎች"
#: 01170101.xhp
msgctxt ""
@@ -5006,7 +5038,7 @@ msgctxt ""
"par_id3155071\n"
"help.text"
msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
-msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 እዚህ ማስገባት ይቻላል: ዝቅተኛ ጉዳይ ፊደሎች ከ ገቡ ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደሎች"
+msgstr "እነዚህ ባህሪዎች a-z: እና 0-9 እዚህ ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደል ከ ገቡ ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደሎች"
#: 01170101.xhp
msgctxt ""
@@ -5054,7 +5086,7 @@ msgctxt ""
"par_id3154707\n"
"help.text"
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
-msgstr "ሁሉንም ሊታተም የሚችል ባህሪዎች ማስገባት ይችላሉ: የ ዝቅተኛ ጉዳይ ፊደሎች ከ ተጠቀሙ ራሱ በራሱ ወደ አቢይ ፊደል ይቀየራል"
+msgstr "ሁሉንም ሊታተም የሚችል ባህሪዎች ማስገባት ይችላሉ: የ ታችኛው ጉዳይ ፊደሎች ከ ተጠቀሙ ራሱ በራሱ ወደ አቢይ ፊደል ይቀየራል"
#: 01170101.xhp
msgctxt ""
@@ -5286,7 +5318,7 @@ msgctxt ""
"par_id3154580\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the entries for a list control. One line takes one list entry. Press <emph>Shift+Enter</emph> to insert a new line.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ ዝርዝር መቆጣጠሪያ ማስገቢያ ይወስኑ: አንድ መስመር የሚወስደው አንድ ዝርዝር ማስገቢያ ነው: ይጫኑ <emph>Shift+ማስገቢያ</emph> አዲስ መስመር ለማስገባት </ahelp>"
+msgstr "<ahelp hid=\".\">ለ ዝርዝር መቆጣጠሪያ ማስገቢያ ይወስኑ: አንድ መስመር የሚወስደው አንድ ዝርዝር ማስገቢያ ነው: ይጫኑ <emph> Shift+ማስገቢያ </emph> አዲስ መስመር ለማስገባት </ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -5454,7 +5486,7 @@ msgctxt ""
"par_id3146144\n"
"help.text"
msgid "To switch between dialog pages at run time, you need to create a macro that changes the value of <emph>Page (Step)</emph>."
-msgstr "በ ንግግር ገጾች እና በ ማስኬጃ ጊዜ መካከል ለ መቀየር: እርስዎ መፍጠር አለብዎት macro ዋጋውን የሚቀይር ለ <emph>ገጽ (ደረጃ)</emph>."
+msgstr "በ ንግግር ገጾች እና በ ማስኬጃ ጊዜ መካከል ለ መቀየር: እርስዎ መፍጠር አለብዎት ማክሮስ ዋጋውን የሚቀይር ለ <emph> ገጽ (ደረጃ) </emph>"
#: 01170101.xhp
msgctxt ""
@@ -5838,7 +5870,7 @@ msgctxt ""
"par_idN10EEB\n"
"help.text"
msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
-msgstr "ይጫኑ የ <emph>...</emph> መክፈቻ ቁልፉን ከ <emph>ምርጫዎች</emph> ንግግር ውስጥ"
+msgstr "ይጫኑ የ <emph>...</emph> መክፈቻ ቁልፉን ከ <emph> ምርጫዎች </emph> ንግግር ውስጥ"
#: 01170101.xhp
msgctxt ""
@@ -6062,7 +6094,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "<emph>Titles</emph> are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
-msgstr "<emph>አርእስት</emph> የሚጠቅመው ለ ንግግር ምልክት ማድረጊያ ብቻ ነው እና መያዝ ያለበት አንድ መሰመር ብቻ ነው: እባክዎን ያስታውሱ እርስዎ የሚሰሩ ከሆነ በ macros, መቆጣጠሪያ ብቻ ነው መጥራት የሚቻለው በ <emph>ስም</emph> ባህሪዎች ውስጥ"
+msgstr "<emph>አርእስት </emph> የሚጠቅመው ለ ንግግር ምልክት ማድረጊያ ብቻ ነው እና መያዝ ያለበት አንድ መሰመር ብቻ ነው: እባክዎን ያስታውሱ እርስዎ የሚሰሩ ከሆነ በ ማክሮስ መቆጣጠሪያ ብቻ ነው መጥራት የሚቻለው በ <emph> ስም </emph> ባህሪዎች ውስጥ"
#: 01170101.xhp
msgctxt ""
@@ -7158,7 +7190,7 @@ msgctxt ""
"par_id3153092\n"
"help.text"
msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr "<emph>ቁጥር</emph>: የ ቦታዎች ቁጥር የሚገባው በ <emph>ቦታ</emph> ተግባር ነው"
+msgstr "<emph>ቁጥር </emph>: የ ቦታዎች ቁጥር የሚገባው በ <emph> ቦታ </emph> ተግባር ነው"
#: 03010103.xhp
msgctxt ""
@@ -7198,7 +7230,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
-msgstr "እርስዎ ማስገባት ይችላሉ የ Tab ተግባር: የ ተከበበ በ ሴሚኮለን: በ ማስረጊያ ውጤት ላይ በ ተወሰነ ቦታ ላይ: ወይንም እርስዎ መጠቀም ይችላሉ የ <emph>ቦታ</emph> ተግባር ለማስገባት የ ተወሰነ ቁጥር ክፍተት"
+msgstr "እርስዎ ማስገባት ይችላሉ የ Tab ተግባር: የ ተከበበ በ ሴሚኮለን: በ ማስረጊያ ውጤት ላይ በ ተወሰነ ቦታ ላይ: ወይንም እርስዎ መጠቀም ይችላሉ የ <emph> ቦታ </emph> ተግባር ለማስገባት የ ተወሰነ ቁጥር ክፍተት"
#: 03010103.xhp
msgctxt ""
@@ -7342,7 +7374,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr "<emph>የ x_ቦታ</emph>: ኢንቲጀር መግለጫ የ ንግግር የ አግድም ቦታ የሚወስነው: ቦታው ፍጹም መገናኛ ነው: እና ወደ መስኮቱ አያመሳክርም ወደ ቢሮ መተግበሪያ"
+msgstr "<emph>የ x_ቦታ </emph>: ኢንቲጀር መግለጫ የ ንግግር የ አግድም ቦታ የሚወስነው: ቦታው ፍጹም መገናኛ ነው: እና ወደ መስኮቱ አያመሳክርም ወደ ቢሮ መተግበሪያ"
#: 03010201.xhp
msgctxt ""
@@ -7606,7 +7638,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
-msgstr "<emph>ቀለም</emph>: ረጅም የ ኢንቲጀር መግለጫ የሚወስን የ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">ቀለም ኮድ</link> የ አረንጓዴ አካል ይመልሳል"
+msgstr "<emph>ቀለም </emph>: ረጅም የ ኢንቲጀር መግለጫ የሚወስን የ <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\"> ቀለም ኮድ </link> የ አረንጓዴ አካል ይመልሳል"
#: 03010302.xhp
msgctxt ""
@@ -7790,7 +7822,7 @@ msgctxt ""
"par_id3150359\n"
"help.text"
msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
-msgstr "ይመልሳል የ <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">ቀአሰ</link> ቀለም ኮድ የ ቀለም ኮድ ያለፈውን እንደ ቀለም ዋጋ በ አሮጌው MS-DOS የ ፕሮግራም ስርአት መሰረት"
+msgstr "ይመልሳል የ <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\"> ቀአሰ </link> ቀለም ኮድ የ ቀለም ኮድ ያለፈውን እንደ ቀለም ዋጋ በ አሮጌው MS-DOS የ ፕሮግራም ስርአት መሰረት"
#: 03010304.xhp
msgctxt ""
@@ -7838,7 +7870,7 @@ msgctxt ""
"par_id3161832\n"
"help.text"
msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
-msgstr "<emph>የ ቀለም ቁጥር</emph>: ማንኛውም የ ኢንቲጀር መግለጫ የ ቀለም ዋጋ የሚወስን ያለፈውን እንደ ቀለም ዋጋ በ አሮጌው MS-DOS የ ፕሮግራም ስርአት መሰረት"
+msgstr "<emph>የ ቀለም ቁጥር </emph>: ማንኛውም የ ኢንቲጀር መግለጫ የ ቀለም ዋጋ የሚወስን ያለፈውን እንደ ቀለም ዋጋ በ አሮጌው MS-DOS የ ፕሮግራም ስርአት መሰረት"
#: 03010304.xhp
msgctxt ""
@@ -7894,7 +7926,7 @@ msgctxt ""
"par_id3153364\n"
"help.text"
msgid "5 : Magenta"
-msgstr "5 : Magenta"
+msgstr "5 : ማጄንታ"
#: 03010304.xhp
msgctxt ""
@@ -8422,7 +8454,7 @@ msgctxt ""
"par_id3155132\n"
"help.text"
msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
-msgstr "<emph>የ ፋይል ስም: </emph>እርስዎ መክፈት ለሚፈልጉት ፋይል መንገድ እና ስም ያስገቡ: እርስዎ ያልነበረ ፋይል ለማንበብ ሙከራ ካደረጉ (ፍቃድ = ለ ንባብ), የ ስህተት መልእክት ይታያል: እርስዎ ያልነበረ ፋይል ላይ ለ መጻፍ ሙከራ ካደረጉ (ፍቃድ = ለ መጻፍ) አዲስ ፋይል ይፈጠራል"
+msgstr "<emph>የ ፋይል ስም: </emph> እርስዎ መክፈት ለሚፈልጉት ፋይል መንገድ እና ስም ያስገቡ: እርስዎ ያልነበረ ፋይል ለማንበብ ሙከራ ካደረጉ (ፍቃድ = ለ ንባብ): የ ስህተት መልእክት ይታያል: እርስዎ ያልነበረ ፋይል ላይ ለ መጻፍ ሙከራ ካደረጉ (ፍቃድ = ለ መጻፍ) አዲስ ፋይል ይፈጠራል"
#: 03020103.xhp
msgctxt ""
@@ -8454,7 +8486,7 @@ msgctxt ""
"par_id3153190\n"
"help.text"
msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
-msgstr "<emph>የ ፋይል ቁጥር:</emph> ማንኛውም የ ኢንቲጀር መግለጫ ከ 0 እስከ 511 ድረስ የሚያሳየው የ ነፃ ዳታ ጣቢያ ቁጥር ነው: እርስዎ ትእዛዝ ማሳለፍ ይችላሉ ከ ዳታ ጣቢያ ፋይል ጋር ለ መድረስ: የ ፋይል ቁጥር የሚወሰነው ወዲያውኑ በ ነፃ ፋይል ተግባር ነው ከ ተከፈተው አረፍተ ነገር በፊት"
+msgstr "<emph>የ ፋይል ቁጥር: </emph> ማንኛውም የ ኢንቲጀር መግለጫ ከ 0 እስከ 511 ድረስ የሚያሳየው የ ነፃ ዳታ ጣቢያ ቁጥር ነው: እርስዎ ትእዛዝ ማሳለፍ ይችላሉ ከ ዳታ ጣቢያ ፋይል ጋር ለ መድረስ: የ ፋይል ቁጥር የሚወሰነው ወዲያውኑ በ ነፃ ፋይል ተግባር ነው ከ ተከፈተው አረፍተ ነገር በፊት"
#: 03020103.xhp
msgctxt ""
@@ -8614,7 +8646,7 @@ msgctxt ""
"par_id3154346\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">ማስገቢያ</item></link> አረፍተ ነገር"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\"> ማስገቢያ </item></link> አረፍተ ነገር"
#: 03020201.xhp
msgctxt ""
@@ -8822,7 +8854,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
-msgstr "የ <emph>ማስገቢያ#</emph> አረፍተ ነገር የሚያነበው የ ሂሳብ ዋጋዎችን ነው: ወይንም ሀረጎችን ከ ተከፈተ ፋይል ውስጥ እና ዳታ ይመድባል ወደ አንድ ወይንም ተጨማሪ ተለዋዋጮች: የ ሂሳብ ተለዋዋጮች የሚነበበው እስከ መጀመሪያው መመለሻ ድረስ ነው: (Asc=13), መስመር መመገቢያ (Asc=10), ክፍተት ወይንም ኮማ: የ ሀረግ ተለዋዋጭ የሚነበበው እስከ መጀመሪያው መመለሻ ድረስ ነው: (Asc=13), መስመር መመገቢያ (Asc=10), ወይንም ኮማ:"
+msgstr "የ <emph>ማስገቢያ# </emph> አረፍተ ነገር የሚያነበው የ ሂሳብ ዋጋዎችን ነው: ወይንም ሀረጎችን ከ ተከፈተ ፋይል ውስጥ እና ዳታ ይመድባል ወደ አንድ ወይንም ተጨማሪ ተለዋዋጮች: የ ሂሳብ ተለዋዋጮች የሚነበበው እስከ መጀመሪያው መመለሻ ድረስ ነው: (Asc=13), መስመር መመገቢያ (Asc=10), ክፍተት ወይንም ኮማ: የ ሀረግ ተለዋዋጭ የሚነበበው እስከ መጀመሪያው መመለሻ ድረስ ነው: (Asc=13), መስመር መመገቢያ (Asc=10), ወይንም ኮማ:"
#: 03020202.xhp
msgctxt ""
@@ -8838,7 +8870,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
-msgstr "መዝገቦች በ ኮማ የ ተለያዩ መመደብ አይቻልም ወደ ተለዋዋጭ ሀረግ: የ ጥቅስ ምልክቶች (\") እንዲሁም በ ፋይል ውስጥ ይተዋሉ: እርስዎ እነዚህን ባህሪዎች ማንበብ ከ ፈለጉ ከ ፋይል ውስጥ: ይጠቀሙ የ <emph>መስመር ማስገቢያ#</emph> አረፍተ ነገር ለ ማንበብ ንጹህ የ ጽሁፍ ፋይሎች (ሊታተሙ የሚችሉ ባህሪዎችን የያዙ ፋይሎች) መስመር በ መስመር"
+msgstr "መዝገቦች በ ኮማ የ ተለያዩ መመደብ አይቻልም ወደ ተለዋዋጭ ሀረግ: የ ጥቅስ ምልክቶች (\") እንዲሁም በ ፋይል ውስጥ ይተዋሉ: እርስዎ እነዚህን ባህሪዎች ማንበብ ከ ፈለጉ ከ ፋይል ውስጥ: ይጠቀሙ የ <emph> መስመር ማስገቢያ# </emph> አረፍተ ነገር ለ ማንበብ ንጹህ የ ጽሁፍ ፋይሎች (ሊታተሙ የሚችሉ ባህሪዎችን የያዙ ፋይሎች) መስመር በ መስመር"
#: 03020202.xhp
msgctxt ""
@@ -9014,7 +9046,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">ማግኛ</item></link> አረፍተ ነገር"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\"> ማግኛ </item></link> አረፍተ ነገር"
#: 03020204.xhp
msgctxt ""
@@ -9566,7 +9598,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-msgstr "የ ተከፈተ የ ፋይል እርዝመት ለማግኘት: ይጠቀሙ የ <emph>ፋይል እርዝመት</emph> ተግባር"
+msgstr "የ ተከፈተ የ ፋይል እርዝመት ለማግኘት: ይጠቀሙ የ <emph> ፋይል እርዝመት </emph> ተግባር"
#: 03020303.xhp
msgctxt ""
@@ -9686,7 +9718,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">መክፈቻ</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">መፈለጊያ</link>."
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\"> መክፈቻ </link> <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\"> መፈለጊያ </link>"
#: 03020304.xhp
msgctxt ""
@@ -9790,7 +9822,7 @@ msgctxt ""
"par_id3156280\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">መክፈቻ</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">መፈለጊያ</link>."
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\"> መክፈቻ </link> <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\"> መፈለጊያ </link>"
#: 03020305.xhp
msgctxt ""
@@ -10222,7 +10254,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
-msgstr "<emph>መለያ: </emph>ማንኛውም የ ኢንቲጀር መግለጫ የሚወስነው bitwise ፋይል መለያ ነው: የ ዳይሬክቶሪ ተግባር ፋይሎች ብቻ ይመልሳል ወይንም ዳይሬክቶሪዎች የ ተወሰነውን መለያ የሚመሳሰሉ: እርስዎ መወሰን ይችላሉ በርካታ መለያዎች በ መጨመር የ መለያ ዋጋዎች:"
+msgstr "<emph>መለያ: </emph> ማንኛውም የ ኢንቲጀር መግለጫ የሚወስነው bitwise ፋይል መለያ ነው: የ ዳይሬክቶሪ ተግባር ፋይሎች ብቻ ይመልሳል ወይንም ዳይሬክቶሪዎች የ ተወሰነውን መለያ የሚመሳሰሉ: እርስዎ መወሰን ይችላሉ በርካታ መለያዎች በ መጨመር የ መለያ ዋጋዎች:"
#: 03020404.xhp
msgctxt ""
@@ -10350,7 +10382,7 @@ msgctxt ""
"par_id3163713\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">መክፈቻ</link>"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\"> መክፈቻ </link>"
#: 03020405.xhp
msgctxt ""
@@ -11326,7 +11358,7 @@ msgctxt ""
"par_id3152462\n"
"help.text"
msgid "MsgBox \"File already exists\""
-msgstr "የ መልእክት ሳጥን \"ፋይሉ ቀደም ብሎ ነበር\""
+msgstr "MsgBox \"File already exists\""
#: 03020413.xhp
msgctxt ""
@@ -11398,7 +11430,7 @@ msgctxt ""
"par_id3153192\n"
"help.text"
msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
-msgstr "መንገዱ ካልተወሰነ በ <emph>የ ዳይሬክቶሪ ማስወገጃ አረፍተ ነገር</emph> ውስጥ በ አሁኑ ዳይሬክቶሪ ውስጥ እርስዎ ማጥፋት የሚፈልጉትን በ አሁኑ መንገድ ውስጥ ይፈልጋል: እዛ ውስጥ ካልተገኘ: የ ስህተት መልእክት ይታያል"
+msgstr "መንገዱ ካልተወሰነ የ <emph> ዳይሬክቶሪ ማስወገጃ አረፍተ ነገር </emph> ውስጥ: በ አሁኑ ዳይሬክቶሪ ውስጥ እርስዎ ማጥፋት የሚፈልጉትን በ አሁኑ መንገድ ውስጥ ይፈልጋል: እዛ ውስጥ ካልተገኘ: የ ስህተት መልእክት ይታያል"
#: 03020413.xhp
msgctxt ""
@@ -11470,7 +11502,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr "የ ፋይል ስም: የ ፋይል ስም: እንዲሁም መንገድ ያካትታል: እርስዎ መሞከር የሚፈልጉትን መለያዎች: እርስዎ መንገድ ካላስገቡ: <emph>መለያ ማሰናጃ</emph> በ አሁኑ ዳይሬክቶሪ ውስጥ ፋይሉን ይፈልጋል: እርስዎ እንዲሁም መጠቀም ይችላሉ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "የ ፋይል ስም: የ ፋይል ስም: እንዲሁም መንገድ ያካትታል: እርስዎ መሞከር የሚፈልጉትን መለያዎች: እርስዎ መንገድ ካላስገቡ: <emph> መለያ ማሰናጃ </emph> በ አሁኑ ዳይሬክቶሪ ውስጥ ፋይሉን ይፈልጋል: እርስዎ እንዲሁም መጠቀም ይችላሉ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
#: 03020414.xhp
msgctxt ""
@@ -11998,7 +12030,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
-msgstr "ይመልሳል ዋጋ ቀን የሚወክል በ ወር ውስጥ መሰረት በ ተከታታይ ቀን ቁጥር ውስጥ የ መነጨው በ <emph>ተከታታይ ቀን</emph> ወይን <emph>የ ቀን ዋጋ</emph> ውስጥ"
+msgstr "ይመልሳል ዋጋ ቀን የሚወክል በ ወር ውስጥ መሰረት በ ተከታታይ ቀን ቁጥር ውስጥ የ መነጨው በ <emph> ተከታታይ ቀን </emph> ወይንም <emph> የ ቀን ዋጋ </emph> ውስጥ"
#: 03030103.xhp
msgctxt ""
@@ -15598,7 +15630,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
-msgstr "<emph>አካባቢ:</emph> \"በ ስህተት ውስጥ\" አለም አቀፍ ነው በ ክፍል ውስጥ: እና ንቁ እንደሆነ ይቆያል እስከሚሰረዝ ድረስ በ ሌላ \"በ ስህተት ውስጥ\" አረፍተ ነገር: \"በ አካባቢ ስህተት ውስጥ\" ለ አሰራሩ አካባቢ ለሚጠራው: የ አካባቢ ስህተት አያያዝ በላዩ ላይ ደርቦ ይጽፋል ቀደም ብሎ በ ነበረ ማንኛውም አለም አቀፍ ማሰናጃ ውስጥ: የ አሰራሩ መጥሪያ በሚወጣ ጊዜ: የ አካባቢ ስህተት አያያዝ ራሱ በራሱ ይሰረዘል: እና ማንኛውም ቀደም ብሎ የ ነበረ አለም አቀፍ ማሰናጃ እንደ ነበር ይመለሳል"
+msgstr "<emph>አካባቢ: </emph> \"በ ስህተት ውስጥ\" አለም አቀፍ ነው በ ክፍል ውስጥ: እና ንቁ እንደሆነ ይቆያል እስከሚሰረዝ ድረስ በ ሌላ \"በ ስህተት ውስጥ\" አረፍተ ነገር: \"በ አካባቢ ስህተት ውስጥ\" ለ አሰራሩ አካባቢ ለሚጠራው: የ አካባቢ ስህተት አያያዝ በላዩ ላይ ደርቦ ይጽፋል ቀደም ብሎ በ ነበረ ማንኛውም አለም አቀፍ ማሰናጃ ውስጥ: የ አሰራሩ መጥሪያ በሚወጣ ጊዜ: የ አካባቢ ስህተት አያያዝ ራሱ በራሱ ይሰረዘል: እና ማንኛውም ቀደም ብሎ የ ነበረ አለም አቀፍ ማሰናጃ እንደ ነበር ይመለሳል"
#: 03050500.xhp
msgctxt ""
@@ -15606,7 +15638,7 @@ msgctxt ""
"par_id3148619\n"
"help.text"
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
-msgstr "በ ስህተት ጊዜ የ መሄጃ ወደ አረፍተ ነገር የሚጠቅመው ስህተት ለ መከላከል ነው በ macro ውስጥ"
+msgstr "በ ስህተት ጊዜ የ መሄጃ ወደ አረፍተ ነገር የሚጠቅመው ስህተት ለ መከላከል ነው በ ማክሮስ ውስጥ"
#: 03050500.xhp
msgctxt ""
@@ -15750,7 +15782,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
-msgstr "<emph>እውነት</emph> እና <emph>እውነት</emph> ይመልሳል <emph>እውነት</emph> ለ ሁሉም ሌሎች መቀላቀያ ውጤቱ <emph>ሀሰት</emph>ነው"
+msgstr "<emph>እውነት </emph> እና <emph> እውነት </emph> ይመልሳል <emph> እውነት </emph> ለ ሁሉም ሌሎች መቀላቀያ ውጤቱ <emph> ሀሰት </emph> ነው"
#: 03060100.xhp
msgctxt ""
@@ -15886,7 +15918,7 @@ msgctxt ""
"par_id3149562\n"
"help.text"
msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
-msgstr "እርስዎ በሚሞክሩ ጊዜ እኩልነት በ ቡልያን መግለጫ ውስጥ: ውጤቱ ይሆናል <emph> እውነት </emph> ሁለቱም መግለጫ ከሆኑ <emph> እውነት </emph> ወይንም <emph> ሀሰት </emph>."
+msgstr "እርስዎ በሚሞክሩ ጊዜ እኩልነት በ ቡልያን መግለጫ ውስጥ: ውጤቱ ይሆናል <emph> እውነት </emph> ሁለቱም መግለጫ ከሆኑ <emph> እውነት </emph> ወይንም <emph> ሀሰት </emph>"
#: 03060200.xhp
msgctxt ""
@@ -16886,7 +16918,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
-msgstr ""
+msgstr "ማተሚያ ኤክስፖነንት ( 23 * ሎጋሪዝም( 12.345 ) ) ' ሲነሳ በ ሎጋሪዝም አቀራረብ"
#: 03070600.xhp
msgctxt ""
@@ -18150,7 +18182,7 @@ msgctxt ""
"par_id110520161656428611\n"
"help.text"
msgid "Unless a predictable sequence of numbers is desired, there is no need to use the <emph>Randomize</emph> statement, as the random-number generator will be initialized automatically at first use – it will be seeded using a system-provided random-number generator that produces uniformly-distributed, non-deterministic random numbers. If no such generator is available on the system, the system time will be used as seed."
-msgstr "የ ቁጥር ሂደቶችን መገመት ካላስፈለገ በስተቀር ይህን መጠቀም አያስፈልግም የ <emph>በደፈናው</emph> አረፍተ ነገር: እንደ በደፈናው-ቁጥር አመንጪ ራሱ በራሱ ይነሳል በ መጀመሪያ ጊዜ ሲጠቀሙ: – እና ከዛ ይቀመጣል በ ስርአቱ-አቅራቢ በደፈናው- ቁጥር አመንጪ ውስጥ በሚፈጥር ተመሳሳይ-ስርጭት: ምንም-የማይወሰኑ ቁጥሮች: እንዲህ አይነት አመንጪ ከሌለ በ ስርአቱ ውስጥ የ ስርአቱን ጊዜ ለማመንጨት ይጠቀማል"
+msgstr "የ ቁጥር ሂደቶችን መገመት ካላስፈለገ በስተቀር ይህን መጠቀም አያስፈልግም የ <emph> በደፈናው </emph> አረፍተ ነገር: እንደ በደፈናው-ቁጥር አመንጪ ራሱ በራሱ ይነሳል በ መጀመሪያ ጊዜ ሲጠቀሙ: – እና ከዛ ይቀመጣል በ ስርአቱ-አቅራቢ በደፈናው- ቁጥር አመንጪ ውስጥ በሚፈጥር ተመሳሳይ-ስርጭት: ምንም-የማይወሰኑ ቁጥሮች: እንዲህ አይነት አመንጪ ከሌለ በ ስርአቱ ውስጥ የ ስርአቱን ጊዜ ለማመንጨት ይጠቀማል"
#: 03080301.xhp
msgctxt ""
@@ -18158,7 +18190,7 @@ msgctxt ""
"par_id12052016194258344\n"
"help.text"
msgid "The <emph>Randomize</emph> statement affects BASIC's <emph>Rnd</emph> function only. Other random-number generators (for example the Calc's RAND() function, etc.) are not affected by it."
-msgstr "የ <emph>በደፈናው</emph> አረፍተ ነገር ተፅእኖ ይፈጥራል በ BASIC's <emph>በደፈናው</emph> ተግባሮች ውስጥ ብቻ: ሌሎች በደፈናው-ቁጥሮች ያመነጫል (ለምሳሌ የ ሰንጠረዥ በደፈናው() ተግባር: ወዘተ) ተፅእኖ አይፈጥርም"
+msgstr "የ <emph>በደፈናው </emph> አረፍተ ነገር ተፅእኖ ይፈጥራል በ BASIC's <emph> በደፈናው </emph> ተግባሮች ውስጥ ብቻ: ሌሎች በደፈናው-ቁጥሮች ያመነጫል (ለምሳሌ የ ሰንጠረዥ በደፈናው() ተግባር: ወዘተ) ተፅእኖ አይፈጥርም"
#: 03080301.xhp
msgctxt ""
@@ -21062,7 +21094,7 @@ msgctxt ""
"par_id3154216\n"
"help.text"
msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
-msgstr "ቁልፍ ቃል አማረጭ ነው እርስዎ በሚጠርሩ ጊዜ አሰራር: ተግባር ከ ተፈጸመ እንደ መግለጫ: ደንብ መከበብ አለበት በ ቅንፎች በ አረፍተ ነገር ውስጥ: DLL ከ ተጠራ መጀመሪያ መወሰን አለበት በ <emph>መግለጫ-አረፍተ ነገር</emph> ውስጥ"
+msgstr "ቁልፍ ቃል አማረጭ ነው እርስዎ በሚጠርሩ ጊዜ አሰራር: ተግባር ከ ተፈጸመ እንደ መግለጫ: ደንብ መከበብ አለበት በ ቅንፎች በ አረፍተ ነገር ውስጥ: DLL ከ ተጠራ መጀመሪያ መወሰን አለበት በ <emph> መግለጫ-አረፍተ ነገር </emph> ውስጥ"
#: 03090401.xhp
msgctxt ""
@@ -21230,7 +21262,7 @@ msgctxt ""
"par_id3146795\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">ነፃ መጻህፍት ቤት</link>"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\"> ነፃ መጻህፍት ቤት </link>"
#: 03090403.xhp
msgctxt ""
@@ -21294,7 +21326,7 @@ msgctxt ""
"par_id3147289\n"
"help.text"
msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
-msgstr "<emph>አይነት:</emph> የ ዳታ አይነት መግለጫ ዋጋው የ መለሰውን በ ተግባር አሰራር: እርስዎ ማስቀረት ይችላሉ ይህን ደንብ የ አይነት-መግለጫ ባህሪ የሚገባ ከሆነ ከ ስም በኋላ"
+msgstr "<emph>አይነት: </emph> የ ዳታ አይነት መግለጫ ዋጋው የ መለሰውን በ ተግባር አሰራር: እርስዎ ማስቀረት ይችላሉ ይህን ደንብ የ አይነት-መግለጫ ባህሪ የሚገባ ከሆነ ከ ስም በኋላ"
#: 03090403.xhp
msgctxt ""
@@ -21302,7 +21334,7 @@ msgctxt ""
"par_id3146922\n"
"help.text"
msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
-msgstr "ደንቦችን ለማለፍ ወደ ንዑስ አሰራር እንደ ዋጋ ከ ማመሳከሪያ ይልቅ: ደንብ መጠቆም አለበት በ ቁልፍ ቃል <emph>በ ዋጋ</emph>."
+msgstr "ደንቦችን ለማለፍ ወደ ንዑስ አሰራር እንደ ዋጋ ከ ማመሳከሪያ ይልቅ: ደንብ መጠቆም አለበት በ ቁልፍ ቃል <emph> በ ዋጋ </emph>"
#: 03090403.xhp
msgctxt ""
@@ -21486,7 +21518,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
-msgstr "በ መግለጫ አረፍተ ነገር የ ተጫነ DLLs ይለቅቃል: የ ተለቀቀ በ DLL ራሱ በራሱ ይጫናል አንድ ተግባር ከ ተጠራ: ይህን ይመልከቱ e also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">መግለጫ</link>"
+msgstr "በ መግለጫ አረፍተ ነገር የ ተጫነ DLLs ይለቅቃል: የ ተለቀቀ በ DLL ራሱ በራሱ ይጫናል አንድ ተግባር ከ ተጠራ: ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\"> መግለጫ </link>"
#: 03090405.xhp
msgctxt ""
@@ -22014,7 +22046,7 @@ msgctxt ""
"par_id3153894\n"
"help.text"
msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
-msgstr "የ <emph>መቀየሪያ</emph> ተግባር መግለጫዎችን ከ ቀኝ ወደ ግራ ይመረምራል: እና ከዛ ይመልሳል ዋጋ የ ተመደበውን ለ ተግባር መግለጫ: መግለጫ እና ዋጋ ካልተሰጠ እንደ ጥንድ: የ ማስኬጃ ጊዜ ስህተት ይፈጠራል"
+msgstr "የ <emph> መቀየሪያ </emph> ተግባር መግለጫዎችን ከ ቀኝ ወደ ግራ ይመረምራል: እና ከዛ ይመልሳል ዋጋ የ ተመደበውን ለ ተግባር መግለጫ: መግለጫ እና ዋጋ ካልተሰጠ እንደ ጥንድ: የ ማስኬጃ ጊዜ ስህተት ይፈጠራል"
#: 03090410.xhp
msgctxt ""
@@ -22230,7 +22262,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
-msgstr "መውጫ ከ <emph>ተግባር</emph> አሰራር ወዲያውኑ: ፕሮግራም መፈጸሚያ ይቀጥላል አረፍተ ነገር የሚከተል የ <emph>ተግባር</emph> መጥሪያ"
+msgstr "መውጫ ከ <emph> ተግባር </emph> አሰራር ወዲያውኑ: ፕሮግራም መፈጸሚያ ይቀጥላል አረፍተ ነገር የሚከተል የ <emph> ተግባር </emph> መጥሪያ"
#: 03090412.xhp
msgctxt ""
@@ -22246,7 +22278,7 @@ msgctxt ""
"par_id3149561\n"
"help.text"
msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
-msgstr "መውጫ ከ አሰራር ወዲያውኑ: ፕሮግራም መፈጸሚያ ይቀጥላል አረፍተ ነገር የሚከተል የ <emph>ንዑስ</emph> መጥሪያ"
+msgstr "መውጫ ከ አሰራር ወዲያውኑ: ፕሮግራም መፈጸሚያ ይቀጥላል አረፍተ ነገር የሚከተል የ <emph> ንዑስ </emph> መጥሪያ"
#: 03090412.xhp
msgctxt ""
@@ -22582,7 +22614,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">አስፈላጊው የ ስህተት ቁጥር ለ ክርክር [ማስኬጃ ጊዜ]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">በ ተጠቃሚ የሚገለጽ ስህተት [ማስኬጃ ጊዜ]</link>"
#: 03100080.xhp
msgctxt ""
@@ -22718,7 +22750,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
-msgstr "<emph>መግለጫ1, መግለጫ2:</emph> ማንኛውም ሀረግ ወይንም የ ቁጥር መግለጫ እርስዎ ማዋዳደር የሚፈልጉት: መግለጫው ተመሳሳይ ከሆነ: ከ <emph>CBool</emph> ተግባር ይመልሳል <emph> እውነት </emph> ያለ በለዚያ <emph> ሀሰት </emph> ይመልሳል"
+msgstr "<emph>መግለጫ1: መግለጫ2:</emph> ማንኛውም ሀረግ ወይንም የ ቁጥር መግለጫ እርስዎ ማዋዳደር የሚፈልጉት: መግለጫው ተመሳሳይ ከሆነ: ከ <emph> ሲቡል </emph> ተግባር ይመልሳል <emph> እውነት </emph> ያለ በለዚያ <emph> ሀሰት </emph> ይመልሳል"
#: 03100100.xhp
msgctxt ""
@@ -23062,7 +23094,7 @@ msgctxt ""
"par_id3159414\n"
"help.text"
msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>መግለጫ:</emph> ማንኛውንም ሀረግ ወይንም የ ቁጥር መግለጫ እርስዎ መቀየር የሚፈልጉትን: ከሆነ <emph>መግለጫ</emph> የ መጠን ዋጋ የሚያልፍ ከሆነ ከ -32768 እና 32767, መካከል: $[officename] Basic መግለጫ ስህተት ተርፎ ይፈሳል: ለ መቀየር የ ሀረግ መግለጫ: ቁጥር መግባት አለበት እንደ መደበኛ ጽሁፍ (\"123.5\") ነባር የ ቁጥር አቀራረብ በ መጠቀም በ እርስዎ የ መስሪያ ስርአት ውስጥ"
+msgstr "<emph>መግለጫ:</emph> ማንኛውንም ሀረግ ወይንም የ ቁጥር መግለጫ እርስዎ መቀየር የሚፈልጉትን: ከሆነ <emph> መግለጫ </emph> የ መጠን ዋጋ የሚያልፍ ከሆነ ከ -32768 እና 32767, መካከል: $[officename] Basic መግለጫ ስህተት ተርፎ ይፈሳል: ለ መቀየር የ ሀረግ መግለጫ: ቁጥር መግባት አለበት እንደ መደበኛ ጽሁፍ (\"123.5\") ነባር የ ቁጥር አቀራረብ በ መጠቀም በ እርስዎ የ መስሪያ ስርአት ውስጥ"
#: 03100500.xhp
msgctxt ""
@@ -23150,7 +23182,7 @@ msgctxt ""
"par_id3159414\n"
"help.text"
msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
-msgstr "<emph>መግለጫ:</emph> ማንኛውንም ሀረግ ወይንም የ ቁጥር መግለጫ እርስዎ መቀየር የሚፈልጉትን: ከሆነ <emph>መግለጫ</emph> ዋጋ ካለው ረጅም ኢንቲጀር መጠን ውጪ የሚያርፍ ከሆነ በ -2.147.483.648 እና 2.147.483.647, መካከል: $[officename] መግለጫ ስህተት ተርፎ ይፈሳል: ለ መቀየር የ ሀረግ መግለጫ: ቁጥር መግባት አለበት እንደ መደበኛ ጽሁፍ (\"123.5\") ነባር የ ቁጥር አቀራረብ በ መጠቀም በ እርስዎ የ መስሪያ ስርአት ውስጥ"
+msgstr "<emph>መግለጫ: </emph> ማንኛውንም ሀረግ ወይንም የ ቁጥር መግለጫ እርስዎ መቀየር የሚፈልጉትን: ከሆነ <emph> መግለጫ </emph> ዋጋ ካለው ረጅም ኢንቲጀር መጠን ውጪ የሚያርፍ ከሆነ በ -2.147.483.648 እና 2.147.483.647, መካከል: $[officename] መግለጫ ስህተት ተርፎ ይፈሳል: ለ መቀየር የ ሀረግ መግለጫ: ቁጥር መግባት አለበት እንደ መደበኛ ጽሁፍ (\"123.5\") ነባር የ ቁጥር አቀራረብ በ መጠቀም በ እርስዎ የ መስሪያ ስርአት ውስጥ"
#: 03100600.xhp
msgctxt ""
@@ -23614,7 +23646,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>ቁልፍ ቃል: </emph>ነባር ተለዋዋጭ አይነት"
+msgstr "<emph>ቁልፍ ቃል: </emph> ነባር ተለዋዋጭ አይነት"
#: 03101100.xhp
msgctxt ""
@@ -24150,7 +24182,7 @@ msgctxt ""
"par_id3153524\n"
"help.text"
msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>ቁልፍ ቃል: </emph>ነባር ተለዋዋጭ አይነት"
+msgstr "<emph>ቁልፍ ቃል: </emph> ነባር ተለዋዋጭ አይነት"
#: 03102000.xhp
msgctxt ""
@@ -24302,7 +24334,7 @@ msgctxt ""
"par_id3154015\n"
"help.text"
msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>ቁልፍ ቃል: </emph>የ ተለዋዋጭ አይነት"
+msgstr "<emph>ቁልፍ ቃል: </emph> የ ተለዋዋጭ አይነት"
#: 03102100.xhp
msgctxt ""
@@ -24550,7 +24582,7 @@ msgctxt ""
"par_id711996\n"
"help.text"
msgid "Optionally, you can add the <emph>Preserve</emph> keyword as a parameter to preserve the contents of the array that is redimensioned."
-msgstr "በ ምርጫ እርስዎ መጨመር ይችላሉ የ <emph>ማስቀመጫ</emph> ቁልፍ ቃል እንደ ደንብ የ ማዘጋጃውን እንደገና መመጠኛ ይዞታዎችን ለ ማስቀመጥ"
+msgstr "በ ምርጫ እርስዎ መጨመር ይችላሉ የ <emph> ማስቀመጫ </emph> ቁልፍ ቃል እንደ ደንብ የ ማዘጋጃውን እንደገና መመጠኛ ይዞታዎችን ለ ማስቀመጥ"
#: 03102101.xhp
msgctxt ""
@@ -24598,7 +24630,7 @@ msgctxt ""
"par_id3147317\n"
"help.text"
msgid "<emph>Keyword:</emph> Variable type"
-msgstr "<emph>ቁልፍ ቃል: </emph>የ ተለዋዋጭ አይነት"
+msgstr "<emph>ቁልፍ ቃል: </emph> የ ተለዋዋጭ አይነት"
#: 03102101.xhp
msgctxt ""
@@ -24822,7 +24854,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
-msgstr "<emph>ተለዋዋጭ:</emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ እንደ ማዘጋጃ ይገለጻል: ተለዋዋጩ ማዘጋጃ ከሆነ: ከዛ ተግባር ይመልሳል <emph>እውነት</emph> ያለ በለዚያ <emph>ሀሰት </emph>ይመልሳል"
+msgstr "<emph>ተለዋዋጭ:</emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ እንደ ማዘጋጃ ይገለጻል: ተለዋዋጩ ማዘጋጃ ከሆነ: ከዛ ተግባር ይመልሳል <emph> እውነት </emph> ያለ በለዚያ <emph> ሀሰት </emph> ይመልሳል"
#: 03102200.xhp
msgctxt ""
@@ -24910,7 +24942,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
-msgstr "<emph>መግለጫ:</emph> ማንኛውም የ ቁጥር ወይንም ሀረግ መግለጫ እርስዎ መሞከር የሚፈልጉት: መግለጫው ይቀየር እንደሆን ወደ ቀን: ተግባር ይመልሳል <emph>እውነት</emph> ያለ በለዚያ ተግባር ይመልሳል<emph>ሀሰት</emph>."
+msgstr "<emph>መግለጫ: </emph> ማንኛውም የ ቁጥር ወይንም ሀረግ መግለጫ እርስዎ መሞከር የሚፈልጉት: መግለጫው ይቀየር እንደሆን ወደ ቀን: ተግባር ይመልሳል <emph> እውነት </emph> ያለ በለዚያ ተግባር ይመልሳል<emph> ሀሰት </emph>"
#: 03102300.xhp
msgctxt ""
@@ -25014,7 +25046,7 @@ msgctxt ""
"par_id3154347\n"
"help.text"
msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
-msgstr "<emph>ተለዋዋጭ:</emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ: የተለየ ባዶ ዋጋ ከያዘ: ተግባር እውነት ይመልሳል: ያለ በለዚያ ተግባር ሀሰት ይመልሳል:"
+msgstr "<emph>ተለዋዋጭ: </emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ: የተለየ ባዶ ዋጋ ከያዘ: ተግባር እውነት ይመልሳል: ያለ በለዚያ ተግባር ሀሰት ይመልሳል:"
#: 03102400.xhp
msgctxt ""
@@ -25102,7 +25134,7 @@ msgctxt ""
"par_idN10573\n"
"help.text"
msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
-msgstr "<emph>ተለዋዋጭ:</emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ: የተለየ ባዶ ዋጋ ከያዘ: ተግባር እውነት ይመልሳል: ያለ በለዚያ ተግባር ሀሰት ይመልሳል:"
+msgstr "<emph>ተለዋዋጭ: </emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ: የተለየ ባዶ ዋጋ ከያዘ: ተግባር እውነት ይመልሳል: ያለ በለዚያ ተግባር ሀሰት ይመልሳል:"
#: 03102600.xhp
msgctxt ""
@@ -25182,7 +25214,7 @@ msgctxt ""
"par_id3159414\n"
"help.text"
msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
-msgstr "<emph>ተለዋዋጭ:</emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ: ይህ ተግባር እውነት ይመልሳል የተለየ የያዘው ዋጋ ባዶ ዋጋ ከሆነ: ወይንም ሀሰት ተለዋዋጭ ባዶ ዋጋ ካልያዘ"
+msgstr "<emph>ተለዋዋጭ: </emph> እርስዎ መሞከር የሚፈልጉት ማንኛውም ተለዋዋጭ: ይህ ተግባር እውነት ይመልሳል የተለየ የያዘው ዋጋ ባዶ ዋጋ ከሆነ: ወይንም ሀሰት ተለዋዋጭ ባዶ ዋጋ ካልያዘ"
#: 03102600.xhp
msgctxt ""
@@ -25230,7 +25262,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
-msgstr "መግለጫው ቁጥር እንደሆን መሞከሪያ: መግለጫው ከሆነ <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">ቁጥር</link> ተግባር እውነት ይመልሳል: ያለ በለዚያ ተግባር ሀሰት ይመልሳል:"
+msgstr "መግለጫው ቁጥር እንደሆን መሞከሪያ: መግለጫው ከሆነ <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\"> ቁጥር </link> ተግባር እውነት ይመልሳል: ያለ በለዚያ ተግባር ሀሰት ይመልሳል:"
#: 03102700.xhp
msgctxt ""
@@ -25590,7 +25622,7 @@ msgctxt ""
"par_id3153381\n"
"help.text"
msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
-msgstr "<emph>የ ማዘጋጃ ስም:</emph> የ ማዘጋጃ ስም እርስዎ እንዲመልስ የሚፈልጉትን ለ ከፍተኛ ንዑስ ጽሁፍ(<emph> ከፍተኛ ንዑስ ጽሁፍ</emph>) ወይንም ዝቅተኛ (<emph>ዝቅተኛው ንዑስ ጽሁፍ </emph>) ለ ድንበር"
+msgstr "<emph>የ ማዘጋጃ ስም:</emph> የ ማዘጋጃ ስም እርስዎ እንዲመልስ የሚፈልጉትን ለ ከፍተኛ ንዑስ ጽሁፍ(<emph> ከፍተኛ ንዑስ ጽሁፍ </emph>) ወይንም ዝቅተኛ (<emph> ዝቅተኛው ንዑስ ጽሁፍ </emph>) ለ ድንበር"
#: 03103000.xhp
msgctxt ""
@@ -25710,7 +25742,7 @@ msgctxt ""
"par_id3148451\n"
"help.text"
msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
-msgstr "እንደ በርካታ የ BASIC ንግግሮች: ይህ ቁልፍ ቃል <emph>ይሁን</emph> በ ምርጫ ነው"
+msgstr "እንደ በርካታ የ BASIC ንግግሮች: ይህ ቁልፍ ቃል <emph> ይሁን </emph> በ ምርጫ ነው"
#: 03103100.xhp
msgctxt ""
@@ -26694,7 +26726,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">በምርጫ</link>"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\"> በምርጫ </link>"
#: 03104000.xhp
msgctxt ""
@@ -26742,7 +26774,7 @@ msgctxt ""
"par_id3148798\n"
"help.text"
msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "ይህን ይመልከቱ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">ምሳሌዎች</link>."
+msgstr "ይህን ይመልከቱ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\"> ምሳሌዎች </link>"
#: 03104100.xhp
msgctxt ""
@@ -26782,7 +26814,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">አልተገኘም</link>"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\"> አልተገኘም </link>"
#: 03104100.xhp
msgctxt ""
@@ -26830,7 +26862,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "ይህን ይመልከቱ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">ምሳሌዎች</link>."
+msgstr "ይህን ይመልከቱ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\"> ምሳሌዎች </link>"
#: 03104200.xhp
msgctxt ""
@@ -27846,7 +27878,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "' This example inserts quotation marks (ASCII value 34) in a string."
-msgstr "' ይህ ምሳሌ የ ጥቅስ ምልክይ ያስገባል ለ (ASCII ዋጋ 34) በ ሀረግ ውስጥ"
+msgstr "' ይህ ምሳሌ የ ጥቅስ ምልክት ያስገባል ለ (ASCII ዋጋ 34) በ ሀረግ ውስጥ"
#: 03120102.xhp
msgctxt ""
@@ -28054,7 +28086,7 @@ msgctxt ""
"par_id3149670\n"
"help.text"
msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
-msgstr "የ ዋጋ ተግባር በ መጠቀም: እርስዎ መቀየር ይችላሉ ሀረግ ቁጥሮችን የሚወክሉ ወደ ቁጥሮች መግለጫዎች: ይህ ግልባጭ ነው የ <emph>ሀረግ</emph> ተግባር: ሀረግ በ ከፊል ቁጥሮች ከያዘ: የ መጀመሪያው ተገቢ ባህሪዎች የ ሀረጉ ይቀየራሉ: ሀረጉ ምንም ቁጥሮች ካልያዘ: የ <emph>ዋጋ</emph> ተግባር 0 ዋጋ ይመልሳል"
+msgstr "የ ዋጋ ተግባር በ መጠቀም: እርስዎ መቀየር ይችላሉ ሀረግ ቁጥሮችን የሚወክሉ ወደ ቁጥሮች መግለጫዎች: ይህ ግልባጭ ነው የ <emph> ሀረግ </emph> ተግባር: ሀረግ በ ከፊል ቁጥሮች ከያዘ: የ መጀመሪያው ተገቢ ባህሪዎች የ ሀረጉ ይቀየራሉ: ሀረጉ ምንም ቁጥሮች ካልያዘ: የ <emph> ዋጋ </emph> ተግባር 0 ዋጋ ይመልሳል"
#: 03120104.xhp
msgctxt ""
@@ -28230,7 +28262,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "Use the AscW function to replace keys with Unicode values. If the AscW function encounters a blank string, %PRODUCTNAME Basic reports a run-time error. Returned values are between 0 and 65535."
-msgstr ""
+msgstr "ይጠቀሙ የ AscW function ቁልፎች ለ መቀየር በ Unicode ዋጋዎች: ይህ የ AscW function ባዶ ሀረግ ሊያጋጥመው ይችላል: %PRODUCTNAME Basic መግለጫ የ ማስኬጃ-ጊዜ ስህተት: የሚመለሰው ዋጋ በ 0 እና 65535. መካከል ነው"
#: 03120111.xhp
msgctxt ""
@@ -28270,7 +28302,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">ባህሪ</link>"
#: 03120111.xhp
msgctxt ""
@@ -28398,7 +28430,7 @@ msgctxt ""
"par_id3145174\n"
"help.text"
msgid "' The printout appears in the dialog as: From Α to Ω"
-msgstr ""
+msgstr "' ህትመቱ ይታያል በ ንግግር ውስጥ እንደ: ከ A እስከ Ω"
#: 03120112.xhp
msgctxt ""
@@ -28406,7 +28438,7 @@ msgctxt ""
"par_id051920171010491586\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">ባህሪ</link>"
#: 03120112.xhp
msgctxt ""
@@ -28758,7 +28790,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
-msgstr "<emph>አቀራረብ:</emph> ሀረግ የሚወስን የ ኮድ አቀራረብ ለ ቁጥር: ከሆነ <emph>አቀራረብ</emph> ከተተወ: የ ተግባር አቀራረብ የሚሰራው እንደ የ <emph>ሀረግ</emph> ተግባር ነው"
+msgstr "<emph>አቀራረብ: </emph> ሀረግ የሚወስን የ ኮድ አቀራረብ ለ ቁጥር: ከሆነ <emph> አቀራረብ </emph> ከተተወ: የ ተግባር አቀራረብ የሚሰራው እንደ የ <emph> ሀረግ </emph> ተግባር ነው"
#: 03120301.xhp
msgctxt ""
@@ -28854,7 +28886,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
-msgstr "ከሆነ exponent አሉያዊ የ መቀነሻ ምልክት ይታያል በ ቀጥታ ከ exponent በፊት በ E-, E+, e-, e+. ጋር: ከሆነ exponent አዎንታዊ የ መደመሪያ ምልክት ይታያል በ ቀጥታ ከ exponents በፊት ከ E+ or e+. ጋር"
+msgstr "ኤክስፖነንት አሉታዊ ከሆነ የ መቀነሻ ምልክት ይታያል በ ቀጥታ ከ ኤክስፖነንት በፊት በ E-, E+, e-, e+. ጋር: ኤክስፖነንት አዎንታዊ ከሆነ የ መደመሪያ ምልክት ይታያል በ ቀጥታ ከ ኤክስፖነንት በፊት ከ E+ ወይንም e+. ጋር"
#: 03120301.xhp
msgctxt ""
@@ -29046,7 +29078,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "Converts all uppercase letters in a string to lowercase."
-msgstr "መቀየሪያ ሁሉንም የ ላይኛው ጉዳይ ፊደሎች ከ ሀረግ ውስጥ ወደ ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "መቀየሪያ ሁሉንም የ ላይኛው ጉዳይ ፊደሎች ከ ሀረግ ውስጥ ወደ የ ታችኛው ጉዳይ ፊደሎች"
#: 03120302.xhp
msgctxt ""
@@ -29054,7 +29086,7 @@ msgctxt ""
"par_id3154347\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">የ ላይኛው ጉዳይ</link> ተግባር"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\"> የ ላይኛው ጉዳይ </link> ተግባር"
#: 03120302.xhp
msgctxt ""
@@ -29494,7 +29526,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
-msgstr "ይመልሳል የ ተወሰነ መጠን የ ሀረግ መግለጫ (<emph>መሀከል ተግባር</emph>), ወይንም መቀየሪያ የ ሀረግ መግለጫ መጠን በ ሌላ ሀረግ (<emph>መሀከል አረፍተ ነገር </emph>)."
+msgstr "ይመልሳል የ ተወሰነ መጠን የ ሀረግ መግለጫ (<emph> መሀከል ተግባር </emph>), ወይንም መቀየሪያ የ ሀረግ መግለጫ መጠን በ ሌላ ሀረግ (<emph> መሀከል አረፍተ ነገር </emph>)"
#: 03120306.xhp
msgctxt ""
@@ -29638,7 +29670,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">የ ግራ ተግባር</link>."
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\"> የ ግራ ተግባር </link>"
#: 03120307.xhp
msgctxt ""
@@ -29902,7 +29934,7 @@ msgctxt ""
"par_id3153062\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">ቀዳሚ ባዶ ቦታ መከርከሚያ ተግባር</link>"
+msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\"> ቀዳሚ ባዶ ቦታ መከርከሚያ ተግባር </link>"
#: 03120309.xhp
msgctxt ""
@@ -29990,7 +30022,7 @@ msgctxt ""
"par_id3155420\n"
"help.text"
msgid "Converts lowercase characters in a string to uppercase."
-msgstr "መቀየሪያ ሁሉንም የ ታችኛው ጉዳይ ፊደሎች ከ ሀረግ ውስጥ ወደ ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "መቀየሪያ ሁሉንም የ ታችኛው ጉዳይ ፊደሎች ከ ሀረግ ውስጥ ወደ ላይኛው ጉዳይ ፊደሎች"
#: 03120310.xhp
msgctxt ""
@@ -29998,7 +30030,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">የ ታችኛው ጉዳይ ተግባር</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">የ ታችኛው ጉዳይ ተግባር</link>"
#: 03120310.xhp
msgctxt ""
@@ -30894,7 +30926,7 @@ msgctxt ""
"par_id3146796\n"
"help.text"
msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
-msgstr "<emph>ማወዳደሪያ:</emph> ይህ በ ምርጫ ደንብ ማሰናጃ የ ማወዳደሪያ ዘዴ ነው: ከ ተወዳደረ = 1, የ ሀረግ ማወዳደሪያ ፊደል-መመጠኛ ነው: ከ ተወዳደረ = 0, ምንም ልዩነት አይፈጸምም በ አቢይ ፊደል እና በ መደበኛ ፊደሎች መካከል ከ ሌለ"
+msgstr "<emph>ማወዳደሪያ: </emph> ይህ በ ምርጫ ደንብ ማሰናጃ የ ማወዳደሪያ ዘዴ ነው: ከ ተወዳደረ = 1, የ ሀረግ ማወዳደሪያ ፊደል-መመጠኛ ነው: ከ ተወዳደረ = 0, ምንም ልዩነት አይፈጸምም በ ላይኛው ጉዳይ ፊደል እና በ ታችኛው ጉዳይ ፊደሎች መካከል መለያ ከ ሌለ"
#: 03120403.xhp
msgctxt ""
@@ -31238,7 +31270,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "<bookmark_value>የ ቢፕ አረፍተ ነገር</bookmark_value>"
+msgstr "<bookmark_value>የ ቢፕ ድምፅ አረፍተ ነገር</bookmark_value>"
#: 03130100.xhp
msgctxt ""
@@ -32206,7 +32238,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "ይህን ይመልከቱ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">ምሳሌዎች</link>."
+msgstr "ይህን ይመልከቱ <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\"> ምሳሌዎች </link>"
#: 03131800.xhp
msgctxt ""
@@ -32334,7 +32366,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
-msgstr "ሁለቱም የ መጻህፍት ቤት ማጠራቀሚያዎች አሉ በ መተግበሪያ ደረጃ እና በ እያንዳንዱ ሰነድ ውስጥ: በ Basic ሰነድ ውስጥ: የ ሰነዶች መጻህፍት ቤት ማጠራቀሚያዎች ራሱ በራሱ ይጠራል: እርስዎ መጥራት ከ ፈለጉ አለም አቀፍ የ መጻህፍት ቤት ማጠራቀሚያዎች ከ ሰነድ ውስጥ: እርስዎ መጠቀም አለብዎት የ ቁልፍ ቃል <emph>አለም አቀፍ ክልል</emph>."
+msgstr "ሁለቱም የ መጻህፍት ቤት ማጠራቀሚያዎች አሉ በ መተግበሪያ ደረጃ እና በ እያንዳንዱ ሰነድ ውስጥ: በ Basic ሰነድ ውስጥ: የ ሰነዶች መጻህፍት ቤት ማጠራቀሚያዎች ራሱ በራሱ ይጠራል: እርስዎ መጥራት ከ ፈለጉ አለም አቀፍ የ መጻህፍት ቤት ማጠራቀሚያዎች ከ ሰነድ ውስጥ: እርስዎ መጠቀም አለብዎት የ ቁልፍ ቃል <emph> አለም አቀፍ ክልል </emph>"
#: 03131900.xhp
msgctxt ""
@@ -33040,13 +33072,806 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "ይህ ማስኬጃ ጊዜ ተግባር ለ ነባር አካላት ይዞታዎች የሚጠቀሙት: ይህ ግልጋሎት ማስጀመሪያ በ Xበርካታ ግልጋሎት ፋክቶሪ: ይህን ይመልከቱ የ <item type=\"literal\">Professional UNO</item> ምእራፍ በ <item type=\"literal\">አበልጻጊዎች መምሪያ ውስጥ</item> ከ <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> ለ በለጠ መረጃ"
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr "የ DDB ተግባር [ማስኬጃ ጊዜ - VBA]"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>የ DDB ተግባር</bookmark_value>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">የ DDB ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr "በ ተወሰነ ጊዜ ንብረቱ የሚቀንስበትን ይመልሳል በ መጠቀም የ ሂሳብ-መቀነሻ ዘዴ"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>ዋጋ </emph> የ ንብረቱን የ መጀመሪያ ዋጋ ያስተካክላል"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>በ ህይወቱ መጨረሻ ጊዜ </emph> የ ንብረቱ ቀሪ ዋጋ በ ህይወቱ መጨረሻ ጊዜ"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr "<emph>ህይወት </emph> የ ጊዜዎች ቁጥር ነው (ለምሳሌ: ወሮች ወይንም አመቶች) ንብረቱን ምን ያህል ጊዜ እንደ ተጠቀሙበት መግለጫ"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "<emph>ጊዜ </emph> የ እቃው ዋጋ የሚቀንስበት ጊዜ የሚሰላበትን ጊዜ መግለጫ"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr "<emph>ፋክተር </emph> (በ ምርጫ) ዋጋው የሚቀንስበት ፋክተር ነው: ዋጋ ካልገባ: ነባሩ ፋክተር 2 ነው"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr "ይህን የ ንብረቱ የሚቀንስበትን አይነት ይጠቀሙ: እርስዎ ከ ፈለጉ ከፍተኛ መጀመሪያ ዋጋው የሚቀንስበት ዋጋ እንደ ተቃራኒ ዋጋው ለሚቀንስበት: ዋጋው የሚቀንስበት በ እያንዳንዱ ጊዜ ይቀንሳል: እና ብዙ ጊዜ የሚጠቀመው ንብረት ነው ዋጋው የሚቀንስበት ከፍተኛ በ ተገዛ በ አጭር ጊዜ ውስጥ: (ለምሳሌ: መኪና: ኮምፒዩተር). እባክዎን ያስታውሱ የ መጽሀፉ ዋጋ ዜሮ ጋር አይደርስም በ ማስሊያው አይነት"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">የ DDB ተግባር በ ሰንጠረዥ ውስጥ</link>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">የ VBA ገንዘብ ተግባር</link>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr "የ FV ተግባር [ማስኬጃ ጊዜ - VBA]"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>የ FV ተግባር</bookmark_value>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">የ FV ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr "የ ወደፊት ዋጋ ይመልሳል ለ investment መሰረት ባደረገ ጊዜ: የማያቋርጥ ክፍያ: እና የማያቋርጥ የ ወለድ መጠን (የ ወደፊት ዋጋ)"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>መጠን </emph> የ ወለድ መጠን በ ጊዜ ማሰናጃ"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">የ FV ተግባር በ ሰንጠረዥ ውስጥ</link>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">የ VBA ገንዘብ ተግባር</link>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140002.xhp
+#, fuzzy
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>መጠን </emph> የ ወለድ መጠን በ ጊዜ ውስጥ"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr "<emph>ጊዜ </emph> ጊዜ ነው: ኮምፓውንድ ወለድ የሚሰላበት: ጊዜ=የ ክፍያ ጊዜ ቁጥር ነው: ኮምፓውንድ ወለድ ለ መጨረሻ ጊዜ የ ተሰላበት"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "<emph>የ ክፍያ ጊዜ ቁጥር </emph> ጠቅላላ የ ጊዜ ቁጥር ነው: የ አመት ክፍያው የሚካሄድበት"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "<emph>የ አሁኑ ዋጋ </emph> የ አሁኑ ዋጋ ነው በ ገንዘብ ዋጋ የ ክፍያ ቅደም ተከተል"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">የ VBA ገንዘብ ተግባር</link>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr "የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር [ማስኬጃ ጊዜ - VBA]"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr "<bookmark_value>የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር</bookmark_value>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር በ ሰንጠረዥ ውስጥ</link>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">የ VBA ገንዘብ ተግባር</link>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr "የ ተሻሻለው የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር [ማስኬጃ ጊዜ - VBA]"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr "<bookmark_value>የ ተሻሻለው የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር</bookmark_value>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">የ ተሻሻለው የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr "ይህ የሚያሰላው የ ተሻሻለውን የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ይመልሳል ለ ተከታታይ investments"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr "<emph>ዋጋዎች(): </emph> የ ውስጥ መጠን ማስሊያ ለ ካፒታል: ዋጋዎች የሚወክሉት የ ገንዘብ ፍሰት ዋጋዎች ነው በ መደበኛ ክፍተት ውስጥ: ቢያንስ አንዱ ዋጋ አሉታዊ መሆን አለበት (ክፍያዎች) እና ቢያንስ አንዱ ዋጋ አዎንታዊ መሆን አለበት (ገቢ)"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr "<emph>Investment</emph> የ ወለድ መጠን ነው ለ Investment (የ አሉታዊ ዋጋዎች ማዘጋጃ)"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>መጠን </emph> የ ወለድ መጠን በ ጊዜ ውስጥ"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>ክፍያ </emph> በየጊዜው የሚከፈለው የ አመቱ ክፍያ ነው"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr "<emph>የ አሁን ዋጋ </emph> የ (አሁኑ) የ ገንዘብ ዋጋ ነው ለ investment."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">የ VBA ገንዘብ ተግባር</link>"
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
"tit\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 05060700.xhp
msgctxt ""
@@ -33062,7 +33887,7 @@ msgctxt ""
"hd_id3153894\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">ማክሮስ</link>"
#: 05060700.xhp
msgctxt ""
@@ -33070,7 +33895,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
-msgstr "<ahelp hid=\".\">ይምረጡ macro እርስዎ መፈጸም የሚፈልጉትን የ ተመረጠው ንድፍ: ክፈፍ: የ OLE እቃ በሚመረጥበት ጊዜ </ahelp> እንደ ተመረጠው እቃ አይነት: ተግባሩ ይገኛል በ <emph>Macro</emph> tab በ <emph>እቃ</emph> ንግግር ውስጥ: ወይንም በ <emph> Macro መመደቢያ</emph> ንግግር ውስጥ"
+msgstr "<ahelp hid=\".\">ይምረጡ macro እርስዎ መፈጸም የሚፈልጉትን የ ተመረጠው ንድፍ: ክፈፍ: የ OLE እቃ በሚመረጥበት ጊዜ </ahelp> እንደ ተመረጠው እቃ አይነት: ተግባሩ ይገኛል በ <emph> ማክሮስ </emph> tab በ <emph> እቃ </emph> ንግግር ውስጥ: ወይንም በ <emph> ማክሮስ መመደቢያ </emph> ንግግር ውስጥ"
#: 05060700.xhp
msgctxt ""
@@ -33086,7 +33911,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">የ ሁኔታዎች ዝርዝር አግባብ ያለው ከ macros ጋር አሁን ከ ተመደበው ከ ተመረጠው እቃ ጋር </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">የ ሁኔታዎች ዝርዝር አገባብ ያለው ከ ማክሮስ ጋር አሁን ከ ተመደበው ከ ተመረጠው እቃ ጋር ነው </ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -33094,7 +33919,7 @@ msgctxt ""
"par_id3150670\n"
"help.text"
msgid "The following table describes the macros and the events that can by linked to objects in your document:"
-msgstr "የሚቀጥለው ሰንጠረዥ የሚገልጸው የ macros እና ሁኔታዎች ሊገናኝ የሚችል ከ እቃዎች ጋር በ ሰነድ ውስጥ:"
+msgstr "የሚቀጥለው ሰንጠረዥ የሚገልጸው የ ማክሮስ እና ሁኔታዎች ሊገናኝ የሚችል ከ እቃዎች ጋር በ ሰነድ ውስጥ:"
#: 05060700.xhp
msgctxt ""
@@ -33582,7 +34407,7 @@ msgctxt ""
"hd_id3153958\n"
"help.text"
msgid "Macros"
-msgstr "Macros"
+msgstr "ማክሮስ"
#: 05060700.xhp
msgctxt ""
@@ -33590,7 +34415,7 @@ msgctxt ""
"par_id3150432\n"
"help.text"
msgid "Choose the macro that you want to execute when the selected event occurs."
-msgstr "ይምረጡ macro እርስዎ መፈጸም የሚፈልጉትን የ ተመረጠው ሁኔታ ሲፈጸም"
+msgstr "ይምረጡ ማክሮስ እርስዎ መፈጸም የሚፈልጉትን የ ተመረጠው ሁኔታ ሲፈጸም"
#: 05060700.xhp
msgctxt ""
@@ -33614,7 +34439,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">ዝርዝር የ ተከፈቱ $[officename] ሰነዶች እና መተግበሪያዎች: ይጫኑ በ ካባቢው ስም ላይ እርስዎ macros ማስቀመጥ በሚፈልጉበት ቦታ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">ዝርዝር የ ተከፈቱ $[officename] ሰነዶች እና መተግበሪያዎች: ይጫኑ በ ካባቢው ስም ላይ እርስዎ ማክሮስ ማስቀመጥ በሚፈልጉበት ቦታ </ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -33622,7 +34447,7 @@ msgctxt ""
"hd_id3149744\n"
"help.text"
msgid "Macro name"
-msgstr "የ Macro ስም"
+msgstr "የ ማክሮስ ስም"
#: 05060700.xhp
msgctxt ""
@@ -33630,7 +34455,7 @@ msgctxt ""
"par_id3151391\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/macros\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">ዝግጁ የሆኑ የ macros ዝርዝሮች: ይጫኑ በ macro ላይ እርስዎ በ ተመረጠው እቃ ላይ መመደብ የሚፈልጉትን </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">ዝግጁ የሆኑ የ ማክሮስ ዝርዝሮች: ይጫኑ በ ማክሮስ ላይ እርስዎ በ ተመረጠው እቃ ላይ መመደብ የሚፈልጉትን </ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -33646,7 +34471,7 @@ msgctxt ""
"par_id3147406\n"
"help.text"
msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
-msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">የ ተመረጠውን macro መመደቢያ ለ ተመረጠው ሁኔታ </ahelp> የ ተመደበው macro's ማስገቢያ ከ ሁኔታው በኋላ ይሰናዳል"
+msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">የ ተመረጠውን ማክሮስ መመደቢያ ለ ተመረጠው ሁኔታ </ahelp> የ ተመደበው ማክሮስ's ማስገቢያ ከ ሁኔታው በኋላ ይሰናዳል"
#: 05060700.xhp
msgctxt ""
@@ -33662,7 +34487,7 @@ msgctxt ""
"par_id3166456\n"
"help.text"
msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
-msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">ለ ተመረጠው እቃ የ ተመደበውን macro ማስወገጃ </ahelp></variable>"
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">ለ ተመረጠው እቃ የ ተመደበውን ማክሮስ ማስወገጃ </ahelp></variable>"
#: 05060700.xhp
msgctxt ""
@@ -33670,7 +34495,7 @@ msgctxt ""
"hd_id3159126\n"
"help.text"
msgid "Macro selection"
-msgstr "የ Macro ምርጫ"
+msgstr "የ ማክሮስ ምርጫ"
#: 05060700.xhp
msgctxt ""
@@ -33678,7 +34503,7 @@ msgctxt ""
"par_id3149149\n"
"help.text"
msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">እርስዎ መመደብ የሚፈልጉትን macro ይምረጡ </ahelp>"
+msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">እርስዎ መመደብ የሚፈልጉትን ማክሮስ ይምረጡ </ahelp>"
#: code-stubs.xhp
msgctxt ""
@@ -33854,7 +34679,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
-msgstr "እየሄደ ያለ የ macro ማቋረጥ ይቻላል በ Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, እንዲሁም ከ ውጪ በ Basic IDE. እርስዎ ውስጥ ከሆኑ በ Basic IDE እና በ macro ካስቆሙ በ መጨረሻ ነጥብ ላይ: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q macro መፈጸሚያ ያስቆማል: ነገር ግን እርስዎ ይህን ያስታውሱ ከሚቀጥለው በፊት F5, F8, ወይንም Shift+F8."
+msgstr "እየሄደ ያለ የ ማክሮስ ማቋረጥ ይቻላል በ Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, እንዲሁም ከ ውጪ በ Basic IDE. እርስዎ ውስጥ ከሆኑ በ Basic IDE እና በ ማክሮስ ካስቆሙ በ መጨረሻ ነጥብ ላይ: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q ማክሮስ መፈጸሚያ ያስቆማል: ነገር ግን እርስዎ ይህን ያስታውሱ ከሚቀጥለው በፊት F5, F8, ወይንም Shift+F8."
#: main0211.xhp
msgctxt ""
@@ -33862,7 +34687,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macro Toolbar"
-msgstr "የ Macro እቃ መደርደሪያ"
+msgstr "የ ማክሮስ እቃ መደርደሪያ"
#: main0211.xhp
msgctxt ""
@@ -33870,7 +34695,7 @@ msgctxt ""
"bm_id3150543\n"
"help.text"
msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
-msgstr "<bookmark_value>እቃ መደርደሪያ: የ Basic IDE</bookmark_value><bookmark_value>macro እቃ መደርደሪያ</bookmark_value>"
+msgstr "<bookmark_value>እቃ መደርደሪያ: የ Basic IDE</bookmark_value><bookmark_value>የ ማክሮስ እቃ መደርደሪያ</bookmark_value>"
#: main0211.xhp
msgctxt ""
@@ -33878,7 +34703,7 @@ msgctxt ""
"hd_id3150543\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
-msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">የ Macro እቃ መደርደሪያ</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">የ ማክሮስ እቃ መደርደሪያ</link>"
#: main0211.xhp
msgctxt ""
@@ -33886,7 +34711,7 @@ msgctxt ""
"par_id3147288\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">የ <emph>Macro እቃ መደርደሪያ </emph>ትእዛዝ ይዟል ለ መፍጠር: ማረሚያ: እና macros ማስኬጃ </ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">የ <emph> ማክሮስ እቃ መደርደሪያ </emph> ትእዛዝ ይዟል ለ መፍጠር: ማረሚያ: እና ማክሮስ ማስኬጃ </ahelp>"
#: main0601.xhp
msgctxt ""
@@ -33934,7 +34759,7 @@ msgctxt ""
"hd_id05182017030838384\n"
"help.text"
msgid "Working with VBA Macros"
-msgstr "በ VBA Macros መስሪያ"
+msgstr "በ VBA ማክሮስ መስሪያ"
#: main0601.xhp
msgctxt ""
@@ -34086,7 +34911,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Support for VBA Macros"
-msgstr "ድጋፍ ለ VBA Macros"
+msgstr "ድጋፍ ለ VBA ማክሮስ"
#: vbasupport.xhp
msgctxt ""
@@ -34110,7 +34935,7 @@ msgctxt ""
"par_id051720170332428854\n"
"help.text"
msgid "Support for VBA is not complete, but it covers a large portion of the common usage patterns. Most macros use a manageable subset of objects in the Excel API (such as the Range, Worksheet, Workbook, etc.) and the support include those objects, and the most commonly used method/properties of those objects."
-msgstr "የ VBA ድጋፍ ሙሉ አይደለም: ነገር ግን ከፍተኛ መጠን ይሸፍናል: ለ መደበኛ መጠቀሚያ ድግግሞሽ: በርካታ macros የሚጠቀመው መቆጣጠሪያ ንዑስ ስብስብ ነው ለ እቃዎች በ Excel API (እንደ መጠን ያሉ: Worksheet, Workbook, ወዘተ) እና የሚደግፈው እነዚህን እቃዎች ያካትታል: እና ብዙ ጊዜ የሚጠቀሙበትን ዘዴ/ባህሪዎች ለ እነዚህ እቃዎች"
+msgstr "የ VBA ድጋፍ ሙሉ አይደለም: ነገር ግን ከፍተኛ መጠን ይሸፍናል: ለ መደበኛ መጠቀሚያ ድግግሞሽ: በርካታ ማክሮስ የሚጠቀመው መቆጣጠሪያ ንዑስ ስብስብ ነው ለ እቃዎች በ Excel API (እንደ መጠን ያሉ: Worksheet, Workbook, ወዘተ) እና የሚደግፈው እነዚህን እቃዎች ያካትታል: እና ብዙ ጊዜ የሚጠቀሙበትን ዘዴ/ባህሪዎች ለ እነዚህ እቃዎች"
#: vbasupport.xhp
msgctxt ""
@@ -34118,7 +34943,7 @@ msgctxt ""
"hd_id051720170350145604\n"
"help.text"
msgid "Loading Microsoft Office documents with executable VBA macros"
-msgstr "በ መጫን ላይ የ Microsoft Office ሰነዶች ሊፈጸም የሚችል የ VBA macros"
+msgstr "በ መጫን ላይ የ Microsoft Office ሰነዶች ሊፈጸም የሚችል የ VBA ማክሮስ"
#: vbasupport.xhp
msgctxt ""
@@ -34134,7 +34959,7 @@ msgctxt ""
"hd_id051720170400536628\n"
"help.text"
msgid "Runing VBA Macros"
-msgstr "የ VBA Macros ማስኬጃ"
+msgstr "የ VBA ማክሮስ ማስኬጃ"
#: vbasupport.xhp
msgctxt ""
@@ -34142,7 +34967,7 @@ msgctxt ""
"par_id051720170400539565\n"
"help.text"
msgid "Run VBA macros in the same way as %PRODUCTNAME Basic macros."
-msgstr "VBA macros ማስኬጃ በ ተመሳሳይ መንገድ እንደ %PRODUCTNAME Basic macros."
+msgstr "VBA ማክሮስ ማስኬጃ በ ተመሳሳይ መንገድ እንደ %PRODUCTNAME Basic ማክሮስ"
#: vbasupport.xhp
msgctxt ""
@@ -34158,7 +34983,7 @@ msgctxt ""
"hd_id051720170400533411\n"
"help.text"
msgid "Editing VBA Macros"
-msgstr "የ VBA Macros ማረሚያ"
+msgstr "የ VBA ማክሮስ ማረሚያ"
#: vbasupport.xhp
msgctxt ""
@@ -34166,7 +34991,7 @@ msgctxt ""
"par_id051720170400532486\n"
"help.text"
msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
-msgstr ""
+msgstr "የ VBA ማክሮስ ማረም ይችላል በ %PRODUCTNAME Basic IDE."
#: vbasupport.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/01.po b/source/am/helpcontent2/source/text/sbasic/shared/01.po
index 98c49b915d1..1cb8e1ae164 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-06 14:49+0000\n"
+"PO-Revision-Date: 2017-06-18 15:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496760585.000000\n"
+"X-POOTLE-MTIME: 1497799806.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 06130000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3145786\n"
"help.text"
msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
-msgstr "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ: Basic IDE</bookmark_value><bookmark_value>Basic IDE: ማክሮስ</bookmark_value>"
#: 06130000.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"hd_id3145786\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 06130000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3152886\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
-msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">መክፈቻ የ <emph>Macro </emph>ንግግር መፍጠሪያ ማረሚያ ማደራጃ እና ማስኬጃ $[officename] Basic macros.</ahelp></variable>"
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">መክፈቻ የ <emph> ማክሮስ </emph> ንግግር መፍጠሪያ ማረሚያ ማደራጃ እና ማስኬጃ $[officename] Basic ማክሮስ </ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id3154145\n"
"help.text"
msgid "Macro name"
-msgstr "የ Macro ስም"
+msgstr "የ ማክሮስ ስም"
#: 06130000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3151116\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">የተመረጠውን macro ስም ማሳያ: የ macro ስም ለመፍጠር ወይንም ለመቀየር ስም እዚህ ያስገቡ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">የተመረጠውን ማክሮስ ስም ማሳያ: የ ማክሮስ ስም ለ መፍጠር ወይንም ለ መቀየር ስም እዚህ ያስገቡ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"hd_id3153729\n"
"help.text"
msgid "Macro from / Save macro in"
-msgstr "Macro ከ / ማስቀመጫ macro በ"
+msgstr "ማክሮስ ከ / ማስቀመጫ ማክሮስ በ"
#: 06130000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3153190\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">የ መጻህፍት ቤት እና ክፍሎች ዝርዝር የ እርስዎን macros መክፈት እና ማስቀመጥ የሚችሉበት: macro ለማስቀመጥ በ ተወሰነ ሰነድ ውስጥ: ሰነዱን ይክፈቱ እና ከዛ ይህን ንግግር ይክፈቱ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">የ መጻህፍት ቤት እና ክፍሎች ዝርዝር የ እርስዎን ማክሮስ መክፈት እና ማስቀመጥ የሚችሉበት: ማክሮስ ለማስቀመጥ በ ተወሰነ ሰነድ ውስጥ: ሰነዱን ይክፈቱ እና ከዛ ይህን ንግግር ይክፈቱ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3154791\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">የ አሁኑን macro ያስኬዳል ወይንም ያስቀምጣል</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">የ አሁኑን ማክሮስ ያስኬዳል ወይንም ያስቀምጣል </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3149961\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">መክፈቻ የ ማስተካከያ ንግግር: እርስዎ የ ተመረጠውን macro ወደ ዝርዝር ትእዛዝ የሚመድቡበት: እቃ መደርደሪያ ወይንም ሁኔታ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">መክፈቻ የ ማስተካከያ ንግግር: እርስዎ የ ተመረጠውን ማክሮስ ወደ ዝርዝር ትእዛዝ የሚመድቡበት: እቃ መደርደሪያ ወይንም ሁኔታ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_id3147127\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">ማስጀመሪያ የ $[officename] Basic editor እና የ ተመረጠውን macro መክፈቻ እና ማረሚያ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">ማስጀመሪያ የ $[officename] Basic ማረሚያ እና የ ተመረጠውን ማክሮስ መክፈቻ እና ማረሚያ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">አዲስ macro መፍጠሪያ ወይንም የተመረጠውን macro ማጥፊያ </ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">አዲስ ማክሮስ መፍጠሪያ ወይንም የተመረጠውን ማክሮስ ማጥፊያ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3149124\n"
"help.text"
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
-msgstr "አዲስ macro ለመፍጠር ይምረጡ ከ \"መደበኛ\" ክፍል ውስጥ ከ <emph>Macro ከ </emph> ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph> አዲስ </emph>"
+msgstr "አዲስ ማክሮስ ለ መፍጠር ይምረጡ ከ \"መደበኛ\" ክፍል ውስጥ ከ <emph> ማክሮስ ከ </emph> ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph> አዲስ </emph>"
#: 06130000.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
-msgstr "macro ለማጥፋት ይምረጡት እና ከዛ ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ማክሮስ ለማጥፋት ይምረጡት እና ከዛ ይጫኑ <emph> ማጥፊያ </emph>"
#: 06130000.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id3148405\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">መክፈቻ የ <emph>Macro Organizer</emph> ንግግር መጨመሪያ ማረሚያ ወይንም ማጥፊያ የ ነበረውን macro ክፍሎች: ንግግሮች እና መጻህፍት ቤቶች</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">መክፈቻ የ <emph> ማክሮስ ማደራጃ </emph> ንግግር መጨመሪያ ማረሚያ ወይንም ማጥፊያ የ ነበረውን ማክሮስ ክፍሎች: ንግግሮች እና መጻህፍት ቤቶች </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">Lists the existing macros and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">የ ነበሩ macros እና ንግግሮች ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">የ ነበሩ ማክሮስ እና ንግግሮች ዝርዝር </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3149816\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">Opens the selected macro or dialog for editing.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">መክፈቻ የተመረጠውን macro ወይንም ንግግር ለ ማረሚያ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">መክፈቻ የተመረጠውን ማክሮስ ወይንም ንግግር ለ ማረሚያ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3153705\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">Lets you manage the macro libraries.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">እርስዎን የ macro መጻህፍት ቤት ማስተዳደር ያስችሎታል</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/newdialog\">እርስዎን የ ማክሮስ መጻህፍት ቤት ማስተዳደር ያስችሎታል </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3153234\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">Select the location containing the macro libraries that you want to organize.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">የ macro መጻህፍት ቤትን የያዘውን አካባቢ ይምረጡ ማደራጀት እንዲችሉ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">የ ማክሮስ መጻህፍት ቤትን የያዘውን አካባቢ ይምረጡ ማደራጀት እንዲችሉ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3150828\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">Lists the macro libraries in the chosen location.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">በተመረጠው አካባቢ የ macro መጻህፍት ቤትን ዝርዝር ያሳያል</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">በ ተመረጠው አካባቢ የ ማክሮስ መጻህፍት ቤትን ዝርዝር ያሳያል </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3166430\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">መመደቢያ ወይንም ማረሚያ የ <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">መግቢያ ቃል</link> ለተመረጠው መጻህፍት ቤት \"መደበኛ\" መጻህፍት ቤት የ መግቢያ ቃል አይኖረውም</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">መመደቢያ ወይንም ማረሚያ የ <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\"> መግቢያ ቃል </link> ለተመረጠው መጻህፍት ቤት \"መደበኛ\" መጻህፍት ቤት የ መግቢያ ቃል አይኖረውም </ahelp>"
#: 06130000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/02.po b/source/am/helpcontent2/source/text/sbasic/shared/02.po
index 37ee266661e..51b5eaa893f 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-04 18:13+0000\n"
+"PO-Revision-Date: 2017-06-18 15:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496599994.000000\n"
+"X-POOTLE-MTIME: 1497800315.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
-msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">መሰረታዊ macro ማሰናጃ </ahelp> እርስዎ macro ማዘጋጀት አለብዎት ለውጥ ከ ፈጸሙ በኋላ: ወይንም macro ይጠቀም እንደሆን ነጠላ ወይንም የ አሰራር ደረጃዎች"
+msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">መሰረታዊ ማክሮስ ማሰናጃ </ahelp> እርስዎ ማክሮስ ማዘጋጀት አለብዎት ለውጥ ከ ፈጸሙ በኋላ: ወይንም ማክሮስ ይጠቀም እንደሆን ነጠላ ወይንም የ አሰራር ደረጃዎች"
#: 11020000.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
-msgstr "<ahelp hid=\".uno:RunBasic\">የ መጀመሪያውን macro ማስኬጃ በ አሁኑ ክፍል ውስጥ</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">የ መጀመሪያውን ማክሮስ ማስኬጃ በ አሁኑ ክፍል ውስጥ </ahelp>"
#: 11030000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"bm_id3154863\n"
"help.text"
msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
-msgstr "<bookmark_value>macros; ማስቆሚያ</bookmark_value><bookmark_value>ፕሮግራም ማስቆሚያ</bookmark_value><bookmark_value>ማስቆሚያ macros</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ: ማስቆሚያ</bookmark_value><bookmark_value>ፕሮግራም ማስቆሚያ</bookmark_value><bookmark_value>ማስቆሚያ ማክሮስ</bookmark_value>"
#: 11040000.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
-msgstr "<ahelp hid=\".uno:BasicStop\">አሁን እየሄደ ያለውን macro ማስቆሚያ</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> እንዲሁም መጫን ይችላሉ Shift+Ctrl+Q.</defaultinline></switchinline>"
+msgstr "<ahelp hid=\".uno:BasicStop\">አሁን እየሄደ ያለውን ማክሮስ ማስቆሚያ </ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> እንዲሁም መጫን ይችላሉ Shift+Ctrl+Q.</defaultinline></switchinline>"
#: 11040000.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3146117\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepInto\">macro ማስኬጃ እና ማስቆሚያ ከሚቀጥለው ትእዛዝ በኋላ</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepInto\">ማክሮስ ማስኬጃ እና ማስቆሚያ ከሚቀጥለው ትእዛዝ በኋላ </ahelp>"
#: 11050000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3152363\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepOver\">macro ማስኬጃ እና ማስቆሚያ ከሚቀጥለው ሂደት በኋላ</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOver\">ማክሮስ ማስኬጃ እና ማስቆሚያ ከሚቀጥለው ሂደት በኋላ </ahelp>"
#: 11060000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3093440\n"
"help.text"
msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
-msgstr "<ahelp hid=\".uno:AddWatch\">ይጫኑ ይህን ምልክት ለ መመልከት ተለዋዋጭ macro. ይህ የ ተለዋዋጭ ይዞታ የሚታየው በ ተለየ መስኮት ውስጥ ነው </ahelp>"
+msgstr "<ahelp hid=\".uno:AddWatch\">ይጫኑ ይህን ምልክት ለ መመልከት ተለዋዋጭ ማክሮስ: ይህ የ ተለዋዋጭ ይዞታ የሚታየው በ ተለየ መስኮት ውስጥ ነው </ahelp>"
#: 11080000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3159158\n"
"help.text"
msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
-msgstr "ተለዋዋጭ መመልከቻ ለማስወገድ: ይምረጡ ተለዋዋጭ ከ መመልከቻ መስኮት ውስጥ እና ከዛ ይጫኑ የ <emph>መመልከቻ ማስወገጃ</emph> ምልክት"
+msgstr "ተለዋዋጭ መመልከቻ ለማስወገድ: ይምረጡ ተለዋዋጭ ከ መመልከቻ መስኮት ውስጥ እና ከዛ ይጫኑ የ <emph> መመልከቻ ማስወገጃ </emph> ምልክት"
#: 11090000.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">የ አሁኑን ቅደም ተከተል ማሳያ $[officename] macro መጻህፍት ቤት: ክፍሎች: እና ንግግሮች: የ እቃ ይዞታዎችን በ መስኮት ውስጥ ለማሳየት: ሁለት ጊዜ ይጫኑ በ ስሙ ላይ</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">የ አሁኑን ቅደም ተከተል ማሳያ $[officename] ማክሮስ መጻህፍት ቤት: ክፍሎች: እና ንግግሮች: የ እቃ ይዞታዎችን በ መስኮት ውስጥ ለማሳየት: ሁለት ጊዜ ይጫኑ በ ስሙ ላይ </ahelp>"
#: 11100000.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macros"
-msgstr "Macros"
+msgstr "ማክሮስ"
#: 11100000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"hd_id3156183\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">ማክሮስ</link>"
#: 11100000.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">መክፈቻ የ <emph>Macro</emph> ንግግር</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">መክፈቻ የ <emph> ማክሮስ </emph> ንግግር </ahelp>"
#: 11100000.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3153542\n"
"help.text"
msgid "Macros"
-msgstr "Macros"
+msgstr "ማክሮስ"
#: 11110000.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3156414\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">እዚህ ይጫኑ ለመክፈት የ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> ንግግር</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">እዚህ ይጫኑ ለ መክፈት የ <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph> ማክሮስ ማደራጃ </emph></link> ንግግር </ahelp>"
#: 11110000.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id3147261\n"
"help.text"
msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:SaveBasicAs\">የ ኮድ ምንጭ ማስቀመጫ ለ ተመረጠው Basic macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveBasicAs\">የ ኮድ ምንጭ ማስቀመጫ ለ ተመረጠው Basic ማክሮስ </ahelp>"
#: 11150000.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3157898\n"
"help.text"
msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">መዝለያ ወዳለፈው ሁኔታ በ አሁኑ macro ውስጥ </ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">መዝለያ ወዳለፈው ሁኔታ በ አሁኑ ማክሮስ ውስጥ </ahelp>"
#: 11160000.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3147000\n"
"help.text"
msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChooseControls\">መክፈቻ የ <emph>እቃ ሳጥን</emph> መደርደሪያ</ahelp>"
+msgstr "<ahelp hid=\".uno:ChooseControls\">መክፈቻ የ <emph> እቃ ሳጥን </emph> መደርደሪያ </ahelp>"
#: 20000000.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
-msgstr "በ ማረሚያ ዘዴ ውስጥ በ ቀኝ-መጫን ይችላሉ መቆጣጠሪያውን እና ይምረጡ መቁረጫ፡ ኮፒ ማድረጊያ እና መለጠፊያ ትእዛዝ"
+msgstr "በ ማረሚያ ዘዴ ውስጥ በ ቀኝ-መጫን ይችላሉ መቆጣጠሪያውን እና ይምረጡ መቁረጫ: ኮፒ ማድረጊያ እና መለጠፊያ ትእዛዝ"
#: 20000000.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_id3154199\n"
"help.text"
msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
-msgstr "<ahelp hid=\".uno:Combobox\">መቀላቀያ ሳጥን መጨመሪያ: መቀላቀያ ሳጥን አንድ መስመር የ ዝርዝር ሳጥን ነው ተጠቃሚው በ መጫን: እና ማስገቢያ የሚመርጥበት ከ ዝርዝር ውስጥ</ahelp> እርስዎ ከ ፈለጉ: ማስገባት ይችላሉ በ መቀላቀያ ሳጥን ውስጥ \"ለንባብ ብቻ\""
+msgstr "<ahelp hid=\".uno:Combobox\">መቀላቀያ ሳጥን መጨመሪያ: መቀላቀያ ሳጥን አንድ መስመር የ ዝርዝር ሳጥን ነው ተጠቃሚው በ መጫን: እና ማስገቢያ የሚመርጥበት ከ ዝርዝር ውስጥ </ahelp> እርስዎ ከ ፈለጉ: ማስገባት ይችላሉ በ መቀላቀያ ሳጥን ውስጥ \"ለንባብ ብቻ\""
#: 20000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc.po b/source/am/helpcontent2/source/text/scalc.po
index 3b0309ce949..a5e11be3725 100644
--- a/source/am/helpcontent2/source/text/scalc.po
+++ b/source/am/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 23:42+0000\n"
+"PO-Revision-Date: 2017-06-18 15:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496533321.000000\n"
+"X-POOTLE-MTIME: 1497800328.000000\n"
#: main0000.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3152576\n"
"help.text"
msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
-msgstr "እርስዎ መፍጠር እና መመደብ ይችላሉ macros እና ማዋቀር የሚታየውን እና የሚሰማውን የ እቃ መደርደሪያውን: ዝርዝሮች: የ ፊደል ገበታ: እና ነባር ምርጫ ማሰናጃ ለ $[officename] መተግበሪያዎች"
+msgstr "እርስዎ መፍጠር እና መመደብ ይችላሉ ማክሮስ እና ማዋቀር የሚታየውን እና የሚሰማውን የ እቃ መደርደሪያውን: ዝርዝሮች: የ ፊደል ገበታ: እና ነባር ምርጫ ማሰናጃ ለ $[officename] መተግበሪያዎች"
#: main0106.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">የ <emph> መሳያ እቃ ባህሪዎች </emph> መደርደሪያ በ ወረቀቱ ላይ የ ተመረጠው የያዘው አቀራረብ እና ማሰለፊያ ትእዛዞች ነው</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">የ <emph> መሳያ እቃ ባህሪዎች </emph> መደርደሪያ በ ወረቀቱ ላይ የ ተመረጠው የያዘው አቀራረብ እና ማሰለፊያ ትእዛዞች ነው </ahelp>"
#: main0203.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"par_id0821200911024344\n"
"help.text"
msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr "ይህን ይመልከቱ <link href=\"text/shared/guide/digital_signatures.xhp\">የ ዲጂታል ፊርማዎች</link>."
+msgstr "ይህን ይመልከቱ <link href=\"text/shared/guide/digital_signatures.xhp\"> የ ዲጂታል ፊርማዎች </link>"
#: main0210.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id460828\n"
"help.text"
msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen</emph> button."
-msgstr "ዝርዝር እና እቃ መደርደሪያ መደበቂያ: ከ ሙሉ መመልከቻው ዘዴ ለ መውጣት ይጫኑ የ <emph>በ ሙሉ መመልከቻው</emph> ቁልፍ"
+msgstr "ዝርዝር እና እቃ መደርደሪያ መደበቂያ: ከ ሙሉ መመልከቻው ዘዴ ለ መውጣት ይጫኑ የ <emph> በ ሙሉ መመልከቻው </emph> ቁልፍ"
#: main0210.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index 7c229b0519e..08928d2d60d 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-04 22:12+0000\n"
+"PO-Revision-Date: 2017-06-18 22:15+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496614352.000000\n"
+"X-POOTLE-MTIME: 1497824113.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "<variable id=\"bkopfzeile\">Choose <emph>Insert - Headers and Footers - Header and Footer</emph> tabs</variable>"
-msgstr "<variable id=\"bkopfzeile\">ይምረጡ <emph>ማረሚያ - ራስጌ እና ግርጌ - ራስጌ እና ግርጌ</emph> tabs</variable>"
+msgstr "<variable id=\"bkopfzeile\">ይምረጡ <emph> ማረሚያ - ራስጌ እና ግርጌ - ራስጌ እና ግርጌ </emph> tabs</variable>"
#: 00000402.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3153269\n"
"help.text"
msgid "On <emph>Formula Bar</emph>, click"
-msgstr "በ <emph>መቀመሪያ መደርደሪያ</emph> ይጫኑ"
+msgstr "በ <emph> መቀመሪያ መደርደሪያ </emph> ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3150109\n"
"help.text"
msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
-msgstr "<variable id=\"eikamatrix\"><emph>ማስገቢያ - ተግባር</emph> - ምድብ <emph>ማዘጋጃ</emph></variable>"
+msgstr "<variable id=\"eikamatrix\"><emph>ማስገቢያ - ተግባር</emph> - ምድብ <emph> ማዘጋጃ </emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3146776\n"
"help.text"
msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External data</emph></variable>"
-msgstr "<variable id=\"eiextdata\"> ይምረጡ <emph> ወረቀት - ወደ ውጪ ዳታ አገናኝ</emph></variable>"
+msgstr "<variable id=\"eiextdata\"> ይምረጡ <emph> ወረቀት - ወደ ውጪ ዳታ አገናኝ </emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
-msgstr "<variable id=\"fozei\">ይምረጡ <emph> አቀራረብ - ረድፍ</emph></variable>"
+msgstr "<variable id=\"fozei\">ይምረጡ <emph> አቀራረብ - ረድፍ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3145252\n"
"help.text"
msgid "Choose <emph>Format - Column - Optimal Width</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - አምድ - አጥጋቢ ስፋት</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - አምድ - አጥጋቢ ስፋት </emph>"
#: 00000405.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph> </variable>"
-msgstr "<variable id=\"exdszne\">ይምረጡ <emph> መሳሪያዎች- መርማሪ - ጥገኞች ማስወገጃ</emph></variable>"
+msgstr "<variable id=\"exdszne\">ይምረጡ <emph> መሳሪያዎች- መርማሪ - ጥገኞች ማስወገጃ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3154014\n"
"help.text"
msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph> </variable>"
-msgstr "<variable id=\"exdase\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ሁሉንም ፍንጭ ማስወገጃ</emph></variable>"
+msgstr "<variable id=\"exdase\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ሁሉንም ፍንጭ ማስወገጃ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph> </variable>"
-msgstr "<variable id=\"exdszfe\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ስህተት ፈልጎ ማግኛ</emph></variable>"
+msgstr "<variable id=\"exdszfe\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ስህተት ፈልጎ ማግኛ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph> </variable>"
-msgstr "<variable id=\"fuellmodus\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - መሙያ ዘዴ</emph></variable>"
+msgstr "<variable id=\"fuellmodus\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - መሙያ ዘዴ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3156284\n"
"help.text"
msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph> </variable>"
-msgstr "<variable id=\"dateneinkreisen\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ዋጋ የሌለው ዳታ ምልክት ማድረጊያ</emph></variable>"
+msgstr "<variable id=\"dateneinkreisen\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ዋጋ የሌለው ዳታ ምልክት ማድረጊያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3153159\n"
"help.text"
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph> </variable>"
-msgstr "<variable id=\"spurenaktualisieren\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ፈልጎ ማግኛ ማነቃቂያ</emph></variable>"
+msgstr "<variable id=\"spurenaktualisieren\">ይምረጡ <emph> መሳሪያዎች - መርማሪ - ፈልጎ ማግኛ ማነቃቂያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph> </variable>"
-msgstr "<variable id=\"automatisch\">ይምረጡ <emph> መሳሪያዎች- መርማሪ - በራሱ ማነቃቂያ</emph></variable>"
+msgstr "<variable id=\"automatisch\">ይምረጡ <emph> መሳሪያዎች- መርማሪ - በራሱ ማነቃቂያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3151276\n"
"help.text"
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - AutoInput</emph> </variable>"
-msgstr "<variable id=\"autoeingabe\">ይምረጡ <emph> መሳሪያዎች - በራሱ ማስገቢያ</emph></variable>"
+msgstr "<variable id=\"autoeingabe\">ይምረጡ <emph> መሳሪያዎች - በራሱ ማስገቢያ </emph></variable>"
#: 00000407.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
-msgstr "<variable id=\"dnftr\">ይምረጡ <emph>ዳታ - ማጣሪያ</emph></variable>"
+msgstr "<variable id=\"dnftr\">ይምረጡ <emph> ዳታ - ማጣሪያ </emph></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3148646\n"
"help.text"
msgid "Choose <emph>Data - AutoFilter</emph>"
-msgstr "ይምረጡ <emph>ዳታ - በራሱ ማጣሪያ</emph>"
+msgstr "ይምረጡ <emph> ዳታ - በራሱ ማጣሪያ </emph>"
#: 00000412.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3156278\n"
"help.text"
msgid "<variable id=\"dnfspz\">Choose <emph>Data - More Filters - Advanced Filter...</emph></variable>"
-msgstr "<variable id=\"dnfspz\">ይምረጡ <emph>ዳታ - ተጨማሪ ማጣሪያ - የረቀቀ ማጣሪያ...</emph></variable>"
+msgstr "<variable id=\"dnfspz\">ይምረጡ <emph> ዳታ - ተጨማሪ ማጣሪያ - የረቀቀ ማጣሪያ... </emph></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3153764\n"
"help.text"
msgid "Choose <emph>Data - More Filters - Standard Filter... - Options</emph> label"
-msgstr "ይምረጡ <emph>ዳታ - ተጨማሪ ማጣሪያ - መደበኛ ማጣሪያ... - ምርጫ</emph> ምልክት"
+msgstr "ይምረጡ <emph> ዳታ - ተጨማሪ ማጣሪያ - መደበኛ ማጣሪያ... - ምርጫ </emph> ምልክት"
#: 00000412.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3155444\n"
"help.text"
msgid "Choose <emph>Data - More Filters - Advanced Filter... - Options</emph> label"
-msgstr "ይምረጡ <emph>ዳታ - ተጨመሪ ማጣሪያ - የረቀቀ ማጣሪያ... - ምርጫ</emph> ምልክት"
+msgstr "ይምረጡ <emph> ዳታ - ተጨመሪ ማጣሪያ - የረቀቀ ማጣሪያ... - ምርጫ </emph> ምልክት"
#: 00000412.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Choose <emph>Data - More Filters - Reset Filter</emph>"
-msgstr "ይምረጡ <emph>ዳታ - ተጨማሪ ማጣሪያ - ማጣሪያ እንደ ነበር መመለሻ</emph>"
+msgstr "ይምረጡ <emph> ዳታ - ተጨማሪ ማጣሪያ - ማጣሪያ እንደ ነበር መመለሻ </emph>"
#: 00000412.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3152778\n"
"help.text"
msgid "<variable id=\"dnaftas\">Choose <emph>Data - More Filter - Hide AutoFilter</emph></variable>"
-msgstr "<variable id=\"dnaftas\">ይምረጡ <emph>ዳታ - ተጨማሪ ማጣሪያ - መደበቂያ በራሱ መሙያ</emph></variable>"
+msgstr "<variable id=\"dnaftas\">ይምረጡ <emph> ዳታ - ተጨማሪ ማጣሪያ - መደበቂያ በራሱ መሙያ </emph></variable>"
#: 00000412.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 7a739528f30..576a82ba4b9 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 14:56+0000\n"
+"PO-Revision-Date: 2017-06-19 23:45+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496760961.000000\n"
+"X-POOTLE-MTIME: 1497915911.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3157876\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">ንዑስ ዝርዝር መክፈቻ ለ መምረጥ የ መጎተቻ ዘዴ: እርስዎ ይወስኑ የትኛውን ተግባር እንደሚፈጸም እቃ በሚጎተት እና በሚጣል ጊዜ ከ መቃኛ ወደ ሰነድ ውስጥ: እርስዎ እንደ መረጡት ዘዴ ይለያያል: ይህ ምልክት የሚያሳየው hyperlink, አገናኝ ወይንም ኮፒ ይፈጠር እንደሆነ ነው</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">ንዑስ ዝርዝር መክፈቻ ለ መምረጥ የ መጎተቻ ዘዴ: እርስዎ ይወስኑ የትኛውን ተግባር እንደሚፈጸም እቃ በሚጎተት እና በሚጣል ጊዜ ከ መቃኛ ወደ ሰነድ ውስጥ: እርስዎ እንደ መረጡት ዘዴ ይለያያል: ይህ ምልክት የሚያሳየው hyperlink, አገናኝ ወይንም ኮፒ ይፈጠር እንደሆነ ነው </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
-msgstr "ኮፒ ማድረግ ሲነፃፀር ከ ቁራጭ ሰሌዳ ጋር: እርስዎ ማጣራት ይችላሉ አንዳንድ መረጃ እና ዋጋዎች ማስሊያ: ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ ሁለት ወረቀት ከ መረጡ ነው በ ሰነድ ውስጥ: በርካታ ወረቀቶች ለ መምረጥ: ይጫኑ የ እያንዳንዱን ወረቀት tab ተጭነው ይዘው <switchinline select=\"sys\"> <caseinline select=\"MAC\">ትእዛዝ</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> ወይንም Shift."
+msgstr "ኮፒ ማድረግ ሲነፃፀር ከ ቁራጭ ሰሌዳ ጋር: እርስዎ ማጣራት ይችላሉ አንዳንድ መረጃ እና ዋጋዎች ማስሊያ: ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ ሁለት ወረቀት ከ መረጡ ነው በ ሰነድ ውስጥ: በርካታ ወረቀቶች ለ መምረጥ: ይጫኑ የ እያንዳንዱን ወረቀት tab ተጭነው ይዘው <switchinline select=\"sys\"> <caseinline select=\"MAC\"> ትእዛዝ </caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> ወይንም Shift"
#: 02140500.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3156288\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>."
-msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">ተከታታይ ፎርሞች መፍጠሪያ በ ወረቀት ውስጥ</ahelp> በራሱ መሙያ ተግባር መግለጫ ይወስዳል ከ ዝርዝር ማስተካከያ ውስጥ: ለምሳሌ: በማስገባት <emph>ጥር</emph> በ መጀመሪያው ክፍል ውስጥ: ተከታታዩ የሚፈጸመው የ ተገለጸውን ዝርዝር በ መጠቀም ነው ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ</emph>."
+msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">ተከታታይ ፎርሞች መፍጠሪያ በ ወረቀት ውስጥ</ahelp> በራሱ መሙያ ተግባር መግለጫ ይወስዳል ከ ዝርዝር ማስተካከያ ውስጥ: ለምሳሌ: በማስገባት <emph> ጥር </emph> በ መጀመሪያው ክፍል ውስጥ: ተከታታዩ የሚፈጸመው የ ተገለጸውን ዝርዝር በ መጠቀም ነው ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ </emph>"
#: 02140600.xhp
msgctxt ""
@@ -2582,7 +2582,7 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "You can also set the view of the column and row headers in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME Calc - View</emph></link>."
-msgstr "የ አምድ እና የ ረድፍ ራስጌዎች መመልከቻ ማሰናዳት ይችላሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME ሰንጠረዥ - መመልከቻ</emph></link>."
+msgstr "የ አምድ እና የ ረድፍ ራስጌዎች መመልከቻ ማሰናዳት ይችላሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME ሰንጠረዥ - መመልከቻ </emph></link>"
#: 03080000.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
-msgstr "የ <emph>መለያ</emph> ምርጫ ተመሳሳይ ነውከ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter ትእዛዝ ጋር: የሚጠቅመው መቀመሪያ ለማስገባት እና ለማረጋገጥ ነው በ ወረቀት ውስጥ: መቀመሪያ የሚገባው እንደ የ matrix መቀመሪያ ነው በ ሁለት ብሬስ ውስጥ { }."
+msgstr "የ <emph> መለያ </emph> ምርጫ ተመሳሳይ ነውከ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter ትእዛዝ ጋር: የሚጠቅመው መቀመሪያ ለማስገባት እና ለማረጋገጥ ነው በ ወረቀት ውስጥ: መቀመሪያ የሚገባው እንደ የ matrix መቀመሪያ ነው በ ሁለት ብሬስ ውስጥ { }:"
#: 04060000.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_id3151272\n"
"help.text"
msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. <variable id=\"quotes\">For the DatabaseField parameter you can enter a reference to a header cell or a number to specify the column within the Database area, starting with 1. To reference a column by means of the literal column header name, place quotation marks around the header name.</variable>"
-msgstr "<emph>የ ዳታቤዝ ሜዳ</emph> አምድን ይወስናል የ ተግባር አንቀሳቃሽ የሚሰራበትን ከ መፈለጊያ መመዘኛ በኋላ በ መጀመሪያው ደንብ የሚፈጸመው እና የ ዳታ ራዶፍች የሚመረጡበት: ከ መፈለጊያ መመዘኛ ጋር የ ተዛመደ አይደለም <variable id=\"quotes\">ለ ዳታቤዝ ሜዳ ደንብ እርስዎ ለሚያስገቡት እንደ ማመሳከሪያ በ ራስጌ ክፍል ወይንም ቁጥር ለ መወሰን አምዱን ከ ዳታቤዝ ቦታ ውስጥ: በ መጀመሪያ በ 1. ለማመሳከር አምድ በ ትክክል አምድ ራስጌ ስም: የ ትምህርተ ጥቅስ ምልክት በ ራስጌው ስም ዙሪያ ያስገቡ </variable>"
+msgstr "<emph>የ ዳታቤዝ ሜዳ </emph> አምድን ይወስናል የ ተግባር አንቀሳቃሽ የሚሰራበትን ከ መፈለጊያ መመዘኛ በኋላ በ መጀመሪያው ደንብ የሚፈጸመው እና የ ዳታ ራዶፍች የሚመረጡበት: ከ መፈለጊያ መመዘኛ ጋር የ ተዛመደ አይደለም <variable id=\"quotes\"> ለ ዳታቤዝ ሜዳ ደንብ እርስዎ ለሚያስገቡት እንደ ማመሳከሪያ በ ራስጌ ክፍል ወይንም ቁጥር ለ መወሰን አምዱን ከ ዳታቤዝ ቦታ ውስጥ: በ መጀመሪያ በ 1. ለማመሳከር አምድ በ ትክክል አምድ ራስጌ ስም: የ ትምህርተ ጥቅስ ምልክት በ ራስጌው ስም ዙሪያ ያስገቡ </variable>"
#: 04060101.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id3147083\n"
"help.text"
msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
-msgstr "<emph>መፈለጊያ መመዘኛ</emph> የ ክፍል መጠን ነው የ መፈለጊያ መመዘኛ የያዘ: እርስዎ የሚጽፉ ከሆነ በርካታ መመዘኛ በ አንድ ረድፍ ውስጥ በ እና ይገናኛሉ: እርስዎ የሚጽፉ ከሆነ መመዘኛ በ ተለየ ረድፎች ውስጥ ይገናኛሉ በ ወይንም: ባዶ ክፍሎች በ መፈለጊያ መመዘኛ መጠን ውስጥ ይተዋሉ"
+msgstr "<emph>መፈለጊያ መመዘኛ </emph> የ ክፍል መጠን ነው የ መፈለጊያ መመዘኛ የያዘ: እርስዎ የሚጽፉ ከሆነ በርካታ መመዘኛ በ አንድ ረድፍ ውስጥ በ እና ይገናኛሉ: እርስዎ የሚጽፉ ከሆነ መመዘኛ በ ተለየ ረድፎች ውስጥ ይገናኛሉ በ ወይንም: ባዶ ክፍሎች በ መፈለጊያ መመዘኛ መጠን ውስጥ ይተዋሉ"
#: 04060101.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id3151188\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
-msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME ሰንጠረዥ - ማስሊያ</link> ለ መግለጽ እንዴት $[officename] ሰንጠረዥ ተመሳሳይ ማስገቢያዎችን በሚፈልግ ጊዜ እንዴት እንደሚሆን"
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME ሰንጠረዥ - ማስሊያ </link> ለ መግለጽ እንዴት $[officename] ሰንጠረዥ ተመሳሳይ ማስገቢያዎችን በሚፈልግ ጊዜ እንዴት እንደሚሆን"
#: 04060101.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"par_id3882869\n"
"help.text"
msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
-msgstr "ይህን የ ዊኪ ገጽ ይመልከቱ ስለ <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">እንደ ሁኔታው መደመሪያ</link>."
+msgstr "ይህን የ ዊኪ ገጽ ይመልከቱ ስለ <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\"> እንደ ሁኔታው መደመሪያ </link>"
#: 04060101.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_id3149142\n"
"help.text"
msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the column with the numerical distance values. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
-msgstr "<emph>ዳታቤዝ</emph> የሚገመገመው የ ዳታ መጠን ነው: ራስጌዎችንም ያካትታል: በዚህ ሁኔታ ውስጥ A1:E10. <emph>የ ዳታቤዝ ሜዳ</emph> የ አምድ መወሰኛ ለ መፈለጊያ መመዘኛ: በዚህ ሁኔታ ውስጥ: ጠቅላላ ዳታቤዙ <emph>መፈለጊያ መመዘኛ</emph> መጠን ነው እርስዎ የሚያስገቡበት የ መፈለጊያ ደንብ: በዚህ ሁኔታ ውስጥ: A13:E14."
+msgstr "<emph>ዳታቤዝ</emph> የሚገመገመው የ ዳታ መጠን ነው: ራስጌዎችንም ያካትታል: በዚህ ሁኔታ ውስጥ A1:E10. <emph> የ ዳታቤዝ ሜዳ </emph> የ አምድ መወሰኛ ለ መፈለጊያ መመዘኛ: በዚህ ሁኔታ ውስጥ: ጠቅላላ ዳታቤዙ <emph> መፈለጊያ መመዘኛ </emph> መጠን ነው: እርስዎ የሚያስገቡበት የ መፈለጊያ ደንብ: በዚህ ሁኔታ ውስጥ: A13:E14."
#: 04060101.xhp
msgctxt ""
@@ -5118,7 +5118,7 @@ msgctxt ""
"par_id3150437\n"
"help.text"
msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
-msgstr "$[officename] የ ቀን/ሰአት ዋጋ እንደ ቁጥራዊ ዋጋ በ ውስጥ መያዣ: እርስዎ ከ መደቡ የ ቁጥር አቀራረብ \"ቁጥር\" ለ ቀን ወይንም ለ ሰአት ዋጋ: ወደ ቁጥር ይቀየራል: ለምሳሌ: 01/01/2000 12:00 ከሰአት ይቀየራል ወደ 36526.5. ዋጋው ይቀጥላል የ ዴሲማል ነጥብ ተመሳሳይ ለ ቀን: የ ዴሲማል ነጥብ የሚከተለው ዋጋ ተመሳሳይ ነው ለ ሰአት: እርስዎ እንዲህ አይነት የ ቁጥር ቀን ወይንም ሰአት አቀራረብ: የ ቁጥር አቀራረብ ይቀይሩ ወደ (ቀን ወይንም ሰአት) ስለዚህ ይህን ለማድረግ: ክፍል ይምረጡ ቀን ወይንም የ ሰአት ዋጋ የያዘውን: ይህን በ አገባብ ዝርዝር ውስጥ ይጥሩ እና ይምረጡ <emph>ክፍሎች አቀራረብ </emph> የ <emph> ቁጥሮች </emph> tab ገጽ ተግባሮች የያዘው የ ቁጥር አቀራረብ ለ መግለጽ"
+msgstr "$[officename] የ ቀን/ሰአት ዋጋ እንደ ቁጥራዊ ዋጋ በ ውስጥ መያዣ: እርስዎ ከ መደቡ የ ቁጥር አቀራረብ \"ቁጥር\" ለ ቀን ወይንም ለ ሰአት ዋጋ: ወደ ቁጥር ይቀየራል: ለምሳሌ: 01/01/2000 12:00 ከሰአት ይቀየራል ወደ 36526.5. ዋጋው ይቀጥላል የ ዴሲማል ነጥብ ተመሳሳይ ለ ቀን: የ ዴሲማል ነጥብ የሚከተለው ዋጋ ተመሳሳይ ነው ለ ሰአት: እርስዎ እንዲህ አይነት የ ቁጥር ቀን ወይንም ሰአት አቀራረብ: የ ቁጥር አቀራረብ ይቀይሩ ወደ (ቀን ወይንም ሰአት) ስለዚህ ይህን ለማድረግ: ክፍል ይምረጡ ቀን ወይንም የ ሰአት ዋጋ የያዘውን: ይህን በ አገባብ ዝርዝር ውስጥ ይጥሩ እና ይምረጡ <emph> ክፍሎች አቀራረብ </emph> የ <emph> ቁጥሮች </emph> tab ገጽ ተግባሮች የያዘው የ ቁጥር አቀራረብ ለ መግለጽ"
#: 04060102.xhp
msgctxt ""
@@ -5142,7 +5142,7 @@ msgctxt ""
"par_id6401257\n"
"help.text"
msgid "Date base"
-msgstr "Date base"
+msgstr "የ ቀን መሰረት"
#: 04060102.xhp
msgctxt ""
@@ -5230,7 +5230,7 @@ msgctxt ""
"par_id3149720\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
-msgstr "ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - ባጠቃላይ</emph> እርስዎ ቦታ ያገኛሉ <emph>አመት (ሁለት አሀዝ)</emph> ይህ ጊዜ ማሰናጃ ነው ለ ሁለት-አሀዝ መረጃ መፈጸሚያ: ማስታወሻ እዚህ የ ተፈጸሙት ለውጦች ተጽእኖ አላቸው በ አንዳንድ ተግባሮች ላይ"
+msgstr "ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ባጠቃላይ </emph> እርስዎ ቦታ ያገኛሉ <emph> አመት (ሁለት አሀዝ) </emph> ይህ ጊዜ ማሰናጃ ነው ለ ሁለት-አሀዝ መረጃ መፈጸሚያ: ማስታወሻ እዚህ የ ተፈጸሙት ለውጦች ተጽእኖ አላቸው በ አንዳንድ ተግባሮች ላይ"
#: 04060102.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings."
-msgstr "ቀኖች በሚያስገቡ ጊዜ እንደ መቀመሪያ አካል: slashes ወይንም ጭረቶች እንደ የ ቀን መለያያ ሲጠቀሙ የሚተረጎመው እንደ የ ሂሳብ አንቀሳቃሽ ነው: ስለዚህ ቀኖች በዚህ አቀራረብ የገቡ አይታወቁም እንደ ቀኖች እና ውጤቱ የ ስሌቶች ስህተት ይሆናል: ቀኖች እንደ መቀመሪያ አካል እንዳይተረጎሙ: የ ቀን ተግባር ይጠቀሙ: ለምሳሌ: ቀን(1954;7;20), ወይንም ቀኑን በ ትምህርተ ጥቅስ ውስጥ ያድርጉ: እና ይጠቀሙ የ ISO 8601 ኮድ: ለምሳሌ: \"1954-07-20\". ያስወግዱ የ ቋንቋ ጥገኞች የ ቀን አቀራረብ እንደ የ \"07/20/54\", በ ስሌቶች ውስጥ ስህተት ይፈጥራል: ሰነዱ በሚጫን ጊዜ በ ተለየ የ ቋንቋ ማሰናጃ ውስጥ:"
+msgstr "ቀኖች በሚያስገቡ ጊዜ እንደ መቀመሪያ አካል: ስላሽ ወይንም ጭረቶች እንደ የ ቀን መለያያ ሲጠቀሙ የሚተረጎመው እንደ የ ሂሳብ አንቀሳቃሽ ነው: ስለዚህ ቀኖች በዚህ አቀራረብ የገቡ አይታወቁም እንደ ቀኖች እና ውጤቱ የ ስሌቶች ስህተት ይሆናል: ቀኖች እንደ መቀመሪያ አካል እንዳይተረጎሙ: የ ቀን ተግባር ይጠቀሙ: ለምሳሌ: ቀን(1954;7;20), ወይንም ቀኑን በ ትምህርተ ጥቅስ ውስጥ ያድርጉ: እና ይጠቀሙ የ ISO 8601 ኮድ: ለምሳሌ: \"1954-07-20\". ያስወግዱ የ ቋንቋ ጥገኞች የ ቀን አቀራረብ እንደ የ \"07/20/54\", በ ስሌቶች ውስጥ ስህተት ይፈጥራል: ሰነዱ በሚጫን ጊዜ በ ተለየ የ ቋንቋ ማሰናጃ ውስጥ:"
#: 04060102.xhp
msgctxt ""
@@ -5382,7 +5382,7 @@ msgctxt ""
"hd_id3153765\n"
"help.text"
msgid "AMORLINC"
-msgstr "AMORLINC"
+msgstr "እርጅና በ ተወሰነ ጊዜ ውስጥ"
#: 04060103.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3147363\n"
"help.text"
msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
-msgstr "የ እርጅና ጊዜ በ ዝግታ የሚቀንሰው(ዋጋ: የ ተገዛበት ቀን: የ መጀመሪያ ጊዜ: እርጅና: ጊዜ: መጠን: መሰረት)"
+msgstr "እርጅና በ ተወሰነ ጊዜ ውስጥ(ዋጋ: የ ተገዛበት ቀን: የ መጀመሪያ ጊዜ: እርጅና: ጊዜ: መጠን: መሰረት)"
#: 04060103.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"par_id3153625\n"
"help.text"
msgid "<item type=\"input\">Total</item>"
-msgstr "<item type=\"input\">Total</item>"
+msgstr "<item type=\"input\">ጠቅላላ</item>"
#: 04060103.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_idN10E621\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link> function."
-msgstr "ክፍያው የሚካሄደው ስርአት ባልተከተለ ክፍተት ከሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">የ ውስጥ ገንዘብ ስርአቱን ለማይከተል ይመልሳል</link> ተግባር"
+msgstr "ክፍያው የሚካሄደው ስርአት ባልተከተለ ክፍተት ከሆነ: ይህን ይጠቀሙ <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\"> የ ውስጥ ገንዘብ ስርአቱን ለማይከተል ይመልሳል </link> ተግባር"
#: 04060103.xhp
msgctxt ""
@@ -7086,7 +7086,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
-msgstr "<emph>ግምት</emph> (በ ምርጫ) የ ተገመተው ዋጋ ነው: የ ድግግሞሽ ዘዴ ይጠቀሙ ለ ማስላት የ ውስጥ መጠን የሚመለሰውን: እርስዎ ማቅረብ የሚችሉት ጥቂት ዋጋዎች ከሆነ: እርስዎ ማቅረብ አለብዎት መነሻ ግምት ድግግሞሹን ለ ማስቻል"
+msgstr "<emph>ግምት </emph> (በ ምርጫ) የ ተገመተው ዋጋ ነው: የ ድግግሞሽ ዘዴ ይጠቀሙ ለ ማስላት የ ውስጥ መጠን የሚመለሰውን: እርስዎ ማቅረብ የሚችሉት ጥቂት ዋጋዎች ከሆነ: እርስዎ ማቅረብ አለብዎት መነሻ ግምት ድግግሞሹን ለ ማስቻል"
#: 04060103.xhp
msgctxt ""
@@ -7718,7 +7718,7 @@ msgctxt ""
"par_id7463911\n"
"help.text"
msgid "The example returns A2 + B2 (STYLE returns 0 here). If this sum is greater than 10, the style Red is applied to the cell. See the <emph>STYLE</emph> function for more explanation."
-msgstr "ምሳሌው ይመልሳል A2 + B2 (ዘዴ ይመልሳል 0 እዚህ). ይህ ድምር ከ 10, በላይ ከሆነ የ ቀይ ዘዴ ይፈጸማል ወደ ክፍሉ: ይህን ይመልከቱ የ <emph>ዘዴ</emph> ተግባር ለ በለጠ መረጃ"
+msgstr "ምሳሌው ይመልሳል A2 + B2 (ዘዴ ይመልሳል 0 እዚህ). ይህ ድምር ከ 10, በላይ ከሆነ የ ቀይ ዘዴ ይፈጸማል ወደ ክፍሉ: ይህን ይመልከቱ የ <emph> ዘዴ </emph> ተግባር ለ በለጠ መረጃ"
#: 04060104.xhp
msgctxt ""
@@ -7886,7 +7886,7 @@ msgctxt ""
"par_id9728072\n"
"help.text"
msgid "<item type=\"input\">=ISREF(\"abcdef\")</item> returns always FALSE because a text can never be a reference."
-msgstr "<item type=\"input\">=ማመሳከሪያ ነው(\"abcdef\")</item> ይመልሳል ሁልጊዜ ሀሰት ምክንያቱም ጽሁፍ ማመሳከሪያ መሆን አይችልም"
+msgstr "<item type=\"input\">=ማመሳከሪያ ነው(\"abcdef\") </item> ይመልሳል ሁልጊዜ ሀሰት ምክንያቱም ጽሁፍ ማመሳከሪያ መሆን አይችልም"
#: 04060104.xhp
msgctxt ""
@@ -7958,7 +7958,7 @@ msgctxt ""
"par_id3146857\n"
"help.text"
msgid "<emph>Value</emph> is any value or expression which is tested to see whether an error value other than #N/A is present."
-msgstr "<emph>ዋጋ</emph> ማንኛውም ዋጋ ነው ወይንም መግለጫ ነው የ ተሞከረ የ ስህተት ውጤት ለ መመልከት ሌላ የ ተለየ #ዝ/አ እንዳለ"
+msgstr "<emph>ዋጋ </emph> ማንኛውም ዋጋ ነው ወይንም መግለጫ ነው የ ተሞከረ የ ስህተት ውጤት ለ መመልከት ሌላ የ ተለየ #ዝ/አ እንዳለ"
#: 04060104.xhp
msgctxt ""
@@ -8062,7 +8062,7 @@ msgctxt ""
"bm_id31470811\n"
"help.text"
msgid "<bookmark_value>IFERROR function</bookmark_value> <bookmark_value>testing;general errors</bookmark_value>"
-msgstr "<bookmark_value>ስህተት ከሆነ ተግባር</bookmark_value> <bookmark_value>መሞከሪያ:ስህተቶች ባጠቃላይ</bookmark_value>"
+msgstr "<bookmark_value>ስህተት ከሆነ ተግባር</bookmark_value> <bookmark_value>መሞከሪያ: ስህተቶች ባጠቃላይ</bookmark_value>"
#: 04060104.xhp
msgctxt ""
@@ -8574,7 +8574,7 @@ msgctxt ""
"par_id3146946\n"
"help.text"
msgid "Returns TRUE if <emph>Value</emph> is a logical value (TRUE or FALSE), and returns FALSE otherwise."
-msgstr "ይመልሳል እውነት ከሆነ <emph>ዋጋ</emph> ነው የ ሎጂካል ዋጋ (እውነት ወይንም ሀሰት): እና ይመልሳል ሀሰት ያለ በለዚያ"
+msgstr "ይመልሳል እውነት ከሆነ <emph> ዋጋ </emph> ነው የ ሎጂካል ዋጋ (እውነት ወይንም ሀሰት): እና ይመልሳል ሀሰት ያለ በለዚያ"
#: 04060104.xhp
msgctxt ""
@@ -8718,7 +8718,7 @@ msgctxt ""
"par_id31528841\n"
"help.text"
msgid "<emph>Value</emph> is the value or expression to be returned if it is not equal or results in an #N/A error."
-msgstr "<emph>ዋጋ</emph> ዋጋ ነው ወይንም መግለጫ የሚመለሰው እኩል ካልሆነ ወይንም ውጤቱ በ #ዝ/አ ስህተት ከሆነ"
+msgstr "<emph>ዋጋ </emph> ዋጋ ነው ወይንም መግለጫ የሚመለሰው እኩል ካልሆነ ወይንም ውጤቱ በ #ዝ/አ ስህተት ከሆነ"
#: 04060104.xhp
msgctxt ""
@@ -8726,7 +8726,7 @@ msgctxt ""
"par_id31528842\n"
"help.text"
msgid "<emph>Alternate_value</emph> is the value or expression to be returned if the expression or value of <emph>Value</emph> is equal or results in an #N/A error."
-msgstr "<emph>አማራጭ_ዋጋ</emph> ዋጋ ነው ወይንም መግለጫ ነው የሚመለሰው መግለጫ ወይንም ዋጋ የ <emph>ዋጋ</emph> እኩል ነው ወይንም ውጤቱ #ዝ/አ ስህተት ነው"
+msgstr "<emph>አማራጭ_ዋጋ </emph> ዋጋ ነው ወይንም መግለጫ ነው የሚመለሰው መግለጫ ወይንም ዋጋ የ <emph> ዋጋ </emph> እኩል ነው ወይንም ውጤቱ #ዝ/አ ስህተት ነው"
#: 04060104.xhp
msgctxt ""
@@ -9062,7 +9062,7 @@ msgctxt ""
"bm_id3153694\n"
"help.text"
msgid "<bookmark_value>N function</bookmark_value>"
-msgstr "<bookmark_value>N function</bookmark_value>"
+msgstr "<bookmark_value>የ ቁጥር ተግባር</bookmark_value>"
#: 04060104.xhp
msgctxt ""
@@ -9222,7 +9222,7 @@ msgctxt ""
"bm_id3151255\n"
"help.text"
msgid "<bookmark_value>TYPE function</bookmark_value>"
-msgstr "<bookmark_value>TYPE function</bookmark_value>"
+msgstr "<bookmark_value>የ አይነት ተግባር</bookmark_value>"
#: 04060104.xhp
msgctxt ""
@@ -9870,7 +9870,7 @@ msgctxt ""
"par_id3156072\n"
"help.text"
msgid "Returns 1 if the format code contains an opening bracket (, otherwise 0."
-msgstr "ይመልሳል 1 የ አቀራረብ ኮድ የያዘው የ ተከፈተ ቅንፍ ነው (, ያለበለዚያ 0."
+msgstr "ይመልሳል 1 የ አቀራረብ ኮድ የያዘው የ ተከፈተ ቅንፍ ነው (ያለ በለዚያ 0."
#: 04060104.xhp
msgctxt ""
@@ -11166,7 +11166,7 @@ msgctxt ""
"par_id3151168\n"
"help.text"
msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr "<emph>ቁጥርX</emph> ዋጋ ነው ለ x መገናኛ"
+msgstr "<emph>ቁጥርX </emph> ዋጋ ነው ለ x መገናኛ"
#: 04060106.xhp
msgctxt ""
@@ -11174,7 +11174,7 @@ msgctxt ""
"par_id3152798\n"
"help.text"
msgid "<emph>NumberY</emph> is the value of the y coordinate."
-msgstr "<emph>ቁጥርY</emph> ዋጋ ነው ለ y መገናኛ"
+msgstr "<emph>ቁጥርY </emph> ዋጋ ነው ለ y መገናኛ"
#: 04060106.xhp
msgctxt ""
@@ -11798,7 +11798,7 @@ msgctxt ""
"bm_id3148698\n"
"help.text"
msgid "<bookmark_value>EXP function</bookmark_value>"
-msgstr "<bookmark_value>EXP function</bookmark_value>"
+msgstr "<bookmark_value>ኤክስፖኔንሽያል ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -11838,7 +11838,7 @@ msgctxt ""
"par_id3155608\n"
"help.text"
msgid "<emph>Number</emph> is the power to which e is to be raised."
-msgstr "<emph>ቁጥር</emph> ሀይል ነው ለ e ለሚነሳው"
+msgstr "<emph>ቁጥር </emph> ሀይል ነው ለ e ለሚነሳው"
#: 04060106.xhp
msgctxt ""
@@ -12622,7 +12622,7 @@ msgctxt ""
"par_id3148548\n"
"help.text"
msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
-msgstr "ይህ <emph>የሚታየው</emph> ዴሲማል ቦታ ውጤት የ ተወሰነ ነው በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME ሰንጠረዥ - ማስሊያ</link>."
+msgstr "ይህ <emph> የሚታየው </emph> ዴሲማል ቦታ ውጤት የ ተወሰነ ነው በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME ሰንጠረዥ - ማስሊያ </link>"
#: 04060106.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"par_id3109841\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOG\">ለ ቁጥር ሎጋሪዝም ይመልሳል በ ተወሰነ base </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG\">ለ ቁጥር ሎጋሪዝም ይመልሳል በ ተወሰነ ቤዝ </ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -12758,7 +12758,7 @@ msgctxt ""
"par_id3144732\n"
"help.text"
msgid "LOG(Number; Base)"
-msgstr "ሎጋሪዝም(ቁጥር: Base)"
+msgstr "ሎጋሪዝም(ቁጥር: ቤዝ)"
#: 04060106.xhp
msgctxt ""
@@ -12774,7 +12774,7 @@ msgctxt ""
"par_id3152840\n"
"help.text"
msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
-msgstr "<emph>Base</emph> (በ ምርጫ) base ነው ለ ሎጋሪዝም ማስሊያ: የማይታይ ከሆነ Base 10 ይወሰዳል"
+msgstr "<emph>Base</emph> (በ ምርጫ) ቤዝ ነው ለ ሎጋሪዝም ማስሊያ: የማይታይ ከሆነ ቤዝ 10 ይወሰዳል"
#: 04060106.xhp
msgctxt ""
@@ -12790,7 +12790,7 @@ msgctxt ""
"par_id3154429\n"
"help.text"
msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
-msgstr "<item type=\"input\">=ሎጋሪዝም(10;3)</item> ይመልሳል ሎጋሪዝም በ 3 መሰረት ለ 10 (በግምት 2.0959)."
+msgstr "<item type=\"input\">=ሎጋሪዝም(10;3)</item> ይመልሳል ሎጋሪዝም በ 3 ቤዝ ለ 10 (በግምት 2.0959)."
#: 04060106.xhp
msgctxt ""
@@ -12846,7 +12846,7 @@ msgctxt ""
"par_id3159308\n"
"help.text"
msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
-msgstr "ይመልሳል ሎጋሪዝም በ base 10 ለ <emph>ቁጥር</emph>."
+msgstr "ይመልሳል ሎጋሪዝም በ ቤዝ 10 ለ <emph> ቁጥር </emph>"
#: 04060106.xhp
msgctxt ""
@@ -12870,7 +12870,7 @@ msgctxt ""
"bm_id3152518\n"
"help.text"
msgid "<bookmark_value>CEILING function</bookmark_value> <bookmark_value>rounding;up to multiples of significance</bookmark_value>"
-msgstr "<bookmark_value>ጣር ተግባር</bookmark_value> <bookmark_value>ማጠጋጊያ:ወደ አስፈላጊ ያለ ቀሪ አካፋይ</bookmark_value>"
+msgstr "<bookmark_value>ጣራ ተግባር</bookmark_value> <bookmark_value>ማጠጋጊያ: ወደ አስፈላጊ ያለ ቀሪ አካፋይ</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -12926,7 +12926,7 @@ msgctxt ""
"par_id3155020\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded away from zero. If the Mode value is equal to zero or is not given, negative numbers are rounded towards zero."
-msgstr "<emph>ዝዴ</emph> የ ዋጋ ምርጫ ነው: የ ዘዴ ዋጋ ከ ተሰጠ እና ከ ዜሮ ጋር እኩል ካልሆነ: እና ቁጥር አስፈላጊ እና አሉታዊ ከሆነ: ከዛ ማጠጋጋት የሚፈጸመው በ ቁጥሩ ፍጹም ዋጋ መሰረት ነው: ይህም ማለት አሉታዊ ቁጥር ይጠጋጋል ከ ዜሮ ባሻገር: የ ዘዴ ዋጋ ከ ዜሮ ጋር እኩል ከሆነ ወይንም ካልተሰጠ: አሉታዊ ቁጥሮች ይጠጋጋሉ ወደ ዜሮ አጠገብ"
+msgstr "<emph>ዘዴ </emph> የ ዋጋ ምርጫ ነው: የ ዘዴ ዋጋ ከ ተሰጠ እና ከ ዜሮ ጋር እኩል ካልሆነ: እና ቁጥር አስፈላጊ እና አሉታዊ ከሆነ: ከዛ ማጠጋጋት የሚፈጸመው በ ቁጥሩ ፍጹም ዋጋ ቤዝ መሰረት ነው: ይህም ማለት አሉታዊ ቁጥር ይጠጋጋል ከ ዜሮ ባሻገር: የ ዘዴ ዋጋ ከ ዜሮ ጋር እኩል ከሆነ ወይንም ካልተሰጠ: አሉታዊ ቁጥሮች ይጠጋጋሉ ወደ ዜሮ አጠገብ"
#: 04060106.xhp
msgctxt ""
@@ -13294,7 +13294,7 @@ msgctxt ""
"par_id9759514\n"
"help.text"
msgid "<item type=\"literal\">Base^Exponent</item>"
-msgstr "<item type=\"literal\">Base^ኤክስፖነንት</item>"
+msgstr "<item type=\"literal\">ቤዝ^ኤክስፖነንት</item>"
#: 04060106.xhp
msgctxt ""
@@ -13798,7 +13798,7 @@ msgctxt ""
"par_id3158196\n"
"help.text"
msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
-msgstr "ይመልሳል <emph>ቁጥር</emph> ወደ ላይ የ ተጠጋጋ ወደ <emph>መቁጠሪያ</emph> ዴሲማል ቦታዎች: መቁጠሪያ ከ ተሰናከለ ወይንም ዜር ከሆነ: ተግባሩ ይጠጋጋል ወደ ኢንቲጀር መቁጠሪያው አሉታዊ ከሆነ: ተግባሩ ወደሚቀጥለው ይጠጋጋል ወደ 10, 100, 1000, ወዘተ"
+msgstr "ይመልሳል <emph> ቁጥር </emph> ወደ ላይ የ ተጠጋጋ ወደ <emph> መቁጠሪያ </emph> ዴሲማል ቦታዎች: መቁጠሪያ ከ ተሰናከለ ወይንም ዜር ከሆነ: ተግባሩ ይጠጋጋል ወደ ኢንቲጀር መቁጠሪያው አሉታዊ ከሆነ: ተግባሩ ወደሚቀጥለው ይጠጋጋል ወደ 10, 100, 1000, ወዘተ"
#: 04060106.xhp
msgctxt ""
@@ -13902,7 +13902,7 @@ msgctxt ""
"par_id3146064\n"
"help.text"
msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
-msgstr "ይመልሳል <emph>ቁጥር</emph> ወደ ላይ የ ተጠጋጋ (ከ ዜሮ በላይ) ወደ <emph>መቁጠሪያ</emph> ዴሲማል ቦታዎች: መቁጠሪያ ከ ተሰናከለ ወይንም ዜር ከሆነ: ተግባሩ ይጠጋጋል ወደ ኢንቲጀር መቁጠሪያው አሉታዊ ከሆነ: ተግባሩ ወደሚቀጥለው ይጠጋጋል ወደ 10, 100, 1000, ወዘተ"
+msgstr "ይመልሳል <emph> ቁጥር </emph> ወደ ላይ የ ተጠጋጋ (ከ ዜሮ በላይ) ወደ <emph> መቁጠሪያ </emph> ዴሲማል ቦታዎች: መቁጠሪያ ከ ተሰናከለ ወይንም ዜር ከሆነ: ተግባሩ ይጠጋጋል ወደ ኢንቲጀር መቁጠሪያው አሉታዊ ከሆነ: ተግባሩ ወደሚቀጥለው ይጠጋጋል ወደ 10, 100, 1000, ወዘተ"
#: 04060106.xhp
msgctxt ""
@@ -13998,7 +13998,7 @@ msgctxt ""
"par_id3163342\n"
"help.text"
msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
-msgstr "ይመልሳል <emph>ቁጥር</emph> ወደ ላይ የ ተጠጋጋ (ከ ዜሮ በላይ) ወደ <emph>መቁጠሪያ</emph> ዴሲማል ቦታዎች: መቁጠሪያ ከ ተሰናከለ ወይንም ዜር ከሆነ: ተግባሩ ይጠጋጋል ወደ ኢንቲጀር መቁጠሪያው አሉታዊ ከሆነ: ተግባሩ ወደሚቀጥለው ይጠጋጋል ወደ 10, 100, 1000, ወዘተ"
+msgstr "ይመልሳል <emph> ቁጥር </emph> ወደ ላይ የ ተጠጋጋ (ከ ዜሮ በላይ) ወደ <emph> መቁጠሪያ </emph> ዴሲማል ቦታዎች: መቁጠሪያ ከ ተሰናከለ ወይንም ዜር ከሆነ: ተግባሩ ይጠጋጋል ወደ ኢንቲጀር መቁጠሪያው አሉታዊ ከሆነ: ተግባሩ ወደሚቀጥለው ይጠጋጋል ወደ 10, 100, 1000, ወዘተ"
#: 04060106.xhp
msgctxt ""
@@ -14454,7 +14454,7 @@ msgctxt ""
"par_id3151828\n"
"help.text"
msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
-msgstr "ይህን እንደ መቀመሪያ ማዘጋጃ ለማስገባት: እርስዎ መጫን አለብዎት የ Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+ትእዛዝ</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ ማስገቢያ ቁልፎች በ ቀላሉ የ ማስገቢያ ቁልፍ መቀመሪያውን ለ መዝጋት ከ መጫን ይልቅ: መቀመሪያ ይታያል በ <emph>መቀመሪያ</emph> መደርደሪያ ውስጥ በ braces ተከብቦ"
+msgstr "ይህን እንደ መቀመሪያ ማዘጋጃ ለማስገባት: እርስዎ መጫን አለብዎት የ Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+ትእዛዝ</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ ማስገቢያ ቁልፎች በ ቀላሉ የ ማስገቢያ ቁልፍ መቀመሪያውን ለ መዝጋት ከ መጫን ይልቅ: መቀመሪያ ይታያል በ <emph> መቀመሪያ </emph> መደርደሪያ ውስጥ በ ጠምዛዛ ቅንፍ ውስጥ ተከብቦ"
#: 04060106.xhp
msgctxt ""
@@ -15014,7 +15014,7 @@ msgctxt ""
"par_id3143708\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">በ አሮጌው የ አውሮፓ አገር እና በ ኢዩሮ መካከል ገንዘብ መቀየሪያ</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">በ አሮጌው የ አውሮፓውያን አገር እና በ ኢዩሮ መካከል ገንዘብ መቀየሪያ</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -15046,7 +15046,7 @@ msgctxt ""
"par_id3143782\n"
"help.text"
msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
-msgstr "<emph>ከ_ገንዘብ</emph> እና <emph>ወደ_ገንዘብ</emph> የ ገንዘብ ክፍሎች ናቸው የሚቀየሩት ከ እና ወደ በ ተከታታይ: እነዚህ ጽሁፍ መሆን አለባቸው: ትክክለኛው አሕፃሮተ ቃል ለ ገንዘብ (ለምሳሌ: \"ኢዩሮ\"). መጠናቸው (በ ኢዩሮ ሲታይ) በ አውሮፓ ሕብረት የ ተሰናዳ ነው"
+msgstr "<emph>ከ_ገንዘብ </emph> እና <emph> ወደ_ገንዘብ </emph> የ ገንዘብ ክፍሎች ናቸው የሚቀየሩት ከ እና ወደ በ ተከታታይ: እነዚህ ጽሁፍ መሆን አለባቸው: ትክክለኛው አሕፃሮተ ቃል ለ ገንዘብ (ለምሳሌ: \"ኢዩሮ\"). መጠናቸው (በ ኢዩሮ ሲታይ) በ አውሮፓውያን ሕብረት የ ተሰናዳ ነው"
#: 04060106.xhp
msgctxt ""
@@ -15382,7 +15382,7 @@ msgctxt ""
"par_id3157517\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded towards zero. If the Mode value is equal to zero or is not given, negative numbers are rounded away from zero."
-msgstr "<emph>ዝዴ</emph> የ ዋጋ ምርጫ ነው: የ ዘዴ ዋጋ ከ ተሰጠ እና ከ ዜሮ ጋር እኩል ካልሆነ: እና ቁጥር አስፈላጊ እና አሉታዊ ከሆነ: ከዛ ማጠጋጋት የሚፈጸመው በ ቁጥሩ ፍጹም ዋጋ መሰረት ነው: ይህም ማለት አሉታዊ ቁጥር ይጠጋጋል ከ ዜሮ ባሻገር: የ ዘዴ ዋጋ ከ ዜሮ ጋር እኩል ከሆነ ወይንም ካልተሰጠ: አሉታዊ ቁጥሮች ይጠጋጋሉ ወደ ዜሮ አጠገብ"
+msgstr "<emph>ዘዴ </emph> የ ዋጋ ምርጫ ነው: የ ዘዴ ዋጋ ከ ተሰጠ እና ከ ዜሮ ጋር እኩል ካልሆነ: እና ቁጥር አስፈላጊ እና አሉታዊ ከሆነ: ከዛ ማጠጋጋት የሚፈጸመው በ ፍጹም ቁጥሩ ዋጋ ቤዝ መሰረት ነው: ይህም ማለት አሉታዊ ቁጥር ይጠጋጋል ከ ዜሮ ባሻገር: የ ዘዴ ዋጋ ከ ዜሮ ጋር እኩል ከሆነ ወይንም ካልተሰጠ: አሉታዊ ቁጥሮች ይጠጋጋሉ ወደ ዜሮ አጠገብ"
#: 04060106.xhp
msgctxt ""
@@ -15510,7 +15510,7 @@ msgctxt ""
"hd_id3164252\n"
"help.text"
msgid "MROUND"
-msgstr "MROUND"
+msgstr "ማጠጋጊያ ወደ ቅርቡ አካፋይ"
#: 04060106.xhp
msgctxt ""
@@ -16454,7 +16454,7 @@ msgctxt ""
"par_idN10D4E\n"
"help.text"
msgid "In the following example, the >0 test of the {=IF(A1:A3>0;\"yes\";\"no\")} formula is applied to each cell in the range A1:A3 and the result is copied to the corresponding cell."
-msgstr "በሚቀጥለ2ው ምሳሌ ውስጥ: የ >0 test of the {=ከሆነ(A1:A3>0;\"አዎ\";\"አይ\")} መቀመሪያ ይፈጸማል ለ እያንዳንዱ ክፍል በ መጠን A1:A3 ውስጥ እና ውጤቱ ኮፒ ይደረጋል ወደ ተመሳሳይ ክፍል ውስጥ"
+msgstr "በሚቀጥለው ምሳሌ ውስጥ: የ >0 መሞከሪያ ለ {=ከሆነ(A1:A3>0;\"አዎ\";\"አይ\")} መቀመሪያ ይፈጸማል ለ እያንዳንዱ ክፍል በ መጠን A1:A3 ውስጥ እና ውጤቱ ኮፒ ይደረጋል ወደ ተመሳሳይ ክፍል ውስጥ"
#: 04060107.xhp
msgctxt ""
@@ -16582,7 +16582,7 @@ msgctxt ""
"par_idN10DD0\n"
"help.text"
msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:"
-msgstr "የሚቀጥሉት ተግባሮች የሚያቀርቡት አስገድዶ ማዘጋጃ አያያዝ ነው: ኮኦሬል: ኮቫር: መገመች: Fመሞከሪያ: መገናኛ: MDETERM, MINVERSE, MMULT, ዘዴ: ፒርሰን: PROB, RSQ, ስሎፕ: ስቴዬክስ: ድምር ውጤት: ድምርX2MY2, ድምርX2PY2, ድምርXMY2, Tመሞከሪያ: እርስዎ የ ቦታ ማመሳከሪያ እንደ ክርክር ከ ተጠቀሙ ከ እነዚህ አንዱን ተግባር በሚጠሩ ጊዜ: ተግባሩ እንደ ማዘጋጃ ተግባር መሆን ይፈልጋል: የሚቀጥለው ሰንጠረዥ የሚያቀርበው ምሳሌ የ ማስገደጃ ማዘጋጃ አያያዝ ነው:"
+msgstr "የሚቀጥሉት ተግባሮች የሚያቀርቡት አስገድዶ ማዘጋጃ አያያዝ ነው: ኮኦሬል: ኮቫር: መገመች: Fመሞከሪያ: መገናኛ: MDETERM, MINVERSE, MMULT, ዘዴ: ፒርሰን: PROB: RSQ: ስሎፕ: ስቴዬክስ: ድምር ውጤት: ድምርX2MY2: ድምርX2PY2: ድምርXMY2: Tመሞከሪያ: እርስዎ የ ቦታ ማመሳከሪያ እንደ ክርክር ከ ተጠቀሙ ከ እነዚህ አንዱን ተግባር በሚጠሩ ጊዜ: ተግባሩ እንደ ማዘጋጃ ተግባር መሆን ይፈልጋል: የሚቀጥለው ሰንጠረዥ የሚያቀርበው ምሳሌ የ ማስገደጃ ማዘጋጃ አያያዝ ነው:"
#: 04060107.xhp
msgctxt ""
@@ -16766,7 +16766,7 @@ msgctxt ""
"bm_id3158446\n"
"help.text"
msgid "<bookmark_value>MUNIT function</bookmark_value>"
-msgstr "<bookmark_value>MUNIT function</bookmark_value>"
+msgstr "<bookmark_value>የ መለኪያ ተግባር</bookmark_value>"
#: 04060107.xhp
msgctxt ""
@@ -17502,7 +17502,7 @@ msgctxt ""
"par_id3159366\n"
"help.text"
msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
-msgstr "በ ሰንጠረዥ ውስጥ: ይምረጡ መጠን የ ተቀየረው ማዘጋጃ የሚታይበት: ዋናው ማዘጋጃ ከ ነበረው n ረድፎች እና m አምዶች: እርስዎ የ መረጡት መጠን መያዝ ቢያንስ የ m ረድፎች እና n አምዶች: እና ከዛ በ ቀጥታ መቀመሪያ ያስገቡ: ይምረጡ ዋናውን ማዘጋጃ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+ትእዛዝ+Enter</caseinline><defaultinline>Shift+Ctrl+ማስገቢያ </defaultinline></switchinline> ወይንም እርስዎ የሚጠቀሙ ከሆነ የ <emph> ተግባር አዋቂ </emph> ምልክት ያድርጉ በ <emph> ማዘጋጃ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ: የ ተቀየረው ማዘጋጃ ይታያል በ ተመረጠው ኢላማ መጠን ውስጥ እና ከ መቀየር ራሱ በራሱ ይጠበቃል"
+msgstr "በ ሰንጠረዥ ውስጥ: ይምረጡ መጠን የ ተቀየረው ማዘጋጃ የሚታይበት: ዋናው ማዘጋጃ ከ ነበረው n ረድፎች እና m አምዶች: እርስዎ የ ሚመርጡት መጠን መያዝ አለበት ቢያንስ የ m ረድፎች እና n አምዶች: እና ከዛ በ ቀጥታ መቀመሪያ ያስገቡ: ይምረጡ ዋናውን ማዘጋጃ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+ትእዛዝ+ማስገቢያ </caseinline><defaultinline>Shift+Ctrl+ማስገቢያ </defaultinline></switchinline> ወይንም እርስዎ የሚጠቀሙ ከሆነ የ <emph> ተግባር አዋቂ </emph> ምልክት ያድርጉ በ <emph> ማዘጋጃ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ: የ ተቀየረው ማዘጋጃ ይታያል በ ተመረጠው ኢላማ መጠን ውስጥ እና ከ መቀየር ራሱ በራሱ ይጠበቃል"
#: 04060107.xhp
msgctxt ""
@@ -17574,7 +17574,7 @@ msgctxt ""
"par_id3152853\n"
"help.text"
msgid "<emph>data_Y</emph> is a single row or column range specifying the y coordinates in a set of data points."
-msgstr "<emph>ዳታ_Y</emph> ነጠላ ረድፍ ወይንም አምድ መጠን ነው የ y መገናኛ ከ ዳታ ነጥቦች ውስጥ ማሰናጃ"
+msgstr "<emph>ዳታ_Y </emph> ነጠላ ረድፍ ወይንም አምድ መጠን ነው የ y መገናኛ ከ ዳታ ነጥቦች ውስጥ ማሰናጃ"
#: 04060107.xhp
msgctxt ""
@@ -17582,7 +17582,7 @@ msgctxt ""
"par_id3154428\n"
"help.text"
msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
-msgstr "<emph>ዳታ_X</emph> ተመሳሳይ ነው ከ ነጠላ ረድፍ ወይንም አምድ መጠን ጋር ከ ተወሰነው የ x መገናኛ ከሆነ <emph>ዳታ_X</emph> ይደበቃል በ ነባር ለ <item type=\"literal\">1, 2, 3, ..., n</item> ከ አንድ በላይ ተለዋዋጭ ማሰናጃ ካለ ለ <emph>ዳታ_X</emph> ምናልባት ከ ተመሳሳይ በርካታ ረድፎች ወይንም አምዶች መጠን ይኖራል"
+msgstr "<emph>ዳታ_X </emph> ተመሳሳይ ነው ከ ነጠላ ረድፍ ወይንም አምድ መጠን ጋር ከ ተወሰነው የ x መገናኛ ከሆነ <emph> ዳታ_X </emph> ይደበቃል በ ነባር ለ <item type=\"literal\">1, 2, 3, ..., n</item> ከ አንድ በላይ ተለዋዋጭ ማሰናጃ ካለ ለ <emph> ዳታ_X </emph> ምናልባት ከ ተመሳሳይ በርካታ ረድፎች ወይንም አምዶች መጠን ይኖራል"
#: 04060107.xhp
msgctxt ""
@@ -17590,7 +17590,7 @@ msgctxt ""
"par_id0811200804502119\n"
"help.text"
msgid "LINEST finds a straight line <item type=\"literal\">y = a + bx</item> that best fits the data, using linear regression (the \"least squares\" method). With more than one set of variables the straight line is of the form <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
-msgstr "ቀጥታ መስመር የሚያገኘው ቀጥታ መስመር ነው <item type=\"literal\">y = a + bx</item> በ ጥሩ ልክ ለ ዳታ: ቀጥተኛ ወደ ነበረበት መመለሻ (የ \"least squares\" ዘዴ) ከ አንድ በላይ ማሰናጃ ለ ተለዋዋጭ ቀጥታ መስመር ነው ለ ፎርም <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
+msgstr "ቀጥታ መስመር የሚያገኘው ቀጥታ መስመር ነው <item type=\"literal\">y = a + bx</item> በ ጥሩ ልክ ለ ዳታ: ቀጥተኛ ወደ ነበረበት መመለሻ (የ \"አነስተኛ ስኴር\" ዘዴ) ከ አንድ በላይ ማሰናጃ ለ ተለዋዋጭ ቀጥታ መስመር ነው ለ ፎርም <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>"
#: 04060107.xhp
msgctxt ""
@@ -17598,7 +17598,7 @@ msgctxt ""
"par_id3154448\n"
"help.text"
msgid "If <emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
-msgstr "ከሆነ<emph>ቀጥተኛ አይነት</emph> ሀሰት የ ተገኘው ቀጥተኛ መስመር ከ ተገኘ ይገደዳል እንዲያልፍ በ ዋናው ውስጥ (መደበኛው ዜሮ ነው; y = bx) ከ ተደበቀ <emph>ቀጥተኛ አይነት</emph> ወደ ነባር እውነት ይመለሳል (መስመሩ በ ዋናው ውስጥ እንዲያልፍ አይገደድም)."
+msgstr "ከሆነ<emph> ቀጥተኛ አይነት </emph> ሀሰት የ ተገኘው ቀጥተኛ መስመር ከ ተገኘ ይገደዳል እንዲያልፍ በ ዋናው ውስጥ (መደበኛው ዜሮ ነው; y = bx) ከ ተደበቀ <emph> ቀጥተኛ አይነት </emph> ወደ ነባር እውነት ይመለሳል (መስመሩ በ ዋናው ውስጥ እንዲያልፍ አይገደድም)"
#: 04060107.xhp
msgctxt ""
@@ -17638,7 +17638,7 @@ msgctxt ""
"par_id3155468\n"
"help.text"
msgid "The results returned by the system (if <emph>stats</emph> = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>stats</emph> does not equal 0, other results are to be displayed."
-msgstr "በ ስርአቱ የሚመለሰው ውጤት (ከሆነ <emph>ስታስቲክስ</emph> = 0), ቢያንስ ስሎፕ ያሳያል የ ዝቅ ማድረጊያውን መስመር እና መገናኛውን ከ Y አክሲስ ጋር: ከሆነ <emph> ስታስቲክስ </emph> እኩል ካልሆነ ከ 0: ጋር ሌሎች ውጤቶች ይታያሉ"
+msgstr "በ ስርአቱ የሚመለሰው ውጤት (ከሆነ <emph> ስታስቲክስ </emph> = 0): ቢያንስ ስሎፕ ያሳያል የ ዝቅ ማድረጊያውን መስመር እና መገናኛውን ከ Y አክሲስ ጋር: ከሆነ <emph> ስታስቲክስ </emph> እኩል ካልሆነ ከ 0: ጋር ሌሎች ውጤቶች ይታያሉ"
#: 04060107.xhp
msgctxt ""
@@ -18142,7 +18142,7 @@ msgctxt ""
"par_id3158106\n"
"help.text"
msgid "The formula in the <emph>Formula</emph> Bar corresponds to each cell of the LINEST array <item type=\"input\">{=LINEST(C2:C8;A2:B8;1;1)}</item>"
-msgstr "መቀመሪያ በ <emph>መቀመሪያ</emph> መደርደሪያ ተመሳሳይ ነው ለ እያንዳንዱ ክፍል በ ቀጥታ መስመር ማዘጋጃ ውስጥ <item type=\"input\">{=ቀጥታ መስመር(C2:C8;A2:B8;1;1)}</item>"
+msgstr "መቀመሪያ በ <emph> መቀመሪያ </emph> መደርደሪያ ተመሳሳይ ነው ለ እያንዳንዱ ክፍል በ ቀጥታ መስመር ማዘጋጃ ውስጥ <item type=\"input\">{=ቀጥታ መስመር(C2:C8;A2:B8;1;1)}</item>"
#: 04060107.xhp
msgctxt ""
@@ -18318,7 +18318,7 @@ msgctxt ""
"par_id3163174\n"
"help.text"
msgid "<emph>FunctionType</emph> (optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
-msgstr "<emph>የ ተግባር አይነት</emph>(በ ምርጫ). ከሆነ የ ተግባር_አይነት = 0, ተግባሮች በ ፎርም y = m^x ይሰላሉ: ያለ በለዚያ: y = b*m^x ተግባሮች ይሰላሉ"
+msgstr "<emph>የ ተግባር አይነት </emph> (በ ምርጫ). ከሆነ የ ተግባር_አይነት = 0, ተግባሮች በ ፎርም y = m^x ይሰላሉ: ያለ በለዚያ: y = b*m^x ተግባሮች ይሰላሉ"
#: 04060107.xhp
msgctxt ""
@@ -18918,7 +18918,7 @@ msgctxt ""
"par_id3173817\n"
"help.text"
msgid "<emph>FunctionType</emph>(optional). If FunctionType = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
-msgstr "<emph>የ ተግባር አይነት</emph>(በ ምርጫ). ከሆነ የ ተግባር አይነት = 0, ተግባሮች በ ፎርም y = m^x ይሰላሉ: ያለ በለዚያ: y = b*m^x ተግባሮች ይሰላሉ"
+msgstr "<emph>የ ተግባር አይነት </emph> (በ ምርጫ). ከሆነ የ ተግባር አይነት = 0, ተግባሮች በ ፎርም y = m^x ይሰላሉ: ያለ በለዚያ: y = b*m^x ተግባሮች ይሰላሉ"
#: 04060107.xhp
msgctxt ""
@@ -19518,7 +19518,7 @@ msgctxt ""
"bm_id3148727\n"
"help.text"
msgid "<bookmark_value>DDE function</bookmark_value>"
-msgstr "<bookmark_value>DDE function</bookmark_value>"
+msgstr "<bookmark_value>አገናኝ ተግባር</bookmark_value>"
#: 04060109.xhp
msgctxt ""
@@ -19534,7 +19534,7 @@ msgctxt ""
"par_id3149434\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
-msgstr "<ahelp hid=\"HID_FUNC_DDE\">ይመልሳል ውጤት የ DDE-መሰረት ያደረገ አገናኝ </ahelp> የ ተገናኘው ይዞታ መጠን ወይንም ከፍል ከ ተቀየረ: የሚመለሰው ዋጋ እንዲሁም ይቀየራል: እርስዎ ሰንጠረዥ እንደገና መጫን አለብዎት ወይንም ይምረጡ <emph>ማረሚያ - አገናኝ</emph> የ ተሻሻለውን አገናኝ ለ መመልከት: መስቀልኛ-መምሪያ አገናኝ ይመልከቱ: ለምሳሌ: ከ <item type=\"productname\">%PRODUCTNAME</item> መግጠሚያ በ Windows machine በማስኬድ የ ሰነድ መፍጠሪያ በ Linux machine, የ ተፈቀደ አይደለም"
+msgstr "<ahelp hid=\"HID_FUNC_DDE\">ይመልሳል ውጤት የ DDE-መሰረት ያደረገ አገናኝ </ahelp> የ ተገናኘው ይዞታ መጠን ወይንም ከፍል ከ ተቀየረ: የሚመለሰው ዋጋ እንዲሁም ይቀየራል: እርስዎ ሰንጠረዥ እንደገና መጫን አለብዎት ወይንም ይምረጡ <emph> ማረሚያ - አገናኝ </emph> የ ተሻሻለውን አገናኝ ለ መመልከት: መስቀልኛ-መምሪያ አገናኝ ይመልከቱ: ለምሳሌ: ከ <item type=\"productname\">%PRODUCTNAME</item> መግጠሚያ በ Windows machine በማስኬድ የ ሰነድ መፍጠሪያ በ Linux machine, የ ተፈቀደ አይደለም"
#: 04060109.xhp
msgctxt ""
@@ -19670,7 +19670,7 @@ msgctxt ""
"par_id3153081\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr "<item type=\"input\">=ሀይለኛ ዳታ መቀያየሪያ(\"soffice\";\"c:\\office\\document\\motto.odt.\";\"የ ዛሬ መመሪያ\")</item> ይመልሳል መመሪያ በ ክፍል ውስጥ የያዘውን በዚህ መቀመሪያ ውስጥ: መጀመሪያ እርስዎ ማስገባት አለብዎት መስመር በ መመሪያ.sxw ሰነድ ውስጥ በያዘው ውስጥ: የ መመሪያ ጽሁፍ መገለጽ አለበት የ መጀመሪያው መስመር በ ተሰየመው ክፍል ውስጥ<item type=\"literal\">የ ዛሬ መመሪያ</item> (በ <item type=\"productname\">%PRODUCTNAME</item> መጻፊያ ውስጥ <emph>ማስገቢያ - ክፍል</emph>) መመሪያው ከ ተሻሻለ (እና ከ ተቀመጠ) በ <item type=\"productname\">%PRODUCTNAME</item> የ መጻፊያ ሰነድ: መመሪያ ይሻሻላል ለ ሁሉም <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ክፍል ይህ ሀይለኛ ዳታ መቀያየሪያ በሚገለጽበት"
+msgstr "<item type=\"input\">=ሀይለኛ ዳታ መቀያየሪያ(\"soffice\";\"c:\\office\\document\\motto.odt.\";\"የ ዛሬ መመሪያ\")</item> ይመልሳል መመሪያ በ ክፍል ውስጥ የያዘውን በዚህ መቀመሪያ ውስጥ: መጀመሪያ እርስዎ ማስገባት አለብዎት መስመር በ መመሪያ.sxw ሰነድ ውስጥ በያዘው ውስጥ: የ መመሪያ ጽሁፍ መገለጽ አለበት የ መጀመሪያው መስመር በ ተሰየመው ክፍል ውስጥ <item type=\"literal\"> የ ዛሬ መመሪያ </item> (በ <item type=\"productname\">%PRODUCTNAME</item> መጻፊያ ውስጥ <emph> ማስገቢያ - ክፍል </emph>) መመሪያው ከ ተሻሻለ (እና ከ ተቀመጠ) በ <item type=\"productname\">%PRODUCTNAME</item> የ መጻፊያ ሰነድ: መመሪያ ይሻሻላል ለ ሁሉም <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ክፍል ይህ ሀይለኛ ዳታ መቀያየሪያ በሚገለጽበት"
#: 04060109.xhp
msgctxt ""
@@ -19830,7 +19830,7 @@ msgctxt ""
"par_id3159112\n"
"help.text"
msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
-msgstr "<item type=\"input\">=ማውጫ(ዋጋዎች;4;1)</item> ይመልሳል ዋጋ ከ ረድፍ 4 እና አምድ 1 ውስጥ: የ ዳታቤዝ መጠን የ ተገለጸው ከ <emph>ዳታ - መግለጫ </emph> እንደ <emph>ዋጋዎች</emph> ነው"
+msgstr "<item type=\"input\">=ማውጫ(ዋጋዎች;4;1)</item> ይመልሳል ዋጋ ከ ረድፍ 4 እና አምድ 1 ውስጥ: የ ዳታቤዝ መጠን የ ተገለጸው ከ <emph> ዳታ - መግለጫ </emph> እንደ <emph> ዋጋዎች </emph> ነው"
#: 04060109.xhp
msgctxt ""
@@ -19990,7 +19990,7 @@ msgctxt ""
"par_id3149711\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
-msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">የ አምድ ቁጥር ይመልሳል ለ ክፍል ማመሳከሪያ</ahelp> ማመሳከሪያው ክፍል ከሆነ: የ አምድ ቁጥር ይመልሳል ለ ክፍሉ: ማመሳከሪያው የ ክፍል መጠን ከሆነ: ተመሳሳይ የ አምድ ቁጥሮች በ አንድ-ረድፍ ውስጥ ይመልሳል <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">ማዘጋጃ</link> መቀመሪያ ከ ገባ<link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">እንደ መቀመሪያ ማዘጋጃ</link> የ አምድ ተግባር ማመሳከሪያ ደንብ መጠን አይጠቀምም በ መቀመሪያ ማዘጋጃ ውስጥ: የ አምድ ቁጥር ብቻ ለ መጀመሪያው ክፍል መጠን ይመለሳል"
+msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">የ አምድ ቁጥር ይመልሳል ለ ክፍል ማመሳከሪያ</ahelp> ማመሳከሪያው ክፍል ከሆነ: የ አምድ ቁጥር ይመልሳል ለ ክፍሉ: ማመሳከሪያው የ ክፍል መጠን ከሆነ: ተመሳሳይ የ አምድ ቁጥሮች በ አንድ-ረድፍ ውስጥ ይመልሳል <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\"> ማዘጋጃ </link> መቀመሪያ ከ ገባ <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\"> እንደ መቀመሪያ ማዘጋጃ </link> የ አምድ ተግባር ማመሳከሪያ ደንብ መጠን አይጠቀምም በ መቀመሪያ ማዘጋጃ ውስጥ: የ አምድ ቁጥር ብቻ ለ መጀመሪያው ክፍል መጠን ይመለሳል"
#: 04060109.xhp
msgctxt ""
@@ -20182,7 +20182,7 @@ msgctxt ""
"par_id3149984\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">በ ቁመት መፈለጊያ በ ማመሳከሪያ ወደ አጓዳኝ ክፍሎች በ ቀኝ በኩል: </ahelp> ይህ ተግባር ይመረምራል የ ተወሰነ ዋጋ ተይዞ እንደሆን በ መጀመሪያው አምድ ማዘጋጃ ውስጥ: ተግባሩ ይመልሳል ዋጋ በ ተመሳሳይ ረድፍ ለ ተሰየመው አምድ በ <item type=\"literal\"> ማውጫ </item> ውስጥ: ከሆነ የ <item type=\"literal\"> መለያ ደንብ </item> ደንብ ይደበቃል ወይንም ወደ እውነት ይሰናዳል ወይንም አንድ: ዳታው የ ተለየው እየጨመረ በሚሄድ መለያ ደንብ እንደሆነ ይታሰባል: ስለዚህ ትክክለኛው <item type=\"literal\">መፈለጊያ መመዘኛ</item> አልተገኘም: የ መጨረሻው ዋጋ ከ መመዘኛው የሚያንስ ይመልሳል: ከሆነ <item type=\"literal\">መለያ ደንብ</item> እንደ ሀሰት ይሰናዳል ወይንም ዜሮ ትክክለኛ ተመሳሳይ መገኘት አለበት: ያለ በለዚያ የ ስህተት <emph> ስህተት: ዋጋ ዝግጁ አይደለም </emph> ይሆናል ውጤቱ: ስለዚህ በ ዜሮ ዋጋ ዳታ መለየት አያስፈልግም እየጨመረ በሚሄድ መለያ ደንብ"
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">በ ቁመት መፈለጊያ በ ማመሳከሪያ ወደ አጓዳኝ ክፍሎች በ ቀኝ በኩል: </ahelp> ይህ ተግባር ይመረምራል የ ተወሰነ ዋጋ ተይዞ እንደሆን በ መጀመሪያው አምድ ማዘጋጃ ውስጥ: ተግባሩ ይመልሳል ዋጋ በ ተመሳሳይ ረድፍ ለ ተሰየመው አምድ በ <item type=\"literal\"> ማውጫ </item> ውስጥ: ከሆነ የ <item type=\"literal\"> መለያ ደንብ </item> ደንብ ይደበቃል ወይንም ወደ እውነት ይሰናዳል ወይንም አንድ: ዳታው የ ተለየው እየጨመረ በሚሄድ መለያ ደንብ እንደሆነ ይታሰባል: ስለዚህ ትክክለኛው <item type=\"literal\"> መፈለጊያ መመዘኛ </item> አልተገኘም: የ መጨረሻው ዋጋ ከ መመዘኛው የሚያንስ ይመልሳል: ከሆነ <item type=\"literal\"> መለያ ደንብ </item> እንደ ሀሰት ይሰናዳል ወይንም ዜሮ ትክክለኛ ተመሳሳይ መገኘት አለበት: ያለ በለዚያ የ ስህተት <emph> ስህተት: ዋጋ ዝግጁ አይደለም </emph> ይሆናል ውጤቱ: ስለዚህ በ ዜሮ ዋጋ ዳታ መለየት አያስፈልግም እየጨመረ በሚሄድ መለያ ደንብ"
#: 04060109.xhp
msgctxt ""
@@ -20662,7 +20662,7 @@ msgctxt ""
"bm_id3159273\n"
"help.text"
msgid "<bookmark_value>LOOKUP function</bookmark_value>"
-msgstr "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>በ አግድም መፈለጊያ ተግባር</bookmark_value>"
#: 04060109.xhp
msgctxt ""
@@ -20678,7 +20678,7 @@ msgctxt ""
"par_id3153389\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">የ ክፍል ይዞታ ይመልሳል አንዱን ከ አንድ-ረድፍ ወይንም አንድ-አምድ መጠን ውስጥ</ahelp> በ ምርጫ: የ ተመደበው ዋጋ (ተመሳሳይ ማውጫ) ይመልሳል የ ተለየ አምድ እና ረድፍ: ሲነፃፀር ከ <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">በ ቁመት መፈለጊያ</link> እና <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">በ አግድም መፈለጊያ</link> አቅጣጫ መፈለጊያ እና ውጤት የ ተለያዩ ቦታዎች ሊሆኑ ይችላሉ: አጓዳኝ መሆን የለባቸውም: በ ተጨማሪ አቅጣጫ መፈለጊያ ከ በ ቁመት መፈለጊያ ጋር መለየት አለበት እየጨመር በሚሄድ መለያ: ያለ በለዚያ መፈለጊያው የሚጠቅም ውጤት አይመልስም"
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">የ ክፍል ይዞታ ይመልሳል አንዱን ከ አንድ-ረድፍ ወይንም አንድ-አምድ መጠን ውስጥ </ahelp> በ ምርጫ: የ ተመደበው ዋጋ (ተመሳሳይ ማውጫ) ይመልሳል የ ተለየ አምድ እና ረድፍ: ሲነፃፀር ከ <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\"> በ ቁመት መፈለጊያ </link> እና <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\"> በ አግድም መፈለጊያ </link> አቅጣጫ መፈለጊያ እና ውጤት የ ተለያዩ ቦታዎች ሊሆኑ ይችላሉ: አጓዳኝ መሆን የለባቸውም: በ ተጨማሪ አቅጣጫ መፈለጊያ ከ በ ቁመት መፈለጊያ ጋር መለየት አለበት እየጨመር በሚሄድ መለያ: ያለ በለዚያ መፈለጊያው የሚጠቅም ውጤት አይመልስም"
#: 04060109.xhp
msgctxt ""
@@ -20918,7 +20918,7 @@ msgctxt ""
"par_id3150625\n"
"help.text"
msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
-msgstr "<item type=\"input\">=መምረጫ(A1;B1;B2;B3;\"ዛሬ\";\"ትናንትና\";\"ነገ\")</item>, ለምሳሌ: ይመልሳል ይዞታዎች ለ ክፍል B2 ለ A1 = 2; ለ A1 = 4, ተግባሪ ይመልሳል በ ጽሁፍ \"ዛሬ\"."
+msgstr "<item type=\"input\">=መምረጫ(A1;B1;B2;B3;\"ዛሬ\";\"ትናንትና\";\"ነገ\")</item>, ለምሳሌ: ይመልሳል ይዞታዎች ለ ክፍል B2 ለ A1 = 2; ለ A1 = 4, ተግባሪ ይመልሳል በ ጽሁፍ \"ዛሬ\":"
#: 04060109.xhp
msgctxt ""
@@ -20966,7 +20966,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "See also: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr "ይህን ይመልከቱ: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">በ ቁመት መፈለጊያ</link> (አምዶች እና ረድፎች ተቀይረዋል)"
+msgstr "ይህን ይመልከቱ: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\"> በ ቁመት መፈለጊያ </link> (አምዶች እና ረድፎች ተቀይረዋል)"
#: 04060109.xhp
msgctxt ""
@@ -20990,7 +20990,7 @@ msgctxt ""
"par_id3154564\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
-msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">የ ረድፍ ቁጥር ይመልሳል ለ ክፍል ማመሳከሪያ</ahelp> ማመሳከሪያው ክፍል ከሆነ: የ ረድፍ ቁጥር ይመልሳል ለ ክፍሉ: ማመሳከሪያው የ ክፍል መጠን ከሆነ: ተመሳሳይ የ ረድፍ ቁጥሮች በ አንድ-አምድ ውስጥ ይመልሳል <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">ማዘጋጃ</link> መቀመሪያ ከ ገባ<link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">እንደ መቀመሪያ ማዘጋጃ</link> የ ረድፍ ተግባር ማመሳከሪያ መጠን አይጠቀምም በ መቀመሪያ ማዘጋጃ ውስጥ: የ ረድፍ ቁጥር ብቻ ለ መጀመሪያው ክፍል መጠን ይመለሳል"
+msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">የ ረድፍ ቁጥር ይመልሳል ለ ክፍል ማመሳከሪያ </ahelp> ማመሳከሪያው ክፍል ከሆነ: የ ረድፍ ቁጥር ይመልሳል ለ ክፍሉ: ማመሳከሪያው የ ክፍል መጠን ከሆነ: ተመሳሳይ የ ረድፍ ቁጥሮች በ አንድ-አምድ ውስጥ ይመልሳል <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\"> ማዘጋጃ </link> መቀመሪያ ከ ገባ <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\"> እንደ መቀመሪያ ማዘጋጃ </link> የ ረድፍ ተግባር ማመሳከሪያ መጠን አይጠቀምም በ መቀመሪያ ማዘጋጃ ውስጥ: የ ረድፍ ቁጥር ብቻ ለ መጀመሪያው ክፍል መጠን ይመለሳል"
#: 04060109.xhp
msgctxt ""
@@ -21198,7 +21198,7 @@ msgctxt ""
"par_idN11803\n"
"help.text"
msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
-msgstr "ለ መክፈት hyperlinked ክፍል በ ፊደል ገበታ: ይምረጡ ክፍሉን: ይጫኑ F2 ወደ ማረሚያ ዘዴ ለ መግባት: መጠቆሚያውን ከ hyperlink ፊት ለ ፊት ያድርጉ: እና ከዛ ይጫኑ Shift+F10, እና ከዛ ይምረጡ <emph>Hyperlink መክፈቻ</emph>."
+msgstr "ለ መክፈት hyperlinked ክፍል በ ፊደል ገበታ: ይምረጡ ክፍሉን: ይጫኑ F2 ወደ ማረሚያ ዘዴ ለ መግባት: መጠቆሚያውን ከ hyperlink ፊት ለ ፊት ያድርጉ: እና ከዛ ይጫኑ Shift+F10, እና ከዛ ይምረጡ <emph> Hyperlink መክፈቻ </emph>"
#: 04060109.xhp
msgctxt ""
@@ -21422,7 +21422,7 @@ msgctxt ""
"par_id3864253\n"
"help.text"
msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
-msgstr "የ ንዑስ ጠቅላላ ዋጋዎች ለ pivot ሰንጠረዥ የሚጠቀሙት ተግባር የሚጠቀሙ ከሆነ ነው: \"በራሱ\" (በማስገደጃው ካልተገለጸ በስተቀር: ይህን ይመልከቱ <item type=\"literal\">ሁለተኛውን አገባብ </item> ከ ታች በኩል)"
+msgstr "የ ንዑስ ጠቅላላ ዋጋዎች ለ pivot ሰንጠረዥ የሚጠቀሙት ተግባር የሚጠቀሙ ከሆነ ነው: \"በራሱ\" (በማስገደጃው ካልተገለጸ በስተቀር: ይህን ይመልከቱ <item type=\"literal\"> ሁለተኛውን አገባብ </item> ከ ታች በኩል)"
#: 04060109.xhp
msgctxt ""
@@ -21718,7 +21718,7 @@ msgctxt ""
"hd_id3153072\n"
"help.text"
msgid "BASE"
-msgstr "BASE"
+msgstr "ቤዝ"
#: 04060110.xhp
msgctxt ""
@@ -21726,7 +21726,7 @@ msgctxt ""
"par_id3153289\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
-msgstr "<ahelp hid=\"HID_FUNC_BASIS\">መቀየሪያ የ አዎንታዊ ኢንቲጀር ወደ ተወሰነ base ወደ ጽሁፍ ከ <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">የ ቁጥር መስጫ ስርአት</link>.</ahelp> በ አሀዞች 0-9 እና በ ፊደሎች A-Z መጠቀም ይችላሉ"
+msgstr "<ahelp hid=\"HID_FUNC_BASIS\">መቀየሪያ የ አዎንታዊ ኢንቲጀር ወደ ተወሰነ ቤዝ ወደ ጽሁፍ ከ <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\"> የ ቁጥር መስጫ ስርአት </link></ahelp> በ አሀዞች 0-9 እና በ ፊደሎች A-Z መጠቀም ይችላሉ"
#: 04060110.xhp
msgctxt ""
@@ -21758,7 +21758,7 @@ msgctxt ""
"par_id3159262\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
-msgstr "<emph>Radix</emph> የሚያመለክተው የ ቁጥር ስርአት ነው: ማንኛውም የ አሉታዊ ኢንቲጀር በ 2 እና በ 36. መካከል መሆን ይችላል"
+msgstr "<emph>ቤዝ </emph> የሚያመለክተው የ ቁጥር ስርአት ነው: ማንኛውም የ አሉታዊ ኢንቲጀር በ 2 እና በ 36. መካከል መሆን ይችላል"
#: 04060110.xhp
msgctxt ""
@@ -21830,7 +21830,7 @@ msgctxt ""
"bm_id3149321\n"
"help.text"
msgid "<bookmark_value>CHAR function</bookmark_value>"
-msgstr "<bookmark_value>CHAR function</bookmark_value>"
+msgstr "<bookmark_value>የ ባህሪ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -22022,7 +22022,7 @@ msgctxt ""
"bm_id3149688\n"
"help.text"
msgid "<bookmark_value>CONCATENATE function</bookmark_value>"
-msgstr "<bookmark_value>CONCATENATE function</bookmark_value>"
+msgstr "<bookmark_value>አገናኝ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -22102,7 +22102,7 @@ msgctxt ""
"par_id3156361\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">ጽሁፍ መቀየሪያ ወደ ባህሪዎች ከ <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\"> ቁጥር ስርአት </link> ወደ አዎንታዊ ኢንቲጀር በ base radix በ ተሰጠው: </ahelp> የ radix በዚህ መጠን ውስጥ መሆን አለበት ከ 2 እስከ 36. ክፍተቶች እና tabs ይተዋሉ: የ <emph> ጽሁፍ </emph> ሜዳ ፊደል-መመጠኛ አይደለም"
+msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">ጽሁፍ መቀየሪያ ወደ ባህሪዎች ከ <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\"> ቁጥር ስርአት </link> ወደ አዎንታዊ ኢንቲጀር በ ቤዝ መሰረት በ ተሰጠው: </ahelp> ቤዝ በዚህ መጠን ውስጥ መሆን አለበት ከ 2 እስከ 36. ክፍተቶች እና tabs ይተዋሉ: የ <emph> ጽሁፍ </emph> ሜዳ ፊደል-መመጠኛ አይደለም"
#: 04060110.xhp
msgctxt ""
@@ -22142,7 +22142,7 @@ msgctxt ""
"par_id3145241\n"
"help.text"
msgid "<emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
-msgstr "<emph>Radix</emph> የሚያመለክተው የ ቁጥር ስርአት ነው: መሆን ይችላል ማንኛውም የ አሉታዊ ኢንቲጀር በ 2 እና በ 36. መካከል"
+msgstr "<emph>ቤዝ </emph> የሚያመለክተው የ ቁጥር ቤዝ ስርአት ነው: መሆን ይችላል ማንኛውም የ አሉታዊ ኢንቲጀር በ 2 እና በ 36. መካከል"
#: 04060110.xhp
msgctxt ""
@@ -22198,7 +22198,7 @@ msgctxt ""
"par_id3153049\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places."
-msgstr "<ahelp hid=\"HID_FUNC_DM\">ቁጥር ወደ ገንዘብ አቀራረብ መቀየሪያ: ወደ ተወሰነ የ ዴሲማል ቦታ ማጠጋጊያ</ahelp> በ <item type=\"literal\">ዋጋ</item> ሜዳ ውስጥ ያስገቡ ወደ ገንዘብ የሚቀየረውን ቁጥር ያስገቡ: በ ምርጫ: እርስዎ የ ዴሲማል ቦታ ማስገባት ይችላሉ: በ <item type=\"literal\">ዴሲማል</item> ሜዳ ውስጥ: ምንም ዋጋ ካልተወሰነ: ሁሉም ቁጥሮች በ ገንዘብ አቀራረብ ውስጥ የሚታየው ሁለት የ ዴሲማል ቦታ ነው"
+msgstr "<ahelp hid=\"HID_FUNC_DM\">ቁጥር ወደ ገንዘብ አቀራረብ መቀየሪያ: ወደ ተወሰነ የ ዴሲማል ቦታ ማጠጋጊያ </ahelp> በ <item type=\"literal\"> ዋጋ </item> ሜዳ ውስጥ ያስገቡ ወደ ገንዘብ የሚቀየረውን ቁጥር ያስገቡ: በ ምርጫ: እርስዎ የ ዴሲማል ቦታ ማስገባት ይችላሉ: በ <item type=\"literal\"> ዴሲማል </item> ሜዳ ውስጥ: ምንም ዋጋ ካልተወሰነ: ሁሉም ቁጥሮች በ ገንዘብ አቀራረብ ውስጥ የሚታየው ሁለት የ ዴሲማል ቦታ ነው"
#: 04060110.xhp
msgctxt ""
@@ -22526,7 +22526,7 @@ msgctxt ""
"par_id964384\n"
"help.text"
msgid "<ahelp hid=\".\">The JIS function converts half-width to full-width ASCII and katakana characters. Returns a text string.</ahelp>"
-msgstr "<ahelp hid=\".\">የ JIS ተግባር ይቀይራል ሙሉ-ስፋት ወደ ግማሽ-ስፋት ASCII እና katakana ባአህሪዎች: የ ጽሁፍ ሀረግ ይመልሳል </ahelp>"
+msgstr "<ahelp hid=\".\">የ JIS ተግባር ይቀይራል ሙሉ-ስፋት ወደ ግማሽ-ስፋት ASCII እና katakana ባህሪዎች: የ ጽሁፍ ሀረግ ይመልሳል </ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -22614,7 +22614,7 @@ msgctxt ""
"par_id3147274\n"
"help.text"
msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
-msgstr "<emph>ጽሁፍ</emph> ጽሁፍ ነው የ ቃሉ የ መጀመሪያ ክፍል የሚወሰንበት"
+msgstr "<emph>ጽሁፍ </emph> ጽሁፍ ነው የ ቃሉ የ መጀመሪያ ክፍል የሚወሰንበት"
#: 04060110.xhp
msgctxt ""
@@ -22686,7 +22686,7 @@ msgctxt ""
"par_id2947274\n"
"help.text"
msgid "<emph>Text</emph> is the text where the initial partial words are to be determined."
-msgstr "<emph>ጽሁፍ</emph> ጽሁፍ ነው የ ቃሉ የ መጀመሪያ ክፍል የሚወሰንበት"
+msgstr "<emph>ጽሁፍ </emph> ጽሁፍ ነው የ ቃሉ የ መጀመሪያ ክፍል የሚወሰንበት"
#: 04060110.xhp
msgctxt ""
@@ -22694,7 +22694,7 @@ msgctxt ""
"par_id2953152\n"
"help.text"
msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want LEFTB to extract, based on bytes. If this parameter is not defined, one character is returned."
-msgstr "<emph>ቁጥር_ባይቶች</emph> (በ ምርጫ) የ ባህሪዎች ቁጥር መወሰኛ እርስዎ የሚፈልጉትን በ ግራ ባይት የሚራገፍበት: ባቶችን መሰረት ባደረገ: ይህ ደንብ ካልተገለጸ: አንድ ባህሪ ይመልሳል"
+msgstr "<emph>ቁጥር_ባይቶች </emph> (በ ምርጫ) የ ባህሪዎች ቁጥር መወሰኛ እርስዎ የሚፈልጉትን በ ግራ ባይት የሚራገፍበት: ባይቶችን መሰረት ባደረገ ነው: ይህ ደንብ ካልተገለጸ: አንድ ባህሪ ይመልሳል"
#: 04060110.xhp
msgctxt ""
@@ -23302,7 +23302,7 @@ msgctxt ""
"par_id3148925\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
-msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">የ ጽሁፍ ሀረግ በ ሌላ የ ጽሁፍ ሀረግ መቀየሪያ </ahelp> ይህን ተግባር መጠቀም ይችላሉ ለ መቀየር ሁለቱንም ባህሪዎች እና ቁጥሮች (ራሱ በራሱ ወደ ጽሁፍ ይቀየራል). የ ተግባሩ ውጤት ሁልጊዜ የሚታየው እንደ ጽሁፍ ነው: እርስዎ በበለጠ ስሌቶች መፈጸም ከፈለጉ በ ቁጥር ወደ ጽሁፍ የተቀየረ: እርስዎ እንደገና ወደ ቁጥር መቀየር አለብዎት በ መጠቀም የ <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\"> ዋጋ </link> ተግባር"
+msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">የ ጽሁፍ ሀረግ በ ሌላ የ ጽሁፍ ሀረግ መቀየሪያ </ahelp> ይህን ተግባር መጠቀም ይችላሉ ለ መቀየር ሁለቱንም ባህሪዎች እና ቁጥሮች (ራሱ በራሱ ወደ ጽሁፍ ይቀየራል): የ ተግባሩ ውጤት ሁልጊዜ የሚታየው እንደ ጽሁፍ ነው: እርስዎ በበለጠ ስሌቶች መፈጸም ከፈለጉ በ ቁጥር ወደ ጽሁፍ የተቀየረ: እርስዎ እንደገና ወደ ቁጥር መቀየር አለብዎት በ መጠቀም የ <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\"> ዋጋ </link> ተግባር"
#: 04060110.xhp
msgctxt ""
@@ -23582,7 +23582,7 @@ msgctxt ""
"par_id2953350\n"
"help.text"
msgid "<emph>Number_bytes</emph> (optional) specifies the number of characters you want RIGHTB to extract, based on bytes."
-msgstr "<emph>የ ቁጥር_ባይቶች</emph> (በ ምርጫ) የሚገልጸው የ ባህሪዎች ቁጥር ነው እርስዎ የሚፈልጉትን በ ቀኝ ባይት ለማራገፍ: ባይቶችን መሰረት ባደረገ"
+msgstr "<emph>የ ቁጥር_ባይቶች </emph> (በ ምርጫ) የሚገልጸው የ ባህሪዎች ቁጥር ነው እርስዎ የሚፈልጉትን በ ቀኝ ባይት ለማራገፍ: ባይቶችን መሰረት ባደረገ"
#: 04060110.xhp
msgctxt ""
@@ -23686,7 +23686,7 @@ msgctxt ""
"par_id3153318\n"
"help.text"
msgid "<emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
-msgstr "<emph>ዘዴ</emph> (በ ምርጫ) የሚያሳየው የ ቀላልነቱን ደረጃ ነው: ዋጋው ከፍ ባለ ቁጥር የ ሮማውያን ቁጥር እየቀለለ ይሄዳል"
+msgstr "<emph>ዘዴ </emph> (በ ምርጫ) የሚያሳየው የ ቀላልነቱን ደረጃ ነው: ዋጋው ከፍ ባለ ቁጥር የ ሮማውያን ቁጥር እየቀለለ ይሄዳል"
#: 04060110.xhp
msgctxt ""
@@ -24142,7 +24142,7 @@ msgctxt ""
"bm_id0907200904030935\n"
"help.text"
msgid "<bookmark_value>UNICHAR function</bookmark_value>"
-msgstr "<bookmark_value>UNICHAR function</bookmark_value>"
+msgstr "<bookmark_value>የ ዩኒኮድ ባህሪ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24262,7 +24262,7 @@ msgctxt ""
"par_id050220170755393174\n"
"help.text"
msgid "See also the UNICHAR() function."
-msgstr "ይህን ይመልከቱ የ UNICHAR() ተግባር."
+msgstr "ይህን ይመልከቱ የ ዩኒኮድ ባህሪ ተግባር() ተግባር."
#: 04060110.xhp
msgctxt ""
@@ -24286,7 +24286,7 @@ msgctxt ""
"par_id3162905\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GROSS\">የ ተወሰነውን ሀረግ መቀየሪያ ወደ <emph>ጽሁፍ</emph> ሜዳ ወደ uppercase.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GROSS\">የ ተወሰነውን ሀረግ መቀየሪያ ወደ <emph> ጽሁፍ </emph> ሜዳ ወደ ላይኛው ጉዳይ </ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -24334,7 +24334,7 @@ msgctxt ""
"bm_id3150802\n"
"help.text"
msgid "<bookmark_value>VALUE function</bookmark_value>"
-msgstr "<bookmark_value>VALUE function</bookmark_value>"
+msgstr "<bookmark_value>የ ዋጋ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -25078,7 +25078,7 @@ msgctxt ""
"par_id3148837\n"
"help.text"
msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
-msgstr "አነስተኛ የ አስተዳዳሪ ተግባሮች <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">የ ተግባሮች መቁጠሪያ ያግኙ</link> እና <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">የ ተግባሮች ዳታ ያግኙ</link> መውጣት አለብዎት: እነዚህን ለ መጠቀም: ተግባሮች እንዲሁም እንደ ደንብ አይነቶች እና ዋጋዎች ይመልሳል እና መወሰን ይቻላል: እንደ መመለሻ ዋጋዎች: የ ድርብ እና ሀረገ አይነቶች የ ተደገፉ ናቸው: እንደ ደንቦች: በ ተጨማሪ የ ክፍል ቦታዎች <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\"> ድርብ ማዘጋጃ </link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\"> ሀረግ ማዘጋጃ </link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\"> ክፍል ማዘጋጃ </link> የ ተደገፉ ናቸው"
+msgstr "አነስተኛ የ አስተዳዳሪ ተግባሮች <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\"> የ ተግባሮች መቁጠሪያ ያግኙ </link> እና <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\"> የ ተግባሮች ዳታ ያግኙ </link> መውጣት አለብዎት: እነዚህን ለ መጠቀም: ተግባሮች እንዲሁም እንደ ደንብ አይነቶች እና ዋጋዎች ይመልሳል እና መወሰን ይቻላል: እንደ መመለሻ ዋጋዎች: የ ድርብ እና ሀረገ አይነቶች የ ተደገፉ ናቸው: እንደ ደንቦች: በ ተጨማሪ የ ክፍል ቦታዎች <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\"> ድርብ ማዘጋጃ </link> <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\"> ሀረግ ማዘጋጃ </link> እና <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\"> ክፍል ማዘጋጃ </link> የ ተደገፉ ናቸው"
#: 04060112.xhp
msgctxt ""
@@ -25214,7 +25214,7 @@ msgctxt ""
"par_id3150432\n"
"help.text"
msgid "Platform-dependent like int"
-msgstr "መድረክ-ጥገኛ እንደ int"
+msgstr "መድረክ-ጥገኛ እንደ ኢንቲጀር"
#: 04060112.xhp
msgctxt ""
@@ -25278,7 +25278,7 @@ msgctxt ""
"par_id3153019\n"
"help.text"
msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
-msgstr "እርስዎ ቀጥሎ መግለጫዎች ያገኛሉ ለ እነዚህ ተግባሮች: የሚባሉ በ <switchinline select=\"sys\"><caseinline select=\"UNIX\">የሚካፈሉት መጻህፍት ቤት </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+msgstr "እርስዎ ቀጥሎ መግለጫዎች ያገኛሉ ለ እነዚህ ተግባሮች: የሚባሉ በ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> የሚካፈሉት መጻህፍት ቤት </caseinline><defaultinline> external DLL </defaultinline></switchinline>."
#: 04060112.xhp
msgctxt ""
@@ -26982,7 +26982,7 @@ msgctxt ""
"par_id3149354\n"
"help.text"
msgid "BESSELK(X; N)"
-msgstr "የ ተሻሻለው የ ሁለተኛ Bessel(X; N)"
+msgstr "የ ቤሴልK(X; N)"
#: 04060115.xhp
msgctxt ""
@@ -27046,7 +27046,7 @@ msgctxt ""
"par_id3146877\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the Bessel function of the second kind Yn(x).</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">የ ተሻሻለውን ቤሴል ተግባር ያሰላል ሁለተኛ አይነት Yn(x).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">የ ቤሴል ተግባር ያሰላል ሁለተኛ አይነት Yn(x).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -27422,7 +27422,7 @@ msgctxt ""
"par_id3148768\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
-msgstr "<emph>ቁጥር</emph> የ ዴሲማል ቁጥር ነው: ቁጥሩ አሉታዊ ከሆነ: ተግባር ይመልሳል የ ባይነሪ ቁጥር ከ 10 ባህሪዎች ጋር: በጣም አስፈላጊው ቢት የ ምልክት ቢት ነው: ቀሪዎቹ ሌሎች 9 ቢቶች ዋጋ ይመልሳሉ"
+msgstr "<emph>ቁጥር </emph> የ ዴሲማል ቁጥር ነው: ቁጥሩ አሉታዊ ከሆነ: ተግባር ይመልሳል የ ባይነሪ ቁጥር ከ 10 ባህሪዎች ጋር: በጣም አስፈላጊው ቢት የ ምልክት ቢት ነው: ቀሪዎቹ ሌሎች 9 ቢቶች ዋጋ ይመልሳሉ"
#: 04060115.xhp
msgctxt ""
@@ -27494,7 +27494,7 @@ msgctxt ""
"par_id3152820\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
-msgstr "<emph>ቁጥር</emph> የ ዴሲማል ቁጥር ነው: ቁጥሩ አሉታዊ ከሆነ: ተግባር ይመልሳል የ ሄክሳ ደሲማል ቁጥር ከ 10 ባህሪዎች ጋር (40 ቢቶች). በጣም አስፈላጊው ቢት የ ምልክት ቢት ነው: ቀሪዎቹ ሌሎች 39 ቢቶች ዋጋ ይመልሳሉ"
+msgstr "<emph>ቁጥር </emph> የ ዴሲማል ቁጥር ነው: ቁጥሩ አሉታዊ ከሆነ: ተግባር ይመልሳል የ ሄክሳ ደሲማል ቁጥር ከ 10 ባህሪዎች ጋር (40 ቢቶች). በጣም አስፈላጊው ቢት የ ምልክት ቢት ነው: ቀሪዎቹ ሌሎች 39 ቢቶች ዋጋ ይመልሳሉ"
#: 04060115.xhp
msgctxt ""
@@ -27566,7 +27566,7 @@ msgctxt ""
"par_id3155991\n"
"help.text"
msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
-msgstr "<emph>ቁጥር</emph> የ ዴሲማል ቁጥር ነው: ቁጥሩ አሉታዊ ከሆነ: ተግባር ይመልሳል የ ኦክታል ቁጥር ከ 10 ባህሪዎች ጋር (30 ቢቶች). በጣም አስፈላጊው ቢት የ ምልክት ቢት ነው: ቀሪዎቹ ሌሎች 29 ቢቶች ዋጋ ይመልሳሉ"
+msgstr "<emph>ቁጥር </emph> የ ዴሲማል ቁጥር ነው: ቁጥሩ አሉታዊ ከሆነ: ተግባር ይመልሳል የ ኦክታል ቁጥር ከ 10 ባህሪዎች ጋር (30 ቢቶች). በጣም አስፈላጊው ቢት የ ምልክት ቢት ነው: ቀሪዎቹ ሌሎች 29 ቢቶች ዋጋ ይመልሳሉ"
#: 04060115.xhp
msgctxt ""
@@ -27638,7 +27638,7 @@ msgctxt ""
"par_id3149715\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
-msgstr "<emph>ዝቅተኛ መጠን</emph> ዝቅተኛ መጠን ነው የ ጠቅላላው integral አካል"
+msgstr "<emph>ዝቅተኛ መጠን </emph> ዝቅተኛ መጠን ነው የ ጠቅላላው ኢንቲግራል አካል"
#: 04060115.xhp
msgctxt ""
@@ -27646,7 +27646,7 @@ msgctxt ""
"par_id3156294\n"
"help.text"
msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
-msgstr "<emph>ከፍተኛው መጠን</emph> በ ምርጫ ነው: የ ከፍተኛው መጠን integral አካል ነው: ይህ አካል ከጎደለ: ስሌቱ የሚፈጸመው በ 0 እና በ ዝቅተኛው መጠን ነው"
+msgstr "<emph>ከፍተኛው መጠን</emph> በ ምርጫ ነው: የ ከፍተኛው መጠን ኢንቲግራል አካል ነው: ይህ አካል ከጎደለ: ስሌቱ የሚፈጸመው በ 0 እና በ ዝቅተኛው መጠን ነው"
#: 04060115.xhp
msgctxt ""
@@ -27838,7 +27838,7 @@ msgctxt ""
"par_id2947620\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
-msgstr "<emph>ዝቅተኛ መጠን</emph> ዝቅተኛ መጠን ነው የ ጠቅላላው integral አካል"
+msgstr "<emph>ዝቅተኛ መጠን </emph> ዝቅተኛ መጠን ነው የ ጠቅላላው ኢንቲግራል አካል"
#: 04060115.xhp
msgctxt ""
@@ -28134,7 +28134,7 @@ msgctxt ""
"bm_id3145074\n"
"help.text"
msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
-msgstr "<bookmark_value>imaginary ቁጥሮች: ተንታኝ ተግባሮች</bookmark_value> <bookmark_value>ውስብስብ ቁጥሮች በ ተንታኝ ተግባሮች ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>ኢማጂነሪ ቁጥሮች: ተንታኝ ተግባሮች</bookmark_value> <bookmark_value>ውስብስብ ቁጥሮች በ ተንታኝ ተግባሮች ውስጥ</bookmark_value>"
#: 04060116.xhp
msgctxt ""
@@ -28214,7 +28214,7 @@ msgctxt ""
"bm_id3145357\n"
"help.text"
msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
-msgstr "<bookmark_value>IMAGINARY ተግባር</bookmark_value>"
+msgstr "<bookmark_value>ኢማጂነሪ ተግባር</bookmark_value>"
#: 04060116.xhp
msgctxt ""
@@ -28230,7 +28230,7 @@ msgctxt ""
"par_id3146965\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">ውጤቱ የ imaginary coefficient ነው ለ ውስብስብ ቁጥር </ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">ውጤቱ የ ኢማጂነሪ ኮኦፊሺየንት ነው ለ ውስብስብ ቁጥር </ahelp>"
#: 04060116.xhp
msgctxt ""
@@ -28262,7 +28262,7 @@ msgctxt ""
"par_id3155592\n"
"help.text"
msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
-msgstr "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> ይመልሳል 3."
+msgstr "<item type=\"input\">=ኢማጂነሪ(\"4+3j\") </item> ይመልሳል 3."
#: 04060116.xhp
msgctxt ""
@@ -28430,7 +28430,7 @@ msgctxt ""
"par_id3150741\n"
"help.text"
msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
-msgstr "<emph>አካፋይ</emph>, <emph>ተካፋይ</emph> ውስብስብ ቁጥሮች ናቸው የ ገቡ በ ፎርም ውስጥ \"x+yi\" ወይንም \"x+yj\"."
+msgstr "<emph>አካፋይ </emph>, <emph> ተካፋይ </emph> ውስብስብ ቁጥሮች ናቸው የ ገቡ በ ፎርም ውስጥ \"x+yi\" ወይንም \"x+yj\"."
#: 04060116.xhp
msgctxt ""
@@ -28558,7 +28558,7 @@ msgctxt ""
"par_id3149688\n"
"help.text"
msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
-msgstr "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> ይመልሳል 1-j."
+msgstr "<item type=\"input\">=ውስብስብ ማገናኛ ቁጥር(\"1+j\")</item> ይመልሳል 1-j."
#: 04060116.xhp
msgctxt ""
@@ -28566,7 +28566,7 @@ msgctxt ""
"bm_id3150898\n"
"help.text"
msgid "<bookmark_value>IMLN function</bookmark_value>"
-msgstr "<bookmark_value>IMLN function</bookmark_value>"
+msgstr "<bookmark_value>ተፈጥሯዊ ሎጋሪዝም ለ ውስብስብ ቁጥር ተግባር</bookmark_value>"
#: 04060116.xhp
msgctxt ""
@@ -28806,7 +28806,7 @@ msgctxt ""
"par_id3155372\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">ውጤቱ የ real coefficient ይሆናል ለ ውስብስብ ቁጥር </ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">ውጤቱ የ ሪያል ኮኦፊሺንት ይሆናል ለ ውስብስብ ቁጥር </ahelp>"
#: 04060116.xhp
msgctxt ""
@@ -28838,7 +28838,7 @@ msgctxt ""
"par_id3155986\n"
"help.text"
msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
-msgstr "<item type=\"input\">=IMREAL(\"1+3j\")</item> ይመልሳል 1."
+msgstr "<item type=\"input\">=የ ውስብስብ ቁጥር ኮኦፊሸንት(\"1+3j\")</item> ይመልሳል 1."
#: 04060116.xhp
msgctxt ""
@@ -29054,7 +29054,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
-msgstr "<emph>ሪያል ቁጥር</emph> ሪያል ኮኦፊሸየንት ለ ውስብስብ ቁጥር"
+msgstr "<emph>ሪያል ቁጥር </emph> ሪያል ኮኦፊሸንት ለ ውስብስብ ቁጥር"
#: 04060116.xhp
msgctxt ""
@@ -29062,7 +29062,7 @@ msgctxt ""
"par_id3149135\n"
"help.text"
msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
-msgstr "<emph>የ ውስብስብ ቁጥር ኢማጂነሪ አካል</emph> የ ኢማጂነሪ ኮኦፊሺየንት ለ ውስብስብ ቁጥር"
+msgstr "<emph>የ ውስብስብ ቁጥር ኢማጂነሪ አካል </emph> የ ኢማጂነሪ ኮኦፊሺየንት ለ ውስብስብ ቁጥር"
#: 04060116.xhp
msgctxt ""
@@ -30126,7 +30126,7 @@ msgctxt ""
"par_id7844477\n"
"help.text"
msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
-msgstr "<item type=\"input\">=FACTDOUBLE(5)</item> ይመልሳል 15."
+msgstr "<item type=\"input\">=ድርብ ፋክቶሪያል ቁጥር(5)</item> ይመልሳል 15."
#: 04060116.xhp
msgctxt ""
@@ -30134,7 +30134,7 @@ msgctxt ""
"par_id3154116\n"
"help.text"
msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
-msgstr "<item type=\"input\">=FACTDOUBLE(6)</item> ይመልሳል 48."
+msgstr "<item type=\"input\">=ድርብ ፋክቶሪያል ቁጥር(6)</item> ይመልሳል 48."
#: 04060116.xhp
msgctxt ""
@@ -30142,7 +30142,7 @@ msgctxt ""
"par_id6478469\n"
"help.text"
msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
-msgstr "<item type=\"input\">=FACTDOUBLE(0)</item> ይመልሳል 1."
+msgstr "<item type=\"input\">=ድርብ ፋክቶሪያል ቁጥር(0)</item> ይመልሳል 1."
#: 04060118.xhp
msgctxt ""
@@ -30270,7 +30270,7 @@ msgctxt ""
"bm_id3157871\n"
"help.text"
msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
-msgstr "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr "<bookmark_value>የ ደህንነት ትርፍ ጎዶሎ መጀመሪያ ጊዜ</bookmark_value>"
#: 04060118.xhp
msgctxt ""
@@ -30374,7 +30374,7 @@ msgctxt ""
"bm_id3153933\n"
"help.text"
msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
-msgstr "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr "<bookmark_value>የ ደህንነት ዋጋ በ ፊት ዋጋ ተግባር</bookmark_value>"
#: 04060118.xhp
msgctxt ""
@@ -30502,7 +30502,7 @@ msgctxt ""
"bm_id3153564\n"
"help.text"
msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
-msgstr "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr "<bookmark_value>የ ደህንነት ትርፍ ተግባር</bookmark_value>"
#: 04060118.xhp
msgctxt ""
@@ -30750,7 +30750,7 @@ msgctxt ""
"bm_id3147485\n"
"help.text"
msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value> <bookmark_value>internal rates of return;irregular payments</bookmark_value> <bookmark_value>XIRR function</bookmark_value>"
-msgstr "<bookmark_value>ማስሊያ: የ ውስጥ መጠኖች ይመልሳል: ስርአቱን ያልተከተለ ክፍያዎች</bookmark_value> <bookmark_value>የ ውስጥ መጠኖች ይመልሳል: ስርአቱን ያልተከተለ ክፍያዎች</bookmark_value> <bookmark_value>XIRR ተግባር</bookmark_value>"
+msgstr "<bookmark_value>ማስሊያ: የ ውስጥ መጠኖች ይመልሳል: ስርአቱን ያልተከተለ ክፍያዎች</bookmark_value> <bookmark_value>የ ውስጥ መጠኖች ይመልሳል: ስርአቱን ያልተከተለ ክፍያዎች</bookmark_value> <bookmark_value>የ ውስጥ ገንዘብ ስርአቱን የማይከተል ተግባር</bookmark_value>"
#: 04060118.xhp
msgctxt ""
@@ -30774,7 +30774,7 @@ msgctxt ""
"par_idN10E62\n"
"help.text"
msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">IRR</link> function."
-msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ከሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ይመልሳል </link> ተግባር"
+msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ከሆነ: ይህን ይጠቀሙ <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\"> የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ይመልሳል </link> ተግባር"
#: 04060118.xhp
msgctxt ""
@@ -30998,7 +30998,7 @@ msgctxt ""
"bm_id3149198\n"
"help.text"
msgid "<bookmark_value>XNPV function</bookmark_value>"
-msgstr "<bookmark_value>XNPV function</bookmark_value>"
+msgstr "<bookmark_value>የ ካፒታል ዋጋ ስርአቱን ለማይከተል ተግባር</bookmark_value>"
#: 04060118.xhp
msgctxt ""
@@ -31022,7 +31022,7 @@ msgctxt ""
"par_idN11138\n"
"help.text"
msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">NPV</link> function."
-msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ከሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">የ አሁኑ ካፒታል ዋጋ</link> ተግባር"
+msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ከሆነ: ይህን ይጠቀሙ <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\"> የ አሁኑ ካፒታል ዋጋ </link> ተግባር"
#: 04060118.xhp
msgctxt ""
@@ -32686,7 +32686,7 @@ msgctxt ""
"par_id3148774\n"
"help.text"
msgid "The following mortgage loan is taken out on a house:"
-msgstr "የሚቀጥለው mortgage ብድር የ ተወሰደው ለ ቤት መግዣ ነው:"
+msgstr "የሚቀጥለው የ ቁጠባ ብድር የ ተወሰደው ለ ቤት መግዣ ነው:"
#: 04060119.xhp
msgctxt ""
@@ -32702,7 +32702,7 @@ msgctxt ""
"par_id3155512\n"
"help.text"
msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
-msgstr "እርስዎ ምን ያህል ይከፍላሉ ለ በ ሁለተኛው አመት ለ mortgage ብድር (በ እነዚህ ጊዜዎች ከ 13 እስከ 24)?"
+msgstr "እርስዎ ምን ያህል ይከፍላሉ ለ በ ሁለተኛው አመት ለ ቁጠባ ብድር (በ እነዚህ ጊዜዎች ከ 13 እስከ 24)?"
#: 04060119.xhp
msgctxt ""
@@ -32942,7 +32942,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "The following mortgage loan is taken out on a house:"
-msgstr "የሚቀጥለው mortgage ብድር የ ተወሰደው ለ ቤት መግዣ ነው:"
+msgstr "የሚቀጥለው የ ቁጠባ ብድር የ ተወሰደው ለ ቤት መግዣ ነው:"
#: 04060119.xhp
msgctxt ""
@@ -32958,7 +32958,7 @@ msgctxt ""
"par_id3151272\n"
"help.text"
msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
-msgstr "እርስዎ ምን ያህል ይከፍላሉ ለ በ ሁለተኛው አመት ለ mortgage ብድር (በ እነዚህ ጊዜዎች ከ 13 እስከ 24)?"
+msgstr "እርስዎ ምን ያህል ይከፍላሉ ለ በ ሁለተኛው አመት ለ ቁጠባ ብድር (በ እነዚህ ጊዜዎች ከ 13 እስከ 24)?"
#: 04060119.xhp
msgctxt ""
@@ -33302,7 +33302,7 @@ msgctxt ""
"par_id3158409\n"
"help.text"
msgid "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
-msgstr "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) ይመልሳል 99.98449888."
+msgstr "=የ ደህንነት የ ፊት ዋጋ(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) ይመልሳል 99.98449888."
#: 04060119.xhp
msgctxt ""
@@ -33606,7 +33606,7 @@ msgctxt ""
"par_idN111381\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link> function."
-msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ካልሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">የ ካፒታል የ አሁኑን ዋጋ ስርአቱን ለማይከተል ክፍያ</link> ተግባር"
+msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ካልሆነ: ይህን ይጠቀሙ <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\"> የ ካፒታል ዋጋ ስርአቱን ለማይከተል ክፍያ </link> ተግባር"
#: 04060119.xhp
msgctxt ""
@@ -34870,7 +34870,7 @@ msgctxt ""
"bm_id4146139\n"
"help.text"
msgid "<bookmark_value>BITOR function</bookmark_value>"
-msgstr "<bookmark_value>BITOR function</bookmark_value>"
+msgstr "<bookmark_value>ቢት ወይንም ተግባር</bookmark_value>"
#: 04060120.xhp
msgctxt ""
@@ -36142,7 +36142,7 @@ msgctxt ""
"bm_id3143228\n"
"help.text"
msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
-msgstr "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr "<bookmark_value>የ ባይኖሚያል ስርጭት ተግባር</bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -36334,7 +36334,7 @@ msgctxt ""
"bm_id2843228\n"
"help.text"
msgid "<bookmark_value>BINOM.INV function</bookmark_value>"
-msgstr "<bookmark_value>BINOM.INV function</bookmark_value>"
+msgstr "<bookmark_value>የ ባይኖሚያል.ግልባጭ ተግባር</bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -37614,7 +37614,7 @@ msgctxt ""
"par_id3154569\n"
"help.text"
msgid "<emph>Lambda</emph> is the parameter value."
-msgstr "<emph>ላምባዳ</emph> የ ዋጋ ደንብ ነው"
+msgstr "<emph>ላምባዳ </emph> የ ዋጋ ደንብ ነው"
#: 04060181.xhp
msgctxt ""
@@ -37694,7 +37694,7 @@ msgctxt ""
"par_id2954569\n"
"help.text"
msgid "<emph>Lambda</emph> is the parameter value."
-msgstr "<emph>ላምባዳ</emph> የ ዋጋ ደንብ ነው"
+msgstr "<emph>ላምባዳ </emph> የ ዋጋ ደንብ ነው"
#: 04060181.xhp
msgctxt ""
@@ -39238,7 +39238,7 @@ msgctxt ""
"par_id3156304\n"
"help.text"
msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
-msgstr "<emph>አልፋ</emph> ፐርሰንት ነው ለ አጓዳኝ ዳታ ግምት ውስጥ ለማይገባው"
+msgstr "<emph>አልፋ </emph> ፐርሰንት ነው ለ አጓዳኝ ዳታ ግምት ውስጥ ለማይገባው"
#: 04060182.xhp
msgctxt ""
@@ -39262,7 +39262,7 @@ msgctxt ""
"bm_id3153216\n"
"help.text"
msgid "<bookmark_value>ZTEST function</bookmark_value>"
-msgstr "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr "<bookmark_value>Zመሞከሪያ ተግባር</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -39718,7 +39718,7 @@ msgctxt ""
"par_id3154372\n"
"help.text"
msgid "LARGE(Data; RankC)"
-msgstr "ትልቅ(ዳታ; ደረጃC)"
+msgstr "ትልቅ(ዳታ: ደረጃC)"
#: 04060183.xhp
msgctxt ""
@@ -40430,7 +40430,7 @@ msgctxt ""
"par_id3148740\n"
"help.text"
msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
-msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> ትርፍ 44."
+msgstr "<item type=\"input\">=አነስተኛ ባይኖሚያል(100;0.5;0.1)</item> ትርፍ 44."
#: 04060183.xhp
msgctxt ""
@@ -41566,7 +41566,7 @@ msgctxt ""
"par_id2953733\n"
"help.text"
msgid "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
-msgstr "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
+msgstr "<item type=\"input\">=የ ተደጋገመ.ዘዴ(A1:A50)</item>"
#: 04060184.xhp
msgctxt ""
@@ -42022,7 +42022,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
-msgstr "<emph>ቁጥር</emph>ዋጋ ነው በ ስርጭቱ መሰረት የ መደበኛ ስርጭት የሚሰላበት"
+msgstr "<emph>ቁጥር </emph> ዋጋ ነው በ ስርጭቱ መሰረት የ መደበኛ ስርጭት የሚሰላበት"
#: 04060184.xhp
msgctxt ""
@@ -42118,7 +42118,7 @@ msgctxt ""
"par_id2919820\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
-msgstr "<emph>ቁጥር</emph>ዋጋ ነው በ ስርጭቱ መሰረት የ መደበኛ ስርጭት የሚሰላበት"
+msgstr "<emph>ቁጥር </emph> ዋጋ ነው በ ስርጭቱ መሰረት የ መደበኛ ስርጭት የሚሰላበት"
#: 04060184.xhp
msgctxt ""
@@ -42286,7 +42286,7 @@ msgctxt ""
"par_id3156108\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
-msgstr "<emph>ቁጥር</emph>የሚወክለው ዋጋ መሰረት ያደረገ ነው በ መደበኛ ስርጭት የ ተሰላውን"
+msgstr "<emph>ቁጥር </emph> የሚወክለው ዋጋ መሰረት ያደረገ ነው በ መደበኛ ስርጭት የ ተሰላውን"
#: 04060184.xhp
msgctxt ""
@@ -42366,7 +42366,7 @@ msgctxt ""
"par_id3147253\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
-msgstr "<emph>ቁጥር</emph>የሚወክለው ዋጋ የ ፓሶን ስርጭት ዋጋዎች ማስሊያ መሰረት ባደረገ ነው"
+msgstr "<emph>ቁጥር </emph> የሚወክለው ዋጋ የ ፓሶን ስርጭት ዋጋዎች ማስሊያ መሰረት ባደረገ ነው"
#: 04060184.xhp
msgctxt ""
@@ -42446,7 +42446,7 @@ msgctxt ""
"par_id2947253\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
-msgstr "<emph>ቁጥር</emph>የሚወክለው ዋጋ የ ፓሶን ስርጭት ዋጋዎች ማስሊያ መሰረት ባደረገ ነው"
+msgstr "<emph>ቁጥር </emph> የሚወክለው ዋጋ የ ፓሶን ስርጭት ዋጋዎች ማስሊያ መሰረት ባደረገ ነው"
#: 04060184.xhp
msgctxt ""
@@ -42918,7 +42918,7 @@ msgctxt ""
"par_id2453976\n"
"help.text"
msgid "The difference between <item type=\"input\">PERCENTRANK.INC</item> and <item type=\"input\">PERCENTRANK.EXC</item> is that <item type=\"input\">PERCENTRANK.INC</item> calculates a value in the range 0 to 1 inclusive, whereas the <item type=\"input\">PERCENTRANK.EXC</item> function calculates a value in the range 0 to 1 exclusive."
-msgstr "ልዩነት በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> እና በ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> ይህ በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> ዋጋ ያሰላል በ መጠን ውስጥ ከ 0 እስከ 1 ያካትታል: እና የ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> የ ተግባር ዋጋ በ መጠን ውስጥ ነው ከ 0 እስከ 1 አያካትትም"
+msgstr "ልዩነት በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> እና በ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> ይህ በ <item type=\"input\"> የ ፐርሰንት ደረጃ.ያካትታል </item> ዋጋ ያሰላል በ መጠን ውስጥ ከ 0 እስከ 1 ያካትታል: እና የ <item type=\"input\"> የ ፐርሰንት ደረጃ.አያካትትም</item> የ ተግባር ዋጋ በ መጠን ውስጥ ነው ከ 0 እስከ 1 አያካትትም"
#: 04060184.xhp
msgctxt ""
@@ -43078,7 +43078,7 @@ msgctxt ""
"par_id2353976\n"
"help.text"
msgid "The difference between <item type=\"input\">QUARTILE.INC</item> and <item type=\"input\">QUARTILE.EXC</item> is that the <item type=\"input\">QUARTILE.INC</item> function bases its calculation on a percentile range of 0 to 1 inclusive, whereas the <item type=\"input\">QUARTILE.EXC</item> function bases its calculation on a percentile range of 0 to 1 exclusive."
-msgstr "ልዩነት በ <item type=\"input\">ሩብ.ያካትታል</item> እና በ <item type=\"input\">ሩብ.አያካትትም</item> ይህ በ <item type=\"input\">ሩብ.ያካትታል</item> ተግባር መሰረት ባደረግ ማስሊያ ፐርሰንት መጠን ከ 0 እስከ 1 ያካትታል: ነገር ግን <item type=\"input\">ሩብ.አያካትትም</item> ተግባር መሰረት ባደረግ ማስሊያ በ ፐርሰንት መጠን ከ 0 እስከ 1 አያካትትም"
+msgstr "ልዩነት በ <item type=\"input\"> ሩብ.ያካትታል </item> እና በ <item type=\"input\"> ሩብ.አያካትትም </item> ይህ በ <item type=\"input\"> ሩብ.ያካትታል </item> ተግባር መሰረት ባደረግ ማስሊያ ፐርሰንት መጠን ከ 0 እስከ 1 ያካትታል: ነገር ግን <item type=\"input\"> ሩብ.አያካትትም </item> ተግባር መሰረት ባደረግ ማስሊያ በ ፐርሰንት መጠን ከ 0 እስከ 1 አያካትትም"
#: 04060184.xhp
msgctxt ""
@@ -43158,7 +43158,7 @@ msgctxt ""
"par_id2253976\n"
"help.text"
msgid "The difference between <item type=\"input\">QUARTILE.INC</item> and <item type=\"input\">QUARTILE.EXC</item> is that the <item type=\"input\">QUARTILE.INC</item> function bases its calculation on a percentile range of 0 to 1 inclusive, whereas the <item type=\"input\">QUARTILE.EXC</item> function bases its calculation on a percentile range of 0 to 1 exclusive."
-msgstr "ልዩነት በ <item type=\"input\">ሩብ.ያካትታል</item> እና በ <item type=\"input\">ሩብ.አያካትትም</item> ይህ በ <item type=\"input\">ሩብ.ያካትታል</item> ተግባር መሰረት ባደረግ ማስሊያ ፐርሰንት መጠን ከ 0 እስከ 1 ያካትታል: ነገር ግን <item type=\"input\">ሩብ.አያካትትም</item> ተግባር መሰረት ባደረግ ማስሊያ በ ፐርሰንት መጠን ከ 0 እስከ 1 አያካትትም"
+msgstr "ልዩነት በ <item type=\"input\"> ሩብ.ያካትታል </item> እና በ <item type=\"input\"> ሩብ.አያካትትም </item> ይህ በ <item type=\"input\"> ሩብ.ያካትታል </item> ተግባር መሰረት ባደረግ ማስሊያ ፐርሰንት መጠን ከ 0 እስከ 1 ያካትታል: ነገር ግን <item type=\"input\"> ሩብ.አያካትትም </item> ተግባር መሰረት ባደረግ ማስሊያ በ ፐርሰንት መጠን ከ 0 እስከ 1 አያካትትም"
#: 04060184.xhp
msgctxt ""
@@ -43350,7 +43350,7 @@ msgctxt ""
"par_id2653976\n"
"help.text"
msgid "The difference between <item type=\"input\">RANK.AVG</item> and <item type=\"input\">RANK.EQ</item> occurs when there are duplicates in the list of values. The <item type=\"input\">RANK.EQ</item> function returns the lower rank, whereas the <item type=\"input\">RANK.AVG</item> function returns the average rank."
-msgstr "ልዩነቱ በ <item type=\"input\">ደረጃ.አማካይ</item> እና <item type=\"input\">ደረጃ.እኩል ነው</item> ይታያል የ ተባዛ ዋጋ በ ዝርዝር ውስጥ ከ ተገኘ: የ <item type=\"input\">ደረጃ.እኩል ነው</item> ተግባር ይመልሳል ዝቅተኛውን ደረጃ: ነገር ግን የ <item type=\"input\">ደረጃ.አማካይ</item> ተግባር ይመልሳል አማካይ ደረጃ"
+msgstr "ልዩነቱ በ <item type=\"input\"> ደረጃ.አማካይ </item> እና <item type=\"input\"> ደረጃ.እኩል ነው </item> ይታያል የ ተባዛ ዋጋ በ ዝርዝር ውስጥ ከ ተገኘ: የ <item type=\"input\"> ደረጃ.እኩል ነው </item> ተግባር ይመልሳል ዝቅተኛውን ደረጃ: ነገር ግን የ <item type=\"input\"> ደረጃ.አማካይ </item> ተግባር አማካይ ደረጃ ይመልሳል"
#: 04060185.xhp
msgctxt ""
@@ -43454,7 +43454,7 @@ msgctxt ""
"par_id2753976\n"
"help.text"
msgid "The difference between <item type=\"input\">RANK.AVG</item> and <item type=\"input\">RANK.EQ</item> occurs when there are duplicates in the list of values. The <item type=\"input\">RANK.EQ</item> function returns the lower rank, whereas the <item type=\"input\">RANK.AVG</item> function returns the average rank."
-msgstr "ልዩነቱ በ <item type=\"input\">ደረጃ.አማካይ</item> እና <item type=\"input\">ደረጃ.እኩል ነው</item> ይታያል የ ተባዛ ዋጋ በ ዝርዝር ውስጥ ከ ተገኘ: የ <item type=\"input\">ደረጃ.እኩል ነው</item> ተግባር ይመልሳል ዝቅተኛውን ደረጃ: ነገር ግን የ <item type=\"input\">ደረጃ.አማካይ</item> ተግባር ይመልሳል አማካይ ደረጃ"
+msgstr "ልዩነቱ በ <item type=\"input\"> ደረጃ.አማካይ </item> እና <item type=\"input\"> ደረጃ.እኩል ነው </item> ይታያል የ ተባዛ ዋጋ በ ዝርዝር ውስጥ ከ ተገኘ: የ <item type=\"input\"> ደረጃ.እኩል ነው </item> ተግባር ይመልሳል ዝቅተኛውን ደረጃ: ነገር ግን የ <item type=\"input\"> ደረጃ.አማካይ </item> ተግባር አማካይ ደረጃ ይመልሳል"
#: 04060185.xhp
msgctxt ""
@@ -43798,7 +43798,7 @@ msgctxt ""
"par_id3157904\n"
"help.text"
msgid "<emph>Number1, Number2, ... Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ዋጋዎች ናቸው ወይንም መጠኖች ናቸው: ናሙና የሚወክሉ ጠቅላላ ሕዝቡን መሰረት ያደረገ"
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30 </emph> የ ቁጥር ዋጋዎች ናቸው ወይንም መጠኖች ናቸው: ናሙና የሚወክሉ ጠቅላላ ሕዝቡን መሰረት ያደረገ"
#: 04060185.xhp
msgctxt ""
@@ -44926,7 +44926,7 @@ msgctxt ""
"bm_id3154129\n"
"help.text"
msgid "<bookmark_value>TTEST function</bookmark_value>"
-msgstr "<bookmark_value>TTEST function</bookmark_value>"
+msgstr "<bookmark_value>Tመሞከሪያ ተግባር</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -45014,7 +45014,7 @@ msgctxt ""
"bm_id2954129\n"
"help.text"
msgid "<bookmark_value>T.TEST function</bookmark_value>"
-msgstr "<bookmark_value>T.TEST function</bookmark_value>"
+msgstr "<bookmark_value>T.መሞከሪያ ተግባር</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -45446,7 +45446,7 @@ msgctxt ""
"par_id3148938\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ዋጋዎች ናቸው ወይንም መጠኖች ናቸው: ናሙና የሚወክሉ ጠቅላላ ሕዝቡን መሰረት ያደረገ"
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30 </emph> የ ቁጥር ዋጋዎች ናቸው ወይንም መጠኖች ናቸው: ናሙና የሚወክሉ ጠቅላላ ሕዝቡን መሰረት ያደረገ"
#: 04060185.xhp
msgctxt ""
@@ -45462,7 +45462,7 @@ msgctxt ""
"par_id3153575\n"
"help.text"
msgid "<item type=\"input\">=VAR(A1:A50)</item>"
-msgstr "<item type=\"input\">=VAR(A1:A50)</item>"
+msgstr "<item type=\"input\">=ልዩነት(A1:A50)</item>"
#: 04060185.xhp
msgctxt ""
@@ -45510,7 +45510,7 @@ msgctxt ""
"par_id2948938\n"
"help.text"
msgid "<emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ዋጋዎች ናቸው ወይንም መጠኖች ናቸው: የሚወክሉ ጠቅላላ ሕዝቡን መሰረት ያደረገ"
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30 </emph> የ ቁጥር ዋጋዎች ናቸው ወይንም መጠኖች ናቸው: የሚወክሉ ጠቅላላ ሕዝቡን መሰረት ያደረገ"
#: 04060185.xhp
msgctxt ""
@@ -45934,7 +45934,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "<item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
-msgstr "<item type=\"input\">=PERMUTATIONA(11;2)</item> ይመልሳል 121."
+msgstr "<item type=\"input\">=የ ስብስብ አዘገጃጀት(11;2)</item> ይመልሳል 121."
#: 04060185.xhp
msgctxt ""
@@ -47614,7 +47614,7 @@ msgctxt ""
"par_id3153192\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">እርስዎ ማስገባት የሚፈልጉትን ፋይል ፈልገው ያግኙ</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">እርስዎ ማስገባት የሚፈልጉትን ፋይል ፈልገው ያግኙ </ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -48030,7 +48030,7 @@ msgctxt ""
"par_id5532090\n"
"help.text"
msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr "ይምረጡ <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">አቀራረብ - ረድፍ/አምድ - ማሳያ</link> ወይንም <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">አቀራረብ - ወረቀት - ማሳያ</link>."
+msgstr "ይምረጡ <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">አቀራረብ - ረድፍ/አምድ - ማሳያ</link> ወይንም <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\"> አቀራረብ - ወረቀት - ማሳያ </link>"
#: 05030400.xhp
msgctxt ""
@@ -48070,7 +48070,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
-msgstr "ለማሳየት አምድ ወይንም ረድፍ: ይምረጡ የ ራድፎች ወይንም አምዶች መጠን የያዘውን የ ተደበቀ አካል: እና ከዛ ይምረጡ <emph>አቀራረብ - ረድፍ - ማሳያ </emph>ወይንም<emph> አቀራረብ - አምድ - ማሳያ</emph>."
+msgstr "ለማሳየት አምድ ወይንም ረድፍ: ይምረጡ የ ራድፎች ወይንም አምዶች መጠን የያዘውን የ ተደበቀ አካል: እና ከዛ ይምረጡ <emph> አቀራረብ - ረድፍ - ማሳያ </emph> ወይንም <emph> አቀራረብ - አምድ - ማሳያ </emph>"
#: 05030400.xhp
msgctxt ""
@@ -48318,7 +48318,7 @@ msgctxt ""
"par_id3153092\n"
"help.text"
msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
-msgstr "እርስዎ መክፈት ይችላሉ<emph> ወረቀት እንደገና መሰየሚያ </emph>ንግግር በ አገባብ ዝርዝር ውስጥ: የ አይጥ መጠቆሚያውን በ ወረቀቱ tab ላይ ከ ታች በኩል በማድረግ በ መስኮቱ ውስጥ እና <switchinline select=\"sys\"><caseinline select=\"MAC\"> ይጫኑ ተጭነው ይዘው መቆጣጠሪያ የ አይጥ ቁልፍ </caseinline><defaultinline> በ ቀኝ የ አይጥ ቁልፍ </defaultinline></switchinline>"
+msgstr "እርስዎ መክፈት ይችላሉ <emph> ወረቀት እንደገና መሰየሚያ </emph> ንግግር በ አገባብ ዝርዝር ውስጥ: የ አይጥ መጠቆሚያውን በ ወረቀቱ tab ላይ ከ ታች በኩል በማድረግ በ መስኮቱ ውስጥ እና <switchinline select=\"sys\"><caseinline select=\"MAC\"> ይጫኑ: ተጭነው ይዘው መቆጣጠሪያ: የ አይጥ ቁልፍ </caseinline><defaultinline> በ ቀኝ የ አይጥ ቁልፍ </defaultinline></switchinline>"
#: 05050100.xhp
msgctxt ""
@@ -48566,7 +48566,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">እያንዳንዱን የ ክፍሎች ድንበር እንደ መጋጠሚያ ያትማል </ahelp> ለ መመልከቻ በ መመልከቻው ላይ: እርስዎ ይምረጡ ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph> መመልከቻ </emph></link> - <emph> መጋጠሚያ መስመሮች</emph>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">እያንዳንዱን የ ክፍሎች ድንበር እንደ መጋጠሚያ ያትማል </ahelp> ለ መመልከቻ በ መመልከቻው ላይ: እርስዎ ይምረጡ ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ </emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph> መመልከቻ </emph></link> - <emph> መጋጠሚያ መስመሮች </emph>"
#: 05070500.xhp
msgctxt ""
@@ -49686,7 +49686,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr "የ <emph>እንደገና መሰየሚያ በራሱ አቀራረብ</emph> ንግግር ይከፈታል <ahelp hid=\"HID_SC_REN_AFMT_NAME\"> አዲስ ስም ያስገቡ እዚህ ለ በራሱ አቀራረብ </ahelp>"
+msgstr "የ <emph> እንደገና መሰየሚያ በራሱ አቀራረብ </emph> ንግግር ይከፈታል <ahelp hid=\"HID_SC_REN_AFMT_NAME\"> አዲስ ስም ያስገቡ እዚህ ለ በራሱ አቀራረብ </ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -49726,7 +49726,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used."
-msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">ይምረጡ <emph>እንደ ሁኔታው አቀራረብ</emph> የ አቀራረብ ዘዴዎች ለ መግለጽ እንደ ሁኔታው ይለያያል </ahelp></variable> ለ ክፍሉ ቀደም ብሎ ዘዴ ተመድቦ ከ ነበረ: ሳይቀየር ይቀራል: እዚህ ያስገቡት ዘዴ ይመረመራል: እርስዎ ሊጠቀሙበት የሚችሉት በርካታ የሆኑ እንደ ሁኔታው አቀራረቦች አሉ"
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">ይምረጡ <emph> እንደ ሁኔታው አቀራረብ </emph> የ አቀራረብ ዘዴዎች ለ መግለጽ እንደ ሁኔታው ይለያያል </ahelp></variable> ለ ክፍሉ ቀደም ብሎ ዘዴ ተመድቦ ከ ነበረ: ሳይቀየር ይቀራል: እዚህ ያስገቡት ዘዴ ይመረመራል: እርስዎ ሊጠቀሙበት የሚችሉት በርካታ የሆኑ እንደ ሁኔታው አቀራረቦች አሉ"
#: 05120000.xhp
msgctxt ""
@@ -49742,7 +49742,7 @@ msgctxt ""
"par_id2414014\n"
"help.text"
msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Data - Calculate - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr "እንደ ሁኔታው አቀራረብ ለመፈጸም: በራሱ ማስሊያ ማስቻል አለብዎት: ይምረጡ <emph>ዳታ - ማስሊያ - በራሱ ማስሊያ</emph> (ለ እርስዎ ይታይዎታል የ ምልክት ማድረጊያ ከ ትእዛዝ አጠገብ በራሱ ማስሊያ ሲያስችሉ)"
+msgstr "እንደ ሁኔታው አቀራረብ ለመፈጸም: በራሱ ማስሊያ ማስቻል አለብዎት: ይምረጡ <emph> ዳታ - ማስሊያ - በራሱ ማስሊያ </emph> (ለ እርስዎ ይታይዎታል የ ምልክት ማድረጊያ ከ ትእዛዝ አጠገብ በራሱ ማስሊያ ሲያስችሉ)"
#: 05120000.xhp
msgctxt ""
@@ -49822,7 +49822,7 @@ msgctxt ""
"par_id31494138\n"
"help.text"
msgid "In the <emph>Range</emph> field, define the range of cells concerned by the conditional formatting. Click on the <emph>Shrink</emph> button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected."
-msgstr "በ <emph>መጠን</emph> ሜዳ ውስጥ: መግለጫ የ መጠን ክፍሎች ተገቢውን እንደ ሁኔታዎች አቀራረብ: ይጫኑ በ <emph>ማሳነሻ</emph> ቁልፍ በ ማሳነሻ ንግግር ሳጥን ውስጥ: ይጫኑ እንደገና በ ቁልፉ ላይ ለ መመለስ ወደ ንግግር ሳጥን ውስጥ አንዴ መጠን ከ ተመረጠ በኋላ"
+msgstr "በ <emph> መጠን </emph> ሜዳ ውስጥ: መግለጫ የ መጠን ክፍሎች ተገቢውን እንደ ሁኔታዎች አቀራረብ: ይጫኑ በ <emph> ማሳነሻ </emph> ቁልፍ በ ማሳነሻ ንግግር ሳጥን ውስጥ: ይጫኑ እንደገና በ ቁልፉ ላይ ለ መመለስ ወደ ንግግር ሳጥን ውስጥ አንዴ መጠን ከ ተመረጠ በኋላ"
#: 05120000.xhp
msgctxt ""
@@ -49854,7 +49854,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "This is the same dialog box as if you select <emph>All cells</emph> in the first sub menu entry <emph>Condition</emph>.Apply a color scale to a range consist of displaying a bicolor or tricolor gradient on this range depending on the value of each cell. A typical example might be an array of temperatures, lower blue colored, warmer red with a gradient nuances to the intermediate values."
-msgstr "እርስዎ እንደ መረጡት ይህ የ ንግግር ሳጥን ተመሳሳይ ነው ከ <emph>ሁሉም ክፍሎች</emph> ጋር በ መጀመሪያው ንዑስ ዝርዝር ማስገቢያ <emph>ሁኔታ</emph> ውስጥ: የ ቀለም መለኪያ ይፈጽሙ መጠን ለማሳየት በ ሁለት ቀለም ወይንም በ ሶስት ቀለም ከፍታ ላይ: ይህ መጠን ይለያያል እንደ እያንዳንዱ ክፍል ዋጋ: መደበኛ ምስሌ የ አየር ንብረት ማዘጋጃ ነው: ዝቅተኛ ሰማያዊ ቀለም: ሞቅ ያለ ቀይ: ከ ከፍታ ጋር መካከለኛ ዋጋ ይሰጣል"
+msgstr "እርስዎ እንደ መረጡት ይህ የ ንግግር ሳጥን ተመሳሳይ ነው ከ <emph> ሁሉም ክፍሎች </emph> ጋር በ መጀመሪያው ንዑስ ዝርዝር ማስገቢያ <emph> ሁኔታ </emph> ውስጥ: የ ቀለም መለኪያ ይፈጽሙ መጠን ለማሳየት በ ሁለት ቀለም ወይንም በ ሶስት ቀለም ከፍታ ላይ: ይህ መጠን ይለያያል እንደ እያንዳንዱ ክፍል ዋጋ: መደበኛ ምስሌ የ አየር ንብረት ማዘጋጃ ነው: ዝቅተኛ ሰማያዊ ቀለም: ሞቅ ያለ ቀይ: ከ ከፍታ ጋር መካከለኛ ዋጋ ይሰጣል"
#: 05120000.xhp
msgctxt ""
@@ -50014,7 +50014,7 @@ msgctxt ""
"par_id31494177\n"
"help.text"
msgid "In the <emph>Range</emph> field, define the range of cells concerned by the conditional formatting. Click on the <emph>Shrink</emph> button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected."
-msgstr "በ <emph>መጠን</emph> ሜዳ ውስጥ: መግለጫ የ መጠን ክፍሎች ተገቢውን እንደ ሁኔታዎች አቀራረብ: ይጫኑ በ <emph>ማሳነሻ</emph> ቁልፍ በ ማሳነሻ ንግግር ሳጥን ውስጥ: ይጫኑ እንደገና በ ቁልፉ ላይ ለ መመለስ ወደ ንግግር ሳጥን ውስጥ አንዴ መጠን ከ ተመረጠ በኋላ"
+msgstr "በ <emph> መጠን </emph> ሜዳ ውስጥ: መግለጫ የ መጠን ክፍሎች ተገቢውን እንደ ሁኔታዎች አቀራረብ: ይጫኑ በ <emph> ማሳነሻ </emph> ቁልፍ በ ማሳነሻ ንግግር ሳጥን ውስጥ: ይጫኑ እንደገና በ ቁልፉ ላይ ለ መመለስ ወደ ንግግር ሳጥን ውስጥ አንዴ መጠን ከ ተመረጠ በኋላ"
#: 05120000.xhp
msgctxt ""
@@ -50038,7 +50038,7 @@ msgctxt ""
"par_id31546818\n"
"help.text"
msgid "Choose <emph>Format - Conditional Formatting - Manage</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - እንደ ሁኔታው አቀራረብ - አስተዳዳሪ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - እንደ ሁኔታው አቀራረብ - አስተዳዳሪ </emph>"
#: 05120000.xhp
msgctxt ""
@@ -50070,7 +50070,7 @@ msgctxt ""
"bm_id3159399\n"
"help.text"
msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>ራሱ በራሱ ጭረት በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>ጭረት: በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>syllables በ ሰንጠረዥ ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>ራሱ በራሱ ጭረት በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>ጭረት: በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>አነባበብ በ ሰንጠረዥ ውስጥ</bookmark_value>"
#: 06020000.xhp
msgctxt ""
@@ -50462,7 +50462,7 @@ msgctxt ""
"par_id3151246\n"
"help.text"
msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
-msgstr "<ahelp hid=\".uno:AuditingFillMode\">ማስነሻ የ መሙያ ዘዴ በ ፈልጎ ማግኛ ውስጥ: የ አይጥ መጠቆሚያው ይቀየራል ወደ የ ተለየ ምልክት: እና እርስዎ መጫን ይችላሉ ማንኛውንም ክፍል ምልክቱን ለ መመልከት ለ ክፍል ሁኔታዎች: </ahelp> ከዚህ ዘዴ ውስጥ ለ መውጣት: ይጫኑ መዝለያውን ወይንም ይጫኑ የ <emph>መጨረሻ መሙያ ዘዴ</emph> ትእዛዝ በ አገባብ ዝርዝር ውስጥ"
+msgstr "<ahelp hid=\".uno:AuditingFillMode\">ማስነሻ የ መሙያ ዘዴ በ ፈልጎ ማግኛ ውስጥ: የ አይጥ መጠቆሚያው ይቀየራል ወደ የ ተለየ ምልክት: እና እርስዎ መጫን ይችላሉ ማንኛውንም ክፍል ምልክቱን ለ መመልከት ለ ክፍል ሁኔታዎች: </ahelp> ከዚህ ዘዴ ውስጥ ለ መውጣት: ይጫኑ መዝለያውን ወይንም ይጫኑ የ <emph> መጨረሻ መሙያ ዘዴ </emph> ትእዛዝ በ አገባብ ዝርዝር ውስጥ"
#: 06030700.xhp
msgctxt ""
@@ -50870,7 +50870,7 @@ msgctxt ""
"par_id3153362\n"
"help.text"
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet</emph> commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr "የ <emph>ወረቀት መጠበቂያ</emph> ወይንም <emph>ሰንጠረዥ መጠበቂያ</emph> ትእዛዞች የሚጠብቁት በ ወረቀት ውስጥ ክፍሎች እንዳይቀየሩ ነው: ወይንም በ ሰነዱ ላይ በ ወረቀቶች ውስጥ: እንደ ምርጫ እርስዎ መወሰን ይችላሉ የ መግቢያ ቃል: እርስዎ የ መግቢያ ቃል ከ ወሰኑ: መጠበቂያውን ማስወገድ የሚቻለው ተጠቃሚው ትክክለኛውን የ መግቢያ ቃል ሲያስገባ ነው:"
+msgstr "የ <emph> ወረቀት መጠበቂያ </emph> ወይንም <emph> ሰንጠረዥ መጠበቂያ </emph> ትእዛዞች የሚጠብቁት በ ወረቀት ውስጥ ክፍሎች እንዳይቀየሩ ነው: ወይንም በ ሰነዱ ላይ በ ወረቀቶች ውስጥ: እንደ ምርጫ እርስዎ መወሰን ይችላሉ የ መግቢያ ቃል: እርስዎ የ መግቢያ ቃል ከ ወሰኑ: መጠበቂያውን ማስወገድ የሚቻለው ተጠቃሚው ትክክለኛውን የ መግቢያ ቃል ሲያስገባ ነው:"
#: 06060000.xhp
msgctxt ""
@@ -50942,7 +50942,7 @@ msgctxt ""
"par_id3150329\n"
"help.text"
msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ክፍሎች - ክፍል መጠበቂያ </emph> እና ምልክቱን ያጥፉ ከ <emph> መጠበቂያ </emph> ሳጥን እና ይጫኑ <emph> እሺ </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፍሎች - ክፍል መጠበቂያ </emph> እና ምልክቱን ያጥፉ ከ <emph> መጠበቂያ </emph> ሳጥን እና ይጫኑ <emph> እሺ </emph>"
#: 06060100.xhp
msgctxt ""
@@ -50966,7 +50966,7 @@ msgctxt ""
"par_id3153964\n"
"help.text"
msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
-msgstr "ወረቀት መጠበቂያ ተፅእኖ ይፈጥራል በ አገባብ ዝርዝር ውስጥ በ ወረቀት tabs በ መመልከቻው ከ ታች በኩል: የ <emph>ማጥፊያ</emph> እና <emph>እንደገና መሰየሚያ</emph> ትእዛዝ መምረጥ አይቻልም"
+msgstr "ወረቀት መጠበቂያ ተፅእኖ ይፈጥራል በ አገባብ ዝርዝር ውስጥ በ ወረቀት tabs በ መመልከቻው ከ ታች በኩል: የ <emph> ማጥፊያ </emph> እና <emph> እንደገና መሰየሚያ </emph> ትእዛዝ መምረጥ አይቻልም"
#: 06060100.xhp
msgctxt ""
@@ -51230,7 +51230,7 @@ msgctxt ""
"par_idN1065D\n"
"help.text"
msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
-msgstr "መፈጸሚያውን ለ መቀበል ይጫኑ <item type=\"keycode\">ማስገቢያ</item> ወይንም መጠቆሚያ ቁልፍ"
+msgstr "መፈጸሚያውን ለ መቀበል ይጫኑ <item type=\"keycode\"> ማስገቢያ </item> ወይንም መጠቆሚያ ቁልፍ"
#: 06130000.xhp
msgctxt ""
@@ -51246,7 +51246,7 @@ msgctxt ""
"par_idN1066D\n"
"help.text"
msgid "To view more completions, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Tab</item> to scroll forward, or <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+Tab</item> to scroll backward."
-msgstr "ተጨማሪ መፈጸሚያ ለ መመልከት ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">ትእዛዝ</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Tab</item> ወደ ፊት ለ መሸብለል ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">ትእዛዝ</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+Tab</item> ወደ ኋላ ለ መሸብለል"
+msgstr "ተጨማሪ መፈጸሚያ ለ መመልከት ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\"> ትእዛዝ </item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Tab</item> ወደ ፊት ለ መሸብለል ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\"> ትእዛዝ </item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+Tab</item> ወደ ኋላ ለ መሸብለል"
#: 06130000.xhp
msgctxt ""
@@ -51254,7 +51254,7 @@ msgctxt ""
"par_idN10679\n"
"help.text"
msgid "To see a list of all available AutoInput text items for the current column, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+Down Arrow</item>."
-msgstr "ዝግጁ ዝርዝር በራሱ ማስገቢያዎችን ለ መመልከት ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">ምርጫ</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+ቀስት ወደ ታች</item>."
+msgstr "ዝግጁ ዝርዝር በራሱ ማስገቢያዎችን ለ መመልከት ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\"> ምርጫ </item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+ቀስት ወደ ታች</item>"
#: 06130000.xhp
msgctxt ""
@@ -51262,7 +51262,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
-msgstr "እርስዎ መቀመሪያ በሚጽፉ ጊዜ ባህሪዎችን በመጠቀም ቀደም ብለ ያስገቡትን የሚመሳሰል: የ እርዳታ ምክር ይታያል መጨረሻ የ ተጠቀሙት አስር ተግባሮች የሚያሳይ ከ <emph>ተግባር አዋቂ</emph> ሁሉም የ ተገለጸው የ መጠን ስሞች: የ ሁሉም ዳታቤዝ መጠን ስም እና ይዞታዎች ለ ሁሉም ምልክት መጠን ይታያል"
+msgstr "እርስዎ መቀመሪያ በሚጽፉ ጊዜ ባህሪዎችን በመጠቀም ቀደም ብለ ያስገቡትን የሚመሳሰል: የ እርዳታ ምክር ይታያል መጨረሻ የ ተጠቀሙት አስር ተግባሮች የሚያሳይ ከ <emph> ተግባር አዋቂ </emph> ሁሉም የ ተገለጸው የ መጠን ስሞች: የ ሁሉም ዳታቤዝ መጠን ስም እና ይዞታዎች ለ ሁሉም ምልክት መጠን ይታያል"
#: 06130000.xhp
msgctxt ""
@@ -51430,7 +51430,7 @@ msgctxt ""
"par_id3153144\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">ማሳያ ተጨማሪ <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">ምርጫዎች</link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">ማሳያ ተጨማሪ <link href=\"text/scalc/01/12010100.xhp\" name=\"options\"> ምርጫዎች </link></ahelp>"
#: 12010100.xhp
msgctxt ""
@@ -51574,7 +51574,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
-msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">እርስዎ የ ገለጹትን የ ዳታቤዝ መጠን መምረጫ ከ <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">ዳታ - የ ተገለጸ መጠን</link>.</ahelp></variable>"
+msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">እርስዎ የ ገለጹትን የ ዳታቤዝ መጠን መምረጫ ከ <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\"> ዳታ - የ ተገለጸ መጠን </link></ahelp></variable>"
#: 12020000.xhp
msgctxt ""
@@ -51614,7 +51614,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
-msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">እርስዎ በ ወሰኑት ሁኔታዎች መሰረት የ ተመረጠውን ረድፍ መለያ</ahelp></variable>$[officename] ራሱ በራሱ ያስታውሳል እና ይመርጣል የ ዳታቤዝ መጠኖች"
+msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">እርስዎ በ ወሰኑት ሁኔታዎች መሰረት የ ተመረጠውን ረድፍ መለያ </ahelp></variable>$[officename] ራሱ በራሱ ያስታውሳል እና ይመርጣል የ ዳታቤዝ መጠኖች"
#: 12030000.xhp
msgctxt ""
@@ -51638,7 +51638,7 @@ msgctxt ""
"bm_id3152350\n"
"help.text"
msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
-msgstr "<bookmark_value>መለያ:መለያ ደንብ ለ ዳታቤዝ መጠኖች</bookmark_value>"
+msgstr "<bookmark_value>መለያ: መለያ ደንብ ለ ዳታቤዝ መጠኖች</bookmark_value>"
#: 12030100.xhp
msgctxt ""
@@ -51694,7 +51694,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/up\">መለያ የ ተመረጠውን ከ ዝቅተኛ ዋጋ እስከ ከፍተኛ ዋጋ: የ መለያ ደንብ በ ቋንቋ ውስጥ ተገልጿል: እርስዎ መግለጽ ይችላሉ መለያ ደንቦች ለ ዳታ - መለያ - ምርጫዎች </ahelp> እርስዎ ይግለጹ ነባሩን በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline>መሳሪያዎች – ምርጫ</defaultinline></switchinline> - ቋንቋ ማሰናጃዎች - ቋንቋዎች"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortkey/up\">መለያ የ ተመረጠውን ከ ዝቅተኛ ዋጋ እስከ ከፍተኛ ዋጋ: የ መለያ ደንብ በ ቋንቋ ውስጥ ተገልጿል: እርስዎ መግለጽ ይችላሉ መለያ ደንቦች ለ ዳታ - መለያ - ምርጫዎች </ahelp> እርስዎ ይግለጹ ነባሩን በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች – ምርጫ </defaultinline></switchinline> - ቋንቋ ማሰናጃዎች - ቋንቋዎች"
#: 12030100.xhp
msgctxt ""
@@ -51798,7 +51798,7 @@ msgctxt ""
"bm_id3147228\n"
"help.text"
msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
-msgstr "<bookmark_value>መለያ: ምርጫዎች ለ ዳታቤዝ መጠኖች</bookmark_value><bookmark_value>መለያ;Asian languages</bookmark_value><bookmark_value>Asian languages;መለያ</bookmark_value><bookmark_value>የ ስልክ ማውጫ መለያ ደንቦች</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgstr "<bookmark_value>መለያ: ምርጫዎች ለ ዳታቤዝ መጠኖች</bookmark_value><bookmark_value>መለያ: የ እስያን ቋንቋ</bookmark_value><bookmark_value>የ እስያን ቋንቋ: መለያ</bookmark_value><bookmark_value>የ ስልክ ማውጫ መለያ ደንቦች</bookmark_value><bookmark_value>የ ተፈጥሮ መለያ algorithm</bookmark_value>"
#: 12030200.xhp
msgctxt ""
@@ -51830,7 +51830,7 @@ msgctxt ""
"par_id3153091\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> መለያ መጀመሪያ በ ላይኛው ጉዳይ ፊደሎች እና ከዛ በ ዝቅተኛ ጉዳይ ፊደሎች: ለ እስያ ቋንቋዎች የ ተለየ መፈጸሚያ ያስፈልጋል </ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> መለያ መጀመሪያ በ ላይኛው ጉዳይ ፊደሎች እና ከዛ በ ታችኛው ጉዳይ ፊደሎች: ለ እስያ ቋንቋዎች የ ተለየ መፈጸሚያ ያስፈልጋል </ahelp>"
#: 12030200.xhp
msgctxt ""
@@ -51966,7 +51966,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> ይምረጡ የ መለያ ደንብ ማስተካከያ እርስዎ መፈጸም የሚፈልጉትን: የ መለያ ደንብ ማስተካከያ ለ መግለጽ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME ሰንጠረዥ - መለያ ደንብ </link> .</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> ይምረጡ የ መለያ ደንብ ማስተካከያ እርስዎ መፈጸም የሚፈልጉትን: የ መለያ ደንብ ማስተካከያ ለ መግለጽ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME ሰንጠረዥ - መለያ ደንብ </link>:</ahelp>"
#: 12030200.xhp
msgctxt ""
@@ -52286,7 +52286,7 @@ msgctxt ""
"par_id3149123\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
-msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">ይምረጡ የ <emph> ኮፒ ውጤቶች ከ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ: እና ከዛ የ መድረሻውን መጠን ይወስኑ እርስዎ የ ተጣራ ዳታ እንዲታይ የሚፈልጉበትን: ይህ ሳጥን ምልክት ከ ተደረገበት: የ መድረሻውን መጠን ይገናኛል ከ ምንጩ መጠን ጋር: እርስዎ መግለጽ አለብዎት የ ምንጩን መጠን ከ <emph> ዳታ - መጠን መግለጫ </emph> እንደ ዳታቤዝ መጠን </ahelp> ይህን ተከትለው: እርስዎ እንደገና መፈጸም ይችላሉ የ ተገለጸውን ማጣሪያ በማንኛውም ጊዜ እንደሚከተለው: ይጫኑ የ ምንጩን መጠን: ከዛ ይምረጡ <emph> ዳታ - ማነቃቂያ መጠን </emph>."
+msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">ይምረጡ የ <emph> ኮፒ ውጤቶች ከ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ: እና ከዛ የ መድረሻውን መጠን ይወስኑ እርስዎ የ ተጣራ ዳታ እንዲታይ የሚፈልጉበትን: ይህ ሳጥን ምልክት ከ ተደረገበት: የ መድረሻውን መጠን ይገናኛል ከ ምንጩ መጠን ጋር: እርስዎ መግለጽ አለብዎት የ ምንጩን መጠን ከ <emph> ዳታ - መጠን መግለጫ </emph> እንደ ዳታቤዝ መጠን </ahelp> ይህን ተከትለው: እርስዎ እንደገና መፈጸም ይችላሉ የ ተገለጸውን ማጣሪያ በማንኛውም ጊዜ እንደሚከተለው: ይጫኑ የ ምንጩን መጠን: ከዛ ይምረጡ <emph> ዳታ - ማነቃቂያ መጠን </emph>"
#: 12040201.xhp
msgctxt ""
@@ -52510,7 +52510,7 @@ msgctxt ""
"par_id3161831\n"
"help.text"
msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
-msgstr "ከ <emph>ቡድን </emph> ሳጥን ውስጥ ይምረጡ አምድ እርስዎ መጨመር የሚፈልጉትን ንዑስ ጠቅላላ ወደ"
+msgstr "ከ <emph> ቡድን </emph> ሳጥን ውስጥ: ይምረጡ አምድ እርስዎ መጨመር የሚፈልጉትን ወደ ንዑስ ጠቅላላ ውስጥ"
#: 12050100.xhp
msgctxt ""
@@ -52526,7 +52526,7 @@ msgctxt ""
"par_id3152460\n"
"help.text"
msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
-msgstr "ከ <emph>ተግባር መጠቀሚያ</emph> ሳጥን ውስጥ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን ተግባር ንዑስ ጠቅላላ ለማስላት"
+msgstr "ከ <emph> ተግባር መጠቀሚያ </emph> ሳጥን ውስጥ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን ተግባር ንዑስ ጠቅላላ ለማስላት"
#: 12050100.xhp
msgctxt ""
@@ -52718,7 +52718,7 @@ msgctxt ""
"par_id3155068\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">ከ ዝቅተኛ ዋጋ በ መጀመር መለያ: እርስዎ መግለጽ ይችላሉ የ መለያ ደንቦች ከ ዳታ - መለያ - ምርጫዎች </ahelp>እርስዎ ይግለጹ ነባር የ መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃ - ቋንቋዎች"
+msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">ከ ዝቅተኛ ዋጋ በ መጀመር መለያ: እርስዎ መግለጽ ይችላሉ የ መለያ ደንቦች ከ ዳታ - መለያ - ምርጫዎች </ahelp> እርስዎ ይግለጹ ነባር የ መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃ - ቋንቋዎች"
#: 12050200.xhp
msgctxt ""
@@ -52734,7 +52734,7 @@ msgctxt ""
"par_id3153766\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/descending\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/descending\">ከ ከፍተኛ ዋጋ በ መጀመር መለያ: እርስዎ መግለጽ ይችላሉ የ መለያ ደንቦች ከ ዳታ - መለያ - ምርጫዎች </ahelp>እርስዎ ይግለጹ ነባር የ መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃ - ቋንቋዎች"
+msgstr "<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/descending\">ከ ከፍተኛ ዋጋ በ መጀመር መለያ: እርስዎ መግለጽ ይችላሉ የ መለያ ደንቦች ከ ዳታ - መለያ - ምርጫዎች </ahelp> እርስዎ ይግለጹ ነባር የ መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃ - ቋንቋዎች"
#: 12060000.xhp
msgctxt ""
@@ -53870,7 +53870,7 @@ msgctxt ""
"par_id3145749\n"
"help.text"
msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
-msgstr "ተግባር ለ መቀየር የ ዳታ ሜዳ የ ተጠቀመበትን: ሁለት ጊዜ-ይጫኑ በ ቁልፍ ላይ ከ <emph> ዳታ ሜዳዎች </emph> ቦታ በ <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"> ዳታ ሜዳ </link> ንግግር ውስጥ: እርስዎ እንዲሁም ሁለት ጊዜ-ይጫኑ በ ቁልፍ ላይ በ <emph> ረድፍ ሜዳዎች </emph> ወይንም <emph> አምድ ሜዳዎች </emph> ቦታ ላይ"
+msgstr "ተግባር ለ መቀየር የ ዳታ ሜዳ የ ተጠቀመበትን: ሁለት ጊዜ-ይጫኑ በ ቁልፍ ላይ ከ <emph> ዳታ ሜዳዎች </emph> ቦታ ከ <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"> ዳታ ሜዳ </link> ንግግር ውስጥ: እርስዎ እንዲሁም ሁለት ጊዜ-ይጫኑ በ ቁልፍ ላይ በ <emph> ረድፍ ሜዳዎች </emph> ወይንም <emph> አምድ ሜዳዎች </emph> ቦታ ላይ"
#: 12090102.xhp
msgctxt ""
@@ -54070,7 +54070,7 @@ msgctxt ""
"par_idN108E6\n"
"help.text"
msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
-msgstr "የ ክፍል መጠን መምረጫ እና ይምረጡ <emph>ዳታ - ቡድን እና ረቂቅ - ዝርዝር ማሳያ</emph>."
+msgstr "የ ክፍል መጠን መምረጫ: እና ይምረጡ <emph> ዳታ - ቡድን እና ረቂቅ - ዝርዝር ማሳያ </emph>"
#: 12090102.xhp
msgctxt ""
@@ -55398,7 +55398,7 @@ msgctxt ""
"bm_id3153662\n"
"help.text"
msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ መጠን; ማነቃቂያ</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ መጠን: ማነቃቂያ</bookmark_value>"
#: 12100000.xhp
msgctxt ""
@@ -55918,7 +55918,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
-msgstr "እርስዎ ማስጀመር ይችላሉ macro በ ስህተት መልእክት: የ ናሙና macro ይሰጣል በዚህ ገጽ መጨረሻ ላይ"
+msgstr "እርስዎ ማስጀመር ይችላሉ ማክሮስ በ ስህተት መልእክት: የ ናሙና ማክሮስ ይሰጣል በዚህ ገጽ መጨረሻ ላይ"
#: 12120300.xhp
msgctxt ""
@@ -55982,7 +55982,7 @@ msgctxt ""
"par_id3153160\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">መክፈቻ የ <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> ንግግር እርስዎ የሚመርጡበት macro የሚፈጸመውን ዋጋ የሌለው ዳታ በሚገባ ጊዜ በ ክፍል ውስጥ: ይህ macro የሚፈጸመው የ ስህተት መልእክት ከታየ በኋላ ነው </ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">መክፈቻ የ <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\"> ማክሮስ </link> ንግግር እርስዎ የሚመርጡበት ማክሮስ የሚፈጸመውን ዋጋ የሌለው ዳታ በሚገባ ጊዜ በ ክፍል ውስጥ: ይህ ማክሮስ የሚፈጸመው የ ስህተት መልእክት ከታየ በኋላ ነው </ahelp>"
#: 12120300.xhp
msgctxt ""
@@ -56022,7 +56022,7 @@ msgctxt ""
"par_id3150752\n"
"help.text"
msgid "<emph>Sample macro:</emph>"
-msgstr "<emph>ናሙና macro:</emph>"
+msgstr "<emph>ናሙና ማክሮስ:</emph>"
#: ODFF.xhp
msgctxt ""
@@ -56382,7 +56382,7 @@ msgctxt ""
"par_id040320161859450\n"
"help.text"
msgid "The time line doesn't have to to be sorted, the functions will sort it for calculations. <br/>The time line values must have a consistent step between them. <br/>If a constant step can't be identified in the sorted time line, the functions will return the #NUM! error. <br/>If the ranges of the time line and historical values aren't of same size, the functions will return the #N/A error.<br/>If the time line contains less than 2 periods of data, the functions will return the #VALUE! Error."
-msgstr "የ ሰአት መስመር መለየት የለበትም: ተግባሮቹ ይለዩታል ለ ስሌቶቹ <br/>የ ሰአት መስመር ዋጋዎች ተመሳሳይ ደረጃዎች በ መካከላቸው መያዝ አለባቸው <br/>ይህ ተመሳሳይ ደረጃዎች መለየት የለበትም በ ሰአት መስመር መለያ: ተግባሮቹ ይመልሳሉ የ #ቁጥር! ስህተት: <br/>የ መጠኖች ሰአት መስመር እና ታሪካዊ ዋጋዎች ተመሳሳይ አይደሉም: ተግባሮች ይመልሳሉ የ #ዝ/አ ስህተት <br/>የ ሰአት መስመር ከያዘ ያነሰ ከ 2 ጊዜ ዳታ: ተግባሮች ይመልሳሉ የ #ዋጋ! ስህተት"
+msgstr "የ ሰአት መስመር መለየት የለበትም: ተግባሮቹ ይለዩታል ለ ስሌቶቹ <br/> የ ሰአት መስመር ዋጋዎች ተመሳሳይ ደረጃዎች በ መካከላቸው መያዝ አለባቸው <br/> ይህ ተመሳሳይ ደረጃዎች መለየት የለበትም በ ሰአት መስመር መለያ: ተግባሮቹ ይመልሳሉ የ #ቁጥር! ስህተት: <br/> የ መጠኖች ሰአት መስመር እና ታሪካዊ ዋጋዎች ተመሳሳይ አይደሉም: ተግባሮች ይመልሳሉ የ #ዝ/አ ስህተት <br/> የ ሰአት መስመር ከያዘ ያነሰ ከ 2 ጊዜ ዳታ: ተግባሮች ይመልሳሉ የ #ዋጋ! ስህተት"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56406,7 +56406,7 @@ msgctxt ""
"par_id0403201618594650\n"
"help.text"
msgid "<emph>aggregation (optional):</emph> A numeric value from 1 to 7, with default 1. The aggregation parameter indicates which method will be used to aggregate identical time values:"
-msgstr "<emph>ዝቅ ማድረጊያ (በ ምርጫ):</emph> የ ቁጥር ዋጋ ከ 1 እስከ 7, ከ ነባር 1. ጋር: ዝቅ ማድረጊያ ደንብ የሚያሳየው የትኛው ዘዴ እንደሚጠቀሙ ነው ዝቅ ለ ማድረጊያ ተመሳሳይ የ ሰአት ዋጋዎችን:"
+msgstr "<emph>ዝቅ ማድረጊያ (በ ምርጫ): </emph> የ ቁጥር ዋጋ ከ 1 እስከ 7, ከ ነባር 1. ጋር: ዝቅ ማድረጊያ ደንብ የሚያሳየው የትኛው ዘዴ እንደሚጠቀሙ ነው ዝቅ ለ ማድረጊያ ተመሳሳይ የ ሰአት ዋጋዎችን:"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56758,7 +56758,7 @@ msgctxt ""
"par_id26516178768369\n"
"help.text"
msgid "<variable id=\"func_im_real_numb\">If the <emph>complex number</emph> is actually a real number (b=0), then it can be either a string expression or a number value.</variable>"
-msgstr "<variable id=\"func_im_real_numb\">የ <emph>ውስብስብ ቁጥር</emph> የ real ቁጥር ነው: (b=0), ከዛ መሆን ይችላል አንዱን የ ሀረግ ምግለጫ ወይንም የ ቁጥር ዋጋ </variable>"
+msgstr "<variable id=\"func_im_real_numb\">የ <emph> ውስብስብ ቁጥር </emph> የ ሪያል ቁጥር ነው: (b=0), ከዛ መሆን ይችላል አንዱን የ ሀረግ ምግለጫ ወይንም የ ቁጥር ዋጋ </variable>"
#: ful_func.xhp
msgctxt ""
@@ -56782,7 +56782,7 @@ msgctxt ""
"par_id962376732432\n"
"help.text"
msgid "<variable id=\"func_imag_zero\">The imaginary part is equal to zero, so it is not displayed in the result.</variable>"
-msgstr "<variable id=\"func_imag_zero\">የ imaginary አካል እኩል ነው ከ ዜሮ ጋር: ስለዚህ በ ውጤቱ ውስጥ አይታይም</variable>"
+msgstr "<variable id=\"func_imag_zero\">የ ኢማጂነሪ አካል እኩል ነው ከ ዜሮ ጋር: ስለዚህ በ ውጤቱ ውስጥ አይታይም </variable>"
#: ful_func.xhp
msgctxt ""
@@ -56790,7 +56790,7 @@ msgctxt ""
"par_id29750345314640\n"
"help.text"
msgid "The result is presented in the string format and has the character \"i\" or \"j\" as an imaginary unit."
-msgstr "ውጤቱ የሚቀርበው በ ሀረግ አቀራረብ ነው እና ባህሪ አለው \"i\" ወይንም \"j\" እንደ imaginary unit."
+msgstr "ውጤቱ የሚቀርበው በ ሀረግ አቀራረብ ነው እና ባህሪ አለው \"i\" ወይንም \"j\" እንደ ኢማጂነሪ ክፍል"
#: func_aggregate.xhp
msgctxt ""
@@ -57710,7 +57710,7 @@ msgctxt ""
"par_id262061474420658\n"
"help.text"
msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a value from the corresponding cell of the given Average_range is taken into calculation of the mean.<br/>The <emph>Criterion</emph> needs to be a string expression, in particular, the <emph>Criterion</emph> needs to be enclosed in quotation marks (\"Criterion\") with the exception of the names of functions, cell references and the operator of a string concatenation (&).<br/>The operators equal to (=), not equal to (<>), greater than (>), greater than or equal to (>=), less than (<), and less than or equal to (<=) can be used in criterion arguments for comparison of numbers.<br/>The function can have up to 255 arguments, meaning that you can specify 127 criteria ranges and criteria for it."
-msgstr "የ ሎጂካል ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ ሎጂካል እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ <emph> መመዘኛ </emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph> መመዘኛ </emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/> በ አንቀሳቃሽ እኩል ይሆናል ከ (=) እኩል አይደለም ከ (<>) ይበልጣል ከ (>) ይበልጣል ከ ወይንም እኩል ነው ከ (>=) ያንሳል ከ (<) እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/> ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
+msgstr "የ ሎጂካል ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ ሎጂካል እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ <emph> መመዘኛ </emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph> መመዘኛ </emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&): <br/> በ አንቀሳቃሽ እኩል ይሆናል ከ (=) እኩል አይደለም ከ (<>) ይበልጣል ከ (>) ይበልጣል ከ ወይንም እኩል ነው ከ (>=) ያንሳል ከ (<) እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/> ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
#: func_averageifs.xhp
msgctxt ""
@@ -57878,7 +57878,7 @@ msgctxt ""
"par_id1102201617001848\n"
"help.text"
msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp> The result depends on the color system used by your computer."
-msgstr "<ahelp hid=\".\">የ ቁጥር ዋጋ ይመልሳል የ ተሰላውን በ መቀላቀያ ሶስት ቀለሞችን (ቀይ: አረንጓዴ: እና ሰማያዊ) እና የ alpha channel, በ RGBA ቀለም ስርአት ውስጥ </ahelp> ውጤቱ እንደ እርስዎ ኮምፒዩተር የ ቀለም አይነት ይለያያል"
+msgstr "<ahelp hid=\".\">የ ቁጥር ዋጋ ይመልሳል የ ተሰላውን በ መቀላቀያ ሶስት ቀለሞችን (ቀይ: አረንጓዴ: እና ሰማያዊ) እና የ አልፋ channel: በ RGBA ቀለም ስርአት ውስጥ </ahelp> ውጤቱ እንደ እርስዎ ኮምፒዩተር የ ቀለም አይነት ይለያያል"
#: func_color.xhp
msgctxt ""
@@ -57886,7 +57886,7 @@ msgctxt ""
"par_id27421466710275\n"
"help.text"
msgid "COLOR(Red; Green; Blue; Alpha)"
-msgstr "ቀለም (ቀይ: አረንጓዴ: ሰማያዊ: Alpha)"
+msgstr "ቀለም (ቀይ: አረንጓዴ: ሰማያዊ: አልፋ)"
#: func_color.xhp
msgctxt ""
@@ -57950,7 +57950,7 @@ msgctxt ""
"bm_id452245224522\n"
"help.text"
msgid "<bookmark_value>COUNTIFS function</bookmark_value> <bookmark_value>counting row;satisfying criteria</bookmark_value> <bookmark_value>counting column;satisfying criteria</bookmark_value>"
-msgstr "<bookmark_value>መቁጠሪያ ከሆኑ ተግባር</bookmark_value> <bookmark_value>መቁጠሪያ ረድፍ: ከ ተሟላ መመዘኛው</bookmark_value> <bookmark_value>መቁጠሪያ አምድ:ከ ተሟላ መመዘኛው</bookmark_value>"
+msgstr "<bookmark_value>መቁጠሪያ ከሆኑ ተግባር</bookmark_value> <bookmark_value>መቁጠሪያ ረድፍ: ከ ተሟላ መመዘኛው</bookmark_value> <bookmark_value>መቁጠሪያ አምድ: ከ ተሟላ መመዘኛው</bookmark_value>"
#: func_countifs.xhp
msgctxt ""
@@ -58022,7 +58022,7 @@ msgctxt ""
"par_id14223137501158\n"
"help.text"
msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a row or a column is taken into counting.<br/>The <emph>Criterion</emph> needs to be a string expression, in particular, the <emph>Criterion</emph> needs to be enclosed in quotation marks (\"Criterion\") with the exception of the names of functions, cell references and the operator of a string concatenation (&).<br/>The operators equal to (=), not equal to (<>), greater than (>), greater than or equal to (>=), less than (<), and less than or equal to (<=) can be used in criterion arguments for comparison of numbers.<br/>The function can have up to 500 arguments, meaning that you can specify 250 pairs of ranges and criteria."
-msgstr "የ ሎጂክ ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ ሎጂክ እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ <emph> መመዘኛ </emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph> መመዘኛ </emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/> በ አንቀሳቃሽ እኩል ይሆናል ከ (=), እኩል አይደለም ከ (<>) ይበልጣል ከ (>), ይበልጣል ከ ወይንም እኩል ነው ከ (>=) ያንሳል ከ (<), እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/> ተግባሩ ሊኖረው ይችላል እስከ 500 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 250 መመዘኛ መጠኖች እና መመዘኛ"
+msgstr "የ ሎጂክ ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ ሎጂክ እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ <emph> መመዘኛ </emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph> መመዘኛ </emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&): <br/> በ አንቀሳቃሽ እኩል ይሆናል ከ (=): እኩል አይደለም ከ (<>) ይበልጣል ከ (>): ይበልጣል ከ ወይንም እኩል ነው ከ (>=) ያንሳል ከ (<): እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/> ተግባሩ ሊኖረው ይችላል እስከ 500 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 250 መመዘኛ መጠኖች እና መመዘኛ"
#: func_countifs.xhp
msgctxt ""
@@ -58030,7 +58030,7 @@ msgctxt ""
"par_id16654883224356\n"
"help.text"
msgid "If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero).<br/>If ranges for arguments <emph>Range</emph> and <emph>Criterion</emph> have unequal sizes, the function returns err:502."
-msgstr "ክፍሉ የያዘው ከሆነ እውነት ይታያል እንደ 1, ክፍሉ የያዘው ከሆነ ሀሰት – እንደ 0 (ዜሮ).<br/>መጠኖች ለ ክርክር <emph>መጠን</emph> እና <emph>መመዘኛ</emph> እኩል ያልሆነ መጠን አላቸው: ተግባር ይመልሳል ስህተት:502."
+msgstr "ክፍሉ የያዘው ከሆነ እውነት ይታያል እንደ 1, ክፍሉ የያዘው ከሆነ ሀሰት – እንደ 0 (ዜሮ).<br/> መጠኖች ለ ክርክር <emph> መጠን </emph> እና <emph> መመዘኛ </emph> እኩል ያልሆነ መጠን አላቸው: ተግባር ይመልሳል ስህተት:502."
#: func_countifs.xhp
msgctxt ""
@@ -58062,7 +58062,7 @@ msgctxt ""
"par_id74301057922522\n"
"help.text"
msgid "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\";C2:C6;\">70\")</item>"
-msgstr "<item type=\"input\">=COUNTIFS(B2:B6;\">=20\";C2:C6;\">70\")</item>"
+msgstr "<item type=\"input\">=መቁጠሪያ ከ ሆነ(B2:B6;\">=20\";C2:C6;\">70\")</item>"
#: func_countifs.xhp
msgctxt ""
@@ -58230,7 +58230,7 @@ msgctxt ""
"par_id3153222\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
-msgstr "በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - $[officename] - ባጠቃላይ </item>እርስዎ ማሰናዳት ይችላሉ አመት በ ሁለት-አሀዝ ቁጥር ማስገቢያ ይታወቃል በ 20xx."
+msgstr "በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - $[officename] - ባጠቃላይ </item> እርስዎ ማሰናዳት ይችላሉ አመት በ ሁለት-አሀዝ ቁጥር ማስገቢያ ይታወቃል በ 20xx."
#: func_date.xhp
msgctxt ""
@@ -58822,7 +58822,7 @@ msgctxt ""
"par_id3151064\n"
"help.text"
msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
-msgstr "አማራጭ ክርክር <emph>አይነት</emph> የ ማስሊያ ልዩነቶችን ነው የሚያሰላው: አይነት = 0 ወይንም ክርክር ከ ጎደለ: የ US ዘዴ (NASD, National Association of Securities Dealers) ይጠቀማል: አይነት <> 0, የ European ዘዴ ይጠቀማል"
+msgstr "አማራጭ ክርክር <emph> አይነት </emph> የ ማስሊያ ልዩነቶችን ነው የሚያሰላው: አይነት = 0 ወይንም ክርክር ከ ጎደለ: የ US ዘዴ (NASD, National Association of Securities Dealers) ይጠቀማል: አይነት <> 0, የ አውሮፓውያን ዘዴ ይጠቀማል"
#: func_days360.xhp
msgctxt ""
@@ -59414,7 +59414,7 @@ msgctxt ""
"par_id0603201610023949\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_ADD\">Calculates the additive forecast(s) (future values) based on the historical data using ETS or EDS algorithms</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_ADD\">ማስሊያ የ መደመሪያ መገመቻ(ዎች) (የ ወደፊት ዋጋ) መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS አልጎሪዝም </ahelp>. EDS የሚጠቀሙት የ ክርክር <emph>ጊዜ_እርዝመት</emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_ADD\">ማስሊያ የ መደመሪያ መገመቻ(ዎች) (የ ወደፊት ዋጋ) መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS algorithms </ahelp>. EDS የሚጠቀሙት የ ክርክር <emph> ጊዜ_እርዝመት </emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59454,7 +59454,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 157.166666666667, the additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 157.166666666667, ተጨማሪ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
+msgstr "ይመልሳል 157.166666666667, ተጨማሪ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59470,7 +59470,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 113.251442038722, the additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with period length of 4, no missing data, and SUM as aggregation."
-msgstr "ይመልሳል 113.251442038722, ተጨማሪ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ 4 ጊዜ እርዝመት: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
+msgstr "ይመልሳል 113.251442038722, ተጨማሪ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ 4 ጊዜ እርዝመት: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59510,7 +59510,7 @@ msgctxt ""
"par_id0603201610023949\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_MULT\">Calculates the multiplicative forecast(s) (future values) based on the historical data using ETS or EDS algorithms</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_MULT\">ማስሊያ የ ማባዣ መገመቻ(ዎች) (የ ወደፊት ዋጋ) መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS አልጎሪዝም </ahelp>. EDS የሚጠቀሙት የ ክርክር <emph>ጊዜ_እርዝመት</emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_MULT\">ማስሊያ የ ማባዣ መገመቻ(ዎች) (የ ወደፊት ዋጋ) መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS algorithms </ahelp>. EDS የሚጠቀሙት የ ክርክር <emph> ጊዜ_እርዝመት </emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59550,7 +59550,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 131.71437427439, the multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 131.71437427439, የ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
+msgstr "ይመልሳል 131.71437427439, የ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59566,7 +59566,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 120.747806144882, the multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with period length of 4, no missing data, and SUM as aggregation."
-msgstr "ይመልሳል 120.747806144882, የ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ 4 ጊዜ እርዝመት: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
+msgstr "ይመልሳል 120.747806144882, የ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ 4 ጊዜ እርዝመት: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59606,7 +59606,7 @@ msgctxt ""
"par_id0603201617141750\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIA\">Calculates the prediction interval(s) for additive forecast based on the historical data using ETS or EDS algorithms.</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIA\">ማስሊያ የ መገመቻ ክፍተት(ቶች) ለ መደመሪያ መገመቻ መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS አልጎሪዝም</ahelp>EDS የሚጠቀሙት የ ክርክር <emph>ጊዜ_እርዝመት</emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIA\">ማስሊያ የ መገመቻ ክፍተት(ቶች) ለ መደመሪያ መገመቻ መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS algorithms </ahelp> EDS የሚጠቀሙት የ ክርክር <emph> ጊዜ_እርዝመት </emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59670,7 +59670,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 18.8061295551355, the prediction interval for additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, 90% (=0.9) confidence level, with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 18.8061295551355, የ መገመቻ ክፍተት ለ መደመሪያ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: 90% (=0.9) የ መተማመኛ ደረጃ: በ አንድ ናሙና በ ጊዜ ውስጥ: ምንም የ ጎደለ ዳታ የለም: እና አማካይ እንደ ዝቅ ማድረጊያ"
+msgstr "ይመልሳል 18.8061295551355, የ መገመቻ ክፍተት ለ መደመሪያ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: 90% (=0.9) የ መተማመኛ ደረጃ: በ አንድ ናሙና በ ጊዜ ውስጥ: ምንም የ ጎደለ ዳታ የለም: እና አማካይ እንደ ዝቅ ማድረጊያ"
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59686,7 +59686,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 23.4416821953741, the prediction interval for additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation."
-msgstr "ይመልሳል 23.4416821953741, የ መገመቻ ክፍተት ለ መደመሪያ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ መተማመኛ ደረጃ 0.8: የ ጊዜ እርዝመት በ 4: ምንም የ ጎደለ ዳታ የለም: እና ድምር እንደ ዝቅ ማድረጊያ"
+msgstr "ይመልሳል 23.4416821953741, የ መገመቻ ክፍተት ለ መደመሪያ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ መተማመኛ ደረጃ 0.8: የ ጊዜ እርዝመት በ 4: ምንም የ ጎደለ ዳታ የለም: እና ድምር እንደ ዝቅ ማድረጊያ"
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59726,7 +59726,7 @@ msgctxt ""
"par_id0603201617141750\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIM\">Calculates the prediction interval(s) for multiplicative forecast based on the historical data using ETS or EDS algorithms.</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIM\">ማስሊያ የ መገመቻ ክፍተት(ቶች) ለ ማባዣ መገመቻ መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS አልጎሪዝም</ahelp>EDS የሚጠቀሙት የ ክርክር <emph>ጊዜ_እርዝመት</emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIM\">ማስሊያ የ መገመቻ ክፍተት(ቶች) ለ ማባዣ መገመቻ መሰረት ባደረገ ታሪካዊ ዳታ በ መጠቀም ነው ETS ወይንም EDS algorithms </ahelp> EDS የሚጠቀሙት የ ክርክር <emph> ጊዜ_እርዝመት </emph> 0 ሲሆን ነው: ያለበለዚያ ETS ይጠቀማል"
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59790,7 +59790,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 20.1040952101013, the prediction interval for multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, confidence level of 90% (=0.9) with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 20.1040952101013, የ መገመቻ ክፍተት ለ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: የ መተማመኛ ደረጃ: 90% (=0.9) በ አንድ ናሙና በ ጊዜ ውስጥ: ምንም የ ጎደለ ዳታ የለም: እና አማካይ እንደ ዝቅ ማድረጊያ"
+msgstr "ይመልሳል 20.1040952101013, የ መገመቻ ክፍተት ለ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: የ መተማመኛ ደረጃ: 90% (=0.9) በ አንድ ናሙና በ ጊዜ ውስጥ: ምንም የ ጎደለ ዳታ የለም: እና አማካይ እንደ ዝቅ ማድረጊያ"
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59806,7 +59806,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 27.5285874381574, the prediction interval for multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation."
-msgstr "ይመልሳል 27.5285874381574, የ መገመቻ ክፍተት ለ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ መተማመኛ ደረጃ 0.8: የ ጊዜ እርዝመት በ 4: ምንም የ ጎደለ ዳታ የለም: እና ድምር እንደ ዝቅ ማድረጊያ"
+msgstr "ይመልሳል 27.5285874381574, የ መገመቻ ክፍተት ለ ማባዣ መገመቻ ለ ጥር 2014 መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ መተማመኛ ደረጃ 0.8: የ ጊዜ እርዝመት በ 4: ምንም የ ጎደለ ዳታ የለም: እና ድምር እንደ ዝቅ ማድረጊያ"
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59886,7 +59886,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 6, the number of samples in period based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 6, የ ናሙና ቁጥር መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
+msgstr "ይመልሳል 6, የ ናሙና ቁጥር መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
#: func_forecastetsseason.xhp
msgctxt ""
@@ -59966,7 +59966,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 0.9990234375, the additive statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with beta smoothing, one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 0.9990234375, ተጨማሪ ስታትስቲክስ መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ ቤታ ማለስለሻ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
+msgstr "ይመልሳል 0.9990234375, ተጨማሪ ስታትስቲክስ መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ ቤታ ማለስለሻ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -59982,7 +59982,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 0.0615234375, the additive statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with gamma smoothing, no missing data, and SUM as aggregation."
-msgstr "ይመልሳል 0.0615234375, ተጨማሪ ስታትስቲክስ መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ ጋማ ማለስለሻ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
+msgstr "ይመልሳል 0.0615234375, ተጨማሪ ስታትስቲክስ መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ ጋማ ማለስለሻ: አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -60062,7 +60062,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 0.084073452803966, the multiplicative statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with symmetric mean absolute percentage error (SMAPE), one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr "ይመልሳል 0.084073452803966, የ ማባዣ ስታትስቲክስ መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ symetric mean absolute percentage error (SMAPE), አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
+msgstr "ይመልሳል 0.084073452803966, የ ማባዣ ስታትስቲክስ መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ symetric mean absolute percentage error (SMAPE): አንድ ናሙና በ አንድ ጊዜ: ምንም የ ጎደለ ዳታ የለም እና መካከለኛ እንደ ስብስብ"
#: func_forecastetsstatmult.xhp
msgctxt ""
@@ -60078,7 +60078,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 15.8372533480997, the multiplicative statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with root mean squared error, no missing data, and SUM as aggregation."
-msgstr "ይመልሳል 15.8372533480997, ተጨማሪ የ ማባዣ ስታትስቲክስ መሰረት ባደረገ በ <emph>ዋጋዎች</emph> እና <emph>የ ሰአት መስመር</emph> የ ተሰየሙ መጠኖች ከ ላይ: በ root mean squared error: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
+msgstr "ይመልሳል 15.8372533480997, ተጨማሪ የ ማባዣ ስታትስቲክስ መሰረት ባደረገ በ <emph> ዋጋዎች </emph> እና <emph> የ ሰአት መስመር </emph> የ ተሰየሙ መጠኖች ከ ላይ: በ root mean squared error: ምንም የ ጎደለ ዳታ የለም እና ድምር እንደ ስብስብ"
#: func_forecastetsstatmult.xhp
msgctxt ""
@@ -61734,7 +61734,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "SECOND(Number)"
-msgstr "SECOND(Number)"
+msgstr "ሰከንድ(ቁጥር)"
#: func_second.xhp
msgctxt ""
@@ -62094,7 +62094,7 @@ msgctxt ""
"par_id30574750215839\n"
"help.text"
msgid "If E2 = pen, the function returns 65, because the link to the cell is substituted with its content."
-msgstr "ከሆነ E2 = ብዕር: ተግባር ይመልሳል 65, ምክንያቱም የ ክፍሉ አገናኝ በ ይዞታ ተቀይሯል"
+msgstr "ከሆነ E2 = ብዕር: ተግባር ይመልሳል 65: ምክንያቱም የ ክፍሉ አገናኝ በ ይዞታ ተቀይሯል"
#: func_sumifs.xhp
msgctxt ""
@@ -62118,7 +62118,7 @@ msgctxt ""
"bm_id3154073\n"
"help.text"
msgid "<bookmark_value>TIME function</bookmark_value>"
-msgstr "<bookmark_value>TIME function</bookmark_value>"
+msgstr "<bookmark_value>የ ሰአት ተግባር</bookmark_value>"
#: func_time.xhp
msgctxt ""
@@ -62158,7 +62158,7 @@ msgctxt ""
"par_id3152904\n"
"help.text"
msgid "Use an integer to set the <emph>Hour</emph>."
-msgstr "ይጠቀሙ ኢንቲጀር ለማሰናዳት <emph> ሰአት </emph>."
+msgstr "ይጠቀሙ ኢንቲጀር ለ ማሰናዳት <emph> ሰአት </emph>"
#: func_time.xhp
msgctxt ""
@@ -62166,7 +62166,7 @@ msgctxt ""
"par_id3151346\n"
"help.text"
msgid "Use an integer to set the <emph>Minute</emph>."
-msgstr "ይጠቀሙ ኢንቲጀር ለማሰናዳት <emph> ደቂቃ </emph>."
+msgstr "ይጠቀሙ ኢንቲጀር ለ ማሰናዳት <emph> ደቂቃ </emph>"
#: func_time.xhp
msgctxt ""
@@ -62174,7 +62174,7 @@ msgctxt ""
"par_id3151366\n"
"help.text"
msgid "Use an integer to set the <emph>Second</emph>."
-msgstr "ይጠቀሙ ኢንቲጀር ለማሰናዳት <emph> ሰከንድ </emph>."
+msgstr "ይጠቀሙ ኢንቲጀር ለ ማሰናዳት <emph> ሰከንድ </emph>"
#: func_time.xhp
msgctxt ""
@@ -62190,7 +62190,7 @@ msgctxt ""
"par_id3156076\n"
"help.text"
msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
-msgstr "<item type=\"input\">=TIME(0;0;0)</item> ይመልሳል 00:00:00"
+msgstr "<item type=\"input\">=ሰአት(0;0;0)</item> ይመልሳል 00:00:00"
#: func_time.xhp
msgctxt ""
@@ -62198,7 +62198,7 @@ msgctxt ""
"par_id3156090\n"
"help.text"
msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
-msgstr "<item type=\"input\">=TIME(4;20;4)</item> ይመልሳል 04:20:04"
+msgstr "<item type=\"input\">=ሰአት(4;20;4)</item> ይመልሳል 04:20:04"
#: func_timevalue.xhp
msgctxt ""
@@ -62382,7 +62382,7 @@ msgctxt ""
"bm_id3149012\n"
"help.text"
msgid "<bookmark_value>WEBSERVICE function</bookmark_value>"
-msgstr "<bookmark_value>WEBSERVICE function</bookmark_value>"
+msgstr "<bookmark_value>የ ዌብ ግልጋሎት ተግባር</bookmark_value>"
#: func_webservice.xhp
msgctxt ""
@@ -62846,7 +62846,7 @@ msgctxt ""
"par_id3154269\n"
"help.text"
msgid "<emph>Mode</emph> sets the start of the week and the week numbering system. This parameter is optional, if omitted the default value is 1."
-msgstr "<emph>ዘዴ</emph> የ ሳምንቱ መጀመሪያ ማሰናጃ እና የ ሳምንት ቁጥር መስጫ ስርአት: ይህ ደንብ በ ምርጫ ነው: ከ ተተወ ነባሩ ዋጋ 1. ነው"
+msgstr "<emph>ዘዴ </emph> የ ሳምንቱ መጀመሪያ ማሰናጃ እና የ ሳምንት ቁጥር መስጫ ስርአት: ይህ ደንብ በ ምርጫ ነው: ከ ተተወ ነባሩ ዋጋ 1. ነው"
#: func_weeknum.xhp
msgctxt ""
@@ -63766,7 +63766,7 @@ msgctxt ""
"par_id3150931\n"
"help.text"
msgid "European method, 12 months of 30 days each"
-msgstr "በ European ዘዴ: 12 ወሮች እያንዳንዳቸው 30 ቀኖች አላቸው"
+msgstr "በ አውሮፓውያን ዘዴ: 12 ወሮች እያንዳንዳቸው 30 ቀኖች አላቸው"
#: func_yearfrac.xhp
msgctxt ""
@@ -64566,7 +64566,7 @@ msgctxt ""
"par_id1001260\n"
"help.text"
msgid "ANOVA is the acronym for <emph>AN</emph>alysis <emph>O</emph>f <emph>VA</emph>riance. This tool produces the analysis of variance of a given data set"
-msgstr "የ ልዩነት መመርመሪያ በ <emph>መመ</emph>ርመሪያ <emph>በ</emph>የ <emph>ልዩ</emph>ነት: ይህ መሳሪያ የሚፈጥረው የ ልዩነት መመርመሪያ ነው ለ ተሰጠው ዳታ ስብስብ"
+msgstr "የ ልዩነት መመርመሪያ <emph> በ </emph> መመርመሪያ <emph> በ </emph> የ <emph> ልዩነት </emph>: ይህ መሳሪያ የሚፈጥረው የ ልዩነት መመርመሪያ ነው ለ ተሰጠው ዳታ ስብስብ"
#: statistics.xhp
msgctxt ""
@@ -64574,7 +64574,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on ANOVA, refer to the <link href=\"http://en.wikipedia.org/wiki/ANOVA\">corresponding Wikipedia article</link>."
-msgstr "ለ በለጠ መረጃ ስለ የ ልዩነት መመርመሪያ: ማመሳከሪያ ለ <link href=\"http://en.wikipedia.org/wiki/ANOVA\">ተመሳሳይ ጽሁፍ በ Wikipedia </link>."
+msgstr "ለ በለጠ መረጃ ስለ የ ልዩነት መመርመሪያ: ማመሳከሪያ ለ <link href=\"http://en.wikipedia.org/wiki/ANOVA\"> ተመሳሳይ ጽሁፍ በ Wikipedia </link>"
#: statistics.xhp
msgctxt ""
@@ -64950,7 +64950,7 @@ msgctxt ""
"par_id1001970\n"
"help.text"
msgid "For more information on statistical covariance, refer to the <link href=\"http://en.wikipedia.org/wiki/Covariance\">corresponding Wikipedia article</link>."
-msgstr "ለ በለጠ መረጃ ስለ ስታስትቲክስ covariance, ይህን ይመልከቱ <link href=\"http://en.wikipedia.org/wiki/Covariance\">ተመሳሳይ የ Wikipedia ጽሁፍ </link>."
+msgstr "ለ በለጠ መረጃ ስለ ስታስትቲክስ ኮቫሪያንስ: ይህን ይመልከቱ <link href=\"http://en.wikipedia.org/wiki/Covariance\"> ተመሳሳይ የ Wikipedia ጽሁፍ </link>:"
#: statistics.xhp
msgctxt ""
@@ -65078,7 +65078,7 @@ msgctxt ""
"par_id1002160\n"
"help.text"
msgid "<emph>Smoothing Factor</emph>: A parameter between 0 and 1 that represents the damping factor Alpha in the smoothing equation."
-msgstr "<emph>ማለስለሻ Factor</emph>: ደንብ በ 0 እና 1 መካከል የሚቀንስ factor Alpha ያመለክታል በ ማለስለሻ ማስሊያ ውስጥ"
+msgstr "<emph>ማለስለሻ ፋክተር </emph>: ደንብ በ 0 እና 1 መካከል የሚቀንስ ፋክተር አልፋ ያመለክታል በ ማለስለሻ ማስሊያ ውስጥ"
#: statistics.xhp
msgctxt ""
@@ -65270,7 +65270,7 @@ msgctxt ""
"par_id1002850\n"
"help.text"
msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
-msgstr "ለ በለጠ መረጃ ስለ t-መሞከሪያ: ማመሳከሪያ ለ <link href=\"http://en.wikipedia.org/wiki/T-test\">ተመሳሳይ ጽሁፍ በ Wikipedia </link>."
+msgstr "ለ በለጠ መረጃ ስለ t-መሞከሪያ: ማመሳከሪያ ለ <link href=\"http://en.wikipedia.org/wiki/T-test\"> ተመሳሳይ ጽሁፍ በ Wikipedia </link>."
#: statistics.xhp
msgctxt ""
@@ -65494,7 +65494,7 @@ msgctxt ""
"par_id1003260\n"
"help.text"
msgid "A <emph>F-test</emph> is any statistical test based on the F-distribution under the null hypothesis."
-msgstr "የ <emph>F-መሞከሪያ</emph> የ ስታትስቲክስ መሞከሪያ ነው: መሰረት ባደረገ በ F-ስርጭት በ ባዶ መላምት ውስጥ"
+msgstr "የ <emph> F-መሞከሪያ </emph> የ ስታትስቲክስ መሞከሪያ ነው: መሰረት ባደረገ በ F-ስርጭት በ ባዶ መላምት ውስጥ"
#: statistics.xhp
msgctxt ""
@@ -66158,7 +66158,7 @@ msgctxt ""
"par_id1701201618090555\n"
"help.text"
msgid "Power"
-msgstr "ውስብስብ ቁጥር ሲነሳ በ ሀይል"
+msgstr "ሀይል"
#: statistics_regression.xhp
msgctxt ""
@@ -66198,7 +66198,7 @@ msgctxt ""
"par_id14337286612130\n"
"help.text"
msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
-msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">ናሙና</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">መግለጫ ስታስቲክስ</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">መመርመሪያ የ ልዩነት (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">ግንኙነት</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">ኮቫሪያንስ</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">ኤክስፖኔንሺያል ማለስለሻ </link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">በ መካከለኛ በ መጓዝ ላይ</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">ቺ-ስኴር መሞከሪያ</link>."
+msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">ናሙና </link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\"> መግለጫ ስታስቲክስ</link>: <link href=\"text/scalc/01/statistics.xhp#anova\"> መመርመሪያ የ ልዩነት (ANOVA)</link>: <link href=\"text/scalc/01/statistics.xhp#correlation\"> ግንኙነት </link>:, <link href=\"text/scalc/01/statistics.xhp#covariance\"> ኮቫሪያንስ </link>: <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\"> ኤክስፖኔንሺያል ማለስለሻ </link>: <link href=\"text/scalc/01/statistics.xhp#movingaverage\"> በ መካከለኛ በ መጓዝ ላይ </link>: <link href=\"text/scalc/01/statistics.xhp#ttest\"> t-መሞከሪያ </link>: <link href=\"text/scalc/01/statistics.xhp#ftest\"> F-መሞከሪያ </link>: <link href=\"text/scalc/01/statistics.xhp#ztest\"> Z-መሞከሪያ </link>: <link href=\"text/scalc/01/statistics.xhp#chisqtest\"> ቺ-ስኴር መሞከሪያ </link>:"
#: text2columns.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/02.po b/source/am/helpcontent2/source/text/scalc/02.po
index 39d390a064d..988bda6a180 100644
--- a/source/am/helpcontent2/source/text/scalc/02.po
+++ b/source/am/helpcontent2/source/text/scalc/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-05 14:15+0000\n"
+"PO-Revision-Date: 2017-06-17 14:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496672124.000000\n"
+"X-POOTLE-MTIME: 1497710226.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_POS\">ለ አሁኑ ክፍል ማመሳከሪያ ማሳያ: ለ ተመረጡት ክፍሎች: ወይንም የ ቦታ ስም: እንዲሁም መምረጥ ይችላሉ የ ክፍሎች መጠን: እና ከዛ ስም ይጻፉ ለዛ መጠን ወደ የ <emph>ስም ሳጥን</emph>.</ahelp> ውስጥ"
+msgstr "<ahelp hid=\"HID_INSWIN_POS\">ለ አሁኑ ክፍል ማመሳከሪያ ማሳያ: ለ ተመረጡት ክፍሎች: ወይንም የ ቦታ ስም: እንዲሁም መምረጥ ይችላሉ የ ክፍሎች መጠን: እና ከዛ ስም ይጻፉ ለዛ መጠን ወደ የ <emph> ስም ሳጥን </emph></ahelp> ውስጥ"
#: 06010000.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "This icon is only available when the <emph>Input line</emph> box is not active."
-msgstr "ይህ ምልክት ዝግጁ የሚሆነው የ <emph>ማስገቢያ መስመር</emph> ሳጥን ንቁ በማይሆንበት ጊዜ ነው"
+msgstr "ይህ ምልክት ዝግጁ የሚሆነው የ <emph> ማስገቢያ መስመር </emph> ሳጥን ንቁ በማይሆንበት ጊዜ ነው"
#: 06040000.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3153823\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_CANCEL\">Clears the contents of the <emph>Input line</emph>, or cancels the changes that you made to an existing formula.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_CANCEL\">ይዞታዎችን ማጽጃ የ <emph>ማስገቢያ መስመር</emph> ወይንም መሰረዣ የ ቀየሩትን ለውጦች በ ነበረው መቀመሪያ ላይ</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_CANCEL\">ይዞታዎችን ማጽጃ የ <emph> ማስገቢያ መስመር </emph> ወይንም መሰረዣ የ ቀየሩትን ለውጦች በ ነበረው መቀመሪያ ላይ </ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3147336\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertCtrl\">ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ወደ አሁኑ ወረቀት ንድፎች እና የተለዩ ባህሪዎች ለ ማስገባት</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCtrl\">ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ወደ አሁኑ ወረቀት ንድፎች እና የተለዩ ባህሪዎች ለ ማስገባት </ahelp>"
#: 18010000.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsCellsCtrl\">ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph>ክፍሎች ማስገቢያ </emph>እቃ መደርደሪያ፡ ወደ አሁኑ ወረቀት ክፍሎች ረድፎች እና አምዶች ለማስገባት</ahelp>"
+msgstr "<ahelp hid=\".uno:InsCellsCtrl\">ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph> ክፍሎች ማስገቢያ </emph> እቃ መደርደሪያ፡ ወደ አሁኑ ወረቀት ክፍሎች ረድፎች እና አምዶች ለማስገባት </ahelp>"
#: 18020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/04.po b/source/am/helpcontent2/source/text/scalc/04.po
index 0036469e8c3..dc1f5ece206 100644
--- a/source/am/helpcontent2/source/text/scalc/04.po
+++ b/source/am/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-30 23:08+0000\n"
+"PO-Revision-Date: 2017-06-15 20:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496185716.000000\n"
+"X-POOTLE-MTIME: 1497559955.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3152976\n"
"help.text"
msgid "Moves one screen to the left."
-msgstr "አንድ screen ወደ ግራ ማንቀሳቀሻ"
+msgstr "አንድ መመልከቻ ወደ ግራ ማንቀሳቀሻ"
#: 01020000.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id3149540\n"
"help.text"
msgid "Shows or hides the <emph>Navigator</emph>."
-msgstr "ማሳያ ወይንም መደበቂያ <emph> መቃኛ </emph>."
+msgstr "ማሳያ ወይንም መደበቂያ <emph> መቃኛ </emph>"
#: 01020000.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3145209\n"
"help.text"
msgid "Creates a document template."
-msgstr "የሰነድ ቴምፕሌት መፍጠሪያ"
+msgstr "የ ሰነድ ቴምፕሌት መፍጠሪያ"
#: 01020000.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3156321\n"
"help.text"
msgid "Groups the selected data range."
-msgstr "የተመረጠውን የዳታ መጠን በቡድን ማድረጊያ"
+msgstr "የ ተመረጠውን የ ዳታ መጠን በ ቡድን ማድረጊያ"
#: 01020000.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3156128\n"
"help.text"
msgid "Ungroups the selected data range."
-msgstr "የተመረጠውን የዳታ መጠን ቡድን መለያያ"
+msgstr "የ ተመረጠውን የ ዳታ መጠን ቡድን መለያያ"
#: 01020000.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_id3149197\n"
"help.text"
msgid "Open Format Cells dialog"
-msgstr "የክፍሎች አቀራረብ ንግግር መክፈቻ"
+msgstr "የ ክፍሎች አቀራረብ ንግግር መክፈቻ"
#: 01020000.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"hd_id3155584\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከ ስሩ ማስመሪያ የ ቃላቱን ባህሪ \"ረድፍ\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከ ስሩ ማስመሪያ የ ቃላቱን ባህሪ \"ረድፍ\""
#: 01020000.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"hd_id3149923\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከ ስሩ ማስመሪያ የ ቃላቱን ባህሪ \"ዳታ\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከ ስሩ ማስመሪያ የ ቃላቱን ባህሪ \"ዳታ\""
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/05.po b/source/am/helpcontent2/source/text/scalc/05.po
index d01703288fc..4b6048d371b 100644
--- a/source/am/helpcontent2/source/text/scalc/05.po
+++ b/source/am/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-16 00:35+0000\n"
+"PO-Revision-Date: 2017-06-18 15:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494894951.000000\n"
+"X-POOTLE-MTIME: 1497800458.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3156259\n"
"help.text"
msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
-msgstr "መለያ መገምገም አይቻልም: ለምሳሌ: ዋጋ ያለው ማመሳከሪያ የለም: ዋጋ ያለው ግዛት የለም: የ አምድ/ረድፍ ምልክት የለም: macro የለም: የ ተሳሳተ የ ዴሲማል መከፋፈያ:፡ ተጨማ-ሪዎች አልተገኙም"
+msgstr "መለያ መገምገም አይቻልም: ለምሳሌ: ዋጋ ያለው ማመሳከሪያ የለም: ዋጋ ያለው ግዛት የለም: የ አምድ/ረድፍ ምልክት የለም: ማክሮስ የለም: የ ተሳሳተ የ ዴሲማል መከፋፈያ: ተጨማ-ሪዎች አልተገኙም"
#: 02140000.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id2752992\n"
"help.text"
msgid "<variable id=\"sam01\">Menu <emph>Tools - Options - LibreOffice Calc - Formula</emph>, and in section <emph>Detailed Calculation Settings</emph> press <emph>Details...</emph> button</variable>"
-msgstr "<variable id=\"sam01\">ዝርዝር <emph>መሳሪያዎች - ምርጫ - LibreOffice ሰንጠረዥ - መቀመሪያ</emph> እና በ ክፍል ውስጥ <emph>ዝርዝር ስሌቶች ማሰናጃዎች</emph> ይጫኑ <emph>ዝርዝሮች...</emph> ቁልፍ</variable>"
+msgstr "<variable id=\"sam01\">ዝርዝር <emph>መሳሪያዎች - ምርጫ - LibreOffice ሰንጠረዥ - መቀመሪያ </emph> እና በ ክፍል ውስጥ <emph> ዝርዝር ስሌቶች ማሰናጃዎች </emph> ይጫኑ <emph> ዝርዝሮች... </emph> ቁልፍ</variable>"
#: OpenCL_options.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index a8f86129af2..dc65852871e 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-05 16:57+0000\n"
+"PO-Revision-Date: 2017-06-19 20:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496681853.000000\n"
+"X-POOTLE-MTIME: 1497903453.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3155443\n"
"help.text"
msgid "This function is active by default. To turn this function off, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
-msgstr "ይህ ተግባር በ ነባር ንቁ ነው: ተግባሩን ለማጥፋት ይምረጡe <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ማስሊያ </emph> እና ያጽዱ <emph> ራሱ በራሱ አምድ እና ረድፍ ምልክቶች መፈለጊያ </emph> ከ ሳጥኑ ውስጥ ያጥፉ"
+msgstr "ይህ ተግባር በ ነባር ንቁ ነው: ተግባሩን ለማጥፋት ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ማስሊያ </emph> እና ያጽዱ <emph> ራሱ በራሱ አምድ እና ረድፍ ምልክቶች መፈለጊያ </emph> ከ ሳጥኑ ውስጥ ያጥፉ"
#: address_auto.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"bm_id3149456\n"
"help.text"
msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
-msgstr "<bookmark_value>ማቦዘኛ: ራሱ በራሱ መቀየሪያ</bookmark_value> <bookmark_value>ሰንጠረዦች: ማቦዘኛ ራሱ በራሱ መቀየሪያ in</bookmark_value> <bookmark_value>በራሱ ማስገቢያ ተግባር ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ጽሁፍ በ ክፍሎች: በራሱ ማስገቢያ ተግባር</bookmark_value> <bookmark_value>ክፍሎች: በራሱ ማስገቢያ ተግባር የ ጽሁፍ</bookmark_value> <bookmark_value>ማስገቢያ ድጋፍ በ ሰንጠረዦች</bookmark_value> <bookmark_value>መቀየሪያ: ማስገቢያ በ ክፍሎች ውስጥ</bookmark_value> <bookmark_value>በራሱ አራሚ ተግባር: የ ክፍል ይዞታዎች</bookmark_value> <bookmark_value>ክፍል ማስገቢያ: በራሱ ማስገቢያ ተግባር</bookmark_value> <bookmark_value>lowercase ፊደሎች: በራሱ ማስገቢያ ተግባር (በ ክፍሎች ውስጥ)</bookmark_value> <bookmark_value>አቢይ ፊደል: በራሱ ማስገቢያ ተግባር (በ ክፍሎች ውስጥ)</bookmark_value> <bookmark_value>የ ቀን አቀራረብ: ማስወገጃ መቀየሪያ ወደ</bookmark_value> <bookmark_value>ቁጥር መጨረሻ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ጽሁፍ መጨረሻ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ቃላት መጨረሻ ማብሪያ/ማጥፊያ</bookmark_value>"
+msgstr "<bookmark_value>ማቦዘኛ: ራሱ በራሱ መቀየሪያ</bookmark_value> <bookmark_value>ሰንጠረዦች: ማቦዘኛ ራሱ በራሱ መቀየሪያ in</bookmark_value> <bookmark_value>በራሱ ማስገቢያ ተግባር ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ጽሁፍ በ ክፍሎች: በራሱ ማስገቢያ ተግባር</bookmark_value> <bookmark_value>ክፍሎች: በራሱ ማስገቢያ ተግባር የ ጽሁፍ</bookmark_value> <bookmark_value>ማስገቢያ ድጋፍ በ ሰንጠረዦች</bookmark_value> <bookmark_value>መቀየሪያ: ማስገቢያ በ ክፍሎች ውስጥ</bookmark_value> <bookmark_value>በራሱ አራሚ ተግባር: የ ክፍል ይዞታዎች</bookmark_value> <bookmark_value>ክፍል ማስገቢያ: በራሱ ማስገቢያ ተግባር</bookmark_value> <bookmark_value>የ ታችኛው ጉዳይ ፊደሎች: በራሱ ማስገቢያ ተግባር (በ ክፍሎች ውስጥ)</bookmark_value> <bookmark_value>አቢይ ፊደል: በራሱ ማስገቢያ ተግባር (በ ክፍሎች ውስጥ)</bookmark_value> <bookmark_value>የ ቀን አቀራረብ: ማስወገጃ መቀየሪያ ወደ</bookmark_value> <bookmark_value>ቁጥር መጨረሻ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ጽሁፍ መጨረሻ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ቃላት መጨረሻ ማብሪያ/ማጥፊያ</bookmark_value>"
#: auto_off.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Tools - AutoInput</emph></link>."
-msgstr "በ ራሱ ማስገቢያ ለ ማብራት ወይንም ለ ማጥፋት: ማሰናጃ ወይንም ማስወገጃ ከ ፊት ለፊት ያለውን ምልክት ማድረጊያ <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>መሳሪያዎች - ክፍል ይዞታዎች - በራሱ ማስገቢያ</emph></link>."
+msgstr "በ ራሱ ማስገቢያ ለ ማብራት ወይንም ለ ማጥፋት: ማሰናጃ ወይንም ማስወገጃ ከ ፊት ለፊት ያለውን ምልክት ማድረጊያ <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph> መሳሪያዎች - ክፍል ይዞታዎች - በራሱ ማስገቢያ </emph></link>"
#: auto_off.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id3149565\n"
"help.text"
msgid "Cell Content Always Begins With Uppercase"
-msgstr "የ ክፍል ይዞታ ሁልጊዜ የሚጀምረው በ አቢይ ፊደል ነው"
+msgstr "የ ክፍል ይዞታ ሁልጊዜ የሚጀምረው በ ላይኛው ጉዳይ ፊደል ነው"
#: auto_off.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
-msgstr "ይምረጡ <emph>ዳታ - ማጣሪያ - በራሱ ማጣሪያ</emph>. የ ተጣመሩ ቀስቶች ይታያሉ በ መጀመሪያው ረድፍ በ ተመረጠው መጠን ውስጥ"
+msgstr "ይምረጡ <emph> ዳታ - ማጣሪያ - በራሱ ማጣሪያ </emph> የ ተጣመሩ ቀስቶች ይታያሉ በ መጀመሪያው ረድፍ በ ተመረጠው መጠን ውስጥ"
#: autofilter.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
-msgstr "በራሱ ማጣሪያ መጠቀም ለማስቆም: እንደገና ይምረጡ ሁሉንም ክፍሎች በ ደረጃ 1 የተመረጡትን እና እንደገና ይምረጡ <emph>ዳታ - ማጣሪያ - በራሱ ማጣሪያ</emph>."
+msgstr "በራሱ ማጣሪያ መጠቀም ለማስቆም: እንደገና ይምረጡ ሁሉንም ክፍሎች በ ደረጃ 1 የተመረጡትን እና እንደገና ይምረጡ <emph> ዳታ - ማጣሪያ - በራሱ ማጣሪያ </emph>"
#: autofilter.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_idN106D5\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - በራሱ አቀራረብ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - በራሱ አቀራረብ </item>"
#: autoformat.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
-msgstr "በ ራሱ አቀራረብ ውስጥ የትኞቹ ባህሪዎች እንደሚካተቱ ለመምረጥ: ይጫኑ <emph>ተጨማሪ</emph>."
+msgstr "በ ራሱ አቀራረብ ውስጥ የትኞቹ ባህሪዎች እንደሚካተቱ ለመምረጥ: ይጫኑ <emph> ተጨማሪ </emph>"
#: autoformat.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ማረሚያ - ሁሉንም መምረጫ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማረሚያ - ሁሉንም መምረጫ </item>"
#: autoformat.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - በራሱ አቀራረብ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - በራሱ አቀራረብ </item>"
#: autoformat.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_id3149260\n"
"help.text"
msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
-msgstr "ይምረጡ <emph> አቀራረብ - ክፍሎች </emph> (ወይንም <emph>የ ክፍሎች አቀራረብ </emph> ከ ዝርዝር አገባብ ውስጥ)"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፍሎች </emph> (ወይንም <emph> የ ክፍሎች አቀራረብ </emph> ከ ዝርዝር አገባብ ውስጥ)"
#: background.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3155414\n"
"help.text"
msgid "Choose <emph>Insert - Image - From File</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - ምስል - ከ ፋይል </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - ምስል - ከ ፋይል </emph>"
#: background.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
-msgstr "መጠቆሚያውን በ ክፍል A3, ውስጥ ያድርጉ በ ቀኝ-ይጫኑ የ አገባብ ዝርዝር ለ መክፈት እና ካዛ ይምረጡ <emph>የ ክፍል አቀራረብ</emph>."
+msgstr "መጠቆሚያውን በ ክፍል A3, ውስጥ ያድርጉ በ ቀኝ-ይጫኑ የ አገባብ ዝርዝር ለ መክፈት እና ካዛ ይምረጡ <emph> የ ክፍል አቀራረብ </emph>"
#: calc_date.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Calc - Sort Lists</item>."
-msgstr "እርስዎ ከ መረጡ አንድ ወይንም ከዚያ በላይ ተጓዳኝ ክፍሎች የ ተለዩ ቁጥሮች የያዙ: እና ይጎትቱ ቀሪዎቹ ክፍሎች ይሞላሉ በ ሂሳብ ድግግሞሽ በ ቁጥሮቹ የሚታወቀው: በራሱ መሙያ ተግባር ያውቃል የ ተስተካከሉ ዝርዝር የ ተገለጹ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች – ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ</item>."
+msgstr "እርስዎ ከ መረጡ አንድ ወይንም ከዚያ በላይ ተጓዳኝ ክፍሎች የ ተለዩ ቁጥሮች የያዙ: እና ይጎትቱ ቀሪዎቹ ክፍሎች ይሞላሉ በ ሂሳብ ድግግሞሽ በ ቁጥሮቹ የሚታወቀው: በራሱ መሙያ ተግባር ያውቃል የ ተስተካከሉ ዝርዝር የ ተገለጹ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች – ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ </item>"
#: calc_series.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"par_id633869\n"
"help.text"
msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
-msgstr "ይመልከቱ <link href=\"text/scalc/guide/calc_series.xhp\">ራሱ በራሱ መሙያ ዳታ መሰረት ባደረገ አጠገቡ ላሉት ክፍሎች</link>."
+msgstr "ይመልከቱ <link href=\"text/scalc/guide/calc_series.xhp\"> ራሱ በራሱ መሙያ ዳታ መሰረት ባደረገ አጠገቡ ላሉት ክፍሎች </link>"
#: cell_protect.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3152898\n"
"help.text"
msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
-msgstr "ይምረጡ <emph>የሚጠበቅ</emph> የ ተመረጠውን ክፍል ሌሎች ተጠቃሚዎች የ ክፍል ይዞታውን እና አቀራረብ መቀየር እንዳይችሉ"
+msgstr "ይምረጡ <emph> የሚጠበቅ </emph> የ ተመረጠውን ክፍል ሌሎች ተጠቃሚዎች የ ክፍል ይዞታውን እና አቀራረብ መቀየር እንዳይችሉ"
#: cell_protect.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_idN106C7\n"
"help.text"
msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Spreadsheet</item>."
-msgstr "የ ሰነድ አካል ለ መጠበቅ: ለምሳሌ: መቁጠሪያ: <link href=\"text/scalc/guide/rename_table.xhp\"> ስሞች </link> እና የ ወረቀቱን ደንብ ከ መቀየር: ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ሰንጠረዥ መጠበቂያ </item>."
+msgstr "የ ሰነድ አካል ለ መጠበቅ: ለምሳሌ: መቁጠሪያ: <link href=\"text/scalc/guide/rename_table.xhp\"> ስሞች </link> እና የ ወረቀቱን ደንብ ከ መቀየር: ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ሰንጠረዥ መጠበቂያ </item>"
#: cell_protect.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3154732\n"
"help.text"
msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
-msgstr "መክፈቻ የ <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">መቃኛ</link>. በ ታችኛው የ መቃኛ ሳጥን ውስጥ ይምረጡ የ ፋይል ምንጭ"
+msgstr "መክፈቻ የ <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\"> መቃኛ </link>: በ ታችኛው የ መቃኛ ሳጥን ውስጥ: ይምረጡ የ ፋይል ምንጭ"
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"par_id3154754\n"
"help.text"
msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
-msgstr "ይጠቀሙ የ <emph>መጎተቻ ዘዴ</emph> ምልክት በ መቃኛ ውስጥ: ይምረጡ እርስዎ ማመሳከሪያ እንደ hyperlink, አገናኝ: ወይንም ኮፒ ማድረግ ይፈልጉ እንደሆን"
+msgstr "ይጠቀሙ የ <emph> መጎተቻ ዘዴ </emph> ምልክት በ መቃኛ ውስጥ: ይምረጡ እርስዎ ማመሳከሪያ እንደ hyperlink: አገናኝ: ወይንም ኮፒ ማድረግ ይፈልጉ እንደሆን"
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"par_id3159204\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
-msgstr "ከ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች – ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME ሰንጠረዥ - ባጠቃላይ</item></link> እርስዎ መምረጥ ይችላሉ ማሻሻያ ምግኘት: በሚከፈት ጊዜ: ራሱ በራሱ እንዲፈጽም ሁልጊዜ: በሚጠየቅ ጊዜ: ወይንም በፍጹም አታሻሽል: ማሻሻያውን በ እጅ ማስጀመር ይቻላል ከ ንግግሩ ስር <item type=\"menuitem\">ማረሚያ - አገናኝ</item>."
+msgstr "ከ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች – ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME ሰንጠረዥ - ባጠቃላይ </item></link> እርስዎ መምረጥ ይችላሉ ማሻሻያ ምግኘት: በሚከፈት ጊዜ: ራሱ በራሱ እንዲፈጽም ሁልጊዜ: በሚጠየቅ ጊዜ: ወይንም በፍጹም አታሻሽል: ማሻሻያውን በ እጅ ማስጀመር ይቻላል ከ ንግግሩ ስር <item type=\"menuitem\"> ማረሚያ - አገናኝ </item>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"bm_id3145673\n"
"help.text"
msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ: በ መቀመሪያ መመደቢያ</bookmark_value> <bookmark_value>የ ክፍል አቀራረብ: በ መቀመሪያ መመደቢያ</bookmark_value> <bookmark_value>የ ተግባር ዘዴ ለምሳሌ</bookmark_value> <bookmark_value>የ ክፍል ዘዴ: በ መቀመሪያ መመደቢያ</bookmark_value> <bookmark_value>መቀመሪያ:የ ክፍል አቀራረብ መመደቢያ</bookmark_value>"
+msgstr "<bookmark_value>አቀራረብ: በ መቀመሪያ መመደቢያ</bookmark_value> <bookmark_value>የ ክፍል አቀራረብ: በ መቀመሪያ መመደቢያ</bookmark_value> <bookmark_value>የ ተግባር ዘዴ ለምሳሌ</bookmark_value> <bookmark_value>የ ክፍል ዘዴ: በ መቀመሪያ መመደቢያ</bookmark_value> <bookmark_value>መቀመሪያ: የ ክፍል አቀራረብ መመደቢያ</bookmark_value>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
-msgstr "የ ዘዴ() ተግባር መጨመር ይቻላል ወደ ነበረው መቀመሪያ በ ክፍል ውስጥ: ለ ምሳሌ: በ አንድ ላይ ከ አሁኑ ተግባር ጋር: እርስዎ ክፍል ማቅለም ይችላሉ እንደ ዋጋው ሁኔታ: መቀመሪያ =...+ዘዴ(ከሆነ(አሁን()>3; \"ቀይ\"; \"አረንጓዴ\")) የ ክፍሉ ዘዴ ይፈጸማል \"ቀይ\" ለ ክፍሉ ዋጋው ከ በለጠ ከ 3, ያለበለዚያ የ ክፍሉ ዘዴ \"አረንጓዴ\" ይፈጸማል"
+msgstr "የ ዘዴ() ተግባር መጨመር ይቻላል ወደ ነበረው መቀመሪያ በ ክፍል ውስጥ: ለ ምሳሌ: በ አንድ ላይ ከ አሁኑ ተግባር ጋር: እርስዎ ክፍል ማቅለም ይችላሉ እንደ ዋጋው ሁኔታ: መቀመሪያ =...+ዘዴ(ከሆነ(አሁን()>3; \"ቀይ\": \"አረንጓዴ\")) የ ክፍሉ ዘዴ ይፈጸማል \"ቀይ\" ለ ክፍሉ ዋጋው ከ በለጠ ከ 3, ያለበለዚያ የ ክፍሉ ዘዴ \"አረንጓዴ\" ይፈጸማል"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
-msgstr "የ ዝርዝር ትእዛዝ ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ</emph>."
+msgstr "የ ዝርዝር ትእዛዝ ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"par_id3147127\n"
"help.text"
msgid "Click <item type=\"menuitem\">Replace all</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ሁሉንም መቀየሪያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ሁሉንም መቀየሪያ </item>"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2502,7 +2502,7 @@ msgctxt ""
"par_id8039796\n"
"help.text"
msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Data - Calculate - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr "እንደ ሁኔታው አቀራረብ ለመፈጸም: በራሱ ማስሊያ ማስቻል አለብዎት: ይምረጡ <emph>ዳታ - ማስሊያ - በራሱ ማስሊያ</emph> (ለ እርስዎ ይታይዎታል የ ምልክት ማድረጊያ ከ ትእዛዝ አጠገብ በራሱ ማስሊያ ሲያስችሉ)"
+msgstr "እንደ ሁኔታው አቀራረብ ለመፈጸም: በራሱ ማስሊያ ማስቻል አለብዎት: ይምረጡ <emph> ዳታ - ማስሊያ - በራሱ ማስሊያ </emph> (ለ እርስዎ ይታይዎታል የ ምልክት ማድረጊያ ከ ትእዛዝ አጠገብ በራሱ ማስሊያ ሲያስችሉ)"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "Choose <emph>Format - Conditional Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - እንደ ሁኔታው አቀራረብ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - እንደ ሁኔታው አቀራረብ </emph>"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2622,7 +2622,7 @@ msgctxt ""
"par_id3150883\n"
"help.text"
msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
-msgstr "ይጫኑ በ ባዶ ክፍል ላይ እና ይምረጡ ትእዛዝ <emph>ክፍሎች አቀራረብ</emph> በ አገባብ ዝርዝር ውስጥ"
+msgstr "ይጫኑ በ ባዶ ክፍል ላይ እና ይምረጡ ትእዛዝ <emph> ክፍሎች አቀራረብ </emph> በ አገባብ ዝርዝር ውስጥ"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2670,7 +2670,7 @@ msgctxt ""
"par_id3144768\n"
"help.text"
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
-msgstr "መጠቆሚያውን በ ባዶ ክፍል ላይ ያድርጉ: ለምሳሌ, J14, እና ይምረጡ <emph> ማስገቢያ - ተግባር </emph>."
+msgstr "መጠቆሚያውን በ ባዶ ክፍል ላይ ያድርጉ: ለምሳሌ: J14, እና ይምረጡ <emph> ማስገቢያ - ተግባር </emph>"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id3156016\n"
"help.text"
msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
-msgstr "ይምረጡ የ መከከለኛ ተግባር: የ አይጥ መጠቆሚያውን ይጠቀሙ ለ መምረጥ የ እርስዎን በደፈናው ቁጥሮች: ለ እርስዎ የማይታየዎት ከሆነ ጠቅላላ መጠኑ: ምክንያቱም የ ተግባር አዋቂ የሚከልለው ከሆነ: እርስዎ ማሳነስ ይችላሉ ንግግሩን ለጊዜው በ መጠቀም በ <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">ማሳነሻ / ማሳደጊያ</item></link> ምልክት"
+msgstr "ይምረጡ የ መከከለኛ ተግባር: የ አይጥ መጠቆሚያውን ይጠቀሙ ለ መምረጥ የ እርስዎን በደፈናው ቁጥሮች: ለ እርስዎ የማይታየዎት ከሆነ ጠቅላላ መጠኑ: ምክንያቱም የ ተግባር አዋቂ የሚከልለው ከሆነ: እርስዎ ማሳነስ ይችላሉ ንግግሩን ለጊዜው በ መጠቀም በ <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\"> ማሳነሻ / ማሳደጊያ </item></link> ምልክት"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
-msgstr "የ ተግባር አዋቂን ይዝጉ በ <item type=\"menuitem\">እሺ</item>."
+msgstr "የ ተግባር አዋቂን ይዝጉ በ <item type=\"menuitem\"> እሺ </item>"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2718,7 +2718,7 @@ msgctxt ""
"par_id3153801\n"
"help.text"
msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
-msgstr "ይምረጡ <emph>አቀራረብ - እንደ ሁኔታው አቀራረብ</emph> ትእዛዝ ለ መክፈት ተመሳሳይ ንግግር"
+msgstr "ይምረጡ <emph> አቀራረብ - እንደ ሁኔታው አቀራረብ </emph> ትእዛዝ ለ መክፈት ተመሳሳይ ንግግር"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"par_id3147298\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
-msgstr "ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ</emph> የ <emph> ተለየ መለጠፊያ </emph> ንግግር ይታያል"
+msgstr "ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph> የ <emph> ተለየ መለጠፊያ </emph> ንግግር ይታያል"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2958,7 +2958,7 @@ msgctxt ""
"par_id3153813\n"
"help.text"
msgid "Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The \"Sum\" function is the default setting."
-msgstr "ይምረጡ ተግባር ከ <emph>ተግባር</emph> ሳጥን ውስጥ: ተግባር የሚገልጸው ዋጋዎች ማዋሀጃ መጠን እንዴት እንደሚገናኝ ነው: የ \"ድምር\" ተግባር ነባር ማሰናጃ ነው"
+msgstr "ይምረጡ ተግባር ከ <emph> ተግባር </emph> ሳጥን ውስጥ: ተግባር የሚገልጸው ዋጋዎች ማዋሀጃ መጠን እንዴት እንደሚገናኝ ነው: የ \"ድምር\" ተግባር ነባር ማሰናጃ ነው"
#: consolidate.xhp
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"par_id3147250\n"
"help.text"
msgid "Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:"
-msgstr "ይጫኑ <emph>ተጨማሪ</emph> በ <emph>ማዋሀጃ</emph> ንግግር ውስጥ ተጨማሪ ማሰናጃዎች ለማሳየት:"
+msgstr "ይጫኑ <emph> ተጨማሪ </emph> በ <emph> ማዋሀጃ </emph> ንግግር ውስጥ ተጨማሪ ማሰናጃዎች ለማሳየት:"
#: consolidate.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_idN10897\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መክፈቻ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - መክፈቻ </item>"
#: csv_files.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_idN108A5\n"
"help.text"
msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the <item type=\"menuitem\">File type</item> box"
-msgstr "በ ኮማ የተለየ CSV ፋይል ሌላ ተቀጥያ ካለው: ይምረጡ ፋይል እና ከዛ ይምረጡ \"ጽሁፍ CSV\" በ <item type=\"menuitem\">ፋይል አይነት</item> ሳጥን ውስጥ"
+msgstr "በ ኮማ የተለየ CSV ፋይል ሌላ ተቀጥያ ካለው: ይምረጡ ፋይል እና ከዛ ይምረጡ \"ጽሁፍ CSV\" በ <item type=\"menuitem\"> ፋይል አይነት </item> ሳጥን ውስጥ"
#: csv_files.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_idN10905\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Save as</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - ማስቀመጫ እንደ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ማስቀመጫ እንደ </item>"
#: csv_files.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_idN10915\n"
"help.text"
msgid "In the <item type=\"menuitem\">File name</item> box, enter a name for the file."
-msgstr "በ <item type=\"menuitem\">ፋይል ስም</item> ሳጥን ውስጥ ለ ፋይሉ ስም ያስገቡ"
+msgstr "በ <item type=\"menuitem\"> ፋይል ስም </item> ሳጥን ውስጥ ለ ፋይሉ ስም ያስገቡ"
#: csv_files.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_idN1090D\n"
"help.text"
msgid "In the <item type=\"menuitem\">File type</item> box, select \"Text CSV\"."
-msgstr "ከ <item type=\"menuitem\">ፋይል አይነት</item> ሳጥን ውስጥ ይምረጡ \"ጽሁፍ CSV\"."
+msgstr "ከ <item type=\"menuitem\">ፋይል አይነት </item> ሳጥን ውስጥ ይምረጡ \"ጽሁፍ CSV\""
#: csv_files.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_idN1091C\n"
"help.text"
msgid "Select <item type=\"menuitem\">Edit filter settings</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">የማጣሪያ ማሰናጃዎች ማረሚያ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> የማጣሪያ ማሰናጃዎች ማረሚያ </item>"
#: csv_files.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3153709\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph>"
#: csv_formula.xhp
msgctxt ""
@@ -3350,7 +3350,7 @@ msgctxt ""
"par_id3155445\n"
"help.text"
msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
-msgstr "በ <emph>ፋይል አይነት </emph> ሜዳ ውስጥ: ይምረጡ አቀራረብ \"ጽሁፍ CSV\". ይምረጡ ፋይል እና ይጫኑ <emph> መክፈቻ </emph> ፋይል በሚኖረው ጊዜ የ .csv ተጨማሪ: የ ፋይል አይነት ራሱ በራሱ ይለየዋል ወይንም ያውቀዋል"
+msgstr "በ <emph> ፋይል አይነት </emph> ሜዳ ውስጥ: ይምረጡ አቀራረብ \"ጽሁፍ CSV\". ይምረጡ ፋይል እና ይጫኑ <emph> መክፈቻ </emph> ፋይል በሚኖረው ጊዜ የ .csv ተጨማሪ: የ ፋይል አይነት ራሱ በራሱ ይለየዋል ወይንም ያውቀዋል"
#: csv_formula.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3148702\n"
"help.text"
msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph>. ይታይዎታል <emph>ማስቀመጫ እንደ</emph> ንግግር"
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph> ይታይዎታል <emph> ማስቀመጫ እንደ </emph> ንግግር"
#: csv_formula.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
-msgstr "ከ <item type=\"menuitem\"> ፋይል አይነት </item> ሜዳ ውስጥ ይምረጡ የ አቀራረብ \"Text CSV\"."
+msgstr "ከ <item type=\"menuitem\"> ፋይል አይነት </item> ሜዳ ውስጥ ይምረጡ የ አቀራረብ \"Text CSV\""
#: csv_formula.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Language Settings - Languages</item>."
-msgstr "በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ውስጥ ቁጥሮችን የሚፈልጉትን የ ገንዘብ አቀራረብ መስጠት ይችላሉ ሲጫኑ የ <item type=\"menuitem\"> ገንዘብ </item> ምልክት <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\"> ምልክት </alt></image> በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ቁጥርን ለማቅረብ ክፍሉ ነባር የ ገንዘብ አቀራረብ ተሰጥቶታል ከ ስር <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያ - ምርጫዎች </item></defaultinline></switchinline><item type=\"menuitem\"> - ቋንቋ - ማሰናጃዎች </item>."
+msgstr "በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ውስጥ ቁጥሮችን የሚፈልጉትን የ ገንዘብ አቀራረብ መስጠት ይችላሉ ሲጫኑ የ <item type=\"menuitem\"> ገንዘብ </item> ምልክት <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\"> ምልክት </alt></image> በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ቁጥርን ለማቅረብ ክፍሉ ነባር የ ገንዘብ አቀራረብ ተሰጥቶታል ከ ስር <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያ - ምርጫዎች </item></defaultinline></switchinline><item type=\"menuitem\"> - ቋንቋ - ማሰናጃዎች </item>"
#: currency_format.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"bm_id3154758\n"
"help.text"
msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዞች; የ ዳታቤዝ መጠን</bookmark_value> <bookmark_value>የ ዳታቤዝ መጠን; መግለጫ</bookmark_value> <bookmark_value>መጠን; መግለጫ የ ዳታቤዝ መጠን</bookmark_value> <bookmark_value>መግለጫ;የ ዳታቤዝ መጠን</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዞች: የ ዳታቤዝ መጠን</bookmark_value> <bookmark_value>የ ዳታቤዝ መጠን: መግለጫ</bookmark_value> <bookmark_value>መጠን: መግለጫ የ ዳታቤዝ መጠን</bookmark_value> <bookmark_value>መግለጫ: የ ዳታቤዝ መጠን</bookmark_value>"
#: database_define.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_idN10648\n"
"help.text"
msgid "To define a database range"
-msgstr "የ ዳታቤዝ መጠን ለመግለጽ"
+msgstr "የ ዳታቤዝ መጠን ለ መግለጽ"
#: database_define.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_idN10654\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ዳታ - መጠን መግለጫ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\">የ ዳታ - መጠን መግለጫ </item>"
#: database_define.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "In the <emph>Name</emph> box, enter a name for the database range."
-msgstr "በ <emph>ስም</emph> ሳጥን ውስጥ የ ዳታቤዝ መጠን ስም ያስገቡ"
+msgstr "በ <emph> ስም </emph> ሳጥን ውስጥ የ ዳታቤዝ መጠን ስም ያስገቡ"
#: database_define.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_idN1066A\n"
"help.text"
msgid "Click <emph>More</emph>."
-msgstr "ይጫኑ <emph>ተጨማሪ</emph>."
+msgstr "ይጫኑ <emph> ተጨማሪ </emph>"
#: database_define.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"par_idN10693\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ዳታ - ማጣሪያ - መደበኛ ማጣሪያ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ዳታ - ማጣሪያ - መደበኛ ማጣሪያ </item>"
#: database_filter.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ዳታ - ማጣሪያ - በራሱ ማጣሪያ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ዳታ - ማጣሪያ - በራሱ ማጣሪያ </item>"
#: database_filter.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"par_idN106EC\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ዳታ - ማጣሪያ - ማጣሪያ እንደ ነበር መመለሻ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ዳታ - ማጣሪያ - ማጣሪያ እንደ ነበር መመለሻ </item>"
#: database_filter.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"bm_id3150767\n"
"help.text"
msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ መጠኖች; መለያ</bookmark_value> <bookmark_value>መለያ; የ ዳታቤዝ መጠኖች</bookmark_value> <bookmark_value>ዳታ;መለያ በ ዳታቤዝ ውስጥ </bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ መጠኖች: መለያ</bookmark_value> <bookmark_value>መለያ: የ ዳታቤዝ መጠኖች</bookmark_value> <bookmark_value>ዳታ: መለያ በ ዳታቤዝ ውስጥ</bookmark_value>"
#: database_sort.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_idN1066B\n"
"help.text"
msgid "Choose <emph>Data - Group and Outline - Group</emph>."
-msgstr "ይምረጡ <emph>ዳታ - ቡድን እና እቅድ - ቡድን</emph>"
+msgstr "ይምረጡ <emph> ዳታ - ቡድን እና እቅድ - ቡድን </emph>"
#: datapilot_grouping.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_idN10682\n"
"help.text"
msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
-msgstr "ቡድን ለማጥፋት: ይጫኑ በ ቡድኑ ውስጥ: እና ከዛ ይምረጡ <emph>ዳታ - ቡድን እና ረቂቅ - ቡድን መለያያ</emph>."
+msgstr "ቡድን ለማጥፋት: ይጫኑ በ ቡድኑ ውስጥ: እና ከዛ ይምረጡ <emph> ዳታ - ቡድን እና ረቂቅ - ቡድን መለያያ </emph>"
#: datapilot_tipps.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
-msgstr "ይጫኑ ቁልፍ <emph>ተጨማሪ</emph> በ <emph>Pivot ሰንጠረዥ</emph> ንግግር ውስጥ: ንግግሩ ይስፋፋል"
+msgstr "ይጫኑ ቁልፍ <emph> ተጨማሪ </emph> በ <emph> Pivot ሰንጠረዥ </emph> ንግግር ውስጥ: ንግግሩ ይስፋፋል"
#: datapilot_tipps.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_idN10756\n"
"help.text"
msgid "You can open and save data in the dBASE file format (*.dbf file extension) in $[officename] Base or a spreadsheet. In %PRODUCTNAME Base, a dBASE database is a folder that contains files with the .dbf file extension. Each file corresponds to a table in the database. Formulas and formatting are lost when you open and save a dBASE file from %PRODUCTNAME."
-msgstr "እርስዎ ዳታ መክፈት እና ማስቀመጥ ይችላሉ በ የ ዳታቤዝ ፋይል አቀራረብ (*.dbf ፋይል ተጨማሪ) በ $[officename] Base ወይንም በ ሰንጠረዥ ውስጥ በ %PRODUCTNAME Base, የ ዳታቤዝ ዳታቤዝ ፎልደር ነው ፋይሎች የያዘ በ .dbf ፋይል ተጨማሪ: እያንዳንዱ ፋይል ተስማሚ ነው ለ ሰንጠረዥ ከ ዳታቤዝ ውስጥ: መቀመሪያ እና አቀራረብ ይጠፋል እርስዎ በሚከፍቱ እና በሚያስቀምጡ ጊዜ የ ዳታቤዝ ፋይል ከ %PRODUCTNAME."
+msgstr "እርስዎ ዳታ መክፈት እና ማስቀመጥ ይችላሉ በ የ ዳታቤዝ ፋይል አቀራረብ (*.dbf ፋይል ተጨማሪ) በ $[officename] Base ወይንም በ ሰንጠረዥ ውስጥ በ %PRODUCTNAME Base: የ ዳታቤዝ ዳታቤዝ ፎልደር ነው ፋይሎች የያዘ በ .dbf ፋይል ተጨማሪ: እያንዳንዱ ፋይል ተስማሚ ነው ለ ሰንጠረዥ ከ ዳታቤዝ ውስጥ: መቀመሪያ እና አቀራረብ ይጠፋል እርስዎ በሚከፍቱ እና በሚያስቀምጡ ጊዜ የ ዳታቤዝ ፋይል ከ %PRODUCTNAME."
#: dbase_files.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_idN10760\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph>"
#: dbase_files.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"par_idN10730\n"
"help.text"
msgid "The <emph>Import dBASE files</emph> dialog opens."
-msgstr "የ <emph>ዳታቤዝ ፋይሎች ማምጫ</emph> ንግግር ይከፈታል"
+msgstr "የ <emph> ዳታቤዝ ፋይሎች ማምጫ </emph> ንግግር ይከፈታል"
#: dbase_files.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_idN1076C\n"
"help.text"
msgid "A %PRODUCTNAME Base database table is actually a link to an existing database."
-msgstr "የ %PRODUCTNAME Base ዳታቤዝ ሰንጠረዥ አገናኝ ነው ወደ ነበረው የ ዳታቤዝ"
+msgstr "የ %PRODUCTNAME ቤዝ የ ዳታቤዝ ሰንጠረዥ አገናኝ ነው ወደ ነበረው የ ዳታቤዝ"
#: dbase_files.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"par_idN10796\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - New - Database</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - አዲስ - ዳታቤዝ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - አዲስ - ዳታቤዝ </item>"
#: dbase_files.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_idN10786\n"
"help.text"
msgid "In the <emph>File name</emph> box of the <emph>Save As</emph> dialog, enter a name for the database."
-msgstr "በ <emph>ፋይል ስም</emph> ሳጥን ውስጥ የ <emph>ማስቀመጫ እንደ</emph> ንግግር ውስጥ የ ዳታቤዝ ስም ያስገቡ"
+msgstr "በ <emph> ፋይል ስም </emph> ሳጥን ውስጥ የ <emph> ማስቀመጫ እንደ </emph> ንግግር ውስጥ የ ዳታቤዝ ስም ያስገቡ"
#: dbase_files.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"par_idN1079A\n"
"help.text"
msgid "In the <emph>Database type </emph>box of the <emph>Database Properties</emph> dialog, select \"dBASE\"."
-msgstr "የ <emph>ዳታቤዝ አይነት </emph>ሳጥን ውስጥ የ <emph>ዳታቤዝ ባህሪዎች</emph> ንግግር ይምረጡ \"የ ዳታቤዝ\"."
+msgstr "የ <emph> ዳታቤዝ አይነት </emph> ሳጥን ውስጥ የ <emph> ዳታቤዝ ባህሪዎች </emph> ንግግር ይምረጡ \"የ ዳታቤዝ\""
#: dbase_files.xhp
msgctxt ""
@@ -4646,7 +4646,7 @@ msgctxt ""
"par_idN107F8\n"
"help.text"
msgid "Choose <emph>File - Save As</emph>."
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph>"
#: dbase_files.xhp
msgctxt ""
@@ -4654,7 +4654,7 @@ msgctxt ""
"par_idN10800\n"
"help.text"
msgid "In the <emph>File format</emph> box, select \"dBASE file\"."
-msgstr "ከ <emph>ፋይል አቀራረብ</emph> ሳጥን ውስጥ ይምረጡ \"የ ዳታቤዝ ፋይል\""
+msgstr "ከ <emph> ፋይል አቀራረብ </emph> ሳጥን ውስጥ ይምረጡ \"የ ዳታቤዝ ፋይል\""
#: dbase_files.xhp
msgctxt ""
@@ -4662,7 +4662,7 @@ msgctxt ""
"par_idN107F9\n"
"help.text"
msgid "In the <emph>File name</emph> box, type a name for the dBASE file."
-msgstr "ከ <emph>ፋይል ስም</emph> ሳጥን ውስጥ ይጻፉ የ ዳታቤዝ ፋይል ስም"
+msgstr "ከ <emph> ፋይል ስም </emph> ሳጥን ውስጥ ይጻፉ የ ዳታቤዝ ፋይል ስም"
#: dbase_files.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id9384746\n"
"help.text"
msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
-msgstr "ማጣሪያ ለ ማስወገድ: እርስዎ ሁሉንም ክፍሎች ማየት እንዲችሉ እንደገና: ይጫኑ ማጣሪያው በ ተፈጸመበት ቦታ ውስጥ: እና ከዛ ይምረጡ <item type=\"menuitem\"> ዳታ - ማጣሪያ - ማጣሪያ እንደ ነበር መመለሻ</item>."
+msgstr "ማጣሪያ ለ ማስወገድ: እርስዎ ሁሉንም ክፍሎች ማየት እንዲችሉ እንደገና: ይጫኑ ማጣሪያው በ ተፈጸመበት ቦታ ውስጥ: እና ከዛ ይምረጡ <item type=\"menuitem\"> ዳታ - ማጣሪያ - ማጣሪያ እንደ ነበር መመለሻ </item>"
#: filters.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"par_id6394238\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ & </emph> የ መፈለጊያ & መቀየሪያ ንግግር ለመክፈት"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ & </emph> የ መፈለጊያ & መቀየሪያ ንግግር ለመክፈት"
#: finding.xhp
msgctxt ""
@@ -5006,7 +5006,7 @@ msgctxt ""
"par_id7214270\n"
"help.text"
msgid "Click <emph>More Options</emph> to expand the dialog."
-msgstr "ይጫኑ <emph>ተጨማሪ ምርጫዎች</emph> ንግግሩን ለማስፋት"
+msgstr "ይጫኑ <emph> ተጨማሪ ምርጫዎች </emph> ንግግሩን ለማስፋት"
#: finding.xhp
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"par_id6549272\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ & </emph> የ መፈለጊያ & መቀየሪያ ንግግር ለመክፈት"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ & </emph> የ መፈለጊያ & መቀየሪያ ንግግር ለመክፈት"
#: finding.xhp
msgctxt ""
@@ -5070,7 +5070,7 @@ msgctxt ""
"par_id9121982\n"
"help.text"
msgid "Either click <emph>Find Next</emph> or <emph>Find All</emph>."
-msgstr "አንዱን ይጫኑ <emph>ቀጥሎ መፈለጊያ</emph> ወይንም <emph>ሁሉንም መፈለጊያ</emph>."
+msgstr "አንዱን ይጫኑ <emph> ቀጥሎ መፈለጊያ </emph> ወይንም <emph> ሁሉንም መፈለጊያ </emph>"
#: finding.xhp
msgctxt ""
@@ -5598,7 +5598,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
-msgstr "ይምረጡ <emph>ማረሚያ - ኮፒ</emph>, ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C ኮፒ ለማድረግ"
+msgstr "ይምረጡ <emph> ማረሚያ - ኮፒ </emph> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C ኮፒ ለማድረግ"
#: formula_copy.xhp
msgctxt ""
@@ -5614,7 +5614,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
-msgstr "ይምረጡ <emph>ማረሚያ - መለጠፊያ</emph> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. መቀመሪያ በ አዲሱ ክፍል ውስጥ ይለጠፋል"
+msgstr "ይምረጡ <emph> ማረሚያ - መለጠፊያ </emph> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. መቀመሪያ በ አዲሱ ክፍል ውስጥ ይለጠፋል"
#: formula_copy.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3150012\n"
"help.text"
msgid "Click the <emph>Function</emph> icon on the Formula Bar."
-msgstr "ይጫኑ የ <emph>ተግባር</emph> ምልክት በ መቀመሪያ መደርደሪያ ላይ"
+msgstr "ይጫኑ የ <emph> ተግባር </emph> ምልክት በ መቀመሪያ መደርደሪያ ላይ"
#: formula_enter.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
-msgstr "እርስዎ የሚፈለጉትን ዋጋዎች ካስገቡ በኋላ: ይጫኑ ማስገቢያውን ወይንም ይጫኑ <emph>ተቀብያለሁ</emph> ውጤቱን በ ንቁ ክፍል ውስጥ ለማስገባት: እርስዎ ያስገቡትን ማጽዳት ከ ፈለጉ በ ማስገቢያ መስመር ላይ: ይጫኑ መዝለያውን ወይንም ይጫኑ <emph>መሰረዣ</emph>."
+msgstr "እርስዎ የሚፈለጉትን ዋጋዎች ካስገቡ በኋላ: ይጫኑ ማስገቢያውን ወይንም ይጫኑ <emph> ተቀብያለሁ </emph> ውጤቱን በ ንቁ ክፍል ውስጥ ለማስገባት: እርስዎ ያስገቡትን ማጽዳት ከ ፈለጉ በ ማስገቢያ መስመር ላይ: ይጫኑ መዝለያውን ወይንም ይጫኑ <emph> መሰረዣ </emph>"
#: formula_enter.xhp
msgctxt ""
@@ -5766,7 +5766,7 @@ msgctxt ""
"par_id3155764\n"
"help.text"
msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
-msgstr "እርስዎ መቀመሪያ በ ማመሳከሪያ የሚያርሙ ከሆነ: ማመሳከሪያው እና የ ተዛመዱት ክፍሎች ይደምቃሉ በ ተመሳሳይ ቀለም: እርስዎ አሁን እንደገና መመጠን ይችላሉ የ ማመሳከሪያውን ድንበር የ አይጥ መጠቆሚያ በ መጠቀም: እና የ መቀመሪያ ማመሳከሪያ በ መቀመሪያ ውስጥ ይታያል የ ማስገቢያ መስመር እንዲሁም ይቀየራል: <emph> ማመሳከሪያ ማሳያ በ ቀለም</emph> ማስቦዘን ይቻለል በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME ሰንጠረዥ – መመልከቻ </link>."
+msgstr "እርስዎ መቀመሪያ በ ማመሳከሪያ የሚያርሙ ከሆነ: ማመሳከሪያው እና የ ተዛመዱት ክፍሎች ይደምቃሉ በ ተመሳሳይ ቀለም: እርስዎ አሁን እንደገና መመጠን ይችላሉ የ ማመሳከሪያውን ድንበር የ አይጥ መጠቆሚያ በ መጠቀም: እና የ መቀመሪያ ማመሳከሪያ በ መቀመሪያ ውስጥ ይታያል የ ማስገቢያ መስመር እንዲሁም ይቀየራል: <emph> ማመሳከሪያ ማሳያ በ ቀለም</emph> ማስቦዘን ይቻለል በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME ሰንጠረዥ – መመልከቻ </link>"
#: formula_enter.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "If you enter “0 1/2” AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character, ½. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab."
-msgstr "እርስዎ ካስገቡ “0 1/2” በራሱ አራሚ ሶስቱን ባህሪዎች 1, / እና 2 ይቀይራቸዋል በ ነጠላ ባህሪ: ½. ተመሳሳይ ይፈጸማል ለ 1/4 እና 3/4. ይህ መቀየሪያ ተገልጿል በ <emph>መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫ - ምርጫ</emph> tab ውስጥ"
+msgstr "እርስዎ ካስገቡ “0 1/2” በራሱ አራሚ ሶስቱን ባህሪዎች 1, / እና 2 ይቀይራቸዋል በ ነጠላ ባህሪ: ½. ተመሳሳይ ይፈጸማል ለ 1/4 እና 3/4. ይህ መቀየሪያ ተገልጿል በ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫ - ምርጫ </emph> tab ውስጥ"
#: fraction_enter.xhp
msgctxt ""
@@ -6278,7 +6278,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
-msgstr "የ አሁኑን ሰነድ ማስቀመጥ ከ ፈለጉ እንደ HTML: ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph>."
+msgstr "የ አሁኑን ሰነድ ማስቀመጥ ከ ፈለጉ እንደ HTML: ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph>"
#: html_doc.xhp
msgctxt ""
@@ -6414,7 +6414,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6454,7 +6454,7 @@ msgctxt ""
"par_id3146916\n"
"help.text"
msgid "Click <emph>Replace All</emph>"
-msgstr "ይጫኑ <emph>ሁሉንም መቀየሪያ</emph>"
+msgstr "ይጫኑ <emph> ሁሉንም መቀየሪያ </emph>"
#: keyboard.xhp
msgctxt ""
@@ -6582,7 +6582,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
-msgstr "ይጫኑ <item type=\"keycode\">ማስገቢያ</item> የ ማተኮሪያ ቁልፍ ለማስጀመር"
+msgstr "ይጫኑ <item type=\"keycode\"> ማስገቢያ </item> የ ማተኮሪያ ቁልፍ ለማስጀመር"
#: keyboard.xhp
msgctxt ""
@@ -6718,7 +6718,7 @@ msgctxt ""
"par_id3147345\n"
"help.text"
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
-msgstr "እርስዎ ማተም ከፈለጉ አንዳንድ ረድፍ በ ሁሉም ገጾች ላይ በ ሰነዱ ላይ: ይምረጡ <item type=\"menuitem\">አቀራረብ - የ ማተሚያ መጠን - ማረሚያ</item>."
+msgstr "እርስዎ ማተም ከፈለጉ አንዳንድ ረድፍ በ ሁሉም ገጾች ላይ በ ሰነዱ ላይ: ይምረጡ <item type=\"menuitem\"> አቀራረብ - የ ማተሚያ መጠን - ማረሚያ</item>"
#: line_fix.xhp
msgctxt ""
@@ -7118,7 +7118,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "ማስገቢያውን መጨረሻ በ matrix ቁልፍ ጥምረት: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ"
+msgstr "ማስገቢያውን መጨረሻ በ matrix ቁልፍ ጥምረት: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ"
#: matrixformula.xhp
msgctxt ""
@@ -7526,7 +7526,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
-msgstr "መጠቆሚያውን በ <emph>አምድ ማስገቢያ ክፍል</emph> ሜዳ እና ይጫኑ ክፍል B4. ይህ ማለት የ B4, ብዛት: ተለዋዋጭ ነው በ መቀመሪያ ውስጥ: በ ተመረጠው የ አምድ ዋጋዎች ይቀየራል"
+msgstr "መጠቆሚያውን በ <emph> አምድ ማስገቢያ ክፍል </emph> ሜዳ እና ይጫኑ ክፍል B4. ይህ ማለት የ B4, ብዛት: ተለዋዋጭ ነው በ መቀመሪያ ውስጥ: በ ተመረጠው የ አምድ ዋጋዎች ይቀየራል"
#: multioperation.xhp
msgctxt ""
@@ -7590,7 +7590,7 @@ msgctxt ""
"par_id3153931\n"
"help.text"
msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
-msgstr "መጠቆሚያውን ያድርጉ በ <emph>አምድ ማስገቢያ ክፍል </emph> ሜዳ ውስጥ: እና ይጫኑ ክፍል B4."
+msgstr "መጠቆሚያውን ያድርጉ በ <emph> አምድ ማስገቢያ ክፍል </emph> ሜዳ ውስጥ: እና ይጫኑ ክፍል B4."
#: multioperation.xhp
msgctxt ""
@@ -7670,7 +7670,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
-msgstr "መጠቆሚያውን ያድርጉ በ <emph>ረድፍ ማስገቢያ ክፍል </emph> ሜዳ ውስጥ: እና ይጫኑ ክፍል B1.ይህ ማለት የ B1, የ መሸጫ ዋጋ: በ አግድም የ ገባው ተለዋዋጭ ነው (ከ ዋጋዎች ጋር 8, 10, 15 እና 20)."
+msgstr "መጠቆሚያውን ያድርጉ በ <emph> ረድፍ ማስገቢያ ክፍል </emph> ሜዳ ውስጥ: እና ይጫኑ ክፍል B1.ይህ ማለት የ B1, የ መሸጫ ዋጋ: በ አግድም የ ገባው ተለዋዋጭ ነው (ከ ዋጋዎች ጋር 8, 10, 15 እና 20)."
#: multioperation.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id3154049\n"
"help.text"
msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
-msgstr "መጠቆሚያውን በ <emph>አምድ ማስገቢያ ክፍል</emph> ሜዳ እና ይጫኑ ክፍል B4. ይህ ማለት የ B4, ብዛት: ተለዋዋጭ ነው በ መቀመሪያ ውስጥ: በ ተመረጠው የ አምድ ዋጋዎች ይቀየራል"
+msgstr "መጠቆሚያውን በ <emph> አምድ ማስገቢያ ክፍል </emph> ሜዳ እና ይጫኑ ክፍል B4. ይህ ማለት የ B4, ብዛት: ተለዋዋጭ ነው በ መቀመሪያ ውስጥ: በ ተመረጠው የ አምድ ዋጋዎች ይቀየራል"
#: multioperation.xhp
msgctxt ""
@@ -7742,7 +7742,7 @@ msgctxt ""
"par_id05092009140203598\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ንግግር መስኮት መክፈች እርስዎ macros ለ ወረቀት ሁኔታ የሚመድቡበት </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ንግግር መስኮት መክፈች እርስዎ ማክሮስ ለ ወረቀት ሁኔታ የሚመድቡበት </ahelp>"
#: multitables.xhp
msgctxt ""
@@ -7910,7 +7910,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
-msgstr "ለ ተመረጠው ክፍል ጠቃሚ የ እርዳታ ምክር ለማሳየት ይጠቀሙ <emph>ዳታ - ማረጋገጫ - እርዳታ ማስገቢያ</emph>."
+msgstr "ለ ተመረጠው ክፍል ጠቃሚ የ እርዳታ ምክር ለማሳየት ይጠቀሙ <emph> ዳታ - ማረጋገጫ - እርዳታ ማስገቢያ </emph>"
#: note_insert.xhp
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"par_id3150042\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph>"
#: print_details.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
-msgstr "ትእዛዙ አይታይም ወረቀቱ ከ ተከፈተ በ መጻፍ የሚጠበቅ ከሆነ እና ከበራ: እንዲህ ሲሆን: ይጫኑ የ <emph>ፋይል ማረሚያ </emph>ምክልት በ <emph>መደበኛ </emph> እቃ መደርደሪያ ላይ"
+msgstr "ትእዛዙ አይታይም ወረቀቱ ከ ተከፈተ በ መጻፍ የሚጠበቅ ከሆነ እና ከበራ: እንዲህ ሲሆን: ይጫኑ የ <emph> ፋይል ማረሚያ </emph> ምክልት በ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ"
#: print_details.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"par_id3150786\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph>"
#: print_landscape.xhp
msgctxt ""
@@ -8390,7 +8390,7 @@ msgctxt ""
"par_id3150089\n"
"help.text"
msgid "The command is not visible if the sheet has been opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> bar."
-msgstr "ትእዛዙ አይታይም ወረቀቱ ከ ተከፈተ በ መጻፍ የሚጠበቅ ከሆነ እና ከበራ: እንዲህ ሲሆን: ይጫኑ የ <emph>ፋይል ማረሚያ </emph>ምክልት በ <emph>መደበኛ </emph> እቃ መደርደሪያ ላይ"
+msgstr "ትእዛዙ አይታይም ወረቀቱ ከ ተከፈተ በ መጻፍ የሚጠበቅ ከሆነ እና ከበራ: እንዲህ ሲሆን: ይጫኑ የ <emph> ፋይል ማረሚያ </emph> ምክልት በ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ"
#: print_landscape.xhp
msgctxt ""
@@ -8542,7 +8542,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
-msgstr "ይምረጡ <emph>አቀራረብ - የ ማተሚያ መጠኖች - ማረሚያ</emph> የ <emph> ማተሚያ መጠኖች ማረሚያ</emph> ንግግር ይታያል"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ማተሚያ መጠኖች - ማረሚያ </emph> የ <emph> ማተሚያ መጠኖች ማረሚያ </emph> ንግግር ይታያል"
#: print_title_row.xhp
msgctxt ""
@@ -8710,7 +8710,7 @@ msgctxt ""
"par_idN10909\n"
"help.text"
msgid "Choose <emph>Format - Print Ranges - Define</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - የ ማተሚያ መጠኖች - መግለጫ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ማተሚያ መጠኖች - መግለጫ </emph>"
#: printranges.xhp
msgctxt ""
@@ -8734,7 +8734,7 @@ msgctxt ""
"par_idN1091B\n"
"help.text"
msgid "Choose <emph>Format - Print Ranges - Add</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - የ ማተሚያ መጠኖች - መጨመሪያ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ማተሚያ መጠኖች - መጨመሪያ </emph>"
#: printranges.xhp
msgctxt ""
@@ -8750,7 +8750,7 @@ msgctxt ""
"par_idN10929\n"
"help.text"
msgid "Choose <emph>Format - Print Ranges - Clear</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - የ ማተሚያ መጠኖች - ማጽጃ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ማተሚያ መጠኖች - ማጽጃ </emph>"
#: printranges.xhp
msgctxt ""
@@ -9006,7 +9006,7 @@ msgctxt ""
"par_id3146976\n"
"help.text"
msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
-msgstr "የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ የ <emph>ወረቀት እንደገና መሰየሚያ</emph> ትእዛዝ: የ ንግግር ሳጥን ይታያል እርስዎ አዲስ ስም የሚያስገቡበት"
+msgstr "የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ የ <emph> ወረቀት እንደገና መሰየሚያ </emph> ትእዛዝ: የ ንግግር ሳጥን ይታያል እርስዎ አዲስ ስም የሚያስገቡበት"
#: rename_table.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_id9044770\n"
"help.text"
msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
-msgstr "ትእይንት ለማጥፋት: በ ቀኝ-ይጫኑ ስሙን በ መቃኛው ላይ እና ይምረጡ<emph> ማጥፊያ</emph>"
+msgstr "ትእይንት ለማጥፋት: በ ቀኝ-ይጫኑ ስሙን በ መቃኛው ላይ እና ይምረጡ <emph> ማጥፊያ </emph>"
#: scenario.xhp
msgctxt ""
@@ -9638,7 +9638,7 @@ msgctxt ""
"bm_id3148798\n"
"help.text"
msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
-msgstr "<bookmark_value>ማጣሪያዎች;መግለጫ ከፍተኛ ማጣሪያዎች </bookmark_value><bookmark_value>ከፍተኛ ማጣሪያዎች</bookmark_value><bookmark_value>መግለጫ; ከፍተኛ ማጣሪያዎች</bookmark_value><bookmark_value>የ ዳታቤዝ መጠኖች; ከፍተኛ ማጣሪያዎች</bookmark_value>"
+msgstr "<bookmark_value>ማጣሪያዎች: መግለጫ ከፍተኛ ማጣሪያዎች </bookmark_value><bookmark_value>ከፍተኛ ማጣሪያዎች</bookmark_value><bookmark_value>መግለጫ: ከፍተኛ ማጣሪያዎች</bookmark_value><bookmark_value>የ ዳታቤዝ መጠኖች: ከፍተኛ ማጣሪያዎች</bookmark_value>"
#: specialfilter.xhp
msgctxt ""
@@ -9662,7 +9662,7 @@ msgctxt ""
"par_id3153142\n"
"help.text"
msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
-msgstr "እርስዎ አንድ ጊዜ ከ ፈጠሩ ማጣሪያ የ matrix, ይምረጡ የ ወረቀት መጠኖች የሚጣሩትን: ይክፈቱ <emph>የ ረቀቀ ማጣሪያ</emph> ንግግር በ መምረጥ <emph>ዳታ - ማጣሪያ - የ ረቀቀ ማጣሪያ</emph> እና ከዛ ይግለጹ የ ማጣሪያ ሁኔታዎች"
+msgstr "እርስዎ አንድ ጊዜ ከ ፈጠሩ ማጣሪያ የ matrix, ይምረጡ የ ወረቀት መጠኖች የሚጣሩትን: ይክፈቱ <emph> የ ረቀቀ ማጣሪያ </emph> ንግግር በ መምረጥ <emph> ዳታ - ማጣሪያ - የ ረቀቀ ማጣሪያ </emph> እና ከዛ ይግለጹ የ ማጣሪያ ሁኔታዎች"
#: specialfilter.xhp
msgctxt ""
@@ -10046,7 +10046,7 @@ msgctxt ""
"par_id3147372\n"
"help.text"
msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
-msgstr "ይምረጡ <emph>ዳታ - ማጣሪያ - የ ረቀቀ ማጣሪያ</emph> እና ከዛ ይምረጡ መጠን A20:E22. እሺ ከ ተጫኑ በኋላ: የ ተጣሩት ረድፎች ብቻ ይታያሉ: ሌሎቹ ረድፎች ይደበቃሉ ከ መመልከቻው"
+msgstr "ይምረጡ <emph> ዳታ - ማጣሪያ - የ ረቀቀ ማጣሪያ </emph> እና ከዛ ይምረጡ መጠን A20:E22. እሺ ከ ተጫኑ በኋላ: የ ተጣሩት ረድፎች ብቻ ይታያሉ: ሌሎቹ ረድፎች ይደበቃሉ ከ መመልከቻው"
#: super_subscript.xhp
msgctxt ""
@@ -10094,7 +10094,7 @@ msgctxt ""
"par_id3149260\n"
"help.text"
msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
-msgstr "መክፈቻ የ አገባብ ዝርዝር ለ ተመረጠው ባህሪ እና ይምረጡ <emph>ባህሪ</emph>. ለ እርስዎ ይህ ይታያል የ <emph>ባህሪ</emph> ንግግር"
+msgstr "መክፈቻ የ አገባብ ዝርዝር ለ ተመረጠው ባህሪ እና ይምረጡ <emph> ባህሪ </emph> ለ እርስዎ ይህ ይታያል የ <emph> ባህሪ </emph> ንግግር"
#: super_subscript.xhp
msgctxt ""
@@ -10254,7 +10254,7 @@ msgctxt ""
"par_id3153191\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - መቁረጫ</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - መቁረጫ </emph>"
#: table_rotate.xhp
msgctxt ""
@@ -10270,7 +10270,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph>"
#: table_rotate.xhp
msgctxt ""
@@ -10334,7 +10334,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "Under the menu item <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
-msgstr "ከ ዝርዝር እቃዎች ውስጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች – ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ: </emph> መሄጃ ወደ <emph>መመልከቻ</emph> tab ገጽ ውስጥ: ምልክቱን ያጥፉ<emph> የ አምድ/ረድፍ ራስጌዎች</emph> ያረጋግጡ በ <emph>እሺ</emph>."
+msgstr "ከ ዝርዝር እቃዎች ውስጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች – ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ: </emph> መሄጃ ወደ <emph> መመልከቻ </emph> tab ገጽ ውስጥ: ምልክቱን ያጥፉ <emph> የ አምድ/ረድፍ ራስጌዎች </emph> ያረጋግጡ በ <emph> እሺ </emph>"
#: table_view.xhp
msgctxt ""
@@ -10606,7 +10606,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
+msgstr "ይምረጡ <item type=\"menuitem\">መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic</item>."
#: userdefined_function.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_id3145232\n"
"help.text"
msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
-msgstr "በ ደረጃ 2 ውስጥ የ \"ተግባር መግለጫ አጠቃቀም %PRODUCTNAME Basic\": በ <emph>Macro</emph> ንግግር ውስጥ እርስዎ ይጫኑ በ <emph> ማረሚያ </emph> እንደ ነባር በ <emph>Macro ከ</emph> ሜዳ ውስጥ በ <emph> የ እኔ Macros - መደበኛ - ክፍል1</emph> ክፍል ይመረጣል በ <emph> መደበኛ </emph> መጻህፍት ቤት ውስጥ በ ነበረ አካባቢ በ እርስዎ የ ተጠቃሚ ዳይሬክቶሪ ውስጥ"
+msgstr "በ ደረጃ 2 ውስጥ የ \"ተግባር መግለጫ አጠቃቀም %PRODUCTNAME Basic\": በ <emph> ማክሮስ </emph> ንግግር ውስጥ እርስዎ ይጫኑ በ <emph> ማረሚያ </emph> እንደ ነባር በ <emph> ማክሮስ ከ</emph> ሜዳ ውስጥ በ <emph> የ እኔ ማክሮስ - መደበኛ - ክፍል1 </emph> ክፍል ይመረጣል በ <emph> መደበኛ </emph> መጻህፍት ቤት ውስጥ በ ነበረ አካባቢ በ እርስዎ የ ተጠቃሚ ዳይሬክቶሪ ውስጥ"
#: userdefined_function.xhp
msgctxt ""
@@ -10670,7 +10670,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - Macros - Organize Macros - %PRODUCTNAME Basic</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic</item>"
#: userdefined_function.xhp
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
-msgstr "በ <emph>Macro ከ </emph> ሜዳ ውስጥ ይምረጡ <emph> የ እኔ Macros - መደበኛ - ክፍል1</emph> እና ይጫኑ <emph> ማረሚያ </emph>"
+msgstr "በ <emph> ማክሮስ ከ </emph> ሜዳ ውስጥ ይምረጡ <emph> የ እኔ ማክሮስ - መደበኛ - ክፍል1 </emph> እና ይጫኑ <emph> ማረሚያ </emph>"
#: userdefined_function.xhp
msgctxt ""
@@ -10702,7 +10702,7 @@ msgctxt ""
"par_id3150517\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - Macros - Organize Macros - %PRODUCTNAME Basic</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic</item>"
#: userdefined_function.xhp
msgctxt ""
@@ -10710,7 +10710,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
-msgstr "በ <emph> Macro ከ </emph> ሜዳ ውስጥ ይምረጡ <emph>(የ ሰንጠረዥ ሰነድ ስም) - መደበኛ - ክፍል1</emph> እና ይጫኑ <emph> ማረሚያ </emph>"
+msgstr "በ <emph> ማክሮስ ከ </emph> ሜዳ ውስጥ ይምረጡ <emph> (የ ሰንጠረዥ ሰነድ ስም) - መደበኛ - ክፍል1 </emph> እና ይጫኑ <emph> ማረሚያ </emph>"
#: userdefined_function.xhp
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"bm_id3156442\n"
"help.text"
msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
-msgstr "<bookmark_value>ዋጋዎች: መመጠኛ በ ማስገቢያ ላይ</bookmark_value><bookmark_value>መጠኖች: መወሰኛ የ ዋጋ መጠኖች በ ማስገቢያ ላይ</bookmark_value><bookmark_value>የ ተፈቀደላቸው ክፍል ይዞታዎች</bookmark_value><bookmark_value>ዳታ ማረጋገጫ</bookmark_value><bookmark_value>ማረጋገጫ</bookmark_value><bookmark_value>የ ክፍሎች: ማረጋገጫ</bookmark_value><bookmark_value>የ ስህተት መልእክቶች: መግለጫ ለ ተሳሳቱ ማስገቢያዎች</bookmark_value><bookmark_value>ተግባሮች ድንገት ለ ተሳሳቱ ማስገቢያዎች</bookmark_value><bookmark_value>የ እርዳታ ምክር: ጽሁፍ መግለጫ ለ ክፍል ማስገቢያ</bookmark_value><bookmark_value>አስተያየቶች: የ እርዳታ ጽሁፍ ለ ክፍሎች</bookmark_value><bookmark_value>ክፍሎች: መግለጫ ማስገቢያ ለ እርዳታ </bookmark_value><bookmark_value>macros: ማስኬጃ የ ተሳሳተ ሲያስገቡ</bookmark_value><bookmark_value>ዳታ: ማረጋገጫ መመርመሪያ</bookmark_value>"
+msgstr "<bookmark_value>ዋጋዎች: መመጠኛ በ ማስገቢያ ላይ</bookmark_value><bookmark_value>መጠኖች: መወሰኛ የ ዋጋ መጠኖች በ ማስገቢያ ላይ</bookmark_value><bookmark_value>የ ተፈቀደላቸው ክፍል ይዞታዎች</bookmark_value><bookmark_value>ዳታ ማረጋገጫ</bookmark_value><bookmark_value>ማረጋገጫ</bookmark_value><bookmark_value>የ ክፍሎች: ማረጋገጫ</bookmark_value><bookmark_value>የ ስህተት መልእክቶች: መግለጫ ለ ተሳሳቱ ማስገቢያዎች</bookmark_value><bookmark_value>ተግባሮች ድንገት ለ ተሳሳቱ ማስገቢያዎች</bookmark_value><bookmark_value>የ እርዳታ ምክር: ጽሁፍ መግለጫ ለ ክፍል ማስገቢያ</bookmark_value><bookmark_value>አስተያየቶች: የ እርዳታ ጽሁፍ ለ ክፍሎች</bookmark_value><bookmark_value>ክፍሎች: መግለጫ ማስገቢያ ለ እርዳታ </bookmark_value><bookmark_value>ማክሮስ: ማስኬጃ የ ተሳሳተ ሲያስገቡ</bookmark_value><bookmark_value>ዳታ: ማረጋገጫ መመርመሪያ</bookmark_value>"
#: validity.xhp
msgctxt ""
@@ -10926,7 +10926,7 @@ msgctxt ""
"par_id3149947\n"
"help.text"
msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
-msgstr "እርስዎ ከ መረጡ የ \"Macro\": ከዛ በ መጠቀም የ <emph>መቃኝ </emph> ቁልፍ እርስዎ መወሰን ይችላሉ macro የሚሄደውን በ ስህተት ሁኔታ ጊዜ"
+msgstr "እርስዎ ከ መረጡ የ \"ማክሮስ\": ከዛ በ መጠቀም የ <emph> መቃኝ </emph> ቁልፍ እርስዎ መወሰን ይችላሉ ማክሮስ የሚሄደውን በ ስህተት ሁኔታ ጊዜ"
#: validity.xhp
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"par_id5489364\n"
"help.text"
msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
-msgstr "ጥሩው መንገድ ማመሳከሪያዎች ወደ ክፍሎች እና የ ክፍል መጠኖች ውስጥ መስራት በ መቀመሪያ ውስጥ የ መጠኖች ስሞች እንዲታይ ማድረግ ነው: ለምሳሌ: እርስዎ መሰየም ይችላሉ መጠን A1:B2 <emph>መጀመሪያ</emph> እርስዎ ከዛ በኋላ ይጻፉ በ መቀመሪያ ውስጥ እንደ የ \"=ድምር(መጀመሪያ)\". እርስዎ ረድፍ ወይንም አምድ ካስገቡ በኋላ ወይንም ካጠፉ በኋላ: $[officename] በትክክል በ ስም የሚለዩትን መጠኖች ይፈጽማል: የ መጠኖች ስም ባዶ ቦታ መያዝ የለበትም"
+msgstr "ጥሩው መንገድ ማመሳከሪያዎች ወደ ክፍሎች እና የ ክፍል መጠኖች ውስጥ መስራት በ መቀመሪያ ውስጥ የ መጠኖች ስሞች እንዲታይ ማድረግ ነው: ለምሳሌ: እርስዎ መሰየም ይችላሉ መጠን A1:B2 <emph> መጀመሪያ </emph> እርስዎ ከዛ በኋላ ይጻፉ በ መቀመሪያ ውስጥ እንደ የ \"=ድምር(መጀመሪያ)\". እርስዎ ረድፍ ወይንም አምድ ካስገቡ በኋላ ወይንም ካጠፉ በኋላ: $[officename] በትክክል በ ስም የሚለዩትን መጠኖች ይፈጽማል: የ መጠኖች ስም ባዶ ቦታ መያዝ የለበትም"
#: value_with_name.xhp
msgctxt ""
@@ -11070,7 +11070,7 @@ msgctxt ""
"par_id953398\n"
"help.text"
msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
-msgstr "ለምሳሌ: በጣም ቀላል ነው ለማንበብ የ መቀመሪያ የ ሺያጭ ቀረጥ እርስዎ ከ ጻፉ \"= መጠን * የቀረጥ_መጠን\" ክዚህ ይልቅ ከ \"= A5 * B12\". ስለዚህ እርስዎ ይሰይማሉ ክፍል A5 \"መጠን\" እና ክፍል B12 \"የቀረጥ_መጠን\""
+msgstr "ለምሳሌ: በጣም ቀላል ነው ለማንበብ የ መቀመሪያ የ ሺያጭ ቀረጥ እርስዎ ከ ጻፉ \"= መጠን * የ ቀረጥ_መጠን\" ክዚህ ይልቅ ከ \"= A5 * B12\". ስለዚህ እርስዎ ይሰይማሉ ክፍል A5 \"መጠን\" እና ክፍል B12 \"የ ቀረጥ_መጠን\""
#: value_with_name.xhp
msgctxt ""
@@ -11118,7 +11118,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "Press the Enter key in order to accept the name from the tip."
-msgstr "ይጫኑ ማስገቢያውን ቁልፍ ስሙን ሌ መቀበል ከ ጠቃሚ ምክር ውስጥ"
+msgstr "ይጫኑ ማስገቢያውን ቁልፍ ስሙን ለ መቀበል ከ ጠቃሚ ምክር ውስጥ"
#: value_with_name.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"bm_id3154346\n"
"help.text"
msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
-msgstr "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>መጠኖች: ማስገቢያ በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>የ ውጪ ዳታ: ማስገቢያ</bookmark_value><bookmark_value>ሰንጠረዥ: ማስገቢያ የ ውጪ ዳታ</bookmark_value><bookmark_value>ድህረ ገጾች: ማምጫ ዳታ</bookmark_value><bookmark_value>WebQuery ማጣሪያ</bookmark_value><bookmark_value>ማስገቢያ: የ ውጪ ዳታ</bookmark_value><bookmark_value>የ ዳታ ምንጭ: የ ውጪ ዳታ</bookmark_value>"
+msgstr "<bookmark_value>HTML የ ዌብ ጥያቄ</bookmark_value><bookmark_value>መጠኖች: ማስገቢያ በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>የ ውጪ ዳታ: ማስገቢያ</bookmark_value><bookmark_value>ሰንጠረዥ: ማስገቢያ የ ውጪ ዳታ</bookmark_value><bookmark_value>ድህረ ገጾች: ማምጫ ዳታ</bookmark_value><bookmark_value>የ ዌብ ጥያቄ ማጣሪያ</bookmark_value><bookmark_value>ማስገቢያ: የ ውጪ ዳታ</bookmark_value><bookmark_value>የ ዳታ ምንጭ: የ ውጪ ዳታ</bookmark_value>"
#: webquery.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "Choose <emph>Sheet - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
-msgstr "ይምረጡ <emph>ወረቀት - አገናኝ ወደ ውጪ ዳታ</emph> ይህ ይከፍታል የ <link href=\"text/scalc/01/04090000.xhp\">የ ውጪ ዳታ</link> ንግግር"
+msgstr "ይምረጡ <emph> ወረቀት - አገናኝ ወደ ውጪ ዳታ </emph> ይህ ይከፍታል <link href=\"text/scalc/01/04090000.xhp\"> የ ውጪ ዳታ </link> ንግግር"
#: webquery.xhp
msgctxt ""
@@ -11374,7 +11374,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
-msgstr "ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - ባጠቃላይ</emph> እርስዎ መግለጽ ይችላሉ ክፍለ ዘመን የሚጠቀሙት እርስዎ ሲያስገቡ አመት በ ሁለት አሀዝ: ነባሩ ከ 1930 እስከ 2029. ነው"
+msgstr "ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ባጠቃላይ </emph> እርስዎ መግለጽ ይችላሉ ክፍለ ዘመን የሚጠቀሙት እርስዎ ሲያስገቡ አመት በ ሁለት አሀዝ: ነባሩ ከ 1930 እስከ 2029. ነው"
#: year2000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart.po b/source/am/helpcontent2/source/text/schart.po
index c2d33a8d2c5..b256f5d7ec8 100644
--- a/source/am/helpcontent2/source/text/schart.po
+++ b/source/am/helpcontent2/source/text/schart.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-05 22:28+0000\n"
+"PO-Revision-Date: 2017-06-15 02:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496701682.000000\n"
+"X-POOTLE-MTIME: 1497492705.000000\n"
#: main0000.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3776055\n"
"help.text"
msgid "Chart type, axes, titles, walls, grid, and more."
-msgstr "የ ቻርትስ አይነት: axes, አርእስቶች: ግድግዳዎች: መጋጠሚያዎች: እና ተጨማሪዎች"
+msgstr "የ ቻርትስ አይነት: አክሲስ: አርእስቶች: ግድግዳዎች: መጋጠሚያዎች: እና ተጨማሪዎች"
#: main0000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id0810200912061033\n"
"help.text"
msgid "In chart edit mode, you see the <link href=\"text/schart/main0202.xhp\">Formatting Bar</link> for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the <link href=\"text/simpress/main0210.xhp\">Drawing</link> toolbar of Draw and Impress."
-msgstr "በ ቻርት ማረሚያ ዘዴ ውስጥ: ለ እርስዎ ይታያል የ <link href=\"text/schart/main0202.xhp\">አቀራረብ መደርደሪያ</link> ለ ቻርትስ በ ሰነዱ ውስጥ ከ ላይ በኩል ይታያል: የ መሳያ መደርደሪያ ለ ቻርትስ በ ሰነዱ ውስጥ ከ ታች በኩል ይታያል: የ መሳያ መደርደሪያ የሚያሳየው ንዑስ ስብስብ ምልክት ነው ለ <link href=\"text/simpress/main0210.xhp\">መሳያ</link> እቃ መደርደሪያ ለ መሳያ እና ማስደነቂያ"
+msgstr "በ ቻርት ማረሚያ ዘዴ ውስጥ: ለ እርስዎ ይታያል የ <link href=\"text/schart/main0202.xhp\"> አቀራረብ መደርደሪያ </link> ለ ቻርትስ በ ሰነዱ ውስጥ ከ ላይ በኩል ይታያል: የ መሳያ መደርደሪያ ለ ቻርትስ በ ሰነዱ ውስጥ ከ ታች በኩል ይታያል: የ መሳያ መደርደሪያ የሚያሳየው ንዑስ ስብስብ ምልክት ነው ለ <link href=\"text/simpress/main0210.xhp\"> መሳያ </link> እቃ መደርደሪያ ለ መሳያ እና ማስደነቂያ"
#: main0000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id0810200903545274\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አቅጣጫ መስመር አቀራረብ</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id0810200904063285\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline equation.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formats the trendline equation.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አቅጣጫ መስመር ስሌት አቀራረብ</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id0810200904233047\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert or delete axes.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ንግግር መክፈቻ axes ለማስገባት ወይንም ለማጥፋት</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ንግግር መክፈቻ አክሲስ ለማስገባት ወይንም ለማጥፋት </ahelp>"
#: main0000.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id0810200904362893\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the trendline equation.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deletes the trendline equation.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አቅጣጫ መስመር ስሌት ማጥፊያ</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id081020090443142\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the Y error bars.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Deletes the Y error bars.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ Y ስህተት መደርደሪያ ማጥፊያ</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -782,4 +782,4 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
-msgstr "እርስዎ እያንዳንዱን የ ቻርትስ አካላቶች ማስተካከል ይችላሉ: እንደ axes: የ ዳታ ምልክቶች: እና መግለጫዎች: በ ቀኝ-ይጫኑ በ ቻርትስ ላይ ወይንም በ እቃ መደርደሪያው ላይ ባሉ ምልክቶች እና ዝርዝር ትእዛዞች"
+msgstr "እርስዎ እያንዳንዱን የ ቻርትስ አካላቶች ማስተካከል ይችላሉ: እንደ አክሲስ: የ ዳታ ምልክቶች: እና መግለጫዎች: በ ቀኝ-ይጫኑ በ ቻርትስ ላይ ወይንም በ እቃ መደርደሪያው ላይ ባሉ ምልክቶች እና ዝርዝር ትእዛዞች"
diff --git a/source/am/helpcontent2/source/text/schart/00.po b/source/am/helpcontent2/source/text/schart/00.po
index 4e0b1c2afd3..e2c4423f440 100644
--- a/source/am/helpcontent2/source/text/schart/00.po
+++ b/source/am/helpcontent2/source/text/schart/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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-05 22:31+0000\n"
+"PO-Revision-Date: 2017-06-20 00:06+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496701879.000000\n"
+"X-POOTLE-MTIME: 1497917172.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3155444\n"
"help.text"
msgid "Choose <emph>Format - Legend - Position</emph> tab (Charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - መግለጫ - ቦታ</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ - ቦታ </emph> tab (ቻርትስ)"
#: 00000004.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id3147341\n"
"help.text"
msgid "Choose <emph>Format - Format Selection - Data Point/Data Series - Data Labels</emph> tab (for data series and data point) (Charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ - ዳታ ነጥብ/ለ ተከታታይ ዳታ - የ ዳታ ምልክቶች</emph> tab (ለ ተከታታይ ዳታ እና ለ ዳታ ነጥብ) (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ - ዳታ ነጥብ/ለ ተከታታይ ዳታ - የ ዳታ ምልክቶች </emph> tab (ለ ተከታታይ ዳታ እና ለ ዳታ ነጥብ) (ቻርትስ)"
#: 00000004.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes </emph>(Charts)</variable>"
-msgstr "<variable id=\"efgaug\">ይምረጡ <emph> ማስገቢያ - Axes </emph> (ቻርትስ)</variable>"
+msgstr "<variable id=\"efgaug\">ይምረጡ <emph> ማስገቢያ - አክሲስ </emph> (ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtoes\">ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ </emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frtoes\">ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ </emph>(ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3150214\n"
"help.text"
msgid "<variable id=\"frtodd\">Choose <emph>Format - Format Selection - Data Point</emph> dialog (Charts)</variable>"
-msgstr "<variable id=\"frtodd\">ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ - የ ዳታ ነጥብ</emph> ንግግር (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtodd\">ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ - የ ዳታ ነጥብ </emph> ንግግር (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3154765\n"
"help.text"
msgid "<variable id=\"frtodr\">Choose <emph>Format - Format Selection - Data Series</emph> dialog (Charts)</variable>"
-msgstr "<variable id=\"frtodr\">ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ - ተከታታይ ዳታ</emph> ንግግር (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtodr\">ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ - ተከታታይ ዳታ </emph> ንግግር (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3153009\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <emph>Format - Format Selection - Data Series - Options</emph> tab (Charts)</variable>"
-msgstr "<variable id=\"optionen\">ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ - ተከታታይ ዳታ - ምርጫዎች</emph> tab (ቻርትስ)</variable>"
+msgstr "<variable id=\"optionen\">ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ - ተከታታይ ዳታ - ምርጫዎች </emph> tab (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3154707\n"
"help.text"
msgid "<variable id=\"frtttl\">Choose <emph>Format - Title </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtttl\">ይምረጡ <emph>አቀራረብ - አርእስት </emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frtttl\">ይምረጡ <emph> አቀራረብ - አርእስት </emph> (ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3155758\n"
"help.text"
msgid "<variable id=\"frtoe\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
-msgstr "<variable id=\"frtoe\">ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ - አርእስት</emph> ንግግር (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtoe\">ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ - አርእስት </emph> ንግግር (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3153075\n"
"help.text"
msgid "<variable id=\"frtegt\">Choose <emph>Format - Format Selection - Title</emph> dialog (Charts)</variable>"
-msgstr "<variable id=\"frtegt\">ይምረጡ <emph>አቀራረብ - የ አቀራረብ ምርጫ - አርእስት</emph> ንግግር (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtegt\">ይምረጡ <emph> አቀራረብ - የ አቀራረብ ምርጫ - አርእስት </emph> ንግግር (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_id3149048\n"
"help.text"
msgid "<variable id=\"frttya\">Choose <emph>Format - Title </emph>(Charts)</variable>"
-msgstr "<variable id=\"frttya\">ይምረጡ <emph>አቀራረብ - አርእስት </emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frttya\">ይምረጡ <emph> አቀራረብ - አርእስት </emph> (ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3147297\n"
"help.text"
msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend, or Format - Format Selection</emph> - <emph>Legend </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtlgd\">ይምረጡ <emph>አቀራረብ - መግለጫ: ወይንም አቀራረብ - የ አቀራረብ ምርጫ</emph> - <emph>መግለጫ </emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frtlgd\">ይምረጡ <emph> አቀራረብ - መግለጫ: ወይንም አቀራረብ - የ አቀራረብ ምርጫ </emph> - <emph> መግለጫ </emph> (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3157876\n"
"help.text"
msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtaa\">ይምረጡ <emph> አቀራረብ - አክሲስ - X አክሲስ/ሁለተኛ X አክሲስ/Z አክሲስ/ሁሉም አክሲስ </emph> (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtaa\">ይምረጡ <emph> አቀራረብ - አክሲስ - X አክሲስ/ሁለተኛ X አክሲስ/Z አክሲስ/ሁሉም አክሲስ </emph> (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3146883\n"
"help.text"
msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtyas\">ይምረጡ <emph> አቀራረብ - አክሲስ - Y አክሲስ/ሁለተኛ Y አክሲስ </emph> (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtyas\">ይምረጡ <emph> አቀራረብ - አክሲስ - Y አክሲስ/ሁለተኛ Y አክሲስ </emph> (ቻርትስ) </variable>"
#: 00000004.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3145828\n"
"help.text"
msgid "<variable id=\"frtdgw\">Choose <emph>Format - Chart Wall - Chart</emph> dialog (Charts)</variable>"
-msgstr "<variable id=\"frtdgw\">ይምረጡ <emph>አቀራረብ - የ ቻርትስ ግድግዳ - ቻርትስ</emph> ንግግር (ቻርትስ)</variable>"
+msgstr "<variable id=\"frtdgw\">ይምረጡ <emph> አቀራረብ - የ ቻርትስ ግድግዳ - ቻርትስ </emph> ንግግር (ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3153039\n"
"help.text"
msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph>(Charts)</variable>"
-msgstr "<variable id=\"frtdgb\">ይምረጡ <emph>አቀራረብ - ቻርትስ ወለል</emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frtdgb\">ይምረጡ <emph> አቀራረብ - ቻርትስ ወለል </emph>(ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3150141\n"
"help.text"
msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph>(Charts)</variable>"
-msgstr "<variable id=\"frtdgf\">ይምረጡ <emph>አቀራረብ - የ ቻርትስ ቦታ </emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frtdgf\">ይምረጡ <emph> አቀራረብ - የ ቻርትስ ቦታ </emph>(ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3155830\n"
"help.text"
msgid "Choose <emph>Format - Chart Type </emph>(Charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ አይነት </emph>(ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ አይነት </emph> (ቻርትስ)"
#: 00000004.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3155621\n"
"help.text"
msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph>(Charts)</variable>"
-msgstr "<variable id=\"frtdda\">ይምረጡ <emph>አቀራረብ - 3ዲ መመልከቻ</emph>(ቻርትስ)</variable>"
+msgstr "<variable id=\"frtdda\">ይምረጡ <emph> አቀራረብ - 3ዲ መመልከቻ </emph>(ቻርትስ)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3150661\n"
"help.text"
msgid "Choose <emph>Format - Arrangement </emph>(Charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - ማዘጋጃ </emph>(ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - ማዘጋጃ </emph> (ቻርትስ)"
#: 00000004.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3153046\n"
"help.text"
msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
-msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph>ማዘጋጃ </emph>(ቻርትስ)"
+msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph> ማዘጋጃ </emph> (ቻርትስ)"
#: 00000004.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index 5446280d14d..f85462f764b 100644
--- a/source/am/helpcontent2/source/text/schart/01.po
+++ b/source/am/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:11+0000\n"
+"PO-Revision-Date: 2017-06-20 00:02+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496790707.000000\n"
+"X-POOTLE-MTIME: 1497916971.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3149667\n"
"help.text"
msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
-msgstr "የ <emph> ዳታ ሰንጠረዥ </emph>ንግግር አልተገኘም: ቻርትስ ካስገቡ ሰንጠረዥ ወይንም የ መጻፊያ ሰንጠረዥን መሰረት ያደረገ"
+msgstr "የ <emph> ዳታ ሰንጠረዥ </emph> ንግግር አልተገኘም: ቻርትስ ካስገቡ ሰንጠረዥ ወይንም የ መጻፊያ ሰንጠረዥን መሰረት ያደረገ"
#: 03010000.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id9487594\n"
"help.text"
msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
-msgstr "የ ቻርትስ ዳታ ንግግርን በ ሙሉ ይዝጉ ሁሉም ለውጦች ወደ ቻርትስ ላይ እንዲፈጸሙ: ይምረጡ <emph>ማረሚያ - መተው</emph> ለውጦቹን ለ መሰረዝ"
+msgstr "የ ቻርትስ ዳታ ንግግርን በ ሙሉ ይዝጉ ሁሉም ለውጦች ወደ ቻርትስ ላይ እንዲፈጸሙ: ይምረጡ <emph> ማረሚያ - መተው </emph> ለውጦቹን ለ መሰረዝ"
#: 03010000.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id3152297\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">አዲስ የ ጽሁፍ አምድ ማስገቢያ ከ አሁኑ አምድ በኋላ ለ axes ደረጃ መግለጫ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">አዲስ የ ጽሁፍ አምድ ማስገቢያ ከ አሁኑ አምድ በኋላ ለ አክሲስ ደረጃ መግለጫ </ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id3150208\n"
"help.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: 04010000.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"hd_id3150209\n"
"help.text"
msgid "Secondary Axes"
-msgstr "ሁለተኛ Axes"
+msgstr "ሁለተኛ አክሲስ"
#: 04010000.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id3149124\n"
"help.text"
msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
-msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">መግለጫውን ለ ማሳየት ወይንም ለ መደበቅ ይጫኑ <emph>መግለጫ ማብሪያ/ማጥፊያ</emph> በ <emph>አቀራረብ</emph> መደርደሪያ ላይ</ahelp></variable>"
+msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">መግለጫውን ለ ማሳየት ወይንም ለ መደበቅ ይጫኑ <emph> መግለጫ ማብሪያ/ማጥፊያ </emph> በ <emph> አቀራረብ </emph> መደርደሪያ ላይ </ahelp></variable>"
#: 04020000.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: 04040000.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"bm_id3147428\n"
"help.text"
msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
-msgstr "<bookmark_value>axes: ማሳያ axes በ ቻርትስ</bookmark_value><bookmark_value>ቻርትስ: ማሳያ axes</bookmark_value><bookmark_value>X axes: ማሳያ</bookmark_value><bookmark_value>Y axes: ማሳያ</bookmark_value><bookmark_value>Z axes: ማሳያ</bookmark_value><bookmark_value>axes: ጥሩ መመጠኛ</bookmark_value><bookmark_value>ሁለተኛ axes በ ቻርትስ</bookmark_value>"
+msgstr "<bookmark_value>አክሲስ: ማሳያ አክሲስ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ቻርትስ: ማሳያ አክሲስ</bookmark_value><bookmark_value>X አክሲስ: ማሳያ</bookmark_value><bookmark_value>Y አክሲስ: ማሳያ</bookmark_value><bookmark_value>Z አክሲስ: ማሳያ</bookmark_value><bookmark_value>አክሲስ: ጥሩ መመጠኛ</bookmark_value><bookmark_value>ሁለተኛ አክሲስ በ ቻርትስ ውስጥ</bookmark_value>"
#: 04040000.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3147428\n"
"help.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: 04040000.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id3150330\n"
"help.text"
msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
-msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">በ ቻርትስ ላይ የሚታየውን axes መወሰኛ</ahelp></variable>"
+msgstr "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">በ ቻርትስ ላይ የሚታየውን አክሲስ መወሰኛ</ahelp></variable>"
#: 04040000.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3149666\n"
"help.text"
msgid "<variable id=\"statistik\"><ahelp hid=\".\">Use the <emph>X or Y Error Bars</emph> dialog to display error bars for 2D charts.</ahelp></variable>"
-msgstr "<variable id=\"statistik\"><ahelp hid=\".\">ይጠቀሙ የ <emph>X ወይንም Y ስህተት መደርደሪያዎች</emph> ንግግር ለማሳየት የ ስህተት መደርደሪያ ለ 2ዲ ቻርትስ </ahelp></variable>"
+msgstr "<variable id=\"statistik\"><ahelp hid=\".\">ይጠቀሙ የ <emph> X ወይንም Y ስህተት መደርደሪያዎች </emph> ንግግር ለማሳየት የ ስህተት መደርደሪያ ለ 2ዲ ቻርትስ </ahelp></variable>"
#: 04050000.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3153965\n"
"help.text"
msgid "The <emph>Insert - X/Y Error Bars</emph> menu command is only available for 2D charts."
-msgstr "የ <emph>ማስገቢያ - X/Y ስህተት መደርደሪያ</emph> ዝርዝር ትእዛዝ ዝግጁ የሚሆነው ለ 2ዲ ቻርትስ ብቻ ነው"
+msgstr "የ <emph> ማስገቢያ - X/Y ስህተት መደርደሪያ </emph> ዝርዝር ትእዛዝ ዝግጁ የሚሆነው ለ 2ዲ ቻርትስ ብቻ ነው"
#: 04050000.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id5716727\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ቀጥተኛ የ አቅጣጫ መስመር ይታያል</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id5840021\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ logarithmic አቅጣጫ መስመር ማሳያ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ሎጋሪዝም አቅጣጫ መስመር ማሳያ</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id8962370\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አቅጣጫ መስመር ከ equation አጠገብ በ አቅጣጫ መስመር ማሳያ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አቅጣጫ መስመር ከ እኩሌታ አጠገብ በ አቅጣጫ መስመር ማሳያ</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id8398998\n"
"help.text"
msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line</emph> or <emph>Column</emph>, then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line. For such charts the XY chart type might be more suitable."
-msgstr "እርስዎ የ አቅጣጫ መስመር ካስገቡ ለ ቻርትስ አይነት ምድቦች ለሚጠቀም: እንደ <emph>መስመር </emph>ወይንም <emph>አምድ </emph>እና ከዛ የ ቁጥሮች 1, 2, 3, <emph>…</emph> መጠቀም ይችላሉ እንደ x-ዋጋዎች ለማስላት የ አቅጣጫ መስመር: ለ ቻርትስ የ XY ቻርትስ አይነት ምናልባት ተስማሚ ይሆናል"
+msgstr "እርስዎ የ አቅጣጫ መስመር ካስገቡ ለ ቻርትስ አይነት ምድቦች ለሚጠቀም: እንደ <emph> መስመር </emph> ወይንም <emph> አምድ </emph> እና ከዛ የ ቁጥሮች 1, 2, 3, <emph>…</emph> መጠቀም ይችላሉ እንደ x-ዋጋዎች ለማስላት የ አቅጣጫ መስመር: ለ ቻርትስ የ XY ቻርትስ አይነት ምናልባት ተስማሚ ይሆናል"
#: 04050100.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id4349192\n"
"help.text"
msgid "To insert a trend line for a data series, select the data series in the chart. Choose <item type=\"menuitem\">Insert - Trend Line</item>, or right-click to open the context menu, and choose <item type=\"menuitem\">Insert Trend Line</item>."
-msgstr "የ አቅጣጫ መስመሮች ለ ተከታታይ ዳታ ለማስገባት: ይምረጡ ተከታታይ ዳታ ከ ቻርትስ ውስጥ: ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ አቅጣጫ መስመር </item> ወይንም በ ቀኝ-ይጫኑ የ አገባብ ዝርዝር ለ መክፈት: እና ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ አቅጣጫ መስመር </item>."
+msgstr "የ አቅጣጫ መስመሮች ለ ተከታታይ ዳታ ለማስገባት: ይምረጡ ተከታታይ ዳታ ከ ቻርትስ ውስጥ: ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ አቅጣጫ መስመር </item> ወይንም በ ቀኝ-ይጫኑ የ አገባብ ዝርዝር ለ መክፈት: እና ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ አቅጣጫ መስመር </item>"
#: 04050100.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id9569689\n"
"help.text"
msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
-msgstr "የ አቅጣጫ መስመሮች ተመሳሳይ ቀለም አላቸው ከ ተከታታይ ዳታጋር: የ መስመር ባህሪዎችን ለ መቀየር: ይምረጡ የ አቅጣጫ መስመር እና ይምረጡ <item type=\"menuitem\">አቀራረብ - የ አቀራረብ ምርጫ – መስመር</item>."
+msgstr "የ አቅጣጫ መስመሮች ተመሳሳይ ቀለም አላቸው ከ ተከታታይ ዳታጋር: የ መስመር ባህሪዎችን ለ መቀየር: ይምረጡ የ አቅጣጫ መስመር እና ይምረጡ <item type=\"menuitem\"> አቀራረብ - የ አቀራረብ ምርጫ – መስመር</item>"
#: 04050100.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id846888\n"
"help.text"
msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert Trend Line Equation</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">የ አቅጣጫ መስመር equation ለማሳየት: ይምረጡ የ አቅጣጫ መስመር በ ቻርትስ ውስጥ: በ ቀኝ-ይጫኑ የ አገባብ ዝርዝር ለ መክፈት: እና ይምረጡ<item type=\"menuitem\">የ አቅጣጫ መስመር Equation</item>.</ahelp>"
+msgstr "<ahelp hid=\".\">የ አቅጣጫ መስመር እኩሌታ ለማሳየት: ይምረጡ የ አቅጣጫ መስመር በ ቻርትስ ውስጥ: በ ቀኝ-ይጫኑ የ አገባብ ዝርዝር ለ መክፈት: እና ይምረጡ <item type=\"menuitem\"> የ አቅጣጫ መስመር እኩሌታ </item>:</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id8962066\n"
"help.text"
msgid "To change format of values (use less significant digits or scientific notation), select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Format Trend Line Equation - Numbers</item>."
-msgstr "የ አቀራረብ ዋጋዎች ለ መቀየር (ይጠቀሙ አነስተኛ አስፈላጊ አሀዞች ወይንም ሳይንሳዊ ምልክቶች): ይምረጡ እኩሌታ በ ቻርት ውስጥ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <item type=\"menuitem\">አቀራረብ የ አቅጣጫ መስመር እኩሌታ - ቁጥሮች </item>."
+msgstr "የ አቀራረብ ዋጋዎች ለ መቀየር (ይጠቀሙ አነስተኛ አስፈላጊ አሀዞች ወይንም ሳይንሳዊ ምልክቶች): ይምረጡ እኩሌታ በ ቻርት ውስጥ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <item type=\"menuitem\"> አቀራረብ የ አቅጣጫ መስመር እኩሌታ - ቁጥሮች </item>"
#: 04050100.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id180820161627109994\n"
"help.text"
msgid "Default equation uses <item type=\"literal\">x</item> for abscissa variable, and <item type=\"literal\">f(x)</item> for ordinate variable. To change these names, select the trend line, choose <item type=\"menuitem\">Format - Format Selection – Type</item> and enter names in <item type=\"literal\">X Variable Name</item> and <item type=\"literal\">Y Variable Name</item> edit boxes."
-msgstr "ነባር ስሌቶች ይጠቀሙ <item type=\"literal\">x</item> ለ አብሲሳ ተለዋዋጭ: እና <item type=\"literal\">f(x)</item> ለ Y ዋጋ ተለዋዋጭ: እነዚህን ስሞች ለ መቀየር: ይምረጡ የ አቅጣጫ መስመር: ይምረጡ <item type=\"menuitem\">አቀራረብ - አቀራረብ ምርጫ – አይነት</item> እና ስም ያስገቡ በ <item type=\"literal\">X ተለዋዋጭ ስም</item> እና <item type=\"literal\">Y ተለዋዋጭ ስም</item> ማረሚያ ሳጥኖች ውስጥ"
+msgstr "ነባር ስሌቶች ይጠቀሙ <item type=\"literal\">x</item> ለ abscissa ተለዋዋጭ: እና <item type=\"literal\">f(x)</item> ለ Y ዋጋ ተለዋዋጭ: እነዚህን ስሞች ለ መቀየር: ይምረጡ የ አቅጣጫ መስመር: ይምረጡ <item type=\"menuitem\"> አቀራረብ - አቀራረብ ምርጫ – አይነት </item> እና ስም ያስገቡ በ <item type=\"literal\"> X ተለዋዋጭ ስም </item> እና <item type=\"literal\"> Y ተለዋዋጭ ስም </item> ማረሚያ ሳጥኖች ውስጥ"
#: 04050100.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_id18082016163702791\n"
"help.text"
msgid "To show the coefficient of determination R<sup>2</sup>, select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert R<sup>2</sup></item>."
-msgstr "ለ ማሳየት የ ኮኦፊሸንት መወሰኛ R<sup>2</sup> ይምረጡ ስሌት በ ቻርትስ ውስጥ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር: እና ይምረጡ <item type=\"menuitem\">ማስገቢያ R<sup>2</sup></item>."
+msgstr "ለ ማሳየት የ ኮኦፊሸንት መወሰኛ R<sup>2</sup> ይምረጡ ስሌት በ ቻርትስ ውስጥ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር: እና ይምረጡ <item type=\"menuitem\"> ማስገቢያ R <sup>2</sup></item>"
#: 04050100.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_id180820161612524298\n"
"help.text"
msgid "<emph>Polynomial</emph> trend line: regression through equation <item type=\"literal\">y=Σ(a<sub>i</sub>∙x<sup>i</sup>)</item>. Intercept <item type=\"literal\">a<sub>0</sub></item> can be forced. Degree of polynomial must be given (at least 2)."
-msgstr "<emph>የ ፖሊኖሚያል</emph> አቅጣጫ መስመር: ቅ ማድረጊያ በ እኩሌታ ውስጥ <item type=\"literal\">y=Σ(a<sub>i</sub>∙x<sup>i</sup>)</item> መገናኛ <item type=\"literal\">a<sub>0</sub></item> ማስገደድ ይቻላል: ዲግሪ ለ ፖሊኖሚያል መሰጠት አለበት (ቢያንስ 2)."
+msgstr "<emph>የ ፖሊኖሚያል </emph> አቅጣጫ መስመር: ቅ ማድረጊያ በ እኩሌታ ውስጥ <item type=\"literal\">y=Σ(a<sub>i</sub>∙x<sup>i</sup>)</item> መገናኛ <item type=\"literal\">a<sub>0</sub></item> ማስገደድ ይቻላል: ዲግሪ ለ ፖሊኖሚያል መሰጠት አለበት (ቢያንስ 2)."
#: 04050100.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id180820161612526680\n"
"help.text"
msgid "<emph>Exponential</emph> trend line: regression through equation <item type=\"literal\">y=b∙exp(a∙x)</item>.This equation is equivalent to <item type=\"literal\">y=b∙m<sup>x</sup></item> with <item type=\"literal\">m=exp(a)</item>. Intercept <item type=\"literal\">b</item> can be forced."
-msgstr "<emph>የ ኤክስፖኔንሺያል</emph> አቅጣጫ መስመር: ዝቅ ማድረጊያ በ እኩሌታ ውስጥ <item type=\"literal\">y=b∙exp(a∙x)</item> ይህ እኩሌታ አኩል ነው ከ <item type=\"literal\">y=b∙m<sup>x</sup></item> ከ <item type=\"literal\">m=exp(a)</item> ይገናኛል <item type=\"literal\">b</item> ማስገደድ ይቻላል"
+msgstr "<emph> የ ኤክስፖኔንሺያል</emph> አቅጣጫ መስመር: ዝቅ ማድረጊያ በ እኩሌታ ውስጥ <item type=\"literal\">y=b∙ኤክስፖነንት(a∙x)</item>: ይህ እኩሌታ አኩል ነው ከ <item type=\"literal\">y=b∙m<sup>x</sup></item> with <item type=\"literal\">m=ኤክስፖነንት(a)</item> ይገናኛል <item type=\"literal\">b</item> ማስገደድ ይቻላል"
#: 04050100.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id6637165\n"
"help.text"
msgid "b = INTERCEPT(Data_Y ;Data_X)"
-msgstr "b = INTERCEPT(Data_Y ;Data_X)"
+msgstr "b = መገናኛ(ዳታ_Y :ዳታ_X)"
#: 04050100.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"par_id5946531\n"
"help.text"
msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
-msgstr "b = INTERCEPT(Data_Y ;LN(Data_X))"
+msgstr "b = መገናኛ(ዳታ_Y : ሎጋሪዝም(ዳታ_X))"
#: 04050100.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id4416638\n"
"help.text"
msgid "a = SLOPE(LN(Data_Y);Data_X)"
-msgstr "a = SLOPE(LN(Data_Y);Data_X)"
+msgstr "a = ስሎፕ(ሎጋሪዝም(ዳታ_Y):ዳታ_X)"
#: 04050100.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id7184057\n"
"help.text"
msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
-msgstr "m = EXP(SLOPE(LN(Data_Y);Data_X))"
+msgstr "m = ኤክስፖነንት(ስሎፕ(ሎጋሪዝም(ዳታ_Y):ዳታ_X)"
#: 04050100.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"par_id786767\n"
"help.text"
msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
-msgstr "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
+msgstr "b = ኤክስፖነንት(መገናኛ(ሎጋሪዝም(ዳታ_Y):ዳታ_X))"
#: 04050100.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_id8517105\n"
"help.text"
msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
-msgstr "a = SLOPE(LN(Data_Y);LN(Data_X))"
+msgstr "a = ስሎፕ(ሎጋሪዝም(ዳታ_Y: ሎጋሪዝም(ዳታ_X))"
#: 04050100.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id9827265\n"
"help.text"
msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
-msgstr "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
+msgstr "b = ኤክስፖነንት(መገናኛ(ሎጋሪዝም(ዳታ_Y):ሎጋሪዝም(ዳታ_X))"
#: 04050100.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"par_id33875\n"
"help.text"
msgid "Create a table with the columns x, x<sup>2</sup>, x<sup>3</sup>, … , x<sup>n</sup>, y up to the desired degree n."
-msgstr "ሰንጠረዥ ከ አምዶች ጋር መፍጠሪያ x, x<sup>2</sup>, x<sup>3</sup>, … , x<sup>n</sup>, y እስከሚፈገው ዲግሪ ድረስ n."
+msgstr "ሰንጠረዥ ከ አምዶች ጋር መፍጠሪያ x, x<sup>2</sup>, x<sup>3</sup>, … , x<sup>n</sup>, y እስከሚፈለገው ዲግሪ ድረስ n."
#: 04050100.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id5068514\n"
"help.text"
msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
-msgstr "የ መጀመሪያው ረድፍ የ LINEST ውጤት የያዘው የ coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
+msgstr "የ መጀመሪያው ረድፍ የ ቀጥተኛ ውጤት የያዘው የ ኮኦፊሸንት ዝቅ ማድረጊያ ፖሊኖሚያል: በ ኮኦፊሸንት ለ xⁿ በ ግራ በሩቅ ቦታ"
#: 04050100.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"bm_id3147434\n"
"help.text"
msgid "<bookmark_value>axes; inserting grids</bookmark_value> <bookmark_value>grids; inserting in charts</bookmark_value>"
-msgstr "<bookmark_value>axes: ማስገቢያ መጋጠሚያ</bookmark_value> <bookmark_value>መጋጠሚያ: ማስገቢያ በ ቻርትስ ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>አክሲስ: ማስገቢያ መጋጠሚያ</bookmark_value> <bookmark_value>መጋጠሚያ: ማስገቢያ በ ቻርትስ ውስጥ</bookmark_value>"
#: 04070000.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "<variable id=\"gitter\"><ahelp hid=\".\">You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts.</ahelp> </variable> The Y axis major grid is activated by default."
-msgstr "<variable id=\"gitter\"><ahelp hid=\".\">እርስዎ መከፋፈል ይችላሉ axes ወደ ክፍሎች የ መጋጠሚያ መስመር በ መወሰን: ይህ እርስዎን የሚያስችለው ቻርትስ በ ጥሩ ሁኔታ እንዲያዩ ነው: በተለይ እርስዎ የሚሰሩ ከሆነ በጣም ትልቅ ቻርትስ ውስጥ </ahelp> </variable> የ Y አክሲስ ዋና መጋጠሚያ በ ነባር ይጀምራል"
+msgstr "<variable id=\"gitter\"><ahelp hid=\".\">እርስዎ መከፋፈል ይችላሉ አክሲስ ወደ ክፍሎች የ መጋጠሚያ መስመር በ መወሰን: ይህ እርስዎን የሚያስችለው ቻርትስ በ ጥሩ ሁኔታ እንዲያዩ ነው: በተለይ እርስዎ የሚሰሩ ከሆነ በጣም ትልቅ ቻርትስ ውስጥ </ahelp> </variable> የ Y አክሲስ ዋና መጋጠሚያ በ ነባር ይጀምራል"
#: 04070000.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "Modifies the alignment of axes or title labels."
-msgstr "የ axes ወይንምየ እርእስት ምልክቶች ማሻሻያ ማሰለፊያ"
+msgstr "የ አክሲስ ወይንምየ እርእስት ምልክቶች ማሻሻያ ማሰለፊያ"
#: 05020201.xhp
msgctxt ""
@@ -2830,7 +2830,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
-msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">የ<emph> አክሲስ አርእስት ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> አቀራረብ </emph> መደርደሪያ ላይ መቀየሪያ ሁሉንም የ ምልክቶች አክሲስ ማብሪያ ወይንም ማጥፊያ </ahelp></variable>"
+msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">የ <emph> አክሲስ አርእስት ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> አቀራረብ </emph> መደርደሪያ ላይ መቀየሪያ ሁሉንም የ ምልክቶች አክሲስ ማብሪያ ወይንም ማጥፊያ </ahelp></variable>"
#: 05020201.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"hd_id3147345\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">ሁሉም axes</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">ሁሉም አክሲስ</link>"
#: 05040100.xhp
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: 05040100.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"bm_id3153768\n"
"help.text"
msgid "<bookmark_value>axes;formatting</bookmark_value>"
-msgstr "<bookmark_value>axes;አቀራረብ</bookmark_value>"
+msgstr "<bookmark_value>አክሲስ: አቀራረብ</bookmark_value>"
#: 05040100.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"hd_id3153768\n"
"help.text"
msgid "Axes"
-msgstr "Axes"
+msgstr "አክሲስ"
#: 05040100.xhp
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"bm_id3145673\n"
"help.text"
msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
-msgstr "<bookmark_value>የ Y axes; አቀራረብ</bookmark_value>"
+msgstr "<bookmark_value>የ Y አክሲስ: አቀራረብ</bookmark_value>"
#: 05040200.xhp
msgctxt ""
@@ -3318,7 +3318,7 @@ msgctxt ""
"bm_id3150868\n"
"help.text"
msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
-msgstr "<bookmark_value>መመጠኛ: axes</bookmark_value><bookmark_value>ሎጋሪዝም መመጠኛ በ axes</bookmark_value><bookmark_value>ቻርትስ: መመጠኛ axes</bookmark_value><bookmark_value>X axes: መመጠኛ</bookmark_value><bookmark_value>Y axes: መመጠኛ</bookmark_value>"
+msgstr "<bookmark_value>መመጠኛ: አክሲስ</bookmark_value><bookmark_value>ሎጋሪዝም መመጠኛ በ አክሲስ ውስጥ</bookmark_value><bookmark_value>ቻርትስ: መመጠኛ አክሲስ</bookmark_value><bookmark_value>X አክሲስ: መመጠኛ</bookmark_value><bookmark_value>Y አክሲስ: መመጠኛ</bookmark_value>"
#: 05040201.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3148576\n"
"help.text"
msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
-msgstr "ራሱ በራሱ axes ይመጠናል በ $[officename] ስለዚህ ሁሉም ዋጋዎች በ አጥጋቢ ሁኔታ ይታያሉ"
+msgstr "ራሱ በራሱ አክሲስ ይመጠናል በ $[officename] ስለዚህ ሁሉም ዋጋዎች በ አጥጋቢ ሁኔታ ይታያሉ"
#: 05040201.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_id3149400\n"
"help.text"
msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
-msgstr "እርስዎ ዋጋዎች ማስገባት ይችላሉ axes በ ንዑስ ለመክፈል በዚህ ቦታ: እርስዎ ራሱ በራሱ ባህሪዎችን እንዲያሰናዳ ማድረግ ይችላሉ <emph>አነስተኛ: ከፍተኛ: ከፍተኛ ክፍተት: አነስተኛ ክፍተት መቁጠሪያ</emph> እና <emph>ማመሳከሪያ ዋጋ</emph>."
+msgstr "እርስዎ ዋጋዎች ማስገባት ይችላሉ አክሲስ በ ንዑስ ለመክፈል በዚህ ቦታ: እርስዎ ራሱ በራሱ ባህሪዎችን እንዲያሰናዳ ማድረግ ይችላሉ <emph> አነስተኛ: ከፍተኛ: ከፍተኛ ክፍተት: አነስተኛ ክፍተት መቁጠሪያ </emph> እና <emph> ማመሳከሪያ ዋጋ </emph>"
#: 05040201.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"par_id3143218\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
-msgstr "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_STEP_MAIN\">ለ ዋናው የ axes ክፍል ክፍተት መወሰኛ </ahelp> ዋናው ክፍተት መብለጥ የለበትም ከ ቦታው ዋጋ"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_Scale/EDT_STEP_MAIN\">ለ ዋናው የ አክሲስ ክፍል ክፍተት መወሰኛ </ahelp> ዋናው ክፍተት መብለጥ የለበትም ከ ቦታው ዋጋ"
#: 05040201.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_Scale/MT_STEPHELP\">Defines the interval for the subdivision of the axes.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_Scale/MT_STEPHELP\">ለ ንዑስ ክፍል axes ክፍተት መወሰኛ </ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_Scale/MT_STEPHELP\">ለ ንዑስ ክፍል አክሲስ ክፍተት መወሰኛ </ahelp>"
#: 05040201.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"bm_id3150869\n"
"help.text"
msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
-msgstr "<bookmark_value>አቀማመጥ: axes</bookmark_value><bookmark_value>ቻርትስ: አቀማመጥ axes</bookmark_value><bookmark_value>X axes: አቀማመጥ</bookmark_value><bookmark_value>Y axes: አቀማመጥ</bookmark_value><bookmark_value>axes: የ ክፍተት ምልክት</bookmark_value>"
+msgstr "<bookmark_value>አቀማመጥ: አክሲስ</bookmark_value><bookmark_value>ቻርትስ: አቀማመጥ አክሲስ</bookmark_value><bookmark_value>X አክሲስ: አቀማመጥ</bookmark_value><bookmark_value>Y አክሲስ: አቀማመጥ</bookmark_value><bookmark_value>አክሲስ: የ ክፍተት ምልክት</bookmark_value>"
#: 05040202.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"bm_id3155602\n"
"help.text"
msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
-msgstr "<bookmark_value>መጋጠሚያ; አቀራረብ የ axes</bookmark_value><bookmark_value>የ axes; አቀራረብ መጋጠሚያ</bookmark_value>"
+msgstr "<bookmark_value>መጋጠሚያ: አቀራረብ የ አክሲስ</bookmark_value><bookmark_value>የ አክሲስ: አቀራረብ መጋጠሚያ</bookmark_value>"
#: 05050000.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"bm_id3150398\n"
"help.text"
msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
-msgstr "<bookmark_value>X axes;መጋጠሚያ አቀራረብ</bookmark_value><bookmark_value>Y axes;መጋጠሚያ አቀራረብ</bookmark_value><bookmark_value>Z axes;መጋጠሚያ አቀራረብ</bookmark_value>"
+msgstr "<bookmark_value>X አክሲስ: መጋጠሚያ አቀራረብ</bookmark_value><bookmark_value>Y አክሲስ: መጋጠሚያ አቀራረብ</bookmark_value><bookmark_value>Z አክሲስ: መጋጠሚያ አቀራረብ</bookmark_value>"
#: 05050100.xhp
msgctxt ""
@@ -3950,7 +3950,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
-msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">መክፈቻ የ<emph> የ ቻርትስ ወለል</emph> ንግግር: እርስዎ የ ቻርትስ ወለል ባህሪዎች የሚያሻሽሉበት: የ ቻርትስ ወለል የ ታችኛው ቦታ ነው በ 3ዲ ቻርትስ ውስጥ: ይህ ተግባር ዝግጁ የሚሆነው ለ 3ዲ ቻርትስ ብቻ ነው</ahelp></variable>"
+msgstr "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">መክፈቻ <emph> የ ቻርትስ ወለል </emph> ንግግር: እርስዎ የ ቻርትስ ወለል ባህሪዎች የሚያሻሽሉበት: የ ቻርትስ ወለል የ ታችኛው ቦታ ነው በ 3ዲ ቻርትስ ውስጥ: ይህ ተግባር ዝግጁ የሚሆነው ለ 3ዲ ቻርትስ ብቻ ነው </ahelp></variable>"
#: 05080000.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"par_id2320932\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ሪዞሊሽን ማሰናጃ</ahelp>"
#: smooth_line_properties.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"par_id6998809\n"
"help.text"
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
-msgstr "በ መጀመሪያው ገጽ ላይ በ <link href=\"text/schart/01/wiz_chart_type.xhp\">የ ቻርትስ አዋቂ</link> ወይንም በ አገባብ ዝርዝር ውስጥ በ ቻርት ውስጥ እርስዎ መምረጥ ይችላሉ የ ቻርት አይነት <ahelp hid=\".\" visibility=\"hidden\"> መክፈቻ የ ማረሚያ ንግግር ባህሪዎች ለ ሶስት አቅጣጫ መመልከቻ በ አምድ: በ መደርደሪያ: በ ፓይ እና በ ቻርትስ ቦታ ውስጥ: ለ መስመር እና ለ XY (የ ተበተነ) ቻርትስ ለ እርስዎ የ 3ዲ መስመሮች ይታያል </ahelp>"
+msgstr "በ መጀመሪያው ገጽ ላይ በ <link href=\"text/schart/01/wiz_chart_type.xhp\"> የ ቻርትስ አዋቂ </link> ወይንም በ አገባብ ዝርዝር ውስጥ በ ቻርት ውስጥ እርስዎ መምረጥ ይችላሉ የ ቻርት አይነት <ahelp hid=\".\" visibility=\"hidden\"> መክፈቻ የ ማረሚያ ንግግር ባህሪዎች ለ ሶስት አቅጣጫ መመልከቻ በ አምድ: በ መደርደሪያ: በ ፓይ እና በ ቻርትስ ቦታ ውስጥ: ለ መስመር እና ለ XY (የ ተበተነ) ቻርትስ ለ እርስዎ የ 3ዲ መስመሮች ይታያል </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_id8081911\n"
"help.text"
msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
-msgstr "ለ 3ዲ ቻርትስ እርስዎ ይምረጡ <item type=\"menuitem\">አቀራረብ - 3ዲ መመልከቻ</item> ለ ማሰናዳት አቀራረብ: የ ብርሀን ምንጭ: እይታዎች"
+msgstr "ለ 3ዲ ቻርትስ እርስዎ ይምረጡ <item type=\"menuitem\"> አቀራረብ - 3ዲ መመልከቻ </item> ለ ማሰናዳት አቀራረብ: የ ብርሀን ምንጭ: እይታዎች"
#: three_d_view.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id5781731\n"
"help.text"
msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
-msgstr "ዋጋዎች ያስገቡ ለ ቻርትስ ማዞሪያ በ ሶስት axes እና ለ አንፃራዊ መመልከቻ"
+msgstr "ዋጋዎች ያስገቡ ለ ቻርትስ ማዞሪያ በ ሶስት አክሲስ እና ለ አንፃራዊ መመልከቻ"
#: three_d_view.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"par_id2861720\n"
"help.text"
msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
-msgstr "የ ራይት-አንግል axes ካስቻሉ: እርስዎ ማዞር ይችላሉ የ ቻርትስ ይዞታዎች በ X እና Y አቅጣጫ ብቻ: አጓዳኝ ለሆኑት የ ቻርትስ ድንበሮች"
+msgstr "የ ራይት-አንግል አክሲስ ካስቻሉ: እርስዎ ማዞር ይችላሉ የ ቻርትስ ይዞታዎች በ X እና Y አቅጣጫ ብቻ: አጓዳኝ ለሆኑት የ ቻርትስ ድንበሮች"
#: three_d_view.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_id2578203\n"
"help.text"
msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
-msgstr "የ axes ሁል ጊዜ ግንኙነቱ ከ ገጽ ጋር ነው: ከ ቻርትስ axes ጋር አይደለም: ይህ ልዩ ነው ከ አንዳንድ ሌሎች የ ቻርትስ ፕሮግራሞች ጋር"
+msgstr "የ axes ሁል ጊዜ ግንኙነቱ ከ ገጽ ጋር ነው: ከ ቻርትስ አክሲስ ጋር አይደለም: ይህ ልዩ ነው ከ አንዳንድ ሌሎች የ ቻርትስ ፕሮግራሞች ጋር"
#: three_d_view.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"par_id7623828\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ራይት-አንግል axes ካስቻሉ: እርስዎ ማዞር ይችላሉ የ chart ይዞታዎች በ X እና Y አቅጣጫ ብቻ: አጓዳኝ ለሆኑት የ ቻርትስ ድንበሮች የ ራይት-አንግል axes ካስቻሉ በ ነባር አዲስ ለ ተፈጠረ የ 3ዲ ቻርትስ ፓይ እና ዶናት የ ራይት-አንግል axes አይደግፉም </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ራይት-አንግል አክሲስ ካስቻሉ: እርስዎ ማዞር ይችላሉ የ ቻርትስ ይዞታዎች በ X እና Y አቅጣጫ ብቻ: አጓዳኝ ለሆኑት የ ቻርትስ ድንበሮች የ ራይት-አንግል አክሲስ ካስቻሉ በ ነባር አዲስ ለ ተፈጠረ የ 3ዲ ቻርትስ ፓይ እና ዶናት የ ራይት-አንግል አክሲስ አይደግፉም </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_id1579027\n"
"help.text"
msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
-msgstr "ምልክት ያድርጉ በ <emph>ጥላ</emph> ላይ ለ መጠቀም የ Gouraud ዘዴ ገጽታ ለ ማመንጨት: ያለ በለዚያ ጠፍጣፋ ዘዴ ይጠቀማል"
+msgstr "ምልክት ያድርጉ በ <emph> ጥላ </emph> ላይ ለ መጠቀም የ ጥላ ዘዴ ገጽታ ለ ማመንጨት: ያለ በለዚያ ጠፍጣፋ ዘዴ ይጠቀማል"
#: three_d_view.xhp
msgctxt ""
@@ -4686,7 +4686,7 @@ msgctxt ""
"par_id5901058\n"
"help.text"
msgid "The Gouraud method applies gradients for a smoother, more realistic look."
-msgstr "የ Gouraud ዘዴ የሚፈጽመው ከፍታዎች ለ ማለስለሻ: እና ተጨማሪ ትክክለኛ መልክ ነው"
+msgstr "የ ጥላ ዘዴ የሚፈጽመው ከፍታዎች ለ ማለስለሻ: እና ተጨማሪ ትክክለኛ መልክ ነው"
#: three_d_view.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id9183935\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ Gouraud ጥላ የሚፈጸመው ምልክት የ ተደረገበት ወይንም ጠፍጣፋ ጥላ ምልክት ሳይደረግ ነው </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ጥላ ማጥሊያ ጥላ የሚፈጸመው ምልክት የ ተደረገበትን ወይንም ጠፍጣፋ ጥላ ምልክት ሳይደረግ ነው </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"par_id3101901\n"
"help.text"
msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
-msgstr "የ አምድ እና መስመር chart ቅልቅል ነው <link href=\"text/schart/01/type_column_bar.xhp\">የ አምድ ቻርትስ</link> ከ <link href=\"text/schart/01/type_line.xhp\">መስመር ቻርትስ ጋር</link>."
+msgstr "የ አምድ እና የ መስመር ቻርትስ ቅልቅል ነው <link href=\"text/schart/01/type_column_bar.xhp\"> የ አምድ ቻርትስ </link> ከ <link href=\"text/schart/01/type_line.xhp\"> መስመር ቻርትስ ጋር </link>"
#: type_column_line.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id9141819\n"
"help.text"
msgid "Secondary axes"
-msgstr "ሁለተኛ axes"
+msgstr "ሁለተኛ አክሲስ"
#: type_column_line.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id2655720\n"
"help.text"
msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
-msgstr "ምልክት ያድርጉ <emph>ተከታታይ መከመሪያ</emph> ለ ማዘጋጀት ነጥቦች' የ y ዋጋዎች ለ መከመር አንዱን በ አንዱ ላይ: የ y ዋጋዎች ፍጹም ዋጋዎችን አይወክሉም: ከ መጀመሪያው አምድ በስተቀር: የሚታየው ከ ክምሩ በ ታች በኩል ነው: እርስዎ ከ መረጡ <emph>ፐርሰንት</emph>የ y ዋጋዎች ይመጠናሉ እንደ ፐርሰንት በ ጠቅላላ ምድብ ውስጥ"
+msgstr "ምልክት ያድርጉ <emph> ተከታታይ መከመሪያ </emph> ለ ማዘጋጀት ነጥቦች' የ y ዋጋዎች ለ መከመር አንዱን በ አንዱ ላይ: የ y ዋጋዎች ፍጹም ዋጋዎችን አይወክሉም: ከ መጀመሪያው አምድ በስተቀር: የሚታየው ከ ክምሩ በ ታች በኩል ነው: እርስዎ ከ መረጡ <emph> ፐርሰንት </emph> የ y ዋጋዎች ይመጠናሉ እንደ ፐርሰንት በ ጠቅላላ ምድብ ውስጥ"
#: type_line.xhp
msgctxt ""
@@ -5550,7 +5550,7 @@ msgctxt ""
"par_id3682058\n"
"help.text"
msgid "Choose the <emph>Line type</emph> from the dropdown to select how the points will be connected. You can choose either <emph>Straight</emph> lines, <emph>Smooth</emph> lines to draw curves through the points or <emph>Stepped</emph> lines to draw lines which step from point to point. Click <emph>Properties</emph> to change the properties for the <link href=\"text/schart/01/smooth_line_properties.xhp\">smooth</link> or <link href=\"text/schart/01/stepped_line_properties.xhp\">stepped</link> lines."
-msgstr "ይምረጡ የ <emph>መስመር አይነት</emph> ከ ወደ ታች የሚዘረገፍ: መስመሮቹ እንዴት እንደሚገናኙ ይምረጡ: መምረጥ ይችላሉ <emph>ቀጥተኛ</emph> መስመሮች <emph>ለስላሳ</emph> መስመሮች ክቦች ለ መሳል በ ነጥቦቹ መከከል ወይንም <emph>ደረጃ</emph> መስመሮች የ ደረጃ መስመሮች ከ ነጥብ ወደ ነጥብ መከከል: ይጫኑ <emph>ባህሪዎች</emph> ባህሪዎችን ለ መቀየር ለ <link href=\"text/schart/01/smooth_line_properties.xhp\">ለስላሳ</link> ወይንም <link href=\"text/schart/01/stepped_line_properties.xhp\">ደረጃ</link> መስመሮች መካከል"
+msgstr "ይምረጡ የ <emph> መስመር አይነት </emph> ከ ወደ ታች የሚዘረገፍ: መስመሮቹ እንዴት እንደሚገናኙ ይምረጡ: እርስዎ መምረጥ ይችላሉ <emph> ቀጥተኛ </emph> መስመሮች <emph> ለስላሳ </emph> መስመሮች ክቦች ለ መሳል በ ነጥቦቹ መከከል ወይንም <emph> ደረጃ </emph> መስመሮች የ ደረጃ መስመሮች ከ ነጥብ ወደ ነጥብ መከከል: ይጫኑ <emph> ባህሪዎች </emph> ለ መቀየር ባህሪዎችን ለ <link href=\"text/schart/01/smooth_line_properties.xhp\"> ለስላሳ </link> ወይንም <link href=\"text/schart/01/stepped_line_properties.xhp\"> ደረጃ </link> መስመሮች መካከል"
#: type_net.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id291451\n"
"help.text"
msgid "Based on<emph> low</emph> <emph>and high </emph>column the Type 1 shows the distance between bottom price (low) and top price (high) by a vertical line."
-msgstr "መሰረት ባደረገ በ <emph> ዝቅተኛ</emph> <emph>እና ከፍተኛ </emph>አምድ የ አይነት 1 የሚያሳየው እርቀት በ ዝቅተኛው ዋጋ (ዝቅተኛ) እና በ ከፍተኛው ዋጋ (ከፍተኛ) በ ቁመት መስመር ላይ"
+msgstr "መሰረት ባደረገ በ <emph> ዝቅተኛ</emph> <emph> እና ከፍተኛ </emph> አምድ የ አይነት 1 የሚያሳየው እርቀት በ ዝቅተኛው ዋጋ (ዝቅተኛ) እና በ ከፍተኛው ዋጋ (ከፍተኛ) በ ቁመት መስመር ላይ"
#: type_stock.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"par_id3341776\n"
"help.text"
msgid "Based on<emph> low, high,</emph> and <emph>close</emph> column Type 1 shows an additional horizontal mark <emph>for</emph> the closing price."
-msgstr "መሰረት ባደረገ በ<emph> ዝቅተኛ: ከፍተኛ</emph> እና <emph>መዝጊያ</emph> የ አምድ አይነት 1 የሚያሳየው ተጨማሪ የ አግድም ምልክት ነው <emph>ለ</emph> መዝጊያ ዋጋ"
+msgstr "መሰረት ባደረገ በ <emph> ዝቅተኛ: ከፍተኛ </emph> እና <emph> መዝጊያ </emph> የ አምድ አይነት 1 የሚያሳየው ተጨማሪ የ አግድም ምልክት ነው <emph> ለ </emph> መዝጊያ ዋጋ"
#: type_stock.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"par_id1911679\n"
"help.text"
msgid "Based on <emph>open, low, high</emph>, and <emph>close</emph> column Type 2 generates the traditional \"candle stick\" chart. Type 2 draws the vertical line between the bottom and top price and adds a rectangle in front, which visualizes the range between the opening and closing price. If you click on the rectangle you see more information in the status bar. %PRODUCTNAME uses different fill colors for rising values (the opening price is lower than the closing price) and falling values."
-msgstr "መሰረት ባደረገ የ <emph>መክፈቻ: ዝቅተኛ: ከፍተኛ</emph> እና <emph>መዝጊያ</emph> አምድ አይነት 2 ያመነጫል የ ተለመደ \"እንደ ሻማ\" ቻርትስ አይነት 2 የሚስለው በ ቁመት ነው በ ዝቅተኛ እና ከፍተኛ ዋጋ መካከል እና አራት ማእዘን ከ ፊት ለ ፊት ይጨምራል: ለ መመልከት የ መክፈቻ ዋጋ እና የ መዝጊያ ዋጋ መካከል: እርስዎ ከ ተጫኑ የ በ አራት ማእዘን ላይ ለ እርስዎ በርካታ መረጃ በ እቃ መደርደሪያ ላይ ይታያል: %PRODUCTNAME የ ተለያዩ የ መሙያ ቀለሞች ይጠቀማል ለሚጨምሩ ዋጋዎች (የ መክፈቻ ዋጋ ዝቅተኛ ከሆነ ከ መዝጊያው ዋጋ ጋር) እና የ ዋጋዎች ውድቀት"
+msgstr "መሰረት ባደረገ የ <emph> መክፈቻ: ዝቅተኛ: ከፍተኛ </emph> እና <emph> መዝጊያ </emph> አምድ አይነት 2 ያመነጫል የ ተለመደ \"እንደ ሻማ\" ቻርትስ አይነት 2 የሚስለው በ ቁመት ነው በ ዝቅተኛ እና ከፍተኛ ዋጋ መካከል እና አራት ማእዘን ከ ፊት ለ ፊት ይጨምራል: ለ መመልከት የ መክፈቻ ዋጋ እና የ መዝጊያ ዋጋ መካከል: እርስዎ ከ ተጫኑ የ በ አራት ማእዘን ላይ ለ እርስዎ በርካታ መረጃ በ እቃ መደርደሪያ ላይ ይታያል: %PRODUCTNAME የ ተለያዩ የ መሙያ ቀለሞች ይጠቀማል ለሚጨምሩ ዋጋዎች (የ መክፈቻ ዋጋ ዝቅተኛ ከሆነ ከ መዝጊያው ዋጋ ጋር) እና የ ዋጋዎች ውድቀት"
#: type_stock.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_id4473403\n"
"help.text"
msgid "Based on <emph>volume, low, high</emph>, and <emph>close</emph> column chart Type 3 draws a chart like Type 1, with additional columns for the transaction volume."
-msgstr "መሰረት ባደረገ በ<emph>መጠን: ዝቅተኛ: ከፍተኛ</emph> እና <emph>መዝጊያ</emph> የ አምድ አይነት 3 ይስላል ቻርትስ እንደ አይነት 1: ከ ተጨማሪ አምዶች ጋር ለ መጠን መቀያየሪያ"
+msgstr "መሰረት ባደረገ በ <emph> መጠን: ዝቅተኛ: ከፍተኛ </emph> እና <emph> መዝጊያ </emph> የ አምድ አይነት 3 ይስላል ቻርትስ እንደ አይነት 1: ከ ተጨማሪ አምዶች ጋር ለ መጠን መቀያየሪያ"
#: type_stock.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"par_id4331797\n"
"help.text"
msgid "Based on all five data columns <emph>volume, open, low, high</emph>, and <emph>close</emph>, Type 4 combines a chart of Type 2 with a column chart for the transaction volume."
-msgstr "መሰረት ባደረገ በ ሁሉም አምስት አምዶች <emph>መጠን: መክፈቻ: ዝቅተኛ: ከፍተኛ</emph> እና <emph>መዝጊያ</emph> አይነት 4 ይቀላቅላል የ ቻርትስ አይነት 2 ከ አምድ ቻርትስ ጋር ለ መጠን መቀያየሪያ"
+msgstr "መሰረት ባደረገ በ ሁሉም አምስት አምዶች <emph> መጠን: መክፈቻ: ዝቅተኛ: ከፍተኛ </emph> እና <emph> መዝጊያ </emph> አይነት 4 ይቀላቅላል የ ቻርትስ አይነት 2 ከ አምድ ቻርትስ ጋር ለ መጠን መቀያየሪያ"
#: type_stock.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id5298318\n"
"help.text"
msgid "To change the data series of a chart having its own data, choose <link href=\"text/schart/01/03010000.xhp\">Chart Data Table</link> from the View menu or from the context menu of the chart in edit mode."
-msgstr "ለ መቀየር የ chart ተከታታይ ዳታ የራሱ ዳታ ያለው: ይምረጡ <link href=\"text/schart/01/03010000.xhp\"> ቻርትስ የ ዳታ ሰንጠረዥ </link> ከ መመልከቻ ዝርዝር ውስጥ ወይንም ከ አገባብ ዝርዝር ውስጥ ከ ቻርትስ ማረሚያ ዘዴ ውስጥ"
+msgstr "ለ መቀየር የ ቻርትስ ተከታታይ ዳታ የራሱ ዳታ ያለው: ይምረጡ <link href=\"text/schart/01/03010000.xhp\"> ቻርትስ የ ዳታ ሰንጠረዥ </link> ከ መመልከቻ ዝርዝር ውስጥ ወይንም ከ አገባብ ዝርዝር ውስጥ ከ ቻርትስ ማረሚያ ዘዴ ውስጥ"
#: type_stock.xhp
msgctxt ""
@@ -6310,7 +6310,7 @@ msgctxt ""
"par_id3394573\n"
"help.text"
msgid "You can choose or alter a data range on the second page of the Chart wizard or in the <link href=\"text/schart/01/wiz_data_range.xhp\">Data Range</link> dialog. For fine tuning use the <link href=\"text/schart/01/wiz_data_series.xhp\">Data Series</link> dialog."
-msgstr "እርስዎ መምረጥ ይችላሉ ወይንም መቀየር የ ዳታ መጠን በ ሁለተኛው ገጽ ላይ በ ቻርትስ አዋቂ ወይንም ከ <link href=\"text/schart/01/wiz_data_range.xhp\">ዳታ መጠን </link> ንግግር ውስጥ: በ በለጠ ለማጥራት ይጠቀሙ የ <link href=\"text/schart/01/wiz_data_series.xhp\">ተከታታይ ዳታ </link> ንግግር"
+msgstr "እርስዎ መምረጥ ይችላሉ ወይንም መቀየር የ ዳታ መጠን በ ሁለተኛው ገጽ ላይ በ ቻርትስ አዋቂ ወይንም ከ <link href=\"text/schart/01/wiz_data_range.xhp\"> ዳታ መጠን </link> ንግግር ውስጥ: በ በለጠ ለማጥራት ይጠቀሙ የ <link href=\"text/schart/01/wiz_data_series.xhp\"> ተከታታይ ዳታ </link> ንግግር"
#: type_stock.xhp
msgctxt ""
@@ -6414,7 +6414,7 @@ msgctxt ""
"par_id2927335\n"
"help.text"
msgid "To remove a data series, select the data series in the list and click <emph>Remove</emph>."
-msgstr "ተከታታይ ዳታ ለማስወገድ: ይምረጡ ተከታታይ ዳታ ከ ዝርዝር ውስጥ እና ይጫኑ <emph>ማስወገጃ</emph>"
+msgstr "ተከታታይ ዳታ ለማስወገድ: ይምረጡ ተከታታይ ዳታ ከ ዝርዝር ውስጥ እና ይጫኑ <emph> ማስወገጃ </emph>"
#: type_stock.xhp
msgctxt ""
@@ -6654,7 +6654,7 @@ msgctxt ""
"par_id6571550\n"
"help.text"
msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Charts - Default Colors</item>."
-msgstr "እያንዳንዱ የ ዳታ ነጥብ የሚታየው በ ምልክት ነው %PRODUCTNAME ነባር ምልክቶች ይጠቀማል በ ተለያየ ፎርም እና ቀለሞች ለ እያንዳንዱ ተከታታይ ዳታ: ነባር ቀለም የሚሰናዳው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - የ ቻርትስ - ነባር ቀለሞች</item>."
+msgstr "እያንዳንዱ የ ዳታ ነጥብ የሚታየው በ ምልክት ነው %PRODUCTNAME ነባር ምልክቶች ይጠቀማል በ ተለያየ ፎርም እና ቀለሞች ለ እያንዳንዱ ተከታታይ ዳታ: ነባር ቀለም የሚሰናዳው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - የ ቻርትስ - ነባር ቀለሞች </item>"
#: type_xy.xhp
msgctxt ""
@@ -6742,7 +6742,7 @@ msgctxt ""
"par_id5989562\n"
"help.text"
msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
-msgstr "<emph>Cubic Spline</emph> የ እርስዎን ዳታ ነጥቦች ያስገባል ወደ polynomials of degree 3. ሽግግሩ ወደ polynomial አካል በጣም ለስላሳ ነው: ተመሳሳይ slope and curvature ስላለው."
+msgstr "<emph>Cubic Spline</emph> የ እርስዎን ዳታ ነጥቦች ያስገባል ወደ ፖሊኖሚያል ዲግሪ 3. ሽግግሩ ወደ ፖሊኖሚያል አካል በጣም ለስላሳ ነው: ተመሳሳይ ስሎፕ እና ክብነት ስላለው:"
#: type_xy.xhp
msgctxt ""
@@ -7158,7 +7158,7 @@ msgctxt ""
"par_id5806756\n"
"help.text"
msgid "Secondary axes"
-msgstr "ሁለተኛ axes"
+msgstr "ሁለተኛ አክሲስ"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -7270,7 +7270,7 @@ msgctxt ""
"par_id3191625\n"
"help.text"
msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
-msgstr "ይጫኑ <emph>ይቀጥሉ</emph> የሚቀጥለውን የ አዋቂ ገጽ ለ መመልከት: ወይንም ይጫኑ ማስገቢያውን ከ አዋቂው በ ግራ በኩል ያለውን በ ቀጥታ ወደ ገጹ ጋር ለ መሄድ"
+msgstr "ይጫኑ <emph> ይቀጥሉ </emph> የሚቀጥለውን የ አዋቂ ገጽ ለ መመልከት: ወይንም ይጫኑ ማስገቢያውን ከ አዋቂው በ ግራ በኩል ያለውን በ ቀጥታ ወደ ገጹ ጋር ለ መሄድ"
#: wiz_chart_type.xhp
msgctxt ""
@@ -7598,7 +7598,7 @@ msgctxt ""
"par_id9651478\n"
"help.text"
msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
-msgstr "በዚህ ገጽ ላይ በ <link href=\"text/schart/01/wiz_chart_type.xhp\">የ ቻርትስ አዋቂ</link> እርስዎ መቀየር ይችላሉ የ ምንጭ መጠን የ ሁሉንም ተከታታይ ዳታ ለየብቻ: ምልክቶችንም ያካትታል: እርስዎ እንዲሁም የ ምድቦችን መጠን መቀየር ይችላሉ: እርስዎ በ መጀመሪያ የ ዳታ መጠን ይምረጡ ከ ዳታ መጠን ገጽ ውስጥ እና ከዛ ያስወግዱ አስፋላጊ ያልሆነ ተከታታይ ዳታ ወይንም ተከታታይ ዳታ ከ ሌሎች ክፍሎች ውስጥ እዚህ ይጨምሩ"
+msgstr "በዚህ ገጽ ላይ በ <link href=\"text/schart/01/wiz_chart_type.xhp\">የ ቻርትስ አዋቂ </link> እርስዎ መቀየር ይችላሉ የ ምንጭ መጠን የ ሁሉንም ተከታታይ ዳታ ለየብቻ: ምልክቶችንም ያካትታል: እርስዎ እንዲሁም የ ምድቦችን መጠን መቀየር ይችላሉ: እርስዎ በ መጀመሪያ የ ዳታ መጠን ይምረጡ ከ ዳታ መጠን ገጽ ውስጥ እና ከዛ ያስወግዱ አስፋላጊ ያልሆነ ተከታታይ ዳታ ወይንም ተከታታይ ዳታ ከ ሌሎች ክፍሎች ውስጥ እዚህ ይጨምሩ"
#: wiz_data_series.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw/04.po b/source/am/helpcontent2/source/text/sdraw/04.po
index 0f78bbd8fb0..3976e786e67 100644
--- a/source/am/helpcontent2/source/text/sdraw/04.po
+++ b/source/am/helpcontent2/source/text/sdraw/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-04-13 18:31+0000\n"
+"PO-Revision-Date: 2017-06-18 00:18+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492108293.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497745137.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3149250\n"
"help.text"
msgid "Groups selected objects."
-msgstr "በቡድን የተመረጡ እቃዎች"
+msgstr "በ ቡድን የተመረጡ እቃዎች"
#: 01020000.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3147171\n"
"help.text"
msgid "Moves the page view in the direction of the arrow key."
-msgstr "የገጽ መመልከቻውን በቀስት ቁልፍ አቅጣጫ ማንቀሳቀሻ"
+msgstr "የ ገጽ መመልከቻውን በ ቀስት ቁልፍ አቅጣጫ ማንቀሳቀሻ"
#: 01020000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id3152484\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: this shortcut key works only when the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General is enabled (it is enabled by default)."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-ይጫኑ እቃውን በሚጎትቱ ጊዜ ፡ ማስታወሻ: ይህ አቋራጭ ቁልፍ የሚሰራው የ <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">ኮፒ ማድረጊያ በሚንቀሳቀስ ጊዜ </link> ምርጫ ከ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫዎች</defaultinline></switchinline> - %PRODUCTNAME መሳያ - ባጠቃላይ ካስቻሉት ነው (ይህ በ ነባር ተችሏል)."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>-ይጫኑ እቃውን በሚጎትቱ ጊዜ ፡ ማስታወሻ: ይህ አቋራጭ ቁልፍ የሚሰራው የ <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\"> ኮፒ ማድረጊያ በሚንቀሳቀስ ጊዜ </link> ምርጫ ከ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫዎች </defaultinline></switchinline> - %PRODUCTNAME መሳያ - ባጠቃላይ ካስቻሉት ነው (ይህ በ ነባር ተችሏል)"
#: 01020000.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"hd_id3154643\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter with keyboard focus (F6) on a drawing object icon on Tools bar"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ በፊደል ገበታ ትኩረት (F6) በ መሳያ እቃዎች ምልክት በ እቃ መደርደሪያው ላይ"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ በፊደል ገበታ ትኩረት (F6) በ መሳያ እቃዎች ምልክት በ እቃ መደርደሪያው ላይ"
#: 01020000.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id3159343\n"
"help.text"
msgid "Adds or removes object to or from the selection."
-msgstr "ከምርጫው እቃዎችን መጨመሪያ ወይንም ማስወገጃ"
+msgstr "ከ ምርጫ እቃዎች መጨመሪያ ወይንም ማስወገጃ"
#: 01020000.xhp
msgctxt ""
@@ -838,4 +838,4 @@ msgctxt ""
"par_id3109840\n"
"help.text"
msgid "Exits current mode."
-msgstr "ከአሁኑ ዘዴ መውጫ"
+msgstr "ከ አሁኑ ዘዴ መውጫ"
diff --git a/source/am/helpcontent2/source/text/sdraw/guide.po b/source/am/helpcontent2/source/text/sdraw/guide.po
index da81786b94f..ef8332472ac 100644
--- a/source/am/helpcontent2/source/text/sdraw/guide.po
+++ b/source/am/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-05 23:56+0000\n"
+"PO-Revision-Date: 2017-06-18 00:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496707019.000000\n"
+"X-POOTLE-MTIME: 1497746316.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3152987\n"
"help.text"
msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
-msgstr "የ ቀአሰ ቀለም ዘዴ ይቀላቅላል ቀይ: አረንጓዴ እና ሰማያዊ ብርሀን ቀለሞች ለ መፍጠር በ ኮምፒዩተር መመልከቻ ላይ: በ ቀአሰ ቀለም ዘዴ: የ ሶስቱ ቀለሞች አካሎች ይጨመራል እና ዋጋዎች ይኖራቸዋል ከ 0 (ጥቁር) እስከ 255 (ነጭ). የ ሲማቢጥ ቀለም ዘዴ ይቀላቅላል ሲያን (C), ማጄንታ (M), ቢጫ (ቢ), እና ጥቁር (K, እንዲሁም ይጠቀማል ለ \"ቁልፍ\") ይፈጥራል በ ቀለም ማተሚያ: አራቱ ቀለሞች የ ሲማቢጥ ዘዴዎች መቀነሻ እና የሚገለጹት በ ፐርሰንት ነው: ጥቁር ተመሳሳይ ነውከ 100 % እና ነጭ ከ 0 %. ጋር"
+msgstr "የ ቀአሰ ቀለም ዘዴ ይቀላቅላል ቀይ: አረንጓዴ እና ሰማያዊ ብርሀን ቀለሞች ለ መፍጠር በ ኮምፒዩተር መመልከቻ ላይ: በ ቀአሰ ቀለም ዘዴ: የ ሶስቱ ቀለሞች አካሎች ይጨመራል እና ዋጋዎች ይኖራቸዋል ከ 0 (ጥቁር) እስከ 255 (ነጭ). የ CMYK ቀለም ዘዴ ይቀላቅላል ሲያን (C), ማጄንታ (M), ቢጫ (ቢ), እና ጥቁር (K, እንዲሁም ይጠቀማል ለ \"ቁልፍ\") ይፈጥራል በ ቀለም ማተሚያ: አራቱ ቀለሞች የ ሲማቢጥ ዘዴዎች መቀነሻ እና የሚገለጹት በ ፐርሰንት ነው: ጥቁር ተመሳሳይ ነው ከ 100 % እና ነጭ ከ 0 %. ጋር"
#: color_define.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3147244\n"
"help.text"
msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
-msgstr "እርስዎ ቀለም መቀየር ከፈለጉ በ መደበኛ የ ቀለም ሰንጠረዥ በ እርስዎ የ ቀለም ማስተካከያ መሰረት ያደረገ ይጫኑ <emph>ማሻሻያ</emph>."
+msgstr "እርስዎ ቀለም መቀየር ከፈለጉ በ መደበኛ የ ቀለም ሰንጠረዥ በ እርስዎ የ ቀለም ማስተካከያ መሰረት ያደረገ ይጫኑ <emph> ማሻሻያ </emph>"
#: color_define.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3153034\n"
"help.text"
msgid "<emph>Intersect</emph>."
-msgstr "<emph>መገናኛ</emph>."
+msgstr "<emph>መገናኛ</emph>"
#: combine_etc.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3166428\n"
"help.text"
msgid "Choose <emph>Edit - Cross-fading</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - መስቀልኛ-ማፍዘዣ</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - መስቀልኛ-ማፍዘዣ </emph>"
#: cross_fading.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
-msgstr "ይምረጡ ኤሊፕስ እና ይምረጡ <emph>ማረሚያ - ማባዣ</emph>."
+msgstr "ይምረጡ ኤሊፕስ እና ይምረጡ <emph> ማረሚያ - ማባዣ </emph>"
#: duplicate_object.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3154491\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and select <emph>Gradient</emph> as the <emph>Fill</emph> type."
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ</emph> እና ይምረጡ <emph>ከፍታ</emph> እንደ የ <emph>መሙያ</emph> አይነት"
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ይምረጡ <emph> ከፍታ </emph> እንደ የ <emph> መሙያ </emph> አይነት"
#: gradient.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ </emph> እና ይጫኑ የ <emph>ከፍታ</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ይጫኑ የ <emph> ከፍታ </emph> tab."
#: gradient.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3145592\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ</emph> እና ይጫኑ የ <emph>ከፍታ</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ይጫኑ የ <emph> ከፍታ </emph> tab."
#: gradient.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3150659\n"
"help.text"
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
-msgstr "ለ ማስተካከል የ እቃውን ግልጽነት: ይምረጡ እቃውን: ይምረጡ <emph>አቀራረብ - ቦታ</emph> እና ይጫኑ የ <emph>ግልጽነት</emph> tab."
+msgstr "ለ ማስተካከል የ እቃውን ግልጽነት: ይምረጡ እቃውን: ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ይጫኑ የ <emph> ግልጽነት </emph> tab."
#: graphic_insert.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3155600\n"
"help.text"
msgid "Choose <emph>Insert - Image</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - ምስል </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - ምስል </emph>"
#: graphic_insert.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3147346\n"
"help.text"
msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
-msgstr "ይምረጡ በ ቡድን ማድረግ የሚፈልጉትን እቃ እና ይምረጡ <emph>ማሻሻያ - ቡድን</emph>."
+msgstr "ይምረጡ በ ቡድን ማድረግ የሚፈልጉትን እቃ እና ይምረጡ <emph> ማሻሻያ - ቡድን </emph>"
#: groups.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_id3149257\n"
"help.text"
msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
-msgstr "የ ተዘጋ እቃ ለመፍጠር ፡ በ ቀኝ-ይጫኑ መስመሩን እና ይምረጡ <emph>የ ተዘጋ እቃ</emph>."
+msgstr "የ ተዘጋ እቃ ለመፍጠር: በ ቀኝ-ይጫኑ መስመሩን እና ይምረጡ <emph> የ ተዘጋ እቃ </emph>"
#: join_objects.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3154652\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
-msgstr "ይምረጡ <emph>ማረሚያ - መለጠፊያ</emph>. ሁለቱም እቃዎች አሁን ተመሳሳይ ቡድን ናቸው: እርስዎ ከ ፈለጉ: እያንዳንዱን እቃዎች ማረም ይችላሉ: ወይንም በ ቡድኑ ውስጥ ቦታዎችን መቀየር ይችላሉ"
+msgstr "ይምረጡ <emph> ማረሚያ - መለጠፊያ </emph> ሁለቱም እቃዎች አሁን ተመሳሳይ ቡድን ናቸው: እርስዎ ከ ፈለጉ: እያንዳንዱን እቃዎች ማረም ይችላሉ: ወይንም በ ቡድኑ ውስጥ ቦታዎችን መቀየር ይችላሉ"
#: join_objects3d.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared.po b/source/am/helpcontent2/source/text/shared.po
index 6e0ca3ce89c..beb22a73706 100644
--- a/source/am/helpcontent2/source/text/shared.po
+++ b/source/am/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:53+0000\n"
+"PO-Revision-Date: 2017-06-19 23:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496793203.000000\n"
+"X-POOTLE-MTIME: 1497915572.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "አስተያየት ይምረጡ ወይንም አጓዳኝ ማሾለኪያ ዘዴ"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "የ ብርሀን ጥንካሬ ይምረጡ"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "የ እቃ ገጽታ ይምረጡ ወይንም የ ሽቦ ክፈፍ ለ ማሳየት"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
-msgstr "<ahelp hid=\".\">የዳታ መደርደሪያውን ሰንጠረዥ ይጠቀሙ ዳታ መመልከቻውን ለመቆጣጠር </ahelp>"
+msgstr "<ahelp hid=\".\">የ ዳታ መደርደሪያውን ሰንጠረዥ ይጠቀሙ ዳታ መመልከቻውን ለመቆጣጠር </ahelp>"
#: main0212.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3154751\n"
"help.text"
msgid "The <emph>Form Navigation</emph> bar contains icons to edit a database table or to control the data view. The bar is displayed at the bottom of a document that contains fields that are linked to a database."
-msgstr "የ <emph>ፎርም መቃኛ</emph> መደርደሪያ የያዛቸው ምልክቶች የ ዳታቤዝ ሰንጠረዥ ለማረም ነው ወይንም የ ዳታ መመልከቻ መቆጣጠሪያ ነው: መደርደሪያው የሚታየው በ ሰነዱ ከ ታች በኩል ነው ሜዳዎች እንደ አገናኝ በ ዳታቤዝ ውስጥ የያዘ"
+msgstr "የ <emph> ፎርም መቃኛ </emph> መደርደሪያ የያዛቸው ምልክቶች የ ዳታቤዝ ሰንጠረዥ ለማረም ነው ወይንም የ ዳታ መመልከቻ መቆጣጠሪያ ነው: መደርደሪያው የሚታየው በ ሰነዱ ከ ታች በኩል ነው ሜዳዎች እንደ አገናኝ በ ዳታቤዝ ውስጥ የያዘ"
#: main0213.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "You can use the <emph>Form Navigation</emph> bar to move within records as well as to insert and to delete records. If data is saved in a form, the changes are transferred to the database. The <emph>Form Navigation</emph> bar also contains sort, filter, and search functions for data records."
-msgstr "መጠቀም ይችላሉ የ <emph>ፎርም መቃኛ</emph> መደርደሪያ በ መዝገቦች ውስጥ ለማንቀሳቀስ እንዲሁም መዝገቦችን ለማስገባት እና ለማጥፋት: ዳታ በ ፎርም ዘዴ ከተቀመጠ ለውጦቹ በሙሉ ወደ ዳታቤዝ ይተላለፋሉ: የ <emph>ፎርም መቃኛ</emph> መደርደሪያ ለ ዳታ መዝገቦች መለያ: ማጣሪያ እና የ መፈለጊያ ተግባሮች ይዟል"
+msgstr "መጠቀም ይችላሉ የ <emph> ፎርም መቃኛ </emph> መደርደሪያ በ መዝገቦች ውስጥ ለማንቀሳቀስ እንዲሁም መዝገቦችን ለማስገባት እና ለማጥፋት: ዳታ በ ፎርም ዘዴ ከተቀመጠ ለውጦቹ በሙሉ ወደ ዳታቤዝ ይተላለፋሉ: የ <emph> ፎርም መቃኛ </emph> መደርደሪያ ለ ዳታ መዝገቦች መለያ: ማጣሪያ እና የ መፈለጊያ ተግባሮች ይዟል"
#: main0213.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id3157910\n"
"help.text"
msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design view\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
-msgstr "የ መቃኛ መደርደሪያ የሚታየው ከ ዳታቤዝ ጋር ለተገናኙ ፎርሞች ነው: የ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design view\">ንድፍ መመልከቻ</link> ለ ፎርም: የ መቃኛ መደርደሪያ አልተገኘም: ይህን ይመልከቱ የ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">ሰንጠረዥ ዳታ መደርደሪያ</link>."
+msgstr "የ መቃኛ መደርደሪያ የሚታየው ከ ዳታቤዝ ጋር ለተገናኙ ፎርሞች ነው: የ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design view\"> ንድፍ መመልከቻ </link> ለ ፎርም: የ መቃኛ መደርደሪያ አልተገኘም: ይህን ይመልከቱ የ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\"> ሰንጠረዥ ዳታ መደርደሪያ </link>"
#: main0213.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id3153062\n"
"help.text"
msgid "The current sort order or filter is saved with the current document. If a filter is set, the <emph>Apply Filter</emph> icon on the <emph>Navigation</emph> bar is activated. Sorting and filtering features in the document can also be configured in the <emph>Form Properties</emph> dialog. (Choose <emph>Form Properties - Data</emph> - properties <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>Sort</emph></link> and <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>Filter</emph></link>)."
-msgstr "የ አሁኑ መለያ ደንብ ወይንም ማጣሪያ በ አሁኑ ሰነድ ውስጥ ተቀምጧል፡ ማጣሪያ ከተሰናዳ የ <emph>ማጣሪያ መፈጸሚያ</emph> ምልክት በ <emph>መቃኛ</emph> መደርደሪያ ላይ ንቁ ይሆናል መለያ እና ማጣሪያ ገጽታዎች በ ሰነዱ ውስጥ ማዋቀር ይቻላል በ <emph>ፎርም ባህሪዎች</emph> ንግግር ውስጥ (ይምረጡ <emph>የ ፎርም ባህሪዎች - ዳታ</emph> - ባህሪዎች <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>መለያ</emph></link> እና <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>ማጣሪያ</emph></link>)."
+msgstr "የ አሁኑ መለያ ደንብ ወይንም ማጣሪያ በ አሁኑ ሰነድ ውስጥ ተቀምጧል፡ ማጣሪያ ከተሰናዳ የ <emph> ማጣሪያ መፈጸሚያ </emph> ምልክት በ <emph> መቃኛ </emph> መደርደሪያ ላይ ንቁ ይሆናል መለያ እና ማጣሪያ ገጽታዎች በ ሰነዱ ውስጥ ማዋቀር ይቻላል በ <emph> ፎርም ባህሪዎች </emph> ንግግር ውስጥ (ይምረጡ <emph> የ ፎርም ባህሪዎች - ዳታ </emph> - ባህሪዎች <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph> መለያ </emph></link> እና <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph> ማጣሪያ </emph></link>)"
#: main0213.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
-msgstr "ይህ የ SQL አረፍተ ነገር የ ፎርም መሰረት ነው (ይመልከቱ <emph> የ ፎርም ባህሪዎች </emph> - tab <emph> ዳታ </emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph> የ ዳታ ምንጭ </emph></link>), እና ከዛ ማጣሪያ እና መለያ ተግባሮች ዝግጁ ይሆናሉ የ SQL አረፍተ ነገር የሚያመሳክረው አንድ ሰንጠረዥ ነው እና በ native SQL ዘዴ የ ተጻፈ አይደለም"
+msgstr "ይህ የ SQL አረፍተ ነገር የ ፎርም መሰረት ነው (ይመልከቱ <emph> የ ፎርም ባህሪዎች </emph> - tab <emph> ዳታ </emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph> የ ዳታ ምንጭ </emph></link>) እና ከዛ ማጣሪያ እና መለያ ተግባሮች ዝግጁ ይሆናሉ የ SQL አረፍተ ነገር የሚያመሳክረው አንድ ሰንጠረዥ ነው እና በ native SQL ዘዴ የ ተጻፈ አይደለም"
#: main0213.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3150085\n"
"help.text"
msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ በሚፈጥሩ ጊዜ ወይንም በሚያርሙ ጊዜ የ SQL ጥያቄ: ይጠቀሙ ምልክቶችን በ <emph>ጥያቄ ንድፍ</emph> መደርደሪያ ላይ የሚታየውን ዳታ ለ መቆጣጠር </ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ በሚፈጥሩ ጊዜ ወይንም በሚያርሙ ጊዜ የ SQL ጥያቄ: ይጠቀሙ ምልክቶችን በ <emph> ጥያቄ ንድፍ </emph> መደርደሪያ ላይ የሚታየውን ዳታ ለ መቆጣጠር </ahelp>"
#: main0214.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3150276\n"
"help.text"
msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
-msgstr "እንደ ሁኔታው እርስዎ ጥያቄ ከ ፈጠሩ ወይንም መመልከቻ በ <emph>ንድፍ</emph> ወይንም <emph>SQL</emph> tab ገጽ ውስጥ: የሚቀጥለው ምልክት ይታያል:"
+msgstr "እንደ ሁኔታው እርስዎ ጥያቄ ከ ፈጠሩ ወይንም መመልከቻ በ <emph> ንድፍ </emph> ወይንም <emph> SQL </emph> tab ገጽ ውስጥ: የሚቀጥለው ምልክት ይታያል:"
#: main0214.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3160478\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierInsert\">Activates the insert mode. This mode allows you to insert points.</ahelp> You can also move points, just as in the move mode. If, however, you click at the curve between two points and move the mouse a little while holding down the mouse button you insert a new point. The point is a smooth point, and the lines to the control points are parallel and remain so when moved."
-msgstr "<ahelp hid=\".uno:BezierInsert\">የ ማስገቢያ ዘዴ ማስጀመሪያ: ይህ ዘዴ እርስዎን የሚያስችለው ነጥቦች ማስገባት ነው</ahelp> እርስዎ ነጥቦችን ማንቀሳቀስ ይችላሉ: እንደ ማንቀሳቀሻ ዘዴ: ነገር ግን እርስዎ ክብ ላይ ከ ተጫኑ በ ሁለት ነጥቦች መካከል እና አይጡን ካንቀሳቀሱ ተጭነው ይዘው የ አይጥ ቁልፍ አዲስ ነጥብ ያስገባል: ነጥቡ ለስላሳ ነጥብ ነው: እና የ ነጥቦቹ መቆጣጠሪያ መስመር አጓዳኝ ነው እና በሚቀሳቀስ ጊዜ እንደ ነበር ይቆያል"
+msgstr "<ahelp hid=\".uno:BezierInsert\">የ ማስገቢያ ዘዴ ማስጀመሪያ: ይህ ዘዴ እርስዎን የሚያስችለው ነጥቦች ማስገባት ነው </ahelp> እርስዎ ነጥቦችን ማንቀሳቀስ ይችላሉ: እንደ ማንቀሳቀሻ ዘዴ: ነገር ግን እርስዎ ክብ ላይ ከ ተጫኑ በ ሁለት ነጥቦች መካከል እና አይጡን ካንቀሳቀሱ ተጭነው ይዘው የ አይጥ ቁልፍ አዲስ ነጥብ ያስገባል: ነጥቡ ለስላሳ ነጥብ ነው: እና የ ነጥቦቹ መቆጣጠሪያ መስመር አጓዳኝ ነው እና በሚቀሳቀስ ጊዜ እንደ ነበር ይቆያል"
#: main0227.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id3153825\n"
"help.text"
msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "Macros የ ተፈጠረው በ $[officename] Basic መሰረት ባደረገ ye አሮጌው ፕሮግራም ገጽታ በ አሁኑ እትም የተደገፈ አይደለም"
+msgstr "ማክሮስ የ ተፈጠረው በ $[officename] Basic መሰረት ባደረገ የ አሮጌው ፕሮግራም ገጽታ በ አሁኑ እትም የተደገፈ አይደለም"
#: main0600.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "Enable Java platform support by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] - Advanced</emph></link>."
-msgstr "የ Java platform ድጋፍ በ መምረጥ ማስነሻ<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] – የ ረቀቀ</emph></link>."
+msgstr "የ Java platform ድጋፍ በ መምረጥ ማስነሻ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] – የ ረቀቀ </emph></link>"
#: main0650.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3153822\n"
"help.text"
msgid "Your modifications at the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph> tab page will be used even if the Java Virtual Machine (JVM) has been started already. After any modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>. Only the boxes \"HTTP Proxy\" and \"FTP Proxy\" and their ports do not require a restart—they will be evaluated when you click <emph>OK</emph>."
-msgstr "የ እርስዎ ማሻሻያ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - የ ረቀቀ </emph> tab ገጽ ይጠቀማል ለ Java Virtual Machine (JVM, a virtual machine for the Java platform) ቀደም ብሎ ጀምሯል: ከ ተሻሻለ በኋላ ClassPath እርስዎ እንደገና ማስነሳት አለብዎት $[officename] እንዲሁም ተመሳሳይ ነው ለማሻሻያ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ኢንተርኔት - ወኪል </emph> ሁለት ሳጥኖች ብቻ \"Http Proxy\" እና \"Ftp Proxy\" እና የነሱ ports እንደገና ማስነሳት አያስፈልግም: እርስዎ በሚጫኑ ጊዜ ይገመገማል <emph> እሺ </emph>."
+msgstr "የ እርስዎ ማሻሻያ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ረቀቀ </emph> tab ገጽ ይጠቀማል ለ Java Virtual Machine (JVM, a virtual machine for the Java platform) ቀደም ብሎ ጀምሯል: ከ ተሻሻለ በኋላ ClassPath እርስዎ እንደገና ማስነሳት አለብዎት $[officename] እንዲሁም ተመሳሳይ ነው ለማሻሻያ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ኢንተርኔት - ወኪል </emph> ሁለት ሳጥኖች ብቻ \"Http Proxy\" እና \"Ftp Proxy\" እና የነሱ ports እንደገና ማስነሳት አያስፈልግም: እርስዎ በሚጫኑ ጊዜ ይገመገማል <emph> እሺ </emph>"
#: main0800.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 62130e2fec0..017b1c47b4f 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 23:58+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 17:42+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496707130.000000\n"
+"X-POOTLE-MTIME: 1498066931.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_id3148983\n"
"help.text"
msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
-msgstr "<ahelp hid=\".\">ከተጫኑ ወደፊት ንግግሩን፡ ይህ ቁልፍ <emph>ይቀጥሉ</emph>. ይሆናል በ መጨረሻው ገጽ ላይ ቁልፉ ስሙ <emph>መቀየሪያ</emph>. ይሆናል መቀየሩ የሚፈጸመው ይህን ቁልፍ ሲጫኑ ነው</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ ከ ተጫኑ ወደፊት ንግግሩን: ይህ ቁልፍ <emph> ይቀጥሉ </emph> ይሆናል: በ መጨረሻው ገጽ ላይ ቁልፉ ስሙ <emph> መቀየሪያ </emph> ይሆናል: መቀየሩ የሚፈጸመው ይህን ቁልፍ ሲጫኑ ነው </ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3153087\n"
"help.text"
msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ የ<emph> ማሳነሻ </emph>ምልክት ንግግሩን ለማሳነስ ከ ማስገቢያው ሜዳ እኩል ለማድረግ: ከዛ በኋላ ቀላል ይሆናል ምልክት ለማድረግ የሚፈለገውን ማመሳከሪያ በ ወረቀቱ ውስጥ:ምልክቱ ራሱ በራሱ ይቀየራል ወደ <emph>ማሳደጊያ</emph> ምልክት: ይጫኑ እንደ ነበር ለመመለስ ንግግሩን ወደ ዋናው መጠን </ahelp>"
+msgstr "<ahelp hid=\".\">ይጫኑ የ <emph> ማሳነሻ </emph> ምልክት ንግግሩን ለማሳነስ ከ ማስገቢያው ሜዳ እኩል ለማድረግ: ከዛ በኋላ ቀላል ይሆናል ምልክት ለማድረግ የሚፈለገውን ማመሳከሪያ በ ወረቀቱ ውስጥ:ምልክቱ ራሱ በራሱ ይቀየራል ወደ <emph> ማሳደጊያ </emph> ምልክት: ይጫኑ እንደ ነበር ለመመለስ ንግግሩን ወደ ዋናው መጠን </ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3155314\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the <emph>Options</emph> label to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">ይጫኑ የ<emph> ምርጫ</emph>ምልክት ቁልፍ ንግግሩን ለማስፋት ተጨማሪ ምርጫዎች ለማሳየት: ይጫኑ እንደገና ንግግሩን እንደ ነበር ለመመለስ</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">ይጫኑ የ <emph> ምርጫ </emph> ምልክት ቁልፍ ንግግሩን ለማስፋት ተጨማሪ ምርጫዎች ለማሳየት: ይጫኑ እንደገና ንግግሩን እንደ ነበር ለመመለስ </ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3147418\n"
"help.text"
msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
-msgstr "<variable id=\"regulaer\">መፈለጊያ የሚደግፋቸው <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\"> መደበኛ አገላለጾች </link>. ማስገባት ይችላሉ \"ሁሉንም.*\" ለምሳሌ ለማግኘት የመጀመሪያውን አካባቢ የ \"ሁሉንም\" እና ሌሎች ባህሪዎችን ተከትሎ፡ እንዲሁም ጽሁፍ ማግኘት ከፈለጉ መደበኛ አገላላጽ የሆነ እያንዳንዱን ባህሪ መቀጠል ያስፈልጋል ከ \\ ባህሪ ጋር መቀየር ይችላሉ ራሱ በራሱ ግምገማ ማብሪያ እና ማጥፊያ ከ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - ሰንጠረዥ</link>.</variable>"
+msgstr "<variable id=\"regulaer\">መፈለጊያ የሚደግፋቸው <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\"> መደበኛ አገላለጾች </link> ማስገባት ይችላሉ \"ሁሉንም.*\" ለምሳሌ ለማግኘት የመጀመሪያውን አካባቢ የ \"ሁሉንም\" እና ሌሎች ባህሪዎችን ተከትሎ፡ እንዲሁም ጽሁፍ ማግኘት ከፈለጉ መደበኛ አገላላጽ የሆነ እያንዳንዱን ባህሪ መቀጠል ያስፈልጋል ከ \\ ባህሪ ጋር መቀየር ይችላሉ ራሱ በራሱ ግምገማ ማብሪያ እና ማጥፊያ ከ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - ሰንጠረዥ </link></variable>"
#: 00000001.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3154346\n"
"help.text"
msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
-msgstr "እርስዎ መጻፍ ከ ፈለጉ የ HTML ትእዛዞች በ ቀጥታ: ለምሳሌ: እርስዎ በሚለማመዱ ጊዜ ዝግጁ ከሆኑ ከ አንዱ የ HTML መጽሀፎች ውስጥ: ያስታውሱ የ HTML ገጾች ንፁህ የ ጽሁፍ ፋይሎች ናቸው: የ እርስዎን ሰነድ ያስቀምጡ በ ሰነድ አይነት ውስጥ በ <emph>ጽሁፍ </emph>እና ይስጡት የ ፋይል ስም ተቀጥያ .HTML. እርግጠኛ ይሁኑ እንደሌለ umlauts ወይንም ሌሎች የ ተለዩ ባህሪዎች የ ተስፋፉ ባህሪዎች ስብስብ: እርስዎ ከ ፈለጉ እንደገና-መከፈት ይህን ፋይል በ $[officename] እና ማረም በ HTML ኮድ: እርስዎ መጫን አለብዎት በ ፋይል አይነት <emph>ጽሁፍ</emph> እና በ ፋይል አይነት አይደለም <emph>የ ዌብ ገጾች</emph>."
+msgstr "እርስዎ መጻፍ ከ ፈለጉ የ HTML ትእዛዞች በ ቀጥታ: ለምሳሌ: እርስዎ በሚለማመዱ ጊዜ ዝግጁ ከሆኑ ከ አንዱ የ HTML መጽሀፎች ውስጥ: ያስታውሱ የ HTML ገጾች ንፁህ የ ጽሁፍ ፋይሎች ናቸው: የ እርስዎን ሰነድ ያስቀምጡ በ ሰነድ አይነት ውስጥ በ <emph> ጽሁፍ </emph> እና ይስጡት የ ፋይል ስም ተቀጥያ .HTML. እርግጠኛ ይሁኑ እንደሌለ umlauts ወይንም ሌሎች የ ተለዩ ባህሪዎች የ ተስፋፉ ባህሪዎች ስብስብ: እርስዎ ከ ፈለጉ እንደገና-መከፈት ይህን ፋይል በ $[officename] እና ማረም በ HTML ኮድ: እርስዎ መጫን አለብዎት በ ፋይል አይነት <emph> ጽሁፍ </emph> እና በ ፋይል አይነት አይደለም <emph> የ ዌብ ገጾች </emph>"
#: 00000002.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
-msgstr "$[officename] የ ምስል ካርታ ይፈጥራል ለ ሁለቱም መንገዶች: ይምረጡ አቀራረብ ከ <emph>ፋይል አይነት </emph>ዝርዝር ውስጥ በ <emph>ማስቀመጫ እንደ </emph>ንግግር ውስጥ: በ <emph>የ ምስል ካርታ ማረሚያ</emph> ውስጥ: የ ተለዩ የ ካርታ ፋይሎች ይፈጠራሉ እርስዎ ወደ ሰርቨር የሚጭኑት: እርስዎ መጠየቅ አለብዎት የ እርስዎን ኢንተርኔት አቅራቢ ወይንም የ ኔትዎርክ አስተዳዳሪ ምን አይነት የ ምስል ካርታ በ ሰርቨሩ እንደሚደገፍ እና የ መመርመሪያ ፕሮግራሙ ጋር እንዴት እንደሚደረስ ይጠይቁ"
+msgstr "$[officename] የ ምስል ካርታ ይፈጥራል ለ ሁለቱም መንገዶች: ይምረጡ አቀራረብ ከ <emph> ፋይል አይነት </emph> ዝርዝር ውስጥ በ <emph> ማስቀመጫ እንደ </emph> ንግግር ውስጥ: በ <emph> የ ምስል ካርታ ማረሚያ </emph> ውስጥ: የ ተለዩ የ ካርታ ፋይሎች ይፈጠራሉ እርስዎ ወደ ሰርቨር የሚጭኑት: እርስዎ መጠየቅ አለብዎት የ እርስዎን ኢንተርኔት አቅራቢ ወይንም የ ኔትዎርክ አስተዳዳሪ ምን አይነት የ ምስል ካርታ በ ሰርቨሩ እንደሚደገፍ እና የ መመርመሪያ ፕሮግራሙ ጋር እንዴት እንደሚደረስ ይጠይቁ"
#: 00000002.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr "የ ምስል ካርታ በሚያስቀምጡ ጊዜ: ይምረጡ የ ፋይል አይነት <emph>SIP – መመልከቻ ማስጀመሪያ የ ምስል ካርታ</emph> ይህ የ ምስል ካርታ ያስቀምጣል በ ቀጥታ አቀራረብ መፈጸም የሚቻል በ እያንዳንዱ ንቁ ስእል ወይንም ክፈፍ በ እርስዎ ሰነድ ውስጥ: ነገር ግን: እርስዎ መጠቀም ከ ፈለጉ የ ምስል ካርታ በ አሁኑ ስእል ውስጥ ወይንም የ ጽሁፍ ክፈፍ ውስጥ: እርስዎ ማስቀመጥ የለብዎትም በ ተለየ አቀራረብ ውስጥ: አካባቢውን ከ ገለጹ በኋላ: በ ቀላሉ ይጫኑ <emph>መፈጸሚያ</emph>. ሌላ ምንም አያስፈልግም: የ ደንበኛ በኩል የ ምስል ካርታ ተቀምጧል በ <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> አቀራረብ በ ቀጥታ ይገባል ወደ ገጽ በ HTML ኮድ ውስጥ"
+msgstr "የ ምስል ካርታ በሚያስቀምጡ ጊዜ: ይምረጡ የ ፋይል አይነት <emph> SIP – መመልከቻ ማስጀመሪያ የ ምስል ካርታ </emph> ይህ የ ምስል ካርታ ያስቀምጣል በ ቀጥታ አቀራረብ መፈጸም የሚቻል በ እያንዳንዱ ንቁ ስእል ወይንም ክፈፍ በ እርስዎ ሰነድ ውስጥ: ነገር ግን: እርስዎ መጠቀም ከ ፈለጉ የ ምስል ካርታ በ አሁኑ ስእል ውስጥ ወይንም የ ጽሁፍ ክፈፍ ውስጥ: እርስዎ ማስቀመጥ የለብዎትም በ ተለየ አቀራረብ ውስጥ: አካባቢውን ከ ገለጹ በኋላ: በ ቀላሉ ይጫኑ <emph> መፈጸሚያ </emph> ሌላ ምንም አያስፈልግም: የ ደንበኛ በኩል የ ምስል ካርታ ተቀምጧል በ <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> አቀራረብ በ ቀጥታ ይገባል ወደ ገጽ በ HTML ኮድ ውስጥ"
#: 00000002.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_idN106A2\n"
"help.text"
msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
-msgstr "መግለጽ ይችላሉ ነባር የ መለኪያ ክፍል ለ መጻፊያ ጽሁፍ ሰነዶች በ ንግግር ውስጥ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ባጠቃላይ</emph> ለ ሰንጠረዥ ለ መሳያ እና ለ ማስደነቂያ: የዚያን አይነት ሰነድ ይክፈቱ እና ይክፈቱ ተገቢውን <emph>ባጠቃላይ</emph> ገጽ እንደ መጻፊያ"
+msgstr "መግለጽ ይችላሉ ነባር የ መለኪያ ክፍል ለ መጻፊያ ጽሁፍ ሰነዶች በ ንግግር ውስጥ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ባጠቃላይ </emph> ለ ሰንጠረዥ ለ መሳያ እና ለ ማስደነቂያ: የዚያን አይነት ሰነድ ይክፈቱ እና ይክፈቱ ተገቢውን <emph> ባጠቃላይ </emph> ገጽ እንደ መጻፊያ"
#: 00000003.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_idN106EE\n"
"help.text"
msgid "pi"
-msgstr "pi"
+msgstr "ፓይ"
#: 00000003.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id3149287\n"
"help.text"
msgid "Align Bottom"
-msgstr "ከታች ማሰለፊያ"
+msgstr "ከ ታች ማሰለፊያ"
#: 00000004.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id3150873\n"
"help.text"
msgid "Align Center Vertically"
-msgstr "በቁመት መሀከል ማሰለፊያ"
+msgstr "በ ቁመት መሀከል ማሰለፊያ"
#: 00000004.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"bm_id3146907\n"
"help.text"
msgid "<bookmark_value>CTL;definition</bookmark_value><bookmark_value>complex text layout;definition</bookmark_value><bookmark_value>complex text layout, see CTL</bookmark_value>"
-msgstr "<bookmark_value>CTL;ትርጉም</bookmark_value><bookmark_value>ውስብስብ የ ጽሁፍ እቅድ: ትርጉም</bookmark_value><bookmark_value>ውስብስብ የ ጽሁፍ እቅድ ይህን ይመልከቱ CTL</bookmark_value>"
+msgstr "<bookmark_value>CTL: ትርጉም</bookmark_value><bookmark_value>ውስብስብ የ ጽሁፍ እቅድ: ትርጉም</bookmark_value><bookmark_value>ውስብስብ የ ጽሁፍ እቅድ ይህን ይመልከቱ CTL</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Enable CTL support using <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr "ያስችሉ CTL ድጋፍን በመጠቀም <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫዎች</emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች</emph>."
+msgstr "ያስችሉ CTL ድጋፍን በመጠቀም <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph>"
#: 00000005.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3147287\n"
"help.text"
msgid "You can remove direct formatting from your document by selecting the entire text with the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A and then choosing <emph>Format - Clear Direct Formatting</emph>."
-msgstr "ማስወገድ ይችላሉ በቀጥታ አቀራረብ ከ እርስዎ ሰነዶች ውስጥ በመምረጥ ጠቅላላ ጽሁፉን በ አቋራጭ ቁልፎች <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A እና ከዛ ይምረጡ <emph>አቀራረብ - በቀጥታ አቀራረብ ማጽጃ</emph>."
+msgstr "ማስወገድ ይችላሉ በቀጥታ አቀራረብ ከ እርስዎ ሰነዶች ውስጥ በመምረጥ ጠቅላላ ጽሁፉን በ አቋራጭ ቁልፎች <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A እና ከዛ ይምረጡ <emph> አቀራረብ - በቀጥታ አቀራረብ ማጽጃ </emph>"
#: 00000005.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"par_id3157874\n"
"help.text"
msgid "IME stands for Input Method Editor. A program that allows the user to enter complex characters from non-western character sets using a standard keyboard."
-msgstr "IME ማለት የ ማስገቢያ ዘዴ ማረሚያ ማለት ነው: ይህ ፕሮግራም እርስዎን መጠቀም ያስችሎታል ውስብስብ ባህሪዎችን ለ ማስገባት ምንም-ምእራባዊ ያልሆነ ባህሪ መደበኛ የ ፊደል ገበታ በ መጠቀም"
+msgstr "IME ማለት Input Method Editor ነው: ይህ ፕሮግራም እርስዎን መጠቀም ያስችሎታል ውስብስብ ባህሪዎችን ለ ማስገባት ምንም-ምእራባዊ ያልሆነ ባህሪ መደበኛ የ ፊደል ገበታ በ መጠቀም"
#: 00000005.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"par_id3150323\n"
"help.text"
msgid "A primary key serves as a unique identifier of database fields. The unique identification of database fields is used in <link href=\"text/shared/00/00000005.xhp#relational\">relational databases</link>, to access data in other tables. If reference is made to a primary key from another table, this is termed a foreign key."
-msgstr "ቀዳሚ ቁልፍ የሚያገለግለው እንደ የተለየ መለያ ነው ለ ዳታቤዝ ሜዳዎች: የተለየ መለያ ለ ዳታቤዝ ሜዳዎች የሚጠቅመው በ <link href=\"text/shared/00/00000005.xhp#relational\">ተዛማጅ ዳታቤዝ</link> ነው በ ሌሎች ሰንጠረዥ ውስጥ ዳታ ጋር ለ መድረስ ነው: ማመሳከሪያ ከ ተፈጠረ ወደ ቀዳሚ ቁልፍ ከ ሌላ ሰንጠረዥ ውስጥ: ይህ የሚወሰደው እንደ እንግዳ ቁልፍ ነው"
+msgstr "ቀዳሚ ቁልፍ የሚያገለግለው እንደ የተለየ መለያ ነው ለ ዳታቤዝ ሜዳዎች: የተለየ መለያ ለ ዳታቤዝ ሜዳዎች የሚጠቅመው በ <link href=\"text/shared/00/00000005.xhp#relational\"> ተዛማጅ ዳታቤዝ </link> ነው በ ሌሎች ሰንጠረዥ ውስጥ ዳታ ጋር ለ መድረስ ነው: ማመሳከሪያ ከ ተፈጠረ ወደ ቀዳሚ ቁልፍ ከ ሌላ ሰንጠረዥ ውስጥ: ይህ የሚወሰደው እንደ እንግዳ ቁልፍ ነው"
#: 00000005.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3159239\n"
"help.text"
msgid "An SQL database is a database system which offers an <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> interface. SQL databases are often used in client/server networks in which different clients access a central server (for example, an SQL server), hence they are also called SQL server databases, or SQL servers for short."
-msgstr "የ SQL ዳታቤዝ: የ ዳታቤዝ ስርአት ነው የሚያቀርበውም የ <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> ገጽታ ነው: የ SQL ዳታቤዞች ብዙ ጊዜ የሚጠቅመው ለ ደንበኞች/ሰርቨር ኔትዎርኮች ነው: የ ተለያዩ ደንበኞች ሰርቨሩ ጋር እንዲደርሱ ነው (ለምሳሌ: የ SQL ሰርቨር) ስለዚህ ይባላሉ የ SQL ሰርቨር ዳታቤዞች: ወይንም የ SQL ሰርቨሮች በ አጭሩ"
+msgstr "የ SQL database: የ ዳታቤዝ ስርአት ነው የሚያቀርበውም የ <link href=\"text/shared/00/00000005.xhp#sql\"> SQL </link> ገጽታ ነው: የ SQL ዳታቤዞች ብዙ ጊዜ የሚጠቅመው ለ ደንበኞች/ሰርቨር ኔትዎርኮች ነው: የ ተለያዩ ደንበኞች ሰርቨሩ ጋር እንዲደርሱ ነው (ለምሳሌ: የ SQL ሰርቨር) ስለዚህ ይባላሉ የ SQL ሰርቨር ዳታቤዞች: ወይንም የ SQL ሰርቨሮች በ አጭሩ"
#: 00000005.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3159118\n"
"help.text"
msgid "In $[officename], you can integrate external SQL databases. These may be located on your local hard disk as well as on the network. Access is achieved through <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC, or a native driver integrated into $[officename]."
-msgstr "በ $[officename], ውስጥ እርስዎ ማዋሀድ ይችላሉ የ ውጪ SQL ዳታቤዞች: እነዚህ የሚገኙት በ እርስዎ ሀርድ ዲስክ ውስጥ እንዲሁም ኔትዎርኮች ውስጥ ነው: እዚህ ጋር መድረስ የሚቻለው በ <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC, ወይንም የ native driver ሲዋሀድ ነው ወደ $[officename]."
+msgstr "በ $[officename]: ውስጥ እርስዎ ማዋሀድ ይችላሉ የ ውጪ SQL ዳታቤዞች: እነዚህ የሚገኙት በ እርስዎ ሀርድ ዲስክ ውስጥ እንዲሁም ኔትዎርኮች ውስጥ ነው: እዚህ ጋር መድረስ የሚቻለው በ <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC, ወይንም የ native driver ሲዋሀድ ነው ወደ $[officename]"
#: 00000005.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "These commands can only be accessed after you enable support for Asian languages in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr "ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ በሚያስችሉ ጊዜ ነው የ እስያ ቋንቋ ድጋፍ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች</emph>."
+msgstr "ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ በሚያስችሉ ጊዜ ነው የ እስያ ቋንቋ ድጋፍ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph>"
#: 00000010.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3152414\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">በ UNIX, አንዳንድ የ ፋይል አቀራረብ ራሱ በራሱ ላያውቃቸው ይችላል </caseinline><defaultinline>$[officename] ብዙ ጊዜ ትክክለኛውን የ ፋይል አይነት ራሱ በራሱ ያውቃል ለ መክፈት ፋይሉን </defaultinline></switchinline> እርስዎ የ ፋይል አይነት እርስዎ እንዲመርጡ ይጠየቃሉ በ <emph>መክፈቻ</emph> ንግግር ውስጥ: ለምሳሌ: እርስዎ የ ዳታቤዝ ሰንጠረዥ ካለዎት በ ጽሁፍ አቀራረብ እርስዎ መክፈት የሚፈልጉትን እንደ ዳታቤዝ ሰንጠረዥ: እርስዎ መግለጽ አለብዎት የ ፋይል አይነት \"ጽሁፍ CSV\" ፋይል ከ መረጡ በኋላ"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">በ UNIX, አንዳንድ የ ፋይል አቀራረብ ራሱ በራሱ ላያውቃቸው ይችላል </caseinline><defaultinline>$[officename] ብዙ ጊዜ ትክክለኛውን የ ፋይል አይነት ራሱ በራሱ ያውቃል ለ መክፈት ፋይሉን </defaultinline></switchinline> እርስዎ የ ፋይል አይነት እርስዎ እንዲመርጡ ይጠየቃሉ በ <emph> መክፈቻ </emph> ንግግር ውስጥ: ለምሳሌ: እርስዎ የ ዳታቤዝ ሰንጠረዥ ካለዎት በ ጽሁፍ አቀራረብ እርስዎ መክፈት የሚፈልጉትን እንደ ዳታቤዝ ሰንጠረዥ: እርስዎ መግለጽ አለብዎት የ ፋይል አይነት \"ጽሁፍ CSV\" ፋይል ከ መረጡ በኋላ"
#: 00000020.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"par_id3149578\n"
"help.text"
msgid "When exporting to HTML, the character set selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
-msgstr "ወደ HTML በሚልኩ ጊዜ የ ተመረጠው የ ባህሪዎች ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ</emph> ይጠቀሙ: ባህሪዎች እዛ የሌሉ የ ተጻፈ መቀየሪያ ፎርም አለ: በ ዘመናዊ መቃኛ ውስጥ በ ትክክል እንዲታይ እነዚህን ባህሪዎች በሚልኩ ጊዜ: ለ እርስዎ ተገቢው ማስጠንቀቂያ ይታያል"
+msgstr "ወደ HTML በሚልኩ ጊዜ የ ተመረጠው የ ባህሪዎች ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ </emph> ይጠቀሙ: ባህሪዎች እዛ የሌሉ የ ተጻፈ መቀየሪያ ፎርም አለ: በ ዘመናዊ መቃኛ ውስጥ በ ትክክል እንዲታይ እነዚህን ባህሪዎች በሚልኩ ጊዜ: ለ እርስዎ ተገቢው ማስጠንቀቂያ ይታያል"
#: 00000020.xhp
msgctxt ""
@@ -2958,7 +2958,7 @@ msgctxt ""
"par_id3153896\n"
"help.text"
msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
-msgstr "የ መለኪያ ክፍል ማሰናጃ በ $[officename] የሚጠቅመው ለ HTML መላኪያ ነው ለ CSS1 ባህሪዎች: የ መለኪያ ክፍል ለ የብቻ ማሰናዳት ይቻላል ለ ጽሁፍ እና HTML ሰነዶች በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph>መሳሪያዎች – ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ባጠቃላይ</emph> ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ/ዌብ – መመልከቻ</emph> የሚላከው የ ዴሲማል ቦታ ቁጥር እንደ መለኪያው ይለያያል"
+msgstr "የ መለኪያ ክፍል ማሰናጃ በ $[officename] የሚጠቅመው ለ HTML መላኪያ ነው ለ CSS1 ባህሪዎች: የ መለኪያ ክፍል ለ የብቻ ማሰናዳት ይቻላል ለ ጽሁፍ እና HTML ሰነዶች በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች – ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ባጠቃላይ </emph> ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ/ዌብ – መመልከቻ </emph> የሚላከው የ ዴሲማል ቦታ ቁጥር እንደ መለኪያው ይለያያል"
#: 00000020.xhp
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
-msgstr "የ $[officename] ድህረ ገጽ ማጣሪያ የሚደግፈው አንዳንድ ችሎታዎች ለ CSS2. ነገር ግን ለ መጠቀም የ ማተሚያ እቅድ መላኪያ ማስቻል አለብዎት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ</emph>. ከዛ በ HTML ሰነዶች ውስጥ: ከ HTML የ ገጽ ዘዴ አጠገብ: እርስዎ እንዲሁም መጠቀም ይችላሉ ዘዴዎች \"የ መጀመሪያ ገጽ\": \"የ ግራ ገጽ\" እና \"የ ቀኝ ገጽ\": እርስዎ እነዚህን ዘዴዎች ማስቻል አለብዎት ለማሰናዳት የ ተለያዩ የ ገጾች መጠን እና ኅዳጎች ለ መጀመሪያ ገጽ እና ለ ቀኝ እና ግራ ገጾች በሚያትሙ ጊዜ"
+msgstr "የ $[officename] ድህረ ገጽ ማጣሪያ የሚደግፈው አንዳንድ ችሎታዎች ለ CSS2. ነገር ግን ለ መጠቀም የ ማተሚያ እቅድ መላኪያ ማስቻል አለብዎት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ </emph> ከዛ በ HTML ሰነዶች ውስጥ: ከ HTML የ ገጽ ዘዴ አጠገብ: እርስዎ እንዲሁም መጠቀም ይችላሉ ዘዴዎች \"የ መጀመሪያ ገጽ\": \"የ ግራ ገጽ\" እና \"የ ቀኝ ገጽ\": እርስዎ እነዚህን ዘዴዎች ማስቻል አለብዎት ለማሰናዳት የ ተለያዩ የ ገጾች መጠን እና ኅዳጎች ለ መጀመሪያ ገጽ እና ለ ቀኝ እና ግራ ገጾች በሚያትሙ ጊዜ"
#: 00000020.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"par_id3145591\n"
"help.text"
msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
-msgstr "ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ</emph> የ መላኪያ ምርጫ \"$[officename] መጻፊያ\" ወይንም \"Internet Explorer\" መመረጡን: የ ቁጥር መስጫ ማስረጊያ የሚላከው እንደ \"ኅዳግ-በ ግራ\" CSS1 ባህሪ ዘዴ መለያ ነው በ <OL> እና <UL> tags. ባህሪ የሚያሳየው የ ተለያዩ አንፃራዊ ነው ለ ማስረጊያ በሚቀጥለው ከፍተኛ ደረጃ ውስጥ"
+msgstr "ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ </emph> የ መላኪያ ምርጫ \"$[officename] መጻፊያ\" ወይንም \"Internet Explorer\" መመረጡን: የ ቁጥር መስጫ ማስረጊያ የሚላከው እንደ \"ኅዳግ-በ ግራ\" CSS1 ባህሪ ዘዴ መለያ ነው በ <OL> እና <UL> tags. ባህሪ የሚያሳየው የ ተለያዩ አንፃራዊ ነው ለ ማስረጊያ በሚቀጥለው ከፍተኛ ደረጃ ውስጥ"
#: 00000020.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id0514200811525591\n"
"help.text"
msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
-msgstr "በ አሁኑ እትም ውስጥ: እርስዎ መምረጥ ይችላሉ የ እርስዎን ሰነዶች ለ ማስቀመጥ በ መጠቀም የ ODF 1.2 (ነባር) ወይንም ODF 1.0/1.1 (ወደ ኋላ ለ ቀሩ እንዲስማማ). ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ምርጫዎች - መጫኛ/ማስቀመጫ - ባጠቃላይ </item> እና ይምረጡ የ ODF አቀራረብ እትም ውስጥ"
+msgstr "በ አሁኑ እትም ውስጥ: እርስዎ መምረጥ ይችላሉ የ እርስዎን ሰነዶች ለ ማስቀመጥ በ መጠቀም የ ODF 1.2 (ነባር) ወይንም ODF 1.0/1.1 (ወደ ኋላ ለ ቀሩ እንዲስማማ) ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ምርጫዎች - መጫኛ/ማስቀመጫ - ባጠቃላይ </item> እና ይምረጡ የ ODF አቀራረብ እትም ውስጥ"
#: 00000021.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. The use of indentations and line breaks can be activated in the <link href=\"text/shared/optionen/expertconfig.xhp\">Expert configuration</link> by setting the property <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> to <emph>true</emph>."
-msgstr "በ ነባር <emph>ይዞታ.xml</emph> የሚጠራቀመው ያለ አካሎች አቀራረብ ነው እንደ ማስረጊያ ወይንም የ መስመር መጨረሻ ለማሳነስ የማስቀመጫ ጊዜ እና ለ መክፈቻ ሰነዱን: የ ማስረጊያ እና የ መስመር መጨረሻ መጠቀሚያ ማስጀመር ይቻላል በ <link href=\"text/shared/optionen/expertconfig.xhp\">ባለሞያ ማዋቀሪያ</link> ባህሪዎችን በማሰናዳት <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> ወደ <emph>እውነት</emph>."
+msgstr "በ ነባር <emph> ይዞታ.xml </emph> የሚጠራቀመው ያለ አካሎች አቀራረብ ነው እንደ ማስረጊያ ወይንም የ መስመር መጨረሻ ለማሳነስ የማስቀመጫ ጊዜ እና ለ መክፈቻ ሰነዱን: የ ማስረጊያ እና የ መስመር መጨረሻ መጠቀሚያ ማስጀመር ይቻላል በ <link href=\"text/shared/optionen/expertconfig.xhp\"> ባለሞያ ማዋቀሪያ </link> ባህሪዎችን በማሰናዳት <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> ወደ <emph> እውነት </emph>"
#: 00000021.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id3149767\n"
"help.text"
msgid "If you selected one of the date formats (DMY), (MDY), or (YMD) and you enter numbers without date delimiters, the numbers are interpreted as follows:"
-msgstr "እርስዎ ከ መረጡ አንዱን የ ቀን አቀራረብ (ቀወአ), (ወቀአ), ወይንም (አወቀ) እና እርስዎ ቁጥሮች ካስገቡ ያለ ቀን ምልክት: ቁጥሮቹ የሚተረጎሙት እንደሚከተለው ነው"
+msgstr "እርስዎ ከ መረጡ አንዱን የ ቀን አቀራረብ (ቀወአ), (ወቀአ): ወይንም (አወቀ) እና እርስዎ ቁጥሮች ካስገቡ ያለ ቀን ምልክት: ቁጥሮቹ የሚተረጎሙት እንደሚከተለው ነው"
#: 00000208.xhp
msgctxt ""
@@ -5022,7 +5022,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "For more information, see <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
-msgstr "ለ በለጠ መረጃ ይህን ይመልከቱ <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">መረጃ ስለ ማጣሪያዎች ማምጫ እና መላኪያ</link>."
+msgstr "ለ በለጠ መረጃ ይህን ይመልከቱ <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\"> መረጃ ስለ ማጣሪያዎች ማምጫ እና መላኪያ </link>"
#: 00000215.xhp
msgctxt ""
@@ -5198,7 +5198,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
-msgstr "<variable id=\"webhtml\">ይምረጡ <emph>ፋይል - ቅድመ እይታ በዌብ መቃኛ</emph></variable>"
+msgstr "<variable id=\"webhtml\">ይምረጡ <emph> ፋይል - ቅድመ እይታ በዌብ መቃኛ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5206,7 +5206,7 @@ msgctxt ""
"par_id3154812\n"
"help.text"
msgid "Choose <emph>File - New</emph>"
-msgstr "ይምረጡ <emph>ፋይል - አዲስ</emph>"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_id3149798\n"
"help.text"
msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
-msgstr "<variable id=\"etiketten\">ይምረጡ <emph>ፋይል - አዲስ - ምልክቶች</emph></variable>"
+msgstr "<variable id=\"etiketten\">ይምረጡ <emph> ፋይል - አዲስ - ምልክቶች </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
-msgstr "<variable id=\"etikettenein\">ይምረጡ <emph>ፋይል - አዲስ - ምልክቶች - አቀራረብ</emph> tab</variable>"
+msgstr "<variable id=\"etikettenein\">ይምረጡ <emph> ፋይል - አዲስ - ምልክቶች - አቀራረብ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3154522\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Format</emph> tab"
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ምልክቶች - አቀራረብ</emph> tab"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ምልክቶች - አቀራረብ </emph> tab"
#: 00000401.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"par_id3154983\n"
"help.text"
msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች - አቀራረብ</emph> tab"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች - አቀራረብ </emph> tab"
#: 00000401.xhp
msgctxt ""
@@ -5294,7 +5294,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Options</emph> tab"
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ምልክቶች - ምርጫዎች</emph> tab"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ምልክቶች - ምርጫዎች </emph> tab"
#: 00000401.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች - ምርጫዎች</emph> tab"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች - ምርጫዎች </emph> tab"
#: 00000401.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3152780\n"
"help.text"
msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
-msgstr "<variable id=\"visikart\">ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች</emph></variable>"
+msgstr "<variable id=\"visikart\">ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5318,7 +5318,7 @@ msgctxt ""
"par_id3156346\n"
"help.text"
msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
-msgstr "<variable id=\"visikartform\">ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች - መሀከለኛ</emph> tab</variable>"
+msgstr "<variable id=\"visikartform\">ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች - መሀከለኛ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5326,7 +5326,7 @@ msgctxt ""
"par_id3152824\n"
"help.text"
msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
-msgstr "<variable id=\"viskartinhalt\">ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች - የ ንግድ ካርዶች</emph> tab</variable>"
+msgstr "<variable id=\"viskartinhalt\">ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች - የ ንግድ ካርዶች </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5334,7 +5334,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
-msgstr "<variable id=\"viskartpriv\">ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች - የ ግል</emph> tab</variable>"
+msgstr "<variable id=\"viskartpriv\">ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች - የ ግል </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
-msgstr "<variable id=\"viskartgesch\">ይምረጡ <emph>ፋይል - አዲስ - የ ንግድ ካርዶች - የ ንግድ</emph> tab</variable>"
+msgstr "<variable id=\"viskartgesch\">ይምረጡ <emph> ፋይል - አዲስ - የ ንግድ ካርዶች - የ ንግድ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5350,7 +5350,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "Choose <emph>File - Open</emph>"
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph>"
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
-msgstr "<variable id=\"autobrief\">ይምረጡ <emph>ፋይል - አዋቂ</emph></variable>"
+msgstr "<variable id=\"autobrief\">ይምረጡ <emph> ፋይል - አዋቂ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5414,7 +5414,7 @@ msgctxt ""
"par_id3149245\n"
"help.text"
msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
-msgstr "<variable id=\"autopilotbrief\">ይምረጡ <emph>ፋይል - አዋቂ - ደብዳቤ</emph></variable>"
+msgstr "<variable id=\"autopilotbrief\">ይምረጡ <emph> ፋይል - አዋቂ - ደብዳቤ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
-msgstr "<variable id=\"autopilotbrief1\">ይምረጡ <emph>ፋይል - አዋቂ - ደብዳቤ - የ ገጽ ንድፍ</emph></variable>"
+msgstr "<variable id=\"autopilotbrief1\">ይምረጡ <emph> ፋይል - አዋቂ - ደብዳቤ - የ ገጽ ንድፍ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5430,7 +5430,7 @@ msgctxt ""
"par_id3152360\n"
"help.text"
msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
-msgstr "<variable id=\"autopilotbrief2\">ይምረጡ <emph>ፋይል - አዋቂ - ደብዳቤ - የ ደብዳቤ ራስጌ እቅድ</emph></variable>"
+msgstr "<variable id=\"autopilotbrief2\">ይምረጡ <emph> ፋይል - አዋቂ - ደብዳቤ - የ ደብዳቤ ራስጌ እቅድ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5446,7 +5446,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
-msgstr "<variable id=\"autopilotbrief4\">ይምረጡ <emph>ፋይል - አዋቂ - ደብዳቤ - ተቀባይ እና ላኪ</emph></variable>"
+msgstr "<variable id=\"autopilotbrief4\">ይምረጡ <emph> ፋይል - አዋቂ - ደብዳቤ - ተቀባይ እና ላኪ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5454,7 +5454,7 @@ msgctxt ""
"par_id3153524\n"
"help.text"
msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
-msgstr "<variable id=\"autopilotbrief5\">ይምረጡ <emph>ፋይል - አዋቂ - ደብዳቤ - ግርጌ</emph></variable>"
+msgstr "<variable id=\"autopilotbrief5\">ይምረጡ <emph> ፋይል - አዋቂ - ደብዳቤ - ግርጌ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5462,7 +5462,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
-msgstr "<variable id=\"autopilotbrief6\">ይምረጡ <emph>ፋይል - አዋቂ - ደብዳቤ - </emph><emph>ስም እና አካባቢ</emph></variable>"
+msgstr "<variable id=\"autopilotbrief6\">ይምረጡ <emph> ፋይል - አዋቂ - ደብዳቤ - </emph><emph> ስም እና አካባቢ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
-msgstr "<variable id=\"autopilotfax\">ይምረጡ <emph>ፋይል - አዋቂ - ፋክስ</emph></variable>"
+msgstr "<variable id=\"autopilotfax\">ይምረጡ <emph> ፋይል - አዋቂ - ፋክስ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3147085\n"
"help.text"
msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
-msgstr "<variable id=\"autopilotfax1\">ይምረጡ <emph>ፋይል - አዋቂ - የ ፋክስ - ገጽ ንድፍ</emph></variable>"
+msgstr "<variable id=\"autopilotfax1\">ይምረጡ <emph> ፋይል - አዋቂ - የ ፋክስ - ገጽ ንድፍ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5486,7 +5486,7 @@ msgctxt ""
"par_id3151042\n"
"help.text"
msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
-msgstr "<variable id=\"autopilotfax2\">ይምረጡ <emph>ፋይል - አዋቂ - ፋክስ - የሚካተቱ እቃዎች</emph></variable>"
+msgstr "<variable id=\"autopilotfax2\">ይምረጡ <emph> ፋይል - አዋቂ - ፋክስ - የሚካተቱ እቃዎች </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5494,7 +5494,7 @@ msgctxt ""
"par_id3154330\n"
"help.text"
msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
-msgstr "<variable id=\"autopilotfax3\">ይምረጡ <emph>ፋይል - አዋቂ - ፋክስ - ላኪው እና ተቀባይ</emph></variable>"
+msgstr "<variable id=\"autopilotfax3\">ይምረጡ <emph> ፋይል - አዋቂ - ፋክስ - ላኪው እና ተቀባይ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5502,7 +5502,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
-msgstr "<variable id=\"autopilotfax4\">ይምረጡ <emph>ፋይል - አዋቂ - ፋክስ - ግርጌ</emph></variable>"
+msgstr "<variable id=\"autopilotfax4\">ይምረጡ <emph> ፋይል - አዋቂ - ፋክስ - ግርጌ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
-msgstr "<variable id=\"autopilotfax5\">ይምረጡ <emph>ፋይል - አዋቂ - ፋክስ - ሰም እና አካባቢ</emph></variable>"
+msgstr "<variable id=\"autopilotfax5\">ይምረጡ <emph> ፋይል - አዋቂ - ፋክስ - ሰም እና አካባቢ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5518,7 +5518,7 @@ msgctxt ""
"par_id3153190\n"
"help.text"
msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
-msgstr "<variable id=\"autopilotagenda\">ይምረጡ <emph>ፋይል - አዋቂ - አጄንዳ</emph></variable>"
+msgstr "<variable id=\"autopilotagenda\">ይምረጡ <emph> ፋይል - አዋቂ - አጄንዳ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5526,7 +5526,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
-msgstr "<variable id=\"autopilotagenda1\">ይምረጡ <emph>ፋይል - አዋቂ - አጄንዳ - የ ገጽ ንድፍ</emph></variable>"
+msgstr "<variable id=\"autopilotagenda1\">ይምረጡ <emph> ፋይል - አዋቂ - አጄንዳ - የ ገጽ ንድፍ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5534,7 +5534,7 @@ msgctxt ""
"par_id3146906\n"
"help.text"
msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
-msgstr "<variable id=\"autopilotagenda2\">ይምረጡ <emph>ፋይል - አዋቂ - አጄንዳ - ባጠቃላይ ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"autopilotagenda2\">ይምረጡ <emph> ፋይል - አዋቂ - አጄንዳ - ባጠቃላይ ባህሪዎች </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
-msgstr "<variable id=\"autopilotagenda3\">ይምረጡ <emph>ፋይል - አዋቂ - አጄንዳ - ራስጌ</emph></variable>"
+msgstr "<variable id=\"autopilotagenda3\">ይምረጡ <emph> ፋይል - አዋቂ - አጄንዳ - ራስጌ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5550,7 +5550,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
-msgstr "<variable id=\"autopilotagenda4\">ይምረጡ <emph>ፋይል - አዋቂ - አጄንዳ - ስም</emph></variable>"
+msgstr "<variable id=\"autopilotagenda4\">ይምረጡ <emph> ፋይል - አዋቂ - አጄንዳ - ስም </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5558,7 +5558,7 @@ msgctxt ""
"par_id3146923\n"
"help.text"
msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
-msgstr "<variable id=\"autopilotagenda5\">ይምረጡ <emph>ፋይል - አዋቂ - አጄእንዳ - አርእስት</emph></variable>"
+msgstr "<variable id=\"autopilotagenda5\">ይምረጡ <emph> ፋይል - አዋቂ - አጄእንዳ - አርእስት </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5566,7 +5566,7 @@ msgctxt ""
"par_id3149066\n"
"help.text"
msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
-msgstr "<variable id=\"autopilotagenda6\">ይምረጡ <emph>ፋይል - አዋቂ - አጄንዳ - አርእስት እና አካባቢ</emph></variable>"
+msgstr "<variable id=\"autopilotagenda6\">ይምረጡ <emph> ፋይል - አዋቂ - አጄንዳ - አርእስት እና አካባቢ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5574,7 +5574,7 @@ msgctxt ""
"par_id3149288\n"
"help.text"
msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
-msgstr "<variable id=\"dtapt\">ይምረጡ <emph>ፋይል - አዋቂ - ማቅረቢያ</emph></variable>"
+msgstr "<variable id=\"dtapt\">ይምረጡ <emph> ፋይል - አዋቂ - ማቅረቢያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5582,7 +5582,7 @@ msgctxt ""
"par_id3146986\n"
"help.text"
msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
-msgstr "<variable id=\"dtapse\">ይምረጡ <emph>ፋይል - አዋቂ - ማቅረቢያ - ገጽ 1</emph></variable>"
+msgstr "<variable id=\"dtapse\">ይምረጡ <emph> ፋይል - አዋቂ - ማቅረቢያ - ገጽ 1 </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"par_id3154919\n"
"help.text"
msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
-msgstr "<variable id=\"dtapsz\">ይምረጡ <emph>ፋይል - አዋቂ - ማቅረቢያ - ገጽ 2</emph></variable>"
+msgstr "<variable id=\"dtapsz\">ይምረጡ <emph> ፋይል - አዋቂ - ማቅረቢያ - ገጽ 2 </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5598,7 +5598,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
-msgstr "<variable id=\"dtapsd\">ይምረጡ <emph>ፋይል - አዋቂ - ማቅረቢያ - ገጽ 3</emph></variable>"
+msgstr "<variable id=\"dtapsd\">ይምረጡ <emph> ፋይል - አዋቂ - ማቅረቢያ - ገጽ 3 </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5606,7 +5606,7 @@ msgctxt ""
"par_id3147317\n"
"help.text"
msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
-msgstr "<variable id=\"dtapsv\">ይምረጡ <emph>ፋይል - አዋቂ - ማቅረቢያ - ገጽ 4</emph></variable>"
+msgstr "<variable id=\"dtapsv\">ይምረጡ <emph> ፋይል - አዋቂ - ማቅረቢያ - ገጽ 4 </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5614,7 +5614,7 @@ msgctxt ""
"par_id3145592\n"
"help.text"
msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
-msgstr "<variable id=\"dtapsf\">ይምረጡ <emph>ፋይል - አዋቂ - ማቅረቢያ - ገጽ 5</emph></variable>"
+msgstr "<variable id=\"dtapsf\">ይምረጡ <emph> ፋይል - አዋቂ - ማቅረቢያ - ገጽ 5 </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5622,7 +5622,7 @@ msgctxt ""
"par_idN10C46\n"
"help.text"
msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
-msgstr "<variable id=\"autopilotformular\">ይጫኑ <emph>አዋቂውን በመጠቀም ፎርም ለመፍጠር</emph> ከ ዳታቤዝ ፋይል መስኮት ውስጥ </variable>"
+msgstr "<variable id=\"autopilotformular\">ይጫኑ <emph> አዋቂውን በ መጠቀም ፎርም ለመፍጠር </emph> ከ ዳታቤዝ ፋይል መስኮት ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"par_idN10C5F\n"
"help.text"
msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
-msgstr "<variable id=\"autopilotreport\">ይጫኑ <emph>አዋቂውን በመጠቀም መግለጫ ለመፍጠር</emph> ከ ዳታቤዝ ፋይል መስኮት ውስጥ</variable>"
+msgstr "<variable id=\"autopilotreport\">ይጫኑ <emph> አዋቂውን በ መጠቀም መግለጫ ለመፍጠር </emph> ከ ዳታቤዝ ፋይል መስኮት ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_id3154064\n"
"help.text"
msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
-msgstr "<variable id=\"gruppen\">በ ፎርም ንድፍ ውስጥ, ይጫኑ የ <emph>ቡድን ሳጥን</emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለመፍጠር ክፈፍ </variable>"
+msgstr "<variable id=\"gruppen\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph> ቡድን ሳጥን </emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5654,7 +5654,7 @@ msgctxt ""
"par_id3150571\n"
"help.text"
msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
-msgstr "<variable id=\"gruppen2\">በ ፎርም ንድፍ ውስጥ ይጫኑ የ <emph>ቡድን ሳጥን</emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - አዋቂ ገጽ 2</variable>"
+msgstr "<variable id=\"gruppen2\">በ ፎርም ንድፍ ውስጥ ይጫኑ የ <emph> ቡድን ሳጥን </emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - አዋቂ ገጽ 2</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5662,7 +5662,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
-msgstr "<variable id=\"gruppen3\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph>ቡድን ሳጥን</emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - አዋቂ ገጽ 3</variable>"
+msgstr "<variable id=\"gruppen3\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph> ቡድን ሳጥን </emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - አዋቂ ገጽ 3</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5670,7 +5670,7 @@ msgctxt ""
"par_id3156109\n"
"help.text"
msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
-msgstr "<variable id=\"gruppen4\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph>ቡድን ሳጥን</emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - አዋቂ ገጽ 4</variable>"
+msgstr "<variable id=\"gruppen4\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph> ቡድን ሳጥን </emph> ምልክት ላይ በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - አዋቂ ገጽ 4 </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id3159347\n"
"help.text"
msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
-msgstr "<variable id=\"gruppen5\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph>ቡድን ሳጥን</emph> ምልክት በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - መጨረሻ አዋቂ ገጽ </variable>"
+msgstr "<variable id=\"gruppen5\">በ ፎርም ንድፍ ውስጥ: ይጫኑ የ <emph> ቡድን ሳጥን </emph> ምልክት በ እቃ መደርደሪያ ላይ እና ከዛ ይጠቀሙ አይጥ ለ መፍጠር ክፈፍ - መጨረሻ አዋቂ ገጽ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id3153417\n"
"help.text"
msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport\">ይምረጡ <emph>ፋይል - አዋቂ - ሰነድ መቀየሪያ</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport\">ይምረጡ <emph> ፋይል - አዋቂ - ሰነድ መቀየሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport1\">ይምረጡ <emph>ፋይል - አዋቂ - ሰነድ መቀየሪያ</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport1\">ይምረጡ <emph> ፋይል - አዋቂ - ሰነድ መቀየሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_id3154274\n"
"help.text"
msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "<variable id=\"autopilotmsimport2\">ይምረጡ <emph>ፋይል - አዋቂ - ሰነድ መቀየሪያ</emph></variable>"
+msgstr "<variable id=\"autopilotmsimport2\">ይምረጡ <emph> ፋይል - አዋቂ - ሰነድ መቀየሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3146912\n"
"help.text"
msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
-msgstr "<variable id=\"euro\">ይምረጡ <emph>ፋይል - አዋቂ - ኢዩሮ መቀየሪያ</emph></variable>"
+msgstr "<variable id=\"euro\">ይምረጡ <emph> ፋይል - አዋቂ - ኢዩሮ መቀየሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_id3152962\n"
"help.text"
msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
-msgstr "ዝርዝር <emph>ፋይል - አዋቂ - የ አድራሻ ዳታ ምንጭ</emph>"
+msgstr "ዝርዝር <emph> ፋይል - አዋቂ - የ አድራሻ ዳታ ምንጭ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
-msgstr "<variable id=\"schliessen\">ይምረጡ <emph>ፋይል - መዝጊያ</emph></variable>"
+msgstr "<variable id=\"schliessen\">ይምረጡ <emph> ፋይል - መዝጊያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5766,7 +5766,7 @@ msgctxt ""
"par_id3156717\n"
"help.text"
msgid "Choose <emph>File - Save</emph>"
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ</emph>"
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5822,7 +5822,7 @@ msgctxt ""
"par_id3150300\n"
"help.text"
msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
-msgstr "<variable id=\"htmlspeichern\">$[officename] መሳያ ወይንም $[officename] ማስደነቂያ ዝርዝር ውስጥ <emph>ፋይል - መላኪያ</emph> ይምረጡ \"HTML Document\" የ ፋይል አይነት: ይህ ንግግር ራሱ በራሱ ይከፈታል</variable>"
+msgstr "<variable id=\"htmlspeichern\">$[officename] መሳያ ወይንም $[officename] ማስደነቂያ ዝርዝር ውስጥ <emph> ፋይል - መላኪያ </emph> ይምረጡ \"HTML Document\" የ ፋይል አይነት: ይህ ንግግር ራሱ በራሱ ይከፈታል </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_id3153387\n"
"help.text"
msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern1\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ<emph> ፋይል - መላኪያ</emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 1 ከ አዋቂው ውስጥ</variable>"
+msgstr "<variable id=\"htmlspeichern1\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ <emph> ፋይል - መላኪያ </emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 1 ከ አዋቂው ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"par_id3154021\n"
"help.text"
msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern2\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ<emph> ፋይል - መላኪያ</emph>ይምረጡ የ HTML ፋይል አይነት ገጽ 2 ከ አዋቂው ውስጥ </variable>"
+msgstr "<variable id=\"htmlspeichern2\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ <emph> ፋይል - መላኪያ </emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 2 ከ አዋቂው ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5846,7 +5846,7 @@ msgctxt ""
"par_id3147246\n"
"help.text"
msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern3\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ<emph> ፋይል - መላኪያ</emph>ይምረጡ የ HTML ፋይል አይነት ገጽ 3 ከ አዋቂው ውስጥ</variable>"
+msgstr "<variable id=\"htmlspeichern3\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ <emph> ፋይል - መላኪያ </emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 3 ከ አዋቂው ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"par_id3145131\n"
"help.text"
msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern4\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ<emph> ፋይል - መላኪያ</emph>ይምረጡ የ HTML ፋይል አይነት ገጽ 4 ከ አዋቂው ውስጥ</variable>"
+msgstr "<variable id=\"htmlspeichern4\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ <emph> ፋይል - መላኪያ </emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 4 ከ አዋቂው ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5862,7 +5862,7 @@ msgctxt ""
"par_id3150235\n"
"help.text"
msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern5\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር<emph> ፋይል - መላኪያ</emph>, ይምረጡ የ HTML ፋይል አይነት, ገጽ 5 ከ አዋቂው ውስጥ</variable>"
+msgstr "<variable id=\"htmlspeichern5\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር <emph> ፋይል - መላኪያ </emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 5 ከ አዋቂው ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"par_id3145762\n"
"help.text"
msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
-msgstr "<variable id=\"htmlspeichern6\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ<emph> ፋይል - መላኪያ</emph>ይምረጡ የ HTML ፋይል አይነት ገጽ 6 ከ አዋቂው ውስጥ</variable>"
+msgstr "<variable id=\"htmlspeichern6\">$[officename] መሳያ/$[officename] ማስደነቂያ ዝርዝር ውስጥ <emph> ፋይል - መላኪያ </emph> ይምረጡ የ HTML ፋይል አይነት ገጽ 6 ከ አዋቂው ውስጥ </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5878,7 +5878,7 @@ msgctxt ""
"par_id3149735\n"
"help.text"
msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
-msgstr "<variable id=\"exportgraphic\">ይምረጡ <emph>ፋይል - መላኪያ</emph>ይምረጡ የ ንድፍ ፋይል አይነት ንግግሩ ራሱ በራሱ ይከፈታል</variable>"
+msgstr "<variable id=\"exportgraphic\">ይምረጡ <emph> ፋይል - መላኪያ </emph> ይምረጡ የ ንድፍ ፋይል አይነት ንግግሩ ራሱ በራሱ ይከፈታል </variable>"
#: 00000401.xhp
msgctxt ""
@@ -5886,7 +5886,7 @@ msgctxt ""
"par_id3154901\n"
"help.text"
msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
-msgstr "<variable id=\"saveall\">ይምረጡ <emph>ፋይል - ሁሉንም ማስቀመጫ</emph></variable>"
+msgstr "<variable id=\"saveall\">ይምረጡ <emph> ፋይል - ሁሉንም ማስቀመጫ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_id3152479\n"
"help.text"
msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
-msgstr "<variable id=\"saveas\">ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph></variable>"
+msgstr "<variable id=\"saveas\">ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"par_id3148392\n"
"help.text"
msgid "Choose <emph>File - Reload</emph>"
-msgstr "ይምረጡ <emph>ፋይል - እንደገና መጫኛ</emph>"
+msgstr "ይምረጡ <emph> ፋይል - እንደገና መጫኛ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_id3166425\n"
"help.text"
msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
-msgstr "<variable id=\"info1\">ይምረጡ <emph>ፋይል - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"info1\">ይምረጡ <emph> ፋይል - ባህሪዎች </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"par_id3150381\n"
"help.text"
msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
-msgstr "<variable id=\"info2\">ይምረጡ <emph>ፋይል - ባህሪዎች - ባጠቃላይ</emph> tab</variable>"
+msgstr "<variable id=\"info2\">ይምረጡ <emph> ፋይል - ባህሪዎች - ባጠቃላይ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_idN11163\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Digital Signatures</emph>"
-msgstr "ይምረጡ <emph>ፋይል - ዲጂታል ፊርማ - ዲጂታል ፊርማ </emph>"
+msgstr "ይምረጡ <emph> ፋይል - ዲጂታል ፊርማ - ዲጂታል ፊርማ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"par_idN11168\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
-msgstr "ይምረጡ <emph>እቃዎች - Macros - የ ዲጂታል ፊርማዎች</emph>"
+msgstr "ይምረጡ <emph> እቃዎች - ማክሮስ - የ ዲጂታል ፊርማዎች </emph>"
#: 00000401.xhp
msgctxt ""
@@ -5942,7 +5942,7 @@ msgctxt ""
"par_idN11156\n"
"help.text"
msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
-msgstr "ይምረጡ <emph>ፋይል - ባህሪዎች - ባጠቃላይ</emph> tab, ይጫኑ <emph>የ ዲጂታል ፊርማዎች</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> ፋይል - ባህሪዎች - ባጠቃላይ </emph> tab, ይጫኑ <emph> የ ዲጂታል ፊርማዎች </emph> ቁልፍ"
#: 00000401.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"par_id3150662\n"
"help.text"
msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
-msgstr "<variable id=\"info3\">ይምረጡ <emph>ፋይል - ባህሪዎች - መግለጫ</emph> tab</variable>"
+msgstr "<variable id=\"info3\">ይምረጡ <emph> ፋይል - ባህሪዎች - መግለጫ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3153792\n"
"help.text"
msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
-msgstr "<variable id=\"info4\">ይምረጡ <emph>ፋይል - ባህሪዎች - ባህሪዎች ማስተካከያ</emph> tab</variable>"
+msgstr "<variable id=\"info4\">ይምረጡ <emph> ፋይል - ባህሪዎች - ባህሪዎች ማስተካከያ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"par_id3153701\n"
"help.text"
msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
-msgstr "<variable id=\"info5\">ይምረጡ <emph>ፋይል - ባህሪዎች - ስታስቲክስ </emph> tab</variable>"
+msgstr "<variable id=\"info5\">ይምረጡ <emph> ፋይል - ባህሪዎች - ስታስቲክስ </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id315370199\n"
"help.text"
msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
-msgstr "<variable id=\"infosec\">ይምረጡ <emph>ፋይል - ባህሪዎች - ደህንነት</emph> tab</variable>"
+msgstr "<variable id=\"infosec\">ይምረጡ <emph> ፋይል - ባህሪዎች - ደህንነት </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5998,7 +5998,7 @@ msgctxt ""
"par_id3149570\n"
"help.text"
msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
-msgstr "<variable id=\"info6\">ይምረጡ <emph>ፋይል - ባህሪዎች - ኢንተርኔት</emph> tab</variable>"
+msgstr "<variable id=\"info6\">ይምረጡ <emph> ፋይል - ባህሪዎች - ኢንተርኔት </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3150382\n"
"help.text"
msgid "<variable id=\"info7\">Choose <emph>File - Properties - Font</emph> tab</variable>"
-msgstr "<variable id=\"info7\">ይምረጡ <emph>ፋይል - ባህሪዎች - ፊደል</emph> tab</variable>"
+msgstr "<variable id=\"info7\">ይምረጡ <emph> ፋይል - ባህሪዎች - ፊደል </emph> tab</variable>"
#: 00000401.xhp
msgctxt ""
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "Choose <emph>File - Send - E-mail Document</emph>"
-msgstr "ይምረጡ <emph>ፋይል - መላኪያ - ኢ-ሜይል ሰነድ</emph>"
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ - ኢ-ሜይል ሰነድ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3145269\n"
"help.text"
msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
-msgstr "<variable id=\"export\">ይምረጡ <emph>ፋይል - መላኪያ</emph></variable>"
+msgstr "<variable id=\"export\">ይምረጡ <emph> ፋይል - መላኪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export as PDF</emph>"
-msgstr "ይምረጡ <emph>ፋይል - መልኪያ እንደ PDF</emph>"
+msgstr "ይምረጡ <emph> ፋይል - መልኪያ እንደ PDF </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"par_id3145410\n"
"help.text"
msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
-msgstr "ይምረጡ <emph>ፋይል - መላኪያ - ኢ-ሜይል እንደ PDF</emph>"
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ - ኢ-ሜይል እንደ PDF </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6118,7 +6118,7 @@ msgctxt ""
"par_id3159160\n"
"help.text"
msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
-msgstr "<variable id=\"glo\">ይምረጡ <emph>ፋይል - መላኪያ - ዋና ሰንድ መፍጠሪያ</emph></variable>"
+msgstr "<variable id=\"glo\">ይምረጡ <emph> ፋይል - መላኪያ - ዋና ሰነድ መፍጠሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"par_id3155869\n"
"help.text"
msgid "Choose <emph>File - Exit</emph>"
-msgstr "ይምረጡ <emph>ፋይል - መውጫ</emph>"
+msgstr "ይምረጡ <emph> ፋይል - መውጫ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_id3149328\n"
"help.text"
msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
-msgstr "<variable id=\"neuglobal\">ይምረጡ <emph>ፋይል - አዲስ - ዋናውን ሰነድ</emph></variable>"
+msgstr "<variable id=\"neuglobal\">ይምረጡ <emph> ፋይል - አዲስ - ዋናውን ሰነድ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph> - ይምረጡ ከ \"ፋይል አይነት\": \"ጽሁፍ CSV\""
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph> - ይምረጡ ከ \"ፋይል አይነት\": \"ጽሁፍ CSV\""
#: 00000401.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_id3148608\n"
"help.text"
msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
-msgstr "<variable id=\"epsexport\">ይምረጡ <emph>ፋይል - መላኪያ</emph>, if EPS ከተመረጠ እንደ ፋይል አይነት ይህ ንግግር ራሱ በራሱ ይከፈታል</variable>"
+msgstr "<variable id=\"epsexport\">ይምረጡ <emph> ፋይል - መላኪያ </emph> ይህ EPS ከተመረጠ እንደ ፋይል አይነት ይህ ንግግር ራሱ በራሱ ይከፈታል </variable>"
#: 00000401.xhp
msgctxt ""
@@ -6238,7 +6238,7 @@ msgctxt ""
"par_id3150107\n"
"help.text"
msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
-msgstr "<variable id=\"pbmppmpgm\">ይምረጡ <emph>ፋይል - መላኪያ</emph>, if PBM, PPM ወንም PGM ከተመረጠ እንደ ፋይል አይነት ይህ ንግግር ራሱ በራሱ ይከፈታል</variable>"
+msgstr "<variable id=\"pbmppmpgm\">ይምረጡ <emph> ፋይል - መላኪያ </emph>ይህ PBM, PPM ወንም PGM ከተመረጠ እንደ ፋይል አይነት ይህ ንግግር ራሱ በራሱ ይከፈታል </variable>"
#: 00000401.xhp
msgctxt ""
@@ -6246,7 +6246,7 @@ msgctxt ""
"par_id3145305\n"
"help.text"
msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
-msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">ይምረጡ <emph>ፋይል - እትም</emph></variable></variable>"
+msgstr "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">ይምረጡ <emph> ፋይል - እትም </emph></variable></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6310,7 +6310,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Choose <emph>Edit - Redo</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - እንደገና መስሪያ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - እንደገና መስሪያ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6342,7 +6342,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
-msgstr "<variable id=\"letzter\">ይምረጡ <emph>ማረሚያ - መድገሚያ</emph></variable>"
+msgstr "<variable id=\"letzter\">ይምረጡ <emph> ማረሚያ - መድገሚያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6350,7 +6350,7 @@ msgctxt ""
"par_id3149765\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - መቁረጫ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - መቁረጫ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ኮፒ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ኮፒ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6430,7 +6430,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - መለጠፊያ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - መለጠፊያ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6470,7 +6470,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
-msgstr "<variable id=\"inhalte\">ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ</emph></variable>"
+msgstr "<variable id=\"inhalte\">ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6478,7 +6478,7 @@ msgctxt ""
"par_id3148555\n"
"help.text"
msgid "Choose <emph>Edit - Select All</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ሁሉንም መምረጫ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ሁሉንም መምረጫ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6510,7 +6510,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph></variable>"
-msgstr "<variable id=\"aenderungen\">ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ</emph></variable>"
+msgstr "<variable id=\"aenderungen\">ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6526,7 +6526,7 @@ msgctxt ""
"par_id3150594\n"
"help.text"
msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show Changes</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show Changes</emph></caseinline></switchinline></variable>"
-msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማሳያ</emph></caseinline><caseinline select=\"CALC\">ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማሳያ</emph></caseinline></switchinline></variable>"
+msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማሳያ </emph></caseinline><caseinline select=\"CALC\"> ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማሳያ </emph></caseinline></switchinline></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6534,7 +6534,7 @@ msgctxt ""
"par_id3153845\n"
"help.text"
msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage Changes</emph></variable>"
-msgstr "<variable id=\"rotlinie\">ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ </emph></variable>"
+msgstr "<variable id=\"rotlinie\">ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"par_id3148587\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage Changes - List</emph> tab"
-msgstr "ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ - ዝርዝር</emph> tab"
+msgstr "ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ - ዝርዝር </emph> tab"
#: 00000402.xhp
msgctxt ""
@@ -6550,7 +6550,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
-msgstr "ይምረጡ <emph>አቀራረብ - በራሱ አራሚ - መፈጸሚያ እና ማረሚያ ለውጦችን </emph> በራሱ አራሚ ንግግር ይታያል: ይጫኑ <emph>ማረሚያ ለውጦችን</emph> ቁልፍ ይመልከቱ ከ <emph>ዝርዝር</emph> tab ገጽ ውስጥ"
+msgstr "ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - መፈጸሚያ እና ማረሚያ ለውጦችን </emph> በራሱ አራሚ ንግግር ይታያል: ይጫኑ <emph> ማረሚያ ለውጦችን </emph> ቁልፍ ይመልከቱ ከ <emph> ዝርዝር </emph> tab ገጽ ውስጥ"
#: 00000402.xhp
msgctxt ""
@@ -6558,7 +6558,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage Changes - Filter</emph> tab </variable>"
-msgstr "<variable id=\"rotliniefilter\">ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ - ማጣሪያ</emph> tab </variable>"
+msgstr "<variable id=\"rotliniefilter\">ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ - ማጣሪያ </emph> tab </variable>"
#: 00000402.xhp
msgctxt ""
@@ -6566,7 +6566,7 @@ msgctxt ""
"par_id3151281\n"
"help.text"
msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph></variable>"
-msgstr "<variable id=\"einfuegen\">ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ሰነድ ማዋሀጃ</emph></variable>"
+msgstr "<variable id=\"einfuegen\">ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ሰነድ ማዋሀጃ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6574,7 +6574,7 @@ msgctxt ""
"par_id3153224\n"
"help.text"
msgid "<variable id=\"dvergl\">Choose <emph>Edit - Track Changes - Compare Document</emph></variable>"
-msgstr "<variable id=\"dvergl\"> ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ሰነድ ማወዳደሪያ</emph></variable>"
+msgstr "<variable id=\"dvergl\"> ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ሰነድ ማወዳደሪያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6582,7 +6582,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Comment on Change</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - አስተያየት በ ለውጦች ላይ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - አስተያየት በ ለውጦች ላይ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6590,7 +6590,7 @@ msgctxt ""
"par_id3149488\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage Changes - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ - ዝርዝር </emph> tab. ይጫኑ ከ ማስገቢያ ዝርዝር ውስጥ እና ይክፈቱ የ አገባብ ዝርዝር: ይምረጡ <emph> አስተያየት ማረሚያ </emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ - ዝርዝር </emph> tab. ይጫኑ ከ ማስገቢያ ዝርዝር ውስጥ እና ይክፈቱ የ አገባብ ዝርዝር: ይምረጡ <emph> አስተያየት ማረሚያ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6598,7 +6598,7 @@ msgctxt ""
"par_id31562971\n"
"help.text"
msgid "Choose <emph>Edit - Find</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6614,7 +6614,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6654,7 +6654,7 @@ msgctxt ""
"par_id3156357\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
-msgstr "<variable id=\"suchenattribute\">ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"suchenattribute\">ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ - ባህሪዎች </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"par_id3153840\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
-msgstr "<variable id=\"suchenformat\">ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ - አቀራረብ</emph> ቁልፍ </variable>"
+msgstr "<variable id=\"suchenformat\">ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ - አቀራረብ </emph> ቁልፍ </variable>"
#: 00000402.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
-msgstr "<variable id=\"link\">ይምረጡ <emph>ማረሚያ - አገናኞች</emph></variable>"
+msgstr "<variable id=\"link\">ይምረጡ <emph> ማረሚያ - አገናኞች </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6742,7 +6742,7 @@ msgctxt ""
"par_id3159339\n"
"help.text"
msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
-msgstr "<variable id=\"linkae\">ይምረጡ <emph>ማረሚያ - አገናኞች - ማሻሻያ አገናኞች </emph> (DDE አገናኞች ብቻ) </variable>"
+msgstr "<variable id=\"linkae\">ይምረጡ <emph> ማረሚያ - አገናኞች - ማሻሻያ አገናኞች </emph> (DDE አገናኞች ብቻ) </variable>"
#: 00000402.xhp
msgctxt ""
@@ -6750,7 +6750,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
-msgstr "ይምረጡ ክፈፍ ከዛ ይምረጡ <emph>ማረሚያ - እቃዎች - ባህሪዎች</emph>"
+msgstr "ይምረጡ ክፈፍ ከዛ ይምረጡ <emph> ማረሚያ - እቃዎች - ባህሪዎች </emph>"
#: 00000402.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id3156091\n"
"help.text"
msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
-msgstr "<variable id=\"imagemap\">ይምረጡ <emph>ማረሚያ - የ ምስል ካርታ</emph> (እንዲሁም በ ተመረጠው እቃ ዝርዝር አገባብ ውስጥ) </variable>"
+msgstr "<variable id=\"imagemap\">ይምረጡ <emph> ማረሚያ - የ ምስል ካርታ </emph> (እንዲሁም በ ተመረጠው እቃ ዝርዝር አገባብ ውስጥ) </variable>"
#: 00000402.xhp
msgctxt ""
@@ -6774,7 +6774,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
-msgstr "<variable id=\"imapeigbea\">ይምረጡ <emph>ማረሚያ - የ ምስል ካርታ</emph>እና ከዛ ይምረጡ የ ምስል ካርታ ክፍል እና ከዛ ይጫኑ <emph>ባህሪዎች - መግለጫ</emph></variable>"
+msgstr "<variable id=\"imapeigbea\">ይምረጡ <emph> ማረሚያ - የ ምስል ካርታ </emph> እና ከዛ ይምረጡ የ ምስል ካርታ ክፍል እና ከዛ ይጫኑ <emph> ባህሪዎች - መግለጫ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6782,7 +6782,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
-msgstr "<variable id=\"edit1\">ይምረጡ <emph>ማረሚያ - እቃ</emph></variable>"
+msgstr "<variable id=\"edit1\">ይምረጡ <emph> ማረሚያ - እቃ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -6790,7 +6790,7 @@ msgctxt ""
"par_id3154966\n"
"help.text"
msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
-msgstr "<variable id=\"edit2\">ይምረጡ <emph>ማረሚያ - እቃ - ማረሚያ</emph>እንዲሁም በተመረጠው እቃ ዝርዝር አገባብ ውስጥ </variable>"
+msgstr "<variable id=\"edit2\">ይምረጡ <emph> ማረሚያ - እቃ - ማረሚያ </emph> እንዲሁም በተመረጠው እቃ ዝርዝር አገባብ ውስጥ </variable>"
#: 00000402.xhp
msgctxt ""
@@ -6798,7 +6798,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
-msgstr "<variable id=\"edit3\">ይምረጡ <emph>ማረሚያ - እቃ - መክፈቻ</emph></variable>"
+msgstr "<variable id=\"edit3\">ይምረጡ <emph> ማረሚያ - እቃ - መክፈቻ </emph></variable>"
#: 00000403.xhp
msgctxt ""
@@ -6838,7 +6838,7 @@ msgctxt ""
"par_id3152895\n"
"help.text"
msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
-msgstr "ሁለት ጊዜ-ይጫኑ ወይንም በ ቀኝ-ይጫኑ ሜዳው ላይ በ <emph>ሁኔታዎች</emph> መደርደሪያ ላይ"
+msgstr "ሁለት ጊዜ-ይጫኑ ወይንም በ ቀኝ-ይጫኑ ሜዳው ላይ በ <emph> ሁኔታዎች </emph> መደርደሪያ ላይ"
#: 00000403.xhp
msgctxt ""
@@ -7110,7 +7110,7 @@ msgctxt ""
"par_id3149525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ማስተካከያ - ባህሪ</emph> ቁልፍ</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ማስተካከያ - ባህሪ</emph> ቁልፍ </caseinline></switchinline>"
#: 00000404.xhp
msgctxt ""
@@ -7118,7 +7118,7 @@ msgctxt ""
"par_id3152372\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ማስተካከያ - ባህሪ</emph> ቁልፍ</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ማስተካከያ - ባህሪ </emph> ቁልፍ </caseinline></switchinline>"
#: 00000404.xhp
msgctxt ""
@@ -7126,7 +7126,7 @@ msgctxt ""
"par_id3156560\n"
"help.text"
msgid "On the <emph>Standard</emph> or the <emph>Insert</emph> toolbar, click"
-msgstr "በ <emph>መደበኛ</emph> ወይንም በ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ላይ ይጫኑ"
+msgstr "በ <emph> መደበኛ </emph> ወይንም በ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ላይ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -7182,7 +7182,7 @@ msgctxt ""
"par_id3146806\n"
"help.text"
msgid "Open the <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ ከ <emph>ማስገቢያ</emph> የ እቃ መደርደሪያ ላይ ይጫኑ"
+msgstr "መክፈቻ በ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ላይ: ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_id3153056\n"
"help.text"
msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "መክፈቻ ከ <emph>ማስገቢያ </emph>እቃ መደርደሪያ ላይ ይጫኑ"
+msgstr "መክፈቻ በ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ላይ: ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -7238,7 +7238,7 @@ msgctxt ""
"par_id3153144\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ አይነት </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ አይነት </emph>"
#: 00000404.xhp
msgctxt ""
@@ -7254,7 +7254,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ አይነት </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ አይነት </emph>"
#: 00000404.xhp
msgctxt ""
@@ -7270,7 +7270,7 @@ msgctxt ""
"par_id3159179\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ አይነት </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ አይነት </emph>"
#: 00000404.xhp
msgctxt ""
@@ -7294,7 +7294,7 @@ msgctxt ""
"par_id3154921\n"
"help.text"
msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "መክፈቻ ከ <emph>ማስገቢያ </emph>እቃ መደርደሪያ ላይ ይጫኑ"
+msgstr "መክፈቻ በ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ላይ: ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -7358,7 +7358,7 @@ msgctxt ""
"par_id3083281\n"
"help.text"
msgid "Open the <emph>Insert </emph>toolbar, click"
-msgstr "መክፈቻ የ <emph>ማስገቢያ </emph>እቃ መደርደሪያ ላይ ይጫኑ"
+msgstr "መክፈቻ በ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ላይ: ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -7518,7 +7518,7 @@ msgctxt ""
"par_id3146765\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Media - Clip Art Gallery</item> or on <emph>Standard</emph> Bar, click"
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - ብዙሀን መገናኛ - ቁራጭ ኪነ ጥበብ አዳራሽ </item> ወይንም በ <emph> መደበኛ </emph> መደርደሪያ ላይ ይጫኑ"
+msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - ብዙሀን መገናኛ - ቁራጭ ኪነ ጥበብ አዳራሽ </item> ወይንም በ <emph> መደበኛ </emph> መደርደሪያ ላይ: ይጫኑ"
#: 00000406.xhp
msgctxt ""
@@ -7662,7 +7662,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system)</variable>"
-msgstr "<variable id=\"makro\">ይምረጡ <emph> መሳሪያዎች - Macros - ማደራጃ Macros - %PRODUCTNAME Basic</emph> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (በ ስርአቱ ካልተመደበ)</variable>"
+msgstr "<variable id=\"makro\">ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማደራጃ ማክሮስ - %PRODUCTNAME Basic</emph> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (በ እርስዎ ስርአት ውስጥ ካልተመደበ) </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7670,7 +7670,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>"
-msgstr "ይምረጡ <emph> መሳሪያዎች - Macros - Macro መቅረጫ </emph>"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </emph>"
#: 00000406.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button</variable>"
-msgstr "<variable id=\"passwort\">ይምረጡ <emph> መሳሪያዎች - Macros - አደራጅ Macros - %PRODUCTNAME Basic</emph> ይጫኑ የ <emph> አደራጅ </emph> ቁልፍ ይጫኑ የ <emph> መጻህፍት ቤት </emph> tab, እና ከዛ ይጫኑ <emph> የ መግቢያ ቃል </emph> ቁልፍ </variable>"
+msgstr "<variable id=\"passwort\">ይምረጡ <emph> መሳሪያዎች - ማክሮስ - አደራጅ ማክሮስ - %PRODUCTNAME Basic </emph> ይጫኑ የ <emph> አደራጅ </emph> ቁልፍ ይጫኑ የ <emph> መጻህፍት ቤት </emph> tab: እና ከዛ ይጫኑ <emph> የ መግቢያ ቃል </emph> ቁልፍ </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7870,7 +7870,7 @@ msgctxt ""
"par_id3153953\n"
"help.text"
msgid "Click <emph>Edit</emph> button for a few entries under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>"
-msgstr "ይጫኑ <emph>ማረሚያ</emph> ቁልፍ ለጥቂት ማስገቢያዎች ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - መንገዶች</emph>"
+msgstr "ይጫኑ <emph> ማረሚያ </emph> ቁልፍ ለጥቂት ማስገቢያዎች ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መንገዶች </emph>"
#: 00000406.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ - ቀለሞች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ - ቀለሞች </emph> tab"
#: 00000406.xhp
msgctxt ""
@@ -7958,7 +7958,7 @@ msgctxt ""
"par_id3145729\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab<emph> - Edit</emph> button"
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ - ቀለሞች</emph> tab<emph> - ማረሚያ</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ - ቀለሞች </emph> tab <emph> - ማረሚያ </emph> ቁልፍ"
#: 00000406.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"par_id3149488\n"
"help.text"
msgid "Choose <emph>Format - 3D Effects</emph> icon on the <emph>Illumination</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - 3ዲ ውጤቶች</emph> ምልክት ላይ ከ <emph>የ ብርሀን ምንጭ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - 3ዲ ውጤቶች </emph> ምልክት ላይ ከ <emph> የ ብርሀን ምንጭ </emph> tab"
#: 00000406.xhp
msgctxt ""
@@ -8022,7 +8022,7 @@ msgctxt ""
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph></variable>"
-msgstr "<variable id=\"opencl\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መክፈቻ CL</emph></variable>"
+msgstr "<variable id=\"opencl\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8470,7 +8470,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "<variable id=\"datenqu\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph></variable>"
-msgstr "<variable id=\"datenqu\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph></variable>"
+msgstr "<variable id=\"datenqu\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ቤዝ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8478,7 +8478,7 @@ msgctxt ""
"par_id3147368\n"
"help.text"
msgid "<variable id=\"verbindungen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connections</emph></variable>"
-msgstr "<variable id=\"verbindungen\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - ግንኙነቶች </emph></variable>"
+msgstr "<variable id=\"verbindungen\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ቤዝ - ግንኙነቶች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8486,7 +8486,7 @@ msgctxt ""
"par_idN1120D\n"
"help.text"
msgid "<variable id=\"registered\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph></variable>"
-msgstr "<variable id=\"registered\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - ዳታቤዝ </emph></variable>"
+msgstr "<variable id=\"registered\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ቤዝ - ዳታቤዝ </emph></variable>"
#: 00000407.xhp
msgctxt ""
@@ -8590,7 +8590,7 @@ msgctxt ""
"par_id3156053\n"
"help.text"
msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
-msgstr "ይምረጡ <emph>ዳታ - ማጣሪያ - መደበኛ ማጣሪያ</emph>"
+msgstr "ይምረጡ <emph> ዳታ - ማጣሪያ - መደበኛ ማጣሪያ </emph>"
#: 00000409.xhp
msgctxt ""
@@ -8598,7 +8598,7 @@ msgctxt ""
"par_id3154350\n"
"help.text"
msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
-msgstr "የ ዳታቤዝ ሰንጠረዥ መመልከቻ: <emph>መደበኛ ማጣሪያ</emph> ምልክት በ <emph>ዳታቤዝ</emph> እቃ መደርደሪያ ላይ"
+msgstr "የ ዳታቤዝ ሰንጠረዥ መመልከቻ: <emph> መደበኛ ማጣሪያ </emph> ምልክት ከ <emph> ዳታቤዝ </emph> እቃ መደርደሪያ ላይ"
#: 00000409.xhp
msgctxt ""
@@ -8662,7 +8662,7 @@ msgctxt ""
"par_id3147294\n"
"help.text"
msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
-msgstr "<variable id=\"Typ\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች - የ ረቀቀ ማሰናጃዎች</emph> tab</variable>"
+msgstr "<variable id=\"Typ\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች - የ ረቀቀ ማሰናጃዎች </emph> tab</variable>"
#: 00000450.xhp
msgctxt ""
@@ -8670,7 +8670,7 @@ msgctxt ""
"par_id3159411\n"
"help.text"
msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
-msgstr "<variable id=\"Datenquelle\">ከ ዳታቤዝ ፋይል መስኮት አይነት ውስጥ የ ODBC ወይንም አድራሻ ደብተር ይምረጡ ማረሚያ - ዳታቤዝ - የ ግንኙነት አይነት</variable>"
+msgstr "<variable id=\"Datenquelle\">ከ ዳታቤዝ ፋይል መስኮት አይነት ውስጥ የ ODBC ወይንም አድራሻ ደብተር ይምረጡ ማረሚያ - ዳታቤዝ - የ ግንኙነት አይነት </variable>"
#: 00000450.xhp
msgctxt ""
@@ -8678,7 +8678,7 @@ msgctxt ""
"par_id3149119\n"
"help.text"
msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph></variable>"
-msgstr "<variable id=\"Verzeichnis\">የ መንገድ መምረጫ ቁልፍ ለተለያየ አዋቂዎች / <emph>ማረሚያ</emph> ቁልፎች ለ አንዳንድ ማስገቢያዎች በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - መንገዶች</emph></variable>"
+msgstr "<variable id=\"Verzeichnis\">የ መንገድ መምረጫ ቁልፍ ለተለያየ አዋቂዎች / <emph> ማረሚያ </emph> ቁልፎች ለ አንዳንድ ማስገቢያዎች በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መንገዶች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8686,7 +8686,7 @@ msgctxt ""
"par_id3154497\n"
"help.text"
msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
-msgstr "<variable id=\"ODBC\">ከ ዳታቤዝ ፋይል መስኮት አይነት ውስጥ የ ODBC ይምረጡ ማረሚያ - ዳታቤዝ - ግንኙነት አይነት</variable>"
+msgstr "<variable id=\"ODBC\">ከ ዳታቤዝ ፋይል መስኮት አይነት ውስጥ የ ODBC ይምረጡ ማረሚያ - ዳታቤዝ - ግንኙነት አይነት </variable>"
#: 00000450.xhp
msgctxt ""
@@ -8694,7 +8694,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
-msgstr "<variable id=\"ldap\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ አድራሻ ደብተር - LDAP, ይምረጡ ማረሚያ - ዳታቤዝ - ባህሪዎች</variable>"
+msgstr "<variable id=\"ldap\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ አድራሻ ደብተር - LDAP, ይምረጡ ማረሚያ - ዳታቤዝ - ባህሪዎች </variable>"
#: 00000450.xhp
msgctxt ""
@@ -8702,7 +8702,7 @@ msgctxt ""
"par_id3157896\n"
"help.text"
msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"JDBC\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ JDBC, ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"JDBC\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ JDBC, ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8710,7 +8710,7 @@ msgctxt ""
"par_id3148548\n"
"help.text"
msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"mysql\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ MySQL, ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"mysql\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ MySQL, ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8718,7 +8718,7 @@ msgctxt ""
"par_id3149346\n"
"help.text"
msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"dBase\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ dBASE, ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"dBase\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ dBASE, ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8726,7 +8726,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
-msgstr "<variable id=\"dBasein\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ dBASE, ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph> ይጫኑ <emph>ማውጫዎች</emph></variable>"
+msgstr "<variable id=\"dBasein\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ dBASE, ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph> ይጫኑ <emph> ማውጫዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8734,7 +8734,7 @@ msgctxt ""
"par_id3154317\n"
"help.text"
msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"Text\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ ጽሁፍ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"Text\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ ጽሁፍ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8742,7 +8742,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"ADO\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ MS ADO, ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"ADO\">ከ ዳታቤዝ ፋይል አይነት መስኮት ውስጥ የ MS ADO, ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8758,7 +8758,7 @@ msgctxt ""
"par_id3147209\n"
"help.text"
msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
-msgstr "<variable id=\"Abfragen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ <emph>ጥያቄ</emph> ምልክት</variable>"
+msgstr "<variable id=\"Abfragen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ <emph> ጥያቄ </emph> ምልክት </variable>"
#: 00000450.xhp
msgctxt ""
@@ -8766,7 +8766,7 @@ msgctxt ""
"par_id3153880\n"
"help.text"
msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
-msgstr "<variable id=\"Tabellen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ <emph>ሰንጠረዥ</emph> ምልክት</variable>"
+msgstr "<variable id=\"Tabellen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ <emph> ሰንጠረዥ </emph> ምልክት </variable>"
#: 00000450.xhp
msgctxt ""
@@ -8774,7 +8774,7 @@ msgctxt ""
"par_id3153760\n"
"help.text"
msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"tabellenentwurf\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ ሰንጠረዥ ምልክት ይምረጡ ማስገቢያ -<emph> የ ሰንጠረዥ ንድፍ</emph> ወይንም <emph> ማረሚያ - ማረሚያ </emph></variable>"
+msgstr "<variable id=\"tabellenentwurf\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ ሰንጠረዥ ምልክት ይምረጡ ማስገቢያ -<emph> የ ሰንጠረዥ ንድፍ </emph> ወይንም <emph> ማረሚያ - ማረሚያ </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8798,7 +8798,7 @@ msgctxt ""
"par_id3149579\n"
"help.text"
msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
-msgstr "<variable id=\"entwab\">ከ ዳታቤዝ ፋይል መስኮት ይምረጡ የ <emph>ጥያቄዎች</emph> ምልክት እና ከዛ ይምረጡ <emph>ማረሚያ - ማረሚያ</emph></variable>"
+msgstr "<variable id=\"entwab\">ከ ዳታቤዝ ፋይል መስኮት ይምረጡ የ <emph> ጥያቄዎች </emph> ምልክት እና ከዛ ይምረጡ <emph> ማረሚያ - ማረሚያ </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8814,7 +8814,7 @@ msgctxt ""
"par_id3159166\n"
"help.text"
msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
-msgstr "<variable id=\"Joins\">የ ጥያቄ ንድፍ መክፈቻ እና ይምረጡ <emph>ማስገቢያ - አዲስ ግንኙነት </emph> ወይንም ሁለት ጊዜ-ይጫኑ በ ሁለት ሰንጠረዦች መገናኛ መስመር ላይ </variable>"
+msgstr "<variable id=\"Joins\">የ ጥያቄ ንድፍ መክፈቻ እና ይምረጡ <emph> ማስገቢያ - አዲስ ግንኙነት </emph> ወይንም ሁለት ጊዜ-ይጫኑ በ ሁለት ሰንጠረዦች መገናኛ መስመር ላይ </variable>"
#: 00000450.xhp
msgctxt ""
@@ -8902,7 +8902,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"allgemein\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - የዳታቤ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"allgemein\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - የ ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8918,7 +8918,7 @@ msgctxt ""
"par_id3148560\n"
"help.text"
msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
-msgstr "<variable id=\"formularneu\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ<emph> ማስገቢያ - ፎርም </emph></variable>"
+msgstr "<variable id=\"formularneu\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph> ማስገቢያ - ፎርም </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8926,7 +8926,7 @@ msgctxt ""
"par_id3155430\n"
"help.text"
msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
-msgstr "<variable id=\"benutzereinstellungen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph></variable>"
+msgstr "<variable id=\"benutzereinstellungen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph></variable>"
#: 00000450.xhp
msgctxt ""
@@ -8958,7 +8958,7 @@ msgctxt ""
"par_id3145356\n"
"help.text"
msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph> </variable>"
-msgstr "<variable id=\"standard\">ይምረጡ <emph>አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph></variable>"
+msgstr "<variable id=\"standard\">ይምረጡ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph></variable>"
#: 00040500.xhp
msgctxt ""
@@ -8966,7 +8966,7 @@ msgctxt ""
"par_id3153244\n"
"help.text"
msgid "Choose <emph>Format - Character</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ </emph>"
#: 00040500.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_id3153935\n"
"help.text"
msgid "Choose <emph>Format - Character - Font</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - ፊደል</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - ፊደል </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9006,7 +9006,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር ማስገቢያ እና ይምረጡ <emph> ማሻሻያ/አዲስ - ፊደል </emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር ማስገቢያ እና ይምረጡ <emph> ማሻሻያ/አዲስ - ፊደል </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9022,7 +9022,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ባህሪ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ባህሪ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040500.xhp
msgctxt ""
@@ -9030,7 +9030,7 @@ msgctxt ""
"par_id3149812\n"
"help.text"
msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - መግለጫ - ባህሪ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ - ባህሪ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040500.xhp
msgctxt ""
@@ -9038,7 +9038,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - አክሲስ - ባህሪ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - አክሲስ - ባህሪ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040500.xhp
msgctxt ""
@@ -9046,7 +9046,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፍል - ፊደል</emph> tab (ሰንጠረዦች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፍል - ፊደል </emph> tab (ሰንጠረዦች)"
#: 00040500.xhp
msgctxt ""
@@ -9062,7 +9062,7 @@ msgctxt ""
"par_id3155829\n"
"help.text"
msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - የ ፊደል ተፅእኖ </emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - የ ፊደል ተፅእኖ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9070,7 +9070,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር ማስገቢያ እና ይምረጡ <emph> ማሻሻያ/አዲስ - የ ፊደል ውጤቶች </emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር ማስገቢያ እና ይምረጡ <emph> ማሻሻያ/አዲስ - የ ፊደል ውጤቶች </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9086,7 +9086,7 @@ msgctxt ""
"par_id3153541\n"
"help.text"
msgid "Choose <emph>Format - Character - Position</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - ቦታ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - ቦታ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9126,7 +9126,7 @@ msgctxt ""
"par_id3153524\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - የ እስያ ጽሁፍ</emph> tab (በ HTML ውስጥ አይደለም)"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - የ እስያ ጽሁፍ </emph> tab (በ HTML ውስጥ አይደለም)"
#: 00040500.xhp
msgctxt ""
@@ -9142,7 +9142,7 @@ msgctxt ""
"par_id3148742\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ </emph> መክፈቻ የ አገባብ ዝርዝር ማስገቢያ እና ይጫኑ <emph> ማሻሻያ/አዲስ - የ እስያ ጽሁፍ </emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> መክፈቻ የ አገባብ ዝርዝር ማስገቢያ እና ይጫኑ <emph> ማሻሻያ/አዲስ - የ እስያ ጽሁፍ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9150,7 +9150,7 @@ msgctxt ""
"par_id3148922\n"
"help.text"
msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - Hyperlink</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - Hyperlink </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9158,7 +9158,7 @@ msgctxt ""
"par_id3149169\n"
"help.text"
msgid "Choose <emph>Format - Paragraph</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ </emph>"
#: 00040500.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3147289\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - ማሰለፊያ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - ማሰለፊያ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9206,7 +9206,7 @@ msgctxt ""
"par_id3154640\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9222,7 +9222,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - Tabs</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - Tabs </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9254,7 +9254,7 @@ msgctxt ""
"par_id3156105\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - ድንበሮች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - ድንበሮች </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"par_id3163822\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Borders</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ድንበሮች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ድንበሮች </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9278,7 +9278,7 @@ msgctxt ""
"par_id3150048\n"
"help.text"
msgid "Choose <emph>Format - Page - Borders</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ድንበሮች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ድንበሮች </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9286,7 +9286,7 @@ msgctxt ""
"par_id3151148\n"
"help.text"
msgid "Choose <emph>Format - Character - Borders</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - ድንበሮች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - ድንበሮች </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9302,7 +9302,7 @@ msgctxt ""
"par_id3150094\n"
"help.text"
msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ራስጌ - ተጨማሪ</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ራስጌ - ተጨማሪ </emph> ቁልፍ"
#: 00040500.xhp
msgctxt ""
@@ -9310,7 +9310,7 @@ msgctxt ""
"par_id3154501\n"
"help.text"
msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ግርጌ - ተጨማሪ</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ግርጌ - ተጨማሪ </emph> ቁልፍ"
#: 00040500.xhp
msgctxt ""
@@ -9318,7 +9318,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"> ይምረጡ <emph> አቀራረብ - ክፍሎች - ድንበሮች </emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ይምረጡ <emph> አቀራረብ - ክፍሎች - ድንበሮች </emph> tab </caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9342,7 +9342,7 @@ msgctxt ""
"par_id3155853\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - መደብ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - መደብ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9350,7 +9350,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "Choose <emph>Format - Character - Background</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - መደብ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - መደብ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9358,7 +9358,7 @@ msgctxt ""
"par_id3149486\n"
"help.text"
msgid "Choose <emph>Format - Image - Background</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - መደብ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - መደብ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9374,7 +9374,7 @@ msgctxt ""
"par_id3151321\n"
"help.text"
msgid "Choose <emph>Format - Page - Background</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - መደብ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - መደብ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ራስጌ - ተጨማሪ</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ራስጌ - ተጨማሪ </emph> ቁልፍ"
#: 00040500.xhp
msgctxt ""
@@ -9390,7 +9390,7 @@ msgctxt ""
"par_id3159110\n"
"help.text"
msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ግርጌ - ተጨማሪ</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ግርጌ - ተጨማሪ </emph> ቁልፍ"
#: 00040500.xhp
msgctxt ""
@@ -9422,7 +9422,7 @@ msgctxt ""
"par_id3146791\n"
"help.text"
msgid "Choose <emph>Format - Page - Organizer</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - አደራጅ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - አደራጅ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9438,7 +9438,7 @@ msgctxt ""
"par_id3153357\n"
"help.text"
msgid "Choose <emph>Format - Page - Page</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ገጽ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ገጽ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9454,7 +9454,7 @@ msgctxt ""
"par_id3155515\n"
"help.text"
msgid "Choose <emph>Format - Page - Header</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ራስጌ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ራስጌ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id3145618\n"
"help.text"
msgid "Choose <emph>Format - Page - Footer</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - ግርጌ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ግርጌ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"par_id3147404\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ዘዴዎች እና አቀራረብ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ዘዴዎች እና አቀራረብ </emph>"
#: 00040500.xhp
msgctxt ""
@@ -9550,7 +9550,7 @@ msgctxt ""
"par_id3145256\n"
"help.text"
msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
-msgstr "<variable id=\"3dgeometrie\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph>3ዲ ውጤቶች - ጂዮሜትሪ</emph> tab </variable>"
+msgstr "<variable id=\"3dgeometrie\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph> 3ዲ ውጤቶች - ጂዮሜትሪ </emph> tab </variable>"
#: 00040500.xhp
msgctxt ""
@@ -9558,7 +9558,7 @@ msgctxt ""
"par_id3154203\n"
"help.text"
msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
-msgstr "<variable id=\"3ddarstellung\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph>3ዲ ውጤቶች - ጥላ</emph> tab </variable>"
+msgstr "<variable id=\"3ddarstellung\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph> 3ዲ ውጤቶች - ጥላ </emph> tab </variable>"
#: 00040500.xhp
msgctxt ""
@@ -9566,7 +9566,7 @@ msgctxt ""
"par_id3151284\n"
"help.text"
msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
-msgstr "<variable id=\"3dbeleuchtung\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph>3ዲ ውጤቶች - የ ብርሃን ምንጭ</emph> tab </variable>"
+msgstr "<variable id=\"3dbeleuchtung\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph> 3ዲ ውጤቶች - የ ብርሃን ምንጭ </emph> tab </variable>"
#: 00040500.xhp
msgctxt ""
@@ -9574,7 +9574,7 @@ msgctxt ""
"par_id3152475\n"
"help.text"
msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
-msgstr "<variable id=\"3dtexturen\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph>3ዲ ውጤቶች - Textures</emph> tab </variable>"
+msgstr "<variable id=\"3dtexturen\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph> 3ዲ ውጤቶች - ገጽታዎች </emph> tab </variable>"
#: 00040500.xhp
msgctxt ""
@@ -9582,7 +9582,7 @@ msgctxt ""
"par_id3154572\n"
"help.text"
msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
-msgstr "<variable id=\"3dmaterial\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph>3ዲ ውጤቶች - Material</emph> tab </variable>"
+msgstr "<variable id=\"3dmaterial\">መክፈቻ የ አገባብ ዝርዝር የ 3ዲ እቃዎች ይምረጡ <emph> 3ዲ ውጤቶች - አካሎች </emph> tab </variable>"
#: 00040500.xhp
msgctxt ""
@@ -9590,7 +9590,7 @@ msgctxt ""
"par_id3145220\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering </emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph>"
#: 00040500.xhp
msgctxt ""
@@ -9622,7 +9622,7 @@ msgctxt ""
"par_id3149735\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
-msgstr "ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ</emph> መክፈቻ <emph> ምርጫ </emph> tab ገጽ"
+msgstr "ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph> መክፈቻ <emph> ምርጫ </emph> tab ገጽ"
#: 00040500.xhp
msgctxt ""
@@ -9646,7 +9646,7 @@ msgctxt ""
"par_id3148888\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ነጥቦች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ነጥቦች </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9670,7 +9670,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ቁጥር መስጫ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ቁጥር መስጫ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"par_id3155378\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">መክፈቻ <emph> ዘዴዎች እና አቀራረብ </emph> - ማቅረቢያ ዘዴዎች - የ አገባብ ዝርዝር የ እቅድ ዘዴ - ይምረጡ <emph>አዲስ/ማሻሻያ</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">መክፈቻ <emph> ዘዴዎች እና አቀራረብ </emph> - ማቅረቢያ ዘዴዎች - የ አገባብ ዝርዝር የ እቅድ ዘዴ - ይምረጡ <emph> አዲስ/ማሻሻያ </emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9694,7 +9694,7 @@ msgctxt ""
"par_id0611200904324832\n"
"help.text"
msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Image</emph> tab </variable>"
-msgstr "<variable id=\"graphics\">ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ምስል</emph> tab</variable>"
+msgstr "<variable id=\"graphics\">ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ምስል </emph> tab</variable>"
#: 00040500.xhp
msgctxt ""
@@ -9702,7 +9702,7 @@ msgctxt ""
"par_id3155848\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ - እቅድ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - እቅድ </emph> tab"
#: 00040500.xhp
msgctxt ""
@@ -9718,15 +9718,15 @@ msgctxt ""
"par_id3156658\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
-msgstr "ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ</emph> መክፈቻ <emph> ቦታ </emph> tab ገጽ"
+msgstr "ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph> መክፈቻ <emph> ቦታ </emph> tab ገጽ"
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> ይምረጡ <emph> መሳሪያዎች - እቅድ የ ቁጥር መስጫ - ቦታ </emph> tab </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ይምረጡ <emph> መሳሪያዎች - የ ምእራፍ ቁጥር መስጫ - ቦታ </emph> tab </caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline> ምልክት በ <emph> ምስል </emph> እቃ መደርደሪያ:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>ምልክት በ <emph> ምስል </emph> እቃ መደርደሪያ ላይ:</defaultinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id3150156\n"
"help.text"
msgid "<variable id=\"aupitab\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field.</variable>"
-msgstr "<variable id=\"aupitab\">መክፈቻ <emph>ፎርም መቆጣጠሪያዎች</emph> እቃ መደርደሪያ ይጫኑ <emph>ተጨማሪ መቆጣጠሪያዎች</emph> ምልክት ይጫኑ <emph>ሰንጠረዥ መቆጣጠሪያ</emph> ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ</variable>"
+msgstr "<variable id=\"aupitab\">መክፈቻ <emph> ፎርም መቆጣጠሪያዎች </emph> እቃ መደርደሪያ ይጫኑ <emph> ተጨማሪ መቆጣጠሪያዎች </emph> ምልክት ይጫኑ <emph> ሰንጠረዥ መቆጣጠሪያ </emph> ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ </variable>"
#: 00040501.xhp
msgctxt ""
@@ -9814,7 +9814,7 @@ msgctxt ""
"par_id3154408\n"
"help.text"
msgid "<variable id=\"aupitab1\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. No database connection in current form is allowed.</variable>"
-msgstr "<variable id=\"aupitab1\">መክፈቻ <emph>ፎርም መቆጣጠሪያዎች</emph> እቃ መደርደሪያ ይጫኑ <emph>ተጨማሪ መቆጣጠሪያዎች</emph> ምልክት ይጫኑ <emph>ሰንጠረዥ መቆጣጠሪያዎች</emph> ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ፡ ምንም የ ዳታቤዝ ግንኙነት በ አሁኑ ፎርም ውስጥ አይፈቀድም</variable>"
+msgstr "<variable id=\"aupitab1\">መክፈቻ <emph> ፎርም መቆጣጠሪያዎች </emph> እቃ መደርደሪያ ይጫኑ <emph> ተጨማሪ መቆጣጠሪያዎች </emph> ምልክት ይጫኑ <emph> ሰንጠረዥ መቆጣጠሪያዎች </emph> ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ፡ ምንም የ ዳታቤዝ ግንኙነት በ አሁኑ ፎርም ውስጥ አይፈቀድም </variable>"
#: 00040501.xhp
msgctxt ""
@@ -9822,7 +9822,7 @@ msgctxt ""
"par_id3149748\n"
"help.text"
msgid "<variable id=\"aupitab2\">Open <emph>Form Controls</emph> toolbar, click <emph>More Controls</emph> icon, click <emph>Table Control</emph> icon and drag mouse to generate field. Database connection must exist.</variable>"
-msgstr "<variable id=\"aupitab2\">መክፈቻ <emph>ፎርም መቆጣጠሪያዎች</emph> እቃ መደርደሪያ: ይጫኑ <emph>ተጨማሪ መቆጣጠሪያዎች</emph> ምልክት: ይጫኑ <emph>ሰንጠረዥ መቆጣጠሪያዎች</emph> ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ: የ ዳታቤዝ ግንኙነት መውጣት አለበት</variable>"
+msgstr "<variable id=\"aupitab2\">መክፈቻ <emph> ፎርም መቆጣጠሪያዎች </emph> እቃ መደርደሪያ: ይጫኑ <emph> ተጨማሪ መቆጣጠሪያዎች </emph> ምልክት: ይጫኑ <emph> ሰንጠረዥ መቆጣጠሪያዎች </emph> ምልክት እና በ አይጥ በ መጎተት ሜዳ ያመንጩ: የ ዳታቤዝ ግንኙነት መውጣት አለበት </variable>"
#: 00040501.xhp
msgctxt ""
@@ -9830,7 +9830,7 @@ msgctxt ""
"par_id3156553\n"
"help.text"
msgid "<variable id=\"aupikomli\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form.</variable>"
-msgstr "<variable id=\"aupikomli\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph>መቀላቀያ ሳጥን </emph> ወይንም <emph>ዝርዝር ሳጥን</emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት </variable>"
+msgstr "<variable id=\"aupikomli\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph>መቀላቀያ ሳጥን </emph> ወይንም <emph> ዝርዝር ሳጥን </emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት </variable>"
#: 00040501.xhp
msgctxt ""
@@ -9838,7 +9838,7 @@ msgctxt ""
"par_id3148825\n"
"help.text"
msgid "<variable id=\"aupikomli1\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1.</variable>"
-msgstr "<variable id=\"aupikomli1\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph>መቀላቀያ ሳጥን </emph> ወይንም <emph>ዝርዝር ሳጥን</emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 1.</variable>"
+msgstr "<variable id=\"aupikomli1\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph> መቀላቀያ ሳጥን </emph> ወይንም <emph> ዝርዝር ሳጥን </emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 1.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -9846,7 +9846,7 @@ msgctxt ""
"par_id3155434\n"
"help.text"
msgid "<variable id=\"aupikomli2\">Open Form Controls toolbar, click <emph>Combo Box</emph> or <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2.</variable>"
-msgstr "<variable id=\"aupikomli2\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph>መቀላቀያ ሳጥን </emph> ወይንም <emph>ዝርዝር ሳጥን</emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 2.</variable>"
+msgstr "<variable id=\"aupikomli2\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph> መቀላቀያ ሳጥን </emph> ወይንም <emph> ዝርዝር ሳጥን </emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 2.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -9854,7 +9854,7 @@ msgctxt ""
"par_id3151378\n"
"help.text"
msgid "<variable id=\"aupikomli3a\">Open Form Controls toolbar, click <emph>List Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
-msgstr "<variable id=\"aupikomli3a\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph>መቀላቀያ ሳጥን</emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 3.</variable>"
+msgstr "<variable id=\"aupikomli3a\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph> መቀላቀያ ሳጥን </emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 3.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -9862,7 +9862,7 @@ msgctxt ""
"par_id3151246\n"
"help.text"
msgid "<variable id=\"aupikomli3b\">Open Form Controls toolbar, click <emph>Combo Box</emph> icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3.</variable>"
-msgstr "<variable id=\"aupikomli3b\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph>መቀላቀያ ሳጥን </emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 3.</variable>"
+msgstr "<variable id=\"aupikomli3b\">መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: ይጫኑ <emph> መቀላቀያ ሳጥን </emph> ምልክት እና በ አይጥ ይጎትቱ ሜዳ ለማመንጨት: የ ዳታቤዝ ግንኙነት በ ፎርሙ ውስጥ መኖር አለበት: አዋቂ - ገጽ 3.</variable>"
#: 00040501.xhp
msgctxt ""
@@ -9894,7 +9894,7 @@ msgctxt ""
"par_id3149292\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን የ ፎርም አካል - ይምረጡ <emph>ፎርም</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን የ ፎርም አካል - ይምረጡ <emph> ፎርም </emph>"
#: 00040501.xhp
msgctxt ""
@@ -9918,7 +9918,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - General</emph> tab"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን የ ፎርም አካል - ይምረጡ <emph>ፎርም - ባጠቃላይ</emph> tab"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን የ ፎርም አካል - ይምረጡ <emph> ፎርም - ባጠቃላይ </emph> tab"
#: 00040501.xhp
msgctxt ""
@@ -9934,7 +9934,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - Data</emph> tab"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን ከ አካል - ይምረጡ <emph>ፎርም - ዳታ</emph> tab"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን ከ አካል - ይምረጡ <emph> ፎርም - ዳታ </emph> tab"
#: 00040501.xhp
msgctxt ""
@@ -9966,7 +9966,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Form - Events</emph> tab"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph>ከ - ሁኔታዎች </emph> tab"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph> ከ - ሁኔታዎች </emph> tab"
#: 00040501.xhp
msgctxt ""
@@ -9982,7 +9982,7 @@ msgctxt ""
"par_id3147234\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph>መቆጣጠሪያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph> መቆጣጠሪያ </emph>"
#: 00040501.xhp
msgctxt ""
@@ -10006,7 +10006,7 @@ msgctxt ""
"par_id3153943\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - General</emph> tab"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph>መቆጣጠሪያ - ባጠቃላይ</emph> tab"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph> መቆጣጠሪያ - ባጠቃላይ </emph> tab"
#: 00040501.xhp
msgctxt ""
@@ -10022,7 +10022,7 @@ msgctxt ""
"par_id3153203\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - Data</emph> tab"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph>መቆጣጠሪያ - ዳታ</emph> tab"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph> መቆጣጠሪያ - ዳታ </emph> tab"
#: 00040501.xhp
msgctxt ""
@@ -10038,7 +10038,7 @@ msgctxt ""
"par_id3153334\n"
"help.text"
msgid "Open context menu of a selected form element - choose <emph>Control - Events</emph> tab"
-msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph>መቆጣጠሪያ - ሁኔታዎች</emph> tab"
+msgstr "መክፈቻ የ አገባብ ዝርዝር የ ተመረጠውን አካል - ይምረጡ <emph> መቆጣጠሪያ - ሁኔታዎች </emph> tab"
#: 00040501.xhp
msgctxt ""
@@ -10150,7 +10150,7 @@ msgctxt ""
"par_id3148828\n"
"help.text"
msgid "Open Form Navigator - select form - open context menu - choose <emph>Open in design mode</emph>"
-msgstr "የ ፎርም መቃኛ ለ መክፈት - ፎርም ይምረጡ - የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph>በ ንድፍ ዘዴ መክፈቻ</emph>"
+msgstr "የ ፎርም መቃኛ ለ መክፈት - ፎርም ይምረጡ - የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph> በ ንድፍ ዘዴ መክፈቻ </emph>"
#: 00040501.xhp
msgctxt ""
@@ -10214,7 +10214,7 @@ msgctxt ""
"par_id3159334\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange</emph> ($[officename] Impress, $[officename] Draw)"
-msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph>ማዘጋጃ</emph> ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph> ማዘጋጃ </emph> ($[officename] ማስደነቂያ: $[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10222,7 +10222,7 @@ msgctxt ""
"par_id3154023\n"
"help.text"
msgid "Choose <emph>Modify - Arrange</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ</emph> ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ </emph> ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10254,7 +10254,7 @@ msgctxt ""
"par_id3148425\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Bring to Front</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - ወደ ፊት ማምጫ</emph> ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - ወደ ፊት ማምጫ </emph> ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10270,7 +10270,7 @@ msgctxt ""
"par_id3154206\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Bring to Front</emph> ($[officename] Impress)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማዘጋጃ - ወደ ፊት ማምጫ</emph> ($[officename] ማስደነቂያ)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማዘጋጃ - ወደ ፊት ማምጫ </emph> ($[officename] ማስደነቂያ)"
#: 00040501.xhp
msgctxt ""
@@ -10302,7 +10302,7 @@ msgctxt ""
"par_id3148396\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Bring Forward</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - ወደ ፊት ማምጫ</emph> ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - ወደ ፊት ማምጫ </emph> ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10318,7 +10318,7 @@ msgctxt ""
"par_id3154658\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Bring Forward</emph> ($[officename] Impress)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማዘጋጃ - ወደ ፊት ለ ፊት ማምጫ</emph> ($[officename] ማስደነቂያ)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማዘጋጃ - ወደ ፊት ለ ፊት ማምጫ </emph> ($[officename] ማስደነቂያ)"
#: 00040501.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_id3150428\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Send Backward</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - ወደ ኋላ መላኪያ</emph> ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - ወደ ኋላ መላኪያ </emph> ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10366,7 +10366,7 @@ msgctxt ""
"par_id3159107\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Send Backward</emph> ($[officename] Impress)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማዘጋጃ - ወደ ኋላ መላኪያ</emph> ($[officename] ማስደነቂያ)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማዘጋጃ - ወደ ኋላ መላኪያ </emph> ($[officename] ማስደነቂያ)"
#: 00040501.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"par_id3148595\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Send to Back</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - ወደ ኋላ መላኪያ</emph> ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - ወደ ኋላ መላኪያ </emph> ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10414,7 +10414,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "Open context menu - choose <emph>Arrange - Send to Back</emph> ($[officename] Impress)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማዘጋጃ - ወደ ኋላ መላኪያ</emph> ($[officename] ማስደነቂያ)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማዘጋጃ - ወደ ኋላ መላኪያ </emph> ($[officename] ማስደነቂያ)"
#: 00040501.xhp
msgctxt ""
@@ -10438,7 +10438,7 @@ msgctxt ""
"par_id3145410\n"
"help.text"
msgid "Choose <emph>Format - Arrange - To Foreground</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ማዘጋጃ - ወደ ፊት ለፊት</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ማዘጋጃ - ወደ ፊት ለፊት </emph>"
#: 00040501.xhp
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"par_id3159626\n"
"help.text"
msgid "Choose <emph>Format - Arrange - To Background</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ማዘጋጃ - ወደ መደብ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ማዘጋጃ - ወደ መደብ </emph>"
#: 00040501.xhp
msgctxt ""
@@ -10494,7 +10494,7 @@ msgctxt ""
"par_id3153914\n"
"help.text"
msgid "Choose <emph>Modify - Alignment</emph> (objects selected) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10502,7 +10502,7 @@ msgctxt ""
"par_id3153185\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
-msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph>ማሰለፊያ</emph> (እቃዎች ተመርጠዋል) ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph> ማሰለፊያ </emph> (እቃዎች ተመርጠዋል) ($[officename] ማስደነቂያ, $[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10518,7 +10518,7 @@ msgctxt ""
"par_id3083450\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Left</emph> (selected objects) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ - በ ግራ</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ - በ ግራ </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10526,7 +10526,7 @@ msgctxt ""
"par_id3150257\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Left</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
-msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph>ማሰለፊያ - በ ግራ</emph> (እቃዎች ተመርጠዋል) ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph> ማሰለፊያ - በ ግራ </emph> (እቃዎች ተመርጠዋል) ($[officename] ማስደነቂያ, $[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"par_id3157978\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ - መሀከል</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ - መሀከል </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3156546\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Right</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ማሰለፊያ - በ ቀኝ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ማሰለፊያ - በ ቀኝ </emph>"
#: 00040501.xhp
msgctxt ""
@@ -10606,7 +10606,7 @@ msgctxt ""
"par_id3145073\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Right</emph> (objects selected) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ - በ ቀኝ</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ - በ ቀኝ </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10646,7 +10646,7 @@ msgctxt ""
"par_id3150213\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Top</emph> (objects selected) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ - ከ ላይ</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ - ከ ላይ </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_id3155093\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)"
-msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph>ማሰለፊያ - ከ ላይ</emph> (እቃዎች ተመርጠዋል) ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgstr "የ አገባብ ዝርዝር መክፈቻ - ይምረጡ <emph> ማሰለፊያ - ከ ላይ </emph> (እቃዎች ተመርጠዋል) ($[officename] ማስደነቂያ: $[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10694,7 +10694,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ - መሀከል</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ - መሀከል </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10742,7 +10742,7 @@ msgctxt ""
"par_id3156049\n"
"help.text"
msgid "Choose <emph>Modify - Alignment - Bottom</emph> (objects selected) ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማሰለፊያ - ከ ታች</emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማሰለፊያ - ከ ታች </emph> (እቃዎች ተመርጠዋል) ($[officename] መሳያ)"
#: 00040501.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3145197\n"
"help.text"
msgid "Choose <emph>Format - Anchor</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ማስቆሚያ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ማስቆሚያ </emph>"
#: 00040501.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3148899\n"
"help.text"
msgid "<variable id=\"anseite\">Choose <emph>Format - Anchor - To Page</emph></variable>"
-msgstr "<variable id=\"anseite\">ይምረጡ <emph>አቀራረብ - ማስቆሚያ - ለ ገጽ</emph></variable>"
+msgstr "<variable id=\"anseite\">ይምረጡ <emph> አቀራረብ - ማስቆሚያ - ለ ገጽ </emph></variable>"
#: 00040501.xhp
msgctxt ""
@@ -10814,7 +10814,7 @@ msgctxt ""
"par_id3149342\n"
"help.text"
msgid "<variable id=\"amabsatz\">Choose <emph>Format - Anchor - To Paragraph</emph></variable>"
-msgstr "<variable id=\"amabsatz\">ይምረጡ <emph>አቀራረብ - ማስቆሚያ - ለ አንቀጽ</emph></variable>"
+msgstr "<variable id=\"amabsatz\">ይምረጡ <emph> አቀራረብ - ማስቆሚያ - ለ አንቀጽ </emph></variable>"
#: 00040501.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3155147\n"
"help.text"
msgid "<variable id=\"amzeichen\">Choose <emph>Format - Anchor - To Character</emph></variable>"
-msgstr "<variable id=\"amzeichen\">ይምረጡ <emph>አቀራረብ - ማስቆሚያ - ለ ባህሪ</emph></variable>"
+msgstr "<variable id=\"amzeichen\">ይምረጡ <emph> አቀራረብ - ማስቆሚያ - ለ ባህሪ </emph></variable>"
#: 00040501.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3153042\n"
"help.text"
msgid "<variable id=\"alszeichen\">Choose <emph>Format - Anchor - As Character</emph></variable>"
-msgstr "<variable id=\"alszeichen\">ይምረጡ <emph>አቀራረብ - ማስቆሚያ - እንደ ባህሪ</emph></variable>"
+msgstr "<variable id=\"alszeichen\">ይምረጡ <emph> አቀራረብ - ማስቆሚያ - እንደ ባህሪ </emph></variable>"
#: 00040501.xhp
msgctxt ""
@@ -10838,7 +10838,7 @@ msgctxt ""
"par_id3146964\n"
"help.text"
msgid "<variable id=\"amrahmen\">Choose <emph>Format - Anchor - To Frame</emph></variable>"
-msgstr "<variable id=\"amrahmen\">ይምረጡ <emph>አቀራረብ - ማስቆሚያ - ለ ክፈፍ</emph></variable>"
+msgstr "<variable id=\"amrahmen\">ይምረጡ <emph> አቀራረብ - ማስቆሚያ - ለ ክፈፍ </emph></variable>"
#: 00040501.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3150781\n"
"help.text"
msgid "<variable id=\"anderzelle\">Choose <emph>Format - Anchor - To Cell</emph></variable>"
-msgstr "<variable id=\"anderzelle\">ይምረጡ <emph>አቀራረብ - ማስቆሚያ - ለ ክፍል</emph></variable>"
+msgstr "<variable id=\"anderzelle\">ይምረጡ <emph> አቀራረብ - ማስቆሚያ - ለ ክፍል </emph></variable>"
#: 00040502.xhp
msgctxt ""
@@ -10870,7 +10870,7 @@ msgctxt ""
"par_id3146857\n"
"help.text"
msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
-msgstr "ይምረጡ <emph>አቀራረብ - መስመር</emph> (ማስደነቂያ እና መሳያ)"
+msgstr "ይምረጡ <emph> አቀራረብ - መስመር </emph> (ማስደነቂያ እና መሳያ)"
#: 00040502.xhp
msgctxt ""
@@ -10878,7 +10878,7 @@ msgctxt ""
"par_id366527\n"
"help.text"
msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
-msgstr "ይምረጡ <emph>አቀራረብ - እቃ መስመር </emph>(መጻፊያ)"
+msgstr "ይምረጡ <emph> አቀራረብ - እቃ መስመር </emph> (መጻፊያ)"
#: 00040502.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3835261\n"
"help.text"
msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
-msgstr "ይምረጡ <emph> አቀራረብ - ንድፍ - መስመር </emph>(ሰንጠረዥ)"
+msgstr "ይምረጡ <emph> አቀራረብ - ንድፍ - መስመር </emph> (ሰንጠረዥ)"
#: 00040502.xhp
msgctxt ""
@@ -10918,7 +10918,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>መስመር - መስመር</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - መስመር </emph> tab"
#: 00040502.xhp
msgctxt ""
@@ -10926,7 +10926,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph>ማሻሻያ/አዲስ - መስመር</emph> tab (ለ ማቅረቢያ ሰነዶች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph> ማሻሻያ/አዲስ - መስመር </emph> tab (ለ ማቅረቢያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -10934,7 +10934,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ድንበሮች</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ድንበሮች </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10942,7 +10942,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - መግለጫ - ድንበሮች</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ - ድንበሮች </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10950,7 +10950,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
-msgstr "ይምረጡ <emph> አቀራረብ - አክሲስ - መስመር</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - አክሲስ - መስመር </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - መጋጠሚያ - መስመር</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - መጋጠሚያ - መስመር </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10966,7 +10966,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ግድግዳ - ድንበሮች</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ግድግዳ - ድንበሮች </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10974,7 +10974,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ወለል - ድንበሮች</emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ወለል - ድንበሮች </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10982,7 +10982,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ቦታ - ድንበሮች </emph> tab (ቻርትስ)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ቦታ - ድንበሮች </emph> tab (ቻርትስ)"
#: 00040502.xhp
msgctxt ""
@@ -10990,7 +10990,7 @@ msgctxt ""
"par_id3151293\n"
"help.text"
msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>መስመር - የ መስመር ዘዴዎች</emph> tab </variable>"
+msgstr "<variable id=\"linienstile\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - የ መስመር ዘዴዎች </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -10998,7 +10998,7 @@ msgctxt ""
"par_id3149317\n"
"help.text"
msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>መስመር - የ ቀስት ዘዴዎች</emph> tab </variable>"
+msgstr "<variable id=\"linienenden\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - የ ቀስት ዘዴዎች </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11006,7 +11006,7 @@ msgctxt ""
"par_id3156082\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11038,7 +11038,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ - ቦታ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ቦታ </emph> tab"
#: 00040502.xhp
msgctxt ""
@@ -11046,7 +11046,7 @@ msgctxt ""
"par_id3145607\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph>ማሻሻያ/አዲስ - ቦታ</emph> tab (ለ ማቅረቢያ ሰነዶች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph> ማሻሻያ/አዲስ - ቦታ </emph> tab (ለ ማቅረቢያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11054,7 +11054,7 @@ msgctxt ""
"par_id3152922\n"
"help.text"
msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ቦታ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"par_id3157894\n"
"help.text"
msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - መግለጫ - ድንበሮች</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ - ድንበሮች </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11070,7 +11070,7 @@ msgctxt ""
"par_id3144444\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ግድግዳ - ቦታ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ግድግዳ - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11078,7 +11078,7 @@ msgctxt ""
"par_id3156543\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ወለል - ቦታ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ወለል - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11086,7 +11086,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ቦታ - ቦታ</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ቦታ - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11094,7 +11094,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - መደብ</emph> tab (በ $[officename] ማስደነቂያ እና $[officename] መሳያ)"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - መደብ </emph> tab (በ $[officename] ማስደነቂያ እና $[officename] መሳያ)"
#: 00040502.xhp
msgctxt ""
@@ -11102,7 +11102,7 @@ msgctxt ""
"par_id3154985\n"
"help.text"
msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ቦታ - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ቦታ - ግልጽነት </emph> tab (የ ቻርትስ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11110,7 +11110,7 @@ msgctxt ""
"par_id3145365\n"
"help.text"
msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ - ግልጽነት</emph> tab (የ ማቅረቢያ ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ - ግልጽነት </emph> tab (የ ማቅረቢያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11118,7 +11118,7 @@ msgctxt ""
"par_id3151117\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ -የ ቻርት ግድግዳ - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ -የ ቻርት ግድግዳ - ግልጽነት </emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11126,7 +11126,7 @@ msgctxt ""
"par_id3147326\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርት ቦታ - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርት ቦታ - ግልጽነት </emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11134,7 +11134,7 @@ msgctxt ""
"par_id3154920\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ -የ ቻርት ወለል - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ -የ ቻርት ወለል - ግልጽነት </emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"par_id3145591\n"
"help.text"
msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ሁሉንም አርእስቶች - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ሁሉንም አርእስቶች - ግልጽነት </emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ዋናው አርእስት - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ዋናው አርእስት - ግልጽነት </emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11158,7 +11158,7 @@ msgctxt ""
"par_id3148556\n"
"help.text"
msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ንዑስ አርእስት - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ንዑስ አርእስት - ግልጽነት </emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11190,7 +11190,7 @@ msgctxt ""
"par_id3151113\n"
"help.text"
msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - እቃ ባህሪዎች - የ ዳታ ነጥብ - ግልጽነት</emph> - tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - እቃ ባህሪዎች - የ ዳታ ነጥብ - ግልጽነት </emph> - tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11198,7 +11198,7 @@ msgctxt ""
"par_id3149266\n"
"help.text"
msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - እቃ ባህሪዎች - ተከታታይ ዳታ - ግልጽነት</emph> - tab (የ ቻርት ሰነዶች)"
+msgstr "ይምረጡ <emph> አቀራረብ - እቃ ባህሪዎች - ተከታታይ ዳታ - ግልጽነት </emph> - tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ - ጥላ</emph> tab </variable>"
+msgstr "<variable id=\"schatte\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ጥላ </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11214,7 +11214,7 @@ msgctxt ""
"par_id3147441\n"
"help.text"
msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ - ከፍታዎች</emph> tab </variable>"
+msgstr "<variable id=\"verlauf\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ከፍታዎች </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11222,7 +11222,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>ቦታ - Hatching</emph> tab </variable>"
+msgstr "<variable id=\"schraffur\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - Hatching </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11230,7 +11230,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ - Bitmaps</emph> tab </variable>"
+msgstr "<variable id=\"bitmap\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - Bitmaps </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11262,7 +11262,7 @@ msgctxt ""
"par_id3149911\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ እና መጠን</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11294,7 +11294,7 @@ msgctxt ""
"par_id3148833\n"
"help.text"
msgid "Open the context menu for the object - choose <emph>Name</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር ለ እቃ - ይምረጡ <emph>ስም</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር ለ እቃ - ይምረጡ <emph> ስም </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id411999\n"
"help.text"
msgid "Open the context menu for the object - choose <emph>Description</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር ለ እቃ - ይምረጡ <emph>መግለጫ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር ለ እቃ - ይምረጡ <emph> መግለጫ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11310,7 +11310,7 @@ msgctxt ""
"par_id3153099\n"
"help.text"
msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ እና መጠን - ቦታ እና መጠን</emph> tab </variable>"
+msgstr "<variable id=\"position2\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን - ቦታ እና መጠን </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11318,7 +11318,7 @@ msgctxt ""
"par_id3152973\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ እና መጠን - ማዞሪያ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን - ማዞሪያ </emph> tab"
#: 00040502.xhp
msgctxt ""
@@ -11342,7 +11342,7 @@ msgctxt ""
"par_id3145666\n"
"help.text"
msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ እና መጠን - ማዘንበያ & የ ጠርዝ ራዲየስ</emph> tab </variable>"
+msgstr "<variable id=\"ecke\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን - ማዘንበያ & የ ጠርዝ ራዲየስ </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
@@ -11358,7 +11358,7 @@ msgctxt ""
"par_id3083283\n"
"help.text"
msgid "Choose <emph>Edit - Points</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ነጥቦች</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ነጥቦች </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11366,7 +11366,7 @@ msgctxt ""
"par_id3145642\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ነጥቦች ማረሚያ</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ነጥቦች ማረሚያ</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ነጥቦች ማረሚያ </emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ነጥቦች ማረሚያ </emph></caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11398,7 +11398,7 @@ msgctxt ""
"par_id3151248\n"
"help.text"
msgid "Choose <emph>Format - Character</emph> (drawing functions)"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ</emph> (መሳያ ተግባሮች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ </emph> (መሳያ ተግባሮች)"
#: 00040502.xhp
msgctxt ""
@@ -11406,7 +11406,7 @@ msgctxt ""
"par_id3145229\n"
"help.text"
msgid "Open context menu - choose <emph>Character</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ባህሪ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ባህሪ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11414,7 +11414,7 @@ msgctxt ""
"par_id3151342\n"
"help.text"
msgid "Open context menu - choose <emph>Size</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>መጠን</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> መጠን </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3149255\n"
"help.text"
msgid "Open context menu - choose <emph>Style</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11430,7 +11430,7 @@ msgctxt ""
"par_id3155177\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Bold</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - ማድመቂያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - ማድመቂያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3151276\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Italic</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - ማዝመሚያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - ማዝመሚያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11478,7 +11478,7 @@ msgctxt ""
"par_id3154589\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Underline</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - ከ ስሩ ማስመሪያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - ከ ስሩ ማስመሪያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"par_id3145131\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - በ ላዩ ላይ መሰረዣ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - በ ላዩ ላይ መሰረዣ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11510,7 +11510,7 @@ msgctxt ""
"par_id3158214\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Shadow</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - ጥላ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - ጥላ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11518,7 +11518,7 @@ msgctxt ""
"par_id3150207\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Contour</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - ቅርጽ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - ቅርጽ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11526,7 +11526,7 @@ msgctxt ""
"par_id3154383\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Superscript</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - በ ትንንሹ ከፍ ብሎ መጻፊያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ዘዴ - በ ትንንሹ ከፍ ብሎ መጻፊያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11534,7 +11534,7 @@ msgctxt ""
"par_id3152767\n"
"help.text"
msgid "Open context menu - choose <emph>Style - Subscript</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - በ ትንንሹ ዝቅ ብሎ መጻፊያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ዘዴ - በ ትንንሹ ዝቅ ብሎ መጻፊያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11542,7 +11542,7 @@ msgctxt ""
"par_id3155377\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>የ መስመር ክፍተት</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> የ መስመር ክፍተት </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11550,7 +11550,7 @@ msgctxt ""
"par_id3154475\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>የ መስመር ክፍተት - ነጠላ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> የ መስመር ክፍተት - ነጠላ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11558,7 +11558,7 @@ msgctxt ""
"par_id3150478\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>የ መስመር ክፍተት - 1.5 መስመሮች</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> የ መስመር ክፍተት - 1.5 መስመሮች </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11566,7 +11566,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>የ መስመር ክፍተት - ድርብ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> የ መስመር ክፍተት - ድርብ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11574,7 +11574,7 @@ msgctxt ""
"par_id3146978\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
-msgstr "ይምረጡ <emph>አቀራረብ - ማሰለፊያ - በ ግራ</emph> (ለ መሳያ ተግባሮች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ማሰለፊያ - በ ግራ </emph> (ለ መሳያ ተግባሮች)"
#: 00040502.xhp
msgctxt ""
@@ -11582,7 +11582,7 @@ msgctxt ""
"par_id3153009\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Left</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማሰለፊያ - በ ግራ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማሰለፊያ - በ ግራ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11606,7 +11606,7 @@ msgctxt ""
"par_id3155823\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
-msgstr "ይምረጡ <emph>አቀራረብ - ማሰለፊያ - በ ቀኝ</emph> (ለ መሳያ ተግባሮች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ማሰለፊያ - በ ቀኝ </emph> (ለ መሳያ ተግባሮች)"
#: 00040502.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id3155762\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Right</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማሰለፊያ - በ ቀኝ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማሰለፊያ - በ ቀኝ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11638,7 +11638,7 @@ msgctxt ""
"par_id3149189\n"
"help.text"
msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
-msgstr "ይምረጡ <emph>አቀራረብ - ማሰለፊያ - መሀከል</emph> (ለ መሳያ ተግባሮች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ማሰለፊያ - መሀከል </emph> (ለ መሳያ ተግባሮች)"
#: 00040502.xhp
msgctxt ""
@@ -11646,7 +11646,7 @@ msgctxt ""
"par_id3154624\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Center</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማሰለፊያ - መሀከል</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማሰለፊያ - መሀከል </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11678,7 +11678,7 @@ msgctxt ""
"par_id3168612\n"
"help.text"
msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ማሰለፊያ - እኩል ማካፈያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ማሰለፊያ - እኩል ማካፈያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11710,7 +11710,7 @@ msgctxt ""
"par_id3144503\n"
"help.text"
msgid "Choose <emph>Format - Group</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ቡድን</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ቡድን </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11718,7 +11718,7 @@ msgctxt ""
"par_id3154854\n"
"help.text"
msgid "Open context menu - choose <emph>Group</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ቡድን</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ቡድን </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11734,7 +11734,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ቡድን</emph> (ለ መሳያ ሰነዶች)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ቡድን </emph> (ለ መሳያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11742,7 +11742,7 @@ msgctxt ""
"par_id3149508\n"
"help.text"
msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ቡድን - ቡድን</emph> (ለ ፎርም እቃዎች)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ቡድን - ቡድን </emph> (ለ ፎርም እቃዎች)"
#: 00040502.xhp
msgctxt ""
@@ -11774,7 +11774,7 @@ msgctxt ""
"par_id3163378\n"
"help.text"
msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መለያያ</emph> (ለ መሳያ ሰነዶች)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መለያያ </emph> (ለ መሳያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11782,7 +11782,7 @@ msgctxt ""
"par_id3156038\n"
"help.text"
msgid "Open context menu - choose <emph>Ungroup</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>መለያያ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> መለያያ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11806,7 +11806,7 @@ msgctxt ""
"par_id3153109\n"
"help.text"
msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
-msgstr "ይምረጡ <emph> አቀራረብ - ቡድን - ከ ቡድን መውጫ </emph> (ለ ጽሁፍ ሰነዶች፡ ሰንጠረዦች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ቡድን - ከ ቡድን መውጫ </emph> (ለ ጽሁፍ ሰነዶች: ሰንጠረዦች)"
#: 00040502.xhp
msgctxt ""
@@ -11814,7 +11814,7 @@ msgctxt ""
"par_id3145678\n"
"help.text"
msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ከ ቡድን መውጫ</emph> (ለ መሳያ ሰነዶች)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ከ ቡድን መውጫ </emph> (ለ መሳያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11822,7 +11822,7 @@ msgctxt ""
"par_id3152367\n"
"help.text"
msgid "Open context menu - choose <emph>Exit Group</emph>"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ከ ቡድን መውጫ</emph>"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ከ ቡድን መውጫ </emph>"
#: 00040502.xhp
msgctxt ""
@@ -11846,7 +11846,7 @@ msgctxt ""
"par_id3149129\n"
"help.text"
msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
-msgstr "ይምረጡ <emph> አቀራረብ - ቡድን - ወደ ቡድን መግቢያ </emph> (ለ ጽሁፍ ሰነዶች፡ ሰንጠረዦች)"
+msgstr "ይምረጡ <emph> አቀራረብ - ቡድን - ወደ ቡድን መግቢያ </emph> (ለ ጽሁፍ ሰነዶች: ሰንጠረዦች)"
#: 00040502.xhp
msgctxt ""
@@ -11854,7 +11854,7 @@ msgctxt ""
"par_id3145354\n"
"help.text"
msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ቡድን ያስገቡ</emph> (ለ መሳያ ሰነዶች)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ቡድን ያስገቡ </emph> (ለ መሳያ ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -11902,7 +11902,7 @@ msgctxt ""
"par_id3147294\n"
"help.text"
msgid "Choose <emph>Format - Row - Height</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ረድፍ - እርዝመት</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ረድፍ - እርዝመት </emph>"
#: 00040503.xhp
msgctxt ""
@@ -11918,7 +11918,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "Choose <emph>Format - Column - Width</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - የ አምድ - ስፋት</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - የ አምድ - ስፋት </emph>"
#: 00040503.xhp
msgctxt ""
@@ -11942,7 +11942,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>View - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph>ማሻሻያ/አዲስ - ቁጥሮች</emph> tab </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph> ማሻሻያ/አዲስ - ቁጥሮች </emph> tab </caseinline></switchinline>"
#: 00040503.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3153799\n"
"help.text"
msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
-msgstr "<variable id=\"zeilenloeschen\">የ አገባብ ዝርዝር መክፈቻ ለ አምድ ራስጌ ከ ዳታቤዝ ሰንጠረዥ ውስጥ መክፈቻ - <emph>ረድፎች ማጥፊያ</emph></variable>"
+msgstr "<variable id=\"zeilenloeschen\">የ አገባብ ዝርዝር መክፈቻ ለ አምድ ራስጌ ከ ዳታቤዝ ሰንጠረዥ ውስጥ መክፈቻ - <emph> ረድፎች ማጥፊያ </emph></variable>"
#: 00040503.xhp
msgctxt ""
@@ -12014,7 +12014,7 @@ msgctxt ""
"par_id3150495\n"
"help.text"
msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መገልበጫ</emph> ($[officename] ለ መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መገልበጫ </emph> ($[officename] ለ መሳያ)"
#: 00040503.xhp
msgctxt ""
@@ -12022,7 +12022,7 @@ msgctxt ""
"par_id3155742\n"
"help.text"
msgid "Choose <emph>Format - Image - Image</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - ምስል</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - ምስል </emph> tab"
#: 00040503.xhp
msgctxt ""
@@ -12030,7 +12030,7 @@ msgctxt ""
"par_id3158407\n"
"help.text"
msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>መገልበጫ</emph> (ለ ማቅረቢያ ሰነዶች)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> መገልበጫ </emph> (ለ ማቅረቢያ ሰነዶች)"
#: 00040503.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id3150290\n"
"help.text"
msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መገልበጫ - በ ቁመት</emph> ($[officename] ለ መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መገልበጫ - በ ቁመት </emph> ($[officename] ለ መሳያ)"
#: 00040503.xhp
msgctxt ""
@@ -12046,7 +12046,7 @@ msgctxt ""
"par_id3153179\n"
"help.text"
msgid "Choose <emph>Format - Image - Image</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - ምስል</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - ምስል </emph> tab"
#: 00040503.xhp
msgctxt ""
@@ -12054,7 +12054,7 @@ msgctxt ""
"par_id3157960\n"
"help.text"
msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>መገልበጫ - በ ቁመት</emph> (ለ ማቅረቢያ ሰነዶች)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> መገልበጫ - በ ቁመት </emph> (ለ ማቅረቢያ ሰነዶች)"
#: 00040503.xhp
msgctxt ""
@@ -12062,7 +12062,7 @@ msgctxt ""
"par_id3153369\n"
"help.text"
msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መገልበጫ - በ አግድም</emph> ($[officename] ለ መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መገልበጫ - በ አግድም </emph> ($[officename] ለ መሳያ)"
#: 00040503.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "Choose <emph>Format - Image</emph>, and then click the <emph>Image</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል</emph>, እና ከዛ ይጫኑ የ <emph>ምስል</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል </emph> እና ከዛ ይጫኑ የ <emph> ምስል </emph> tab"
#: 00040503.xhp
msgctxt ""
@@ -12078,7 +12078,7 @@ msgctxt ""
"par_id3156106\n"
"help.text"
msgid "Choose <emph>Format - Flip - Horizontally</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - መገልበጫ - በ አግድም</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - መገልበጫ - በ አግድም </emph>"
#: 00040503.xhp
msgctxt ""
@@ -12094,7 +12094,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ስርጭት</emph> ($[officename] መሳያ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ስርጭት </emph> ($[officename] መሳያ)"
#: 00040503.xhp
msgctxt ""
@@ -12102,7 +12102,7 @@ msgctxt ""
"par_id3149064\n"
"help.text"
msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
-msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph>ስርጭት</emph> ($[officename] ማስደነቂያ)"
+msgstr "መክፈቻ የ አገባብ ዝርዝር - ይምረጡ <emph> ስርጭት </emph> ($[officename] ማስደነቂያ)"
#: 01000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index f94fb802de5..45eec173153 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:19+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 14:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496791158.000000\n"
+"X-POOTLE-MTIME: 1498056227.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN108D0\n"
"help.text"
msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>."
-msgstr "መክፈቻ የ <link href=\"text/shared/explorer/database/dabawiz00.xhp\">ዳታቤዝ አዋቂ</link> ለ መፍጠሪያ የ <link href=\"text/shared/explorer/database/dabadoc.xhp\">ዳታቤዝ ፋይል</link>."
+msgstr "መክፈቻ የ <link href=\"text/shared/explorer/database/dabawiz00.xhp\"> ዳታቤዝ አዋቂ </link> ለ መፍጠሪያ የ <link href=\"text/shared/explorer/database/dabadoc.xhp\"> ዳታቤዝ ፋይል </link>"
#: 01010000.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "To change your return address, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, and then click on the <emph>User Data</emph> tab."
-msgstr "የ መመለሻ አድራሻውን ለመቀየር ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link> እና ከዛ ይጫኑ በ <emph>ተጠቃሚ ዳታ</emph> tab."
+msgstr "የ መመለሻ አድራሻውን ለመቀየር ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link> እና ከዛ ይጫኑ በ <emph> ተጠቃሚ ዳታ </emph> tab."
#: 01010201.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3152780\n"
"help.text"
msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
-msgstr "የ ዳታቤዝ ሜዳ ስም በ ቅንፍ የተከበበ ነው በ <emph>ጽሁፍ ምልክት text</emph> ሳጥን ውስጥ: እርስዎ ከፈለጉ መለየት ይችላሉ የ ዳታቤዝ ሜዳዎች በ ክፍተት: ይጫኑ ማስገቢያውን ለ ማስገባት የ ዳታቤዝ ሜዳ በ አዲስ መሰር ውስጥ"
+msgstr "የ ዳታቤዝ ሜዳ ስም በ ቅንፍ የተከበበ ነው በ <emph> ጽሁፍ ምልክት </emph> ሳጥን ውስጥ: እርስዎ ከፈለጉ መለየት ይችላሉ የ ዳታቤዝ ሜዳዎች በ ክፍተት: ይጫኑ ማስገቢያውን ለ ማስገባት የ ዳታቤዝ ሜዳ በ አዲስ መሰር ውስጥ"
#: 01010201.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3150466\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">መጠቀም የሚፈልጉትን የ ወረቀት አይነት ይምረጡ</ahelp> እያንዳንዱ ወረቀት የ ራሱ መጠን እና አቀራረብ አለው"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">መጠቀም የሚፈልጉትን የ ወረቀት አይነት ይምረጡ </ahelp> እያንዳንዱ ወረቀት የ ራሱ መጠን እና አቀራረብ አለው"
#: 01010201.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"par_id3149235\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">ይምረጡ መጠቀም የሚፈልጉትን መጠን አቀራረብ: ዝግጁ የሆነው አቀራረብ እንደ እርስዎ ምርጫ አይነቱ ይወሰናል የ <emph>Brand</emph> ዝርዝር መጠቀም ከ ፈለጉ ምልክት ማስተካከያ አቀራረብ: ይምረጡ <emph>[User]</emph>, እና ከዛ ይጫኑ <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>አቀራረብ</emph></link> tab አቀራረብ ለመግለጽ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">ይምረጡ መጠቀም የሚፈልጉትን መጠን አቀራረብ: ዝግጁ የሆነው አቀራረብ እንደ እርስዎ ምርጫ አይነቱ ይወሰናል <emph> አይነቱ </emph> ዝርዝር መጠቀም ከ ፈለጉ ምልክት ማስተካከያ አቀራረብ: ይምረጡ <emph>[ተጠቃሚ]</emph> እና ከዛ ይጫኑ <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph> አቀራረብ </emph></link> tab አቀራረብ ለመግለጽ </ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>."
-msgstr "በ እርስዎ የ ንግድ ካርድ ላይ ማስገባት የሚፈልጉትን የ ግንኙነት መረጃ ያስገቡ: ይህን መረጃ ማረም ወይንም ማሻሻል ይችላሉ በመምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ</emph>."
+msgstr "በ እርስዎ የ ንግድ ካርድ ላይ ማስገባት የሚፈልጉትን የ ግንኙነት መረጃ ያስገቡ: ይህን መረጃ ማረም ወይንም ማሻሻል ይችላሉ በመምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ </emph>"
#: 01010303.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3153779\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"> </caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"> </caseinline><defaultinline>ለምሳሌ: ሁሉንም የ ጽሁፍ ፋይሎች በ ፎልደር ዝርዝር ውስጥ ለማሳየት: ያስገቡ ኮከብ ሁለ ገብ ከ ጽሁ ፋይል ተጨማሪ (*.txt) ጋር: እና ከዛ ይጫኑ <emph> መክፈቻ</emph> ይጠቀሙ የ ጥያቄ ምልክት (?) ሁለ ገብ ለ መወከል ማንኛውንም ባህሪ: እንደ (??3*.txt) ውስጥ: የ ጽሁፍ ፋይሎች ብቻ ከ '3' የሚያሳየው እንደ ሶስት ባህሪዎች በ ፋይል ስም ውስጥ </defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"> </caseinline><defaultinline>ለምሳሌ: ሁሉንም የ ጽሁፍ ፋይሎች በ ፎልደር ዝርዝር ውስጥ ለማሳየት: ያስገቡ ኮከብ ሁለ ገብ ከ ጽሁ ፋይል ተጨማሪ (*.txt) ጋር: እና ከዛ ይጫኑ <emph> መክፈቻ </emph> ይጠቀሙ የ ጥያቄ ምልክት (?) ሁለ ገብ ለ መወከል ማንኛውንም ባህሪ: እንደ (??3*.txt) ውስጥ: የ ጽሁፍ ፋይሎች ብቻ ከ '3' የሚያሳየው እንደ ሶስት ባህሪዎች በ ፋይል ስም ውስጥ </defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
-msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">ይምረጡ የ ፋይል አይነት እርስው ምክፈት የሚፈልጉትን ወይንም ይምረጡ <emph>ሁሉንም ፋይሎች (*)</emph> ለማሳየት ሁሉንም የ ፋይሎች ዝርዝር በ ፎልደር ውስጥ </ahelp>"
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">ይምረጡ የ ፋይል አይነት እርስው ምክፈት የሚፈልጉትን ወይንም ይምረጡ <emph> ሁሉንም ፋይሎች (*)</emph> ለማሳየት ሁሉንም የ ፋይሎች ዝርዝር በ ፎልደር ውስጥ </ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id3146905\n"
"help.text"
msgid "all template folders as defined in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - Paths</emph></link>"
-msgstr "ሁሉም የ ቴምፕሌት ፎልደሮች ተገልጸዋል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - መንገድ</emph></link>"
+msgstr "ሁሉም የ ቴምፕሌት ፎልደሮች ተገልጸዋል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - መንገድ </emph></link>"
#: 01020000.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"par_id6930143\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Save As</item> and select a template filter to save a template at any other folder that is not in the list, then the documents based on that template will not be checked."
-msgstr "እርስዎ በሚጠቀሙ ጊዜ <item type=\"menuitem\">ፋይል - ማስቀመጫ እንደ</item> እና ይምረጡ የ ቴምፕሌት ማጣሪያ ለማስቀመጥ ቴምፕሌት በ ሌላ ፎልደር ውስጥ በ ዝርዝሩ ውስጥ የሌለ: እና ከዛ ሰነዶች ቴምፕሌት መሰረት ያደረገ አይመረመርም"
+msgstr "እርስዎ በሚጠቀሙ ጊዜ <item type=\"menuitem\"> ፋይል - ማስቀመጫ እንደ </item> እና ይምረጡ የ ቴምፕሌት ማጣሪያ ለማስቀመጥ ቴምፕሌት በ ሌላ ፎልደር ውስጥ በ ዝርዝሩ ውስጥ የሌለ: እና ከዛ ሰነዶች ቴምፕሌት መሰረት ያደረገ አይመረመርም"
#: 01020000.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_id3153096\n"
"help.text"
msgid "To apply the new styles from the template to the document, click <emph>Update Styles</emph>."
-msgstr "አዲሱን ዘዴዎች ለ መፈጸም በ ሰነዱ ላይ: ይጫኑ <emph>ማሻሻያ ዘዴዎች</emph>."
+msgstr "አዲሱን ዘዴዎች ለ መፈጸም በ ሰነዱ ላይ: ይጫኑ <emph> ማሻሻያ ዘዴዎች </emph>"
#: 01020000.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3147581\n"
"help.text"
msgid "To retain the styles that are currently used in the document, click <emph>Keep Old Styles</emph>."
-msgstr "በ ሰነዱ ላይ አሁን የሚጠቀሙበትን ዘዴዎች ለመጠበቅ: ይጫኑ <emph>አሮጌ ዘዴዎች መጠበቂያ</emph>."
+msgstr "በ ሰነዱ ላይ አሁን የሚጠቀሙበትን ዘዴዎች ለመጠበቅ: ይጫኑ <emph> አሮጌ ዘዴዎች መጠበቂያ </emph>"
#: 01020000.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3147654\n"
"help.text"
msgid "To save a document as a template, use the command <emph>File - Templates - Save As Template</emph>."
-msgstr "ሰነድ እንደ ቴምፕሌት ለማስቀመጥ: ይህን ትእዛዝ ይጠቀሙ <emph>ፋይል - ቴምፕሌት - እንደ ቴምፕሌት ማስቀመጫ</emph>."
+msgstr "ሰነድ እንደ ቴምፕሌት ለማስቀመጥ: ይህን ትእዛዝ ይጠቀሙ <emph> ፋይል - ቴምፕሌት - እንደ ቴምፕሌት ማስቀመጫ </emph>"
#: 01070000.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
-msgstr "<ahelp hid=\"HID_FILESAVE_FILETYPE\">እርስዎ ማስቀመጥ ለሚፈልጉት ሰነድ የ ፋይል አቀራረብ ይምረጡ: </ahelp> በ ማሳያው ቦታ ብቻ: የዚህ አይነት ፋይል ሰነዶች ብቻ ይታያሉ: የ ፋይል አይነቶች ተገልጸዋል በ <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">ማጣሪያዎች ማምጫ እና መላኪያ መረጃ ውስጥ</link>."
+msgstr "<ahelp hid=\"HID_FILESAVE_FILETYPE\">እርስዎ ማስቀመጥ ለሚፈልጉት ሰነድ የ ፋይል አቀራረብ ይምረጡ: </ahelp> በ ማሳያው ቦታ ብቻ: የዚህ አይነት ፋይል ሰነዶች ብቻ ይታያሉ: የ ፋይል አይነቶች ተገልጸዋል በ <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\"> ማጣሪያዎች ማምጫ እና መላኪያ መረጃ ውስጥ </link>"
#: 01070000.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"par_id3145152\n"
"help.text"
msgid "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protects the file with a <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\">password</link> that must be entered before a user can open the file.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">ፋይሉን ይጠብቃል በ <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\">መግቢያ ቃል </link> ተጠቃሚው ማስገባት አለበት ፋይሉን ለ መክፈት</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">ፋይሉን ይጠብቃል በ <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\"> መግቢያ ቃል </link> ተጠቃሚው ማስገባት አለበት ፋይሉን ለ መክፈት</ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">Saves the user's full name with the file. You can edit the name by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">የ ተጠቃሚውን ሙሉ ስም ከ ፋይሉ ጋር ማስቀመጫ: ስሙን ማረም ይችላሉ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያ - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">የ ተጠቃሚውን ሙሉ ስም ከ ፋይሉ ጋር ማስቀመጫ: ስሙን ማረም ይችላሉ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያ - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ </emph></ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"par_idN106B8\n"
"help.text"
msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Track Changes - Record Changes</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ለውጦችን መመዝገብ እንዲችል ለማስቻል ይህ ተመሳሳይ ነው ከ <emph>ማረሚያ - ለውጦችን መከታተያ - ለውጦችን መመዝገብ</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ ለውጦችን መመዝገብ እንዲችል ለማስቻል ይህ ተመሳሳይ ነው ከ <emph> ማረሚያ - ለውጦችን መከታተያ - ለውጦችን መመዝገብ </emph>:</ahelp>"
#: 01100600.xhp
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"par_idN106D4\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/securityinfopage/protect\">Protects the change recording state with a password. If change recording is protected for the current document, the button is named <emph>Unprotect</emph>. Click <emph>Unprotect</emph> and type the correct password to disable the protection.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/securityinfopage/protect\">ለውጥ ከ መመዝገብ መቀየር ይጠብቀዋል: ለውጥ መመዝገብ ከ ተጠበቀ ለ አሁኑ ሰነድ: ቁልፉ ይሰየማል <emph>አትጠብቅ</emph>. ይጫኑ <emph>አትጠብቅ</emph> እና ይጻፉ ትክክለኛውን የ መግቢያ ቃል ጥበቃውን ለማሰናከል </ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/securityinfopage/protect\">ለውጥ ከ መመዝገብ መቀየር ይጠብቀዋል: ለውጥ መመዝገብ ከ ተጠበቀ ለ አሁኑ ሰነድ: ቁልፉ ይሰየማል <emph> አትጠብቅ </emph> ይጫኑ <emph> አትጠብቅ </emph> እና ይጻፉ ትክክለኛውን የ መግቢያ ቃል ጥበቃውን ለማሰናከል: </ahelp>"
#: 01110000.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"par_id201612110239454950\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/options\">Opens the <emph>Printer Options</emph> dialog where you can override the global printer options set on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Print</emph> panel for the current document.</ahelp>"
-msgstr "<ahelp hid=\"svt/ui/printersetupdialog/options\">መክፈቻ የ <emph>ማተሚያ ምርጫዎች</emph> ንግግር እርስዎ በላዩ ላይ የሚጽፉበት አለም አቀፍ የ ማተሚያ ምርጫ ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>መጻፊያ</emph></caseinline><caseinline select=\"CALC\"><emph>ሰንጠረዥ</emph></caseinline><defaultinline>መጻፊያ/ዌብ</defaultinline></switchinline><emph> - ማተሚያ</emph> ክፍል ለ አሁኑ ሰነድ </ahelp>"
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/options\">መክፈቻ የ <emph>ማተሚያ ምርጫዎች</emph> ንግግር እርስዎ በላዩ ላይ የሚጽፉበት አለም አቀፍ የ ማተሚያ ምርጫ ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> መጻፊያ </emph></caseinline><caseinline select=\"CALC\"><emph> ሰንጠረዥ </emph></caseinline><defaultinline> መጻፊያ/ዌብ </defaultinline></switchinline><emph> - ማተሚያ </emph> ክፍል ለ አሁኑ ሰነድ </ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id3152823\n"
"help.text"
msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default e-mail program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General is used."
-msgstr "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ</ahelp></variable> ሰነዱ አዲስ ከሆነ እና ቀደም ብሎ ያልተቀመጠ ከሆነ: አቀራረቡ ይወሰናል በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - መጫኛ/ማስቀመጫ - ባጠቃላይን ይጠቀማል"
+msgstr "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">አዲስ መስኮት መክፈቻ በ እርስዎ ነባር የ ኢ-ሜይል ፕሮግራም ከ አሁኑ ሰነድ ጋር እንደ ማያያዣ</ahelp></variable> ሰነዱ አዲስ ከሆነ እና ቀደም ብሎ ያልተቀመጠ ከሆነ: አቀራረቡ ይወሰናል በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - መጫኛ/ማስቀመጫ - ባጠቃላይን ይጠቀማል"
#: 01160200.xhp
msgctxt ""
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">ይምረጡ የ አንቀጽ ዘዴ ወይንም የ ረቂቅ ደረጃ እርስዎ መጠቀም የሚፈልጉትን ለ መለያየት የ ሰነዱን ምንጭ ከ ንዑስ-ሰነዶች </ahelp> በ ነባር አዲስ ሰነድ የሚፈጠረው ለ እያንዳንዱ ረቂቅ ደረጃ 1 ነው"
#: 01160300.xhp
@@ -5206,7 +5206,7 @@ msgctxt ""
"par_id3155504\n"
"help.text"
msgid "If you change the content of a record in a database table that has not been saved, and then use the<emph> Undo</emph> command, the record is erased."
-msgstr "እርስዎ ከ ቀየሩ ይዞታዎችን ከ ዳታቤዝ ሰንጠረዥ ውስጥ ተቀምጦ ያልነበረ: እና ከዛ ይጠቀሙ የ <emph> መተው</emph> ትእዛዝ: መዝገቡ ይሰረዛል"
+msgstr "እርስዎ ከ ቀየሩ ይዞታዎችን ከ ዳታቤዝ ሰንጠረዥ ውስጥ ተቀምጦ ያልነበረ: እና ከዛ ይጠቀሙ የ <emph> መተው </emph> ትእዛዝ: መዝገቡ ይሰረዛል"
#: 02010000.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
-msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">በ ትንንሽ ፊደሎች እና በ አቢኢይ ፊደሎች ባህሪዎች መካከል ይለያል </ahelp></variable>"
+msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">በ ታችኛው ጉዳይ ፊደል እና በ ላይኛው ጉዳይ ፊደል ባህሪዎች መካከል ይለያል </ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ጠቅላላ ክፍሎች</caseinline><defaultinline>ሙሉ ቃሎች ብቻ</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ጠቅላላ ክፍሎች </caseinline><defaultinline> ሙሉ ቃሎች ብቻ </defaultinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6286,7 +6286,7 @@ msgctxt ""
"par_idN109DF\n"
"help.text"
msgid "If you want to search for text in which attributes were set by using direct formatting and styles, select the <emph>Including Styles</emph> box."
-msgstr "እርስዎ ጽሁፍ መፈለግ ከ ፈለጉ በ መለያ የ ተሰናዱ በ ቀጥታ አቀራረብ እና ዘዴዎች: ይምረጡ የ <emph>ዘዴዎች ማካተቻ</emph>ሳጥን"
+msgstr "እርስዎ ጽሁፍ መፈለግ ከ ፈለጉ በ መለያ የ ተሰናዱ በ ቀጥታ አቀራረብ እና ዘዴዎች: ይምረጡ የ <emph> ዘዴዎች ማካተቻ </emph> ሳጥን"
#: 02100000.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3159155\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Find</emph> or the <emph>Replace</emph> box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ይጫኑ በ <emph>መፈለጊያ</emph> ወይንም በ <emph>መቀየሪያ</emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ ይህን ቁልፍ ለማስወገድ ከ መፈለጊያ መመዘኛ መሰረት አቀራረብ ውስጥ </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ይጫኑ በ <emph> መፈለጊያ </emph> ወይንም በ <emph> መቀየሪያ </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ ይህን ቁልፍ ለማስወገድ ከ መፈለጊያ መመዘኛ መሰረት አቀራረብ ውስጥ </caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6630,7 +6630,7 @@ msgctxt ""
"par_id3149031\n"
"help.text"
msgid "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
-msgstr "ማንኛውንም ነጠላ ባህሪ ይወክላል ከ መስመር መጨረሻ ወይንም ከ አንቀጽ መጨረሻ በስተቀር: ለምሳሌ: የ መፈለጊያ ደንብ \"sh.rt\" ይመልሳል ሁለቱንም \"shirt\" እና \"short\"."
+msgstr "ማንኛውንም ነጠላ ባህሪ ይወክላል ከ መስመር መጨረሻ ወይንም ከ አንቀጽ መጨረሻ በስተቀር: ለምሳሌ: የ መፈለጊያ ደንብ \"sh.rt\" ይመልሳል ሁለቱንም \"shirt\" እና \"short\""
#: 02100001.xhp
msgctxt ""
@@ -6646,7 +6646,7 @@ msgctxt ""
"par_id3155351\n"
"help.text"
msgid "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
-msgstr "መፈለጊያ ደንብ ፈልጎ የሚያገኘው የሚፈለገው ደንብ ከ አንቀጽ መጀመሪያ ላይ ከሆነ ነው: የተለዩ እቃዎች እንደ ባዶ ሜዳዎች ወይንም ባህሪዎች-ማስቆሚያ ክፈፎች: በ አንቀጽ መጀመሪያ ላይ ይተዋሉ: ለምሳሌ: \"^ጴጥሮስ\"."
+msgstr "መፈለጊያ ደንብ ፈልጎ የሚያገኘው የሚፈለገው ደንብ ከ አንቀጽ መጀመሪያ ላይ ከሆነ ነው: የተለዩ እቃዎች እንደ ባዶ ሜዳዎች ወይንም ባህሪዎች-ማስቆሚያ ክፈፎች: በ አንቀጽ መጀመሪያ ላይ ይተዋሉ: ለምሳሌ: \"^ጴጥሮስ\""
#: 02100001.xhp
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"par_id3152542\n"
"help.text"
msgid "Only finds the search term if the term appears at the end of a paragraph. Special objects such as empty fields or character-anchored frames at the end of a paragraph are ignored. Example: \"Peter$\"."
-msgstr "መፈለጊያ ደንብ ፈልጎ የሚያገኘው የሚፈለገው ደንብ ከ አንቀጽ መጨረሻ ላይ ከሆነ ነው: የተለዩ እቃዎች እንደ ባዶ ሜዳዎች ወይንም ባህሪዎች-ማስቆሚያ ክፈፎች: በ አንቀጽ መጨረሻ ላይ ይተዋሉ: ለምሳሌ: \"ጴጥሮስ$\"."
+msgstr "መፈለጊያ ደንብ ፈልጎ የሚያገኘው የሚፈለገው ደንብ ከ አንቀጽ መጨረሻ ላይ ከሆነ ነው: የተለዩ እቃዎች እንደ ባዶ ሜዳዎች ወይንም ባህሪዎች-ማስቆሚያ ክፈፎች: በ አንቀጽ መጨረሻ ላይ ይተዋሉ: ለምሳሌ: \"ጴጥሮስ$\""
#: 02100001.xhp
msgctxt ""
@@ -6758,7 +6758,7 @@ msgctxt ""
"par_id3153700\n"
"help.text"
msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Find</emph> and <emph>Replace</emph> boxes, and then perform a search and replace."
-msgstr "የ መስመር መጨረሻ ይወክላል የ ገባውን በ Shift+ማስገቢያ ቁልፍ ጥምረት: የ መስመር መጨረሻ ለ መቀየር ወደ አንቀጽ መጨረሻ: ያስገቡ <emph>\\n</emph> በ <emph>መፈለጊያ</emph> እና <emph>መቀየሪያ</emph> ሳጥኖች ውስጥ: እና ከዛ መፈለጊያ እና መቀየሪያ ይፈጽሙ"
+msgstr "የ መስመር መጨረሻ ይወክላል የ ገባውን በ Shift+ማስገቢያ ቁልፍ ጥምረት: የ መስመር መጨረሻ ለ መቀየር ወደ አንቀጽ መጨረሻ: ያስገቡ <emph>\\n</emph> በ <emph> መፈለጊያ </emph> እና <emph> መቀየሪያ </emph> ሳጥኖች ውስጥ: እና ከዛ መፈለጊያ እና መቀየሪያ ይፈጽሙ"
#: 02100001.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id9262672\n"
"help.text"
msgid "\\n in the <emph>Find</emph> text box stands for a line break that was inserted with the Shift+Enter key combination."
-msgstr "\\n በ <emph>መፈለጊያ</emph> ጽሁፍ ሳጥን ውስጥ የ መስመር መጨረሻ ይወክላል ለገባው በ Shift+ማስገቢያ ጥምረት ቁልፍ"
+msgstr "\\n በ <emph> መፈለጊያ </emph> ጽሁፍ ሳጥን ውስጥ የ መስመር መጨረሻ ይወክላል ለገባው በ Shift+ማስገቢያ ጥምረት ቁልፍ"
#: 02100001.xhp
msgctxt ""
@@ -6862,7 +6862,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "For example, if you enter \"window\" in the <emph>Find</emph> box and \"&frame\" in the <emph>Replace</emph> box, the word \"window\" is replaced with \"windowframe\"."
-msgstr "ለምሳሌ: እርስዎ ካስገቡ \"መስኮት\" በ <emph>መፈለጊያ</emph> ሳጥን ውስጥ: እና \"&ክፈፍ\" በ <emph>መቀየሪያ</emph> ሳጥን ውስጥ: ይህ ቃል \"መስኮት\" ይቀየራል በ \"መስኮት ክፈፍ\":"
+msgstr "ለምሳሌ: እርስዎ ካስገቡ \"መስኮት\" በ <emph> መፈለጊያ </emph> ሳጥን ውስጥ: እና \"&ክፈፍ\" በ <emph> መቀየሪያ </emph> ሳጥን ውስጥ: ይህ ቃል \"መስኮት\" ይቀየራል በ \"መስኮት ክፈፍ\":"
#: 02100001.xhp
msgctxt ""
@@ -6982,7 +6982,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "For certain symbol fonts the code for special characters may depend on the used font. You can view the codes by choosing <emph>Insert - Special Character</emph>."
-msgstr "ለ አንዳንድ የ ፊደል ምልክቶች ኮድ ለ ተለዩ ባህሪዎች እንደ ፊደሉ አይነት ይለያያል: እርስዎ ኮድ መመልከት ይችላሉ በ መምረጥ <emph>ማስገቢያ - የ ተለዩ ባህሪዎች </emph>."
+msgstr "ለ አንዳንድ የ ፊደል ምልክቶች ኮድ ለ ተለዩ ባህሪዎች እንደ ፊደሉ አይነት ይለያያል: እርስዎ ኮድ መመልከት ይችላሉ በ መምረጥ <emph> ማስገቢያ - የ ተለዩ ባህሪዎች </emph>"
#: 02100001.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_id3145730\n"
"help.text"
msgid "Represents a lowercase character if <emph>Match case</emph> is selected in <emph>Options</emph>."
-msgstr "የሚወክለው ትንንሽ ፊደሎችን ከሆነ <emph>ጉዳይ ማመሳሰያ</emph> ይመረጣል ከ <emph>ምርጫዎች</emph>ውስጥ"
+msgstr "የሚወክለው የ ታችኛውን ጉዳይ ፊደሎችን ከሆነ <emph> ጉዳይ ማመሳሰያ </emph> ይመረጣል ከ <emph> ምርጫዎች </emph> ውስጥ"
#: 02100001.xhp
msgctxt ""
@@ -7230,7 +7230,7 @@ msgctxt ""
"par_id3150092\n"
"help.text"
msgid "Represents an uppercase character if <emph>Match case</emph> is selected in <emph>Options.</emph>"
-msgstr "የሚወክለው አቢይ ፊደሎችን ከሆነ <emph>ጉዳይ ማመሳሰያ</emph> ይመረጣል ከ <emph>ምርጫዎች</emph>ውስጥ"
+msgstr "የሚወክለው የ ላይኛውን ጉዳይ ፊደሎች ከሆነ <emph> ጉዳይ ማመሳሰያ </emph> ይመረጣል ከ <emph> ምርጫዎች </emph> ውስጥ"
#: 02100001.xhp
msgctxt ""
@@ -7302,7 +7302,7 @@ msgctxt ""
"par_id4721823\n"
"help.text"
msgid "{3} means there must be exactly 3 copies of \"digit\","
-msgstr "{3} ማለት መኖር አለበት በትክክል 3 ኮፒዎች በ \"ዲጂት\","
+msgstr "{3} ማለት መኖር አለበት በትክክል 3 ኮፒዎች በ \"ዲጂት\""
#: 02100001.xhp
msgctxt ""
@@ -7366,7 +7366,7 @@ msgctxt ""
"par_id3149551\n"
"help.text"
msgid "For example, a similarity search can find words that differ from the <emph>Find</emph> text by two characters."
-msgstr "ለምሳሌ: ተመሳሳይ መፈለጊያ ያገኛል ቃላቶች የሚለዩ በ <emph>መፈለጊያ</emph> ጽሁፍ በ ሁለት ባህሪዎች"
+msgstr "ለምሳሌ: ተመሳሳይ መፈለጊያ ያገኛል ቃላቶች የሚለዩ በ <emph> መፈለጊያ </emph> ጽሁፍ በ ሁለት ባህሪዎች"
#: 02100100.xhp
msgctxt ""
@@ -7582,7 +7582,7 @@ msgctxt ""
"par_id3149203\n"
"help.text"
msgid "Finds characters that use the <emph>Capital, Lowercase, Small capitals, </emph>and <emph>Title </emph>character attributes."
-msgstr "ባህሪዎችን ፈልጎ ያገኛል የሚጠቀሙ <emph>አቢይ ፊደል: ዝቅተኛ ጉዳይ: ትንሽ አቢይ ፊደል: </emph>እና <emph>አርእስት </emph> ባህሪዎች መለያ"
+msgstr "ባህሪዎችን ፈልጎ ያገኛል የሚጠቀሙ <emph> አቢይ ፊደል: የ ታችኛው ጉዳይ ፊደል: ትንሽ አቢይ ፊደል: </emph> እና <emph> አርእስት </emph> ባህሪዎች መለያ"
#: 02100200.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"par_id3154321\n"
"help.text"
msgid "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Creates and inserts a new sub-document.</ahelp> When you create a new document, you are prompted to enter the file name and the location where you want to save the document."
-msgstr "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">አዲስ ንዑስ-ሰነድ መፍጠሪያ እና ማስገቢያ</ahelp> አዲስ ሰነድ በሚፈጥሩ ጊዜ: እርስዎ ወዲያውኑ ይጠየቃሉ የ ፋይል ስም እንዲያስገቡ እና ሰነዱን ማስቀመጥ የሚፈልጉበትን አካባቢ"
+msgstr "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">አዲስ ንዑስ-ሰነድ መፍጠሪያ እና ማስገቢያ </ahelp> አዲስ ሰነድ በሚፈጥሩ ጊዜ: እርስዎ ወዲያውኑ ይጠየቃሉ የ ፋይል ስም እንዲያስገቡ እና ሰነዱን ማስቀመጥ የሚፈልጉበትን አካባቢ"
#: 02110000.xhp
msgctxt ""
@@ -8662,7 +8662,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet."
-msgstr "የ <emph>ራሱ በራሱ</emph> ምርጫ ዝግጁ የሚሆነው ለ DDE አገናኞች ነወ: እርስዎ ማስገባት ይችላሉ የ DDE አገናኝ ከ ፋይል ላይ ይዞታውን ኮፒ በማድረግ እና በ መለጠፍ በ መምረጥ <emph>ማረሚያ - መለጠፊያ የ ተለየ </emph> እና ከዛ ይምረጡ የ <emph>አገናኝ</emph> ሳጥን: እንደ የ DDE ጽሁፍን መሰረት ያደረገ አገናኝ ነው: የሚታየው ዴሲማል ብቻ ኮፒ ይደረጋል ወደ ኢላማው ወረቀት"
+msgstr "የ <emph> ራሱ በራሱ </emph> ምርጫ ዝግጁ የሚሆነው ለ DDE አገናኞች ነወ: እርስዎ ማስገባት ይችላሉ የ DDE አገናኝ ከ ፋይል ላይ ይዞታውን ኮፒ በማድረግ እና በ መለጠፍ በ መምረጥ <emph> ማረሚያ - መለጠፊያ የ ተለየ </emph> እና ከዛ ይምረጡ የ <emph> አገናኝ </emph> ሳጥን: እንደ የ DDE ጽሁፍን መሰረት ያደረገ አገናኝ ነው: የሚታየው ዴሲማል ብቻ ኮፒ ይደረጋል ወደ ኢላማው ወረቀት"
#: 02180000.xhp
msgctxt ""
@@ -8678,7 +8678,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">Only updates the link when you click the <emph>Update </emph>button.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">አገናኝ ማሻሻያ በሚጫኑ ጊዜ ብቻ የ <emph>ማሻሻያ </emph>ቁልፍ</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">አገናኝ ማሻሻያ በሚጫኑ ጊዜ ብቻ የ <emph> ማሻሻያ </emph> ቁልፍ </ahelp>"
#: 02180000.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"hd_id3153966\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 02220000.xhp
msgctxt ""
@@ -9686,7 +9686,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_MACRO\">Lets you assign a macro that runs when you click the selected hotspot in a browser.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_MACRO\">እርስዎን macro መመደብ ያስችሎታል እርስዎ በሚጫኑ ጊዜ የ ተመረጠውን ትኩስ ቦታ በ መቃኛ ውስጥ የሚያስኬድ </ahelp>"
+msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_MACRO\">እርስዎን ማክሮስ መመደብ ያስችሎታል እርስዎ በሚጫኑ ጊዜ የ ተመረጠውን ትኩስ ቦታ በ መቃኛ ውስጥ የሚያስኬድ </ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -9702,7 +9702,7 @@ msgctxt ""
"par_id3149239\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 02220000.xhp
msgctxt ""
@@ -10022,7 +10022,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Edit - Track Changes - Show Changes</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ከ መረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማሳያ</emph> ለውጦች የያዘው መስመር ጽሁፍ ይታያል በ ቁመት መስመር በ ግራ ገጽ መስመር በኩል: እርስዎ ማሰናዳት ይችላሉ ባህሪዎች ለ በ ቁመት መስመር እና ሌሎች በላዩ ላይ አካላቶች በ መምረጥ <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME መጻፊያ - ለውጦች</emph></link> በ ምርጫዎች ንግግር ሳጥን ውስጥ </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ከ መረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማሳያ </emph> ለውጦች የያዘው መስመር ጽሁፍ ይታያል በ ቁመት መስመር በ ግራ ገጽ መስመር በኩል: እርስዎ ማሰናዳት ይችላሉ ባህሪዎች ለ በ ቁመት መስመር እና ሌሎች በላዩ ላይ አካላቶች በ መምረጥ <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME መጻፊያ - ለውጦች </emph></link> በ ምርጫዎች ንግግር ሳጥን ውስጥ </caseinline></switchinline>"
#: 02230100.xhp
msgctxt ""
@@ -10502,7 +10502,7 @@ msgctxt ""
"par_id3161459\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/redlineviewpage/changes\">Lists the changes that were recorded in the document. When you select an entry in the list, the change is highlighted in the document. To sort the list, click a column heading. </ahelp> Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click to select multiple entries in the list."
-msgstr "<ahelp hid=\"svx/ui/redlineviewpage/changes\">በ አሁኑ ሰነድ ውስጥ የ ተመዘገቡት ለውጦች ዝርዝር: እርስዎ ማስገቢያ ሲመርጡ ከ ዝርዝር ውስጥ: ለውጦቹ ይደምቃሉ በ ሰነዱ ውስጥ: ለ መለየት ዝርዝሩን: ይጫኑ: የ አምድ ራስጌ </ahelp> ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> በርካታ ማስገቢያዎች ከ ዝርዝር ውስጥ በሚመርጡበት ጊዜ"
+msgstr "<ahelp hid=\"svx/ui/redlineviewpage/changes\">በ አሁኑ ሰነድ ውስጥ የ ተመዘገቡት ለውጦች ዝርዝር: እርስዎ ማስገቢያ ሲመርጡ ከ ዝርዝር ውስጥ: ለውጦቹ ይደምቃሉ በ ሰነዱ ውስጥ: ለ መለየት ዝርዝሩን: ይጫኑ: የ አምድ ራስጌ </ahelp> ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> በርካታ ማስገቢያዎች ከ ዝርዝር ውስጥ በሚመርጡበት ጊዜ"
#: 02230401.xhp
msgctxt ""
@@ -10510,7 +10510,7 @@ msgctxt ""
"par_id3152812\n"
"help.text"
msgid "To edit the comment for an entry in the list, right-click the entry, and then choose<emph> Edit - Comment</emph>."
-msgstr "አስተያየት ለማረም ከ ማስገቢያው ዝርዝር ውስጥ: በ ቀኝ-ይጫኑ ማስገቢያው ላይ: እና ከዛ ይምረጡ <emph> ማረሚያ - አስተያየት</emph>."
+msgstr "አስተያየት ለማረም ከ ማስገቢያው ዝርዝር ውስጥ: በ ቀኝ-ይጫኑ ማስገቢያው ላይ: እና ከዛ ይምረጡ <emph> ማረሚያ - አስተያየት </emph>"
#: 02230401.xhp
msgctxt ""
@@ -10670,7 +10670,7 @@ msgctxt ""
"par_id3147442\n"
"help.text"
msgid "To reverse the acceptance or rejection of a change, choose <emph>Undo </emph>on the <emph>Edit </emph>menu."
-msgstr "እንደ ነበር ለመመለስ ለውጦቹን እቀበላለሁ ወይንም አልቀበልም: ይምረጡ <emph>መተው </emph>በ <emph>ማረሚያ </emph>ዝርዝር ውስጥ"
+msgstr "እንደ ነበር ለመመለስ ለውጦቹን እቀበላለሁ ወይንም አልቀበልም: ይምረጡ <emph> መተው </emph> በ <emph> ማረሚያ </emph> ዝርዝር ውስጥ"
#: 02230401.xhp
msgctxt ""
@@ -11046,7 +11046,7 @@ msgctxt ""
"par_id3150838\n"
"help.text"
msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
-msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">እርስዎ ከ መረጡት ሰነድ ጋር የ አሁኑን ሰነድ ማወዳደሪያ </ahelp></variable> የ ተመረጠው ሰነድ ይዞታ ምልክት ይደረግበታል ለማጥፋት በ ንግግር መክፈቻ ውስጥ: እርስዎ ከ ፈለጉ እርስዎ ማስገባት ይችላሉ የ ተመረጠውን ፋይል ይዞታዎች ወደ አሁኑ ሰነድ ውስጥ በ መምረጥ አስፈላጊ የ ጠፋ ማስገቢያዎችን: መጫን <emph>አልቀበልም</emph> እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">እርስዎ ከ መረጡት ሰነድ ጋር የ አሁኑን ሰነድ ማወዳደሪያ </ahelp></variable> የ ተመረጠው ሰነድ ይዞታ ምልክት ይደረግበታል ለማጥፋት በ ንግግር መክፈቻ ውስጥ: እርስዎ ከ ፈለጉ እርስዎ ማስገባት ይችላሉ የ ተመረጠውን ፋይል ይዞታዎች ወደ አሁኑ ሰነድ ውስጥ በ መምረጥ አስፈላጊ የ ጠፋ ማስገቢያዎችን: መጫን <emph> አልቀበልም </emph> እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>"
#: 02240000.xhp
msgctxt ""
@@ -11390,7 +11390,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "Zooming is handled differently on Unix, Linux, and Windows platforms. A document saved with a 100% zoom factor in Windows is displayed at a larger zoom factor on Unix/Linux platforms. To change the zoom factor, double-click or right-click the percentage value on the <emph>Status</emph> bar, and select the zoom factor that you want."
-msgstr "ይህ ማሳያ ትንሽ ይለያያል በ Unix, Linux: እና Windows ውስጥ: በ 100% ማሳያ ዘዴ የ ተቀመጠ ሰነድ በ Windows ውስጥ: በ ትልቅ ዘዴ ነው የሚታየው በ Unix/Linux ውስጥ: የ ማሳያ መጠን ለ መቀየር: ሁለት ጊዜ-ይጫኑ ወይንም በ ቀኝ- ይጫኑ በ ፐርሰንት ዋጋ ላይ በ <emph>ሁኔታዎች</emph> ማሳያ መደርደሪያ ላይ እና ይምረጡ እርስዎ የሚፈልጉትን መጠን"
+msgstr "ይህ ማሳያ ትንሽ ይለያያል በ Unix, Linux: እና Windows ውስጥ: በ 100% ማሳያ ዘዴ የ ተቀመጠ ሰነድ በ Windows ውስጥ: በ ትልቅ ዘዴ ነው የሚታየው በ Unix/Linux ውስጥ: የ ማሳያ መጠን ለ መቀየር: ሁለት ጊዜ-ይጫኑ ወይንም በ ቀኝ- ይጫኑ በ ፐርሰንት ዋጋ ላይ በ <emph> ሁኔታዎች </emph> ማሳያ መደርደሪያ ላይ እና ይምረጡ እርስዎ የሚፈልጉትን መጠን"
#: 03010000.xhp
msgctxt ""
@@ -11750,7 +11750,7 @@ msgctxt ""
"par_id3154318\n"
"help.text"
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
-msgstr "እርስዎ አቋራጭ ክፍሎችን መጠቀም ይችላሉ ለ <emph>ሙሉ መመልከቻ</emph> ዘዴ: ምንም እንኳን ዝርዝሩ ባይኖርም <switchinline select=\"sys\"><caseinline select=\"WIN\">ለ መክፈት የ <emph>መመልከቻ</emph> ዝርዝር: ይጫኑ Alt+V. </caseinline></switchinline>"
+msgstr "እርስዎ አቋራጭ ክፍሎችን መጠቀም ይችላሉ ለ <emph> ሙሉ መመልከቻ </emph> ዘዴ: ምንም እንኳን ዝርዝሩ ባይኖርም <switchinline select=\"sys\"><caseinline select=\"WIN\">ለ መክፈት የ <emph> መመልከቻ </emph> ዝርዝር: ይጫኑ Alt+V. </caseinline></switchinline>"
#: 03150100.xhp
msgctxt ""
@@ -11870,7 +11870,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "<ahelp hid=\".uno:ColorControl\">Show or hides the <emph>Color Bar</emph>. To modify or change the color table that is displayed, choose <emph>Format - Area</emph>, and then click on the <emph>Colors</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\".uno:ColorControl\"> ማሳያ ወይንም መደበቂያ የ <emph> ቀለም መደርደሪያ </emph> ለማሻሻል ወይንም ለ መቀየር የሚታየውን የ ቀለም ሰንጠረዥ ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ከዛ ይጫኑ የ <emph> ቀለሞች </emph> tab.</ahelp>"
+msgstr "<ahelp hid=\".uno:ColorControl\">ማሳያ ወይንም መደበቂያ የ <emph> ቀለም መደርደሪያ </emph> ለማሻሻል ወይንም ለ መቀየር የሚታየውን የ ቀለም ሰንጠረዥ ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ከዛ ይጫኑ የ <emph> ቀለሞች </emph> tab.</ahelp>"
#: 03170000.xhp
msgctxt ""
@@ -12198,7 +12198,7 @@ msgctxt ""
"par_id9499496\n"
"help.text"
msgid "To delete a comment, right-click the cell, then choose <emph>Delete Comment</emph>."
-msgstr "አስተያየት ለማጥፋት በ ቀኝ-ይጫኑ ክፍሉን እና ከዛ ይምረጡ <emph>አስተያየት ማጥፊያ</emph>."
+msgstr "አስተያየት ለማጥፋት በ ቀኝ-ይጫኑ ክፍሉን እና ከዛ ይምረጡ <emph> አስተያየት ማጥፊያ </emph>"
#: 04050000.xhp
msgctxt ""
@@ -12694,7 +12694,7 @@ msgctxt ""
"par_id3155434\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertoleobject/urled\">Enter the name of the file that you want to link or embed, or click <emph>Search</emph>, to locate the file.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/insertoleobject/urled\">እንደ አገናኝ ወይንም ማጣበቅ የሚፈልጉትን የ ፋይሉን ስም ያስገቡ: ወይንም ይጫኑ <emph>መፈለጊያ</emph>, ፋይሉን ፈልጎ ለማግኘት </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/insertoleobject/urled\">እንደ አገናኝ ወይንም ማጣበቅ የሚፈልጉትን የ ፋይሉን ስም ያስገቡ: ወይንም ይጫኑ <emph> መፈለጊያ </emph> ፋይሉን ፈልጎ ለማግኘት </ahelp>"
#: 04150100.xhp
msgctxt ""
@@ -12710,7 +12710,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Locate the file that you want to insert, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">ማስገባት የሚፈልጉትን ፋይል ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph>መክፈቻ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">ማስገባት የሚፈልጉትን ፋይል ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph> መክፈቻ </emph></ahelp>"
#: 04150100.xhp
msgctxt ""
@@ -12998,7 +12998,7 @@ msgctxt ""
"bm_id3154812\n"
"help.text"
msgid "<bookmark_value>formats; fonts</bookmark_value><bookmark_value>characters;fonts and formats</bookmark_value><bookmark_value>fonts; formats</bookmark_value><bookmark_value>text; fonts and formats</bookmark_value><bookmark_value>typefaces; formats</bookmark_value><bookmark_value>font sizes; relative changes</bookmark_value><bookmark_value>languages; spellchecking and formatting</bookmark_value><bookmark_value>characters; enabling CTL and Asian characters</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ: ፊደሎች</bookmark_value><bookmark_value>ባህሪዎች: ፊደሎች እና አቀራረብ</bookmark_value><bookmark_value>ፊደሎች: አቀራረብ</bookmark_value><bookmark_value>ጽሁፍ: ፊደሎች እና አቀራረብ</bookmark_value><bookmark_value>typefaces: አቀራረብ</bookmark_value><bookmark_value>ፊደል መጠኖች: አንፃራዊ ለውጦች</bookmark_value><bookmark_value>ቋንቋዎች: ፊደል ማረሚያ እና አቀራረብ</bookmark_value><bookmark_value>ባህሪዎች: ማስቻያ CTL እና Asian ባህሪዎች</bookmark_value>"
+msgstr "<bookmark_value>አቀራረብ: ፊደሎች</bookmark_value><bookmark_value>ባህሪዎች: ፊደሎች እና አቀራረብ</bookmark_value><bookmark_value>ፊደሎች: አቀራረብ</bookmark_value><bookmark_value>ጽሁፍ: ፊደሎች እና አቀራረብ</bookmark_value><bookmark_value>የ ፊደል አይነቶች: አቀራረብ</bookmark_value><bookmark_value>ፊደል መጠኖች: አንፃራዊ ለውጦች</bookmark_value><bookmark_value>ቋንቋዎች: ፊደል ማረሚያ እና አቀራረብ</bookmark_value><bookmark_value>ባህሪዎች: ማስቻያ CTL እና የ እስያ ባህሪዎች</bookmark_value>"
#: 05020100.xhp
msgctxt ""
@@ -13198,7 +13198,7 @@ msgctxt ""
"bm_id3153514\n"
"help.text"
msgid "<bookmark_value>fonts;effects</bookmark_value> <bookmark_value>formatting; font effects</bookmark_value> <bookmark_value>characters; font effects</bookmark_value> <bookmark_value>text; font effects</bookmark_value> <bookmark_value>effects; fonts</bookmark_value> <bookmark_value>underlining; text</bookmark_value> <bookmark_value>capital letters; font effects</bookmark_value> <bookmark_value>lowercase letters; font effects</bookmark_value> <bookmark_value>titles; font effects</bookmark_value> <bookmark_value>small capitals</bookmark_value> <bookmark_value>strikethrough; font effects</bookmark_value> <bookmark_value>fonts; strikethrough</bookmark_value> <bookmark_value>outlines; font effects</bookmark_value> <bookmark_value>fonts; outlines</bookmark_value> <bookmark_value>shadows; characters</bookmark_value> <bookmark_value>fonts; shadows</bookmark_value> <bookmark_value>fonts;color ignored</bookmark_value> <bookmark_value>ignored font colors</bookmark_value> <bookmark_value>colors;ignored text color</bookmark_value>"
-msgstr "<bookmark_value>የ ፊደል: ውጤቶች</bookmark_value> <bookmark_value>አቀራረብ: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ባህሪዎች: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>የ ጽሁፍ: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ውጤቶች: የ ፊደሎች</bookmark_value> <bookmark_value>ከ ስሩ ማስመሪያ: ፊደል</bookmark_value> <bookmark_value>አቢይ ፊደሎች: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>በ ትንንሽ ፊደል: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>አርእስቶች: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>በ ትንሽ በ አቢይ ፊደል</bookmark_value> <bookmark_value> በላዩ ላይ መሰረዣ: ፊደል ውጤቶች</bookmark_value> <bookmark_value>ፊደሎች: በ ላዩ ላይ መሰረዣ</bookmark_value> <bookmark_value>ረቂቅ: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ፊደሎች: ረቂቆች</bookmark_value> <bookmark_value>ጥላዎች ባህሪዎች</bookmark_value> <bookmark_value>ፊደሎች: ጥላዎች</bookmark_value> <bookmark_value>ፊደሎች: ቀለም የተተወ</bookmark_value> <bookmark_value>የተተወ የ ፊደል ቀለም</bookmark_value> <bookmark_value>ቀለሞች: የተተወ የ ጽሁፍ ቀለም</bookmark_value>"
+msgstr "<bookmark_value>የ ፊደል: ውጤቶች</bookmark_value> <bookmark_value>አቀራረብ: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ባህሪዎች: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ጽሁፍ: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ውጤቶች: የ ፊደሎች</bookmark_value> <bookmark_value>ከ ስሩ ማስመሪያ: ፊደል</bookmark_value> <bookmark_value>አቢይ ፊደሎች: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>በ ታችኛው ጉዳይ ፊደል: ፊደሎች ውጤቶች</bookmark_value> <bookmark_value>አርእስቶች: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>በ ትንሽ በ አቢይ ፊደል</bookmark_value> <bookmark_value> በላዩ ላይ መሰረዣ: ፊደል ውጤቶች</bookmark_value> <bookmark_value>ፊደሎች: በ ላዩ ላይ መሰረዣ</bookmark_value> <bookmark_value>ረቂቅ: የ ፊደል ውጤቶች</bookmark_value> <bookmark_value>ፊደሎች: ረቂቆች</bookmark_value> <bookmark_value>ጥላዎች ባህሪዎች</bookmark_value> <bookmark_value>ፊደሎች: ጥላዎች</bookmark_value> <bookmark_value>ፊደሎች: ቀለም የተተወ</bookmark_value> <bookmark_value>የተተወ የ ፊደል ቀለም</bookmark_value> <bookmark_value>ቀለሞች: የተተወ የ ጽሁፍ ቀለም</bookmark_value>"
#: 05020200.xhp
msgctxt ""
@@ -13238,7 +13238,7 @@ msgctxt ""
"par_idN10CC2\n"
"help.text"
msgid "To change the color of a text selection, select the text that you want to change, and click the <emph>Font Color</emph> icon. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
-msgstr "የ ተመረጠውን ጽሁፍ ቀለም ለ መቀየር: ጽሁፍ ይምረጡ መቀየር የሚፈልጉትን እና ይጫኑ የ <emph>ፊደል ቀለም</emph> ምልክት: የ ተለየ ቀለም ለ መፈጸም: ይጫኑ ቀስት አጠገብ ያለውን የ <emph>ፊደል ቀለም</emph> ምልክት: እና ከዛ ይምረጡ መጠቀም የሚፈልጉትን ቀለም"
+msgstr "የ ተመረጠውን ጽሁፍ ቀለም ለ መቀየር: ጽሁፍ ይምረጡ መቀየር የሚፈልጉትን እና ይጫኑ የ <emph> ፊደል ቀለም </emph> ምልክት: የ ተለየ ቀለም ለ መፈጸም: ይጫኑ ቀስት አጠገብ ያለውን የ <emph> ፊደል ቀለም </emph> ምልክት: እና ከዛ ይምረጡ መጠቀም የሚፈልጉትን ቀለም"
#: 05020200.xhp
msgctxt ""
@@ -13246,7 +13246,7 @@ msgctxt ""
"par_idN10CC9\n"
"help.text"
msgid "If you click the <emph>Font Color</emph> icon before you select text, the paint can cursor appears. To change the color of text, select the text with the paint can cursor. To change the color of a single word, double-click in a word. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
-msgstr "እርስዎ ከ ተጫኑ በ <emph>ፊደል ቀለም</emph> ምልክት ላይ ጽሁፍ ከ መምረጥዎ በፊት: የ ቀለም ጣሳ መጠቆሚያ ይታያል: የ ጽሁፍ ቀለም ለ መቀየር: ይምረጡ ጽሁፍ በ ቀለም ጣሳ መጠቆሚያ: የ ነጠላ ቃል ቀለም ለ መቀየር: ሁለት ጊዜ-ይጫኑ ቃሉ ላይ: የተለያያ ቀለም ለ መፈጸም: ይጫኑ ቀስቱ ላይ ከ <emph>ፊደል ቀለም</emph> ምልክት አጠገብ ያለውን: እና ከዛ ይምረጡ መጠቀም የሚፈልጉትን ቀለም"
+msgstr "እርስዎ ከ ተጫኑ በ <emph> ፊደል ቀለም </emph> ምልክት ላይ ጽሁፍ ከ መምረጥዎ በፊት: የ ቀለም ጣሳ መጠቆሚያ ይታያል: የ ጽሁፍ ቀለም ለ መቀየር: ይምረጡ ጽሁፍ በ ቀለም ጣሳ መጠቆሚያ: የ ነጠላ ቃል ቀለም ለ መቀየር: ሁለት ጊዜ-ይጫኑ ቃሉ ላይ: የተለያያ ቀለም ለ መፈጸም: ይጫኑ ቀስቱ ላይ ከ <emph> ፊደል ቀለም </emph> ምልክት አጠገብ ያለውን: እና ከዛ ይምረጡ መጠቀም የሚፈልጉትን ቀለም"
#: 05020200.xhp
msgctxt ""
@@ -13270,7 +13270,7 @@ msgctxt ""
"par_id3150037\n"
"help.text"
msgid "The text color is ignored when printing, if the <emph>Print black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the Options dialog box."
-msgstr "የ ጽሁፍ ቀለም ይተዋል በሚታተም ጊዜ በ <emph>ጥቁር ማተሚያ</emph> ሳጥን ውስጥ ምልክት ተደርጎ ከተመረጠ በ <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME መጻፊያ - ማተሚያ </emph></link> በ ምርጫ ንግግር ሳጥን ውስጥ"
+msgstr "የ ጽሁፍ ቀለም ይተዋል በሚታተም ጊዜ በ <emph> ጥቁር ማተሚያ </emph> ሳጥን ውስጥ ምልክት ተደርጎ ከተመረጠ በ <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME መጻፊያ - ማተሚያ </emph></link> በ ምርጫ ንግግር ሳጥን ውስጥ"
#: 05020200.xhp
msgctxt ""
@@ -13278,7 +13278,7 @@ msgctxt ""
"par_id7613757\n"
"help.text"
msgid "The text color is ignored on screen, if the <emph>Use automatic font color for screen display</emph> check box is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - Accessibility</emph></link>."
-msgstr "የ ጽሁፍ ቀለም ይተዋል በ መመልከቻው ላይ <emph>ራሱ በራሱ የ ፊደል ቀለም ለ መመልከቻ ማሳያ ይጠቀሙ</emph> ሳጥን ውስጥ ምልክት ተደርጎ ከተመረጠ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - መድረሻ</emph></link>."
+msgstr "የ ጽሁፍ ቀለም ይተዋል በ መመልከቻው ላይ <emph>ራሱ በራሱ የ ፊደል ቀለም ለ መመልከቻ ማሳያ ይጠቀሙ </emph> ሳጥን ውስጥ ምልክት ተደርጎ ከተመረጠ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - መድረሻ </emph></link>"
#: 05020200.xhp
msgctxt ""
@@ -13334,7 +13334,7 @@ msgctxt ""
"par_id3154280\n"
"help.text"
msgid "Capitals - changes the selected lowercase characters to uppercase characters"
-msgstr "አቢይ - የተመረጠውን ዝቅተኛ ጉዳይ ባህሪዎች ወደ ከፍተኛ ጉዳይ ባህሪዎች ይቀይራል"
+msgstr "አቢይ - የተመረጠውን የ ታችኛውን ጉዳይ ፊደል ባህሪዎች ወደ ላይኛው ጉዳይ ፊደል ባህሪዎች ይቀይራል"
#: 05020200.xhp
msgctxt ""
@@ -13342,7 +13342,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "Lowercase - changes the selected uppercase characters to lower characters"
-msgstr "ዝቅተኛ ጉዳይ - የተመረጠውን ከፍተኛ ጉዳይ ባህሪዎች ወደ ዝቅተኛ ጉዳይ ባህሪዎች ይቀይራል"
+msgstr "የ ታችኛው ጉዳይ ፊደል - የ ተመረጠውን የ ላይኛውን ጉዳይ ባህሪዎች ወደ ታችኛው ጉዳይ ባህሪዎች ይቀይራል"
#: 05020200.xhp
msgctxt ""
@@ -13350,7 +13350,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Title font - changes the first character of each selected word to an uppercase character"
-msgstr "የ አርእስት ፊደል - የተመረጠውን የ መጀመሪያ ባህሪ ወደ ከፍተኛ ጉዳይ ባህሪዎች ይቀይራል"
+msgstr "የ አርእስት ፊደል - የተመረጠውን የ መጀመሪያ ባህሪ እያንዳንዱን ወደ ላይኛው ጉዳይ ፊደል ባህሪዎች ይቀይራል"
#: 05020200.xhp
msgctxt ""
@@ -13358,7 +13358,7 @@ msgctxt ""
"par_id3154937\n"
"help.text"
msgid "Small capitals - changes the selected lowercase characters to uppercase characters, and then reduces their size"
-msgstr "ትንሽ አቢይ - የተመረጠውን ዝቅተኛ ጉዳይ ባህሪዎች ወደ ከፍተኛ ጉዳይ ባህሪዎች ይቀይራል እና መጠኑን ይቀንሳል"
+msgstr "ትንሽ አቢይ - የተመረጠውን የ ታችኛውን ጉዳይ ፊደል ባህሪዎች ወደ የ ላይኛው ጉዳይ ፊደል ባህሪዎች ይቀይራል እና መጠኑን ይቀንሳል"
#: 05020200.xhp
msgctxt ""
@@ -13470,7 +13470,7 @@ msgctxt ""
"par_id0123200902243343\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Select the overlining style that you want to apply. To apply the overlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/effectspage/overlinelb\">እርስዎ መጠቀም የሚፈልጉትን ከ ላዩ ላይ ማስመሪያ ዘዴ አይነት ይምረጡ: ከ ላዩ ላይ ማስመሪያ ዘዴ ለመፈጸም ለ ቃላት ብቻ: ይምረጡ የ <emph>እያንዳንዱን ቃላቶች</emph>ከ ሳጥን ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/effectspage/overlinelb\">እርስዎ መጠቀም የሚፈልጉትን ከ ላዩ ላይ ማስመሪያ ዘዴ አይነት ይምረጡ: ከ ላዩ ላይ ማስመሪያ ዘዴ ለመፈጸም ለ ቃላት ብቻ: ይምረጡ የ <emph> እያንዳንዱን ቃላቶች </emph> ከ ሳጥን ውስጥ </ahelp>"
#: 05020200.xhp
msgctxt ""
@@ -13526,7 +13526,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Select the underlining style that you want to apply. To apply the underlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/effectspage/underlinelb\">እርስዎ መጠቀም የሚፈልጉትን ከ ስሩ ማስመሪያ ዘዴ አይነት ይምረጡ: ከ ስሩ ማስመሪያ ዘዴ ለመፈጸም ለ ቃላት ብቻ: ይምረጡ የ <emph>እያንዳንዱን ቃላት</emph> ሳጥን ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/effectspage/underlinelb\">እርስዎ መጠቀም የሚፈልጉትን ከ ስሩ ማስመሪያ ዘዴ አይነት ይምረጡ: ከ ስሩ ማስመሪያ ዘዴ ለመፈጸም ለ ቃላት ብቻ: ይምረጡ የ <emph> እያንዳንዱን ቃላቶች </emph> ከ ሳጥን ውስጥ</ahelp>"
#: 05020200.xhp
msgctxt ""
@@ -13654,7 +13654,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/categorylb\">Select a category from the list, and then select a formatting style in the <emph>Format </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/numberingformatpage/categorylb\">ይምረጡ ምድብ ከ ዝርዝር ውስጥ: እና ከዛ ይምረጡ የ አቀራረብ ዘዴ በ <emph>አቀራረብ </emph>ሳጥን ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/categorylb\">ይምረጡ ምድብ ከ ዝርዝር ውስጥ: እና ከዛ ይምረጡ የ አቀራረብ ዘዴ በ <emph> አቀራረብ </emph> ሳጥን ውስጥ </ahelp>"
#: 05020300.xhp
msgctxt ""
@@ -13678,7 +13678,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/formatlb\">Select how you want the contents of the selected cell(s) to be displayed.</ahelp> The code for the selected option is displayed in the <emph>Format Code</emph> box."
-msgstr "<ahelp hid=\"cui/ui/numberingformatpage/formatlb\">የ ተመረጠው ክፍል(ሎች) ይዞታዎች እንዴት እንዲታይ እንደሚፈልጉ ይምረጡ</ahelp> ለ ተመረጠው ምርጫ ኮዱ የሚታየው በ <emph>ኮድ አቀራረብ</emph>ሳጥን ውስጥ ነው"
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/formatlb\">የ ተመረጠው ክፍል(ሎች) ይዞታዎች እንዴት እንዲታይ እንደሚፈልጉ ይምረጡ </ahelp> ለ ተመረጠው ምርጫ ኮዱ የሚታየው በ <emph> ኮድ አቀራረብ </emph> ሳጥን ውስጥ ነው"
#: 05020300.xhp
msgctxt ""
@@ -13694,7 +13694,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/currencylb\">Select a currency, and then scroll to the top of the <emph>Format</emph> list to view the formatting options for the currency.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/numberingformatpage/currencylb\">ገንዘብ ይምረጡ እና ከዛ ይሽብልሉ ወደ ላይ በ <emph>አቀራረብ</emph> ዝርዝር ውስጥ የ ገንዘብ አቀራረብ ምርጫ ለማየት </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/currencylb\">ገንዘብ ይምረጡ እና ከዛ ይሽብልሉ ወደ ላይ በ <emph> አቀራረብ </emph> ዝርዝር ውስጥ የ ገንዘብ አቀራረብ ምርጫ ለማየት </ahelp>"
#: 05020300.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"bm_id3153514\n"
"help.text"
msgid "<bookmark_value>format codes; numbers</bookmark_value> <bookmark_value>conditions; in number formats</bookmark_value> <bookmark_value>number formats; codes</bookmark_value> <bookmark_value>currency formats</bookmark_value> <bookmark_value>formats;of currencies/date/time</bookmark_value> <bookmark_value>numbers; date, time and currency formats</bookmark_value> <bookmark_value>Euro; currency formats</bookmark_value> <bookmark_value>date formats</bookmark_value> <bookmark_value>times, formats</bookmark_value> <bookmark_value>percentages, formats</bookmark_value> <bookmark_value>scientific notation, formats</bookmark_value> <bookmark_value>engineering notation, formats</bookmark_value> <bookmark_value>fraction, formats</bookmark_value> <bookmark_value>native numeral</bookmark_value> <bookmark_value>LCID, extended</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ የ ኮዶች: ቁጥሮች</bookmark_value> <bookmark_value>ሁኔታዎች: በ ቁጥር አቀራረብ ውስጥ</bookmark_value> <bookmark_value>የ ቁጥር አቀራረብ: ኮዶች</bookmark_value> <bookmark_value>የ ገንዘብ አቀራረብ</bookmark_value> <bookmark_value>አቀራረብ: የ ገንዘብ/ቀን/ሰአት</bookmark_value> <bookmark_value>ቁጥሮች: ቀን: ሰአት: እና ገንዘብ አቀራረብ</bookmark_value> <bookmark_value>ኢዩሮ: የ ገንዘብ አቀራረብ</bookmark_value> <bookmark_value>የ ቀን አቀራረብ</bookmark_value> <bookmark_value>የ ሰአት: አቀራረብ</bookmark_value> <bookmark_value>ፐርሰንት: አቀራረብ</bookmark_value> <bookmark_value>ሳይንሳዊ ምልክት: አቀራረብ</bookmark_value> <bookmark_value>የ ኤንጂኔር ምልክት: አቀራረብ</bookmark_value> <bookmark_value>ክፍልፋይ: አቀራረብ</bookmark_value> </bookmark_value>የ ቋንቋው ቁጥር</bookmark_value> <bookmark_value>LCID, የ ተስፋፋ</bookmark_value>"
+msgstr "<bookmark_value>አቀራረብ የ ኮዶች: ቁጥሮች</bookmark_value> <bookmark_value>ሁኔታዎች: በ ቁጥር አቀራረብ ውስጥ</bookmark_value> <bookmark_value>የ ቁጥር አቀራረብ: ኮዶች</bookmark_value> <bookmark_value>የ ገንዘብ አቀራረብ</bookmark_value> <bookmark_value>አቀራረብ: የ ገንዘብ/ቀን/ሰአት</bookmark_value> <bookmark_value>ቁጥሮች: ቀን: ሰአት: እና ገንዘብ አቀራረብ</bookmark_value> <bookmark_value>ኢዩሮ: የ ገንዘብ አቀራረብ</bookmark_value> <bookmark_value>የ ቀን አቀራረብ</bookmark_value> <bookmark_value>የ ሰአት: አቀራረብ</bookmark_value> <bookmark_value>የ ፐርሰንት: አቀራረብ</bookmark_value> <bookmark_value>ሳይንሳዊ ምልክት: አቀራረብ</bookmark_value> <bookmark_value>የ ኤንጂኔር ምልክት: አቀራረብ</bookmark_value> <bookmark_value>ክፍልፋይ: አቀራረብ</bookmark_value> </bookmark_value>የ ቋንቋው ቁጥር</bookmark_value> <bookmark_value>LCID, የ ተስፋፋ</bookmark_value>"
#: 05020301.xhp
msgctxt ""
@@ -17078,7 +17078,7 @@ msgctxt ""
"par_id3157910\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">Locate the file that you want to link to, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph>መክፈቻ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph> መክፈቻ </emph>:</ahelp>"
#: 05020400.xhp
msgctxt ""
@@ -17150,7 +17150,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<variable id=\"textframe\"><ahelp hid=\"modules/swriter/ui/charurlpage/targetfrmlb\">Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list.</ahelp> If you leave this box blank, the linked file opens in the current browser window.</variable>"
-msgstr "<variable id=\"textframe\"><ahelp hid=\"modules/swriter/ui/charurlpage/targetfrmlb\">ያስገቡ የ ክፈፉን ስም እርስዎ ያገናኙትን ፋይል ለ መክፈት በ ወይንም ይምረጡ በ ቅድሚያ የ ተወሰነ ክፈፍ ከ ዝርዝር ውስጥ</ahelp>እርስዎ ይህን ሳጥን ባዶ ከተዉት: የ ተገአኘው ፋይል ይከፈታል በ አሁኑ መቃኛ መስኮት ውስጥ</variable>"
+msgstr "<variable id=\"textframe\"><ahelp hid=\"modules/swriter/ui/charurlpage/targetfrmlb\">ያስገቡ የ ክፈፉን ስም እርስዎ ያገናኙትን ፋይል ለ መክፈት በ ወይንም ይምረጡ በ ቅድሚያ የ ተወሰነ ክፈፍ ከ ዝርዝር ውስጥ </ahelp> እርስዎ ይህን ሳጥን ባዶ ከተዉት: የ ተገኘው ፋይል ይከፈታል በ አሁኑ መቃኛ መስኮት ውስጥ </variable>"
#: 05020400.xhp
msgctxt ""
@@ -17278,7 +17278,7 @@ msgctxt ""
"par_id3150359\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ተጎበኙ አገናኞች ከ ዝርዝር ውስጥ: ለ መጨመር ወይንም ለማሻሻል ዘዴ ከዚህ ዝርዝር ውስጥ: ንግግሩን ይዝጉ: እና ይጫኑ የ <emph>ዘዴዎች እና አቀራረብ</emph> ምልክት በ <emph>አቀራረብ</emph> እቃ መደርደሪያ ላይ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ተጎበኙ አገናኞች ከ ዝርዝር ውስጥ: ለ መጨመር ወይንም ለማሻሻል ዘዴ ከዚህ ዝርዝር ውስጥ: ንግግሩን ይዝጉ: እና ይጫኑ የ <emph> ዘዴዎች እና አቀራረብ </emph> ምልክት በ <emph> አቀራረብ </emph> እቃ መደርደሪያ ላይ </ahelp>"
#: 05020400.xhp
msgctxt ""
@@ -17294,7 +17294,7 @@ msgctxt ""
"par_id3154216\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ያልተጎበኙ አገናኞች ከ ዝርዝር ውስጥ: ለ መጨመር ወይንም ለማሻሻል ዘዴ ከዚህ ዝርዝር ውስጥ: ንግግሩን ይዝጉ: እና ይጫኑ የ <emph>ዘዴዎች እና አቀራረብ</emph> ምልክት በ <emph>አቀራረብ</emph> እቃ መደርደሪያ ላይ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ያልተጎበኙ አገናኞች ከ ዝርዝር ውስጥ: ለ መጨመር ወይንም ለማሻሻል ዘዴ ከዚህ ዝርዝር ውስጥ: ንግግሩን ይዝጉ: እና ይጫኑ የ <emph> ዘዴዎች እና አቀራረብ </emph> ምልክት በ <emph> አቀራረብ </emph> እቃ መደርደሪያ ላይ </ahelp>"
#: 05020400.xhp
msgctxt ""
@@ -17310,7 +17310,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">Assign macro</link>"
-msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">Assign macro</link>"
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">ማክሮስ መመደቢያ</link>"
#: 05020500.xhp
msgctxt ""
@@ -17854,7 +17854,7 @@ msgctxt ""
"par_id3148668\n"
"help.text"
msgid "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
-msgstr "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">የ አሁኑን አንቀጽ አቀራረብ ማሻሻያ እንደ ማስረጊያዎች: እና ማሰለፊያ አይነት</ahelp></variable> የ አሁኑን አንቀጽ ፊደል ለማሻሻል: ይምረጡ ጠቅላላ አንቀጹን እና ይምረጡ አቀራረብ - ባህሪ እና ከዛ ይጫኑ በ ፊደል tab ላይ"
+msgstr "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">የ አሁኑን አንቀጽ አቀራረብ ማሻሻያ እንደ ማስረጊያዎች: እና ማሰለፊያ አይነት </ahelp></variable> የ አሁኑን አንቀጽ ፊደል ለማሻሻል: ይምረጡ ጠቅላላ አንቀጹን እና ይምረጡ አቀራረብ - ባህሪ እና ከዛ ይጫኑ በ ፊደል tab ላይ"
#: 05030000.xhp
msgctxt ""
@@ -17974,7 +17974,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/paraindentspacing/spinED_FLINEINDENT\">Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"<link href=\"text/shared/01/06050600.xhp\">Format - Bullets and Numbering - Position</link>\".</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/paraindentspacing/spinED_FLINEINDENT\">እርስዎ በሚወስኑት መጠን የ አንቀጽ መጀመሪያ መስመር ማስረጊያ: ተንሳፋፊ ማስረጊያ ለ መፍጠር አዎንታዊ የ ቁጥር ዋጋ ያስገቡ ከ \"ጽሁፍ በፊት\" እና አሉታዊ የ ቁጥር ዋጋ ያስገቡ ለ \"መጀመሪያ መስመር\": የ አንቀጽ መጀመሪያ መስመር ለ ማስረግ የ ቁጥር መስጫ ወይንም ነጥቦችን የሚጠቀም ይምረጡ \"<link href=\"text/shared/01/06050600.xhp\"> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ቦታዎች </link>\".</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/paraindentspacing/spinED_FLINEINDENT\">እርስዎ በሚወስኑት መጠን የ አንቀጽ መጀመሪያ መስመር ማስረጊያ: ተንሳፋፊ ማስረጊያ ለ መፍጠር አዎንታዊ የ ቁጥር ዋጋ ያስገቡ ከ \"ጽሁፍ በፊት\" እና አሉታዊ የ ቁጥር ዋጋ ያስገቡ ለ \"መጀመሪያ መስመር\": የ አንቀጽ መጀመሪያ መስመር ለ ማስረግ የ ቁጥር መስጫ ወይንም ነጥቦችን የሚጠቀም ይምረጡ \"<link href=\"text/shared/01/06050600.xhp\"> አቀራረብ - ነጥቦች እና ቁጥር መስጫ - ቦታዎች </link>\":</ahelp>"
#: 05030100.xhp
msgctxt ""
@@ -18158,7 +18158,7 @@ msgctxt ""
"par_id3150744\n"
"help.text"
msgid "If you use different font sizes within a paragraph, the line spacing is automatically adjusted to the largest font size. If you prefer to have identical spacing for all lines, specify a value in <emph>At least</emph> that corresponds to the largest font size."
-msgstr "እርስዎ የሚጠቀሙ ከሆነ የ ተለያያ የ ፊደል መጠን በ አንቀጽ ውስጥ: የ መስመር ክፍተት ራሱ በራሱ ይስተካከላል ወደ ትልቁ የ ፊደል መጠን: እርስዎ የሚመርጡ ከሆነ ተመሳሳይ ክፍተት መስመሮች: ዋጋ ይወስኑ <emph>ቢያንስ</emph>ተመሳሳይ የሆነ ከ ትልቁ የ ፊደል መጠን ጋር"
+msgstr "እርስዎ የሚጠቀሙ ከሆነ የ ተለያያ የ ፊደል መጠን በ አንቀጽ ውስጥ: የ መስመር ክፍተት ራሱ በራሱ ይስተካከላል ወደ ትልቁ የ ፊደል መጠን: እርስዎ የሚመርጡ ከሆነ ተመሳሳይ ክፍተት መስመሮች: ዋጋ ይወስኑ <emph> ቢያንስ </emph> ተመሳሳይ የሆነ ከ ትልቁ የ ፊደል መጠን ጋር"
#: 05030100.xhp
msgctxt ""
@@ -18230,7 +18230,7 @@ msgctxt ""
"par_id3156315\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/paraindentspacing/checkCB_REGISTER\">Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the <emph>Register-true </emph>option for the current page style. To do this, choose <emph>Format - Page</emph>, click on the <emph>Page </emph>tab, and then select the<emph> Register-true</emph> box in the<emph> Layout settings</emph> area.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/paraindentspacing/checkCB_REGISTER\">የ መሰረታዊ መስመር ማሰለፊያ ለ እያንዳንዱ መስመር ለ ጽሁፍ በ ቁመት ሰነድ መጋጠሚያ ውስጥ: ስለዚህ እያንዳንዱ መስመር ተመሳሳይ እርዝመት ይኖረዋል: ይህን ገጽታ ለ መጠቀም: እርስዎ በ መጀመሪያ ማስጀመር አለብዎት የ <emph>በ እውነት-መመዝገቢያ </emph> ምርጫ ለ አሁኑ የ ገጽ ዘዴ: ይህን ለማድረግ: ይምረጡ <emph> አቀራረብ – ገጽ </emph> ይጫኑ በ <emph> ገጽ </emph>tab ውስጥ እና ከዛ ይምረጡ ከ <emph> በ እውነት-መመዝገቢያ </emph> ሳጥን ውስጥ በ <emph> እቅድ ማሰናጃ </emph> ቦታ ውስጥ </ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/paraindentspacing/checkCB_REGISTER\">የ መሰረታዊ መስመር ማሰለፊያ ለ እያንዳንዱ መስመር ለ ጽሁፍ በ ቁመት ሰነድ መጋጠሚያ ውስጥ: ስለዚህ እያንዳንዱ መስመር ተመሳሳይ እርዝመት ይኖረዋል: ይህን ገጽታ ለ መጠቀም: እርስዎ በ መጀመሪያ ማስጀመር አለብዎት <emph> በ እውነት-መመዝገቢያ </emph> ምርጫ ለ አሁኑ የ ገጽ ዘዴ: ይህን ለማድረግ: ይምረጡ <emph> አቀራረብ – ገጽ </emph> ይጫኑ በ <emph> ገጽ </emph>tab ውስጥ እና ከዛ ይምረጡ ከ <emph> በ እውነት-መመዝገቢያ </emph> ሳጥን ውስጥ በ <emph> እቅድ ማሰናጃ </emph> ቦታ ውስጥ </ahelp></caseinline></switchinline>"
#: 05030100.xhp
msgctxt ""
@@ -18942,7 +18942,7 @@ msgctxt ""
"par_id3152361\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">ይጫኑ ለ መደብ መጠቀም የሚፈልጉትን ቀለም: የ መደብ ቀለም ለማስወገድ: ይጫኑ <emph>መሙያ የለም</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">ይጫኑ ለ መደብ መጠቀም የሚፈልጉትን ቀለም: የ መደብ ቀለም ለማስወገድ: ይጫኑ <emph> መሙያ የለም</emph>:</ahelp>"
#: 05030600.xhp
msgctxt ""
@@ -19054,7 +19054,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/backgroundpage/browse\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/browse\">ለ መደብ መጠቀም የሚፈልጉትን ንድፍ ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph>መክፈቻ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/browse\">ለ መደብ መጠቀም የሚፈልጉትን ንድፍ ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph> መክፈቻ </emph>:</ahelp>"
#: 05030600.xhp
msgctxt ""
@@ -19822,7 +19822,7 @@ msgctxt ""
"par_id3149827\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPageFormat\">Select a predefined paper size, or create a custom format by entering the dimensions for the paper in the <emph>Height </emph>and <emph>Width </emph>boxes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboPageFormat\">ይምረጡ በ ቅድሚያ የተገለጸ የ ወረቀት መጠን: ወይንም የ አቀራረብ ማስተካከያ ይፍጠሩ የ ወረቀቱን አቅጣጫ በ <emph>እርዝመት </emph>እና <emph>ስፋት </emph>ሳጥኖች ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboPageFormat\">ይምረጡ በ ቅድሚያ የተገለጸ የ ወረቀት መጠን: ወይንም የ አቀራረብ ማስተካከያ ይፍጠሩ የ ወረቀቱን አቅጣጫ በ <emph> እርዝመት </emph> እና <emph> ስፋት </emph> ሳጥኖች ውስጥ </ahelp>"
#: 05040200.xhp
msgctxt ""
@@ -19902,7 +19902,7 @@ msgctxt ""
"par_id3154380\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">Select the text direction that you want to use in your document.</ahelp> The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer."
-msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">በ እርስዎ ሰነድ ውስጥ መጠቀም የሚፈልጉትን የ ጽሁፍ አቅጣጫ ይምረጡ</ahelp> ከ \"ቀኝ-ወደ-ግራ (በ ቁመት)\" የ ጽሁፍ ፍሰት አቅጣጫ ያዞራል ሁሉንም እቅድ ማሰናጃዎች ወደ ቀኝ በ 90 ዲግሪዎች: ከ ራስጌ እና ግርጌ በስተቀር"
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">በ እርስዎ ሰነድ ውስጥ መጠቀም የሚፈልጉትን የ ጽሁፍ አቅጣጫ ይምረጡ </ahelp> ከ \"ቀኝ-ወደ-ግራ (በ ቁመት)\" የ ጽሁፍ ፍሰት አቅጣጫ ያዞራል ሁሉንም እቅድ ማሰናጃዎች ወደ ቀኝ በ 90 ዲግሪዎች: ከ ራስጌ እና ግርጌ በስተቀር"
#: 05040200.xhp
msgctxt ""
@@ -20462,7 +20462,7 @@ msgctxt ""
"par_id3148453\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Overrides the <emph>Spacing </emph>setting, and allows the header to expand into the area between the header and the document text.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">መሻሪያ የ <emph>ክፍተት </emph>ማሰናጃዎችን እና መፍቀጃ የ ራስጌ ማስፊያ ወደ ራስጌ ቦታ መካከል እና በ ጽሁፍ ሰነድ ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">መሻሪያ የ <emph> ክፍተት </emph> ማሰናጃዎችን እና መፍቀጃ የ ራስጌ ማስፊያ ወደ ራስጌ ቦታ መካከል እና በ ጽሁፍ ሰነድ ውስጥ </ahelp>"
#: 05040300.xhp
msgctxt ""
@@ -20750,7 +20750,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKDYNSPACING\">Overrides the <emph>Spacing </emph>setting and allows the footer to expand into the area between the footer and document text.</ahelp>"
-msgstr "<ahelp hid=\"SVX_HID_FOOTER_CHECKDYNSPACING\"> የ <emph>ክፍተት </emph>ማሰናጃዎችን እና መፍቀጃ የ ግርጌ ማስፊያ ወደ ራስጌ ቦታ መካከል እና በ ጽሁፍ ሰነድ ውስጥ </ahelp>"
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_CHECKDYNSPACING\"> የ <emph> ክፍተት </emph> ማሰናጃዎችን እና መፍቀጃ የ ግርጌ ማስፊያ ወደ ራስጌ ቦታ መካከል እና በ ጽሁፍ ሰነድ ውስጥ </ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20894,7 +20894,7 @@ msgctxt ""
"par_id3150694\n"
"help.text"
msgid "<ahelp hid=\".\">Changes the first letter of the selected western characters to an uppercase character.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ አቢይ ፊደል መቀየሪያ</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ የ ላይኛው ፊደል መቀየሪያ </ahelp>"
#: 05050000.xhp
msgctxt ""
@@ -20902,7 +20902,7 @@ msgctxt ""
"hd_id3147571\n"
"help.text"
msgid "lowercase"
-msgstr "በ ትንንሽ ፊደል መጻፊያ"
+msgstr "የ ታችኛው ጉዳይ ፊደል"
#: 05050000.xhp
msgctxt ""
@@ -20910,7 +20910,7 @@ msgctxt ""
"par_id3150693\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ ትንሽ ፊደል መቀየሪያ</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToLower\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ የ ታችኛው ጉዳይ ፊደል መቀየሪያ </ahelp>"
#: 05050000.xhp
msgctxt ""
@@ -20918,7 +20918,7 @@ msgctxt ""
"hd_id3147143\n"
"help.text"
msgid "UPPERCASE"
-msgstr "በትልቅ ፊደል መጻፊያ"
+msgstr "በ ላይኛው ጉዳይ ፊደል"
#: 05050000.xhp
msgctxt ""
@@ -20926,7 +20926,7 @@ msgctxt ""
"par_id3152372\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>"
-msgstr "<ahelp hid=\".uno:ChangeCaseToUpper\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ አቢይ ፊደል መቀየሪያ</ahelp>"
+msgstr "<ahelp hid=\".uno:ChangeCaseToUpper\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ የ ላይኛው ጉዳይ ፊደል መቀየሪያ </ahelp>"
#: 05050000.xhp
msgctxt ""
@@ -20942,7 +20942,7 @@ msgctxt ""
"par_id3150613\n"
"help.text"
msgid "<ahelp hid=\".\">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ አቢይ ፊደል መቀየሪያ</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተመረጠውን የ መጀመሪያ የ ምእራባውያን ፊደል ባህሪዎች ወደ የ ላይኛው ፊደል መቀየሪያ </ahelp>"
#: 05050000.xhp
msgctxt ""
@@ -21070,7 +21070,7 @@ msgctxt ""
"par_id3149987\n"
"help.text"
msgid "Choose <emph>Format - Asian Phonetic Guide</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - የ እሲያ አፃፃፍ ዘዴ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - የ እሲያ አፃፃፍ ዘዴ </emph>"
#: 05060000.xhp
msgctxt ""
@@ -21110,7 +21110,7 @@ msgctxt ""
"par_id3145420\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Right4ED\">Enter the text that you want to use as a pronunciation guide for the base text.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Right4ED\">እርስዎ መጠቀም የሚፈልጉትን ጽሁፍ ያስገቡ ለ ንባብ መምሪያ በ base ጽሁፍ ውስጥ </ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Right4ED\">እርስዎ መጠቀም የሚፈልጉትን ጽሁፍ ያስገቡ ለ ንባብ መምሪያ በ ቤዝ ጽሁፍ ውስጥ </ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -21830,7 +21830,7 @@ msgctxt ""
"par_id3145671\n"
"help.text"
msgid "<variable id=\"zelleoben\">In the context menu of a cell, choose <emph>Cell - Top</emph></variable>"
-msgstr "<variable id=\"zelleoben\">በ ክፍሎች አገባብ ዝርዝር ውስጥ: ይምረጡ <emph>ክፍል - ከ ላይ</emph></variable>"
+msgstr "<variable id=\"zelleoben\">በ ክፍሎች አገባብ ዝርዝር ውስጥ: ይምረጡ <emph> ክፍል - ከ ላይ</emph></variable>"
#: 05100600.xhp
msgctxt ""
@@ -21862,7 +21862,7 @@ msgctxt ""
"par_id3149525\n"
"help.text"
msgid "<variable id=\"zellemitte\">In the context menu of a cell, choose <emph>Cell - Center</emph></variable>"
-msgstr "<variable id=\"zellemitte\">በ ክፍሎች አገባብ ዝርዝር ውስጥ: ይምረጡ <emph>ክፍል - መሀከል</emph></variable>"
+msgstr "<variable id=\"zellemitte\">በ ክፍሎች አገባብ ዝርዝር ውስጥ: ይምረጡ <emph> ክፍል - መሀከል</emph></variable>"
#: 05100700.xhp
msgctxt ""
@@ -21894,7 +21894,7 @@ msgctxt ""
"par_id3149201\n"
"help.text"
msgid "<variable id=\"zelleunten\">In the context menu of a cell, choose <emph>Cell - Bottom</emph></variable>"
-msgstr "<variable id=\"zelleunten\">በ ክፍሎች አገባብ ዝርዝር ውስጥ: ይምረጡ <emph>ክፍል - ከ ታች</emph></variable>"
+msgstr "<variable id=\"zelleunten\">በ ክፍሎች አገባብ ዝርዝር ውስጥ: ይምረጡ <emph> ክፍል - ከ ታች</emph></variable>"
#: 05110000.xhp
msgctxt ""
@@ -23430,7 +23430,7 @@ msgctxt ""
"par_id3153698\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnhatch\">Fills the object with a hatching pattern selected on this page.</ahelp> To apply a background color to the hatching pattern, select the <emph>Background color</emph> box, and then click a color in the list."
-msgstr "<ahelp hid=\"cui/ui/areatabpage/btnhatch\">የ ተመረጠውን እቃ መሙያ በ hatching ንድፍ እርስዎ በሚጫኑት ከ ዝርዝር ውስጥ መሙያ: </ahelp>የ መደብ ቀለም ለ መፈጸም ወደ hatching ንድፍ: ይምረጡ ከ <emph> መደብ ቀለም </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ ቀለም ከ ዝርዝር ውስጥ"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnhatch\">የ ተመረጠውን እቃ መሙያ በ hatching ንድፍ እርስዎ በሚጫኑት በዚህ ገጽ ውስጥ: </ahelp> የ መደብ ቀለም ለ መፈጸም ወደ hatching ንድፍ: ይምረጡ ከ <emph> መደብ ቀለም </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ ቀለም ከ ዝርዝር ውስጥ"
#: 05210100.xhp
msgctxt ""
@@ -23598,7 +23598,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Enter the intensity for the color in the <emph>To </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">የ ቀለም ጥልቀት ያስገቡ <emph>ከ </emph>ሳጥን ውስጥ: ይህ 0% ተመሳሳይ ነው ከ ጥቁር እና 100 % ለ ተመረጠው ቀለም</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">የ ቀለም ጥልቀት ያስገቡ <emph> ከ </emph> ሳጥን ውስጥ: ይህ 0% ተመሳሳይ ነው ከ ጥቁር እና 100 % ለ ተመረጠው ቀለም </ahelp>"
#: 05210300.xhp
msgctxt ""
@@ -24654,7 +24654,7 @@ msgctxt ""
"hd_id3147834\n"
"help.text"
msgid "Base point"
-msgstr "መሰረታዊ ነጥብ"
+msgstr "የ ቤዝ ነጥብ"
#: 05230100.xhp
msgctxt ""
@@ -24734,7 +24734,7 @@ msgctxt ""
"hd_id3148686\n"
"help.text"
msgid "Base point"
-msgstr "መሰረታዊ ነጥብ"
+msgstr "ቤዝ ነጥብ"
#: 05230100.xhp
msgctxt ""
@@ -25118,7 +25118,7 @@ msgctxt ""
"par_id368358\n"
"help.text"
msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
-msgstr "እነዚህ መጥሪያዎች የ መጀመሪያው እትም ስጦታ ናቸው %PRODUCTNAME. እርስዎ የ እቃ መደርደሪያ ወይንም ዝርዝር ማስተካከል አልብዎት እነዚህን መጥሪያዎች ለማስገባት: አዲሱ እትም በርካታ የ መጥሪያ ቅርጾች ገጽታ በ ውስጡ ይዟል: ለምሳለ: የ መጥሪያ እቃ መደርደሪያ <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">ምልክት</alt></image> እርስዎ ቅርጹን የሚመርጡበት"
+msgstr "እነዚህ መጥሪያዎች የ መጀመሪያው እትም ስጦታ ናቸው %PRODUCTNAME. እርስዎ የ እቃ መደርደሪያ ወይንም ዝርዝር ማስተካከል አለብዎት እነዚህን መጥሪያዎች ለማስገባት: አዲሱ እትም በርካታ የ መጥሪያ ቅርጾች ገጽታ በ ውስጡ ይዟል: ለምሳለ: የ መጥሪያ እቃ መደርደሪያ <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\"> ምልክት </alt></image> እርስዎ ቅርጹን የሚመርጡበት"
#: 05230500.xhp
msgctxt ""
@@ -25774,7 +25774,7 @@ msgctxt ""
"par_id3148668\n"
"help.text"
msgid "To edit the shape of a selected drawing object, click the <emph>Points</emph> icon on the <emph>Drawing</emph> Bar, and then drag one of the points on the object."
-msgstr "የ ተመረጠውን የ መሳያ እቃ ቅርጽ ለ መቀየር: ይጫኑ የ <emph>ነጥቦች</emph> ምልክት በ <emph>መሳያ</emph>መደርደሪያ ላይ: እና ከዛ ይጎትቱ አንዱን ነጥብ ከ እቃው ላይ"
+msgstr "የ ተመረጠውን የ መሳያ እቃ ቅርጽ ለ መቀየር: ይጫኑ የ <emph> ነጥቦች </emph> ምልክት በ <emph> መሳያ </emph> መደርደሪያ ላይ: እና ከዛ ይጎትቱ አንዱን ነጥብ ከ እቃው ላይ"
#: 05270000.xhp
msgctxt ""
@@ -25814,7 +25814,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "This <emph>Fontwork</emph> dialog is only available for Fontwork in old Writer text documents that were created prior to OpenOffice.org 2.0. You must first call <emph>Tools - Customize</emph> to add a menu command or an icon to open this dialog."
-msgstr "ይህ <emph>የ ፊደል ስራ</emph> ንግግር ዝግጁ የሚሆነው ለ ፊደል ስራ ብቻ ነው: በ አሮጌ የ ጽሁፍ ሰነድ ውስጥ የ OpenOffice.org 2.0. ከ መፈጠሩ በፊት: እርስዎ በ መጀመሪያ መጥራት አለብዎት <emph>መሳሪያዎች - ማስተካከያ</emph> ዝርዝር ትእዛዝ ለ መጨመር ወይንም ምልክት ይህን ንግግር ለ መክፈት"
+msgstr "ይህ <emph>የ ፊደል ስራ</emph> ንግግር ዝግጁ የሚሆነው ለ ፊደል ስራ ብቻ ነው: በ አሮጌ የ ጽሁፍ ሰነድ ውስጥ የ OpenOffice.org 2.0. ከ መፈጠሩ በፊት: እርስዎ በ መጀመሪያ መጥራት አለብዎት <emph> መሳሪያዎች - ማስተካከያ </emph> ዝርዝር ትእዛዝ ለ መጨመር ወይንም ምልክት ይህን ንግግር ለ መክፈት"
#: 05280000.xhp
msgctxt ""
@@ -25846,7 +25846,7 @@ msgctxt ""
"par_id3152542\n"
"help.text"
msgid "The top row contains the following baseline shapes: <emph>Upper Semicircle</emph>, <emph>Lower Semicircle</emph>, <emph>Left Semicircle</emph> and <emph>Right Semicircle</emph>."
-msgstr "የ ላይኛው ረድፍ የያዘው የሚከተሉትን መሰረታዊ መስመር ቅርጾች ነው: <emph>የ ላይኛው ንዑስ ክብ</emph>, <emph>የ ታችኛው ንዑስ ክብ</emph>, <emph>የ ግራ ንዑስ ክብ</emph> እና <emph>የ ቀኝ ንዑስ ክብ</emph>."
+msgstr "የ ላይኛው ረድፍ የያዘው የሚከተሉትን መሰረታዊ መስመር ቅርጾች ነው: <emph> የ ላይኛው ንዑስ ክብ </emph>:<emph> የ ታችኛው ንዑስ ክብ </emph>:<emph> የ ግራ ንዑስ ክብ </emph> እና <emph> የ ቀኝ ንዑስ ክብ </emph>"
#: 05280000.xhp
msgctxt ""
@@ -25854,7 +25854,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "The middle row contains the following baseline shapes: <emph>Upper Arc</emph>, <emph>Lower Arc, Left Arc</emph> and <emph>Right Arc</emph>."
-msgstr "የ መሀከለኛው ረድፍ የያዘው የሚከተሉትን መሰረታዊ መስመር ቅርጾች ነው: <emph>የ ላይኛው ቅስት</emph>, <emph>የ ታችኛው ቅስት: የ ግራ ቅስት</emph> እና <emph>የ ቀኝ ቅስት</emph>."
+msgstr "የ መሀከለኛው ረድፍ የያዘው የሚከተሉትን መሰረታዊ መስመር ቅርጾች ነው: <emph> የ ላይኛው ቅስት </emph>:<emph> የ ታችኛው ቅስት: የ ግራ ቅስት </emph> እና <emph> የ ቀኝ ቅስት </emph>"
#: 05280000.xhp
msgctxt ""
@@ -25862,7 +25862,7 @@ msgctxt ""
"par_id3159158\n"
"help.text"
msgid "The bottom row contains the following baseline shapes: <emph>Open Circle, Closed Circle, Closed Circle II</emph>, and <emph>Open Circle Vertical</emph>. For the best results, the drawing object must contain more than two lines of text."
-msgstr "የ ታችኛው ረድፍ የያዘው የሚከተሉትን መሰረታዊ መስመር ቅርጾች ነው: <emph>ክብ መክፈቻ: ክብ መዝጊያ: ክብ መዝጊያ II</emph> እና <emph>ክብ መክፈቻ በ ቁመት</emph>ለ ተሻለ ውጤት: የ መሳያ እቃው ከ ሁለት በላይ የ ጽሁፍ መስመሮች መያዝ አለበት"
+msgstr "የ ታችኛው ረድፍ የያዘው የሚከተሉትን መሰረታዊ መስመር ቅርጾች ነው: <emph> ክብ መክፈቻ: ክብ መዝጊያ: ክብ መዝጊያ II </emph> እና <emph> ክብ መክፈቻ በ ቁመት </emph> ለ ተሻለ ውጤት: የ መሳያ እቃው ከ ሁለት በላይ የ ጽሁፍ መስመሮች መያዝ አለበት"
#: 05280000.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "To edit the individual objects of a group, select the group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Enter Group</emph></caseinline><defaultinline><emph>Group - Enter Group</emph></defaultinline></switchinline>"
-msgstr "እያንዳንዱን እቃ ለ ማረም ከ ቡድን ውስጥ: ይምረጡ ቡድን: በ ቀኝ-ይጫኑ: እና ከዛ ይምረጡ ወደ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>ቡድን መግቢያ</emph></caseinline><defaultinline><emph>ቡድን - ወደ ቡድን መግቢያ</emph></defaultinline></switchinline>"
+msgstr "እያንዳንዱን እቃ ለ ማረም ከ ቡድን ውስጥ: ይምረጡ ቡድን: በ ቀኝ-ይጫኑ: እና ከዛ ይምረጡ ወደ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph> ቡድን መግቢያ </emph></caseinline><defaultinline><emph> ቡድን - ወደ ቡድን መግቢያ </emph></defaultinline></switchinline>"
#: 05290000.xhp
msgctxt ""
@@ -26414,7 +26414,7 @@ msgctxt ""
"par_id3154810\n"
"help.text"
msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
-msgstr "ከ ቡድን ውስጥ ለ መውጣት: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>ከ ቡድን መውጫ</emph></caseinline><defaultinline><emph>ቡድን - ከ ቡድን መውጫ</emph></defaultinline></switchinline>"
+msgstr "ከ ቡድን ውስጥ ለ መውጣት: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph> ከ ቡድን መውጫ </emph></caseinline><defaultinline><emph> ቡድን - ከ ቡድን መውጫ </emph></defaultinline></switchinline>"
#: 05290000.xhp
msgctxt ""
@@ -27582,7 +27582,7 @@ msgctxt ""
"bm_id3153116\n"
"help.text"
msgid "<bookmark_value>data source browser</bookmark_value><bookmark_value>tables in databases;browsing and editing</bookmark_value><bookmark_value>databases; editing tables</bookmark_value><bookmark_value>editing; database tables and queries</bookmark_value><bookmark_value>queries; editing in data source view</bookmark_value>"
-msgstr "<bookmark_value>ዳታ ምንጭ መቃኛ</bookmark_value><bookmark_value>ሰንጠረዥ በ ዳታቤዝ ውስጥ;መቃኛ እና ማረሚያ</bookmark_value><bookmark_value>ዳታቤዝ; ማረሚያ ሰንጠረዥ</bookmark_value><bookmark_value>ማረሚያ; ዳታቤዝ ሰንጠረዥ እና ጥያቄዎች</bookmark_value><bookmark_value>ጥያቄዎች; ማረሚያ የ ዳታ ምንጭ መመልከቻ</bookmark_value>"
+msgstr "<bookmark_value>ዳታ ምንጭ መቃኛ</bookmark_value><bookmark_value>ሰንጠረዥ በ ዳታቤዝ ውስጥ: መቃኛ እና ማረሚያ</bookmark_value><bookmark_value>ዳታቤዝ: ማረሚያ ሰንጠረዥ</bookmark_value><bookmark_value>ማረሚያ: ዳታቤዝ ሰንጠረዥ እና ጥያቄዎች</bookmark_value><bookmark_value>ጥያቄዎች: ማረሚያ የ ዳታ ምንጭ መመልከቻ</bookmark_value>"
#: 05340400.xhp
msgctxt ""
@@ -27622,7 +27622,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\".\">The commands for the data source browser are found on the <link href=\"text/shared/01/05340400.xhp\" name=\"Database Bar\">Table Data bar</link> and in <link href=\"text/shared/01/05340400.xhp\" name=\"context menus\">context menus</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ ዳታ ምንጭ መቃኛ ትእዛዞች የሚገኙት በ <link href=\"text/shared/01/05340400.xhp\" name=\"Database Bar\">ሰንጠረዥ ዳታ መደርደሪያ</link> እና በ <link href=\"text/shared/01/05340400.xhp\" name=\"context menus\">አገባብ ዝርዝር ውስጥ ነው</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">ለ ዳታ ምንጭ መቃኛ ትእዛዞች የሚገኙት በ <link href=\"text/shared/01/05340400.xhp\" name=\"Database Bar\"> ሰንጠረዥ ዳታ መደርደሪያ </link> እና በ <link href=\"text/shared/01/05340400.xhp\" name=\"context menus\"> አገባብ ዝርዝር ውስጥ ነው </link></ahelp>"
#: 05340400.xhp
msgctxt ""
@@ -27910,7 +27910,7 @@ msgctxt ""
"par_id3166414\n"
"help.text"
msgid "<ahelp hid=\".\">Go to the next record in the table.</ahelp>"
-msgstr "<ahelp hid=\".\">በ ሰንጠረዡ ውስጥ ወደሚቀጥለው መዝገብ መሄጃe.</ahelp>"
+msgstr "<ahelp hid=\".\">በ ሰንጠረዡ ውስጥ ወደሚቀጥለው መዝገብ መሄጃ </ahelp>"
#: 05340400.xhp
msgctxt ""
@@ -27958,7 +27958,7 @@ msgctxt ""
"par_id3146913\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
-msgstr "<ahelp hid=\".\">ወደ አሁኑ ሰንጠረዥ አዲስ መዝገብ ማስገቢያ</ahelp> መዝገብ ለ መፍጠር: ይጫኑ ኮከብ (*) ቁልፍ ከ ሰንጠረዡ ከ ታች በኩል የሚታየውን: ባዶ ረድፍ ይጨመራል ከ ሰንጠረዡ በ ታች በኩል"
+msgstr "<ahelp hid=\".\">ወደ አሁኑ ሰንጠረዥ አዲስ መዝገብ ማስገቢያ </ahelp> መዝገብ ለ መፍጠር: ይጫኑ ኮከብ (*) ቁልፍ ከ ሰንጠረዡ ከ ታች በኩል የሚታየውን: ባዶ ረድፍ ይጨመራል ከ ሰንጠረዡ በ ታች በኩል"
#: 05340400.xhp
msgctxt ""
@@ -28078,7 +28078,7 @@ msgctxt ""
"par_id3145129\n"
"help.text"
msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">Edit</link> icon on the Table Data bar or Standard bar."
-msgstr "ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ ሲመርጡ ብቻ ነው የ <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">ማረሚያ</link> ምልክት በ ሰንጠረዥ ዳታ መደርደሪያ ላይ ወይንም በ መደበኛ መደርደሪያ ላይ"
+msgstr "ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ ሲመርጡ ብቻ ነው የ <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\"> ማረሚያ </link> ምልክት በ ሰንጠረዥ ዳታ መደርደሪያ ላይ ወይንም በ መደበኛ መደርደሪያ ላይ"
#: 05340405.xhp
msgctxt ""
@@ -28598,7 +28598,7 @@ msgctxt ""
"par_id3155583\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/mode\">Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/docking3deffects/mode\">እርስዎ መጠቀም የሚፈልጉትን የ ጥላ ዘዴ ይምረጡ: ጠፍጣፋ ጥላ የሚፈጽመው ነጠላ ቀለም ለ ነጠላ ፖሊጎን በ ገጽታው ላይ ለ እቃው: Gouraud ጥላ ይቀላቀላል ከ ቀለሞች ጋር በ ፖሊጎን ባሻገር: Phong ጥላ መካከለኛ ቀለም ለ እያንዳንዱ ፒክስል የ ከበበውን: እና የሚያስፈልገውን በጣም አስፈላጊ ሐይል </ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/mode\">እርስዎ መጠቀም የሚፈልጉትን የ ጥላ ዘዴ ይምረጡ: ጠፍጣፋ ጥላ የሚፈጽመው ነጠላ ቀለም ለ ነጠላ ፖሊጎን በ ገጽታው ላይ ለ እቃው: ጥላ ማጥሊያ ጥላ ይቀላቀላል ከ ቀለሞች ጋር በ ፖሊጎን ባሻገር: Phong ጥላ መካከለኛ ቀለም ለ እያንዳንዱ ፒክስል የ ከበበውን: እና የሚያስፈልገውን በጣም አስፈላጊ ሐይል </ahelp>"
#: 05350300.xhp
msgctxt ""
@@ -29382,7 +29382,7 @@ msgctxt ""
"par_id3153303\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/favorites\">Select a predefined color scheme, or select <emph>User-defined</emph> to define a custom color scheme.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/docking3deffects/favorites\">Select a predefined color scheme, or select <emph>User-defined</emph> to define a custom color scheme.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/favorites\">በ ቅድሚያ የ ተገለጸውን የ ቀለም ገጽታ: ወይንም ይምረጡ <emph> በ ተጠቃሚ-የሚገለጽ </emph> ለ መግለጽ የ ቀለም ገጽታ ማስተካከያ </ahelp>"
#: 05350600.xhp
msgctxt ""
@@ -29550,7 +29550,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/distributionpage/hornone\">Does not distribute the objects horizontally.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/hornone\">Does not distribute the objects horizontally.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/distributionpage/hornone\">እቃዎቹን በ አግድም አያሰራጭም </ahelp>"
#: 05360000.xhp
msgctxt ""
@@ -29646,7 +29646,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/distributionpage/vernone\">Does not distribute the objects vertically.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/vernone\">Does not distribute the objects vertically.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/distributionpage/vernone\">እቃዎቹን በ ቁመት አያሰራጭም </ahelp>"
#: 05360000.xhp
msgctxt ""
@@ -29790,7 +29790,7 @@ msgctxt ""
"par_id3166445\n"
"help.text"
msgid "Spellcheck looks for misspelled words and gives you the option of adding an unknown word to a user dictionary. When the first misspelled word is found, the <emph>Spellcheck</emph> dialog opens."
-msgstr "ፊደል ማረሚያ የሚያየው የ ተሳሳቱ ፊደሎችን ነው: እና ለ እርስዎ ምርጫዎችን ያቀርባል እና የማይታወቅ ቃል ወደ መዝገበ ቃላት ውስጥ መጨመሪያ ምርጫ ያቀርባል: የ መጀመሪያው የ ተሳሳተ ፊደል ሲገኝ የ <emph>ፊደል ማረሚያ</emph> ንግግር ይከፈታል"
+msgstr "ፊደል ማረሚያ የሚያየው የ ተሳሳቱ ፊደሎችን ነው: እና ለ እርስዎ ምርጫዎችን ያቀርባል እና የማይታወቅ ቃል ወደ መዝገበ ቃላት ውስጥ መጨመሪያ ምርጫ ያቀርባል: የ መጀመሪያው የ ተሳሳተ ፊደል ሲገኝ የ <emph> ፊደል ማረሚያ </emph> ንግግር ይከፈታል"
#: 06010000.xhp
msgctxt ""
@@ -29798,7 +29798,7 @@ msgctxt ""
"par_id1022200801300654\n"
"help.text"
msgid "If a grammar checking extension is installed, this dialog is called <emph>Spelling and Grammar</emph>. Spelling errors are underlined in red, grammar errors in blue. First the dialog presents all spelling errors, then all grammar errors."
-msgstr "የ ሰዋሰው መመርመሪያ ተጨማሪ ተገጥሞ ከሆነ: ንግግሩ ይጠራል <emph>ፊደል እና ሰዋሰው ማረሚያ </emph> የ ፊደል ስህተት ከስሩ በ ቀይ ቀለም ይሰመርበታል: የ ሰዋሰው ስህተት ከስሩ በ ሰማያዊ ቀለም ይሰመርበታል: ንግግሩ በ መጀመሪያ ሁሉንም የ ፊደል ስህተቶችን ያቀርባል እና ከዛ በኋላ ሁሉንም የ ሰዋሰው ስህተቶች በሙሉ ያቀርባል"
+msgstr "የ ሰዋሰው መመርመሪያ ተጨማሪ ተገጥሞ ከሆነ: ንግግሩ ይጠራል <emph> ፊደል እና ሰዋሰው ማረሚያ </emph> የ ፊደል ስህተት ከስሩ በ ቀይ ቀለም ይሰመርበታል: የ ሰዋሰው ስህተት ከስሩ በ ሰማያዊ ቀለም ይሰመርበታል: ንግግሩ በ መጀመሪያ ሁሉንም የ ፊደል ስህተቶችን ያቀርባል እና ከዛ በኋላ ሁሉንም የ ሰዋሰው ስህተቶች በሙሉ ያቀርባል"
#: 06010000.xhp
msgctxt ""
@@ -29934,7 +29934,7 @@ msgctxt ""
"par_id1024200804091149\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ሰዋሰው በሚመረምሩ ጊዜ: ይጫኑ መተው ደንቡን: አሁን የሚታየውን የ ሰዋሰው ስህተት ደንቡን ለ መተው </ahelp>"
#: 06010000.xhp
msgctxt ""
@@ -29982,7 +29982,7 @@ msgctxt ""
"par_id3144446\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/spellingdialog/changeall\">Replaces all occurrences of the unknown word with the current suggestion.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/spellingdialog/changeall\">ሁሉንም ሁኔታዎች መቀየሪያ ያልተወቀውን ቃል በ አሁኑ ሀሳብ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/spellingdialog/changeall\">ሁሉንም ሁኔታዎች መቀየሪያ ያልተወቀውን ቃል በ አሁኑ ሀሳብ ውስጥ </ahelp>"
#: 06010000.xhp
msgctxt ""
@@ -30070,7 +30070,7 @@ msgctxt ""
"par_id1507309\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ ንዑስ ዝርዝር: ይምረጡ ቋንቋ ለ ተመረጠው ጽሁፍ: <br/> ይምረጡ ምንም የ ተመረጠውን ጽሁፍ ከ ፊደል እና ከ ጭረት መመርመሪያ ለ መከልከል: <br/> ይምረጡ ተጨማሪ ንግግር ለ መክፈት ለ ተጨማሪ ምርጫዎች </ahelp>"
#: 06010500.xhp
msgctxt ""
@@ -30086,7 +30086,7 @@ msgctxt ""
"par_id3928952\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ ንዑስ ዝርዝር: ይምረጡ ቋንቋ ለ ተመረጠው አንቀጽ: <br/> ይምረጡ ምንም የ ተመረጠውን አንቀጽ ከ ፊደል እና ከ ጭረት መመርመሪያ ለ መከልከል: <br/> ይምረጡ ተጨማሪ ንግግር ለ መክፈት ለ ተጨማሪ ምርጫዎች </ahelp>"
#: 06010500.xhp
msgctxt ""
@@ -30102,7 +30102,7 @@ msgctxt ""
"par_id5735953\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ ንዑስ ዝርዝር: ይምረጡ ቋንቋ ለ ሁሉም ጽሁፍ: <br/> ይምረጡ ምንም የ ተመረጠውን ጽሁፍ ከ ፊደል እና ከ ጭረት መመርመሪያ ለ መከልከል: <br/> ይምረጡ ተጨማሪ ንግግር ለ መክፈት ለ ተጨማሪ ምርጫዎች </ahelp>"
#: 06010500.xhp
msgctxt ""
@@ -30166,7 +30166,7 @@ msgctxt ""
"par_id0805200811534630\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the default browser on the dictionaries extension page.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens the default browser on the dictionaries extension page.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ ነባር መቃኛውን በ መዝገበ ቃላት ተጨማሪ ገጽ ውስጥ </ahelp>"
#: 06010600.xhp
msgctxt ""
@@ -30222,7 +30222,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "ባህላዊ ቻይንኛ ወደ ቀላል ቻይንኛ"
#: 06010600.xhp
msgctxt ""
@@ -30238,7 +30238,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "ቀላል ቻይንኛ ወደ ባህላዊ ቻይንኛ"
#: 06010600.xhp
msgctxt ""
@@ -30310,7 +30310,7 @@ msgctxt ""
"bm_id905789\n"
"help.text"
msgid "<bookmark_value>common terms;Chinese dictionary</bookmark_value><bookmark_value>dictionaries;common terms in simplified and traditional chinese</bookmark_value>"
-msgstr "<bookmark_value>መደበኛ ደንቦች: Chinese መዝገበ ቃላት</bookmark_value><bookmark_value>መዝገበ ቃላት: መደበኛ ደንቦች በ ቀላል እና ባህላዊ chinese</bookmark_value>"
+msgstr "<bookmark_value>መደበኛ ደንቦች: ቻይንኛ መዝገበ ቃላት</bookmark_value><bookmark_value>መዝገበ ቃላት: መደበኛ ደንቦች በ ቀላል እና ባህላዊ ቻይንኛ</bookmark_value>"
#: 06010601.xhp
msgctxt ""
@@ -30758,7 +30758,7 @@ msgctxt ""
"par_id3154173\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/dockingcolorreplace/color4\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/dockingcolorreplace/color4\">ዝግጁ የሆኑ የ መቀየሪያ ቀለሞች ዝርዝር: የ አሁኑን ዝርዝር ቀለሞች ለማሻሻል: ምስል አይምረጡ: ይምረጡ <emph>አቀራረብ - ቦታ</emph>, እና ከዛ ይጫኑ የ <emph>ቀለሞች</emph> tab.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/dockingcolorreplace/color4\">ዝግጁ የሆኑ የ መቀየሪያ ቀለሞች ዝርዝር: የ አሁኑን ዝርዝር ቀለሞች ለማሻሻል: ምስል አይምረጡ: ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ከዛ ይጫኑ የ <emph> ቀለሞች </emph> tab.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -30926,7 +30926,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "If you type two uppercase letters at the beginning of a \"WOrd\", the second uppercase letter is automatically replaced with a lowercase letter."
-msgstr "እርስዎ ከጻፉ በ ቃላት መጀመሪያ ላይ \"WOrd\" በ ሁለት አቢይ ፊደል: ሁለተኛው አቢይ ፊደል ራሱ በራሱ ወደ ዝቅተኛ ፊደል ይቀየራል"
+msgstr "እርስዎ ከጻፉ በ ቃላት መጀመሪያ ላይ \"WOrd\" በ ሁለት አቢይ ፊደል: ሁለተኛው አቢይ ፊደል ራሱ በራሱ ወደ ታችኛው ጉዳይ ፊደል ይቀየራል"
#: 06040100.xhp
msgctxt ""
@@ -31198,7 +31198,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically creates a numbered list when you press Enter at the end of a line that starts with a number followed by a period, a space, and text. If a line starts with a hyphen (-), a plus sign (+), or an asterisk (*), followed by a space, and text, a bulleted list is created when you press Enter.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ራሱ በራሱ ቁጥር የ ተሰጣቸው ዝርዝር መፍጠሪያ እርስዎ በሚጫኑ ጊዜ ማስገቢያውን በ መስመር መጨረሻ ላይ በ ቁጥር የሚጀምር ነጥብ አስከትሎ: ክፍተት እና ጽሁፍ: መስመሩ በ ጭረት የሚጀምር ከሆነ (-), የ መደመሪያ ምልክት (+), ወይንም የ ኮከብ (*), ክፍተት አስከትሎ እና ጽሁፍ ነጥብ የ ተደረገባቸው ዝርዝር ይፈጠራል እርስዎ በሚጫኑ ጊዜ ማስገቢያውን</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ራሱ በራሱ ቁጥር የ ተሰጣቸው ዝርዝር መፍጠሪያ እርስዎ በሚጫኑ ጊዜ ማስገቢያውን በ መስመር መጨረሻ ላይ በ ቁጥር የሚጀምር ነጥብ አስከትሎ: ክፍተት እና ጽሁፍ: መስመሩ በ ጭረት የሚጀምር ከሆነ (-): የ መደመሪያ ምልክት (+): ወይንም የ ኮከብ (*): ክፍተት አስከትሎ እና ጽሁፍ ነጥብ የ ተደረገባቸው ዝርዝር ይፈጠራል እርስዎ በሚጫኑ ጊዜ ማስገቢያውን </caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -31214,7 +31214,7 @@ msgctxt ""
"par_id3145606\n"
"help.text"
msgid "The automatic numbering option is only applied to paragraphs that are formatted with the \"Default\", \"Text body\", or \"Text body indent\" paragraph style."
-msgstr "ራሱ በራሱ ቁጥር መስጫ ምርጫ የሚፈጸመው በ አንቀጾች አቀራረብ ሲጠቀሙ ነው በ \"ነባር\", \"የ ጽሁፍ ሰውነት\", ወይንም \"የ ጽሁፍ ሰውነት ማስረጊያ\" በ አንቀጽ ዘዴ ውስጥ"
+msgstr "ራሱ በራሱ ቁጥር መስጫ ምርጫ የሚፈጸመው በ አንቀጾች አቀራረብ ሲጠቀሙ ነው በ \"ነባር\": \"የ ጽሁፍ ሰውነት\": ወይንም \"የ ጽሁፍ ሰውነት ማስረጊያ\" በ አንቀጽ ዘዴ ውስጥ"
#: 06040100.xhp
msgctxt ""
@@ -31238,7 +31238,7 @@ msgctxt ""
"par_idN10C2E\n"
"help.text"
msgid "To delete the created line, click the paragraph above the line, choose <emph>Format - Paragraph - Borders</emph>, delete the bottom border."
-msgstr "የ ተፈጠረውን መስመር ለማጥፋት: ይጫኑ ከ መስመሩ በላይ ያለውን አንቀጽ: ይምረጡ <emph>አቀራረብ - አንቀጽ - ድንበር</emph> የ ታችኛውን ድንበር ማጥፊያ"
+msgstr "የ ተፈጠረውን መስመር ለማጥፋት: ይጫኑ ከ መስመሩ በላይ ያለውን አንቀጽ: ይምረጡ <emph> አቀራረብ - አንቀጽ - ድንበር </emph> የ ታችኛውን ድንበር ማጥፊያ"
#: 06040100.xhp
msgctxt ""
@@ -31430,7 +31430,7 @@ msgctxt ""
"par_id3150420\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Converts paragraphs that start with a hyphen (-), a plus sign (+), or an asterisk (*) directly followed by a space or a tab, to bulleted lists. This option only works on paragraphs that are formatted with the \"Default\", \"Text Body\", or \"Text Body Indent\" paragraph styles. To change the bullet style that is used, select this option, and then click <emph>Edit</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">አንቀጾች መቀየሪያ የሚጀምሩ በ ጭረት (-), የ መደመሪያ ምልክት (+), ወይንም የ ኮከብ (*) በ ቀጥታ የሚቀጥል ክፍተት ወይንም tab, ነጥብ የ ተደረገባቸው ዝርዝር: ይህ ምርጫ የሚሰራው ለ አንቀጾች በ \"ነባር\" ለቀረቡ ነው የ \"ጽሁፍ አካል\", ወይንም የ \"ጽሁፍ አካል ማስረጊያ\" አንቀጽ ዘዴ: የ ነጥብ ዘዴ ለ መቀየር የሚጠቀሙበትን: ይህን ምርጫ ይምረጡ: እና ከዛ ይጫኑ <emph> ማረሚያ </emph>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">አንቀጾች መቀየሪያ የሚጀምሩ በ ጭረት (-): የ መደመሪያ ምልክት (+): ወይንም የ ኮከብ (*) በ ቀጥታ የሚቀጥል ክፍተት ወይንም tab, ነጥብ የ ተደረገባቸው ዝርዝር: ይህ ምርጫ የሚሰራው ለ አንቀጾች በ \"ነባር\" ለቀረቡ ነው የ \"ጽሁፍ አካል\": ወይንም የ \"ጽሁፍ አካል ማስረጊያ\" አንቀጽ ዘዴ: የ ነጥብ ዘዴ ለ መቀየር የሚጠቀሙበትን: ይህን ምርጫ ይምረጡ: እና ከዛ ይጫኑ <emph> ማረሚያ </emph></caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -31446,7 +31446,7 @@ msgctxt ""
"par_id3154162\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combines consecutive single-line paragraphs into a single paragraph. This option only works on paragraphs that use the \"Default\" paragraph style. If a paragraph is longer than the specified length value, the paragraph is combined with the next paragraph. To enter a different length value, select the option, and then click <link href=\"text/swriter/01/05150104.xhp\"><emph>Edit</emph></link>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">መቀላቀያ ተከታታይ የ ነጠላ-መስመር አንቀጾች ወደ ነጠላ አንቀጽ: ይህ ምርጫ የሚሰራው በ አንቀጾች የ \"ነባር\" አንቀጽ ዘዴ ለሚከተሉ ነው: አንቀጹ ከ ተወሰነ የ እርዝመት በላይ ከሆ: አንቀጹ ይቀላቀላል ከሚቀጥለው አንቀጽ ጋር: የ ተለየ የ እርዝመት ዋጋ ለማስገባት: ይምረጡ ከ ምርጫ ውስጥ እና ከዛ ይጫኑ <link href=\"text/swriter/01/05150104.xhp\"><emph>ማረሚያ</emph></link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">መቀላቀያ ተከታታይ የ ነጠላ-መስመር አንቀጾች ወደ ነጠላ አንቀጽ: ይህ ምርጫ የሚሰራው በ አንቀጾች የ \"ነባር\" አንቀጽ ዘዴ ለሚከተሉ ነው: አንቀጹ ከ ተወሰነ የ እርዝመት በላይ ከሆ: አንቀጹ ይቀላቀላል ከሚቀጥለው አንቀጽ ጋር: የ ተለየ የ እርዝመት ዋጋ ለማስገባት: ይምረጡ ከ ምርጫ ውስጥ እና ከዛ ይጫኑ <link href=\"text/swriter/01/05150104.xhp\"><emph> ማረሚያ </emph></link></caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -31510,7 +31510,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To enable the replacement table, choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>, click the <emph>Options</emph> tab, and then select <emph>Use replacement table</emph>. To use the replacement table while you type, check <emph>Tools - AutoCorrect - While Typing</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ መቀየሪያ ሰንጠረዥ ለ ማስቻል: ይምረጡ <emph> መሳሪያዎች – በራሱ አራሚ - በራሱ አራሚ ምርጫ </emph> ይጫኑ የ <emph> ምርጫ </emph> tab, እና ከዛ ይምረጡ <emph> የ መቀየሪያ ሰንጠረዥ ይጠቀሙ </emph> የ መቀየሪያ ሰንጠረዥ ለ መጠቀም እርስዎ በሚጽፉ ጊዜ: ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - በምጽፍ ጊዜ </emph>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ መቀየሪያ ሰንጠረዥ ለ ማስቻል: ይምረጡ <emph> መሳሪያዎች – በራሱ አራሚ - በራሱ አራሚ ምርጫ </emph> ይጫኑ የ <emph> ምርጫ </emph> tab: እና ከዛ ይምረጡ <emph> የ መቀየሪያ ሰንጠረዥ ይጠቀሙ </emph> የ መቀየሪያ ሰንጠረዥ ለ መጠቀም እርስዎ በሚጽፉ ጊዜ: ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - በምጽፍ ጊዜ </emph></caseinline></switchinline>"
#: 06040200.xhp
msgctxt ""
@@ -31526,7 +31526,7 @@ msgctxt ""
"par_id3152945\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/acorreplacepage/tabview\">Lists the entries for automatically replacing words, abbreviations or word parts while you type. To add an entry, enter text in the <emph>Replace </emph>and <emph>With </emph>boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph>Delete</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/acorreplacepage/tabview\">የ ማስገቢያዎች ዝርዝር ለ ራሱ በራሱ ቃሎች መቀየሪያ: አኅፃሮተ ቃል: ወይንም የ ቃል አካል እርስዎ በሚጽፉ ጊዜ: ማስገቢያ ለ መጨመር ጽሁፍ ያስገቡ በ <emph> መቀየሪያ </emph> እና <emph> በ </emph> ሳጥኖች ውስጥ: እና ከዛ ይጫኑ <emph> አዲስ </emph> ማስገቢያ ለ ማረም: ይምረጡት: ጽሁፍ መቀየሪያ <emph> ከ </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ <emph> መቀየሪያ </emph> ማስገቢያውን ለማጥፋት: ይምረጡት: እና ከዛ ይጫኑ <emph> ማጥፊያ </emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/tabview\">የ ማስገቢያዎች ዝርዝር ለ ራሱ በራሱ ቃሎች መቀየሪያ: አኅፃሮተ ቃል: ወይንም የ ቃል አካል እርስዎ በሚጽፉ ጊዜ: ማስገቢያ ለ መጨመር ጽሁፍ ያስገቡ በ <emph> መቀየሪያ </emph> እና <emph> በ </emph> ሳጥኖች ውስጥ: እና ከዛ ይጫኑ <emph> አዲስ </emph> ማስገቢያ ለ ማረም: ይምረጡት: ጽሁፍ መቀየሪያ <emph> ከ </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ <emph> መቀየሪያ </emph> ማስገቢያውን ለማጥፋት: ይምረጡት: እና ከዛ ይጫኑ <emph> ማጥፊያ </emph></ahelp>"
#: 06040200.xhp
msgctxt ""
@@ -31534,7 +31534,7 @@ msgctxt ""
"par_id3153349\n"
"help.text"
msgid "You can use the AutoCorrect feature to apply a specific character format to a word, abbreviation or a word part. Select the formatted text in your document, open this dialog, clear the <emph>Text only</emph> box, and then enter the text that you want to replace in the<emph> Replace</emph> box."
-msgstr "እርስዎ መጠቀም ይችላሉ በራሱ አራሚ ገጽታ የ ተወሰነ የ ባህሪ አቀራረብ በ ቃል ውስጥ ለ መፈጸም: አኅጽሮተ ቃል ወይንም የ ቃል አካል: ይምረጡ የ ጽሁፍ አቀራረብ በ እርስዎ ሰነድ ውስጥ: ይክፈቱ ይህን ንግግር: ያጽዱ የ <emph>ጽሁፍ ብቻ</emph> ሳጥን ውስጥ: እና ከዛ ያስገቡ ጽሁፍ እርስዎ መቀየር የሚፈልጉትን በ <emph> መቀየሪያ</emph> ሳጥን ውስጥ:"
+msgstr "እርስዎ መጠቀም ይችላሉ በራሱ አራሚ ገጽታ የ ተወሰነ የ ባህሪ አቀራረብ በ ቃል ውስጥ ለ መፈጸም: አኅጽሮተ ቃል ወይንም የ ቃል አካል: ይምረጡ የ ጽሁፍ አቀራረብ በ እርስዎ ሰነድ ውስጥ: ይክፈቱ ይህን ንግግር: ያጽዱ የ <emph> ጽሁፍ ብቻ </emph> ሳጥን ውስጥ: እና ከዛ ያስገቡ ጽሁፍ እርስዎ መቀየር የሚፈልጉትን በ <emph> መቀየሪያ </emph> ሳጥን ውስጥ:"
#: 06040200.xhp
msgctxt ""
@@ -31542,7 +31542,7 @@ msgctxt ""
"par_id3154173\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">You can also include frames, graphics, and OLE objects in an AutoCorrect entry, so long as they are anchored <emph>as characters</emph> in the text. Select the frame, graphic or OLE object and at least one text character in front of and behind the object. Open this dialog, type a name for this AutoCorrect entry in the <emph>Replace </emph>box, and then click <emph>New</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ማካተት ይችላሉ ክፈፎች: ንድፎች: እና የOLE እቃዎች ለ በራሱ አራሚ ማስገቢያ ውስጥ: እቃዎቹ እስከ ቆሙ ድረስ: <emph> እንደ ባህሪዎች </emph> በ ጽሁፍ ውስጥ: ይምረጡ ክፈፍ: ንድፎች: ወይንም የ OLE እቃ እና ቢያንስ አንድ የ ጽሁፍ ባህሪ ከ ፊት ለ ፊት እና ከ እቃው ኋላ: ይህን ንግግር ይክፈቱ: ስም ይጻፉ ለ በራሱ አራሚ ማስገቢያ በ <emph> መቀየሪያ </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ <emph> አዲስ </emph>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ማካተት ይችላሉ ክፈፎች: ንድፎች: እና የOLE እቃዎች ለ በራሱ አራሚ ማስገቢያ ውስጥ: እቃዎቹ እስከ ቆሙ ድረስ: <emph> እንደ ባህሪዎች </emph> በ ጽሁፍ ውስጥ: ይምረጡ ክፈፍ: ንድፎች: ወይንም የ OLE እቃ እና ቢያንስ አንድ የ ጽሁፍ ባህሪ ከ ፊት ለ ፊት እና ከ እቃው ኋላ: ይህን ንግግር ይክፈቱ: ስም ይጻፉ ለ በራሱ አራሚ ማስገቢያ በ <emph> መቀየሪያ </emph> ሳጥን ውስጥ: እና ከዛ ይጫኑ <emph> አዲስ </emph></caseinline></switchinline>"
#: 06040200.xhp
msgctxt ""
@@ -31686,7 +31686,7 @@ msgctxt ""
"par_id3149751\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">Lists the abbreviations that are not automatically corrected.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
-msgstr "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">የ አኅጽሮተ ቃል ዝርዝር ራሱ በራሱ የማያርማቸው </ahelp> ቃል ከ ዝርዝር ውስጥ ለ ማስወገድ: ይምረጡ ቃሉን: እና ከዛ ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">የ አኅጽሮተ ቃል ዝርዝር ራሱ በራሱ የማያርማቸው </ahelp> ቃል ከ ዝርዝር ውስጥ ለ ማስወገድ: ይምረጡ ቃሉን: እና ከዛ ይጫኑ <emph> ማጥፊያ </emph>"
#: 06040300.xhp
msgctxt ""
@@ -31710,7 +31710,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/acorexceptpage/doublelist\">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.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
-msgstr "<ahelp hid=\"cui/ui/acorexceptpage/doublelist\">የ ቃላቶች ወይንም አኅጽሮተ ቃሎች ዝርዝር የሚጀምሩ በ ሁለት አቢይ ፊደሎች ራሱ በራሱ የማያርማቸው: ሁሉም ቃሎች የሚጀምሩ በ ሁለት አቢይ ፊደሎች በ ሜዳ ውስጥ ተዘርዝረዋል </ahelp> ከ ዝርዝር ውስጥ ቃል ለ ማስወገድ: ይምረጡ ቃሉን እና ከዛ ይጫኑ <emph> ማጥፊያ </emph>."
+msgstr "<ahelp hid=\"cui/ui/acorexceptpage/doublelist\">የ ቃላቶች ወይንም አኅጽሮተ ቃሎች ዝርዝር የሚጀምሩ በ ሁለት አቢይ ፊደሎች ራሱ በራሱ የማያርማቸው: ሁሉም ቃሎች የሚጀምሩ በ ሁለት አቢይ ፊደሎች በ ሜዳ ውስጥ ተዘርዝረዋል </ahelp> ከ ዝርዝር ውስጥ ቃል ለ ማስወገድ: ይምረጡ ቃሉን እና ከዛ ይጫኑ <emph> ማጥፊያ </emph>"
#: 06040300.xhp
msgctxt ""
@@ -31870,7 +31870,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ <link href=\"text/shared/01/04100000.xhp\" name=\"special character\"> የ ተለዩ ባህሪዎች </link> ራሱ በራሱ መቀየሪያ የ አሁኑን የ ተከፈተውን የ ጥቅስ ምልክት በ እርስዎ ሰነድ ውስጥ እርስዎ ሲመርጡ <emph> አቀራረብ - በራሱ አቀራረብ - መፈጸሚያ </emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ <link href=\"text/shared/01/04100000.xhp\" name=\"special character\"> የ ተለዩ ባህሪዎች </link> ራሱ በራሱ መቀየሪያ የ አሁኑን የ ተከፈተውን የ ጥቅስ ምልክት በ እርስዎ ሰነድ ውስጥ እርስዎ ሲመርጡ <emph> አቀራረብ - በራሱ አቀራረብ - መፈጸሚያ </emph></ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -31886,7 +31886,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\"> ይምረጡ <link href=\"text/shared/01/04100000.xhp\" name=\"special character\"> የ ተለዩ ባህሪዎች </link> ራሱ በራሱ መቀየሪያ የ አሁኑን የ ተከፈተውን የ ጥቅስ ምልክት በ እርስዎ ሰነድ ውስጥ እርስዎ ሲመርጡ <emph> አቀራረብ - በራሱ አቀራረብ - መፈጸሚያ </emph>.</ahelp>"
+msgstr "<ahelp hid=\".\"> ይምረጡ <link href=\"text/shared/01/04100000.xhp\" name=\"special character\"> የ ተለዩ ባህሪዎች </link> ራሱ በራሱ መቀየሪያ የ አሁኑን የ ተከፈተውን የ ጥቅስ ምልክት በ እርስዎ ሰነድ ውስጥ እርስዎ ሲመርጡ <emph> አቀራረብ - በራሱ አቀራረብ - መፈጸሚያ </emph></ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -31934,7 +31934,7 @@ msgctxt ""
"par_id3146936\n"
"help.text"
msgid "To access this menu, right-click a misspelled word in your document. To view the misspelled words in your document, choose <emph>Tools - Automatic Spell Checking</emph>."
-msgstr "እዚህ ዝርዝር ጋር ለመድረስ: በ ቀኝ-ይጫኑ በትክክል ያልተጻፈው ቃል ላይ በ እርስዎ ሰነድ ውስጥ: በትክክል ያልተጻፈውን ቃል ለ መመልከት: ይምረጡ <emph>መሳሪያዎች - ራሱ በራሱ ፊደል ማረሚያ</emph>."
+msgstr "እዚህ ዝርዝር ጋር ለመድረስ: በ ቀኝ-ይጫኑ በትክክል ያልተጻፈው ቃል ላይ በ እርስዎ ሰነድ ውስጥ: በትክክል ያልተጻፈውን ቃል ለ መመልከት: ይምረጡ <emph> መሳሪያዎች - ራሱ በራሱ ፊደል ማረሚያ </emph>"
#: 06040500.xhp
msgctxt ""
@@ -32678,7 +32678,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "Select the level(s) that you want to modify, and then specify the formatting that you want to use."
-msgstr "ይምረጡ ማሻሻል የሚፈልጉትን ደረጃ(ዎች) ርና ከዛ ይወስኑ መጠቀም የሚፈልጉትን አቀራረብ አይነት"
+msgstr "ይምረጡ ማሻሻል የሚፈልጉትን ደረጃ(ዎች) እና ከዛ ይወስኑ መጠቀም የሚፈልጉትን አቀራረብ አይነት"
#: 06050500.xhp
msgctxt ""
@@ -32774,7 +32774,7 @@ msgctxt ""
"par_id3156327\n"
"help.text"
msgid "Lowercase letters"
-msgstr "ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "የ ታችኛው ጉዳይ ፊደሎች"
#: 06050500.xhp
msgctxt ""
@@ -32822,7 +32822,7 @@ msgctxt ""
"par_id3154579\n"
"help.text"
msgid "Alphabetical numbering with uppercase letters"
-msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ከፍተኛ ጉዳይ ፊደሎች"
+msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ላይኛው ጉዳይ ጉዳይ ፊደሎች"
#: 06050500.xhp
msgctxt ""
@@ -32838,7 +32838,7 @@ msgctxt ""
"par_id3159167\n"
"help.text"
msgid "Alphabetical numbering with lowercase letters"
-msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ታችኛው ጉዳይ ፊደሎች"
#: 06050500.xhp
msgctxt ""
@@ -32878,7 +32878,7 @@ msgctxt ""
"par_id3157817\n"
"help.text"
msgid "Displays an image for the bullet. Select this option, and then click <emph>Select</emph> to locate the image file that you want to use. The image gets embedded into the document."
-msgstr "ለ ነጥብ መስጫ ምስል ማሳያ: ይህን ምርጫ ይምረጡ: እና ከዛ ይጫኑ <emph>ይምረጡ</emph> የ ምስል ፋይሉን ፈልጎ ለማግኘት እርስዎ መጠቀም የሚፈልጉትን: ምስሉ ከ ሰነዱ ጋር ይጣበቃል"
+msgstr "ለ ነጥብ መስጫ ምስል ማሳያ: ይህን ምርጫ ይምረጡ: እና ከዛ ይጫኑ <emph> ይምረጡ </emph> የ ምስል ፋይሉን ፈልጎ ለማግኘት እርስዎ መጠቀም የሚፈልጉትን: ምስሉ ከ ሰነዱ ጋር ይጣበቃል"
#: 06050500.xhp
msgctxt ""
@@ -32894,7 +32894,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "Displays an image for the bullet. Select this option, and then click <emph>Select</emph> to locate the image file that you want to use. The image gets inserted as a link to the image file."
-msgstr "ለ ነጥብ መስጫ ምስል ማሳያ: ይህን ምርጫ ይምረጡ: እና ከዛ ይጫኑ <emph>ይምረጡ</emph> የ ምስል ፋይሉን ፈልጎ ለማግኘት እርስዎ መጠቀም የሚፈልጉትን: ምስሉ ይገባል እንደ አገናኝ ወደ ምስል ፋይል"
+msgstr "ለ ነጥብ መስጫ ምስል ማሳያ: ይህን ምርጫ ይምረጡ: እና ከዛ ይጫኑ <emph> ይምረጡ </emph> የ ምስል ፋይሉን ፈልጎ ለማግኘት እርስዎ መጠቀም የሚፈልጉትን: ምስሉ ይገባል እንደ አገናኝ ወደ ምስል ፋይል"
#: 06050500.xhp
msgctxt ""
@@ -32966,7 +32966,7 @@ msgctxt ""
"par_id3150495\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">እርስዎ መጠቀም የሚፈልጉትን የ ባህሪ ዘዴ ቁጥር ከ ተሰጠው ዝርዝር ውስጥ ይምረጡ </ahelp> ለ መፍጠር ወይንም ለ ማረም የ <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\"> ባህሪ ዘዴዎች </link>, መክፈቻ የ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት ውስጥ: ይጫኑ የ ባህሪ ዘዴዎች ምልክት: በ ቀኝ-ይጫኑ ዘዴው ላይ: እና ከዛ ይምረጡ <emph> አዲስ </emph>. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">እርስዎ መጠቀም የሚፈልጉትን የ ባህሪ ዘዴ ቁጥር ከ ተሰጠው ዝርዝር ውስጥ ይምረጡ </ahelp> ለ መፍጠር ወይንም ለ ማረም የ <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\"> ባህሪ ዘዴዎች </link> መክፈቻ የ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት ውስጥ: ይጫኑ የ ባህሪ ዘዴዎች ምልክት: በ ቀኝ-ይጫኑ ዘዴው ላይ: እና ከዛ ይምረጡ <emph> አዲስ </emph></caseinline></switchinline>"
#: 06050500.xhp
msgctxt ""
@@ -33398,7 +33398,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 06130000.xhp
msgctxt ""
@@ -33406,7 +33406,7 @@ msgctxt ""
"hd_id3157552\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 06130000.xhp
msgctxt ""
@@ -33414,7 +33414,7 @@ msgctxt ""
"par_id3148765\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">Opens a dialog to organize macros.</ahelp></variable>"
-msgstr "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">macros ለማደራጃ ንግግር መክፈቻ</ahelp></variable>"
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:MacroDialog\">ማክሮስ ለማደራጃ ንግግር መክፈቻ</ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -33422,7 +33422,7 @@ msgctxt ""
"par_id3154863\n"
"help.text"
msgid "Macro name"
-msgstr "የ Macro ስም"
+msgstr "የ ማክሮስ ስም"
#: 06130000.xhp
msgctxt ""
@@ -33430,7 +33430,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">የተመረጠውን macro ስም ማሳያ ወይንም የ macro ስም መቀየሪያ: ስም እዚህ ያስገቡ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">የተመረጠውን ማክሮስ ስም ማሳያ ወይንም የ ማክሮስ ስም መቀየሪያ: ስም እዚህ ያስገቡ</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33438,7 +33438,7 @@ msgctxt ""
"par_id3150902\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the macros that are contained in the module selected in the <emph>Macro from </emph>list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lists the macros that are contained in the module selected in the <emph>Macro from </emph>list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ማክሮስ ዝርዝር በ ተመረጠው ክፍል ውስጥ ያለው በ <emph> ማክሮስ ከ </emph> ዝርዝር </ahelp> ውስጥ"
#: 06130000.xhp
msgctxt ""
@@ -33446,7 +33446,7 @@ msgctxt ""
"hd_id3153750\n"
"help.text"
msgid "Macro from / Save macro in"
-msgstr "Macro ከ / ማስቀመጫ macro በ"
+msgstr "ማክሮስ ከ / ማስቀመጫ ማክሮስ በ"
#: 06130000.xhp
msgctxt ""
@@ -33454,7 +33454,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">የ መጻህፍት ቤት እና ክፍሎች ዝርዝር የ እርስዎን macros መክፈት እና ማስቀመጥ የሚችሉበት፡ macro ለማስቀመጥ በ ተወሰነ ሰነድ ውስጥ: ሰነዱን ይክፈቱ እና ከዛ ይህን ንግግር ይክፈቱ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/libraries\">የ መጻህፍት ቤት እና ክፍሎች ዝርዝር የ እርስዎን ማስገደድ ይቻላል: ዲግሪ ለ ፖሊኖሚያል መክፈት እና ማስቀመጥ የሚችሉበት: ማስገደድ ይቻላል: ዲግሪ ለ ፖሊኖሚያል ለ ማስቀመጥ በ ተወሰነ ሰነድ ውስጥ: ሰነዱን ይክፈቱ እና ከዛ ይህን ንግግር ይክፈቱ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33470,7 +33470,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">Runs or saves the current macro.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">የ አሁኑን macro ያስኬዳል ወይንም ያስቀምጣል</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/run\">የ አሁኑን ማስገደድ ይቻላል: ዲግሪ ለ ፖሊኖሚያል ያስኬዳል ወይንም ያስቀምጣል </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33502,7 +33502,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">Starts the $[officename] Basic editor and opens the selected macro or dialog for editing.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">ማስጀመሪያ የ $[officename] Basic editor እና የ ተመረጠውን macro መክፈቻ እና ማረሚያ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/edit\">ማስጀመሪያ የ $[officename] Basic ማረሚያ እና የ ተመረጠውን ማክሮስ መክፈቻ እና ማረሚያ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33518,7 +33518,7 @@ msgctxt ""
"par_id3153257\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">Creates a new macro, or deletes the selected macro.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">አዲስ macro መፍጠሪያ ወይንም የተመረጠውን macro ማጥፊያ </ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/delete\">አዲስ ማክሮስ መፍጠሪያ ወይንም የተመረጠውን ማክሮስ ማጥፊያ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33526,7 +33526,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
-msgstr "አዲስ macro ለመፍጠር ይምረጡ ከ \"መደበኛ\" ክፍል ውስጥ ከ <emph>Macro ከ</emph> ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph>አዲስ</emph>."
+msgstr "አዲስ ማክሮስ ለ መፍጠር ይምረጡ ከ \"መደበኛ\" ክፍል ውስጥ ከ <emph> ማክሮስ ከ </emph> ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph> አዲስ </emph>"
#: 06130000.xhp
msgctxt ""
@@ -33534,7 +33534,7 @@ msgctxt ""
"par_id3148474\n"
"help.text"
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
-msgstr "macro ለማጥፋት ይምረጡት እና ከዛ ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ማክሮስ ለ ማጥፋት ይምረጡት እና ከዛ ይጫኑ <emph> ማጥፊያ </emph>"
#: 06130000.xhp
msgctxt ""
@@ -33550,7 +33550,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newlibrary\">Saves the recorded macro in a new library.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newlibrary\">የ ተቀረጸውን macro በ መጻህፍት ቤት ውስጥ ማስቀመጫ </ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newlibrary\">የ ተቀረጸውን ማክሮስ በ አዲስ መጻህፍት ቤት ውስጥ ማስቀመጫ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33566,7 +33566,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">Saves the recorded macro in a new module.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">በ አዲስ ክፍል ውስጥ የተመዘገበውን macro ማስቀመጫ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">በ አዲስ ክፍል ውስጥ የተመዘገበውን ማክሮስ ማስቀመጫ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33582,7 +33582,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">መክፈቻ የ <emph>Macro Organizer</emph> ንግግር መጨመሪያ ማረሚያ ወይንም ማጥፊያ የ ነበረውን macro ክፍሎች: ንግግሮች እና መጻህፍት ቤቶች</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">መክፈቻ የ <emph> ማክሮስ ማደራጃ </emph> ንግግር መጨመሪያ ማረሚያ ወይንም ማጥፊያ የ ነበረውን ማክሮስ ክፍሎች: ንግግሮች እና መጻህፍት ቤቶች </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33614,7 +33614,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">Lists the existing macros and dialogs.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">የ ነበሩ macros እና ንግግሮች ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/library\">የ ነበሩ ማክሮስ እና ንግግሮች ዝርዝር </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33630,7 +33630,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">Opens the selected macro or dialog for editing.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">መክፈቻ የተመረጠውን macro ወይንም ንግግር ማረሚያ</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/modulepage/edit\">መክፈቻ የተመረጠውን ማክሮስ ወይንም ንግግር ማረሚያ </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33670,7 +33670,7 @@ msgctxt ""
"hd_id3151177\n"
"help.text"
msgid "Libraries tab page"
-msgstr "Libraries tab page"
+msgstr "የ መጻህፍት ቤት tab ገጽ"
#: 06130000.xhp
msgctxt ""
@@ -33678,7 +33678,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/dialogpage/delete\">Lets you manage the macro libraries for the current application and any open documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/dialogpage/delete\">እርስዎን የ macro መጻህፍት ቤት ለ አሁኑ መተግባሪያ እና ማንኛውም የ ተከፈተ ሰነድ ማስተዳደር ያስችሎታል </ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/dialogpage/delete\">እርስዎን የ ማክሮስ መጻህፍት ቤት ለ አሁኑ መተግባሪያ እና ማንኛውም የ ተከፈተ ሰነድ ማስተዳደር ያስችሎታል </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33694,7 +33694,7 @@ msgctxt ""
"par_id3150290\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">Select the application or the document containing the macro libraries that you want to organize.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">ይምረጡ መተግበሪያ ወይንም የ macro መጻህፍት ቤት የያዘውን ሰነድ እርስዎ ማደራጀት የሚፈልጉትን </ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/location\">ይምረጡ መተግበሪያ ወይንም የ ማክሮስ መጻህፍት ቤት የያዘውን ሰነድ እርስዎ ማደራጀት የሚፈልጉትን </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33710,7 +33710,7 @@ msgctxt ""
"par_id3147500\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">Lists the existing macro libraries for the current application and any open documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">የ ነበረው የ macro መጻህፍት ቤት ለ አሁኑ መተግባሪያ እና ማንኛውም የ ተከፈተ ሰነድ ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/library\">የ ነበረው የ ማክሮስ መጻህፍት ቤት ለ አሁኑ መተግባሪያ እና ማንኛውም የ ተከፈተ ሰነድ ዝርዝር </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33806,7 +33806,7 @@ msgctxt ""
"par_idN109BB\n"
"help.text"
msgid "To open the BeanShell Macros dialog box, choose Tools - Macros - Organize Macros - BeanShell. To open the JavaScript dialog box, choose Tools - Macros - Organize Macros - JavaScript."
-msgstr "ለ መክፈት የ BeanShell Macros ንግግር ሳጥን: ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - BeanShell. ለ መክፈት የ JavaScript ንግግር ሳጥን: ይምረጡ መሳሪያዎች - Macros - Macros ማደራጃ - JavaScript."
+msgstr "ለ መክፈት የ BeanShell Macros ንግግር ሳጥን: ይምረጡ መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - BeanShell. ለ መክፈት የ JavaScript ንግግር ሳጥን: ይምረጡ መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - JavaScript."
#: 06130000.xhp
msgctxt ""
@@ -33830,7 +33830,7 @@ msgctxt ""
"par_idN109BE\n"
"help.text"
msgid "Macros"
-msgstr "Macros"
+msgstr "ማክሮስ"
#: 06130000.xhp
msgctxt ""
@@ -33838,7 +33838,7 @@ msgctxt ""
"par_idN109C2\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from \"user\", \"share\", or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">ይምረጡ macro ወይንም ጽሁፍ ከ \"ተጠቃሚ\": \"ማካፈያ\": ወይንም የ ተከፈተ ሰነድ: ለ መመልከት ዝግጁ macros ወይንም ጽሁፍ: ሁለት ጊዜ-ይጫኑ ማስገቢያውን </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">ይምረጡ ማክሮስ ወይንም ጽሁፍ ከ \"ተጠቃሚ\": \"ማካፈያ\": ወይንም የ ተከፈተ ሰነድ: ለ መመልከት ዝግጁ ማክሮስ ወይንም ጽሁፍ: ሁለት ጊዜ-ይጫኑ ማስገቢያውን </ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33934,7 +33934,7 @@ msgctxt ""
"par_idN10AE5\n"
"help.text"
msgid "The Macro Selector dialog contains two list boxes, namely the Library list box and the Macro name list box."
-msgstr "የ Macro መምረጫ ንግግር የያዘው ሁለት ዝርዝር ሳጥኖች ነው: የ መጻህፍት ቤት ዝርዝር ሳጥን እና የ Macro ስም ዝርዝር ሳጥን ይባላሉ"
+msgstr "የ ማክሮስ መምረጫ ንግግር የያዘው ሁለት ዝርዝር ሳጥኖች ነው: የ መጻህፍት ቤት ዝርዝር ሳጥን እና የ ማክሮስ ስም ዝርዝር ሳጥን ይባላሉ"
#: 06130000.xhp
msgctxt ""
@@ -33950,7 +33950,7 @@ msgctxt ""
"par_idN10B00\n"
"help.text"
msgid "Select a macro or script from \"user\", \"share\", or an open document. To view the contents of a library, double-click an entry in the list."
-msgstr "ይምረጡ macro ወይንም ጽሁፍ ከ \"ተጠቃሚ\": \"ማካፈያ\": ወይንም የ ተከፈተ ሰነድ: ለ መመልከት የ መጻህፍት ቤት ይዞታዎችን: ሁለት ጊዜ-ይጫኑ ማስገቢያ ዝርዝር ውስጥ"
+msgstr "ይምረጡ ማክሮስ ወይንም ጽሁፍ ከ \"ተጠቃሚ\": \"ማካፈያ\": ወይንም የ ተከፈተ ሰነድ: ለ መመልከት የ መጻህፍት ቤት ይዞታዎችን: ሁለት ጊዜ-ይጫኑ ማስገቢያ ዝርዝር ውስጥ"
#: 06130000.xhp
msgctxt ""
@@ -33958,7 +33958,7 @@ msgctxt ""
"par_idN10B17\n"
"help.text"
msgid "Macro name"
-msgstr "የ Macro ስም"
+msgstr "የ ማክሮስ ስም"
#: 06130000.xhp
msgctxt ""
@@ -33974,7 +33974,7 @@ msgctxt ""
"par_id3153138\n"
"help.text"
msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macros እና ፕሮግራም በ $[officename]</link>"
+msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">ማክሮስ እና ፕሮግራም በ $[officename]</link>"
#: 06130001.xhp
msgctxt ""
@@ -33982,7 +33982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macros"
-msgstr "Macros"
+msgstr "ማክሮስ"
#: 06130001.xhp
msgctxt ""
@@ -33990,7 +33990,7 @@ msgctxt ""
"hd_id3152414\n"
"help.text"
msgid "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
-msgstr "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
+msgstr "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">ማክሮስ</link>"
#: 06130001.xhp
msgctxt ""
@@ -33998,7 +33998,7 @@ msgctxt ""
"par_id3150008\n"
"help.text"
msgid "Lets you record or organize and edit macros."
-msgstr "Lets you record or organize and edit macros"
+msgstr "እርስዎን ማክሮስ ማደራጀት: መቅረጽ እና ማረም ያስችሎታል"
#: 06130001.xhp
msgctxt ""
@@ -34006,7 +34006,7 @@ msgctxt ""
"par_idN105B1\n"
"help.text"
msgid "<link href=\"text/shared/01/06130000.xhp\">Run Macro</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp\">Macro ማስኬጃ</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp\">ማክሮስ ማስኬጃ</link>"
#: 06130001.xhp
msgctxt ""
@@ -34014,7 +34014,7 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ እርስዎ የ ማክሮስ ንግግር የሚያስጀምሩበት </ahelp>"
#: 06130001.xhp
msgctxt ""
@@ -34030,7 +34030,7 @@ msgctxt ""
"par_idN10618\n"
"help.text"
msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your macros. You can also use the dialog to view certificates.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ዲጂታል ፊርማዎች መጨመሪያ እና ማስወገጃ ከ እርስዎ macros. ውስጥ: እርስዎ እንዲሁም ንግግሩን የ ምስክር ወረቀት ለ መመልከት መጠቀም ይችላሉ </ahelp>"
+msgstr "<ahelp hid=\".\">የ ዲጂታል ፊርማዎች መጨመሪያ እና ማስወገጃ ከ እርስዎ ማክሮስ ውስጥ: እርስዎ እንዲሁም ንግግሩን የ ምስክር ወረቀት ለ መመልከት መጠቀም ይችላሉ </ahelp>"
#: 06130001.xhp
msgctxt ""
@@ -34046,7 +34046,7 @@ msgctxt ""
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Dialogs tab page of the Macro Organizer.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens the Dialogs tab page of the Macro Organizer.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ ንግግር tab ገጽ ለ ማክሮስ ማደራጃ </ahelp>"
#: 06130010.xhp
msgctxt ""
@@ -34054,7 +34054,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Record Macro"
-msgstr "Macro መመዝገቢያ"
+msgstr "ማክሮስ መመዝገቢያ"
#: 06130010.xhp
msgctxt ""
@@ -34062,7 +34062,7 @@ msgctxt ""
"hd_id3153383\n"
"help.text"
msgid "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">Record Macro</link>"
-msgstr "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">Macro መመዝገቢያ</link>"
+msgstr "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">ማክሮስ መመዝገቢያ</link>"
#: 06130010.xhp
msgctxt ""
@@ -34070,7 +34070,7 @@ msgctxt ""
"par_id3152952\n"
"help.text"
msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Advanced</emph>."
-msgstr "<ahelp hid=\".uno:MacroRecorder\">አዲስ macro መቅረጫ</ahelp> ብቻ ዝግጁ ነው: ይህን macro መቅረጫ ገጽታ ካስቻሉ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የ ረቀቀ </emph>."
+msgstr "<ahelp hid=\".uno:MacroRecorder\">አዲስ ማክሮስ መቅረጫ</ahelp> ብቻ ዝግጁ ነው: ይህን ማክሮስ መቅረጫ ገጽታ ካስቻሉ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የ ረቀቀ </emph>"
#: 06130010.xhp
msgctxt ""
@@ -34086,7 +34086,7 @@ msgctxt ""
"par_id3146067\n"
"help.text"
msgid "<ahelp hid=\".uno:StopRecording\">Stops recording a macro.</ahelp>"
-msgstr "<ahelp hid=\".uno:StopRecording\">macro መቅረጫ ውን ማስቆሚያ</ahelp>"
+msgstr "<ahelp hid=\".uno:StopRecording\">ማክሮስ መቅረጫ ውን ማስቆሚያ</ahelp>"
#: 06130100.xhp
msgctxt ""
@@ -34182,7 +34182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Organize Macros"
-msgstr "Macros ማደራጃ"
+msgstr "ማክሮስ ማደራጃ"
#: 06130200.xhp
msgctxt ""
@@ -34190,7 +34190,7 @@ msgctxt ""
"bm_id3237403\n"
"help.text"
msgid "<bookmark_value>macros;organizing</bookmark_value><bookmark_value>organizing;macros and scripts</bookmark_value><bookmark_value>script organization</bookmark_value>"
-msgstr "<bookmark_value>macros: ማደራጃ</bookmark_value><bookmark_value>ማደራጃ: macros እና scripts</bookmark_value><bookmark_value>script ማደራጃ</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ: ማደራጃ</bookmark_value><bookmark_value>ማደራጃ: ማክሮስ እና scripts</bookmark_value><bookmark_value>ጽሁፍ ማደራጃ</bookmark_value>"
#: 06130200.xhp
msgctxt ""
@@ -34198,7 +34198,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Organize Macros</link></variable>"
-msgstr "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Macros ማደራጃ</link></variable>"
+msgstr "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">ማክሮስ ማደራጃ</link></variable>"
#: 06130200.xhp
msgctxt ""
@@ -34206,7 +34206,7 @@ msgctxt ""
"par_idN105B7\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu with links to dialogs where you can organize macros and scripts.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ ንዑስ ዝርዝር ከ ንግግር ጋር ለ ተገናኘ እርስዎ macros እና scripts የሚያዘጋጁበት </ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ ንዑስ ዝርዝር ከ ንግግር ጋር ለ ተገናኘ እርስዎ ማክሮስ እና ጽሁፍ የሚያዘጋጁበት </ahelp>"
#: 06130200.xhp
msgctxt ""
@@ -34222,7 +34222,7 @@ msgctxt ""
"par_idN105C3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can organize %PRODUCTNAME Basic macros.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ ንግግር እርስዎ የሚያዘጋጁበት %PRODUCTNAME Basic macros.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ ንግግር እርስዎ የሚያዘጋጁበት %PRODUCTNAME Basic ማክሮስ </ahelp>"
#: 06130200.xhp
msgctxt ""
@@ -34358,7 +34358,7 @@ msgctxt ""
"par_id3155069\n"
"help.text"
msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
-msgstr "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">ማስተካከያ $[officename] ዝርዝር: አቋራጭ ቁልፍ: እቃ መደርደሪያ: እና macro ስራ ለ ሁኔታዎች</ahelp></variable>"
+msgstr "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">ማስተካከያ $[officename] ዝርዝር: አቋራጭ ቁልፍ: እቃ መደርደሪያ: እና ማክሮስ ስራ ለ ሁኔታዎች </ahelp></variable>"
#: 06140000.xhp
msgctxt ""
@@ -34366,7 +34366,7 @@ msgctxt ""
"par_id3152821\n"
"help.text"
msgid "You can customize shortcut keys and macro assignments for the current application, or for all $[officename] applications."
-msgstr "እርስዎ አቋራጭ ቁልፎችን እና የ macro ስራዎችን ማስተካከል ይችላሉ ለ አሁኑ መተግበሪያ ወይንም ለ ሁሉም $[officename] መተግበሪያዎች"
+msgstr "እርስዎ አቋራጭ ቁልፎችን እና የ ማክሮስ ስራዎችን ማስተካከል ይችላሉ ለ አሁኑ መተግበሪያ ወይንም ለ ሁሉም $[officename] መተግበሪያዎች"
#: 06140000.xhp
msgctxt ""
@@ -34542,7 +34542,7 @@ msgctxt ""
"par_idN108DC\n"
"help.text"
msgid "Click the <emph>Menu</emph> button and select <emph>Rename</emph>."
-msgstr "ይጫኑ የ <emph>ዝርዝር</emph> ቁልፍ እና ይምረጡ <emph>እንደገና መሰየሚያ</emph>."
+msgstr "ይጫኑ የ <emph> ዝርዝር </emph> ቁልፍ እና ይምረጡ <emph> እንደገና መሰየሚያ </emph>"
#: 06140100.xhp
msgctxt ""
@@ -34742,7 +34742,7 @@ msgctxt ""
"par_idN10812\n"
"help.text"
msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr "መክፈቻ የ <emph>እንደገና መሰየሚያ</emph> ንግግር: እርስዎ አዲስ ስም ለ ተመረጠው ትእዛዝ የሚያስገቡበት"
+msgstr "መክፈቻ የ <emph> እንደገና መሰየሚያ </emph> ንግግር: እርስዎ አዲስ ስም ለ ተመረጠው ትእዛዝ የሚያስገቡበት"
#: 06140100.xhp
msgctxt ""
@@ -34798,7 +34798,7 @@ msgctxt ""
"par_idN10AFB\n"
"help.text"
msgid "To edit a menu configuration that is associated with an item in the list, select the item, make the changes that you want, and then click the <emph>OK</emph> button."
-msgstr "የ ዝርዝር ማዋቀሪያ ለማረም የ ተገናኘ ከ እቃ ጋር በ ዝርዝር ውስጥ: ይምረጡ እቃ: እርስዎ የሚፈልጉትን ለውጥ ይፈጽሙ: እና ከዛ ይጫኑ የ <emph>እሺ</emph> ቁልፍ"
+msgstr "የ ዝርዝር ማዋቀሪያ ለማረም የ ተገናኘ ከ እቃ ጋር በ ዝርዝር ውስጥ: ይምረጡ እቃ: እርስዎ የሚፈልጉትን ለውጥ ይፈጽሙ: እና ከዛ ይጫኑ የ <emph> እሺ </emph> ቁልፍ"
#: 06140100.xhp
msgctxt ""
@@ -34886,7 +34886,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
-msgstr "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተመረጠውን ዝርዝር ማስገቢያ አንድ ደረጃ ወደ ላይ ወይንም ወደ ታች ማንቀሳቀሻ በ ዝርዝር ውስጥ እርስዎ የ ቀስት ቁልፍ በሚጫኑ ጊዜ </ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -34918,7 +34918,7 @@ msgctxt ""
"par_id3159411\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">አቋራጭ ቁልፎች መመደቢያ ወይንም ማረሚያ ለ $[officename] ትእዛዞች: ወይንም $[officename] Basic macros.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">አቋራጭ ቁልፎች መመደቢያ ወይንም ማረሚያ ለ $[officename] ትእዛዞች: ወይንም $[officename] Basic ማክሮስ </ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -35286,7 +35286,7 @@ msgctxt ""
"par_idN10624\n"
"help.text"
msgid "Opens the <emph>Rename Toolbar</emph> dialog, where you enter a new name for the selected toolbar."
-msgstr "መክፈቻ የ <emph>እቃ መደርደሪያ እንደገና መሰየሚያ </emph> ንግግር: እርስዎ አዲስ ስም የሚያስገቡበት ለ ተመረጠው እቃ መደርደሪያ"
+msgstr "መክፈቻ የ <emph> እቃ መደርደሪያ እንደገና መሰየሚያ </emph> ንግግር: እርስዎ አዲስ ስም የሚያስገቡበት ለ ተመረጠው እቃ መደርደሪያ"
#: 06140400.xhp
msgctxt ""
@@ -35430,7 +35430,7 @@ msgctxt ""
"par_idN1067E\n"
"help.text"
msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr "መክፈቻ የ <emph>እንደገና መሰየሚያ</emph> ንግግር: እርስዎ አዲስ ስም ለ ተመረጠው ትእዛዝ የሚያስገቡበት"
+msgstr "መክፈቻ የ <emph> እንደገና መሰየሚያ </emph> ንግግር: እርስዎ አዲስ ስም ለ ተመረጠው ትእዛዝ የሚያስገቡበት"
#: 06140400.xhp
msgctxt ""
@@ -35678,7 +35678,7 @@ msgctxt ""
"par_id3152937\n"
"help.text"
msgid "<variable id=\"assignaction\"><ahelp hid=\".\">Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs.</ahelp></variable>"
-msgstr "<variable id=\"assignaction\"><ahelp hid=\".\">ወደ ፕሮግራም ሁኔታዎች macros መመደቢያ: የ ተመደበው macro ራሱ በራሱ ይሄዳል ሁኔታው ሲሟላ </ahelp></variable>"
+msgstr "<variable id=\"assignaction\"><ahelp hid=\".\">ወደ ፕሮግራም ሁኔታዎች ማክሮስ መመደቢያ: የ ተመደበው ማክሮስ ራሱ በራሱ ሁኔታው ሲሟላ ይሄዳል </ahelp></variable>"
#: 06140500.xhp
msgctxt ""
@@ -35710,7 +35710,7 @@ msgctxt ""
"par_id3153662\n"
"help.text"
msgid "A macro that is saved with a document can only be run when that document is opened."
-msgstr "በ ሰነድ ውስጥ የ ተቀመጠ macro ማስኬድ የሚቻለው ሰነዱ ሲከፈት ብቻ ነው"
+msgstr "በ ሰነድ ውስጥ የ ተቀመጠ ማክሮስ ማስኬድ የሚቻለው ሰነዱ ሲከፈት ብቻ ነው"
#: 06140500.xhp
msgctxt ""
@@ -35718,7 +35718,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "<ahelp hid=\".\">The big list box lists the events and the assigned macros. After you selected the location in the <emph>Save In</emph> list box, select an event in the big list box. Then click <emph>Assign Macro</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ትልቅ ዝርዝር ሳጥን የያዛቸው ዝርዝሮች የ ሁኔታዎች እና የ ተመደበ ማክሮ ነው: አካባቢውን ከ መረጡ በኋላ ከ <emph> ማስቀመጫ በ </emph> ዝርዝር ሳጥን ውስጥ: ይምረጡ ሁኔታ ከ ትልቁ ዝርዝር ሳጥን ውስጥ: እና ከዛ ይጫኑ <emph> መመደቢያ ማክሮ </emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ትልቅ ዝርዝር ሳጥን የያዛቸው ዝርዝሮች የ ሁኔታዎች እና የ ተመደበ ማክሮስ ነው: አካባቢውን ከ መረጡ በኋላ ከ <emph> ማስቀመጫ በ </emph> ዝርዝር ሳጥን ውስጥ: ይምረጡ ሁኔታ ከ ትልቁ ዝርዝር ሳጥን ውስጥ: እና ከዛ ይጫኑ <emph> መመደቢያ ማክሮስ </emph></ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -35726,7 +35726,7 @@ msgctxt ""
"hd_id3159258\n"
"help.text"
msgid "Assign Macro"
-msgstr "Macro መመደቢያ"
+msgstr "ማክሮስ መመደቢያ"
#: 06140500.xhp
msgctxt ""
@@ -35734,7 +35734,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/01/06130000.xhp\">Macro መምረጫ</link> ለ መመደብ macro ወደ ተመረጠው ሁኔታ</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/01/06130000.xhp\">ማክሮስ መምረጫ </link> ለ መመደብ ማክሮስ ወደ ተመረጠው ሁኔታ </ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -35742,7 +35742,7 @@ msgctxt ""
"hd_id3154046\n"
"help.text"
msgid "Remove Macro"
-msgstr "Macro ማስወገጃ"
+msgstr "ማክሮስ ማስወገጃ"
#: 06140500.xhp
msgctxt ""
@@ -35750,7 +35750,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the macro assignment for the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ ተመረጠው ሁኔታ የ macro ስራ ማጥፊያ </ahelp>"
+msgstr "<ahelp hid=\".\">ለ ተመረጠው ሁኔታ የ ማክሮስ ስራ ማጥፊያ </ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -35806,7 +35806,7 @@ msgctxt ""
"par_id3154794\n"
"help.text"
msgid "The term <emph>XML filter</emph> is used in the following as a shortcut for the more exact description as an <emph>XSLT based filter</emph>."
-msgstr "ይህ ደንብ ለ <emph>XML ማጣሪያ</emph> የሚጠቅመው ለሚቀጥሉት እንደ አቋራጭ ነው ለ ተጨማሪ ትክክለኛ መግለጫ እንደ የ <emph>XSLT ማጣሪያ መሰረት </emph>."
+msgstr "ይህ ደንብ ለ <emph> XML ማጣሪያ </emph> የሚጠቅመው ለሚቀጥሉት እንደ አቋራጭ ነው ለ ተጨማሪ ትክክለኛ መግለጫ እንደ የ <emph> XSLT ማጣሪያ መሰረት </emph>"
#: 06150000.xhp
msgctxt ""
@@ -36062,7 +36062,7 @@ msgctxt ""
"par_id3159086\n"
"help.text"
msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">Closes the dialog.</ahelp>"
-msgstr "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">ንግግሩን መዝጊያ.</ahelp>"
+msgstr "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">ንግግሩን መዝጊያ</ahelp>"
#: 06150100.xhp
msgctxt ""
@@ -36158,7 +36158,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "<ahelp hid=\"filter/ui/xmlfiltertabpagegeneral/interfacename\">Enter the name that you want to display in the <emph>File type</emph> box in file dialogs.</ahelp> You must enter a unique name. For import filters, the name appears in the <emph>File type</emph> box of <emph>Open</emph> dialogs. For export filters, the name appears in the <emph>File format</emph> box of <emph>Export</emph> dialogs."
-msgstr "<ahelp hid=\"filter/ui/xmlfiltertabpagegeneral/interfacename\">እርስዎ ማሳየተ የሚፈልጉትን ስም ያስገቡ በ <emph>ፋይል አይነት</emph> ሳጥን በ ፋይል ንግግሮች ውስጥ</ahelp> እርስዎ የ ተለየ ስም ማስገባት አለብዎት ለ ማጣሪያዎች ማምጫ: ስሙ ይታያል በ <emph>ፋይል አይነት</emph> ሳጥን በ <emph>መክፈቻ</emph> ንግግሮች ውስጥ: ማጣሪያዎች ለመላክ: ስሙ ይታያል በ <emph>ፋይል አቀራረብ</emph> ሳጥን ውስጥ በ <emph>መላኪያ</emph> ንግግሮች ውስጥ"
+msgstr "<ahelp hid=\"filter/ui/xmlfiltertabpagegeneral/interfacename\">እርስዎ ማሳየተ የሚፈልጉትን ስም ያስገቡ በ <emph> ፋይል አይነት </emph> ሳጥን በ ፋይል ንግግሮች ውስጥ </ahelp> እርስዎ የ ተለየ ስም ማስገባት አለብዎት ለ ማጣሪያዎች ማምጫ: ስሙ ይታያል በ <emph> ፋይል አይነት </emph> ሳጥን በ <emph> መክፈቻ </emph> ንግግሮች ውስጥ: ማጣሪያዎች ለመላክ: ስሙ ይታያል በ <emph> ፋይል አቀራረብ </emph> ሳጥን ውስጥ በ <emph> መላኪያ </emph> ንግግሮች ውስጥ"
#: 06150110.xhp
msgctxt ""
@@ -36590,7 +36590,7 @@ msgctxt ""
"par_id3146060\n"
"help.text"
msgid "<ahelp hid=\".uno:HangulHanjaConversion\">Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul.</ahelp> The menu command can only be called if you enable Asian language support under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>, and if a text formatted in Korean language is selected."
-msgstr "<ahelp hid=\".uno:HangulHanjaConversion\">መቀየሪያ የ ተመረጠውን የ Korean ጽሁፍ ከ Hangul ወደ Hanja ወይን ከ Hanja ወደ Hangul.</ahelp> የ ዝርዝር ትእዛዝ መጥራት የሚቻለው እርስዎ የ እስያ ቋንቋ ድጋፍ ሲያስችሉ ነው ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph> እና የሚቀርበው ጽሁፍ የ Korean ቋንቋ ከ ተመረጠ ነው"
+msgstr "<ahelp hid=\".uno:HangulHanjaConversion\">መቀየሪያ የ ተመረጠውን የ ኮሪያን ጽሁፍ ከ ሀንጉል ወደ ሀንጃ ወይንም ከ ሀንጃ ወደ ሀንጉል: </ahelp> የ ዝርዝር ትእዛዝ መጥራት የሚቻለው እርስዎ የ እስያ ቋንቋ ድጋፍ ሲያስችሉ ነው ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph> እና የሚቀርበው ጽሁፍ የ ኮሪያን ቋንቋ ከ ተመረጠ ነው"
#: 06200000.xhp
msgctxt ""
@@ -36638,7 +36638,7 @@ msgctxt ""
"par_id3156560\n"
"help.text"
msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja.</ahelp> Click <emph>Ignore</emph> to cancel the find function."
-msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">ፈልጎ ያገኛል የ እርስዎን Hangul ማስገቢያ በ መዝገበ ቃላት ውስጥ እና ይቀይራል በ ተመሳሳይ Hanja.</ahelp> ይጫኑ <emph>መተው</emph> የ ተገኘውን ተግባር ለ መሰረዝ"
+msgstr "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVX_MDLG_HANGULHANJA_PB_FIND\">ፈልጎ ያገኛል የ እርስዎን Hangul ማስገቢያ በ መዝገበ ቃላት ውስጥ እና ይቀይራል በ ተመሳሳይ Hanja.</ahelp> ይጫኑ <emph> መተው </emph> የ ተገኘውን ተግባር ለ መሰረዝ"
#: 06200000.xhp
msgctxt ""
@@ -36654,7 +36654,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">Displays all available replacements in the dictionary.</ahelp> If the <emph>Replace by character</emph> box is enabled, you see a grid of characters. If the <emph>Replace by character</emph> box is not checked, you see a list of words."
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">ሁሉንም ዝግጁ መቀየሪያዎች በ መዝገበ ቃላቱ ውስጥ ማሳያ </ahelp> የ <emph>መቀየሪያ በ ባህሪ</emph> ሳጥን ውስጥ ካስቻሉ: ለ እርስዎ የ መጋጠሚያ ባህሪዎች ይታያሉ: የ <emph>መቀየሪያ በ ባህሪ</emph> ሳጥን ውስጥ ካላስቻሉ: ለ እርስዎ የ ቃላቶች ዝርዝር ይታያል"
+msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVX_MDLG_HANGULHANJA_LB_SUGGESTIONS\">ሁሉንም ዝግጁ መቀየሪያዎች በ መዝገበ ቃላቱ ውስጥ ማሳያ </ahelp> የ <emph> መቀየሪያ በ ባህሪ </emph> ሳጥን ውስጥ ካስቻሉ: ለ እርስዎ የ መጋጠሚያ ባህሪዎች ይታያሉ: የ <emph> መቀየሪያ በ ባህሪ </emph> ሳጥን ውስጥ ካላስቻሉ: ለ እርስዎ የ ቃላቶች ዝርዝር ይታያል"
#: 06200000.xhp
msgctxt ""
@@ -37166,7 +37166,7 @@ msgctxt ""
"par_idN1057E\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hangulhanjaeditdictdialog/original\">Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box.</ahelp> To move from the Original box to the first text box in the Suggestions area, press Enter."
-msgstr "<ahelp hid=\"cui/ui/hangulhanjaeditdictdialog/original\">ይምረጡ ማስገቢያ ለ አሁኑ መዝገበ ቃላት እርስዎ ማረም የሚፈልጉትን: እርስዎ ከ ፈለጉ አዲስ ማስገቢያ በዚህ ሳጥን ውስጥ መጻፍ ይችላሉ</ahelp> ከ ዋናው ሳጥን ውስጥ ለማንቀሳቀስ ወደ መጀመሪያው የ ጽሁፍ ሳጥን ውስጥ በ ቀረበው ቦታ መሰረት: ይጫኑ ማስገቢያውን"
+msgstr "<ahelp hid=\"cui/ui/hangulhanjaeditdictdialog/original\">ይምረጡ ማስገቢያ ለ አሁኑ መዝገበ ቃላት እርስዎ ማረም የሚፈልጉትን: እርስዎ ከ ፈለጉ አዲስ ማስገቢያ በዚህ ሳጥን ውስጥ መጻፍ ይችላሉ </ahelp> ከ ዋናው ሳጥን ውስጥ ለማንቀሳቀስ ወደ መጀመሪያው የ ጽሁፍ ሳጥን ውስጥ በ ቀረበው ቦታ መሰረት: ይጫኑ ማስገቢያውን"
#: 06202000.xhp
msgctxt ""
@@ -37342,7 +37342,7 @@ msgctxt ""
"par_id3145119\n"
"help.text"
msgid "When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the current document, choose <emph>File - Properties</emph>, click the <emph>Description</emph> or <emph>User Defined</emph> tabs, and then type the information you want."
-msgstr "እርስዎ ፋይል በሚልኩ ጊዜ ወደ HTML ሰነድ: መግለጫ እና በ ተጠቃሚ-የ ሚገለጽ ፋይል ባህሪዎች ተካትተዋል እንደ META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> በ HEAD tags የ ተላከው ሰነድ ውስጥ: META tags አይታይም በ ዌብ መቃኛ እና የሚጠቅሙት መረጃ ለማካተት ነው: እንደ ቁልፍ ቃሎች ለ መፈለጊያ ሞተር በ እርስዎ ዌብ መቃኛ ውስጥ: የ አሁኑን ሰነድ ባህሪዎች ለ ማሰናዳት: ይምረጡ <emph> ፋይል - ባህሪዎች </emph> ይጫኑ የ <emph>መግለጫ</emph> ወይንም <emph> በ ተጠቃሚ የ ሚገለጽ </emph> tabs, እና ከዛ ይጻፉ እርስዎ የሚፈልጉትን መረጃ"
+msgstr "እርስዎ ፋይል በሚልኩ ጊዜ ወደ HTML ሰነድ: መግለጫ እና በ ተጠቃሚ-የ ሚገለጽ ፋይል ባህሪዎች ተካትተዋል እንደ META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\"> tags </link> በ HEAD tags የ ተላከው ሰነድ ውስጥ: META tags አይታይም በ ዌብ መቃኛ እና የሚጠቅሙት መረጃ ለማካተት ነው: እንደ ቁልፍ ቃሎች ለ መፈለጊያ ሞተር በ እርስዎ ዌብ መቃኛ ውስጥ: የ አሁኑን ሰነድ ባህሪዎች ለ ማሰናዳት: ይምረጡ <emph> ፋይል - ባህሪዎች </emph> ይጫኑ የ <emph> መግለጫ </emph> ወይንም <emph> በ ተጠቃሚ የ ሚገለጽ </emph> tabs, እና ከዛ ይጻፉ እርስዎ የሚፈልጉትን መረጃ"
#: about_meta_tags.xhp
msgctxt ""
@@ -37574,7 +37574,7 @@ msgctxt ""
"par_id0821200910573716\n"
"help.text"
msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr "ይህን ይመልከቱ <link href=\"text/shared/guide/digital_signatures.xhp\">የ ዲጂታል ፊርማዎች</link>."
+msgstr "ይህን ይመልከቱ <link href=\"text/shared/guide/digital_signatures.xhp\"> የ ዲጂታል ፊርማዎች </link>"
#: digitalsignatures.xhp
msgctxt ""
@@ -37662,7 +37662,7 @@ msgctxt ""
"par_id5084688\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Check for Updates</emph> button in the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose <emph>Update</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ የ <emph>ማሻሻያ መፈለጊያ</emph> ቁልፍ በ <link href=\"text/shared/01/packagemanager.xhp\">ተጨማሪዎች አስተዳዳሪ</link> ለ ተገጠሙት ተጨማሪዎች በሙሉ ማሻሻያ ለ መፈለግ በ መስመር ላይ: ለ ተመረጡት ተጨማሪዎች ብቻ ማሻሻያ ለ መፈለግ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ከዛ ይምረጡ <emph>ማሻሻያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">ይጫኑ የ <emph> ማሻሻያ መፈለጊያ </emph> ቁልፍ በ <link href=\"text/shared/01/packagemanager.xhp\"> ተጨማሪዎች አስተዳዳሪ </link> ለ ተገጠሙት ተጨማሪዎች በሙሉ ማሻሻያ ለ መፈለግ በ መስመር ላይ: ለ ተመረጡት ተጨማሪዎች ብቻ ማሻሻያ ለ መፈለግ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ከዛ ይምረጡ <emph> ማሻሻያ </emph></ahelp>"
#: extensionupdate.xhp
msgctxt ""
@@ -37750,7 +37750,7 @@ msgctxt ""
"par_id3949095\n"
"help.text"
msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser."
-msgstr "አንዳንድ ተጨማሪዎች ምናልባት ምልክት ይደረግባቸዋል በ ንግግር \"መቃኛ መሰረት ባደረገ ማሻሻያ\". እነዚህ ተጨማሪዎች ማውረድ አይቻልም: በ ተጨማሪ አስተዳዳሪ: የ ዌብ መቃኛ መከፈት አለበት የ ተጨማሪ ማሻሻያ ለማውረድ ከ ተወሰነ ድህረ ገጽ ውስጥ: ይህ ድህረ ገጽ ምናልባት ይፈልጋል በርካታ ተጨማሪ የ ተጠቃሚ ግንኙነት ተጨማሪ ለ ማውረድ: እርስዎ ካወረዱ በኋላ እርስዎ መግጠም አለብዎት የጨማሪ በ እጅዎ: ለምሳሌ: ሁለት ጊዜ-ይጫኑ በ ተጨማሪዎች ምልክት ላይ በ ፋይል መቃኛ ውስጥ:"
+msgstr "አንዳንድ ተጨማሪዎች ምናልባት ምልክት ይደረግባቸዋል በ ንግግር \"መቃኛ መሰረት ባደረገ ማሻሻያ\": እነዚህ ተጨማሪዎች ማውረድ አይቻልም: በ ተጨማሪ አስተዳዳሪ: የ ዌብ መቃኛ መከፈት አለበት የ ተጨማሪ ማሻሻያ ለማውረድ ከ ተወሰነ ድህረ ገጽ ውስጥ: ይህ ድህረ ገጽ ምናልባት ይፈልጋል በርካታ ተጨማሪ የ ተጠቃሚ ግንኙነት ተጨማሪ ለ ማውረድ: እርስዎ ካወረዱ በኋላ እርስዎ መግጠም አለብዎት የጨማሪ በ እጅዎ: ለምሳሌ: ሁለት ጊዜ-ይጫኑ በ ተጨማሪዎች ምልክት ላይ በ ፋይል መቃኛ ውስጥ:"
#: extensionupdate.xhp
msgctxt ""
@@ -38302,7 +38302,7 @@ msgctxt ""
"par_id4372692\n"
"help.text"
msgid "Set the grid color on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Application Colors</link>."
-msgstr "የ መጋጠሚያ ቀለም ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">የ መተግበሪያ ቀለሞች</link>."
+msgstr "የ መጋጠሚያ ቀለም ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\"> የ መተግበሪያ ቀለሞች </link>"
#: grid_and_helplines.xhp
msgctxt ""
@@ -38806,7 +38806,7 @@ msgctxt ""
"par_idN10788\n"
"help.text"
msgid "Click <emph>Play</emph> on the <emph>Media Playback</emph> toolbar."
-msgstr "ይጫኑ <emph>ማጫወቻ</emph> በ <emph>መገናኛ በድጋሚ ማጫወቻ</emph> እቃ መደርደሪያ"
+msgstr "ይጫኑ <emph> ማጫወቻ </emph> በ <emph> መገናኛ በድጋሚ ማጫወቻ </emph> እቃ መደርደሪያ"
#: moviesound.xhp
msgctxt ""
@@ -38974,7 +38974,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the “≡” icon at the top-left position of the window and choose <item type=\"menuitem\">Menu bar</item>."
-msgstr "በ ምልክት ዘዴ ውስጥ የ ዝርዝር ማሳያ ይደበቃል በ ነባር: ዝርዝር መደርደሪያውን ለማሳየት: ይምረጡ “≡” ምልክት ከ ላይ-በ ግራ ቦታ በኩል በ መስኮት ውስጥ እና ይምረጡ <item type=\"menuitem\"> ዝርዝር መደርደሪያ </item>."
+msgstr "በ ምልክት ዘዴ ውስጥ የ ዝርዝር ማሳያ ይደበቃል በ ነባር: ዝርዝር መደርደሪያውን ለማሳየት: ይምረጡ “≡” ምልክት ከ ላይ-በ ግራ ቦታ በኩል በ መስኮት ውስጥ እና ይምረጡ <item type=\"menuitem\"> ዝርዝር መደርደሪያ </item>"
#: notebook_bar.xhp
msgctxt ""
@@ -38998,7 +38998,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <item type=\"menuitem\">Tools - Options - LibreOffice - View - Notebook bar </item>listbox."
-msgstr "የ ማስታወሻ ደብተር መደርደሪያ ምልክቶች ማስተካከል ይቻላል በ <item type=\"menuitem\">መሳሪያዎች - ምርጫዎች - LibreOffice - መመልከቻ - የ ማስታወሻ ደብተር መደርደሪያ </item>ዝርዝር ሳጥን ውስጥ"
+msgstr "የ ማስታወሻ ደብተር መደርደሪያ ምልክቶች ማስተካከል ይቻላል በ <item type=\"menuitem\"> መሳሪያዎች - ምርጫዎች - LibreOffice - መመልከቻ - የ ማስታወሻ ደብተር መደርደሪያ </item> ዝርዝር ሳጥን ውስጥ"
#: notebook_bar.xhp
msgctxt ""
@@ -39078,7 +39078,7 @@ msgctxt ""
"par_id702230\n"
"help.text"
msgid "You can disable or enable the automatic check in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Online Update</link>."
-msgstr "እርስዎ ማስቻል ወይንም ማሰናከል ይችላሉ ራሱ በራሱ እንዲፈልግ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">በ መስመር ላይ ማሻሻያ</link>."
+msgstr "እርስዎ ማስቻል ወይንም ማሰናከል ይችላሉ ራሱ በራሱ እንዲፈልግ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\"> በ መስመር ላይ ማሻሻያ </link>"
#: online_update.xhp
msgctxt ""
@@ -39086,7 +39086,7 @@ msgctxt ""
"par_id3422345\n"
"help.text"
msgid "If an update is available, an icon<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
-msgstr "ማሻሻያ ዝግጁ ከሆነ: ምልክት<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">ምልክት</alt></image> በ እቃ መደርደሪያ ላይ ይታያል እና እርስዎን ያሳውቃል ማሻሻያ እንዳለ: ይጫኑ በ ምልክት ላይ ተጨማሪ መረጃ ንግግር ለ መክፈት"
+msgstr "ማሻሻያ ዝግጁ ከሆነ: ምልክት<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\"> ምልክት </alt></image> በ እቃ መደርደሪያ ላይ ይታያል እና እርስዎን ያሳውቃል ማሻሻያ እንዳለ: ይጫኑ በ ምልክት ላይ ተጨማሪ መረጃ ንግግር ለ መክፈት"
#: online_update.xhp
msgctxt ""
@@ -39110,7 +39110,7 @@ msgctxt ""
"par_id6479384\n"
"help.text"
msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
-msgstr "እርስዎ ወኪል ሰርቨር ከ ፈለጉ የ ወኪል ማሰናጃ ያስገቡ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - ኢንተርኔት - ወኪል"
+msgstr "እርስዎ ወኪል ሰርቨር ከ ፈለጉ የ ወኪል ማሰናጃ ያስገቡ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - ኢንተርኔት - ወኪል"
#: online_update.xhp
msgctxt ""
@@ -39222,7 +39222,7 @@ msgctxt ""
"par_id1502121\n"
"help.text"
msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update."
-msgstr "በ ነባር የ ወረዱ የሚቀመጡት በ ዴስክቶፕ ላይ ነው: እርስዎ ፎልደሩን መቀየር ይችላሉ የሚወርዱ የት እንደሚጠራቀሙ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - በ መስመር ላይ ማሻሻያ"
+msgstr "በ ነባር የ ወረዱ የሚቀመጡት በ ዴስክቶፕ ላይ ነው: እርስዎ ፎልደሩን መቀየር ይችላሉ የሚወርዱ የት እንደሚጠራቀሙ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - %PRODUCTNAME - በ መስመር ላይ ማሻሻያ"
#: online_update_dialog.xhp
msgctxt ""
@@ -40094,7 +40094,7 @@ msgctxt ""
"par_id28112016094427792\n"
"help.text"
msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
-msgstr "ሁሉም ሊሰራ ካልቻለ: እርስዎ እንደ ነበር መመለስ ይችላሉ የ እርስዎን ተጠቃሚ ገጽታ ወደ ነባሩ ፋብሪካው ወደ ሰራው: የ መጀመሪያው ምርጫ <emph>ማሰናጃውን እና ተጠቃሚው ያስተካከለውን እንደ ነበር መመለስ ነው</emph> ሁሉንም ማሰናጃ እና የ ተጠቃሚ ገጽታ መቀየሪያ እንደ ነበር መመለስ ነው: ነገር ግን የ እርስዎን የ ግል መዝገበ ቃላት: ቴምፕሌቶች ወዘት እንደ ነበር ይጠብቃል: ሁለተኛው ምርጫ የ እርስዎን ተጠቃሚ ገጽታ እንደ ነበር ይመለሳል በ መጀመሪያ ሲገጥሙት ወደ ነበረበት ሁኔታ: %PRODUCTNAME."
+msgstr "ሁሉም ሊሰራ ካልቻለ: እርስዎ እንደ ነበር መመለስ ይችላሉ የ እርስዎን ተጠቃሚ ገጽታ ወደ ነባሩ ፋብሪካው ወደ ሰራው: የ መጀመሪያው ምርጫ <emph> ማሰናጃውን እና ተጠቃሚው ያስተካከለውን እንደ ነበር መመለስ ነው </emph> ሁሉንም ማሰናጃ እና የ ተጠቃሚ ገጽታ መቀየሪያ እንደ ነበር መመለስ ነው: ነገር ግን የ እርስዎን የ ግል መዝገበ ቃላት: ቴምፕሌቶች ወዘት እንደ ነበር ይጠብቃል: ሁለተኛው ምርጫ የ እርስዎን ተጠቃሚ ገጽታ እንደ ነበር ይመለሳል በ መጀመሪያ ሲገጥሙት ወደ ነበረበት ሁኔታ: %PRODUCTNAME."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40102,7 +40102,7 @@ msgctxt ""
"par_id28112016094427243\n"
"help.text"
msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
-msgstr "እርስዎ ችግሩን መፍታት ካልቻሉ በ ጥንቃቄ ዘዴ: ይጫኑ የ <emph>ረቀቀ</emph> ማስፊያ: ለ እርስዎ ትእዛዞች ይታይዎታል ተጨማሪ እርዳታ እዛ እንዴት እንደሚያገኙ"
+msgstr "እርስዎ ችግሩን መፍታት ካልቻሉ በ ጥንቃቄ ዘዴ: ይጫኑ <emph> የረቀቀ </emph> ማስፊያ: ለ እርስዎ ትእዛዞች ይታይዎታል ተጨማሪ እርዳታ እዛ እንዴት እንደሚያገኙ"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ የ መጻፊያ ሰነድ ምልክት ማድረጊያዎች ለ መላክ እንደ PDF ምልክት ማድረጊያዎች: ምልክት ማድረጊያዎች የሚፈጠሩት ለሁሉም ረቂቅ አንቀጾች ነው (መሳሪያዎች - ረቂቅ ቁጥር መስጫ) እና ለ ሁሉም ሰንጠረዥ ይዞታዎች ማስገቢያ እርስዎ መመደብ የሚችሉበት የ hyperlinks በ ሰነድ ምንጭ ውስጥ </ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ የ መጻፊያ ሰነድ ምልክት ማድረጊያዎች ለ መላክ እንደ PDF ምልክት ማድረጊያዎች: ምልክት ማድረጊያዎች የሚፈጠሩት ለሁሉም ረቂቅ አንቀጾች ነው (<item type=\"menuitem\"> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </item>) እና ለ ሁሉም ሰንጠረዥ ይዞታዎች ማስገቢያ እርስዎ መመደብ የሚችሉበት የ hyperlinks በ ሰነድ ምንጭ ውስጥ </ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41566,7 +41566,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr "የ ሰአት ማህተም ባለስልጣን TSA URLs መምረጥ መጠገን የሚቻል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - ደህንነት - TSAs</emph>."
+msgstr "የ ሰአት ማህተም ባለስልጣን TSA URLs መምረጥ መጠገን የሚቻል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - ደህንነት - TSAs</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41630,7 +41630,7 @@ msgctxt ""
"bm_id6499832\n"
"help.text"
msgid "<bookmark_value>security;warning dialogs with macros</bookmark_value><bookmark_value>macros;security warning dialog</bookmark_value>"
-msgstr "<bookmark_value>ደህንነት: ማስጠንቀቂያ ንግግሮች በ macros</bookmark_value><bookmark_value>macros: ደህንነት ማስጠንቀቂያ ንግግር</bookmark_value>"
+msgstr "<bookmark_value>ደህንነት: ማስጠንቀቂያ ንግግሮች በ ማክሮስ</bookmark_value><bookmark_value>ማክሮስ: ደህንነት ማስጠንቀቂያ ንግግር</bookmark_value>"
#: securitywarning.xhp
msgctxt ""
@@ -41646,7 +41646,7 @@ msgctxt ""
"par_idN1056B\n"
"help.text"
msgid "When you open a document that contains an unsigned macro, or a signed macro from an unknown source, the <emph>Security Warning</emph> dialog opens."
-msgstr "እርስዎ ያልተፈረመ macro የያዘ ሰነድ ወይንም የ ተፈረመ macro ከማይታወቅ ምንጭ የያዘ በሚከፍቱ ጊዜ: የ <emph> ደህንነት ማስጠንቀቂያ </emph> ንግግር ይከፈታል"
+msgstr "እርስዎ ያልተፈረመ ማክሮስ የያዘ ሰነድ ወይንም የ ተፈረመ ማክሮስ ከማይታወቅ ምንጭ የያዘ በሚከፍቱ ጊዜ: የ <emph> ደህንነት ማስጠንቀቂያ </emph> ንግግር ይከፈታል"
#: securitywarning.xhp
msgctxt ""
@@ -41654,7 +41654,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "<ahelp hid=\".\">Enable or disable the macros. Choose <emph>%PRODUCTNAME - Security</emph> in the Options dialog box to set the options.</ahelp>"
-msgstr "<ahelp hid=\".\">macros ማስቻያ ወይንም ማሰናከያ: ይምረጡ <emph>%PRODUCTNAME - ደህንነት</emph> በ ምርጫ ንግግር ሳጥን ውስጥ: ምርጫ ለማሰናዳት </ahelp>"
+msgstr "<ahelp hid=\".\">ማክሮስ ማስቻያ ወይንም ማሰናከያ: ይምረጡ <emph>%PRODUCTNAME - ደህንነት </emph> በ ምርጫ ንግግር ሳጥን ውስጥ: ምርጫ ለማሰናዳት </ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41678,7 +41678,7 @@ msgctxt ""
"par_idN10587\n"
"help.text"
msgid "Always trust macros from this source"
-msgstr "የዚህ macros ምንጮች ሁል ጊዜ የሚታመኑ ናቸው"
+msgstr "የዚህ ማክሮስ ምንጮች ሁል ጊዜ የሚታመኑ ናቸው"
#: securitywarning.xhp
msgctxt ""
@@ -41686,7 +41686,7 @@ msgctxt ""
"par_idN1058B\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
-msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">የ አሁኑን macro ምንጭ ወደ ዝርዝር መጨመሪያ ከ <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">የሚታመኑ ምንጮች ጋር</link>.</ahelp>"
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">የ አሁኑን ማክሮስ ምንጭ ወደ ዝርዝር መጨመሪያ ከ <link href=\"text/shared/optionen/macrosecurity_ts.xhp\"> የሚታመኑ ምንጮች ጋር </link></ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41694,7 +41694,7 @@ msgctxt ""
"par_idN1059C\n"
"help.text"
msgid "Enable Macros"
-msgstr "Macros ማስቻያ"
+msgstr "ማክሮስ ማስቻያ"
#: securitywarning.xhp
msgctxt ""
@@ -41702,7 +41702,7 @@ msgctxt ""
"par_idN105A0\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/ok\">Allows macros in the document to run.</ahelp>"
-msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/ok\">መፍቀጃ macros እንዲሄድ በ ሰነዱ ውስጥ </ahelp>"
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/ok\">መፍቀጃ ማክሮስ እንዲሄድ በ ሰነዱ ውስጥ </ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41710,7 +41710,7 @@ msgctxt ""
"par_idN105A3\n"
"help.text"
msgid "Disable Macros"
-msgstr "Macros ማሰናከያ"
+msgstr "ማክሮስ ማሰናከያ"
#: securitywarning.xhp
msgctxt ""
@@ -41718,7 +41718,7 @@ msgctxt ""
"par_idN105A7\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/cancel\">Does not allow macros in the document to run.</ahelp>"
-msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/cancel\">መከልከያ macros እንዲዳይሄድ በ ሰነዱ ውስጥ </ahelp>"
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/cancel\">መከልከያ ማክሮስ እንዲዳይሄድ በ ሰነዱ ውስጥ </ahelp>"
#: selectcertificate.xhp
msgctxt ""
@@ -41822,7 +41822,7 @@ msgctxt ""
"par_id9186681\n"
"help.text"
msgid "The HTML formatted copy is written to the temporary files folder that you can select in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Paths</item>. When you quit %PRODUCTNAME, the HTML file will be deleted."
-msgstr "የ HTML አቀራረብ ኮፒ ተደርጎ ተጽፏል ወደ ጊዜያዊ ፋይሎች ፎልደር: እርስዎ መምረጥ የሚችሉበት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - መንገድ</item> በሚያጠፉ ጊዜ %PRODUCTNAME, የ HTML ፋይል ይጠፋል"
+msgstr "የ HTML አቀራረብ ኮፒ ተደርጎ ተጽፏል ወደ ጊዜያዊ ፋይሎች ፎልደር: እርስዎ መምረጥ የሚችሉበት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - መንገድ </item> በሚያጠፉ ጊዜ %PRODUCTNAME የ HTML ፋይል ይጠፋል"
#: webhtml.xhp
msgctxt ""
@@ -41830,7 +41830,7 @@ msgctxt ""
"par_id5871150\n"
"help.text"
msgid "You can set the HTML export filter options by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Load/Save - HTML Compatibility</item>."
-msgstr "እርስዎ ማሰናዳት ይችላሉ ለ HTML መላኪያ ማጣሪያ ምርጫ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - መጫኛ/ማስቀመጫ - HTML ተስማሚነት</item>."
+msgstr "እርስዎ ማሰናዳት ይችላሉ ለ HTML መላኪያ ማጣሪያ ምርጫ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - መጫኛ/ማስቀመጫ - HTML ተስማሚነት </item>"
#: xformsdata.xhp
msgctxt ""
@@ -41966,7 +41966,7 @@ msgctxt ""
"par_idN10749\n"
"help.text"
msgid "<ahelp hid=\".\">Renames the selected Xform model.</ahelp>"
-msgstr "<ahelp hid=\".\">የተመረጠውን የ Xform ክፍል እንደገና መሰየሚያ</ahelp>"
+msgstr "<ahelp hid=\".\">የተመረጠውን የ Xፎርም ክፍል እንደገና መሰየሚያ </ahelp>"
#: xformsdata.xhp
msgctxt ""
@@ -42638,7 +42638,7 @@ msgctxt ""
"par_idN1057A\n"
"help.text"
msgid "<ahelp hid=\".\">Edits the selected namespace.</ahelp>"
-msgstr "<ahelp hid=\".\">የተመረጠውን የስም ቦታ ማረሚያ</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተመረጠውን የ ስም ቦታ ማረሚያ</ahelp>"
#: xformsdataname.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index a5371d1a064..3bc16a84b84 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 14:40+0000\n"
+"PO-Revision-Date: 2017-06-21 15:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496760007.000000\n"
+"X-POOTLE-MTIME: 1498057483.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id9547105\n"
"help.text"
msgid "If the current document uses a printer that is not the default printer for your operating system, the <emph>Print File Direct </emph>icon opens the <link href=\"text/shared/01/01130000.xhp\"><emph>Print</emph></link> dialog."
-msgstr "የ አሁኑ ሰነድ ለ እርስዎ ስርአት ነባር ያልሆነ ማተሚያ ከ ተጠቀመ የ <emph>ፋይል በቀጥታ ማተሚያ </emph>ምልክት ይከፍታል የ <link href=\"text/shared/01/01130000.xhp\"><emph>ማተሚያ</emph></link> ንግግር"
+msgstr "የ አሁኑ ሰነድ ለ እርስዎ ስርአት ነባር ያልሆነ ማተሚያ ከ ተጠቀመ የ <emph> ፋይል በቀጥታ ማተሚያ </emph> ምልክት ይከፍታል የ <link href=\"text/shared/01/01130000.xhp\"><emph> ማተሚያ </emph></link> ንግግር"
#: 01140000.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3148482\n"
"help.text"
msgid "<ahelp hid=\".uno:Arc\">Draws an arc in the current document. To draw an arc, drag an oval to the size you want, and then click to define the starting point of the arc. Move your pointer to where you want to place the endpoint and click. You do not need to click on the oval. To draw an arc that is based on a circle, hold down Shift while you drag.</ahelp>"
-msgstr "<ahelp hid=\".uno:Arc\">በ አሁኑ ሰነድ ውስጥ ቅስት መሳያ: ቅስት ለ መሳል: ይጎትቱ oval እርስዎ በሚፈልጉት መጠን: እና ከዛ ይጫኑ ለ መግለጽ የ ቅስት መጀመሪያ ነጥብ ለ መወሰን: እና ከዛ ያንቀሳቅሱ መጠቆሚያውን ወደ መጨረሻው ነጥብ እና ከዛ እርስዎ መጫን የለብዎትም በ oval ላይ: ቅስት ለ መሳል ክብ መሰረት ያደረገ: ተጭነው ይያዙ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
+msgstr "<ahelp hid=\".uno:Arc\">በ አሁኑ ሰነድ ውስጥ ቅስት መሳያ: ቅስት ለ መሳል: ይጎትቱ oval እርስዎ በሚፈልጉት መጠን: እና ከዛ ይጫኑ ለ መግለጽ የ ቅስት መጀመሪያ ነጥብ ለ መወሰን: እና ከዛ ያንቀሳቅሱ መጠቆሚያውን ወደ መጨረሻው ነጥብ እና ከዛ እርስዎ መጫን የለብዎትም በ ኦቫል ላይ: ቅስት ለ መሳል ክብ መሰረት ያደረገ: ተጭነው ይያዙ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3150826\n"
"help.text"
msgid "<ahelp hid=\".uno:Text_Marquee\" visibility=\"hidden\">Inserts animated text with horizontal text direction into the current document. Drag a text box, and then type or paste your text. To assign an animation effect, choose <emph>Format - Text - Text Animation</emph>.</ahelp><variable id=\"lauftext\">Inserts animated text with horizontal text direction into the current document. </variable>"
-msgstr "<ahelp hid=\".uno:Text_Marquee\" visibility=\"hidden\">የሚንቀሳቀስ ጽሁፍ ማስገቢያ በ አግድም የ ጽሁፍ አቅጣጫ ወደ አሁኑ ሰነድ ውስጥ: ይጎትቱ የ ጽሁፍ ሳጥን እና ከዛ ይጻፉ ወይንም ይለጥፉ የ እርስዎን ጽሁፍ: የ እንቅስቃሴ ውጤት ለ መፈጸም: ይምረጡ <emph>አቀራረብ - ጽሁፍ - ጽሁፍ እንቅስቃሴ </emph>.</ahelp><variable id=\"lauftext\">የሚንቀሳቀስ ጽሁፍ ማስገቢያ በ አግድም የ ጽሁፍ አቅጣጫ ወደ አሁኑ ሰነድ ውስጥ</variable>"
+msgstr "<ahelp hid=\".uno:Text_Marquee\" visibility=\"hidden\">የሚንቀሳቀስ ጽሁፍ ማስገቢያ በ አግድም የ ጽሁፍ አቅጣጫ ወደ አሁኑ ሰነድ ውስጥ: ይጎትቱ የ ጽሁፍ ሳጥን እና ከዛ ይጻፉ ወይንም ይለጥፉ የ እርስዎን ጽሁፍ: የ እንቅስቃሴ ውጤት ለ መፈጸም: ይምረጡ <emph> አቀራረብ - ጽሁፍ - ጽሁፍ እንቅስቃሴ </emph></ahelp><variable id=\"lauftext\"> የሚንቀሳቀስ ጽሁፍ ማስገቢያ በ አግድም የ ጽሁፍ አቅጣጫ ወደ አሁኑ ሰነድ ውስጥ </variable>"
#: 01140000.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3151378\n"
"help.text"
msgid "<variable id=\"formulartext\"><ahelp hid=\".uno:Config\">The Form Controls toolbar contains tools that you need to create an interactive form.</ahelp></variable> You can use the toolbar to add controls to a form in a text, spreadsheet, presentation, or HTML document, for example a button that runs a macro."
-msgstr "<variable id=\"formulartext\"><ahelp hid=\".uno:Config\">የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ የያዛቸው መሳሪያዎች እርስዎን ፎርም መፍጠር ያስችሎታል </ahelp></variable> እርስዎ መጠቀም ይችላሉ የ እቃ መደርደሪያ መቆጣጠሪያዎች ለ መጨመር ወደ ፎርሙ ውስጥ በ ጽሁፍ ሰነድ: ሰንጠረዥ: ወይንም በ HTML ሰነድ ውስጥ: ለምሳሌ: macro የሚያስኬድ ቁልፍ"
+msgstr "<variable id=\"formulartext\"><ahelp hid=\".uno:Config\">የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ የያዛቸው መሳሪያዎች እርስዎን ፎርም መፍጠር ያስችሎታል </ahelp></variable> እርስዎ መጠቀም ይችላሉ የ እቃ መደርደሪያ መቆጣጠሪያዎች ለ መጨመር ወደ ፎርሙ ውስጥ በ ጽሁፍ ሰነድ: ሰንጠረዥ: ወይንም በ HTML ሰነድ ውስጥ: ለምሳሌ: ማክሮስ የሚያስኬድ ቁልፍ"
#: 01170000.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Right-click the control and choose <emph>Control</emph>. A dialog opens where you can define the properties of the control."
-msgstr "በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ይምረጡ <emph>መቆጣጠሪያ</emph>. ንግግር ይከፈታል የ መቆጣጠሪያውን ባህሪዎች የሚገልጹበት"
+msgstr "በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ይምረጡ <emph> መቆጣጠሪያ </emph> ንግግር ይከፈታል የ መቆጣጠሪያውን ባህሪዎች የሚገልጹበት"
#: 01170000.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3155346\n"
"help.text"
msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
-msgstr "የ አቀራረብ ሜዳ የ <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">ተለዩ መቆጣጠሪያ ባህሪዎች አለው</link> (ይምረጡ <emph>አቀራረብ - መቆጣጠሪያ</emph>)."
+msgstr "የ አቀራረብ ሜዳ <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\"> የተለዩ መቆጣጠሪያ ባህሪዎች አለው </link> (ይምረጡ <emph> አቀራረብ - መቆጣጠሪያ </emph>)"
#: 01170000.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3149123\n"
"help.text"
msgid "<ahelp hid=\".uno:RadioButton\">Creates an option button.</ahelp> Option buttons enable the user to choose one of several options. Option buttons with the same functionality are given the same name (<link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link><emph>property</emph>). Normally, they are given a <link href=\"text/shared/02/01170000.xhp\" name=\"group box\">group box</link>."
-msgstr "<ahelp hid=\".uno:RadioButton\">የ ምርጫ ቁልፍ መፍጠሪያ </ahelp> የ ምርጫ ቁልፍ ተጠቃሚውን የሚያስችለው ከ አንድ ወይንም ከ በርካታ ምርጫዎች ውስጥ መምረጥ ነው: የ ምርጫ ቁልፍ በ ተመሳሳይ ተግባሮች የሚሰጣቸው ተመሳሳይ ስም ነው (<link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph> ስም </emph></link><emph> ባህሪ </emph>) አብዛኛውን ጊዜ የ <link href=\"text/shared/02/01170000.xhp\" name=\"group box\">ቡድን ሳጥን ይሰጣቸዋል</link>."
+msgstr "<ahelp hid=\".uno:RadioButton\">የ ምርጫ ቁልፍ መፍጠሪያ </ahelp> የ ምርጫ ቁልፍ ተጠቃሚውን የሚያስችለው ከ አንድ ወይንም ከ በርካታ ምርጫዎች ውስጥ መምረጥ ነው: የ ምርጫ ቁልፍ በ ተመሳሳይ ተግባሮች የሚሰጣቸው ተመሳሳይ ስም ነው (<link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph> ስም </emph></link><emph> ባህሪ </emph>) አብዛኛውን ጊዜ የ <link href=\"text/shared/02/01170000.xhp\" name=\"group box\"> ቡድን ሳጥን ይሰጣቸዋል </link>"
#: 01170000.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_idN11CF4\n"
"help.text"
msgid "Scroll value max"
-msgstr "የመሸብለያ ከፍተኛ ዋጋ"
+msgstr "የ መሸብለያ ከፍተኛ ዋጋ"
#: 01170000.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id3149596\n"
"help.text"
msgid "<ahelp hid=\".uno:ImageControl\">Creates an image control. It can only be used to add images from a database.</ahelp> In the form document, double-click one of these controls to open the <emph>Insert Graphic</emph> dialog to insert the image. There is also a context menu (not in design mode) with commands for inserting and deleting the image."
-msgstr "<ahelp hid=\".uno:ImageControl\">የ ምስል መቆጣጠሪያ መፍጠሪያ: እርስዎ መጠቀም የሚችሉት ምስሎችን ከ ዳታቤዝ ውስጥ ለ መጨመር ብቻ ነው: </ahelp> በ ፎርም ሰነድ ውስጥ ሁለት ጊዜ-ይጫኑ አንዱ መቆጣጠሪያ ይከፈታል የ <emph>ንድፍ ማስገቢያ</emph> ንግግር ምስል ለማስገባት: እንዲሁም የ አገባብ ዝርዝር አለ (በ ንድፍ ዘዴ አይደለም) በ ትእዛዝ ምስል ማስገቢያ እና ማጥፊያ"
+msgstr "<ahelp hid=\".uno:ImageControl\">የ ምስል መቆጣጠሪያ መፍጠሪያ: እርስዎ መጠቀም የሚችሉት ምስሎችን ከ ዳታቤዝ ውስጥ ለ መጨመር ብቻ ነው: </ahelp> በ ፎርም ሰነድ ውስጥ ሁለት ጊዜ-ይጫኑ አንዱ መቆጣጠሪያ ይከፈታል የ <emph> ንድፍ ማስገቢያ </emph> ንግግር ምስል ለማስገባት: እንዲሁም የ አገባብ ዝርዝር አለ (በ ንድፍ ዘዴ አይደለም) በ ትእዛዝ ምስል ማስገቢያ እና ማጥፊያ"
#: 01170000.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id3150318\n"
"help.text"
msgid "Images from a database can be displayed in a form, and new images can be inserted in the database as long as the image control is not write-protected. The control must refer to a database field of the image type. Therefore, enter the data field into the properties window on the <emph>Data</emph> tab page."
-msgstr "ምስሎች ከ ዳታቤዝ ውስጥ በ ፎርም ላይ ማሳየት ይቻላል: እና አዲስ ምስሎች ማስገባት ይቻላል የ ምስል መቆጣጠሪያ ለመጻፍ-የሚጠበቅ ካልሆነ በስተቀር: መቆጣጠሪያው ወደ ዳታቤዝ ሜዳ ምስል አይነት መምራት አለበት: ስለዚህ ያስገቡ የ ዳታ ሜዳ ወደ ባህሪዎች መስኮት ከ <emph>ዳታ</emph> tab ገጽ ውስጥ"
+msgstr "ምስሎች ከ ዳታቤዝ ውስጥ በ ፎርም ላይ ማሳየት ይቻላል: እና አዲስ ምስሎች ማስገባት ይቻላል የ ምስል መቆጣጠሪያ ለመጻፍ-የሚጠበቅ ካልሆነ በስተቀር: መቆጣጠሪያው ወደ ዳታቤዝ ሜዳ ምስል አይነት መምራት አለበት: ስለዚህ ያስገቡ የ ዳታ ሜዳ ወደ ባህሪዎች መስኮት ከ <emph> ዳታ </emph> tab ገጽ ውስጥ"
#: 01170000.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id3145601\n"
"help.text"
msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:NumericField\">የ ቁጥር ሜዳ መፍጠሪያ</ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቁጥር ዋጋዎች ከ ዳታቤዝ ይቀበላል"
+msgstr "<ahelp hid=\".uno:NumericField\">የ ቁጥር ሜዳ መፍጠሪያ </ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቁጥር ዋጋዎች ከ ዳታቤዝ ይቀበላል"
#: 01170000.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3145115\n"
"help.text"
msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:CurrencyField\">የ ገንዘብ ሜዳ መፍጠሪያ</ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ: የ ገንዘብ ሜዳ ይዞታዎች ለ ፎርሙ ከ ዳታቤዝ ማግኘት ይቻላል"
+msgstr "<ahelp hid=\".uno:CurrencyField\">የ ገንዘብ ሜዳ መፍጠሪያ </ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ: የ ገንዘብ ሜዳ ይዞታዎች ለ ፎርሙ ከ ዳታቤዝ ማግኘት ይቻላል"
#: 01170000.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"par_id3150567\n"
"help.text"
msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
-msgstr "<emph>ማስታወሻ:</emph> እርስዎ የ ቡድን ሳጥን በሚጎትቱ ጊዜ ቀደም ብሎ መቆጣጠሪያ የነበረው እና እርስዎ መቆጣጠሪያ መምረጥ ከፈለጉ: እርስዎ በ መጀመሪያ መክፈት አለብዎት የ ቡድኑን ሳጥን አገባብ ዝርዝር እና ይምረጡ <emph>ማዘጋጃ - ወደ ኋላ መላኪያ</emph>. ከዛ ይምረጡ መቆጣጠሪያ ተጭነው ይዘው <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
+msgstr "<emph>ማስታወሻ:</emph> እርስዎ የ ቡድን ሳጥን በሚጎትቱ ጊዜ ቀደም ብሎ መቆጣጠሪያ የነበረው እና እርስዎ መቆጣጠሪያ መምረጥ ከፈለጉ: እርስዎ በ መጀመሪያ መክፈት አለብዎት የ ቡድኑን ሳጥን አገባብ ዝርዝር እና ይምረጡ <emph> ማዘጋጃ - ወደ ኋላ መላኪያ </emph>: እና ከዛ ይምረጡ መቆጣጠሪያ ተጭነው ይዘው <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>"
#: 01170000.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3154579\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a table control to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\">Table Element Wizard</link> appears."
-msgstr "<ahelp hid=\".\">የ ሰንጠረዥ መቆጣጠሪያ መፍጠሪያ የ ዳታቤዝ ሰንጠረዥ ለማሳየት</ahelp>አዲስ የ ሰንጠረዥ መቆጣጠሪያ ከ ፈጠሩ የ <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\">ሰንጠረዥ አካል አዋቂ</link> ይታያል"
+msgstr "<ahelp hid=\".\">የ ሰንጠረዥ መቆጣጠሪያ መፍጠሪያ የ ዳታቤዝ ሰንጠረዥ ለማሳየት </ahelp> አዲስ የ ሰንጠረዥ መቆጣጠሪያ ከ ፈጠሩ የ <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"> ሰንጠረዥ አካል አዋቂ </link> ይታያል"
#: 01170000.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3154697\n"
"help.text"
msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
-msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">የተለየ መረጃ ስለ ሰንጠረዥ መቆጣጠሪያ</link>."
+msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">የተለየ መረጃ ስለ ሰንጠረዥ መቆጣጠሪያ</link>"
#: 01170000.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_idN11DB1\n"
"help.text"
msgid "The navigation bar allows you to move through the records of a database or a database form. The controls on this navigation bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\">navigation bar</link> in $[officename]."
-msgstr "የ መቃኛ መደርደሪያ እርስዎን የሚያስችለው በ ዳታቤዝ መዝገቦች ውስጥ መንቀሳቀስ ነው: ወይንም የ ዳታቤዝ ፎርም ውስጥ: በዚህ መቃኛ መደርደሪያ ላይ ያለው መቆጣጠሪያ የሚሰራው እንደ ነባሩ ነው እንደ <link href=\"text/shared/main0213.xhp\">መቃኛ መደርደሪያ</link> በ $[officename]."
+msgstr "የ መቃኛ መደርደሪያ እርስዎን የሚያስችለው በ ዳታቤዝ መዝገቦች ውስጥ መንቀሳቀስ ነው: ወይንም የ ዳታቤዝ ፎርም ውስጥ: በዚህ መቃኛ መደርደሪያ ላይ ያለው መቆጣጠሪያ የሚሰራው እንደ ነባሩ ነው እንደ <link href=\"text/shared/main0213.xhp\"> መቃኛ መደርደሪያ </link> በ $[officename]"
#: 01170000.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Special properties of a formatted field"
-msgstr "የ ተለዩ ባህሪዎች ለ አቀራረብ ሜዳ"
+msgstr "የተለዩ ባህሪዎች ለ አቀራረብ ሜዳ"
#: 01170002.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"hd_id3150774\n"
"help.text"
msgid "Special properties of a formatted field"
-msgstr "የ ተለዩ ባህሪዎች ለ ሜዳ አቀራረብ"
+msgstr "የተለዩ ባህሪዎች ለ ሜዳ አቀራረብ"
#: 01170002.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id3150976\n"
"help.text"
msgid "<emph>Min. value</emph> and <emph>Max. value</emph>: You can enter the minimum and maximum numeric value for a formatted field. The min and max values determine the output of existing data (Example: Min. value is 5, the connected database field contains the integer value 3. The output is 5, but the value in the database is not modified) and the input of new data (Example: Max. value is 10 and you enter 20. The input is corrected and 10 is written in the database). If the fields are not filled in for <emph>Min. value </emph>and <emph>Max. value</emph>, no limits will be applied. For formatted fields that are connected to a database text field, these two values and the <emph>Default value</emph> do not apply."
-msgstr "<emph>አነስተኛ. ዋጋ</emph> እና <emph>ከፍተኛ. ዋጋ </emph>: እርስዎ ማስገባት ይችላሉ አነስተኛ እና ከፍተኛ የ ቁጥር ዋጋዎች ሜዳ አቀራረብ: አነስተኛ እና ከፍተኛ ዋጋ የሚወስነው የ ነበረውን ዳታ ውጤት ነው (ለምሳሌ: አነስተኛ. ዋጋ 5, ነው: የተገናኘው ዳታቤዝ ሜዳ የያዘው ኢንቲጀር ዋጋ 3. ነው: ውጤቱ 5, ነው: ነገር ግን ዋጋው በ ዳታቤዝ ውስጥ አልተሻሻለም) እና ማስገቢያው ለ አዲስ ዳታ (ለምሳሌ: ከፍተኛ. ዋጋ 10 ነው እና እርስዎ ካስገቡ 20. ማስገቢያው ይታረማል እና10 ይጻፋል በ ዳታቤዝ ውስጥ). ሜዳዎቹ ካልተሞሉ በ <emph> አነስተኛ. ዋጋ </emph>እና <emph>ከፍተኛ. ዋጋ </emph> ምንም መጠን አይፈጸምም: ለ ሜዳዎች አቀራረብ ከ ዳታቤዝ ጽሁፍ ሜዳ ጋር ለ ተገናኙ: እነዚህ ሁለት ዋጋዎች እና የ <emph> ነባር ዋጋ </emph> መፈጸም አይቻልም"
+msgstr "<emph>አነስተኛ ዋጋ </emph> እና <emph> ከፍተኛ ዋጋ </emph>: እርስዎ ማስገባት ይችላሉ አነስተኛ እና ከፍተኛ የ ቁጥር ዋጋዎች ሜዳ አቀራረብ: አነስተኛ እና ከፍተኛ ዋጋ የሚወስነው የ ነበረውን ዳታ ውጤት ነው (ለምሳሌ: አነስተኛ. ዋጋ 5, ነው: የተገናኘው ዳታቤዝ ሜዳ የያዘው ኢንቲጀር ዋጋ 3. ነው: ውጤቱ 5, ነው: ነገር ግን ዋጋው በ ዳታቤዝ ውስጥ አልተሻሻለም) እና ማስገቢያው ለ አዲስ ዳታ (ለምሳሌ: ከፍተኛ. ዋጋ 10 ነው እና እርስዎ ካስገቡ 20. ማስገቢያው ይታረማል እና10 ይጻፋል ከ ዳታቤዝ ውስጥ). ሜዳዎቹ ካልተሞሉ በ <emph> አነስተኛ ዋጋ </emph> እና <emph> ከፍተኛ ዋጋ </emph> ምንም መጠን አይፈጸምም: ለ ሜዳዎች አቀራረብ ከ ዳታቤዝ ጽሁፍ ሜዳ ጋር ለ ተገናኙ: እነዚህ ሁለት ዋጋዎች እና የ <emph> ነባር ዋጋ </emph> መፈጸም አይቻልም"
#: 01170002.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3159400\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_SHOWCOLS\">Calls a submenu where you can select the columns to show again.</ahelp> To show only one column, click the column name. You see only the first 16 hidden columns. If there are more hidden columns, choose the <emph>More</emph> command to call the <emph>Show Columns</emph> dialog."
-msgstr "<ahelp hid=\"SID_FM_SHOWCOLS\">ንዑስ ዝርዝር መጥሪያ እርስዎ የሚመርጡበት አምዶች እንደገና እንዲታዩ </ahelp> አንድ አምድ ብቻ ለማሳየት: ይጫኑ የ አምድ ስም ላይ: ለ እርስዎ የሚታየው የ መጀመሪያው 16 የተደበቁ አምዶች ናቸው: ተጨማሪ የተደበቁ አምዶች ካሉ: ይምረጡ የ <emph>ተጨማሪ</emph> ትእዛዝ መጥሪያ <emph>አምዶች ማሳያ</emph> ንግግር ውስጥ"
+msgstr "<ahelp hid=\"SID_FM_SHOWCOLS\">ንዑስ ዝርዝር መጥሪያ እርስዎ የሚመርጡበት አምዶች እንደገና እንዲታዩ </ahelp> አንድ አምድ ብቻ ለማሳየት: ይጫኑ የ አምድ ስም ላይ: ለ እርስዎ የሚታየው የ መጀመሪያው 16 የተደበቁ አምዶች ናቸው: ተጨማሪ የተደበቁ አምዶች ካሉ: ይምረጡ የ <emph> ተጨማሪ </emph> ትእዛዝ መጥሪያ <emph> አምዶች ማሳ ያ</emph> ንግግር ውስጥ"
#: 01170004.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "If you want to edit columns, press Shift+Space to enter column edit mode. Now you can rearrange the order of columns with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Arrow keys. The Delete key deletes the current column."
-msgstr "እርስዎ አምዶችን ማረም የሚፈልጉ ከሆነ: ይጫኑ Shift+Space ወደ አምድ ማረሚያ ዘዴ ለመግባት: አሁን እርስዎ እንደፈለጉ አምዶችን ደንብ እንደገና ማዘጋጀት ይችላሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ቀስት ቁልፎች: የ ማጥፊያ ቁልፍ የ አሁኑን አምድ ያጠፋል"
+msgstr "እርስዎ አምዶችን ማረም የሚፈልጉ ከሆነ: ይጫኑ Shift+Space ወደ አምድ ማረሚያ ዘዴ ለመግባት: አሁን እርስዎ እንደፈለጉ አምዶችን ደንብ እንደገና ማዘጋጀት ይችላሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ቀስት ቁልፎች: የ ማጥፊያ ቁልፍ የ አሁኑን አምድ ያጠፋል"
#: 01170004.xhp
msgctxt ""
@@ -2486,7 +2486,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "As with list boxes or combo boxes, you can open or close the list with a mouse click at the arrow on the right end of the field. However, the input here can be entered either in the opened list or in the top text field. An exception is the properties that expect a list representation, for example, the property <emph>List Entries</emph>, which can be set for the control fields <emph>List Box</emph> and <emph>Combo Box</emph>. Here, you can only edit the entries when the field is opened."
-msgstr "ከ ዝርዝር ሳጥኖች ወይንም መቀላቀያ ሳጥኖች ውስጥ: እርስዎ መክፈት ወይንም መዝጋት ይችላሉ ከ ዝርዝር ውስጥ በ አይጥ መጠቆሚያ: ይጫኑ በ ቀስቱ ላይ በ ሜዳው ቀኝ መጨረሻ በኩል: ነገር ግን እዚህ ማስገባት የሚቻለው በ አንዱ በ ተከፈተው ዝርዝር ወይንም ከ ላይ በ ጽሁፍ ሜዳ ውስጥ ነው: የ ተለየ ለ ባህሪዎች ዝርዝር ውክልና ለሚጠብቁ ይደረጋል: ለምሳሌ: ለ ባህሪ <emph>ዝርዝር ማስገቢያ</emph>ማሰናዳት ይቻላል በ መቆጣጠሪያ ሜዳ<emph>ዝርዝር ሳጥን</emph>ውስጥ እና<emph>መቀላቀያ ሳጥን</emph> እዚህ እርስዎ ማስገቢያዎችን ማረም ይችላሉ ሜዳው በ ተፈተበት"
+msgstr "ከ ዝርዝር ሳጥኖች ወይንም መቀላቀያ ሳጥኖች ውስጥ: እርስዎ መክፈት ወይንም መዝጋት ይችላሉ ከ ዝርዝር ውስጥ በ አይጥ መጠቆሚያ: ይጫኑ በ ቀስቱ ላይ በ ሜዳው ቀኝ መጨረሻ በኩል: ነገር ግን እዚህ ማስገባት የሚቻለው በ አንዱ በ ተከፈተው ዝርዝር ወይንም ከ ላይ በ ጽሁፍ ሜዳ ውስጥ ነው: የ ተለየ ለ ባህሪዎች ዝርዝር ውክልና ለሚጠብቁ ይደረጋል: ለምሳሌ: ለ ባህሪ <emph> ዝርዝር ማስገቢያ </emph> ማሰናዳት ይቻላል በ መቆጣጠሪያ ሜዳ <emph> ዝርዝር ሳጥን </emph> ውስጥ እና <emph> መቀላቀያ ሳጥን </emph> ውስጥ: እዚህ እርስዎ ማስገቢያዎችን ማረም ይችላሉ ሜዳው በ ተከፈተበት"
#: 01170101.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "Opens the URL that is specified under <emph>URL</emph>. You can use <emph>Frame</emph> to specify the target frame."
-msgstr "መክፈቻ የ URL የ ተወሰነ በ <emph>URL</emph>. እርስዎ መጠቀም ይችላሉ<emph>ክፈፍ</emph> የ ታለመውን ክፈፍ ለ መግለጽ"
+msgstr "መክፈቻ የ URL የ ተወሰነ በ <emph> URL </emph> እርስዎ መጠቀም ይችላሉ <emph> ክፈፍ </emph> የ ታለመውን ክፈፍ ለ መግለጽ"
#: 01170101.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"par_idN109EC\n"
"help.text"
msgid "The <emph>Alignment</emph> option for buttons is called <emph>Graphics alignment</emph>."
-msgstr "የ <emph>ማሰለፊያ</emph> ምርጫ ለ ቁልፎች የሚባለው <emph>ንድፎች ማሰለፊያ ነው</emph>."
+msgstr "የ <emph> ማሰለፊያ </emph> ምርጫ ለ ቁልፎች የሚባለው <emph> ንድፎች ማሰለፊያ ነው </emph>"
#: 01170101.xhp
msgctxt ""
@@ -2918,7 +2918,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_CONTROLLABEL\">Specifies the source for the label of the control.</ahelp> The text of the label field will be used instead of the name of a database field. For example, in the <emph>Filter Navigator</emph>, <emph>Search</emph> dialog, and as a column name in the table view."
-msgstr "<ahelp hid=\"HID_PROP_CONTROLLABEL\">ለ ምልክት መቆጣጠሪያ ምንጭ መወሰኛ </ahelp> የ ምልክት ሜዳ ጽሁፍ ይጠቀማል ከ ዳታቤዝ ሜዳ ስም ይልቅ: ለምሳሌ: በ <emph>ማጣሪያ መቃኛ</emph>, <emph>መፈለጊያ</emph> ንግግር ውስጥ: እና እንደ አምድ ስም በ ሰንጠረዥ መመልከቻ ውስጥ"
+msgstr "<ahelp hid=\"HID_PROP_CONTROLLABEL\">ለ ምልክት መቆጣጠሪያ ምንጭ መወሰኛ </ahelp> የ ምልክት ሜዳ ጽሁፍ ይጠቀማል ከ ዳታቤዝ ሜዳ ስም ይልቅ: ለምሳሌ: በ <emph> ማጣሪያ መቃኛ </emph><emph> መፈለጊያ </emph> ንግግር ውስጥ: እና እንደ አምድ ስም በ ሰንጠረዥ መመልከቻ ውስጥ"
#: 01170101.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id3154254\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_TRISTATE\">Specifies whether a check box can also represent ZERO values of a linked database apart from the TRUE and FALSE values.</ahelp> This function is only available if the database accepts three states: TRUE, FALSE and ZERO."
-msgstr "<ahelp hid=\"HID_PROP_TRISTATE\">የ ምልክት ማድረጊያ ሳጥን የ ዜሮ ዋጋዎችን ይወክል እንደሆን መወሰኛ ለ ተገናኘው ዳታቤዝ ከ እውነት እና ሀሰት ዋጋዎች ሌላ </ahelp>ይህ ተግባር ዝግጁ የሚሆነው ዳታቤዝ ሶስት ሁኔታዎች የሚቀበል ከሆነ ነው: እውነት: ሀሰት እና ዜሮ"
+msgstr "<ahelp hid=\"HID_PROP_TRISTATE\">የ ምልክት ማድረጊያ ሳጥን የ ዜሮ ዋጋዎችን ይወክል እንደሆን መወሰኛ ለ ተገናኘው ዳታቤዝ ከ እውነት እና ሀሰት ዋጋዎች ሌላ </ahelp> ይህ ተግባር ዝግጁ የሚሆነው ዳታቤዝ ሶስት ሁኔታዎች የሚቀበል ከሆነ ነው: እውነት: ሀሰት እና ዜሮ"
#: 01170101.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"par_id3156712\n"
"help.text"
msgid "The<emph> Tristate </emph>property is only defined for database forms, not for HTML forms."
-msgstr "የ <emph> ሶስት ሁኔታ </emph>ባህሪዎች የሚገለጸው ለ ዳታቤዝ ፎርሞች ብቻ ነው ለ HTML ፎርሞች አይደለም"
+msgstr "የ <emph> ሶስት ሁኔታ </emph> ባህሪዎች የሚገለጸው ለ ዳታቤዝ ፎርሞች ብቻ ነው ለ HTML ፎርሞች አይደለም"
#: 01170101.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"par_id0409200921153919\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the height of the control.</ahelp>"
-msgstr "<ahelp hid=\".\">የመቆጣጠሪያውን እርዝመት መግለጫ</ahelp>"
+msgstr "<ahelp hid=\".\">የ መቆጣጠሪያ እርዝመት መግለጫ</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id3150829\n"
"help.text"
msgid "The characters a-z and A-Z can be entered. Capital characters are not converted to lowercase characters."
-msgstr "እነዚህ ባህሪዎች a-z እና A-Z ማስገባት ይቻላል: አቢይ ባህሪዎችን መቀየር አይቻልም ወደ ዝቅተኛ ጉዳይ ባህሪዎች"
+msgstr "እነዚህ ባህሪዎች a-z እና A-Z ማስገባት ይቻላል: አቢይ ባህሪዎችን መቀየር አይቻልም ወደ ታችኛው ጉዳይ ፊደል ባህሪዎች"
#: 01170101.xhp
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"par_id3156140\n"
"help.text"
msgid "The characters A-Z can be entered. If a lowercase letter is entered, it is automatically converted to a capital letter"
-msgstr "እነዚህ ባህሪዎች A-Z ማስገባት ይቻላል: ዝቅተኛ ጉዳይ ፊደል ከ ገባ: ራሱ በራሱ ወደ አቢይ ፊደል ይቀየራል"
+msgstr "እነዚህ ባህሪዎች A-Z ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደል ከ ገባ: ራሱ በራሱ ወደ አቢይ ፊደል ይቀየራል"
#: 01170101.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_id3148873\n"
"help.text"
msgid "The characters a-z, A-Z, and 0-9 can be entered. Capital characters are not converted to lowercase characters."
-msgstr "እነዚህ ባህሪዎች a-z: A-Z እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን መቀየር አይቻልም ወደ ዝቅተኛ ጉዳይ ባህሪዎች"
+msgstr "እነዚህ ባህሪዎች a-z: A-Z እና 0-9 ማስገባት ይቻላል: አቢይ ባህሪዎችን መቀየር አይቻልም ወደ ታችኛው ጉዳይ ፊደል ባህሪዎች"
#: 01170101.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"par_id3154574\n"
"help.text"
msgid "The characters A-Z and 0-9 can be entered. If a lowercase letter is entered, it is automatically converted to a capital letter"
-msgstr "እነዚህ ባህሪዎች A-Z እና 0-9 ማስገባት ይቻላል: ዝቅተኛ ጉዳይ ፊደል ካስገቡ: ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደል"
+msgstr "እነዚህ ባህሪዎች A-Z እና 0-9 ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደል ካስገቡ: ራሱ በራሱ ይቀየራል ወደ አቢይ ፊደል"
#: 01170101.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3150429\n"
"help.text"
msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
-msgstr "ሁሉም ሊታተሙ የሚችሉ ባህሪዎች ማስገባት ይቻላል: ዝቅተኛ ጉዳይ ፊደል ከ ተጠቀሙ: ራሱ በራሱ ወደ አቢይ ፊደል ይቀየራል"
+msgstr "ሁሉም ሊታተሙ የሚችሉ ባህሪዎች ማስገባት ይቻላል: የ ታችኛው ጉዳይ ፊደል ከ ተጠቀሙ: ራሱ በራሱ ወደ አቢይ ፊደል ይቀየራል"
#: 01170101.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_id3148750\n"
"help.text"
msgid "You can have a format check with control fields that accept formatted contents (date, time, and so on). <ahelp hid=\"HID_PROP_STRICTFORMAT\">If the strict format function is activated (Yes), only the allowed characters are accepted.</ahelp> For example, in a date field, only numbers or date delimiters are accepted; all alphabet entries typed with your keyboard are ignored."
-msgstr "እርስዎ አቀራረብ መመርመር ይችላሉ በ መቆጣጠሪያ ሜዳ ውስጥ: በሚቀበል የ አቀራረብ ይዞታዎችን (ቀን: ሰአት: እና ወዘተ). <ahelp hid=\"HID_PROP_STRICTFORMAT\">የ አቀራረብ መከልከያ ከ ጀመረ (አዎ), የ ተፈቀደውን ባህሪዎች ብቻ ይቀበላል </ahelp> ለምሳሌ: በ ቀን ሜዳ ውስጥ: ቁጥር ባቻ ወይንም የ ቀን ምልክት ብቻ ይቀበላል: ሁሉም ፊደሎች የተጻፉ በ እርስዎ የ ፊደል ገበታ ይተዋሉ"
+msgstr "እርስዎ አቀራረብ መመርመር ይችላሉ በ መቆጣጠሪያ ሜዳ ውስጥ: በሚቀበል የ አቀራረብ ይዞታዎችን (ቀን: ሰአት: እና ወዘተ): <ahelp hid=\"HID_PROP_STRICTFORMAT\"> የ አቀራረብ መከልከያ ከ ጀመረ (አዎ): የ ተፈቀደውን ባህሪዎች ብቻ ይቀበላል </ahelp> ለምሳሌ: በ ቀን ሜዳ ውስጥ: ቁጥር ብቻ ወይንም የ ቀን ምልክት ብቻ ይቀበላል: በ እርስዎ የ ፊደል ገበታ የተጻፉ ሁሉም ፊደሎች ይተዋሉ"
#: 01170101.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3154767\n"
"help.text"
msgid "If you do not want the list entries to be written to the database or transmitted to the recipient of the Web form, but rather assigned values that are not visible in the form, you can assign the list entries to other values in a value list. The value list is determined on the <link href=\"text/shared/02/01170102.xhp\" name=\"Data\"><emph>Data</emph></link> tab. Under <emph>Type of List Contents</emph>, select the option \"Value List\". Then enter the values under <emph>List Contents</emph> that are to be assigned to the corresponding visible list entries of the form. For the correct assignment, the order in the value list is relevant."
-msgstr "እርስዎ ካልፈለጉ የ ዝርዝር ማስገቢያዎች እንዲጻፉ ከ ዳታቤዝ ውስጥ ወይንም እንዲተላለፉ ወደ ተቀባይ ዌብ ፎርም ውስጥ: ነገር ግን ዋጋዎችን መመደብ በ ፎርም ውስጥ የማይታዩ: እርስዎ መመደብ ይችላሉ ዝርዝር ማስገቢያዎች ወደ ሌላ ዋጋዎች ውስጥ በ ዋጋ ዝርዝር ውስጥ: ዋጋው የሚወሰነው ከ <link href=\"text/shared/02/01170102.xhp\" name=\"Data\"><emph>ዳታ</emph></link> tab. ስር <emph>ዝርዝር ይዞታዎች አይነት </emph> ትምረጡ ከ ምርጫ \"ዋጋ ዝርዝር\": እና ከዛ ዋጋዎች ያስገቡ ከ <emph>ዝርዝር ይዞታዎች</emph> የሚመደቡ ወደ ተመሳሳይ የሚታዩ ዝርዝር ማስገቢያዎች ፎርም ውስጥ: ለ ትክክለኛ ስራ: የ ዋጋ ዝርዝር ደንብ አስፈላጊ ነው"
+msgstr "እርስዎ ካልፈለጉ የ ዝርዝር ማስገቢያዎች እንዲጻፉ ከ ዳታቤዝ ውስጥ ወይንም እንዲተላለፉ ወደ ተቀባይ ዌብ ፎርም ውስጥ: ነገር ግን ዋጋዎችን መመደብ በ ፎርም ውስጥ የማይታዩ: እርስዎ መመደብ ይችላሉ ዝርዝር ማስገቢያዎች ወደ ሌላ ዋጋዎች ውስጥ በ ዋጋ ዝርዝር ውስጥ: ዋጋው የሚወሰነው ከ <link href=\"text/shared/02/01170102.xhp\" name=\"Data\"><emph> ዳታ </emph></link> tab. ስር <emph>ዝርዝር ይዞታዎች አይነት </emph> ትምረጡ ከ ምርጫ \"ዋጋ ዝርዝር\": እና ከዛ ዋጋዎች ያስገቡ ከ <emph> ዝርዝር ይዞታዎች </emph> የሚመደቡ ወደ ተመሳሳይ የሚታዩ ዝርዝር ማስገቢያዎች ፎርም ውስጥ: ለ ትክክለኛ ስራ: የ ዋጋ ዝርዝር ደንብ አስፈላጊ ነው"
#: 01170101.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3150511\n"
"help.text"
msgid "For HTML documents, a list entry entered on the <emph>General</emph> tab corresponds to the HTML tag <OPTION>; an entry of the value list entered on the <emph>Data</emph> tab under <emph>List Contents</emph> corresponds to the <OPTION VALUE=...> tag."
-msgstr "ለ HTML ሰነዶች: ዝርዝር ማስገቢያ የሚገባው <emph> ባጠቃላይ </emph> tab ተመሳሳይ ነው ለ HTML tag <OPTION>ማስገቢያ ለ ዋጋ ዝርዝር የሚገባው በ <emph>ዳታ</emph> tab ስር ነው <emph> ዝርዝር ይዞታው </emph> ተመሳሳይ ነው ለ <OPTION VALUE=...> tag."
+msgstr "ለ HTML ሰነዶች: ዝርዝር ማስገቢያ የሚገባው <emph> ባጠቃላይ </emph> tab ተመሳሳይ ነው ለ HTML tag <OPTION>ማስገቢያ ለ ዋጋ ዝርዝር የሚገባው ከ <emph> ዳታ </emph> tab ስር ነው <emph> ዝርዝር ይዞታው </emph> ተመሳሳይ ነው ለ <OPTION VALUE=...> tag."
#: 01170101.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_NAME\" visibility=\"hidden\">On the <emph>Properties</emph> tab page, this option specifies the name for the control field. On the <emph>Form Properties </emph>tab page, this option specifies the name for the form.</ahelp> Each control field and each form has a <emph>Name </emph>property through which it can be identified. The name will appear in the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\">Form Navigator</link> and, using the name, the control field can be referred to from a macro. The default settings already specify a name which is constructed from using the field's label and number."
-msgstr "<ahelp hid=\"HID_PROP_NAME\" visibility=\"hidden\">በ <emph>ባህሪዎች</emph> tab ገጽ ውስጥ: ይህ ምርጫ የሚገልጸው የ መቆጣጠሪያ ስም ነው: በ <emph>ፎርም ባህሪዎች</emph>tab ጽ ውስጥ: ይህ ምርጫ የሚገልጸው የ ፎርም ስም ነው:</ahelp> እያንዳንዱ መቆጣጠሪያ ሜዳ እና እያንዳንዱ ፎርም <emph>ስም </emph>አለው: የሚለይበት ባህሪ: ስሙ ይታያል በ <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\">ፎርም መቃኛ</link> ውስጥ: እና ስሙን መጠቀም: የ መቆጣጠሪያ ሜዳ ማመሳከር ይቻላል ከ macro ጋር: ነባር ማሰናጃው ስም ቀደም ብሎ ወስኗል የ ሜዳዎች ምልክት እና ቁጥር በ መጠቀም:"
+msgstr "<ahelp hid=\"HID_PROP_NAME\" visibility=\"hidden\">በ <emph> ባህሪዎች </emph> tab ገጽ ውስጥ: ይህ ምርጫ የሚገልጸው የ መቆጣጠሪያ ስም ነው: በ <emph> ፎርም ባህሪዎች </emph> tab ጽ ውስጥ: ይህ ምርጫ የሚገልጸው የ ፎርም ስም ነው: </ahelp> እያንዳንዱ መቆጣጠሪያ ሜዳ እና እያንዳንዱ ፎርም <emph> ስም </emph> አለው: የሚለይበት ባህሪ: ስሙ ይታያል በ <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\"> ፎርም መቃኛ </link> ውስጥ: እና ስሙን መጠቀም: የ መቆጣጠሪያ ሜዳ ማመሳከር ይቻላል ከ ማክሮስ ጋር: ነባር ማሰናጃው ስም ቀደም ብሎ ወስኗል የ ሜዳዎች ምልክት እና ቁጥር በ መጠቀም:"
#: 01170101.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3153025\n"
"help.text"
msgid "If you work with macros, make sure that the names of the controls are unique."
-msgstr "እርስዎ በ macros የሚሰሩ ከሆነ: እርግጠኛ ይሁኑ የ መቆጣጠሪያ ስሞች ልዩ መሆናቸውን"
+msgstr "እርስዎ በ ማክሮስ የሚሰሩ ከሆነ: እርግጠኛ ይሁኑ የ መቆጣጠሪያ ስሞች ልዩ መሆናቸውን"
#: 01170101.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3146325\n"
"help.text"
msgid "The name is also used to group different controls that belong together functionally, such as radio buttons. To do so, give the same name to all members of the group: controls with identical names form a group. Grouped controls can be represented visually by using a <link href=\"text/shared/02/01170000.xhp\" name=\"Group Box\">Group Box</link>."
-msgstr "ስሙ እንዲሁም ይጠቅማል በ ቡድን ለማድረግ የ ተለያዩ መቆጣጠሪያዎች በ አንድ ላይ መሆን የሚገባቸውን ተግባሮች: እንደ ሬዲዮ ቁልፍ ያሉ: ይህን ለማድረግ: ተመሳሳይ ስም ይስጡ ለ ሁሉም አባሎች በ ቡድን ውስጥ: የ ተመሳሳይ ስሞች መቆጣጠሪያ ከ ቡድን ውስጥ: በ ቡድን የሆኑ መቆጣጠሪያዎች በሚታይ ይወከላሉ በ መጠቀም የ <link href=\"text/shared/02/01170000.xhp\" name=\"Group Box\">ቡድን ሳጥን</link>."
+msgstr "ስሙ እንዲሁም ይጠቅማል በ ቡድን ለማድረግ የ ተለያዩ መቆጣጠሪያዎች በ አንድ ላይ መሆን የሚገባቸውን ተግባሮች: እንደ ሬዲዮ ቁልፍ ያሉ: ይህን ለማድረግ: ተመሳሳይ ስም ይስጡ ለ ሁሉም አባሎች በ ቡድን ውስጥ: የ ተመሳሳይ ስሞች መቆጣጠሪያ ከ ቡድን ውስጥ: በ ቡድን የሆኑ መቆጣጠሪያዎች በሚታይ ይወከላሉ በ መጠቀም የ <link href=\"text/shared/02/01170000.xhp\" name=\"Group Box\"> ቡድን ሳጥን </link>"
#: 01170101.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3153215\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_READONLY\" visibility=\"hidden\">Determines if the control is read-only (Yes) or if it can be edited (No).</ahelp> The<emph> Read-only </emph>property can be assigned to all controls in which the user can enter text. If you assign the read-only property to an image field which uses graphics from a database, the user will not be able to insert new graphics into the database."
-msgstr "<ahelp hid=\"HID_PROP_READONLY\" visibility=\"hidden\">መወሰኛ መቆጣጠሪያ ለ ንባብ-ብቻ (አዎ) ወይንም ሊታረም ይችላል (አይ) </ahelp> የ <emph> ንባብ-ብቻ </emph>ባህሪ መመደብ ይቻላል ለ ሁሉም መቆጣጠሪያዎች ተጠቃሚው ጽሁፍ የሚያስገባበት: እርስዎ ከ መደቡ ለ ንባብ-ብቻ ባህሪዎች የ ምስል ሜዳ የ ንድፍ ሜዳ የሚጠቀም ከ ዳታቤዝ ውስጥ: ተጠቃሚው አዲስ ንድፎች ማስገባት አይችልም ወደ ዳታቤዝ ውስጥ"
+msgstr "<ahelp hid=\"HID_PROP_READONLY\" visibility=\"hidden\">መወሰኛ መቆጣጠሪያ ለ ንባብ-ብቻ (አዎ) ወይንም ሊታረም ይችላል (አይ) </ahelp> የ <emph> ንባብ-ብቻ </emph> ባህሪ መመደብ ይቻላል ለ ሁሉም መቆጣጠሪያዎች ተጠቃሚው ጽሁፍ የሚያስገባበት: እርስዎ ከ መደቡ ለ ንባብ-ብቻ ባህሪዎች የ ምስል ሜዳ የ ንድፍ ሜዳ የሚጠቀም ከ ዳታቤዝ ውስጥ: ተጠቃሚው አዲስ ንድፎች ማስገባት አይችልም ወደ ዳታቤዝ ውስጥ"
#: 01170101.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_id3156266\n"
"help.text"
msgid "For grouped option fields, the status of the group corresponding to the default setting is defined by the <emph>Default Status</emph> property."
-msgstr "ለ ቡድን ምርጫ ሜዳዎች: የ ቡድን ተመሳሳይ ለ ነባር ማሰናጃ የሚገለጸው በ<emph>ነባር ሁኔታ </emph>ባህሪ ነው"
+msgstr "ለ ቡድን ምርጫ ሜዳዎች: የ ቡድን ተመሳሳይ ለ ነባር ማሰናጃ የሚገለጸው በ <emph> ነባር ሁኔታ </emph> ባህሪ ነው"
#: 01170101.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id3159407\n"
"help.text"
msgid "The <emph>Title</emph> property is only used for labeling a form element in the interface visible to the user. If you work with macros, note that at runtime, a control is always addressed through the <emph>Name</emph> property."
-msgstr "የ <emph> አርእስት </emph> ባህሪ የሚጠቅመው ለ ምልክት ብቻ ነው የ ፎርም አካሎችን በሚታየው የ ተጠቃሚ ገጽታ ውስጥ: እርስዎ የሚሰሩ ከሆነ በ macros: የ ማስኬጃ ጊዜ ያስታውሱ: መቆጣጠሪያ ጋር ሁል ጊዜ የሚደረሰው በ <emph> ስም </emph> ባህሪዎች ነው"
+msgstr "የ <emph> አርእስት </emph> ባህሪ የሚጠቅመው ለ ምልክት ብቻ ነው የ ፎርም አካሎችን በሚታየው የ ተጠቃሚ ገጽታ ውስጥ: እርስዎ የሚሰሩ ከሆነ በ ማክሮስ: የ ማስኬጃ ጊዜ ያስታውሱ: መቆጣጠሪያ ጋር ሁል ጊዜ የሚደረሰው በ <emph> ስም </emph> ባህሪዎች ነው"
#: 01170101.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id3147494\n"
"help.text"
msgid "For combo boxes, the field of the data source table in which the values entered or selected by the user should be stored is specified under <emph>Data field</emph>. The values displayed in the list of the combo box are based on an SQL statement, which is entered under <emph>List content</emph>."
-msgstr "ለ መቀላቀያ ሳጥኖች: የ ዳታ ምንጭ ሰጠረዥ ሜዳ ዋጋዎቹ የሚገቡበት ወይንም የ ተመረጡበት በ ተጠቃሚው በ ተወሰነ ቦታ መቀመጥ አለበት ከ <emph>ዳታ ሜዳ </emph> ዋጋዎቹ ይታያሉ በ ዝርዝር በ መቀላቀያ ሳጥን ውስጥ መሰረት አድርገው የ SQL አረፍተ ነገር: እና ይገባል በ <emph>ዝርዝር ይዞታ</emph> ውስጥ"
+msgstr "ለ መቀላቀያ ሳጥኖች: የ ዳታ ምንጭ ሰጠረዥ ሜዳ ዋጋዎቹ የሚገቡበት ወይንም የ ተመረጡበት በ ተጠቃሚው በ ተወሰነ ቦታ መቀመጥ አለበት ከ <emph> ዳታ ሜዳ </emph> ዋጋዎቹ ይታያሉ በ ዝርዝር በ መቀላቀያ ሳጥን ውስጥ መሰረት አድርገው የ SQL አረፍተ ነገር: እና ይገባል በ <emph> ዝርዝር ይዞታ </emph> ውስጥ"
#: 01170102.xhp
msgctxt ""
@@ -5070,7 +5070,7 @@ msgctxt ""
"par_id3149021\n"
"help.text"
msgid "If you want a list box to display data from a table that is linked to the current data source table, under <emph>Data field</emph> specify the field of the data source table to which the content of the list box refers. Or you can specify the database field that controls the display of the data in the form. This data field provides the link to the other table if both tables can be linked through a common data field. It is usually a data field in which unique identification numbers are stored. The data field whose contents are displayed in the form is specified by an SQL statement under <emph>List content</emph>."
-msgstr "እርስዎ ከ ፈለጉ ዝርዝር ሳጥን እንዲያሳይ ዳታ ከ ሰንጠረዥ ውስጥ የ ተገናኘ ከ አሁኑ የ ዳታ ምንጭ ሰንጠረዥ ጋር: ከ <emph>ዳታ ሜዳ</emph> ለ ዳታ ምንጭ ሰንጠረዥ ሜዳ ይግለጹ የ ዝርዝር ሳጥን ይዞታ የሚያመሳክረውን: ወይንም እርስዎ መወሰን ይችላሉ የ ዳታቤዝ ሜዳ የሚታየውን በ ፎርም ውስጥ ያለውን ዳታ የሚቆጣጠረውን ሜዳ: ይህ የ ዳታ ሜዳ የሚያቀርበው ወደ ሌላ ሰንጠረዥ የሚያገናኝ ነው: ሁለቱም ሰንጠረዦች ከ ተገናኙ በ መደበኛ ያ ዳታ ሜዳ: ብዙ ጊዜ የ ዳታ ሜዳ ውስጥ ነው የ መለያ ቁጥሮች የሚቀመጡት: የ ዳታ ሜዳ ይዞታዎቹ የሚታየው በ ፎርም ውስጥ የሚወሰነው በ SQL statement ነው በ <emph>ዝርዝር ይዞታ</emph> ውስጥ"
+msgstr "እርስዎ ከ ፈለጉ ዝርዝር ሳጥን እንዲያሳይ ዳታ ከ ሰንጠረዥ ውስጥ የ ተገናኘ ከ አሁኑ የ ዳታ ምንጭ ሰንጠረዥ ጋር: ከ <emph> ዳታ ሜዳ </emph> ለ ዳታ ምንጭ ሰንጠረዥ ሜዳ ይግለጹ የ ዝርዝር ሳጥን ይዞታ የሚያመሳክረውን: ወይንም እርስዎ መወሰን ይችላሉ የ ዳታቤዝ ሜዳ የሚታየውን በ ፎርም ውስጥ ያለውን ዳታ የሚቆጣጠረውን ሜዳ: ይህ የ ዳታ ሜዳ የሚያቀርበው ወደ ሌላ ሰንጠረዥ የሚያገናኝ ነው: ሁለቱም ሰንጠረዦች ከ ተገናኙ በ መደበኛ ያ ዳታ ሜዳ: ብዙ ጊዜ የ ዳታ ሜዳ ውስጥ ነው የ መለያ ቁጥሮች የሚቀመጡት: የ ዳታ ሜዳ ይዞታዎቹ የሚታየው በ ፎርም ውስጥ የሚወሰነው በ SQL statement ነው በ <emph> ዝርዝር ይዞታ </emph> ውስጥ"
#: 01170102.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id3147341\n"
"help.text"
msgid "If you want a list box to display data from a database table that is linked by a common data field to the table on which the form is based, the link field of the form table is specified under <emph>Data field</emph>."
-msgstr "እርስዎ ከ ፈለጉ ዝርዝር ሳጥን እንዲያሳይ ዳታ ከ ዳታቤዝ ሰንጠረዥ ውስጥ የ ተገናኘ በ መደበኛ ዳታ ሜዳ ለ ሰንጠረዥ ፎርሙ መሰረት ያደረገ: የ አገናኝ ሜዳ ለ ፎርም ሰንጠረዥ ይገለጻል ከ <emph>ዳታ ሜዳ </emph> ውስጥ"
+msgstr "እርስዎ ከ ፈለጉ ዝርዝር ሳጥን እንዲያሳይ ዳታ ከ ዳታቤዝ ሰንጠረዥ ውስጥ የ ተገናኘ በ መደበኛ ዳታ ሜዳ ለ ሰንጠረዥ ፎርሙ መሰረት ያደረገ: የ አገናኝ ሜዳ ለ ፎርም ሰንጠረዥ ይገለጻል ከ <emph> ዳታ ሜዳ </emph> ውስጥ"
#: 01170102.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id3155174\n"
"help.text"
msgid "The link is created with an SQL Select, which, if you selected \"SQL\" or \"Native SQL\", is specified under <emph>Type of list contents</emph> in the field <emph>List content</emph>. As an example, a table \"Orders\" is linked to the current form control, and in the database a table \"Customers\" is linked to the \"Orders\" table. You can use an SQL statement as follows:"
-msgstr "አገናኙ የ ተፈጠረው በ SQL ምርጫ ነው: እርስዎ ከ መረጡ የ \"SQL\" ወይንም \"Native SQL\", ይገለጻል በ <emph>ውስጥ: ይጻፉ ዝርዝር ይዞታዎችን</emph> በ ሜዳ <emph>ዝርዝር ይዞታ</emph>ውስጥ: እንደ ምሳሌ: ሰንጠረዥ \"ትእዛዝ\" ተጋናኝቷል ከ አሁኑ ፎርም መቆጣጠሪያ ጋር: እና ከ ዳታቤዝ ሰንጠረዥ \"ደንበኞች\" ተገናኝቷል ከ \"ትእዛዝ\" ሰንጠረዥ: እርስዎ መጠቀም ይችላሉ የ SQL statement እንደሚከተለው:"
+msgstr "አገናኙ የ ተፈጠረው በ SQL ምርጫ ነው: እርስዎ ከ መረጡ የ \"SQL\" ወይንም \"Native SQL\" ይገለጻል በ <emph> ውስጥ: ይጻፉ ዝርዝር ይዞታዎችን </emph> በ ሜዳ <emph> ዝርዝር ይዞታ </emph> ውስጥ: እንደ ምሳሌ: ሰንጠረዥ \"ትእዛዝ\" ተጋናኝቷል ከ አሁኑ ፎርም መቆጣጠሪያ ጋር: እና ከ ዳታቤዝ ሰንጠረዥ \"ደንበኞች\" ተገናኝቷል ከ \"ትእዛዝ\" ሰንጠረዥ: እርስዎ መጠቀም ይችላሉ የ SQL statement እንደሚከተለው:"
#: 01170102.xhp
msgctxt ""
@@ -5134,7 +5134,7 @@ msgctxt ""
"par_id3145295\n"
"help.text"
msgid "For list boxes, you can use value lists. Value lists are lists that define reference values. In this way, the control in the form does not directly display the content of a database field, but rather values assigned in the value list."
-msgstr "ለ ዝርዝር ሳጥኖች: እርስዎ የ ዋጋ ዝርዝሮች መጠቀም ይችላሉ: የ ዋጋ ዝርዝሮች የ ማመሳከሪያ ዋጋዎች ዝርዝሮች መግለጫ ናቸው: ስለዚህ የ ፎርም መቆጣጠሪያ በ ቀጥታ ይዞታዎችን አያሳይምከ ዳታቤዝ ሜዳ ውስጥ: ነገር ግን ዋጋዎች ይመድባል በ ዋጋ ዝርዝር ውስጥ"
+msgstr "ለ ዝርዝር ሳጥኖች: እርስዎ የ ዋጋ ዝርዝሮች መጠቀም ይችላሉ: የ ዋጋ ዝርዝሮች የ ማመሳከሪያ ዋጋዎች ዝርዝሮች መግለጫ ናቸው: ስለዚህ የ ፎርም መቆጣጠሪያ በ ቀጥታ ይዞታዎችን አያሳይም ከ ዳታቤዝ ሜዳ ውስጥ: ነገር ግን ዋጋዎች ይመድባል በ ዋጋ ዝርዝር ውስጥ"
#: 01170102.xhp
msgctxt ""
@@ -5190,7 +5190,7 @@ msgctxt ""
"par_id3148427\n"
"help.text"
msgid "The property <emph>Bound field</emph> is only for forms that are used to access more than one table. If the form is based on only one table, the field to be displayed in the form is specified directly under <emph>Data field</emph>. However, if you want the list box to display data from a table that is linked to the current table over a common data field, the linked data field is defined by the property <emph>Bound field</emph>."
-msgstr "የ ባህሪ <emph>ሜዳ መዝለያ</emph> ለ ፎርሞች ብቻ ነው የሚጠቅመው ከ አንድ በላይ ሰንጠረዥ ጋር የሚደርሱ: ፎርሙ መሰረት ካደረገ በ አንድ ሰንጠረዥ ላይ ብቻ: የሚታየው ሜዳ በ ፎርም ውስጥ ይወሰናል በ ቀጥታ በ <emph>ዳታ ሜዳ</emph> ውስጥ: ነገር ግን እርስዎ ዝርዝር ሳጥን እንዲያሳይ ከፈለጉ ዳታ ከ ሰንጠረዥ ውስጥ የተገናኘ ከ አሁኑ ሰንጠረዥ ጋር በ መደበኛ የ ዳታ ሜዳ: የ ተገናኘው የ ዳታ ሜዳ የሚገለጸው በ ባህሪ ነው በ <emph>ሜዳ መዝለያ</emph> ውስጥ"
+msgstr "የ ባህሪ <emph> ሜዳ መዝለያ </emph> ለ ፎርሞች ብቻ ነው የሚጠቅመው ከ አንድ በላይ ሰንጠረዥ ጋር የሚደርሱ: ፎርሙ መሰረት ካደረገ በ አንድ ሰንጠረዥ ላይ ብቻ: የሚታየው ሜዳ በ ፎርም ውስጥ ይወሰናል በ ቀጥታ ከ <emph> ዳታ ሜዳ </emph> ውስጥ: ነገር ግን እርስዎ ዝርዝር ሳጥን እንዲያሳይ ከፈለጉ ዳታ ከ ሰንጠረዥ ውስጥ የተገናኘ ከ አሁኑ ሰንጠረዥ ጋር በ መደበኛ የ ዳታ ሜዳ: የ ተገናኘው የ ዳታ ሜዳ የሚገለጸው በ ባህሪ ነው በ <emph> ሜዳ መዝለያ </emph> ውስጥ"
#: 01170102.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3145257\n"
"help.text"
msgid "The database field \"Field1\" is linked to the field specified under <emph>Data field</emph>."
-msgstr "የ ዳታቤዝ ሜዳ \"ሜዳ1\" ተገናኝቷል ከ ተወሰነ ሜዳ ጋር ከ <emph>ዳታ ሜዳ</emph>."
+msgstr "የ ዳታቤዝ ሜዳ \"ሜዳ1\" ተገናኝቷል ከ ተወሰነ ሜዳ ጋር ከ <emph> ዳታ ሜዳ </emph> ጋር"
#: 01170102.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_id3156064\n"
"help.text"
msgid "The database field \"Field2\" is linked to the field specified under <emph>Data field</emph>."
-msgstr "የ ዳታቤዝ ሜዳ \"ሜዳ2\" ተገናኝቷል ከ ተወሰነ ሜዳ ጋር ከ <emph>ዳታ ሜዳ</emph>."
+msgstr "የ ዳታቤዝ ሜዳ \"ሜዳ2\" ተገናኝቷል ከ ተወሰነ ሜዳ ጋር ከ <emph> ዳታ ሜዳ </emph>"
#: 01170102.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"par_id3154134\n"
"help.text"
msgid "If you selected \"Table\" under <emph>Type of list contents</emph>, the table structure defines the index to be specified. Example: If a database table is selected under <emph>List content</emph>, refer to the following table:"
-msgstr "እርስዎ ከ መረጡ \"ሰንጠረዥ\" ከ <emph>ከ ዝርዝር ይዞታዎች አይነት</emph> ውስጥ: የ ሰንጠረዥ አካል ይገልጻል የሚወሰነውን ማውጫ: ለምሳሌ: የ ዳታቤዝ ሰንጠረዥ ከ ተመረጠ ከ <emph>ዝርዝር ይዞታ</emph>ውስጥ የሚያመሳክረው የሚከተሉትን ሰንጠረዥ ነው:"
+msgstr "እርስዎ ከ መረጡ \"ሰንጠረዥ\" ከ <emph> ዝርዝር ይዞታዎች አይነት </emph> ውስጥ: የ ሰንጠረዥ አካል ይገልጻል የሚወሰነውን ማውጫ: ለምሳሌ: የ ዳታቤዝ ሰንጠረዥ ከ ተመረጠ ከ <emph> ዝርዝር ይዞታ </emph> ውስጥ የሚያመሳክረው የሚከተሉትን ሰንጠረዥ ነው:"
#: 01170102.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153326\n"
"help.text"
msgid "With the \"Valuelist\" option, all entries entered in the <emph>List entries</emph> field of the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab appear in the control. For database forms, you can use reference values (see the <link href=\"text/shared/02/01170102.xhp\" name=\" References Using Value Lists\"><emph>References Using Value Lists</emph></link> section)."
-msgstr "በ \"ዋጋ ዝርዝር\" ምርጫ ውስጥ: ሁሉም ያስገቡዋቸው ማስገቢያዎች በ <emph> ዝርዝር ማስገቢያ</emph> ሜዳ በ <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>ባጠቃላይ</emph></link> tab በ መቆጣጠሪያ ውስጥ ይታያል: ለ ዳታቤዝ ፎርሞች: እርስዎ መጠቀም ይችላሉ ማመሳከሪያ ዋጋዎች (ይህን ይመልከቱ <link href=\"text/shared/02/01170102.xhp\" name=\" References Using Value Lists\"><emph>ማመሳከሪያዎች በ መጠቀም የ ዋጋ ዝርዝር </emph></link> ክፍል)."
+msgstr "በ \"ዋጋ ዝርዝር\" ምርጫ ውስጥ: ሁሉም ያስገቡዋቸው ማስገቢያዎች በ <emph> ዝርዝር ማስገቢያ </emph> ሜዳ በ <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph> ባጠቃላይ </emph></link> tab በ መቆጣጠሪያ ውስጥ ይታያል: ለ ዳታቤዝ ፎርሞች: እርስዎ መጠቀም ይችላሉ ማመሳከሪያ ዋጋዎች (ይህን ይመልከቱ <link href=\"text/shared/02/01170102.xhp\" name=\" References Using Value Lists\"><emph> ማመሳከሪያዎች በ መጠቀም የ ዋጋ ዝርዝር </emph></link> ክፍል)"
#: 01170102.xhp
msgctxt ""
@@ -5486,7 +5486,7 @@ msgctxt ""
"par_id3154855\n"
"help.text"
msgid "In the data transfer of a selected entry from a list box or a combo box, both the list of the values displayed in the form, which was entered on the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab under <emph>List entries</emph>, and the value list entered on the <emph>Data</emph> tab under <emph>List content</emph>, are taken into consideration: If a (non-empty) text is at the selected position in the value list (<OPTION VALUE=...>), it will be transmitted. Otherwise, the text displayed in the (<OPTION>) control is sent."
-msgstr "ለ ተመረጠው ማስገቢያ ዳታ በሚያስተላልፉ ጊዜ ከ ዝርዝር ሳጥን ውስጥ ወይንም መቀላቀያ ሳጥን ውስጥ: ሁለቱም የ ዋጋዎች ዝርዝር ይታያሉ በ ፎርም ውስጥ: የገባው በ <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>ባጠቃላይ</emph></link> tab ስር <emph>ዝርዝር ማስገቢያዎች</emph> እና ዝርዝር ዋጋ ይገባል ከ <emph>ዳታ</emph> tab ስር <emph>ዝርዝር ማስገቢያ</emph> ይወሰዳሉ: ይህ (ምንም-ባዶ) ጽሁፍ ቢመረጥም በ ዋጋ ዝርዝር ውስጥ (<OPTION VALUE=...>): ይተላለፋል: ያለበለዚያ ጽሁፉ ይታያል እንደ (<OPTION>) መቆጣጠሪያ ሲላክ"
+msgstr "ለ ተመረጠው ማስገቢያ ዳታ በሚያስተላልፉ ጊዜ ከ ዝርዝር ሳጥን ውስጥ ወይንም መቀላቀያ ሳጥን ውስጥ: ሁለቱም የ ዋጋዎች ዝርዝር ይታያሉ በ ፎርም ውስጥ: የገባው በ <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph> ባጠቃላይ </emph></link> tab ስር <emph> ዝርዝር ማስገቢያዎች </emph> እና ዝርዝር ዋጋ ይገባል ከ <emph> ዳታ </emph> tab ስር <emph> ዝርዝር ማስገቢያ </emph> ይወሰዳሉ: ይህ (ምንም-ባዶ) ጽሁፍ ቢመረጥም በ ዋጋ ዝርዝር ውስጥ (<OPTION VALUE=...>): ይተላለፋል: ያለ በለዚያ ጽሁፉ ይታያል እንደ (<OPTION>) መቆጣጠሪያ ሲላክ"
#: 01170102.xhp
msgctxt ""
@@ -5494,7 +5494,7 @@ msgctxt ""
"par_id3163377\n"
"help.text"
msgid "If the value list is to contain an empty string, enter the value \"$$$empty$$$\" under <emph>List content</emph> at the corresponding position (note uppercase/lowercase). $[officename] interprets this input as an empty string and assigns it to the respective list entry."
-msgstr "የ ዋጋ ዝርዝር የያዘው ባዶ ሀረግ ከሆነ: ዋጋ ያስገቡ \"$$$ባዶ$$$\" ከ <emph>ዝርዝር ይዞታ</emph> ውስጥ: በ ተመሳሳይ ቦታ (ማስታወሻ በ አቢይ ፊደል/በ ትንሽ ፊደል). $[officename] ይህን ማስገቢያ እንደ ባዶ ይተረጉማል እና ይመድባል ወደ ተገቢው ዝርዝር ማስገቢያ"
+msgstr "የ ዋጋ ዝርዝር የያዘው ባዶ ሀረግ ከሆነ: ዋጋ ያስገቡ \"$$$ባዶ$$$\" ከ <emph> ዝርዝር ይዞታ </emph> ውስጥ: በ ተመሳሳይ ቦታ (ማስታወሻ በ ላይኛው ጉዳይ ፊደል/በ ታችኛው ጉዳይ ፊደል) $[officename] ይህን ማስገቢያ እንደ ባዶ ይተረጉማል እና ይመድባል ወደ ተገቢው ዝርዝር ማስገቢያ"
#: 01170102.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id3151221\n"
"help.text"
msgid "<variable id=\"filtervorschlag\"><ahelp hid=\"HID_PROP_FILTERPROPOSAL\">While designing your form, you can set the \"Filter proposal\" property for each text box in the <emph>Data</emph> tab of the corresponding <emph>Properties</emph> dialog. In subsequent searches in the filter mode, you can select from all information contained in these fields.</ahelp> The field content can then be selected using the AutoComplete function. Note, however, that this function requires a greater amount of memory space and time, especially when used in large databases and should therefore be used sparingly. </variable>"
-msgstr "<variable id=\"filtervorschlag\"><ahelp hid=\"HID_PROP_FILTERPROPOSAL\">እርስዎ ፎርም በሚያሰናዱ ጊዜ: እርስዎ ማሰናዳት ይችላሉ የ \"ማጣሪያ ማቅረቢያ\" ለ እያንዳንዱ የ ጽሁፍ ሳጥን ባህሪዎች ከ <emph> ዳታ </emph> tab ተመሳሳይ ውስጥ: <emph> ባህሪዎች </emph> ንግግር ውስጥ: በ ማጣሪያ ዘዴ በሚፈልጉ ጊዜ: እርስዎ መምረጥ ይችላሉ በዚህ ሜዳ ውስጥ ካሉ ሁሉም መረጃዎች ውስጥ </ahelp> የ ሜዳ ይዞታ መምረጥ ይቻላል በራሱ መጨረሻ ተግባር: ማስታወሻ: ነገር ግን ይህ ተግባር ብዙ ማስታወሻ እና ጊዜ ይፈልጋል: በተለይ ትልቅ የ ዳታቤዝ በሚጠቀሙ ጊዜ: እና ብዙ ጊዜ አዘውትረው አይጠቀሙ</variable>"
+msgstr "<variable id=\"filtervorschlag\"><ahelp hid=\"HID_PROP_FILTERPROPOSAL\">እርስዎ ፎርም በሚያሰናዱ ጊዜ: እርስዎ ማሰናዳት ይችላሉ የ \"ማጣሪያ ማቅረቢያ\" ለ እያንዳንዱ የ ጽሁፍ ሳጥን ባህሪዎች ከ <emph> ዳታ </emph> tab ተመሳሳይ ውስጥ: <emph> ባህሪዎች </emph> ንግግር ውስጥ: በ ማጣሪያ ዘዴ በሚፈልጉ ጊዜ: እርስዎ መምረጥ ይችላሉ በዚህ ሜዳ ውስጥ ካሉ ሁሉም መረጃዎች ውስጥ </ahelp> የ ሜዳ ይዞታ መምረጥ ይቻላል በራሱ መጨረሻ ተግባር: ማስታወሻ: ነገር ግን ይህ ተግባር ብዙ ማስታወሻ እና ጊዜ ይፈልጋል: በተለይ ትልቅ የ ዳታቤዝ በሚጠቀሙ ጊዜ: እና ብዙ ጊዜ አዘውትረው አይጠቀሙ </variable>"
#: 01170102.xhp
msgctxt ""
@@ -6574,7 +6574,7 @@ msgctxt ""
"bm_id3148643\n"
"help.text"
msgid "<bookmark_value>controls; events</bookmark_value> <bookmark_value>events; controls</bookmark_value> <bookmark_value>macros; assigning to events in forms</bookmark_value>"
-msgstr "<bookmark_value>መቆጣጠሪያዎች; ሁኔታዎች</bookmark_value> <bookmark_value>ሁኔታዎች; መቆጣጠሪያዎች</bookmark_value> <bookmark_value>macros; መመደቢያ ለ ሁኔታዎች በ ፎርሞች ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>መቆጣጠሪያዎች: ሁኔታዎች</bookmark_value> <bookmark_value>ሁኔታዎች: መቆጣጠሪያዎች</bookmark_value> <bookmark_value>ማክሮስ: መመደቢያ ለ ሁኔታዎች በ ፎርሞች ውስጥ</bookmark_value>"
#: 01170103.xhp
msgctxt ""
@@ -6590,7 +6590,7 @@ msgctxt ""
"par_id3152350\n"
"help.text"
msgid "On the<emph> Events </emph>tab page you can link macros to events that occur in a form's control fields."
-msgstr "በ<emph> ሁኔታዎች </emph>tab ገጽ ውስጥ እርስዎ ማገናኘት ይችላሉ macros ከ ሁኔታዎች ጋር የ ተፈጠሩ በ ፎርሞች መቆጣጠሪያ ሜዳዎች ውስጥ"
+msgstr "በ <emph> ሁኔታዎች </emph> tab ገጽ ውስጥ እርስዎ ማገናኘት ይችላሉ ማክሮስ ከ ሁኔታዎች ጋር የ ተፈጠሩ በ ፎርሞች መቆጣጠሪያ ሜዳዎች ውስጥ"
#: 01170103.xhp
msgctxt ""
@@ -6598,7 +6598,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "When the event occurs, the linked macro will be called. To assign a macro to an event, press the <emph>...</emph> button. The <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\">Assign Action</link> dialog opens."
-msgstr "ሁኔታው በሚፈጠር ጊዜ: የ ተገናኘው macro ይጠራል: የ macro ሁኔታ ለ መፈጸም: ይጫኑ የ <emph>...</emph> ቁልፍ: የ <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\"> ተግባር መፈጸሚያ </link> ንግግር ይከፈታል"
+msgstr "ሁኔታው በሚፈጠር ጊዜ: የ ተገናኘው ማክሮስ ይጠራል: የ ማክሮስ ሁኔታ ለ መፈጸም: ይጫኑ የ <emph>...</emph> ቁልፍ: የ <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\"> ተግባር መፈጸሚያ </link> ንግግር ይከፈታል"
#: 01170103.xhp
msgctxt ""
@@ -6622,7 +6622,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_APPROVEACTIONPERFORMED\">This event takes place before an action is triggered by clicking the control.</ahelp> For example, clicking a \"Submit\" button initiates a send action; however, the actual \"send\" process is started only when the <emph>When initiating</emph> event occurs. The <emph>Approve action</emph> event allows you to kill the process. If the linked method sends back FALSE, <emph>When initiating</emph> will not be executed."
-msgstr "<ahelp hid=\"HID_EVT_APPROVEACTIONPERFORMED\">ሁኔታው የ ተፈጸመው ተግባር ከ መጀመሩ በፊት ነው መቆጣጠሪያውን በ መጫን </ahelp> ለምሳሌ ይጫኑ የ \"ማቅረቢያ\" ቁልፍ የ መላኪያ ተግባር ያስነሳል: ነገር ግን ዋናው \"ማስገቢያ\" ሂደት የሚጀምረው በ <emph>ማስነሻ</emph> ሁኔታ ሲፈጠር ነው: የ <emph>ተግባር ማጽደቂያ</emph> ሁኔታ እርስዎን የሚያስችለው ሂደቱን ማስቆም ነው: የ ተገናኘው ዘዴ መልስ ይልካል ሀሰት <emph>በሚጀምር ጊዜ</emph> አይፈጸምም"
+msgstr "<ahelp hid=\"HID_EVT_APPROVEACTIONPERFORMED\">ሁኔታው የ ተፈጸመው ተግባር ከ መጀመሩ በፊት ነው መቆጣጠሪያውን በ መጫን </ahelp> ለምሳሌ ይጫኑ የ \"ማቅረቢያ\" ቁልፍ የ መላኪያ ተግባር ያስነሳል: ነገር ግን ዋናው \"ማስገቢያ\" ሂደት የሚጀምረው በ <emph> ማስነሻ </emph> ሁኔታ ሲፈጠር ነው: የ <emph> ተግባር ማጽደቂያ </emph> ሁኔታ እርስዎን የሚያስችለው ሂደቱን ማስቆም ነው: የ ተገናኘው ዘዴ መልስ ይልካል ሀሰት <emph> በሚጀምር ጊዜ </emph> አይፈጸምም"
#: 01170103.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"par_id3152940\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">The <emph>Key pressed </emph>event occurs when the user presses any key while the control has the focus.</ahelp> This event may be linked to a macro for checking entries."
-msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">የ <emph>ቁልፍ ተጭነዋል </emph>ሁኔታ የሚፈጸመው ተጠቃሚው ማንኛውንም ቁልፍ ሲጫን ነው መቆጣጠሪያው ትኩረት እንዳለው </ahelp> ይህ ሁኔታ ምናልባት የ ተገናኘ ነው ከ macro ማስገቢያዎች ጋር ለ መመርመር"
+msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">የ <emph> ቁልፍ ተጭነዋል </emph> ሁኔታው የሚፈጸመው ተጠቃሚው ማንኛውንም ቁልፍ ሲጫን ነው: መቆጣጠሪያው ትኩረት እንዳለው </ahelp> ይህ ሁኔታ ምናልባት የ ተገናኘ ነው ከ ማክሮስ ማስገቢያዎች ጋር ለ መመርመር"
#: 01170103.xhp
msgctxt ""
@@ -7182,7 +7182,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "The<emph> Events </emph>tab page, allows you to assign a macro to certain events which occur in a form."
-msgstr "በ<emph> ሁኔታዎች </emph>tab ገጽ: እርስዎን የሚያስችለው መመደብ ነው macro ለ አንዳንድ ሁኔታዎች በ ፎርም ውስጥ ለሚፈጠር"
+msgstr "በ <emph> ሁኔታዎች </emph> tab ገጽ: እርስዎን የሚያስችለው መመደብ ነው ማክሮስ ለ አንዳንድ ሁኔታዎች በ ፎርም ውስጥ ለሚፈጠር"
#: 01170202.xhp
msgctxt ""
@@ -7190,7 +7190,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "To link an event with a macro, first write a macro that contains all the commands to be executed when the event happens. Then assign this macro to the respective event by clicking the <emph>... </emph>button beside the corresponding event. The<emph> Assign Macro </emph>dialog opens, where you can select the macro."
-msgstr "ሁኔታ ለማገናኘት ከ macro ጋር: መጀመሪያ ይጻፉ macro ሁሉንም የሚፈጸሙ ትእዛዞች የያዘ ሁኔታው በሚሆን ጊዜ: እና ከዛ ይህን macro ይመድቡ ለ እያንዳንዱ ሁኔታ በ መጫን የ <emph>... </emph>ቁልፍ ተመሳሳይ ሁኔታ በ <emph> Macro መመደቢያ</emph>ንግግር ይከፈታል: እርስዎ macro መምረጥ የሚችሉበት"
+msgstr "ሁኔታ ለማገናኘት ከ ማክሮስ ጋር: መጀመሪያ ይጻፉ ማክሮስ ሁሉንም የሚፈጸሙ ትእዛዞች የያዘ ሁኔታው በሚሆን ጊዜ: እና ከዛ ይህን ማክሮስ ይመድቡ ለ እያንዳንዱ ሁኔታ በ መጫን የ <emph>... </emph> ቁልፍ ተመሳሳይ ሁኔታ በ <emph> ማክሮስ መመደቢያ </emph> ንግግር ይከፈታል: እርስዎ ማክሮስ መምረጥ የሚችሉበት"
#: 01170202.xhp
msgctxt ""
@@ -7254,7 +7254,7 @@ msgctxt ""
"par_id3150986\n"
"help.text"
msgid "The following lists and describes all events in a form that can be linked to a macro:"
-msgstr "የሚቀጥለው ዝርዝር እና ይገልጻል ሁሉንም ሁኔታዎች በ ፎርም ውስጥ ከ macro ጋር የሚገናኙ:"
+msgstr "የሚቀጥለው ዝርዝር እና ይገልጻል ሁሉንም ሁኔታዎች በ ፎርም ውስጥ ከ ማክሮስ ጋር የሚገናኙ:"
#: 01170202.xhp
msgctxt ""
@@ -7270,7 +7270,7 @@ msgctxt ""
"par_id3149669\n"
"help.text"
msgid "<ahelp hid=\".\">The Before update event occurs before the control content changed by the user is written into the data source.</ahelp> The linked macro can, for example, prevent this action by returning \"FALSE\"."
-msgstr "<ahelp hid=\".\">ከ ማሻሻያ ሁኔታ በፊት የ መቆጣጠሪያ ሁኔታዎች የሚቀየረው በ ተጠቃሚው ወደ ዳታ ምንጭ በ ተጻፈው መሰረት ነው </ahelp> የ ተገናኘው macro ይችላል: ለምሳሌ: ይህን ተግባር መከልከል ይችላል በ መመለስ \"ሀሰት\""
+msgstr "<ahelp hid=\".\">ከ ማሻሻያ ሁኔታ በፊት የ መቆጣጠሪያ ሁኔታዎች የሚቀየረው በ ተጠቃሚው ወደ ዳታ ምንጭ በ ተጻፈው መሰረት ነው </ahelp> የ ተገናኘው ማክሮስ ይችላል: ለምሳሌ: ይህን ተግባር መከልከል ይችላል በ መመለስ \"ሀሰት\""
#: 01170202.xhp
msgctxt ""
@@ -7302,7 +7302,7 @@ msgctxt ""
"par_id3155390\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_APPROVERESETTED\">The<emph> Prior to reset </emph>event occurs before a form is reset.</ahelp> The linked macro can, for example, prevent this action by returning \"FALSE\"."
-msgstr "<ahelp hid=\"HID_EVT_APPROVERESETTED\">የ<emph> እንደ ነበረ መመለሻ </emph>ሁኔታዎች ፎርም እንደ ነበር ከ መመለሱ በፊት </ahelp> የ ተገናኘው macro ይችላል: ለምሳሌ: ይህን ተግባር መከልከል ይችላል በ መመለስ \"ሀሰት\""
+msgstr "<ahelp hid=\"HID_EVT_APPROVERESETTED\">የ <emph> እንደ ነበረ መመለሻ </emph> ሁኔታዎች ፎርም እንደ ነበር ከ መመለሱ በፊት </ahelp> የ ተገናኘው ማክሮስ ይችላል: ለምሳሌ: ይህን ተግባር መከልከል ይችላል በ መመለስ \"ሀሰት\""
#: 01170202.xhp
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"par_id3154988\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_CONFIRMDELETE\">The<emph> Confirm deletion </emph>event occurs as soon as data has been deleted from the form.</ahelp> For example, the linked macro can request confirmation in a dialog."
-msgstr "<ahelp hid=\"HID_EVT_CONFIRMDELETE\">የ<emph> ማጥፊያ ማረጋገጫ </emph>ሁኔታ የሚፈጸመው ዳታ ከ ፎርም ውስጥ ወዲያውኑ እንደ ጠፋ ነው </ahelp> ለምሳለ: የ ተገናኘ macro ማረጋገጫ ይጠይቃል በ ንግግር ውስጥ"
+msgstr "<ahelp hid=\"HID_EVT_CONFIRMDELETE\">የ <emph> ማጥፊያ ማረጋገጫ </emph> ሁኔታ የሚፈጸመው ዳታ ከ ፎርም ውስጥ ወዲያውኑ እንደ ጠፋ ነው </ahelp> ለምሳለ: የ ተገናኘ ማክሮስ ማረጋገጫ ይጠይቃል በ ንግግር ውስጥ"
#: 01170202.xhp
msgctxt ""
@@ -7470,7 +7470,7 @@ msgctxt ""
"par_id3156007\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_APPROVEROWCHANGE\">The<emph> Before record action </emph>event occurs before the current record is changed.</ahelp> For example, the linked macro can request confirmation in a dialog."
-msgstr "<ahelp hid=\"HID_EVT_APPROVEROWCHANGE\">ከ<emph> መዝገብ ተግባር በፊት </emph>ሁኔታ የሚፈጸመው የ አሁኑ መዝገብ ከ መቀየሩ በፊት ነው </ahelp> ለምሳለ: የ ተገናኘ macro ማረጋገጫ ይጠይቃል በ ንግግር ውስጥ"
+msgstr "<ahelp hid=\"HID_EVT_APPROVEROWCHANGE\">ከ <emph> መዝገብ ተግባር በፊት </emph> ሁኔታ የሚፈጸመው የ አሁኑ መዝገብ ከ መቀየሩ በፊት ነው </ahelp> ለምሳለ: የ ተገናኘ ማክሮስ ማረጋገጫ ይጠይቃል በ ንግግር ውስጥ"
#: 01170202.xhp
msgctxt ""
@@ -7502,7 +7502,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_POSITIONING\">The<emph> Before record change </emph>event occurs before the current record pointer is changed.</ahelp> For example, the linked macro can prevent this action by returning \"FALSE\"."
-msgstr "<ahelp hid=\"HID_EVT_POSITIONING\">ከ<emph> መዝገብ መቀየሪያ በፊት </emph>ሁኔታ የሚፈጸመው የ አሁኑ መዝገብ መጠቆሚይ ከ መቀየሩ በፊት ነው </ahelp> ለምሳለ: የ ተገናኘ macro ይህን ተግባር ይከለክላል በ መመለስ\"ሀሰት\""
+msgstr "<ahelp hid=\"HID_EVT_POSITIONING\">ከ <emph> መዝገብ መቀየሪያ በፊት </emph> ሁኔታው የሚፈጸመው የ አሁኑ መዝገብ መጠቆሚይ ከ መቀየሩ በፊት ነው </ahelp> ለምሳለ: የ ተገናኘ ማክሮስ ይህን ተግባር ይከለክላል በ መመለስ\"ሀሰት\""
#: 01170202.xhp
msgctxt ""
@@ -7550,7 +7550,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Here :name is a parameter that must be filled out when loading. The parameter is automatically filled out from the parent form if possible. If the parameter cannot be filled out, this event is called and a linked macro can fill out the parameter."
-msgstr "እዚህ :ስም ደንብ ነው መሞላት ያለበት በሚጫን ጊዜ: ደቡ ራሱ በራሱ ይሞላል ወላጅ ፎርም የሚቻል ከሆነ: ደንቡን መሙላት ካልተቻለ: ይህ ሁኔታ ይጠራል እና ይገናኛል ከ macro ጋር እና ደንቡን ይሞላል"
+msgstr "እዚህ : ስም ደንብ ነው መሞላት ያለበት በሚጫን ጊዜ: ደቡ ራሱ በራሱ ይሞላል ወላጅ ፎርም የሚቻል ከሆነ: ደንቡን መሙላት ካልተቻለ: ይህ ሁኔታ ይጠራል እና ይገናኛል ከ ማክሮስ ጋር እና ደንቡን ይሞላል"
#: 01170202.xhp
msgctxt ""
@@ -7598,7 +7598,7 @@ msgctxt ""
"par_id3147242\n"
"help.text"
msgid "The<emph> Data </emph>tab page defines the form properties that refer to the database that is linked to the form."
-msgstr "የ<emph> ዳታ </emph>tab ገጽ የሚገልጸው የ ፎርም ባህሪዎች ነው: ወደ ዳታቤዝ የሚያመሳክሩ ከ ፎርም ጋር የ ተገናኙ"
+msgstr "የ <emph> ዳታ </emph> tab ገጽ የሚገልጸው የ ፎርም ባህሪዎች ነው: ወደ ዳታቤዝ የሚያመሳክሩ ከ ፎርም ጋር የ ተገናኙ"
#: 01170203.xhp
msgctxt ""
@@ -7638,7 +7638,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_CURSORSOURCE\">Determines the content to be used for the form. The content can be an existing table or a query (previously created in the database), or it can be defined by an SQL-statement. Before you enter a content you have to define the exact type in <emph>Content type</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_PROP_CURSORSOURCE\">በ ፎርም ውስጥ የሚጠቀሙትን ይዞታ መወሰኛ: ይዞታው የ ነበረ ሰንጠረዥ ወይንም ጥያቄ ሊሆን ይችላል (ቀደም ብሎ የ ተፈጠረ ከ ዳታቤዝ ውስጥ): ወይንም መግለጽ ይቻላል በ SQL-አረፍተ ነገር: እርስዎ ይዞታ ከ ማስገባትዎ በፊት መግለጽ አለብዎት ትክክለኛውን አይነት በ <emph>ይዞታ አይነት</emph>.</ahelp> ውስጥ"
+msgstr "<ahelp hid=\"HID_PROP_CURSORSOURCE\">በ ፎርም ውስጥ የሚጠቀሙትን ይዞታ መወሰኛ: ይዞታው የ ነበረ ሰንጠረዥ ወይንም ጥያቄ ሊሆን ይችላል (ቀደም ብሎ የ ተፈጠረ ከ ዳታቤዝ ውስጥ): ወይንም መግለጽ ይቻላል በ SQL-አረፍተ ነገር: እርስዎ ይዞታ ከ ማስገባትዎ በፊት መግለጽ አለብዎት ትክክለኛውን አይነት በ <emph> ይዞታ አይነት </emph></ahelp> ውስጥ"
#: 01170203.xhp
msgctxt ""
@@ -7646,7 +7646,7 @@ msgctxt ""
"par_id3149657\n"
"help.text"
msgid "If you have selected either \"Table\" or \"Query\" in <emph>Content type</emph>, the box lists all the tables and queries set up in the selected database."
-msgstr "እርስዎ ከ መረጡ ከ ሁለቱ አንዱን \"ሰንጠረዥ\" ወይንም \"ጥያቄ\" በ <emph>ይዞታ አይነት</emph>, የ ሳጥን ዝርዝር ውስጥ በ ተመረጠው ዳታቤዝ ውስጥ ሁሉንም የ ሰንጠረዦች እና የ ጥያቄዎች ማሰናጃ"
+msgstr "እርስዎ ከ መረጡ ከ ሁለቱ አንዱን \"ሰንጠረዥ\" ወይንም \"ጥያቄ\" በ <emph> ይዞታ አይነት </emph> የ ሳጥን ዝርዝር ውስጥ በ ተመረጠው ዳታቤዝ ውስጥ ሁሉንም የ ሰንጠረዦች እና የ ጥያቄዎች ማሰናጃ"
#: 01170203.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_ESCAPE_PROCESSING\">Specifies whether the SQL statement is to be analyzed by %PRODUCTNAME.</ahelp> If set to Yes, you can click the <emph>...</emph> button next to the <emph>Content</emph> list box. This will open a window where you can graphically create a database query. When you close that window, the SQL statement for the created query will be inserted in the <emph>Content</emph> list box."
-msgstr "<ahelp hid=\"HID_PROP_ESCAPE_PROCESSING\">መወሰኛ የ SQL አረፍተ ነገር ይምረመር እንደሆን በ %PRODUCTNAME.</ahelp> ወደ አዎ ከ ተሰናዳ እርስዎ መጫን ይችላሉ የ <emph>...</emph> ቁልፍ አጠገብ ያለውን በ <emph>ይዞታ</emph> ዝርዝር ሳጥን ውስጥ: ይህ መስኮት ይከፍታል እርስዎ የ ዳታቤዝ ጥያቄ ንድፍ በ መጠቀም የሚፈጥሩበት: ይህን መስኮት ሲዘጉ: የ SQL አረፍተ ነገር ለ ተፈጠረው ጥያቄ ይገባል በ <emph>ይዞታ</emph> ሳጥን ውስጥ:"
+msgstr "<ahelp hid=\"HID_PROP_ESCAPE_PROCESSING\">መወሰኛ የ SQL አረፍተ ነገር ይምረመር እንደሆን በ %PRODUCTNAME.</ahelp> ወደ አዎ ከ ተሰናዳ እርስዎ መጫን ይችላሉ የ <emph>...</emph> ቁልፍ አጠገብ ያለውን በ <emph> ይዞታ </emph> ዝርዝር ሳጥን ውስጥ: ይህ መስኮት ይከፍታል እርስዎ የ ዳታቤዝ ጥያቄ ንድፍ በ መጠቀም የሚፈጥሩበት: ይህን መስኮት ሲዘጉ: የ SQL አረፍተ ነገር ለ ተፈጠረው ጥያቄ ይገባል በ <emph> ይዞታ </emph> ሳጥን ውስጥ:"
#: 01170203.xhp
msgctxt ""
@@ -7734,7 +7734,7 @@ msgctxt ""
"par_id3156444\n"
"help.text"
msgid "The appropriate icons on the <link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\"><emph>Form Navigation</emph> Bar</link> can be used in User mode to sort: <link href=\"text/shared/02/12010000.xhp\" name=\"Sort Ascending\"><emph>Sort Ascending</emph></link>, <link href=\"text/shared/02/12020000.xhp\" name=\"Sort Descending\"><emph>Sort Descending</emph></link>, <link href=\"text/shared/02/12100100.xhp\" name=\"Sort\"><emph>Sort</emph></link>."
-msgstr "ተገቢውን ምልክት በ <link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\"><emph>ፎርም መቃኛ</emph> መደርደሪያ</link> ላይ መጠቀም ይችላሉ: በ ተጠቃሚ ዘዴ መለያ: <link href=\"text/shared/02/12010000.xhp\" name=\"Sort Ascending\"><emph>መለያ እየጨመረ በሚሄድ</emph></link>, <link href=\"text/shared/02/12020000.xhp\" name=\"Sort Descending\"><emph>መለያ እየቀነሰ በሚሄድ</emph></link>, <link href=\"text/shared/02/12100100.xhp\" name=\"Sort\"><emph>መለያ</emph></link>."
+msgstr "ተገቢውን ምልክት በ <link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\"><emph> ፎርም መቃኛ </emph> መደርደሪያ </link> ላይ መጠቀም ይችላሉ: በ ተጠቃሚ ዘዴ መለያ: <link href=\"text/shared/02/12010000.xhp\" name=\"Sort Ascending\"><emph> መለያ እየጨመረ በሚሄድ </emph></link>: <link href=\"text/shared/02/12020000.xhp\" name=\"Sort Descending\"><emph> መለያ እየቀነሰ በሚሄድ </emph></link>: <link href=\"text/shared/02/12100100.xhp\" name=\"Sort\"><emph> መለያ </emph></link>"
#: 01170203.xhp
msgctxt ""
@@ -7942,7 +7942,7 @@ msgctxt ""
"par_id3147339\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_MASTERFIELDS\">If you create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>, enter the data field of the parent form responsible for the synchronization between parent and subform.</ahelp> To enter multiple values, press Shift + Enter after each input line."
-msgstr "<ahelp hid=\"HID_PROP_MASTERFIELDS\">እርስዎ ከ ፈጠሩ <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">ንዑስ ፎርም</link> የ ዳታ ሜዳ ያስገቡ ለ ወላጅ ፎርም ሀላፊ ለሆነው ማዋሀጃ በ ወላጅ እና በ ንዑስ ፎርም መካከል </ahelp> በርካታ ዋጋዎች ለማስገባት ይጫኑ Shift + ማስገቢያ ከ እያንዳንዱ ማስገቢያ መስመር በኋላ"
+msgstr "<ahelp hid=\"HID_PROP_MASTERFIELDS\">እርስዎ ከ ፈጠሩ <link href=\"text/shared/02/01170203.xhp\" name=\"subform\"> ንዑስ ፎርም </link> የ ዳታ ሜዳ ያስገቡ ለ ወላጅ ፎርም ሀላፊ ለሆነው ማዋሀጃ በ ወላጅ እና በ ንዑስ ፎርም መካከል </ahelp> በርካታ ዋጋዎች ለማስገባት ይጫኑ Shift + ማስገቢያ ከ እያንዳንዱ ማስገቢያ መስመር በኋላ"
#: 01170203.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_id3149568\n"
"help.text"
msgid "The subform is based on an <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\">SQL</link> query; more specifically, on a <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Parameter Query\">Parameter Query</link>. If a field name is entered in the <emph>Link master fields</emph> box, the data contained in that field in the main form is read to a variable that you must enter in <emph>Link slave fields</emph>. In an appropriate SQL statement, this variable is compared to the table data that the subform refers to. Alternatively, you can enter the column name in the <emph>Link master fields</emph> box."
-msgstr "የ ንዑስ ፎርም መሰረት ያደረገው የ <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\">SQL</link> ጥያቄ ነው: በ ተለይ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Parameter Query\">ደንቦች ጥያቄ</link> ላይ ነው: የ ሜዳ ስም ካስገቡ በ <emph>ዋናው ሜዳዎች አገናኝ </emph> ሳጥን ውስጥ: በዛ ሜዳ ውስጥ ያለው ዳታ በ ዋናው ፎርም ውስጥ ይነበባል ለ ተለዋዋጭ እርስዎ ለሚያስገቡት በ <emph>አገልጋይ ሜዳዎች አገናኝ </emph>ውስጥ: በ ተገቢው የ SQL አረፍተ ነገር ውስጥ: ይህ ተላዋዋጭ ይወዳደራል ከ ሰንጠረዥ ዳታ ጋር ንዑስ ፎርም ከ ሚያመሳክረው ጋር: በ አማራጭ: እርስዎ ማስገባት ይችላሉ የ አምድ ስም በ <emph>ዋናው ሜዳዎች አገናኝ </emph> ሳጥን ውስጥ:"
+msgstr "የ ንዑስ ፎርም መሰረት ያደረገው የ <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\"> SQL </link> ጥያቄ ነው: በ ተለይ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Parameter Query\"> ደንቦች ጥያቄ </link> ላይ ነው: የ ሜዳ ስም ካስገቡ በ <emph> ዋናው ሜዳዎች አገናኝ </emph> ሳጥን ውስጥ: በዛ ሜዳ ውስጥ ያለው ዳታ በ ዋናው ፎርም ውስጥ ይነበባል ለ ተለዋዋጭ እርስዎ ለሚያስገቡት በ <emph> አገልጋይ ሜዳዎች አገናኝ </emph> ውስጥ: በ ተገቢው የ SQL አረፍተ ነገር ውስጥ: ይህ ተላዋዋጭ ይወዳደራል ከ ሰንጠረዥ ዳታ ጋር ንዑስ ፎርም ከ ሚያመሳክረው ጋር: በ አማራጭ: እርስዎ ማስገባት ይችላሉ የ አምድ ስም በ <emph> ዋናው ሜዳዎች አገናኝ </emph> ሳጥን ውስጥ:"
#: 01170203.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"par_id3151017\n"
"help.text"
msgid "The database table on which the form is based is, for example, a customer database (\"Customer\"), where every customer has been given a unique number in a data field named \"Cust_ID\". A customer's orders are maintained in another database table. You now want to see each customer's orders after entering them into the form. In order to do this you should create a subform. Under <emph>Link master fields</emph> enter the data field from the customer database which clearly identifies the customer, that is, Cust_ID. Under <emph>Link slave fields</emph> enter the name of a variable which is to accept the data of the field Cust_ID, for example, x."
-msgstr "የ ዳታቤዝ ሰንጠረዥ ፎርሙ መሰረት ያደረገው: ለምሳሌ: የ ደንበኛ ዳታቤዝ (\"ደንበኛ\"): እያንዳንዱ ደንበኛ የ ተለየ ቁጥር የ ተሰጠው የ ዳታ ሜዳ ውስጥ የ ተሰየመው \"ደንበኛ_መለያ\": የ ደንበኞች ትእዛዝ አስተዳዳሪ በ ሌላ የ ዳታቤዝ ሰንጤረዥ ውስጥ ነው: እርስዎ የ እያንዳንዱን ደንበኛ ትእዛዝ ማየት ከፈለጉ ፎርም ውስጥ ከ ገባ በኋላ: ይህን ለማድረግ እርስዎ ንዑስ ፎርም መፍጠር አለብዎት: በ <emph>ዋናው አገናኝ ሜዳ </emph> ውስጥ ያስገቡ የ ዳታ ሜዳ ከ ደንበኛ ዳታቤዝ ውስጥ ደንበኛውን በትክክል በሚለይ: ይህ ማለት: ደንበኛ_መለያ: በ <emph>አገልጋይ ሜዳዎች አገናኝ</emph> ውስጥ ያስገቡ ስም ለ ተለዋዋጭ ዳታ የሚቀበል የ ሜዳ ደንበኛ_መለያ: ለምሳሌ: x."
+msgstr "የ ዳታቤዝ ሰንጠረዥ ፎርሙ መሰረት ያደረገው: ለምሳሌ: የ ደንበኛ ዳታቤዝ (\"ደንበኛ\"): እያንዳንዱ ደንበኛ የ ተለየ ቁጥር የ ተሰጠው የ ዳታ ሜዳ ውስጥ የ ተሰየመው \"ደንበኛ_መለያ\": የ ደንበኞች ትእዛዝ አስተዳዳሪ በ ሌላ የ ዳታቤዝ ሰንጤረዥ ውስጥ ነው: እርስዎ የ እያንዳንዱን ደንበኛ ትእዛዝ ማየት ከፈለጉ ፎርም ውስጥ ከ ገባ በኋላ: ይህን ለማድረግ እርስዎ ንዑስ ፎርም መፍጠር አለብዎት: በ <emph> ዋናው አገናኝ ሜዳ </emph> ውስጥ ያስገቡ የ ዳታ ሜዳ ከ ደንበኛ ዳታቤዝ ውስጥ ደንበኛውን በትክክል በሚለይ: ይህ ማለት: ደንበኛ_መለያ: በ <emph> አገልጋይ ሜዳዎች አገናኝ </emph> ውስጥ ያስገቡ ስም ለ ተለዋዋጭ ዳታ የሚቀበል የ ሜዳ ደንበኛ_መለያ: ለምሳሌ: x."
#: 01170203.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_id3153541\n"
"help.text"
msgid "If you add fields to a form and you switch off the <link href=\"text/shared/02/01170500.xhp\" name=\"Design Mode\">Design Mode</link>, you can see that $[officename] adds a labeled input field for every inserted database field."
-msgstr "እርስዎ በ ፎርም ውስጥ ሜዳዎች ከ ጨመሩ እና እርስዎ ካጠፉ የ <link href=\"text/shared/02/01170500.xhp\" name=\"Design Mode\">ንድፍ ዘዴ</link> ለ እርስዎ ይታያል የ $[officename] መጨመሪያ ምልክት የ ተደረገበት ሜዳ ለ እያንዳንዱ ለሚገባው የ ዳታቤዝ ሜዳ"
+msgstr "እርስዎ በ ፎርም ውስጥ ሜዳዎች ከ ጨመሩ እና እርስዎ ካጠፉ የ <link href=\"text/shared/02/01170500.xhp\" name=\"Design Mode\"> ንድፍ ዘዴ </link> ለ እርስዎ ይታያል የ $[officename] መጨመሪያ ምልክት የ ተደረገበት ሜዳ ለ እያንዳንዱ ለሚገባው የ ዳታቤዝ ሜዳ"
#: 01170500.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\".uno:SwitchControlDesignMode\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
-msgstr "<ahelp hid=\".uno:SwitchControlDesignMode\">የ ንድፍ ዘዴ ማብሪያ ወይንም ማጥፊያ መቀያየሪያ: ይህ ተግባር የሚጠቅመው በፍጥነት ለ መቀየር ነው በ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\"> ንድፍ </link> እና የተጠቃሚ ዘዴ መካከል: ያስነሱ ለ ማረም የ ፎርም መቆጣጠሪያዎች ያስቦዝኑ የ ፎርም መቆጣጠሪያዎች ለመጠቀም </ahelp>"
+msgstr "<ahelp hid=\".uno:SwitchControlDesignMode\">የ ንድፍ ዘዴ ማብሪያ ወይንም ማጥፊያ መቀያየሪያ: ይህ ተግባር የሚጠቅመው በፍጥነት ለ መቀየር ነው በ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\"> ንድፍ </link> እና የተጠቃሚ ዘዴ መካከል: ያስነሱ ለ ማረም የ ፎርም መቆጣጠሪያዎች ያቦዝኑ የ ፎርም መቆጣጠሪያዎች ለመጠቀም </ahelp>"
#: 01170500.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "If your form is linked to a database and you turn off the Design mode, the <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">Form Bar</link> is displayed at the lower margin of the document window. You can edit the link to the database in the <link href=\"text/shared/02/01170201.xhp\" name=\"Form Properties\">Form Properties</link>."
-msgstr "የ እርስዎ ፎርም ከ ዳታቤዝ ጋር የ ተገናኘ ከሆነ እና እርስዎ የ ንድፍ ዘዴ ካጠፉ: የ <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">ፎርም መደርደሪያ</link> ይታያል በ ታችኛው መስመር በኩል በ ሰነድ መስኮት ውስጥ: እርስዎ ማረም ይችላሉ አገናኝ ወደ ዳታቤዝ በ <link href=\"text/shared/02/01170201.xhp\" name=\"Form Properties\">ፎርም ባህሪዎች</link>ውስጥ"
+msgstr "የ እርስዎ ፎርም ከ ዳታቤዝ ጋር የ ተገናኘ ከሆነ እና እርስዎ የ ንድፍ ዘዴ ካጠፉ: የ <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\"> ፎርም መደርደሪያ </link> ይታያል በ ታችኛው መስመር በኩል በ ሰነድ መስኮት ውስጥ: እርስዎ ማረም ይችላሉ አገናኝ ወደ ዳታቤዝ በ <link href=\"text/shared/02/01170201.xhp\" name=\"Form Properties\"> ፎርም ባህሪዎች </link> ውስጥ"
#: 01170600.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_NEW\">Adds new elements to the form. The<emph> Add </emph>function can only be called if a form is selected in the <emph>Form Navigator</emph>.</ahelp>"
-msgstr "<ahelp hid=\"SID_FM_NEW\">አዲስ አካላቶች ወደ ፎርም ውስጥ መጨመሪያ: የ<emph> መጨመሪያ </emph>ተግባር መጥራት የሚቻለው ፎርም ከ ተመረጠ ብቻ ነው በ <emph>ፎርም መቃኛ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SID_FM_NEW\">አዲስ አካላቶች ወደ ፎርም ውስጥ መጨመሪያ: የ <emph> መጨመሪያ </emph> ተግባር መጥራት የሚቻለው ፎርም ከ ተመረጠ ብቻ ነው በ <emph> ፎርም መቃኛ </emph></ahelp> ውስጥ"
#: 01170600.xhp
msgctxt ""
@@ -8430,7 +8430,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_NEW_HIDDEN\">Creates a hidden control in the selected form that is not displayed on the screen. A hidden control serves to include data that is transmitted together with the form.</ahelp> It contains additional information or clarifying text that you can specify when creating the form through the <link href=\"text/shared/02/01170101.xhp\" name=\"Special Properties\">Special Properties</link> of the control. Select the entry of the hidden control in the <emph>Form Navigator</emph> and select the <emph>Properties</emph> command."
-msgstr "<ahelp hid=\"SID_FM_NEW_HIDDEN\">የ ተደበቀ መቆጣጠሪያ መፍጠሪያ ለ ተመረጠው ፎርም በ መመልከቻው ላይ ለማይታየው: የ ተደበቀ መቆጣጠሪያ የሚያገለግለው አብረው የሚተላለፍ ዳታ ለማካተት ነው በ ፍሮም ውስጥ </ahelp> ተጨማሪ መረጀ ይይዛል ወይንም መግለጫ ጽሁፍ እርስዎ የሚገልጹት ፎርም በሚፈጥሩ ጊዜ በ <link href=\"text/shared/02/01170101.xhp\" name=\"Special Properties\"> የ ተለዩ ባህሪዎች </link> መቆጣጠሪያ: ይምረጡ የ ተደበቀ መቆጣጠሪያ ማስገቢያ በ <emph> ፎርም መቃኛ </emph> ውስጥ እና ይምረጡ የ <emph> ባህሪዎች </emph> ትእዛዝ."
+msgstr "<ahelp hid=\"SID_FM_NEW_HIDDEN\">የ ተደበቀ መቆጣጠሪያ መፍጠሪያ ለ ተመረጠው ፎርም በ መመልከቻው ላይ ለማይታየው: የ ተደበቀ መቆጣጠሪያ የሚያገለግለው አብረው የሚተላለፍ ዳታ ለማካተት ነው በ ፍሮም ውስጥ </ahelp> ተጨማሪ መረጀ ይይዛል ወይንም መግለጫ ጽሁፍ እርስዎ የሚገልጹት ፎርም በሚፈጥሩ ጊዜ በ <link href=\"text/shared/02/01170101.xhp\" name=\"Special Properties\"> የ ተለዩ ባህሪዎች </link> መቆጣጠሪያ: ይምረጡ የ ተደበቀ መቆጣጠሪያ ማስገቢያ በ <emph> ፎርም መቃኛ </emph> ውስጥ እና ይምረጡ የ <emph> ባህሪዎች </emph> ትእዛዝ:"
#: 01170600.xhp
msgctxt ""
@@ -8638,7 +8638,7 @@ msgctxt ""
"par_id3146797\n"
"help.text"
msgid "During exporting, the default script language will be defined based on the first module found in macro management. For events, only one language can be used per document."
-msgstr "በሚላክ ጊዜ ነባር የ ጽሁፍ ቋንቋ ይገለጻል የ መጀመሪያውን ክፍል መሰረት ባደረገ በ ተገኘው የ macro አስተዳዳሪ: ለ ሁኔታዎች አንድ ቋንቋ ብቻ ነው በ ሰነድ ውስጥ መጠቀም የሚችሉት"
+msgstr "በሚላክ ጊዜ ነባር የ ጽሁፍ ቋንቋ ይገለጻል የ መጀመሪያውን ክፍል መሰረት ባደረገ በ ተገኘው የ ማክሮስ አስተዳዳሪ: ለ ሁኔታዎች አንድ ቋንቋ ብቻ ነው በ ሰነድ ውስጥ መጠቀም የሚችሉት"
#: 01170800.xhp
msgctxt ""
@@ -9230,7 +9230,7 @@ msgctxt ""
"par_id3146130\n"
"help.text"
msgid "<ahelp hid=\".uno:OpenReadOnly\">Opens forms in <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design Mode\">Design Mode</link> so that the form can be edited.</ahelp>"
-msgstr "<ahelp hid=\".uno:OpenReadOnly\">መክፋቻ ፎርሞች በ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design Mode\">ንድፍ ዘዴ</link> ፎርሙን ማረም እንዲቻል</ahelp>"
+msgstr "<ahelp hid=\".uno:OpenReadOnly\">መክፋቻ ፎርሞች በ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design Mode\"> ንድፍ ዘዴ </link> ፎርሙን ማረም እንዲቻል </ahelp>"
#: 01171000.xhp
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "To reset the selected objects to the default paragraph style, select <emph>Clear formatting</emph>. Select <emph>More Styles</emph> to open the Styles and Formatting window."
-msgstr "የ ተመረጠውን እቃ ወደ ነባሩ እንደ ነበር ለ መመለስ ይምረጡ <emph>አቀራረብ ማጽጃ </emph> ይምረጡ <emph>ተጨማሪ ዘዴዎች</emph> የ ዘዴዎች እና አቀራረብ መስኮት ለ መክፈት"
+msgstr "የ ተመረጠውን እቃ ወደ ነባሩ እንደ ነበር ለ መመለስ ይምረጡ <emph> አቀራረብ ማጽጃ </emph> ይምረጡ <emph> ተጨማሪ ዘዴዎች </emph> የ ዘዴዎች እና አቀራረብ መስኮት ለ መክፈት"
#: 02010000.xhp
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "<variable id=\"vorschautext\">You can see the name of the fonts formatted in their respective font if you mark the <emph>Preview in fonts lists</emph> field in <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\">$[officename] - View</link> in the Options dialog box.</variable>"
-msgstr "<variable id=\"vorschautext\">እርስዎ ማየት ይችላሉ የ ፊደሎች አቀራረብ ስም የ ተዛመዱ ፊደሎች እርስዎ ምልክት ካደረጉ በ <emph>ቅድመ እይታ በ ፊደሎች ዝርዝር </emph> ሜዳ ውስጥ <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\">$[officename] - መመልከቻ</link> በ ምርጫ ንግግር ሳጥን ውስጥ</variable>"
+msgstr "<variable id=\"vorschautext\">እርስዎ ማየት ይችላሉ የ ፊደሎች አቀራረብ ስም የ ተዛመዱ ፊደሎች እርስዎ ምልክት ካደረጉ በ <emph> ቅድመ እይታ በ ፊደሎች ዝርዝር </emph> ሜዳ ውስጥ <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\">$[officename] - መመልከቻ </link> በ ምርጫ ንግግር ሳጥን ውስጥ </variable>"
#: 02020000.xhp
msgctxt ""
@@ -10006,7 +10006,7 @@ msgctxt ""
"par_id3154927\n"
"help.text"
msgid "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applies the current highlight color to the background of a text selection. If no text is selected, click the <emph>Highlight Color</emph> icon, select the text that you want to highlight, and then click the <emph>Highlight Color</emph> icon again. To change the highlight color, click the arrow next to the <emph>Highlight Color</emph> icon, and then click the color that you want.</ahelp></variable>"
-msgstr "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">የ አሁኑን ማድመቂያ ቀለም ወደ ተመረጠው ጽሁፍ መደብ መፈጸሚያ: ምንም ጽሁፍ ካልተመረጠ: ይጫኑ የ <emph>ማድመቂያ</emph> ምልክት: ማድመቅ የሚፈልጉትን ጽሁፍ ይምረጡ እና ከዛ ይጫኑ የ <emph>ማድመቂያ</emph> ምልክት እንደገና: የ ማድመቂያ ቀለም ለ መቀየር: ይጫኑ ቀስት አጠገብ ያለውን <emph>ማድመቂያ</emph> ምልክት እና ይጫኑ እርስዎ የሚፈልጉትን ቀለም</ahelp></variable>"
+msgstr "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">የ አሁኑን ማድመቂያ ቀለም ወደ ተመረጠው ጽሁፍ መደብ መፈጸሚያ: ምንም ጽሁፍ ካልተመረጠ: ይጫኑ የ <emph> ማድመቂያ </emph> ምልክት: ማድመቅ የሚፈልጉትን ጽሁፍ ይምረጡ እና ከዛ ይጫኑ የ <emph> ማድመቂያ </emph> ምልክት እንደገና: የ ማድመቂያ ቀለም ለ መቀየር: ይጫኑ ቀስት አጠገብ ያለውን <emph> ማድመቂያ </emph> ምልክት እና ይጫኑ እርስዎ የሚፈልጉትን ቀለም </ahelp></variable>"
#: 02160000.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_id3153114\n"
"help.text"
msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link> section of the Help."
-msgstr "ለ በለጠ መረጃ ይህን ይመልከቱ <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">ድንበሮች</link> ክፍል በ እርዳታ ውስጥ"
+msgstr "ለ በለጠ መረጃ ይህን ይመልከቱ <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"> ድንበሮች </link> ክፍል በ እርዳታ ውስጥ"
#: 03150000.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"par_id3154317\n"
"help.text"
msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link> section in the Help."
-msgstr "ለ በለጠ መረጃ ይህን ይመልከቱ <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">ድንበሮች</link> ክፍል በ እርዳታ ውስጥ"
+msgstr "ለ በለጠ መረጃ ይህን ይመልከቱ <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"> ድንበሮች </link> ክፍል በ እርዳታ ውስጥ"
#: 03200000.xhp
msgctxt ""
@@ -10438,7 +10438,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "Further information about the anchoring is contained in the <link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\"><emph>Anchoring</emph></link> Help section."
-msgstr "ለ በለጠ መረጃ ስለ ማስቆሚያ ይህን ይመልከቱ <link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\"><emph>ማስቆሚያ</emph></link> ክፍል በ እርዳታ ውስጥ"
+msgstr "ለ በለጠ መረጃ ስለ ማስቆሚያ ይህን ይመልከቱ <link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\"><emph> ማስቆሚያ </emph></link> ክፍል በ እርዳታ ውስጥ"
#: 04210000.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3149283\n"
"help.text"
msgid "If you have numbered paragraphs and click the<emph> Move Up </emph>icon, the numbers will be adjusted to the current order. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Move Up </emph>icon is only visible when the cursor is positioned in a bulleted or numbered list.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The <emph>Move Up </emph>icon appears on the <emph>Text Formatting</emph> Bar when you use the outline view.</caseinline></switchinline>"
-msgstr "እርስዎ ቁጥር የተሰጣቸው አንቀጾች ካለዎት ይጫኑ<emph> ወደ ላይ ማንቀሳቀሻ </emph>ምልክት: ቁጥሮቹ ይስተካከላሉ ወደ አሁኑ ደንብ <switchinline select=\"appl\"><caseinline select=\"WRITER\">የ <emph> ወደ ላይ ማንቀሳቀሻ </emph>ምልክት የሚታየው መጠቆሚያውን በ ነጥብ እና ቁጥር የተሰጣቸው እቃዎች ዝርዝር ላይ ሲያደርጉ ነው:</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">የ <emph> ወደ ላይ ማንቀሳቀሻ </emph> ምልክት የሚታየው በ <emph>ጽሁፍ አቀራረብ </emph> መደርደሪያ ላይ ነው: የሚታየው በ ረቂቅ መመልከቻ ሲሰሩ ነው</caseinline></switchinline>"
+msgstr "እርስዎ ቁጥር የተሰጣቸው አንቀጾች ካለዎት ይጫኑ <emph> ወደ ላይ ማንቀሳቀሻ </emph> ምልክት: ቁጥሮቹ ይስተካከላሉ ወደ አሁኑ ደንብ <switchinline select=\"appl\"><caseinline select=\"WRITER\"> የ <emph> ወደ ላይ ማንቀሳቀሻ </emph> ምልክት የሚታየው መጠቆሚያውን በ ነጥብ እና ቁጥር የተሰጣቸው እቃዎች ዝርዝር ላይ ሲያደርጉ ነው: </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> የ <emph> ወደ ላይ ማንቀሳቀሻ </emph> ምልክት የሚታየው በ <emph> ጽሁፍ አቀራረብ </emph> መደርደሪያ ላይ ነው: የሚታየው በ ረቂቅ መመልከቻ ሲሰሩ ነው </caseinline></switchinline>"
#: 06100000.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3158405\n"
"help.text"
msgid "If you have numbered paragraphs and click the<emph> Move Down </emph>icon, the numbers will be adjusted to the current order. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Move Down </emph>icon is only visible when the cursor is positioned in a bulleted or numbered list. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The <emph>Move Down </emph>icon appears on the <emph>Text Formatting</emph> Bar when you use the outline view. </caseinline></switchinline>"
-msgstr "እርስዎ ቁጥር የተሰጣቸው አንቀጾች ካለዎት ይጫኑ<emph> ወደ ታች ማንቀሳቀሻ </emph>ምልክት: ቁጥሮቹ ይስተካከላሉ ወደ አሁኑ ደንብ <switchinline select=\"appl\"><caseinline select=\"WRITER\">የ <emph> ወደ ታች ማንቀሳቀሻ </emph>ምልክት የሚታየው መጠቆሚያውን በ ነጥብ እና ቁጥር የተሰጣቸው እቃዎች ዝርዝር ላይ ሲያደርጉ ነው:</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">የ <emph> ወደ ታች ማንቀሳቀሻ </emph> ምልክት የሚታየው በ <emph>ጽሁፍ አቀራረብ </emph> መደርደሪያ ላይ ነው: የሚታየው በ ረቂቅ መመልከቻ ሲሰሩ ነው</caseinline></switchinline>"
+msgstr "እርስዎ ቁጥር የተሰጣቸው አንቀጾች ካለዎት ይጫኑ <emph> ወደ ታች ማንቀሳቀሻ </emph> ምልክት: ቁጥሮቹ ይስተካከላሉ ወደ አሁኑ ደንብ <switchinline select=\"appl\"><caseinline select=\"WRITER\"> የ <emph> ወደ ታች ማንቀሳቀሻ </emph> ምልክት የሚታየው መጠቆሚያውን በ ነጥብ እና ቁጥር የተሰጣቸው እቃዎች ዝርዝር ላይ ሲያደርጉ ነው: </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> የ <emph> ወደ ታች ማንቀሳቀሻ </emph> ምልክት የሚታየው በ <emph> ጽሁፍ አቀራረብ </emph> መደርደሪያ ላይ ነው: የሚታየው በ ረቂቅ መመልከቻ ሲሰሩ ነው </caseinline></switchinline>"
#: 06110000.xhp
msgctxt ""
@@ -11054,7 +11054,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<ahelp hid=\"HID_HELP_TEXT_SELECTION_MODE\">You can enable a selection cursor in a read-only text document or in the Help. Choose <emph>Edit - Select Text </emph>or open the context menu of a read-only document and choose <emph>Select Text</emph>. The selection cursor does not blink.</ahelp>"
-msgstr "<ahelp hid=\"HID_HELP_TEXT_SELECTION_MODE\">እርስዎ ማስቻል ይችላሉ የ መጠቆሚያ መምረጫ ለ ንባብ-ብቻ ጽሁፍ ሰነድ ውስጥ ወይንም በ እርዳታ ውስጥ: ይምረጡ <emph>ማረሚያ - ጽሁፍ መምረጫ </emph>ወይንም መክፈቻ የ አገባብ ዝርዝር ለ ንባብ-ብቻ ጽሁፍ ሰነድ እና ይምረጡ <emph>ጽሁፍ መምረጫ</emph> የ ተመረጠው መጠቆሚያ ብልጭ ድርግም አይልም </ahelp>"
+msgstr "<ahelp hid=\"HID_HELP_TEXT_SELECTION_MODE\">እርስዎ ማስቻል ይችላሉ የ መጠቆሚያ መምረጫ ለ ንባብ-ብቻ ጽሁፍ ሰነድ ውስጥ ወይንም በ እርዳታ ውስጥ: ይምረጡ <emph> ማረሚያ - ጽሁፍ መምረጫ </emph> ወይንም መክፈቻ የ አገባብ ዝርዝር ለ ንባብ-ብቻ ጽሁፍ ሰነድ እና ይምረጡ <emph> ጽሁፍ መምረጫ </emph> የ ተመረጠው መጠቆሚያ ብልጭ ድርግም አይልም </ahelp>"
#: 07070100.xhp
msgctxt ""
@@ -11078,7 +11078,7 @@ msgctxt ""
"bm_id3144740\n"
"help.text"
msgid "<bookmark_value>read-only documents; database tables on/off </bookmark_value><bookmark_value>protected database tables</bookmark_value><bookmark_value>data; read-only</bookmark_value>"
-msgstr "<bookmark_value>ለ ንባብ-ብቻ ሰነዶች; የ ዳታቤዝ ሰንጠረዥ ማብሪያ/ማጥፊያ </bookmark_value><bookmark_value>የሚጠበቅ ዳታቤዝ ሰንጠረዥ</bookmark_value><bookmark_value>ዳታ; ለ ንባብ-ብቻ</bookmark_value>"
+msgstr "<bookmark_value>ለ ንባብ-ብቻ ሰነዶች: የ ዳታቤዝ ሰንጠረዥ ማብሪያ/ማጥፊያ </bookmark_value><bookmark_value> የሚጠበቅ ዳታቤዝ ሰንጠረዥ </bookmark_value><bookmark_value> ዳታ: ለ ንባብ-ብቻ </bookmark_value>"
#: 07070100.xhp
msgctxt ""
@@ -11086,7 +11086,7 @@ msgctxt ""
"par_id3144740\n"
"help.text"
msgid "<ahelp hid=\".\">Turns the edit mode for the current database table on or off.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ አሁኑ ዳታቤዝ ሰንጠረዥ ማረሚያ ማብሪያ ወይንም ማጥፊያ</ahelp>"
+msgstr "<ahelp hid=\".\">ለ አሁኑ ዳታቤዝ ሰንጠረዥ ማረሚያ ማብሪያ ወይንም ማጥፊያ </ahelp>"
#: 07070100.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"bm_id3163829\n"
"help.text"
msgid "<bookmark_value>records; saving</bookmark_value>"
-msgstr "<bookmark_value>መመዝገቢያ; ማስቀመጫውን</bookmark_value>"
+msgstr "<bookmark_value>መመዝገቢያ: ማስቀመጫውን</bookmark_value>"
#: 07070200.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the current database table record.</ahelp> The<emph> Save Record </emph>icon is found on the <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>"
-msgstr "<ahelp hid=\".\">የ አሁኑን ዳታቤዝ መዝገብ ማስቀመጫ</ahelp> የ<emph> መዝገብ ማስቀመጫ </emph>ምልክት የሚገኘው በ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">ሰንጠረዥ ዳታ መደርደሪያ</link>"
+msgstr "<ahelp hid=\".\">የ አሁኑን ዳታቤዝ መዝገብ ማስቀመጫ </ahelp> የ <emph> መዝገብ ማስቀመጫ </emph> ምልክት የሚገኘው በ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\"> ሰንጠረዥ ዳታ መደርደሪያ </link>"
#: 07070200.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>Assign Macro</emph> dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <emph> Macro መመደቢያ </emph> ንግግር ውስጥ: እርስዎ ሁኔታዎችን እንደ \"አይጥ በ እቃ ላይ\" ወይንም \"hyperlink ማስጀመሪያ\" የ ራሳቸውን ፕሮግራም ኮዶች የሚሰጡበት </ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ <emph> ማክሮስ መመደቢያ </emph> ንግግር ውስጥ: እርስዎ ሁኔታዎችን እንደ \"አይጥ በ እቃ ላይ\" ወይንም \"hyperlink ማስጀመሪያ\" የ ራሳቸውን ፕሮግራም ኮዶች የሚሰጡበት </ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -12190,7 +12190,7 @@ msgctxt ""
"par_id3144740\n"
"help.text"
msgid "<ahelp hid=\".uno:DSBrowserExplorer\">Turns on and off the view of the data source explorer.</ahelp> The <emph>Explorer On/Off</emph> icon is visible on the <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
-msgstr "<ahelp hid=\".uno:DSBrowserExplorer\">የ ዳታ ምንጭ መቃኛ መመልከቻ ማብሪያ እና ማጥፊያ</ahelp> የ <emph>መቃኛ ማብሪያ/ማጥፊያ</emph> ምክት የሚታየው በ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">ሰንጠረዥ ዳታ መደርደሪያ</link>."
+msgstr "<ahelp hid=\".uno:DSBrowserExplorer\">የ ዳታ ምንጭ መቃኛ መመልከቻ ማብሪያ እና ማጥፊያ </ahelp> የ <emph> መቃኛ ማብሪያ/ማጥፊያ </emph> ምክት የሚታየው በ <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\"> ሰንጠረዥ ዳታ መደርደሪያ </link>"
#: 12000000.xhp
msgctxt ""
@@ -12254,7 +12254,7 @@ msgctxt ""
"par_id5943479\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to add/edit/remove a database file from the list of registered databases. The same dialog opens by choosing <emph>%PRODUCTNAME Base - Databases</emph> in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ንግግር መክፈቻ የ ዳታቤዝ ፋይል ለ መጨመር/ለ ማረም/ለ ማስወገድ ከ ተመዘገበ የ ዳታቤዝ ዝርዝር ውስጥ: ተመሳሳይ ንግግር ይከፈታል በ መምረጥ የ <emph>%PRODUCTNAME Base - ዳታቤዞች</emph> በ ምርጫ ንግግር ሳጥን ውስጥ </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ንግግር መክፈቻ የ ዳታቤዝ ፋይል ለ መጨመር/ለ ማረም/ለ ማስወገድ ከ ተመዘገበ የ ዳታቤዝ ዝርዝር ውስጥ: ተመሳሳይ ንግግር ይከፈታል በ መምረጥ የ <emph>%PRODUCTNAME ቤዝ - ዳታቤዞች </emph> በ ምርጫ ንግግር ሳጥን ውስጥ </ahelp>"
#: 12010000.xhp
msgctxt ""
@@ -12414,7 +12414,7 @@ msgctxt ""
"par_id3153577\n"
"help.text"
msgid "You can remove the current AutoFilter with the <link href=\"text/shared/02/12040000.xhp\" name=\"Reset Filter/Sorting\">Reset Filter/Sorting</link> icon or with <emph>Data - Filter - Reset Filter</emph>."
-msgstr "እርስዎ የ አሁኑን በራሱ ማጣሪያ ማስወገድ ይቻላሉ በ <link href=\"text/shared/02/12040000.xhp\" name=\"Reset Filter/Sorting\">እንደ ነበር መመለሻ ማጣሪያ/መለያ</link> ምልክት ወይንም በ <emph>ዳታ - ማጣሪያ - እንደ ነበር መመለሻ ማጣሪያ</emph>."
+msgstr "እርስዎ የ አሁኑን በራሱ ማጣሪያ ማስወገድ ይችላሉ በ <link href=\"text/shared/02/12040000.xhp\" name=\"Reset Filter/Sorting\"> እንደ ነበር መመለሻ ማጣሪያ/መለያ </link> ምልክት ወይንም ከ <emph> ዳታ - ማጣሪያ - እንደ ነበር መመለሻ ማጣሪያ </emph>"
#: 12030000.xhp
msgctxt ""
@@ -12518,7 +12518,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<emph>Refresh</emph> - Displays the refreshed contents of the database table."
-msgstr "<emph>ማነቃቂያ</emph> - ከ ዳታቤዝ ሰንጠረዥ ውስጥ የ ተነቃቃውን ይዞታ ማሳያ"
+msgstr "<emph>ማነቃቂያ </emph> - ከ ዳታቤዝ ሰንጠረዥ ውስጥ የ ተነቃቃውን ይዞታ ማሳያ"
#: 12050000.xhp
msgctxt ""
@@ -12526,7 +12526,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<emph>Rebuild</emph> - <ahelp hid=\"HID_BROWSER_REFRESH_REBUILDVIEW\">Rebuilds the view of the database table. Use this command when you have changed the structure of the table.</ahelp>"
-msgstr "<emph>እንደገና መገንቢያ</emph> - <ahelp hid=\"HID_BROWSER_REFRESH_REBUILDVIEW\">እንደገና መገንቢያ መመልከቻ የ ዳታቤዝ ሰንጠረዥ: ይህን ትእዛዝ ይጠቀሙ የ ሰንጠረዡን አካል በሚቀይሩ ጊዜ </ahelp>"
+msgstr "<emph>እንደገና መገንቢያ </emph> - <ahelp hid=\"HID_BROWSER_REFRESH_REBUILDVIEW\"> እንደገና መገንቢያ መመልከቻ የ ዳታቤዝ ሰንጠረዥ: ይህን ትእዛዝ ይጠቀሙ የ ሰንጠረዡን አካል በሚቀይሩ ጊዜ </ahelp>"
#: 12070000.xhp
msgctxt ""
@@ -12590,7 +12590,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The preferences you set in the<emph> Insert Database Columns </emph>dialog are saved and will be active the next time the dialog is called. This save process is independent of the database and can record the preferences for a maximum of 5 databases.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ያሰናዱት ምርጫ በ <emph> ዳታቤዝ አምዶች ማስገቢያ </emph>ንግግር ውስጥ እና ይቀመጣል እና ንቁ ይሆናል በሚቀጥለው ጊዜ ንግግሩ ሲጠራ: ይህ የ ማስቀመጫ ሂደት ነፃ ነው ከ ዳታቤዝ እና ይመዘግባል ምርጫዎችን ለ ከፍተኛ 5 ዳታቤዞች </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ያሰናዱት ምርጫ በ <emph> ዳታቤዝ አምዶች ማስገቢያ </emph> ንግግር ውስጥ እና ይቀመጣል እና ንቁ ይሆናል በሚቀጥለው ጊዜ ንግግሩ ሲጠራ: ይህ የ ማስቀመጫ ሂደት ነፃ ነው ከ ዳታቤዝ እና ይመዘግባል ምርጫዎችን ለ ከፍተኛ 5 ዳታቤዞች </caseinline></switchinline>"
#: 12070000.xhp
msgctxt ""
@@ -12622,7 +12622,7 @@ msgctxt ""
"bm_id3156183\n"
"help.text"
msgid "<bookmark_value>database contents; inserting as tables</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ ይዞታዎች; ማስገቢያ እንደ ሰንጠረዥ</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ ይዞታዎች: ማስገቢያ እንደ ሰንጠረዥ</bookmark_value>"
#: 12070100.xhp
msgctxt ""
@@ -12646,7 +12646,7 @@ msgctxt ""
"par_id3152918\n"
"help.text"
msgid "In the <emph>Table</emph> area, use the arrow keys to select the columns of the database table that you want to apply to the text table."
-msgstr "በ <emph>ሰንጠረዥ</emph> ቦታ: የ ቀስት ቁልፍ ይጠቀሙ የ ዳታቤዝ ሰንጠረዥ አምዶች ለ መምረጥ እርስዎ የ ጽሁፍ ሰንጠረዥ ይዞታውን ማስገባት ወደሚፈልጉበት"
+msgstr "በ <emph> ሰንጠረዥ </emph> ቦታ ውስጥ: የ ቀስት ቁልፍ ይጠቀሙ የ ዳታቤዝ ሰንጠረዥ አምዶች ለ መምረጥ እርስዎ የ ጽሁፍ ሰንጠረዥ ይዞታውን ማስገባት ወደሚፈልጉበት"
#: 12070100.xhp
msgctxt ""
@@ -12662,7 +12662,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabledbcols\">Specifies the database columns to be inserted into the text table.</ahelp> All database table columns that have not been accepted in the <emph>Table column(s)</emph> list box are listed here. The entries are sorted alphabetically."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabledbcols\">ወደ ጽሁፍ ሰንጠረዥ የሚገባውን የ ዳታቤዝ አምድ መወሰኛ: </ahelp> ሁሉም የ ዳታቤዝ ሰንጠረዥ አምዶች ተቀባይነት ያለገኙ: በ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ውስጥ ከታች በኩል ተዘርዝረዋል: ማስገቢያው የሚለየው በ ፊደል ቅደም ተከተል ነው"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabledbcols\">ወደ ጽሁፍ ሰንጠረዥ የሚገባውን የ ዳታቤዝ አምድ መወሰኛ: </ahelp> ሁሉም የ ዳታቤዝ ሰንጠረዥ አምዶች ተቀባይነት ያለገኙ: በ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ዝርዝር ሳጥን ውስጥ ከታች በኩል ተዘርዝረዋል: ማስገቢያው የሚለየው በ ፊደል ቅደም ተከተል ነው"
#: 12070100.xhp
msgctxt ""
@@ -12678,7 +12678,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tablecols\">Lists all database columns to be inserted into the document.</ahelp> A column will be assigned to each corresponding entry in the table. The entry order in the <emph>Table column(s)</emph> list box determines the data order in the text table."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tablecols\">ሁሉም ወደ ዳታቤዝ አምዶች የሚገቡት ዝርዝር ወደ ሰነድ ውስጥ</ahelp> አምድ ይመደባል ለ እያንዳንዱ ተመሳሳይ ማስገቢያ በ ሰንጠረዥ ውስጥ: የ ማስገቢያ ደንብ በ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ይወስናል የ ዳታ ቅደም ተከተል በ ጽሁፍ ሰንጠረዥ ውስጥ"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tablecols\">ሁሉም ወደ ዳታቤዝ አምዶች የሚገቡት ዝርዝር ወደ ሰነድ ውስጥ</ahelp> አምድ ይመደባል ለ እያንዳንዱ ተመሳሳይ ማስገቢያ በ ሰንጠረዥ ውስጥ: የ ማስገቢያ ደንብ በ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ዝርዝር ሳጥን ይወስናል የ ዳታ ቅደም ተከተል በ ጽሁፍ ሰንጠረዥ ውስጥ"
#: 12070100.xhp
msgctxt ""
@@ -12694,7 +12694,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves all listed database fields into the <emph>Table column(s)</emph> list box.</ahelp> All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">ሁሉንም የ ዳታቤዝ ሜዳዎች ዝርዝር ማንቀሳቀሻ ወደ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ውስጥ</ahelp> ሁሉም የ ሜዳዎች ዝርዝር በ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ወደ ሰነዱ ውስጥ ይገባሉ"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">ሁሉንም የ ዳታቤዝ ሜዳዎች ዝርዝር ማንቀሳቀሻ ወደ <emph> ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ውስጥ </ahelp> ሁሉም የ ሜዳዎች ዝርዝር በ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ዝርዝር ሳጥን ውስጥ ወደ ሰነዱ ይገባሉ"
#: 12070100.xhp
msgctxt ""
@@ -12710,7 +12710,7 @@ msgctxt ""
"par_id3153662\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves the selected database field into the <emph>Table column(s)</emph> list box. </ahelp> You can also double click an entry to move it to the <emph>Table column(s)</emph> list box. All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">ሁሉንም የ ዳታቤዝ ሜዳዎች ዝርዝር ማንቀሳቀሻ ወደ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ውስጥ </ahelp> እንዲሁም ይችላሉ ሁለት ጊዜ በ መጫን ማስገቢያውን ለ ማንቀሳቀስ ወደ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ሁሉም የ ሜዳዎች ዝርዝር በ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ወደ ሰነዱ ውስጥ ይገባሉ"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">ሁሉንም የ ዳታቤዝ ሜዳዎች ዝርዝር ማንቀሳቀሻ ወደ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ዝርዝር ሳጥን ውስጥ </ahelp> እንዲሁም ይችላሉ ሁለት ጊዜ በ መጫን ማስገቢያውን ለ ማንቀሳቀስ ወደ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ሁሉም የ ሜዳዎች ዝርዝር በ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ዝርዝር ሳጥን ወደ ሰነዱ ውስጥ ይገባሉ"
#: 12070100.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allleft\">Removes all database fields from the <emph>Table column(s)</emph> list box.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allleft\">ሁሉንም የ ዳታቤዝ ሜዳ ማስወገጃ ከ <emph>ሰንጠረዥ አምድ(ዶች)</emph> ዝርዝር ሳጥን ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allleft\">ሁሉንም የ ዳታቤዝ ሜዳ ማስወገጃ ከ <emph> ሰንጠረዥ አምድ(ዶች) </emph> ዝርዝር ሳጥን ውስጥ </ahelp>"
#: 12070100.xhp
msgctxt ""
@@ -12798,7 +12798,7 @@ msgctxt ""
"par_id3144511\n"
"help.text"
msgid "If the format you want is not listed, select \"Other Formats...\" and define the desired format in the <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Number Format</emph></link> dialog."
-msgstr "እርስዎ የሚፈልጉት አቀራረብ በ ዝርዝር ውስጥ ከሌለ ይምረጡ \"ሌላ አቀራረብ...\" እና ይግለጹ የሚፈልጉትን አቀራረብ በ <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>ቁጥር አቀራረብ</emph></link> ንግግር ውስጥ"
+msgstr "እርስዎ የሚፈልጉት አቀራረብ በ ዝርዝር ውስጥ ከሌለ ይምረጡ \"ሌላ አቀራረብ...\" እና ይግለጹ የሚፈልጉትን አቀራረብ በ <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph> ቁጥር አቀራረብ </emph></link> ንግግር ውስጥ"
#: 12070100.xhp
msgctxt ""
@@ -12806,7 +12806,7 @@ msgctxt ""
"par_id3154282\n"
"help.text"
msgid "The number format assigned using the selection list always refers to the database field selected in the <emph>Database columns</emph> list box."
-msgstr "ለ መጠቀም የ ተመደበው የ ቁጥር አቀራረብ ምርጫ ዝርዝር ሁልጊዜ የሚያመለክተው የ ዳታቤዝ ነው የ ተመረጠውን ከ <emph>ዳታቤዝ አምዶች</emph> ዝርዝር ሳጥን ውስጥ"
+msgstr "ለ መጠቀም የ ተመደበው የ ቁጥር አቀራረብ ምርጫ ዝርዝር ሁልጊዜ የሚያመለክተው የ ዳታቤዝ ነው የ ተመረጠውን ከ <emph> ዳታቤዝ አምዶች </emph> ዝርዝር ሳጥን ውስጥ"
#: 12070100.xhp
msgctxt ""
@@ -12862,7 +12862,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/rowonly\">Inserts an empty heading line into the text table.</ahelp> Using the<emph> Create row only </emph>option, you can define headings in the document, which do not correspond to the database field names."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/rowonly\">ባዶ የ ራስጌ መስመር ወደ ጽሁፍ ሰንጠረዥ ውስጥ ማስገቢያ </ahelp> በ መጠቀም የ <emph> ረድፍ ብቻ መፍጠሪያ </emph>ምርጫ ውስጥ: እርስዎ መግለጽ ይችላሉ ራስጌዎች በ ሰነድ ውስጥ: ከ ዳታቤዝ ሜዳ ስሞች ጋር አይስማም"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/rowonly\">ባዶ የ ራስጌ መስመር ወደ ጽሁፍ ሰንጠረዥ ውስጥ ማስገቢያ </ahelp> በ መጠቀም የ <emph> ረድፍ ብቻ መፍጠሪያ </emph> ምርጫ ውስጥ: እርስዎ መግለጽ ይችላሉ ራስጌዎች በ ሰነድ ውስጥ: ከ ዳታቤዝ ሜዳ ስሞች ጋር አይስማማም"
#: 12070100.xhp
msgctxt ""
@@ -12918,7 +12918,7 @@ msgctxt ""
"bm_id3149987\n"
"help.text"
msgid "<bookmark_value>database contents; inserting as fields</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ ይዞታዎች; ማስገቢያ እንደ ሰንጠረዥ</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ ይዞታዎች: ማስገቢያ እንደ ሰንጠረዥ</bookmark_value>"
#: 12070200.xhp
msgctxt ""
@@ -12926,7 +12926,7 @@ msgctxt ""
"par_id3149987\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">Inserts data selected from the data source browser into the document as fields.</ahelp> In the <emph>Insert Database Columns</emph> dialog, select the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\">Fields</link> to insert the selected data into the document as fields. These <link href=\"text/swriter/01/04090006.xhp\" name=\"database fields\">database fields</link> work as wildcards for the individual database columns and can be used for form letters. Click the <link href=\"text/shared/02/12080000.xhp\" name=\"Data to Fields\"><emph>Data to Fields</emph></link> icon to match the contents of the fields to the currently selected record."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">የ ተመረጠውን ዳታ ከ ዳታ ምንጭ መቃኛ ወደ ሰነድ እንደ ሜዳዎች ማስገቢያ: </ahelp> በ <emph> የ ዳታቤዝ አምዶች ማስገቢያ </emph> ንግግር: ይምረጡ የ <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"> ሜዳዎች </link> የ ተመረጠውን ዳታ ወደ ሰነድ እንደ ሜዳዎች ማስገቢያ: እነዚህ <link href=\"text/swriter/01/04090006.xhp\" name=\"database fields\"> የ ዳታቤዝ ሜዳዎች </link> ይሰራሉ እንደ ሁለ ገብ ለ እያንዳንዱ ዳታቤዝ አምዶች እና ለ ደብዳቤዎች ፎርም መጠቀም ይችላሉ: ይጫኑ የ <link href=\"text/shared/02/12080000.xhp\" name=\"Data to Fields\"><emph> ዳታ ወደ ሜዳዎች </emph></link> ምልክት የ ሜዳውን ይዞታ ለ ማመሳሰል አሁን ከ ተመረጠው መዝገብ ጋር"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">የ ተመረጠውን ዳታ ከ ዳታ ምንጭ መቃኛ ወደ ሰነድ እንደ ሜዳዎች ማስገቢያ: </ahelp> በ <emph> የ ዳታቤዝ አምዶች ማስገቢያ </emph> ንግግር: ይምረጡ በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"> ሜዳዎች </link> የ ተመረጠውን ዳታ ወደ ሰነድ እንደ ሜዳዎች ማስገቢያ: እነዚህ <link href=\"text/swriter/01/04090006.xhp\" name=\"database fields\"> የ ዳታቤዝ ሜዳዎች </link> ይሰራሉ እንደ ሁለ ገብ ለ እያንዳንዱ ዳታቤዝ አምዶች እና ለ ደብዳቤዎች ፎርም መጠቀም ይችላሉ: ይጫኑ <link href=\"text/shared/02/12080000.xhp\" name=\"Data to Fields\"><emph> ዳታ ወደ ሜዳዎች </emph></link> ምልክት የ ሜዳውን ይዞታ ለ ማመሳሰል አሁን ከ ተመረጠው መዝገብ ጋር"
#: 12070200.xhp
msgctxt ""
@@ -12942,7 +12942,7 @@ msgctxt ""
"par_id3145090\n"
"help.text"
msgid "The <emph>Insert Database Columns</emph> dialog lets you define which database fields to insert into the document and how to format the paragraphs."
-msgstr "የ <emph>ዳታቤዝ አምዶች ማስገቢያ</emph> ንግግር: እርስዎን መግለጽ ያስችሎታል የትኞቹ የ ዳታቤዝ ሜዳዎች ወደ ሰነድ እንደሚገቡ: እና አንቀጾች እንዴት እንደሚቀርቡ"
+msgstr "የ <emph> ዳታቤዝ አምዶች ማስገቢያ </emph> ንግግር: እርስዎን መግለጽ ያስችሎታል የትኞቹ የ ዳታቤዝ ሜዳዎች ወደ ሰነድ እንደሚገቡ: እና አንቀጾች እንዴት እንደሚቀርቡ"
#: 12070200.xhp
msgctxt ""
@@ -13046,7 +13046,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>database contents; inserting as text</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ ይዞታዎች; ማስገቢያ እንደ ሰንጠረዥ</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ ይዞታዎች: ማስገቢያ እንደ ሰንጠረዥ</bookmark_value>"
#: 12070300.xhp
msgctxt ""
@@ -13054,7 +13054,7 @@ msgctxt ""
"par_id3143284\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/astext\" visibility=\"hidden\">Inserts data selected from the data source browser into the document as text.</ahelp> If you select the <emph>Text</emph> option in the <emph>Insert Database Columns</emph> dialog, the content of the data selected in the data source browser is inserted into the document as text. In the dialog, you can decide which database fields or columns are transferred, and how the text is formatted."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/astext\" visibility=\"hidden\">የ ተመረጠውን ዳታ ማስገቢያ ከ ዳታ ምንጭ መቃኛ ውስጥ ወደ ሰነድ እንደ ጽሁፍ: </ahelp> እርስዎ ከ መረጡ የ <emph>ጽሁፍ</emph> ምርጫ ከ<emph>ዳታቤዝ አምዶች ማስገቢያ</emph> ንግግር ውስጥ: የ ተመረጠው ዳታ ይዞታ ከ ዳታ ምንጭ መቃኛ ውስጥ ይገባል ወደ ሰነድ ውስጥ እንደ ጽሁፍ: በ ንግግር ውስጥ እርስዎ መወሰን ይችላሉ የትኛው የ ዳታቤዝ ሜዳዎች ወይንም አምዶች እንደሚተላለፉ: እና ጽሁፍ እንዴት እንደሚቀርብ"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/astext\" visibility=\"hidden\">የ ተመረጠውን ዳታ ማስገቢያ ከ ዳታ ምንጭ መቃኛ ውስጥ ወደ ሰነድ እንደ ጽሁፍ: </ahelp> እርስዎ ከ መረጡ የ <emph> ጽሁፍ </emph> ምርጫ ከ <emph> ዳታቤዝ አምዶች ማስገቢያ </emph> ንግግር ውስጥ: የ ተመረጠው ዳታ ይዞታ ከ ዳታ ምንጭ መቃኛ ውስጥ ይገባል ወደ ሰነድ ውስጥ እንደ ጽሁፍ: በ ንግግር ውስጥ እርስዎ መወሰን ይችላሉ የትኛው የ ዳታቤዝ ሜዳዎች ወይንም አምዶች እንደሚተላለፉ: እና ጽሁፍ እንዴት እንደሚቀርብ"
#: 12070300.xhp
msgctxt ""
@@ -13078,7 +13078,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "In the <emph>Text</emph> area, use the arrow button to select the database table columns into which you want to insert field contents."
-msgstr "በ <emph>ሜዳዎች</emph> ቦታ: ይምረጡ የ ቀስት ቁልፍ የ ዳታቤዝ ሰንጠረዥ አምዶች ለ መምረጥ እርስዎ የ ሜዳ ይዞታውን ማስገባት ወደሚፈልጉበት"
+msgstr "በ <emph> ሜዳዎች </emph> ቦታ ውስጥ: ይምረጡ የ ቀስት ቁልፍ የ ዳታቤዝ ሰንጠረዥ አምዶች ለ መምረጥ እርስዎ የ ሜዳ ይዞታውን ማስገባት ወደሚፈልጉበት"
#: 12080000.xhp
msgctxt ""
@@ -13102,7 +13102,7 @@ msgctxt ""
"par_id3150476\n"
"help.text"
msgid "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Updates the contents of the existing database fields by the marked records.</ahelp> The <emph>Data to Fields </emph>icon is only available if the current document is a text document."
-msgstr "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">ምልክት የ ተደረገበትን መዝገብ ከ ነበረው ዳታቤዝ ሜዳ ይዞታ ውስጥ ማሻሻያ </ahelp> የ <emph>ዳታ ወደ ሜዳዎች </emph>ምልክት ዝግጁ የሚሆነው የ አሁኑ ሰነድ የ ጽሁፍ ሰነድ ብቻ ሲሆን ነው"
+msgstr "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">ምልክት የ ተደረገበትን መዝገብ ከ ነበረው ዳታቤዝ ሜዳ ይዞታ ውስጥ ማሻሻያ </ahelp> የ <emph> ዳታ ወደ ሜዳዎች </emph> ምልክት ዝግጁ የሚሆነው የ አሁኑ ሰነድ የ ጽሁፍ ሰነድ ብቻ ሲሆን ነው"
#: 12080000.xhp
msgctxt ""
@@ -13134,7 +13134,7 @@ msgctxt ""
"bm_id3109850\n"
"help.text"
msgid "<bookmark_value>default filters, see standard filters</bookmark_value> <bookmark_value>databases; standard filters</bookmark_value> <bookmark_value>standard filters;databases</bookmark_value>"
-msgstr "<bookmark_value>ነባር ማጣሪያዎች: ይህን ይመልከቱ መደበኛ ማጣሪያ </bookmark_value> <bookmark_value>ዳታቤዝ: መደበኛ ማጣሪያ </bookmark_value> <bookmark_value>መደበኛ ማጣሪያ: ዳታቤዝ</bookmark_value>"
+msgstr "<bookmark_value>ነባር ማጣሪያዎች: ይህን ይመልከቱ መደበኛ ማጣሪያ </bookmark_value> <bookmark_value>ዳታቤዝ: መደበኛ ማጣሪያ</bookmark_value> <bookmark_value>መደበኛ ማጣሪያ: ዳታቤዝ</bookmark_value>"
#: 12090000.xhp
msgctxt ""
@@ -13190,7 +13190,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "To remove the current filter, click <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sorting\"><emph>Reset Filter/Sorting</emph></link> icon."
-msgstr "የ አሁኑን ማጣሪያ ለ ማስወገድ: ይጫኑ <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sorting\"><emph>እንደ ነበር መመለሻ ማጣሪያ/መለያ</emph></link> ምልክት."
+msgstr "የ አሁኑን ማጣሪያ ለ ማስወገድ: ይጫኑ <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sorting\"><emph> እንደ ነበር መመለሻ ማጣሪያ/መለያ </emph></link> ምልክት"
#: 12090000.xhp
msgctxt ""
@@ -13318,7 +13318,7 @@ msgctxt ""
"par_id3156118\n"
"help.text"
msgid "If you use the filter function in database tables or forms, then type the value in the <emph>Value </emph>text box to be used for filtering."
-msgstr "እርስዎ ከ ተጠቀሙ የ ማጣሪያ ተግባር በ ዳታቤዝ ሰንጠረዥ ወይንም ፎርሞች ውስጥ: ዋጋውን ይጻፉ በ <emph>ዋጋ </emph>ጽሁፍ ሳጥን ውስጥ ለ ማጣሪያ እንዲጠቀሙበት"
+msgstr "እርስዎ ከ ተጠቀሙ የ ማጣሪያ ተግባር የ ዳታቤዝ ሰንጠረዥ ወይንም ፎርሞች ውስጥ: ዋጋውን ይጻፉ በ <emph> ዋጋ </emph> ጽሁፍ ሳጥን ውስጥ ለ ማጣሪያ እንዲጠቀሙበት"
#: 12090100.xhp
msgctxt ""
@@ -13582,7 +13582,7 @@ msgctxt ""
"bm_id3147000\n"
"help.text"
msgid "<bookmark_value>sorting; databases</bookmark_value><bookmark_value>databases; sorting</bookmark_value>"
-msgstr "<bookmark_value>መለያ; ዳታቤዞች</bookmark_value><bookmark_value>ዳታቤዞች; መለያ</bookmark_value>"
+msgstr "<bookmark_value>መለያ: ዳታቤዞች</bookmark_value><bookmark_value>ዳታቤዞች: መለያ</bookmark_value>"
#: 12100100.xhp
msgctxt ""
@@ -13702,7 +13702,7 @@ msgctxt ""
"bm_id3146936\n"
"help.text"
msgid "<bookmark_value>tables in databases; searching</bookmark_value> <bookmark_value>forms; browsing</bookmark_value> <bookmark_value>records; searching in databases</bookmark_value> <bookmark_value>searching; databases</bookmark_value> <bookmark_value>databases; searching records</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዦች ዳታቤዞች ውስጥ</bookmark_value> <bookmark_value>ፎርሞች; መቃኛ</bookmark_value> <bookmark_value>መዝገቦች; መፈለጊያ ዳታቤዞች ውስጥ</bookmark_value> <bookmark_value>መፈለጊያ; ዳታቤዞች ውስጥ</bookmark_value> <bookmark_value>ዳታቤዞች ውስጥ; መፈለጊያ መዝገቦች</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዦች ዳታቤዞች: ውስጥ</bookmark_value> <bookmark_value>ፎርሞች: መቃኛ</bookmark_value> <bookmark_value>መዝገቦች: መፈለጊያ ዳታቤዞች ውስጥ</bookmark_value> <bookmark_value>መፈለጊያ: ዳታቤዞች ውስጥ</bookmark_value> <bookmark_value>ዳታቤዞች ውስጥ: መፈለጊያ መዝገቦች</bookmark_value>"
#: 12100200.xhp
msgctxt ""
@@ -13718,7 +13718,7 @@ msgctxt ""
"par_id3147588\n"
"help.text"
msgid "<variable id=\"suchentext\"><ahelp hid=\".uno:RecSearch\" visibility=\"hidden\">Searches database tables and forms.</ahelp> In forms or database tables, you can search through data fields, list boxes, and check boxes for specific values. </variable>"
-msgstr "<variable id=\"suchentext\"><ahelp hid=\".uno:RecSearch\" visibility=\"hidden\">መፈለጊያ ከ ዳታ ሰንጠረዥ እና ፎርሞች ውስጥ</ahelp> በ ፎርሞች ወይንም ዳታቤዝ ሰንጠረዦች ውስጥ እርስዎ መፈለግ ይችላሉ በ ሙሉ የ ዳታቤዝ ሜዳዎች: ዝርዝር ሳጥኖች: እና ምልክት ማድረጊያ ሳጥኖች ውስጥ ለ ተወሰኑ ዋጋዎች</variable>"
+msgstr "<variable id=\"suchentext\"><ahelp hid=\".uno:RecSearch\" visibility=\"hidden\">መፈለጊያ ከ ዳታ ሰንጠረዥ እና ፎርሞች ውስጥ </ahelp> በ ፎርሞች ወይንም ዳታቤዝ ሰንጠረዦች ውስጥ እርስዎ መፈለግ ይችላሉ በ ሙሉ የ ዳታቤዝ ሜዳዎች: ዝርዝር ሳጥኖች: እና ምልክት ማድረጊያ ሳጥኖች ውስጥ ለ ተወሰኑ ዋጋዎች </variable>"
#: 12100200.xhp
msgctxt ""
@@ -13734,7 +13734,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "The search described here is carried out by <item type=\"productname\">%PRODUCTNAME</item>. If you want to use the SQL server to search in a database, then you should use the <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\">Form-based Filters</link> icon on the <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">Form Bar</link>."
-msgstr "እዚህ የ ተገለጸው ፍለጋ ተካሂዷል በ <item type=\"productname\">%PRODUCTNAME</item> እርስዎ መጠቀም ከፈለጉ የ SQL ሰርቨር ዳታቤዝ ውስጥ መፈለግ: እርስዎ መጠቀም አለብዎት የ <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\">ፎርም-መሰረት ያደረገ ማጣሪያዎች </link> ምልክት በ <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">ፎርም መደርደሪያ ላይ </link>."
+msgstr "እዚህ የ ተገለጸው ፍለጋ ተካሂዷል በ <item type=\"productname\">%PRODUCTNAME</item> እርስዎ መጠቀም ከፈለጉ የ SQL ሰርቨር ዳታቤዝ ውስጥ መፈለግ: እርስዎ መጠቀም አለብዎት የ <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\">ፎርም-መሰረት ያደረገ ማጣሪያዎች </link> ምልክት በ <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\"> ፎርም መደርደሪያ ላይ </link>"
#: 12100200.xhp
msgctxt ""
@@ -13886,7 +13886,7 @@ msgctxt ""
"par_id3153896\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/fmsearchdialog/rbAllFields\">Searches through all fields.</ahelp> If you are running a search in a table, all fields in the table will be searched. If you are running a search in a form, all fields of the logical form (entered under <emph>Form</emph>) will be searched. If you are running a search in a table control field, all columns that are linked to a valid database table field will be searched."
-msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/rbAllFields\">በ ሁሉም ሜዳዎች ውስጥ መፈለጊያ </ahelp> እርስዎ በ ሰንጠረዥ ውስጥ ፍለጋ የሚያስኬዱ ከሆነ: በ ሰንጠረዥ ውስጥ በሁሉም ሜዳ ውስጥ ይፈለጋል: እርስዎ በ ፎርም ውስጥ ፍለጋ የሚያስኬዱ ከሆነ: ሁሉም ሜዳዎች የ ሎጂካል ፎርም (ይገባሉ በ <emph>ፎርም</emph>) ውስጥ ይፈለጋል: እርስዎ በ ሰንጠረዥ መቆጣጠሪያ ሜዳ ውስጥ ፍለጋ የሚያስኬዱ ከሆነ: ሁሉም አምዶች የ ተገናኙ ከ ዋጋ ያለው ዳታቤዝ ሰንጠረዥ ሜዳ ውስጥ ይፈለጋል"
+msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/rbAllFields\">በ ሁሉም ሜዳዎች ውስጥ መፈለጊያ </ahelp> እርስዎ በ ሰንጠረዥ ውስጥ ፍለጋ የሚያስኬዱ ከሆነ: በ ሰንጠረዥ ውስጥ በሁሉም ሜዳ ውስጥ ይፈለጋል: እርስዎ በ ፎርም ውስጥ ፍለጋ የሚያስኬዱ ከሆነ: ሁሉም ሜዳዎች የ ሎጂካል ፎርም (ይገባሉ በ <emph> ፎርም </emph>) ውስጥ ይፈለጋል: እርስዎ በ ሰንጠረዥ መቆጣጠሪያ ሜዳ ውስጥ ፍለጋ የሚያስኬዱ ከሆነ: ሁሉም አምዶች የ ተገናኙ ከ ዋጋ ያለው ዳታቤዝ ሰንጠረዥ ሜዳ ውስጥ ይፈለጋል"
#: 12100200.xhp
msgctxt ""
@@ -14062,7 +14062,7 @@ msgctxt ""
"par_id3156736\n"
"help.text"
msgid "If the <emph>Apply field format</emph> box is marked, the data source view of the table or form is searched using the formatting set there. If the box is not marked, the database is searched using the formatting saved in the database."
-msgstr "የ <emph>መፈጸሚያ ሜዳአቀራረብ</emph> ሳጥን ውስጥ ምልክት ከ ተደረገ: የ ዳታ ምንጭ መመልከቻ ሰንጠረዥ ወይንም ፎርም ውስጥ ይፈለጋል በ መጠቀም የ አቀራረብ ማሰናጃ እዚህ: ሳጥን ውስጥ ምልክት ካልተደረገ: የ ዳታቤዝ ውስጥ ይፈለጋል በ መጠቀም የ አቀራረብ ማስቀመጫ ከ ዳታቤዝ ውስጥ"
+msgstr "የ <emph> መፈጸሚያ ሜዳ አቀራረብ </emph> ሳጥን ውስጥ ምልክት ከ ተደረገ: የ ዳታ ምንጭ መመልከቻ ሰንጠረዥ ወይንም ፎርም ውስጥ ይፈለጋል በ መጠቀም የ አቀራረብ ማሰናጃ እዚህ: ሳጥን ውስጥ ምልክት ካልተደረገ: የ ዳታቤዝ ውስጥ ይፈለጋል በ መጠቀም የ አቀራረብ ማስቀመጫ ከ ዳታቤዝ ውስጥ"
#: 12100200.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3149959\n"
"help.text"
msgid "You have a date field, which is saved in \"DD.MM.YY\" format in the database (for example, 17.02.65). The format of the entry is changed in the data source view to \"DD MMM YYYY\" (17 Feb 1965). Following this example, a record containing February 17 is only found when the <emph>Apply field format</emph> option is on:"
-msgstr "እርስዎ የ ቀን ሜዳ አለዎት: የ ተቀመጠ በ \"ቀቀ.ወወ.አአ\" አቀራረብ ከ ዳታቤዝ ውስጥ (ለምሳሌ: 17.02.65). የ አቀራረብ ማስገቢያው ተቀይሯል ከ ዳታ ምንጭ መመልከቻ ውስጥ ወደ \"ቀቀ ወወወ አአአአ\" (17 ጥር 1965). ይህን ምሳሌ በ መከተል: መዝገብ የያዘ ጥር 17 ብቻ ይገኛል በ <emph>መፈጸሚያ ሜዳ አቀራረብ</emph> ምርጫ በርቶ ከሆነ:"
+msgstr "እርስዎ የ ቀን ሜዳ አለዎት: የ ተቀመጠ በ \"ቀቀ.ወወ.አአ\" አቀራረብ ከ ዳታቤዝ ውስጥ (ለምሳሌ: 17.02.65). የ አቀራረብ ማስገቢያው ተቀይሯል ከ ዳታ ምንጭ መመልከቻ ውስጥ ወደ \"ቀቀ ወወወ አአአአ\" (17 ጥር 1965). ይህን ምሳሌ በ መከተል: መዝገብ የያዘ ጥር 17 ብቻ ይገኛል በ <emph> መፈጸሚያ ሜዳ አቀራረብ </emph> ምርጫ በርቶ ከሆነ:"
#: 12100200.xhp
msgctxt ""
@@ -14110,7 +14110,7 @@ msgctxt ""
"par_id3155850\n"
"help.text"
msgid "\"Feb\" is returned, but not \"2\"."
-msgstr "\"ጥር\" ይመልሳል: አይደለም \"2\"."
+msgstr "\"ጥር\" ይመልሳል: አይደለም \"2\""
#: 12100200.xhp
msgctxt ""
@@ -14126,7 +14126,7 @@ msgctxt ""
"par_id3153418\n"
"help.text"
msgid "\"2\" is returned, but not \"Feb\"."
-msgstr "\"2\" ይመልሳል: አይደለም \"ጥር\"."
+msgstr "\"2\" ይመልሳል: አይደለም \"ጥር\""
#: 12100200.xhp
msgctxt ""
@@ -14222,7 +14222,7 @@ msgctxt ""
"par_id3154507\n"
"help.text"
msgid "However, searching without <emph>Apply field format </emph>is appropriate for larger databases with no formatting issues, because it is faster."
-msgstr "ነገር ግን መፈለግ ያለ <emph>የ ሜዳ አቀራረብ መፈጸሚያ </emph> ተገቢ ነው ለ ትልቅ ዳታቤዞች ያለ ምንም አቀራረብ ችግር: ምክንያቱም በጣም ፈጣን ነው"
+msgstr "ነገር ግን መፈለግ ያለ <emph> የ ሜዳ አቀራረብ መፈጸሚያ </emph> ተገቢ ነው ለ ትልቅ ዳታቤዞች ያለ ምንም አቀራረብ ችግር: ምክንያቱም በጣም ፈጣን ነው"
#: 12100200.xhp
msgctxt ""
@@ -14238,7 +14238,7 @@ msgctxt ""
"par_id3150995\n"
"help.text"
msgid "If you use <emph>Apply field format</emph> when searching in list boxes, you find the text displayed in list boxes. If you do not use <emph>Apply field format,</emph> you will find the contents corresponding to the standard field format."
-msgstr "እርስዎ የሚጠቀሙ ከሆነ <emph> የ ሜዳ አቀራረብ መፈጸሚያ </emph> በ ዝርዝር ሳጥን ውስጥ በሚፈልጉ ጊዜ: እርስዎ ጽሁፍ ያገኛሉ በ ከ ዝርዝር ሳጥኖች ውስጥ: እርስዎ የማይጠቀሙ ከሆነ <emph> የ ሜዳ አቀራረብ መፈጸሚያ </emph> እርስዎ ተመሳሳይ ይዞታዎችን ያገኛሉ በ መደበኛ ሜዳ አቀራረብ ውስጥ"
+msgstr "እርስዎ የሚጠቀሙ ከሆነ <emph> የ ሜዳ አቀራረብ መፈጸሚያ </emph> በ ዝርዝር ሳጥን ውስጥ በሚፈልጉ ጊዜ: እርስዎ ጽሁፍ ያገኛሉ በ ዝርዝር ሳጥኖች ውስጥ: እርስዎ የማይጠቀሙ ከሆነ <emph> የ ሜዳ አቀራረብ መፈጸሚያ </emph> እርስዎ ተመሳሳይ ይዞታዎችን ያገኛሉ በ መደበኛ ሜዳ አቀራረብ ውስጥ"
#: 12100200.xhp
msgctxt ""
@@ -14526,7 +14526,7 @@ msgctxt ""
"par_id3156166\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/fmsearchdialog/close\">Closes the dialog. The settings of the last search will be saved until you quit <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/close\">ንግግሩን መዝጊያ: የ መጨረሻው መፈለጊያ ማሰናጃ ይቀመጣል እርስዎ እስከሚያጠፉ ድረስ <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/close\">ንግግሩን መዝጊያ: የ መጨረሻው መፈለጊያ ማሰናጃ ይቀመጣል እርስዎ እስከሚያጠፉ ድረስ <item type=\"productname\">%PRODUCTNAME</item></ahelp>"
#: 12100200.xhp
msgctxt ""
@@ -14566,7 +14566,7 @@ msgctxt ""
"par_id3152918\n"
"help.text"
msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link> icon on the <emph>Form</emph> Bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
-msgstr "ከ መደበኛ መፈለጊያ የ ተለየ: የሚጀምረው በ <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">መዝገብ መፈለጊያ</link> ምልክት ነው በ <emph>ፎርም</emph> መደርደሪያ ላይ: እርስዎ መፈለግ ይችላሉ ተጨማሪ በፍጥነት በ መጠቀም ፎርም-መሰረት ያደረገ ማጣሪያ: ብዙ ጊዜ በፍጥነት የ ዳታቤዝ ሰርቨር በ መፈለጊያ የተሞላ ነው: እንዲሁም: እርስዎ ማስገባት ይችላሉ ተጨማሪ ውስብስብ መፈለጊያ ሁኔታዎች"
+msgstr "ከ መደበኛ መፈለጊያ የ ተለየ: የሚጀምረው በ <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\"> መዝገብ መፈለጊያ </link> ምልክት ነው በ <emph> ፎርም </emph> መደርደሪያ ላይ: እርስዎ መፈለግ ይችላሉ ተጨማሪ በፍጥነት በ መጠቀም ፎርም-መሰረት ያደረገ ማጣሪያ: ብዙ ጊዜ በፍጥነት የ ዳታቤዝ ሰርቨር በ መፈለጊያ የተሞላ ነው: እንዲሁም: እርስዎ ማስገባት ይችላሉ ተጨማሪ ውስብስብ መፈለጊያ ሁኔታዎች"
#: 12110000.xhp
msgctxt ""
@@ -15062,7 +15062,7 @@ msgctxt ""
"bm_id3154788\n"
"help.text"
msgid "<bookmark_value>tables in databases; adding to queries</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ; ወደ ጥያቄዎች መጨመሪያ</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ: ወደ ጥያቄዎች መጨመሪያ</bookmark_value>"
#: 14020100.xhp
msgctxt ""
@@ -15254,7 +15254,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "Click the icon again to return to normal mode, in which the changes in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"New Query Design\">New Query Design</link> are synchronized with the permitted changes through SQL."
-msgstr "ይጫኑ በ ምልክት ላይ እንደገና ወደ መደበኛ ዘዴ ለመመለስ: ለውጡ ከ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"New Query Design\">አዲስ የ ጥያቄ ንድፍ</link> ጋር ይስማማል በ ተፈቀደው ለውጥ በ SQL ውስጥ"
+msgstr "ይጫኑ በ ምልክት ላይ እንደገና ወደ መደበኛ ዘዴ ለመመለስ: ለውጡ ከ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"New Query Design\"> አዲስ የ ጥያቄ ንድፍ </link> ጋር ይስማማል በ ተፈቀደው ለውጥ በ SQL ውስጥ"
#: 14040000.xhp
msgctxt ""
@@ -15278,7 +15278,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the \"Function\" row in the lower part of the design view of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link> window.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">የ \"ተግባር\" ረድፍ በ ታችኛው ክፍል ማሳያ በ ንድፍ መመልከቻ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">ጥያቄ ንድፍ</link> መስኮት ውስጥ</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">የ \"ተግባር\" ረድፍ በ ታችኛው ክፍል ማሳያ በ ንድፍ መመልከቻ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"> ጥያቄ ንድፍ </link> መስኮት ውስጥ </ahelp>"
#: 14040000.xhp
msgctxt ""
@@ -15318,7 +15318,7 @@ msgctxt ""
"par_id3154232\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the \"Table\" row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">የ \"ሰንጠረዥ\" ረድፍ በ ታችኛው ክፍል ማሳያ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">ጥያቄ ንድፍ ውስጥ</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">የ \"ሰንጠረዥ\" ረድፍ በ ታችኛው ክፍል ማሳያ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"> ጥያቄ ንድፍ ውስጥ </link></ahelp>"
#: 14050000.xhp
msgctxt ""
@@ -15358,7 +15358,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the \"Alias\" row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">የ \"ሀሰት\" ረድፍ በ ታችኛው ክፍል ማሳያ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">ጥያቄ ንድፍ ውስጥ</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">የ \"ሀሰት\" ረድፍ በ ታችኛው ክፍል ማሳያ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"> ጥያቄ ንድፍ ውስጥ </link></ahelp>"
#: 14060000.xhp
msgctxt ""
@@ -15598,7 +15598,7 @@ msgctxt ""
"par_id3149283\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Double-click the<emph> Page Style field </emph>to open the <link href=\"text/swriter/01/05040000.xhp\" name=\"Page Style\">Page Style</link> dialog, in which you can edit the style for the current page. In the context menu of this field, you can apply a Page Style. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ሁለት-ጊዜ ይጫኑ የ<emph> ገጽ ዘዴ ሜዳ </emph>ለ መክፈት የ <link href=\"text/swriter/01/05040000.xhp\" name=\"Page Style\">ገጽ ዘዴ</link> ንግግር: ለ አሁኑ ገጽ ዘዴ ማረም የሚችሉበት: በዚህ አገባብ ዝርዝር ሜዳ ውስጥ: እርስዎ የ ገጽ ዘዴ መፈጸም ይችላሉ </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ሁለት-ጊዜ ይጫኑ የ<emph> ገጽ ዘዴ ሜዳ </emph> ለ መክፈት የ <link href=\"text/swriter/01/05040000.xhp\" name=\"Page Style\"> ገጽ ዘዴ </link> ንግግር: ለ አሁኑ ገጽ ዘዴ ማረም የሚችሉበት: በዚህ አገባብ ዝርዝር ሜዳ ውስጥ: እርስዎ የ ገጽ ዘዴ መፈጸም ይችላሉ </caseinline></switchinline>"
#: 20020000.xhp
msgctxt ""
@@ -15702,7 +15702,7 @@ msgctxt ""
"par_id3154422\n"
"help.text"
msgid "Click in the field to toggle the modes (except in the $[officename] Basic IDE, where only the <emph>Insert</emph> mode is active). If the cursor is positioned in a text document, you may also use the Insert key (if available on your keyboard) to toggle the modes."
-msgstr "ይጫኑ በ ሜዳ ላይ ዘዴዎች ለ መቀያየር (ከ $[officename] Basic IDE, በስተቀር: ከ <emph>ማስገቢያ</emph> ዘዴ ንቁ ብቻ) መጠቆሚያው በ ጽሁፍ ሰነድ ውስጥ ከሆነ: እርስዎ መጠቀም ይችላሉ የ ማስገቢያ ቁልፍ (በ እርስዎ የ ፊደል ገበታ ውስጥ ካለ) ዘዴዎች ለ መቀያየር"
+msgstr "ይጫኑ በ ሜዳ ላይ ዘዴዎች ለ መቀያየር (ከ $[officename] Basic IDE, በስተቀር: ከ <emph> ማስገቢያ </emph> ዘዴ ንቁ ብቻ) መጠቆሚያው በ ጽሁፍ ሰነድ ውስጥ ከሆነ: እርስዎ መጠቀም ይችላሉ የ ማስገቢያ ቁልፍ (በ እርስዎ የ ፊደል ገበታ ውስጥ ካለ) ዘዴዎች ለ መቀያየር"
#: 20040000.xhp
msgctxt ""
@@ -16822,7 +16822,7 @@ msgctxt ""
"hd_id3154100\n"
"help.text"
msgid "<link href=\"text/shared/02/24080000.xhp\" name=\"Gamma\">Gamma</link>"
-msgstr "<link href=\"text/shared/02/24080000.xhp\" name=\"Gamma\">Gamma</link>"
+msgstr "<link href=\"text/shared/02/24080000.xhp\" name=\"Gamma\">ጋማ</link>"
#: 24080000.xhp
msgctxt ""
@@ -16918,7 +16918,7 @@ msgctxt ""
"par_id0514200804261097\n"
"help.text"
msgid "In Impress and Draw no dialog is shown when you click the icon, but you see eight cropping handles. Open the context menu of a selected picture and choose <item type=\"menuitem\">Crop Image</item>, if you want to use the <link href=\"text/shared/01/05030800.xhp\">dialog</link> for cropping."
-msgstr "በ ማስደነቂያ እና መሳያ ውስጥ ምንም ንግግር አይታይም እርስዎ ሲጫኑ ምልክት: ነገር ግን ስምንት መከርከሚያ እጄታ ይታያል: ይክፈቱ የ አገባብ ዝርዝር ለ ተመረጠው ስእል እና ይምረጡ <item type=\"menuitem\">ምስል መከርከሚያ</item> እርስዎ መጠቀም ከፈለጉ <link href=\"text/shared/01/05030800.xhp\">ንግግር</link> ለ መከርከሚያ"
+msgstr "በ ማስደነቂያ እና መሳያ ውስጥ ምንም ንግግር አይታይም እርስዎ ሲጫኑ ምልክት: ነገር ግን ስምንት መከርከሚያ እጄታ ይታያል: ይክፈቱ የ አገባብ ዝርዝር ለ ተመረጠው ስእል እና ይምረጡ <item type=\"menuitem\"> ምስል መከርከሚያ </item> እርስዎ መጠቀም ከፈለጉ <link href=\"text/shared/01/05030800.xhp\"> ንግግር </link> ለ መከርከሚያ"
#: 24100000.xhp
msgctxt ""
@@ -17214,7 +17214,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "<ahelp hid=\".\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL Query</link> by the LIMIT X clause</ahelp>. This can be used to limit your SQL Query results to those that fall within the first X number of it."
-msgstr "<ahelp hid=\".\">ማስፊያ የ ተፈጠረውን እና የ ተመረጠውን በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL ጥያቄ</link> በ LIMIT X clause</ahelp>. እርስዎ ይህን መጠቀም ይችላሉ ለ መወሰን የ SQL ጥያቄ ውጤት በ መጀመሪያ X ቁጥር ውስጥ ለሚወድቁ"
+msgstr "<ahelp hid=\".\">ማስፊያ የ ተፈጠረውን እና የ ተመረጠውን በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL ጥያቄ </link> በ LIMIT X clause</ahelp> እርስዎ ይህን መጠቀም ይችላሉ ለ መወሰን የ SQL ጥያቄ ውጤት በ መጀመሪያ X ቁጥር ውስጥ ለሚወድቁ"
#: more_controls.xhp
msgctxt ""
@@ -17334,7 +17334,7 @@ msgctxt ""
"par_id3153761\n"
"help.text"
msgid "In the Query Design View, choose <emph>Edit</emph> - <emph>Query Properties</emph>."
-msgstr "ከ ጥያቄ ንድፍ መመልከቻ: ይምረጡ <emph>ማረሚያ</emph> - <emph>የ ጥያቄ ባህሪዎች</emph>."
+msgstr "ከ ጥያቄ ንድፍ መመልከቻ: ይምረጡ <emph> ማረሚያ </emph> - <emph> የ ጥያቄ ባህሪዎች </emph>"
#: querypropdlg.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/04.po b/source/am/helpcontent2/source/text/shared/04.po
index 572687ede02..d4d4326ada4 100644
--- a/source/am/helpcontent2/source/text/shared/04.po
+++ b/source/am/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-28 16:08+0000\n"
+"PO-Revision-Date: 2017-06-21 14:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495987681.000000\n"
+"X-POOTLE-MTIME: 1498055704.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3149991\n"
"help.text"
msgid "<bookmark_value>keyboard;general commands</bookmark_value> <bookmark_value>shortcut keys;general</bookmark_value> <bookmark_value>text input fields</bookmark_value> <bookmark_value>AutoComplete function in text and list boxes</bookmark_value> <bookmark_value>macros; interrupting</bookmark_value>"
-msgstr "<bookmark_value>የ ፊደል ገበታ: ባጠቃላይ ትእዛዞች</bookmark_value> <bookmark_value>አቋራጭ ቁልፎች: ባጠቃላይ</bookmark_value> <bookmark_value>የ ጽሁፍ ማስገቢያ ሜዳዎች</bookmark_value> <bookmark_value>በራሱ መሙያ የ ጽሁፍ ተግባሮች እና ዝርዝር ሳጥኖች</bookmark_value> <bookmark_value>macros: ማቋረጫ</bookmark_value>"
+msgstr "<bookmark_value>የ ፊደል ገበታ: ባጠቃላይ ትእዛዞች</bookmark_value> <bookmark_value>አቋራጭ ቁልፎች: ባጠቃላይ</bookmark_value> <bookmark_value>የ ጽሁፍ ማስገቢያ ሜዳዎች</bookmark_value> <bookmark_value>በራሱ መሙያ የ ጽሁፍ ተግባሮች እና ዝርዝር ሳጥኖች</bookmark_value> <bookmark_value>ማክሮስ: ማቋረጫ</bookmark_value>"
#: 01010000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3151299\n"
"help.text"
msgid "A great deal of your application's functionality can be called up by using shortcut keys. For example, the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+O</caseinline><defaultinline>Ctrl+O</defaultinline></switchinline> shortcut keys are shown next to the <emph>Open</emph> entry in the <emph>File</emph> menu. If you want to access this function by using the shortcut keys, press and hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and then press the O key. Release both keys after the dialog appears."
-msgstr "በርካታ የ መፈጸሚያ ተግባሮችን መጥራት ይችላሉ የ አቋራጭ ቁልፎችን በመጠቀም ለምሳሌ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+O</caseinline><defaultinline>Ctrl+O</defaultinline></switchinline> አቋራጭ ቁልፎች ይታያሉ በ <emph>መክፈቻ</emph> ማስገቢያ በ <emph>ፋይል</emph> ዝርዝር ውስጥ አቋራጭ ቁልፎች ጋር መድረስ ከፈለጉ ፡ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ከዛ ይጫኑ O ቁልፍ ከዛ ሁለቱንም ቁልፎች ይልቀቁ ንግግሩ ከታያ በኋላ"
+msgstr "በርካታ የ መፈጸሚያ ተግባሮችን መጥራት ይችላሉ የ አቋራጭ ቁልፎችን በመጠቀም ለምሳሌ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ+O </caseinline><defaultinline>Ctrl+O</defaultinline></switchinline> አቋራጭ ቁልፎች ይታያሉ በ <emph> መክፈቻ </emph> ማስገቢያ በ <emph> ፋይል </emph> ዝርዝር ውስጥ አቋራጭ ቁልፎች ጋር መድረስ ከፈለጉ: ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ከዛ ይጫኑ O ቁልፍ ከዛ ሁለቱንም ቁልፎች ይልቀቁ ንግግሩ ከታያ በኋላ:"
#: 01010000.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "Pressing ESC closes the dialog without saving changes. <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>If you place the focus on a button, not only will you see the dotted line framing the name of the button, but also a thicker shadow under the button selected. This indicates that if you exit the dialog by pressing the Enter key, it is the equivalent of pressing that button itself.</defaultinline></switchinline>"
-msgstr "እርስዎ ከ ተጫኑ ESC ማንኛውንም ንግግር ይዘጋል ለውጦቹ ሳይቀመጡ: <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>እርስዎ ትኩረቱን በ ቁልፍ ላይ ካደረጉ: እርስዎ ነጠብጣብ መስመር ክፈፍ የ ቁልፍ ስም: እንዲሁም ወፍራም ጥላ ከ ቁልፉ ስር ይመረጣል: ይህ የሚያሳየው እርስዎ ከ ንግግሩ ቢወጡ ማስገቢያ ቁልፍ በ መጫን: ቁልፉን እራሱን የ መጫን ያህል እኩል ነው</defaultinline></switchinline>"
+msgstr "እርስዎ ከ ተጫኑ ESC ማንኛውንም ንግግር ይዘጋል ለውጦቹ ሳይቀመጡ: <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> እርስዎ ትኩረቱን በ ቁልፍ ላይ ካደረጉ: እርስዎ ነጠብጣብ መስመር ክፈፍ የ ቁልፍ ስም: እንዲሁም ወፍራም ጥላ ከ ቁልፉ ስር ይመረጣል: ይህ የሚያሳየው እርስዎ ከ ንግግሩ ቢወጡ ማስገቢያ ቁልፍ በ መጫን: ቁልፉን እራሱን የ መጫን ያህል እኩል ነው</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "Interrupting Macros"
-msgstr "Macro ማቋረጥ"
+msgstr "ማክሮስ ማቋረጥ"
#: 01010000.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3159150\n"
"help.text"
msgid "If you want to terminate a macro that is currently running, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
-msgstr "አሁን እየሄደ ያለውን macro ማቋረጥ ከ ፈለጉ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
+msgstr "አሁን እየሄደ ያለውን ማክሮስ ማቋረጥ ከ ፈለጉ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
#: 01010000.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"hd_id3156271\n"
"help.text"
msgid "Esc (in Handle Selection Mode)"
-msgstr "መዝለያ (በ እጅ የ ምርጫ ዘዴ)"
+msgstr "Esc (በ እጅ የ ምርጫ ዘዴ)"
#: 01010000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"bm_id3149809\n"
"help.text"
msgid "<bookmark_value>shortcut keys; in databases</bookmark_value><bookmark_value>databases; shortcut keys</bookmark_value>"
-msgstr "<bookmark_value>አቋራጭ ቁልፎች; የ ዳታቤዞች</bookmark_value><bookmark_value>የ ዳታቤዞች; አቋራጭ ቁልፎች</bookmark_value>"
+msgstr "<bookmark_value>አቋራጭ ቁልፎች: የ ዳታቤዞች</bookmark_value><bookmark_value>የ ዳታቤዞች: አቋራጭ ቁልፎች</bookmark_value>"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/05.po b/source/am/helpcontent2/source/text/shared/05.po
index 7527e38ede1..4ab66d18293 100644
--- a/source/am/helpcontent2/source/text/shared/05.po
+++ b/source/am/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-04 18:10+0000\n"
+"PO-Revision-Date: 2017-06-16 14:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496599825.000000\n"
+"X-POOTLE-MTIME: 1497624239.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_id3150618\n"
"help.text"
msgid "The <emph>$[officename] Help system</emph> provides easy access to information and support. There are several ways to find what you are looking for in the <link href=\"text/shared/05/00000110.xhp\" name=\"Help environment\">Help environment</link>: You can search for a specific keyword in the <link href=\"text/shared/05/00000130.xhp\" name=\"Index\">Index</link>, carry out a full-text search under <link href=\"text/shared/05/00000140.xhp\" name=\"Find\">Find</link>, or look through a hierarchical list of the <link href=\"text/shared/05/00000160.xhp\" name=\"Topics\">Topics</link>."
-msgstr "የ <emph>$[officename] እርዳት ስርአት</emph> የሚያቀርበው መረጃ እና ድጋፍ በ ቀላሉ ነው: እርስዎ የሚፈልጉትን ለማግኘት በርካታ መንገዶች አሉ: በ <link href=\"text/shared/05/00000110.xhp\" name=\"Help environment\">እርዳት አካባቢ</link>: እርስዎ መፈለግ ይችላሉ ቁልፍ ቃል በ መጠቀም በ <link href=\"text/shared/05/00000130.xhp\" name=\"Index\">ማውጫ</link>, መፈጸም ይችላሉ ሙሉ-ጽሁፍ መፈለጊያ በ <link href=\"text/shared/05/00000140.xhp\" name=\"Find\">መፈለጊያ</link>, ወይንም በ ቅደም ተከትል ዝርዝር ውስጥ በ <link href=\"text/shared/05/00000160.xhp\" name=\"Topics\">አርእስት</link>."
+msgstr "የ <emph>$[officename] እርዳት ስርአት</emph> የሚያቀርበው መረጃ እና ድጋፍ በ ቀላሉ ነው: እርስዎ የሚፈልጉትን ለማግኘት በርካታ መንገዶች አሉ: በ <link href=\"text/shared/05/00000110.xhp\" name=\"Help environment\"> እርዳታ አካባቢ </link>: እርስዎ መፈለግ ይችላሉ ቁልፍ ቃል በ መጠቀም በ <link href=\"text/shared/05/00000130.xhp\" name=\"Index\"> ማውጫ </link> መፈጸም ይችላሉ ሙሉ-ጽሁፍ መፈለጊያ በ <link href=\"text/shared/05/00000140.xhp\" name=\"Find\"> መፈለጊያ </link>: ወይንም በ ቅደም ተከትል ዝርዝር ውስጥ በ <link href=\"text/shared/05/00000160.xhp\" name=\"Topics\"> አርእስት </link>"
#: 00000110.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_idN109AA\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/searchdialog/matchcase\" visibility=\"hidden\">Distinguishes between uppercase text and lowercase text.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/searchdialog/matchcase\" visibility=\"hidden\">በ ላይኛው ጉዳይ ጽሁፍ እና በ ታችኛው ጉዳይ ጽሁፍ መካከል መለያ</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/searchdialog/matchcase\" visibility=\"hidden\">በ ላይኛው ጉዳይ ጽሁፍ እና በ ታችኛው ጉዳይ ጽሁፍ መካከል መለያ </ahelp>"
#: 00000110.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_idN10666\n"
"help.text"
msgid "If you always want extended tips instead of tips, enable the extended tips on <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>."
-msgstr "በ ምክሮች ፋንታ ሁል ጊዜ የ ተስፋፉ ምክሮች ማየት ከፈለጉ ያስችሉ የ ተስፋፉ ምክሮችን ማብሪያ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - ባጠቃላይ </emph>"
+msgstr "በ ምክሮች ፋንታ ሁል ጊዜ የ ተስፋፉ ምክሮች ማየት ከፈለጉ ያስችሉ የ ተስፋፉ ምክሮችን ማብሪያ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - ባጠቃላይ </emph>"
#: 00000130.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<emph>Display</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_OPEN\" visibility=\"visible\">displays the selected help subject</ahelp>."
-msgstr "<emph>ማሳያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_OPEN\" visibility=\"visible\">የ ተመረጠውን የ እርዳታ ጉዳይ ማሳያ</ahelp>."
+msgstr "<emph>ማሳያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_OPEN\" visibility=\"visible\">የ ተመረጠውን የ እርዳታ ጉዳይ ማሳያ</ahelp>"
#: 00000150.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<emph>Rename</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_RENAME\" visibility=\"visible\">opens a dialog for entering another name for the bookmark</ahelp>."
-msgstr "<emph>እንደገና መሰየሚያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_RENAME\" visibility=\"visible\">ለ ምልክት ማድረጊያ ሌላ ስም ለ ማስገቢያ ንግግር መክፈቻ</ahelp>."
+msgstr "<emph>እንደገና መሰየሚያ </emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_RENAME\" visibility=\"visible\"> ለ ምልክት ማድረጊያ ሌላ ስም ለ ማስገቢያ ንግግር መክፈቻ </ahelp>"
#: 00000150.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3153087\n"
"help.text"
msgid "<emph>Delete</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_DELETE\" visibility=\"visible\">deletes the bookmark selected </ahelp>."
-msgstr "<emph>ማጥፊያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_DELETE\" visibility=\"visible\">የ ተመረጠውን ምልክት ማድረጊያ ማጥፊያ</ahelp>."
+msgstr "<emph>ማጥፊያ </emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_DELETE\" visibility=\"visible\"> የ ተመረጠውን ምልክት ማድረጊያ ማጥፊያ </ahelp>"
#: 00000160.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/07.po b/source/am/helpcontent2/source/text/shared/07.po
index f53d5a06e2f..8f2a74f56e0 100644
--- a/source/am/helpcontent2/source/text/shared/07.po
+++ b/source/am/helpcontent2/source/text/shared/07.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-02 06:24+0000\n"
+"PO-Revision-Date: 2017-06-14 15:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462170271.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497454819.000000\n"
#: 09000000.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3146946\n"
"help.text"
msgid "To create a new web page for the Internet, open a new <emph>HTML Document</emph> by choosing <emph>File - New</emph>."
-msgstr "አዲስ ድህረ ገጽ በኢንተርኔት ላይ ለመፍጠር ይክፈቱ አዲስ <emph>የ HTML ሰነድ</emph> ከዚያም ይምረጡ <emph>ፋይል - አዲስ</emph>."
+msgstr "አዲስ ድህረ ገጽ በ ኢንተርኔት ላይ ለ መፍጠር ይክፈቱ አዲስ <emph> የ HTML ሰነድ </emph> ከዚያም ይምረጡ <emph> ፋይል - አዲስ </emph>"
#: 09000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autopi.po b/source/am/helpcontent2/source/text/shared/autopi.po
index 023c75fd6c0..f3abe44fc1f 100644
--- a/source/am/helpcontent2/source/text/shared/autopi.po
+++ b/source/am/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-04 22:54+0000\n"
+"PO-Revision-Date: 2017-06-19 23:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496616861.000000\n"
+"X-POOTLE-MTIME: 1497914925.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoPilotMenu\">Guides you through creating business and personal letters, faxes, agendas, presentations, and more.</ahelp>"
-msgstr "<ahelp hid=\".uno:AutoPilotMenu\">የ ንግድ እና የ ግል ደብዳቤዎች: ፋክሶች: አጄንዳዎች: ማቅረቢያዎች እና ተጨማሪዎች እንዴት እንደሚፈጥሩ ይመራዎታል</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoPilotMenu\">የ ንግድ እና የ ግል ደብዳቤዎች: ፋክሶች: አጄንዳዎች: ማቅረቢያዎች እና ተጨማሪዎች እንዴት እንደሚፈጥሩ ይመራዎታል </ahelp>"
#: 01000000.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3093440\n"
"help.text"
msgid "<variable id=\"brief\"><ahelp hid=\".uno:AutoPilotLetter\">Starts the wizard for a letter template.</ahelp></variable> You can use this template for both business and personal correspondence."
-msgstr "<variable id=\"brief\"><ahelp hid=\".uno:AutoPilotLetter\">ለ ደብዳቤ ቴምፕሌት አዋቂውን ያስጀምሩ</ahelp></variable> ይህን ቴምፕሌት ለ ሁለቱም ለ ግል እና ለ ንግድ ደብዳቤ መገናኛ መጠቀም ይችላሉ"
+msgstr "<variable id=\"brief\"><ahelp hid=\".uno:AutoPilotLetter\">ለ ደብዳቤ ቴምፕሌት አዋቂውን ያስጀምሩ </ahelp></variable> ይህን ቴምፕሌት ለ ሁለቱም ለ ግል እና ለ ንግድ ደብዳቤ መገናኛ መጠቀም ይችላሉ"
#: 01010000.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_idN1068D\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_CHKUSEBENDMARKS\">Includes fold marks on the letter template.</ahelp>"
-msgstr "<ahelp hid=\"HID_LTRWIZ_CHKUSEBENDMARKS\">በ ደብዳቤ ቴምፕሌት ውስጥ የ ማጠፊያ ምልክት ማካተቻ.</ahelp>"
+msgstr "<ahelp hid=\"HID_LTRWIZ_CHKUSEBENDMARKS\">በ ደብዳቤ ቴምፕሌት ውስጥ የ ማጠፊያ ምልክት ማካተቻ </ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_CHKUSEGREETING\">Includes a complimentary close on the letter template. Select the text from the list box.</ahelp>"
-msgstr "<ahelp hid=\"HID_LTRWIZ_CHKUSEGREETING\">የ ደብዳቤ ቴምፕሌት በምስጋና መዝጊያ ማካተ፡ ከ ዝርዝር ሳጥን ውስጥ የሚፈልጉትን ጽሁፍ ይምረጡ</ahelp>"
+msgstr "<ahelp hid=\"HID_LTRWIZ_CHKUSEGREETING\">የ ደብዳቤ ቴምፕሌት በምስጋና መዝጊያ ማካተ: ከ ዝርዝር ሳጥን ውስጥ የሚፈልጉትን ጽሁፍ ይምረጡ </ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3149666\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Go to Letter Wizard - Recipient and sender\">Go to Letter Wizard - Recipient and sender</link>"
-msgstr "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Go to Letter Wizard - Recipient and sender\">መሄጃ ወደ ደብዳቤ አዋቂ - ተቀባትይ እና ላኪ</link>"
+msgstr "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Go to Letter Wizard - Recipient and sender\">መሄጃ ወደ ደብዳቤ አዋቂ - ተቀባይ እና ላኪ</link>"
#: 01010400.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTRECEIVERPLACEHOLDER\">Specifies that placeholder fields are inserted into the letter template.</ahelp>"
-msgstr "<ahelp hid=\"HID_LTRWIZ_OPTRECEIVERPLACEHOLDER\">በ ደብዳቤ ቴምፕሌት ውስጥ የሚገቡትን ቦታ ያዢ ሜዳዎች መወሰኛ.</ahelp>"
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTRECEIVERPLACEHOLDER\">በ ደብዳቤ ቴምፕሌት ውስጥ የሚገቡትን ቦታ ያዢ ሜዳዎች መወሰኛ </ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_idN1063C\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTCREATELETTER\">Saves and closes the template, and then opens a new untitled document based on the template.</ahelp>"
-msgstr "<ahelp hid=\"HID_LTRWIZ_OPTCREATELETTER\">ቴምፕሌት ማስቀመጫ እና መዝጊያ እና ከዛ ቴምፕሌቱን መሰረት ባደረገ አዲስ ያልተሰየመ ሰነድ መክፈቻ</ahelp>"
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTCREATELETTER\">ቴምፕሌት ማስቀመጫ እና መዝጊያ እና ከዛ ቴምፕሌቱን መሰረት ባደረገ አዲስ ያልተሰየመ ሰነድ መክፈቻ </ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3156346\n"
"help.text"
msgid "According to your selections, the wizard creates a document template and saves it on your hard disk. A new document based on the template appears in the work area, with the filename \"UntitledX\" (X stands for an automatic number)."
-msgstr "እንደ እርስዎ ምርጫ አይነት: አዋቂው የ ሰነድ ቴምፕሌት ይፈጥር እና ያስቀምጣል በ እርስዎ ሀርድ ዲስክ ላይ: አዲስ ሰነድ ቴምፕሌቱን መሰረት ያደረገ በ ስራ ቦታ ላይ ይታያል: በ ፋይል ስም \"ያልተሰየመX\" (X የሚወክለው ራሱ በራሱ ቁጥር መስጫ ነው)."
+msgstr "እንደ እርስዎ ምርጫ አይነት: አዋቂው የ ሰነድ ቴምፕሌት ይፈጥር እና ያስቀምጣል በ እርስዎ ሀርድ ዲስክ ላይ: አዲስ ሰነድ ቴምፕሌቱን መሰረት ያደረገ በ ስራ ቦታ ላይ ይታያል: በ ፋይል ስም \"ያልተሰየመX\" (X የሚወክለው ራሱ በራሱ ቁጥር መስጫ ነው)"
#: 01040000.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
-msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">በ ተመረጠው የ ሰንጠረዥ ወይንም ጥያቄ የ ዳታቤዝ ሜዳዎች ውስጥ የ ስሞች ዝርዝር:</ahelp> ይጫኑ ለ መምረጥ ሜዳ ወይንም ተጭነው ይያዙ የ Shift ቁልፍ ወይንም የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ በርካታ ሜዳዎች ለ መምረጥ"
+msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">በ ተመረጠው የ ሰንጠረዥ ወይንም ጥያቄ የ ዳታቤዝ ሜዳዎች ውስጥ የ ስሞች ዝርዝር: </ahelp> ይጫኑ ለ መምረጥ ሜዳ ወይንም ተጭነው ይያዙ የ Shift ቁልፍ ወይንም የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ በርካታ ሜዳዎች ለ መምረጥ"
#: 01090100.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "Sub form based on existing relation"
-msgstr "ንዑስ ፎርም የነበረውን ግንኙነት መሰረት ባደረገ"
+msgstr "ንዑስ ፎርም የ ነበረውን ግንኙነት መሰረት ባደረገ"
#: 01090200.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"par_idN105C5\n"
"help.text"
msgid "<ahelp hid=\".\">Click to add a subform based on an existing relation.</ahelp>"
-msgstr "<ahelp hid=\".\">ይጫኑ የ ነበረውን ግንኙነት መሰረት ያደረገ ንዑስ ፎርም ለ መጨመር</ahelp>"
+msgstr "<ahelp hid=\".\">ይጫኑ የ ነበረውን ግንኙነት መሰረት ያደረገ ንዑስ ፎርም ለ መጨመር </ahelp>"
#: 01090200.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Select to disallow adding new data.</ahelp>"
-msgstr "<ahelp hid=\".\">Select to disallow adding new data.</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ አዲስ ዳታ እንዳይጨመር መከልከያ </ahelp>"
#: 01090400.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSAVAILABLE\">Displays the names of the data base fields in the selected table or query.</ahelp> Click to select a field or press the Shift or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking to select multiple fields."
-msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSAVAILABLE\">የ ዳታቤዝ ሜዳዎች ስም ማሳያ በ ተመረጠው ሰንጠረዥ ወይንም ጥያቄ ውስጥ</ahelp> ይጭኑ ለ መምረጥ ሜዳ ወይንም ይጫኑ የ Shift ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ በርካታ ሜዳዎች ለ መምረጥ"
+msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSAVAILABLE\">የ ዳታቤዝ ሜዳዎች ስም ማሳያ በ ተመረጠው ሰንጠረዥ ወይንም ጥያቄ ውስጥ </ahelp> ይጭኑ ለ መምረጥ ሜዳ ወይንም ይጫኑ የ Shift ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ በርካታ ሜዳዎች ለ መምረጥ"
#: 01100100.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "You can group records in a report based on the values in one or more fields. <ahelp hid=\".\">Select the fields by which the resulting report will be grouped. You can group up to four fields in a report.</ahelp> When you group more than one field, $[officename] nests the groups according to their group level."
-msgstr "እርስዎ መዝገቦችን በ ቡድን ማድረግ ይችላሉ የ ዋጋዎችን መግለጫ መሰረት ባደረገ በ አንድ ወይንም ተጨማሪ ሜዳዎች ውስጥ <ahelp hid=\".\">ሜዳዎች ይምረጡ ውጤቱ በ ቡድን የሚደረግበት: እርስዎ እስከ አራት ሜዳዎች በ ቡድን መግለጫ ውስጥ ማድረግ ይችላሉ </ahelp> እርስዎ በ ቡድን በሚያደርጉ ጊዜ ከ አንድ ሜዳ በላይ $[officename] እንደ ቡድኑ ደረጃ ቡድኖች ያሰናዳል"
+msgstr "እርስዎ መዝገቦችን በ ቡድን ማድረግ ይችላሉ የ ዋጋዎችን መግለጫ መሰረት ባደረገ በ አንድ ወይንም ተጨማሪ ሜዳዎች ውስጥ <ahelp hid=\".\"> ሜዳዎች ይምረጡ ውጤቱ በ ቡድን የሚደረግበት: እርስዎ እስከ አራት ሜዳዎች በ ቡድን መግለጫ ውስጥ ማድረግ ይችላሉ </ahelp> እርስዎ በ ቡድን በሚያደርጉ ጊዜ ከ አንድ ሜዳ በላይ $[officename] እንደ ቡድኑ ደረጃ ቡድኖች ያሰናዳል"
#: 01100200.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_2_GROUPING\">Lists the fields from your selection on the previous page of the Wizard. To group the report by a field, select the field name, then click the <emph>></emph> button. You may select up to four levels of grouping.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGREPORT_2_GROUPING\">የ እርስዎ የ ሜዳዎች ዝርዝር ምርጫ ካለፈው የ አዋቂው ገጽ: የ መዝገብ ሜዳዎችን በ ቡድን ለማድረግ: ይምረጡ የ ሜዳ ስም: እና ከዛ ይጫኑ የ <emph>></emph> ቁልፍ: እርስዎ እስከ አራት ቡድን ደረጃዎች መምረጥ ይችላሉ</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGREPORT_2_GROUPING\">የ እርስዎ የ ሜዳዎች ዝርዝር ምርጫ ካለፈው የ አዋቂው ገጽ: የ መዝገብ ሜዳዎችን በ ቡድን ለማድረግ: ይምረጡ የ ሜዳ ስም: እና ከዛ ይጫኑ የ <emph>></emph> ቁልፍ: እርስዎ እስከ አራት ቡድን ደረጃዎች መምረጥ ይችላሉ </ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the <emph><</emph> button. You may select up to four levels of grouping.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">የ ሜዳዎች ዝርዝር መግለጫው በ ቡድን የሚሆንበት: ቡድኑን አንድ ደረጃ ለማንቀሳቀስ: ይምረጡ የ ሜዳ ስም: እና ከዛ ይጫኑ የ <emph><</emph> ቁልፍ: እርስዎ እስከ አራት ቡድን ደረጃዎች መምረጥ ይችላሉ</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">የ ሜዳዎች ዝርዝር መግለጫው በ ቡድን የሚሆንበት: ቡድኑን አንድ ደረጃ ለማንቀሳቀስ: ይምረጡ የ ሜዳ ስም: እና ከዛ ይጫኑ የ <emph><</emph> ቁልፍ: እርስዎ እስከ አራት ቡድን ደረጃዎች መምረጥ ይችላሉ </ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_5_OPTEDITTEMPLATE\">When you click <emph>Finish</emph>, the report will be saved and opened for edit.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGREPORT_5_OPTEDITTEMPLATE\">በሚጫኑ ጊዜ <emph>መጨረሻ</emph>, መግለጫው ይቀመጣል እና እንደገና ይከፈታል ለ ማረሚያ</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGREPORT_5_OPTEDITTEMPLATE\">በሚጫኑ ጊዜ <emph> መጨረሻ: </emph> መግለጫው ይቀመጣል እና እንደገና ይከፈታል ለ ማረሚያ </ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3156194\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_5_OPTUSETEMPLATE\">When you click <emph>Finish</emph>, the report will be saved.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGREPORT_5_OPTUSETEMPLATE\">በሚጫኑ ጊዜ <emph>መጨረሻ</emph>, መግለጫው ይቀመጣል</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGREPORT_5_OPTUSETEMPLATE\">በሚጫኑ ጊዜ <emph> መጨረሻ </emph>: መግለጫው ይቀመጣል </ahelp>"
#: 01110000.xhp
msgctxt ""
@@ -4606,7 +4606,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "To export to ASP, in a $[officename] Impress document choose <emph>File - Export</emph>. You then see the <emph>Export</emph> dialog in which you select <emph>HTML Document</emph> as the file type. Once you have selected a directory and entered a file name, click <emph>Export</emph>. For export as ASP, we recommend selecting a \"secret\" file name for the HTML file (see below for more details). You then see the <emph>HTML Export</emph> dialog. Several files will be written to the directory you have just selected."
-msgstr "ለ መላክ ወደ ASP በ $[officename] ማስደነቂያ ሰነድ ይምረጡ <emph>ፋይል – መላኪያ</emph> ይህ ይከፍታል የ <emph>መላኪያ</emph> ንግግር: እርስዎ ይምረጡ የ <emph>HTML ሰነድ</emph> የ ፋይል አይነት እንደ: ዳይሬክቶሪ ከ መረጡ እና የ ፋይል ስም ካስገቡ በኋላ: ይጫኑ <emph>መላኪያ</emph> ለ መላክ እንደ ASP, እኛ እንመክራለን የ \"ምስጢር\" ፋይል ስም ለ HTML ፋይል (ለ በለጠ መረጃ ከ ታች ይመልከቱ) ለ እርስዎ ይታይዎታል የ <emph>HTML መላኪያ</emph> ንግግር: በርካታ ፋይሎች ይጻፋሉ እርስዎ በ መረጡት ዳይሬክቶሪ ውስጥ"
+msgstr "ለ መላክ ወደ ASP በ $[officename] ማስደነቂያ ሰነድ ይምረጡ <emph> ፋይል – መላኪያ </emph> ይህ ይከፍታል የ <emph> መላኪያ </emph> ንግግር: እርስዎ ይምረጡ የ <emph> HTML ሰነድ </emph> የ ፋይል አይነት እንደ: ዳይሬክቶሪ ከ መረጡ እና የ ፋይል ስም ካስገቡ በኋላ: ይጫኑ <emph> መላኪያ </emph> ለ መላክ እንደ ASP, እኛ እንመክራለን የ \"ምስጢር\" ፋይል ስም ለ HTML ፋይል (ለ በለጠ መረጃ ከ ታች ይመልከቱ) ለ እርስዎ ይታይዎታል የ <emph> HTML መላኪያ </emph> ንግግር: በርካታ ፋይሎች ይጻፋሉ እርስዎ በ መረጡት ዳይሬክቶሪ ውስጥ"
#: 01110200.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3154790\n"
"help.text"
msgid "In the options area for WebCast, select the <emph>Active Server Pages (ASP)</emph> option. You can now continue defining other settings or start the export by clicking the <emph>Create</emph> button."
-msgstr "በ ዌብ ማስተላለፊያ ቦታ ምርጫ ውስጥ: ይምረጡ የ <emph>ንቁ ሰርቨር ገጾች (ASP)</emph> ምርጫ: እርስዎ አሁን መቀጠል ይችላሉ መግለጽ ሌሎች ማሰናጃዎችን ወይንም መላክ ማስጀመር በ መጫን የ <emph>መፍጠሪያ</emph> ቁልፍ"
+msgstr "በ ዌብ ማስተላለፊያ ቦታ ምርጫ ውስጥ: ይምረጡ የ <emph> ንቁ ሰርቨር ገጾች (ASP)</emph> ምርጫ: እርስዎ አሁን መቀጠል ይችላሉ መግለጽ ሌሎች ማሰናጃዎችን ወይንም መላክ ማስጀመር በ መጫን የ <emph> መፍጠሪያ </emph> ቁልፍ"
#: 01110200.xhp
msgctxt ""
@@ -4710,7 +4710,7 @@ msgctxt ""
"par_id3146972\n"
"help.text"
msgid "To export, in a $[officename] Impress document choose <emph>File - Export</emph>. This opens the <emph>Export</emph> dialog, in which you select <emph>HTML Document</emph> as the file type. After selecting a folder and entering a file name, click <emph>Save</emph>. This opens the <emph>HTML Export Wizard</emph>. This will write some files to the folder you have just selected."
-msgstr "ለ መላክ የ $[officename] ማስደነቂያ ሰነድ ይምረጡ <emph>ፋይል – መላኪያ</emph>. ይህ ይከፍታል የ <emph>መላኪያ</emph> ንግግር: እርስዎ ይምረጡ የ <emph>HTML ሰነድ</emph> የ ፋይል አይነት እንደ: ፎልደሩን ከ መረጡ በኋላ እና የ ፋይል ስም ካስገቡ በኋላ: ይጫኑ <emph>ማስቀመጫ</emph>. ይህ ይከፍታል የ <emph>HTML መላኪያ አዋቂ</emph> ይህ አንዳንድ ፋይሎች ይጽፋል እርስዎ ወደ መረጡት ፎልደር ውስጥ"
+msgstr "ለ መላክ የ $[officename] ማስደነቂያ ሰነድ ይምረጡ <emph> ፋይል – መላኪያ </emph> ይህ ይከፍታል የ <emph> መላኪያ </emph> ንግግር: እርስዎ ይምረጡ የ <emph> HTML ሰነድ </emph> የ ፋይል አይነት እንደ: ፎልደሩን ከ መረጡ በኋላ እና የ ፋይል ስም ካስገቡ በኋላ: ይጫኑ <emph> ማስቀመጫ </emph> ይህ ይከፍታል የ <emph> HTML መላኪያ አዋቂ </emph> ይህ አንዳንድ ፋይሎች ይጽፋል እርስዎ ወደ መረጡት ፎልደር ውስጥ"
#: 01110200.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"hd_id3152361\n"
"help.text"
msgid "Low resolution (640x480 pixels)"
-msgstr "Low resolution (640x480 pixels)"
+msgstr "ዝቅተኛ ሪዞሊሽን (640x480 ፒክስል)"
#: 01110300.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"hd_id3153361\n"
"help.text"
msgid "Medium resolution (800x600 pixels)"
-msgstr "Medium resolution (800x600 pixels)"
+msgstr "መካከለኛ ሪዞሊሽን (800x600 ፒክስል)"
#: 01110300.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "High resolution (1024x768 pixels)"
-msgstr "High resolution (1024x768 pixels)"
+msgstr "ከፍተኛ ሪዞሊሽን (1024x768 ፒክስል)"
#: 01110300.xhp
msgctxt ""
@@ -5182,7 +5182,7 @@ msgctxt ""
"par_id3155351\n"
"help.text"
msgid "This page is not visible if you have unmarked the <emph>Create title page</emph> check box, or if you have selected either automatic or WebCast export."
-msgstr "ይህ ገጽ አይታይም እርስዎ ምልክት ካላደረጉ በ <emph>የ አርእስት ገጽ መፍጠሪያ </emph> ሳጥን ውስጥ ምልክት ያድርጉ: ወይንም እርስዎ ከ መረጡ አንዱን ራሱ በራሱ ወይንም በ ዌብ ማስተላለፊያ መላኪያ"
+msgstr "ይህ ገጽ አይታይም እርስዎ ምልክት ካላደረጉ በ <emph> የ አርእስት ገጽ መፍጠሪያ </emph> ሳጥን ውስጥ ምልክት ያድርጉ: ወይንም እርስዎ ከ መረጡ አንዱን ራሱ በራሱ ወይንም በ ዌብ ማስተላለፊያ መላኪያ"
#: 01110500.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "Text formatting is obtained from the drawing or presentation. This page is skipped if you unmark the <emph>Create title page</emph> check box or if you select automatic or WebCast export."
-msgstr "የ ጽሁፍ አቀራረብ የሚገኘው ከ መሳያ ወይንም ማቅረቢያ ውስጥ ነው: ይህ ገጽ ይዘለላል እርስዎ ምልክቱን ካጠፉ የ <emph> አርእስት ገጽ መፍጠሪያ</emph> ሳጥን ውስጥ ምልክትያድርጉ ወይንም እርስዎ ይምረጡ የ ራሱ በራሱ ወይንም WebCast መላኪያ"
+msgstr "የ ጽሁፍ አቀራረብ የሚገኘው ከ መሳያ ወይንም ማቅረቢያ ውስጥ ነው: ይህ ገጽ ይዘለላል እርስዎ ምልክቱን ካጠፉ የ <emph> አርእስት ገጽ መፍጠሪያ </emph> ሳጥን ውስጥ ምልክትያድርጉ ወይንም እርስዎ ይምረጡ የ ራሱ በራሱ ወይንም WebCast መላኪያ"
#: 01110600.xhp
msgctxt ""
@@ -5750,7 +5750,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "Indicate where to save the <link href=\"text/shared/02/01170101.xhp\" name=\"reference values\">reference values</link>. A reference value can represent the current state of the group box in a database."
-msgstr "የት እንደሚቀመጥ መጠቆሚያ የ <link href=\"text/shared/02/01170101.xhp\" name=\"reference values\">ማመሳከሪያ ዋጋዎች</link> የ ማመሳከሪያ ዋጋ የሚወክለው የ አሁኑን ሁኔታ የ ቡድን ሳጥን በ ዳታቤዝ ውስጥ ነው"
+msgstr "የት እንደሚቀመጥ መጠቆሚያ የ <link href=\"text/shared/02/01170101.xhp\" name=\"reference values\"> ማመሳከሪያ ዋጋዎች </link> የ ማመሳከሪያ ዋጋ የሚወክለው የ አሁኑን ሁኔታ የ ቡድን ሳጥን በ ዳታቤዝ ውስጥ ነው"
#: 01120400.xhp
msgctxt ""
@@ -6246,7 +6246,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "Only the currencies of the countries participating in the European Monetary Union are converted."
-msgstr "በ አውሮፓ የ ገንዘብ ማህበር ውስጥ አባል ለሆኑ አገሮች ብቻ ገንዘብ መቀየሪያ"
+msgstr "በ አውሮፓውያን የ ገንዘብ ማህበር ውስጥ አባል ለሆኑ አገሮች ብቻ ገንዘብ መቀየሪያ"
#: 01150000.xhp
msgctxt ""
@@ -6454,7 +6454,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">ለ ንግግር እርዳታ ማስነሻ.</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">ለ ንግግር እርዳታ ማስነሻ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6926,7 +6926,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "If you selected <emph>LDAP</emph> on the first page, you will see the <link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\" name=\"LDAP\">LDAP</link> page."
-msgstr "እርስዎ ከ መረጡ <emph>LDAP</emph> በ መጀመሪያው ገጽ ላይ: ይህ ይታያል ለ <link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\" name=\"LDAP\">LDAP</link> ገጽ"
+msgstr "እርስዎ ከ መረጡ <emph> LDAP </emph> በ መጀመሪያው ገጽ ላይ: ይህ ይታያል ለ <link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\" name=\"LDAP\"> LDAP </link> ገጽ"
#: 01170300.xhp
msgctxt ""
@@ -6982,7 +6982,7 @@ msgctxt ""
"par_id3152801\n"
"help.text"
msgid "You can make changes to the templates and documents at a later time by choosing <emph>Edit - Exchange Database</emph>."
-msgstr "እርስዎ ቴምፕሌቶች እና ሰነዶችን መቀየር ይችላሉ በኋላ በ መምረጥ <emph>ማረሚያ - ዳታቤዝ መቀያየሪያ</emph>."
+msgstr "እርስዎ ቴምፕሌቶች እና ሰነዶችን መቀየር ይችላሉ በኋላ በ መምረጥ <emph> ማረሚያ - ዳታቤዝ መቀያየሪያ </emph>"
#: 01170400.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index 3828dbc6060..56cac0fef08 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 14:42+0000\n"
+"PO-Revision-Date: 2017-06-21 15:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496760127.000000\n"
+"X-POOTLE-MTIME: 1498057504.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3150445\n"
"help.text"
msgid "<bookmark_value>queries;overview (Base)</bookmark_value><bookmark_value>tables in databases; printing queries (Base)</bookmark_value><bookmark_value>printing; queries (Base)</bookmark_value><bookmark_value>queries; printing (Base)</bookmark_value>"
-msgstr "<bookmark_value>ጥያቄዎች;ማጠቃለያ (Base)</bookmark_value><bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ; ማተሚያ ጥያቄዎች (Base)</bookmark_value><bookmark_value>ማተሚያ; ጥያቄዎች (Base)</bookmark_value><bookmark_value>ጥያቄዎች; ማተሚያ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ጥያቄዎች: ማጠቃለያ (ቤዝ)</bookmark_value><bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ: ማተሚያ ጥያቄዎች (ቤዝ)</bookmark_value><bookmark_value>ማተሚያ: ጥያቄዎች (ቤዝ)</bookmark_value><bookmark_value>ጥያቄዎች: ማተሚያ (ቤዝ)</bookmark_value>"
#: 02000000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the <emph>Queries</emph> entry. Since this entry contains the database queries, it is also called the \"query container\"."
-msgstr "ጥያቄዎችን ይጠቀሙ መዝገቦች ለማግኘት የ ዳታ ሰንጠረዥ መሰረት ያደረገ በ አንዳንድ መመዘኛ: ሁሉም ጥያቄዎች ለ ዳታቤዝ የ ተፈጠሩት ተዘርዝረዋል በ <emph>ጥያቄዎች</emph> ማስገቢያ ውስጥ: ይህ ማስገቢያ የ ዳታቤዝ ጥያቄዎችን ስለያዘ: የ \"ጥያቄ ማጠራቀሚያ\" ይባላል"
+msgstr "ጥያቄዎችን ይጠቀሙ መዝገቦች ለማግኘት የ ዳታ ሰንጠረዥ መሰረት ያደረገ በ አንዳንድ መመዘኛ: ሁሉም ጥያቄዎች ለ ዳታቤዝ የ ተፈጠሩት ተዘርዝረዋል በ <emph> ጥያቄዎች </emph> ማስገቢያ ውስጥ: ይህ ማስገቢያ የ ዳታቤዝ ጥያቄዎችን ስለያዘ: የ \"ጥያቄ ማጠራቀሚያ\" ይባላል"
#: 02000000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">Insert Database Columns</link> opens."
-msgstr "ይጎትቱ የ ሰንጠረዡን ስም ወይንም ጥያቄ ወደ ተከፈተው ሰነድ ወይንም ሰንጠረዥ ውስጥ: የ ንግግር <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">ዳታቤዝ አምዶች ማስገቢያ</link> ይከፈታል"
+msgstr "ይጎትቱ የ ሰንጠረዡን ስም ወይንም ጥያቄ ወደ ተከፈተው ሰነድ ወይንም ሰንጠረዥ ውስጥ: የ ንግግር <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\"> ዳታቤዝ አምዶች ማስገቢያ </link> ይከፈታል"
#: 02000000.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id3150443\n"
"help.text"
msgid "Decide which columns = data fields you want to include. You can also click the <emph>AutoFormat</emph> button and select a corresponding formatting type. Close the dialog."
-msgstr "ይወስኑ የትኞቹ አምዶች = ዳታ ሜዳ እርስዎ ማካተት እንደሚፈልጉ: እርስዎ እንዲሁም መጫን ይችላሉ የ <emph>በራሱ አቀራረብ</emph> ቁልፍ እና ይምረጡ ተመሳሳይ የ አቀራረብ አይነት: እና ንግግሩን ይዝጉ"
+msgstr "ይወስኑ የትኞቹ አምዶች = ዳታ ሜዳ እርስዎ ማካተት እንደሚፈልጉ: እርስዎ እንዲሁም መጫን ይችላሉ የ <emph> በራሱ አቀራረብ </emph> ቁልፍ እና ይምረጡ ተመሳሳይ የ አቀራረብ አይነት: እና ንግግሩን ይዝጉ"
#: 02000000.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3150503\n"
"help.text"
msgid "Print the document by choosing <emph>File - Print</emph>."
-msgstr "ሰነዱን ያትሙ በ መምረጥ <emph> ፋይል - ማተሚያ </emph>."
+msgstr "ሰነዱን ያትሙ በ መምረጥ <emph> ፋይል - ማተሚያ </emph>"
#: 02000000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"bm_id3150445\n"
"help.text"
msgid "<bookmark_value>queries; missing elements (Base)</bookmark_value>"
-msgstr "<bookmark_value>ጥያቄዎች; የ ጎደሉ አካላቶች (Base)</bookmark_value>"
+msgstr "<bookmark_value>ጥያቄዎች: የ ጎደሉ አካላቶች (Base)</bookmark_value>"
#: 02000002.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr "<ahelp hid=\".\">እርስዎን መክፈት ያስችሎታል ጥያቄ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Design View\">ንግፍ መመልከቻ</link> ምንም አካሎች ቢጎድሉ</ahelp> ይህ ምርጫ እርስዎን መወሰን ያስችሎታል ሌሎች ስህተቶች ይተዉ እንደሆን"
+msgstr "<ahelp hid=\".\">እርስዎን መክፈት ያስችሎታል ጥያቄ በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Design View\"> ንግፍ መመልከቻ </link> ምንም አካሎች ቢጎድሉ </ahelp> ይህ ምርጫ እርስዎን መወሰን ያስችሎታል ሌሎች ስህተቶች ይተዉ እንደሆን"
#: 02000002.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
-msgstr "<ahelp hid=\".\">እርስዎን የ ጥያቄ ንድፍ መክፈት ያስችሎታልበ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> እና ጥያቄውን መተርጎም እንደ <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> እርስዎ ማቋረጥ የሚችሉት የ native SQL mode ይህ $[officename] አረፍተ ነገር ተተርጉሞ ሲጨረስ ነው (የ ተጠቀሙት ሰንጠረዦች ወይንም ሜዳዎች በ ጥያቄ ውስጥ በ ትክክል ሲገኝ ነው)"
+msgstr "<ahelp hid=\".\">እርስዎን የ ጥያቄ ንድፍ መክፈት ያስችሎታል በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> እና ጥያቄውን መተርጎም እንደ <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link></ahelp> እርስዎ ማቋረጥ የሚችሉት የ native SQL mode ይህ $[officename] አረፍተ ነገር ተተርጉሞ ሲጨረስ ነው (የ ተጠቀሙት ሰንጠረዦች ወይንም ሜዳዎች በ ጥያቄ ውስጥ በ ትክክል ሲገኝ ነው)"
#: 02000002.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Query Design"
-msgstr "የንድፍ ጥያቄ"
+msgstr "የ ጥያቄ ንድፍ"
#: 02010100.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"bm_id3153323\n"
"help.text"
msgid "<bookmark_value>views; creating database views (Base)</bookmark_value> <bookmark_value>queries; creating in design view (Base)</bookmark_value> <bookmark_value>designing; queries (Base)</bookmark_value> <bookmark_value>design view; queries/views (Base)</bookmark_value> <bookmark_value>joining;tables (Base)</bookmark_value> <bookmark_value>tables in databases; joining for queries (Base)</bookmark_value> <bookmark_value>queries; joining tables (Base)</bookmark_value> <bookmark_value>tables in databases; relations (Base)</bookmark_value> <bookmark_value>relations; joining tables (Base)</bookmark_value> <bookmark_value>queries; deleting table links (Base)</bookmark_value> <bookmark_value>criteria of query design (Base)</bookmark_value> <bookmark_value>queries; formulating filter conditions (Base)</bookmark_value> <bookmark_value>filter conditions;in queries (Base)</bookmark_value> <bookmark_value>parameters; queries (Base)</bookmark_value> <bookmark_value>queries; parameter queries (Base)</bookmark_value> <bookmark_value>SQL; queries (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
-msgstr "<bookmark_value>መመልከቻ: ዳታቤዝ መመልከቻ መፍጠሪያ (Base)</bookmark_value> <bookmark_value>ጥያቄዎች: በ ንድፍ መመልከቻ ውስጥ መፍጠሪያ (Base)</bookmark_value> <bookmark_value>መንደፊያ: ጥያቄዎች (Base)</bookmark_value> <bookmark_value>ንድፍ መመልከቻ: ጥያቄዎች/መመልከቻ (Base)</bookmark_value> <bookmark_value>መጋጠሚያ: ሰንጠረዦች (Base)</bookmark_value> <bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ: መጋጠሚያ ለ ጥያቄዎች (Base)</bookmark_value> <bookmark_value>ጥያቄዎች: መጋጠሚያ: ሰንጠረዦች (Base)</bookmark_value> <bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ: ግንኙነት (Base)</bookmark_value> <bookmark_value>ግንኙነት: መጋጠሚያ: ሰንጠረዦች (Base)</bookmark_value> <bookmark_value>ጥያቄዎች: የ ሰንጠረዦች አገናኞች ማጥፊያ (Base)</bookmark_value> <bookmark_value>መመዘኛ ለ ጥያቄ ንድፍ (Base)</bookmark_value> <bookmark_value>ጥያቄዎች: የ መቀመሪያ ማጣሪያ ሁኔታዎች (Base)</bookmark_value> <bookmark_value>ሁኔታዎች ማጣሪያ: በ ጥያቄዎች ውስጥ (Base)</bookmark_value> <bookmark_value>ደንቦች: ጥያቄዎች (Base)</bookmark_value> <bookmark_value>ጥያቄዎች: ደንብ ጥያቄዎች (Base)</bookmark_value> <bookmark_value>SQL: ጥያቄዎች (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
+msgstr "<bookmark_value>መመልከቻ: ዳታቤዝ መመልከቻ መፍጠሪያ (ቤዝ)</bookmark_value> <bookmark_value>ጥያቄዎች: በ ንድፍ መመልከቻ ውስጥ መፍጠሪያ (ቤዝ)</bookmark_value> <bookmark_value>መንደፊያ: ጥያቄዎች (ቤዝ)</bookmark_value> <bookmark_value>ንድፍ መመልከቻ: ጥያቄዎች/መመልከቻ (ቤዝ)</bookmark_value> <bookmark_value>መጋጠሚያ: ሰንጠረዦች (ቤዝ)</bookmark_value> <bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ: መጋጠሚያ ለ ጥያቄዎች (ቤዝ)</bookmark_value> <bookmark_value>ጥያቄዎች: መጋጠሚያ: ሰንጠረዦች (ቤዝ)</bookmark_value> <bookmark_value>ሰንጠረዦች ከ ዳታቤዞች ውስጥ: ግንኙነት (ቤዝ)</bookmark_value> <bookmark_value>ግንኙነት: መጋጠሚያ: ሰንጠረዦች (ቤዝ)</bookmark_value> <bookmark_value>ጥያቄዎች: የ ሰንጠረዦች አገናኞች ማጥፊያ (ቤዝ)</bookmark_value> <bookmark_value>መመዘኛ ለ ጥያቄ ንድፍ (ቤዝ)</bookmark_value> <bookmark_value>ጥያቄዎች: የ መቀመሪያ ማጣሪያ ሁኔታዎች (ቤዝ)</bookmark_value> <bookmark_value>ሁኔታዎች ማጣሪያ: በ ጥያቄዎች ውስጥ (ቤዝ)</bookmark_value> <bookmark_value>ደንቦች: ጥያቄዎች (ቤዝ)</bookmark_value> <bookmark_value>ጥያቄዎች: ደንብ ጥያቄዎች (ቤዝ)</bookmark_value> <bookmark_value>SQL: ጥያቄዎች (ቤዝ)</bookmark_value> <bookmark_value>native SQL (ቤዝ)</bookmark_value>"
#: 02010100.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3156411\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Query Design View </emph>allows you to create and edit a database query.</ahelp>"
-msgstr "<ahelp hid=\".\">የ <emph>ጥያቄ ንድፍ መመልከቻ </emph>እርስዎን የ ዳታቤዝ ጥያቄ መፍጠር እና ማረም ያስችሎታል</ahelp>"
+msgstr "<ahelp hid=\".\">የ <emph> ጥያቄ ንድፍ መመልከቻ </emph> እርስዎን የ ዳታቤዝ ጥያቄ መፍጠር እና ማረም ያስችሎታል </ahelp>"
#: 02010100.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3159176\n"
"help.text"
msgid "Selecting the <emph>Create View</emph> command from the <emph>Tables</emph> tab page of a database document, you see the <emph>View Design</emph> window that resembles the <emph>Query Design</emph> window described here."
-msgstr "በ መምረጥ የ <emph>መመልከቻ መፍጠሪያ</emph> ትእዛዝ ከ <emph>ሰንጠረዥ</emph> tab ገጽ የ ዳታቤዝ ሰነድ ውስጥ: ይህ ይታያል በ <emph>ንድፍ መመልከቻ</emph> መስኮት የሚመስል የ <emph>ጥያቄ ንድፍ</emph> መስኮት እዚህ የተገለጸው"
+msgstr "በ መምረጥ የ <emph> መመልከቻ መፍጠሪያ </emph> ትእዛዝ ከ <emph> ሰንጠረዥ </emph> tab ገጽ የ ዳታቤዝ ሰነድ ውስጥ: ይህ ይታያል በ <emph> ንድፍ መመልከቻ </emph> መስኮት የሚመስል የ <emph> ጥያቄ ንድፍ </emph> መስኮት እዚህ የተገለጸው"
#: 02010100.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
-msgstr "ጥያቄ ለመፍጠር ይጫኑ በ <emph>ጥያቄዎች</emph> ምልክት ላይ: በ ዳታቤዝ ሰነድ ውስጥ እና ከዛ ይጫኑ <emph>ጥያቄ መፍጠሪያ በ ንደፍ መመልከቻ ውስጥ</emph>."
+msgstr "ጥያቄ ለ መፍጠር ይጫኑ በ <emph> ጥያቄዎች </emph> ምልክት ላይ: ከ ዳታቤዝ ሰነድ ውስጥ እና ከዛ ይጫኑ <emph> ጥያቄ መፍጠሪያ በ ንድፍ መመልከቻ ውስጥ </emph>"
#: 02010100.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id3150255\n"
"help.text"
msgid "The lower pane of the Design View is where you <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria\">criteria</link> for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+arrow key."
-msgstr "በ ንድፍ መመልከቻ የ ታችኛው ክፍል ነው እርስዎ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"define\">የሚገልጹት</link> ጥያቄውን: ጥያቄውን ለ መግለጽ የ ዳታቤዝ ይወስኑ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"field names\">የ ሜዳ ስሞች </link> እንዲያካትት እና የ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria\">መመዘኛ</link> ሜዳዎችን እንዲያሳይ: አምዶችን ለማዘጋጀት በ ታችኛው ክፍል በ ጥያቄ ንድፍ መመልከቻ ውስጥ: የ አምዱን ራስጌ ይጎትቱ ወደ አዲስ ቦታ: ወይንም ይምረጡ አምድ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+የ ቀስት ቁልፍ"
+msgstr "በ ንድፍ መመልከቻ የ ታችኛው ክፍል ነው እርስዎ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"define\"> የሚገልጹት </link> ጥያቄውን: ጥያቄውን ለ መግለጽ የ ዳታቤዝ ይወስኑ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"field names\"> የ ሜዳ ስሞች </link> እንዲያካትት እና የ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria\"> መመዘኛ </link> ሜዳዎችን እንዲያሳይ: አምዶችን ለማዘጋጀት በ ታችኛው ክፍል በ ጥያቄ ንድፍ መመልከቻ ውስጥ: የ አምዱን ራስጌ ይጎትቱ ወደ አዲስ ቦታ: ወይንም ይምረጡ አምድ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+የ ቀስት ቁልፍ"
#: 02010100.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3152474\n"
"help.text"
msgid "In the top of the query Design View window, the <link href=\"text/shared/main0214.xhp\" name=\"icons\">icons</link> of the <emph>Query Design</emph> Bar and the <emph>Design</emph> bar are displayed."
-msgstr "በ ጥያቄ ንድፍ መመልከቻ መስኮት ከ ላይ በኩል: የ <link href=\"text/shared/main0214.xhp\" name=\"icons\">ምልክት</link> በ <emph>ጥያቄ ንድፍ</emph> መደርደሪያ እና የ <emph>ንድፍ</emph> መደርደሪያ ይታያል"
+msgstr "በ ጥያቄ ንድፍ መመልከቻ መስኮት ከ ላይ በኩል: የ <link href=\"text/shared/main0214.xhp\" name=\"icons\"> ምልክት </link> በ <emph> ጥያቄ ንድፍ </emph> መደርደሪያ እና የ <emph> ንድፍ </emph> መደርደሪያ ይታያል"
#: 02010100.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "To remove the table from Design View, click the upper border of the table window and display the context menu. You can use the <emph>Delete</emph> command to remove the table from the Design View. Another option is to press the Delete key."
-msgstr "ሰንጠረዥ ከ ንድፍ መመልከቻ ውስጥ ለ ማስወገድ: ይጫኑ የ ላይኛውን ድንበር የ ሰንጠረዡን መስኮት እና የ አገባብ ዝርዝር ማሳያ: እርስዎ መጠቀም ይችላሉ የ <emph>ማጥፊያ</emph> ትእዛዝ ሰንጠረዥ ለ ማስወገድ ከ ንድፍ መመልከቻ ውስጥ: ሌላው ምርጫ የ ማጥፊያ ቁልፍ መጫን ነው"
+msgstr "ሰንጠረዥ ከ ንድፍ መመልከቻ ውስጥ ለ ማስወገድ: ይጫኑ የ ላይኛውን ድንበር የ ሰንጠረዡን መስኮት እና የ አገባብ ዝርዝር ማሳያ: እርስዎ መጠቀም ይችላሉ የ <emph> ማጥፊያ </emph> ትእዛዝ ሰንጠረዥ ለ ማስወገድ ከ ንድፍ መመልከቻ ውስጥ: ሌላው ምርጫ የ ማጥፊያ ቁልፍ መጫን ነው"
#: 02010100.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id3150094\n"
"help.text"
msgid "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Edit Join Properties.</ahelp> Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command <emph>Edit</emph>. Some databases support only a subset of the possible join types."
-msgstr "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">ማረሚያ ባህሪዎች ማጋጠሚያ</ahelp> በ አማራጭ ይጫኑ Tab መስመሩ እስከሚመረጥ ድረስ: እና ከዛ ይጫኑ Shift+F10 ለ ማሳየት የ አገባብ ዝርዝር እና ከዛ ይምረጡ ትእዛዝ <emph>ማረሚያ</emph> አንዳንድ ዳታቤዞች የሚደግፉት ንዑስ ስብስብ ብቻ ነው የሚቻለውን የ መጋጠሚያ አይነት"
+msgstr "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">ማረሚያ ባህሪዎች ማጋጠሚያ </ahelp> በ አማራጭ ይጫኑ Tab መስመሩ እስከሚመረጥ ድረስ: እና ከዛ ይጫኑ Shift+F10 ለ ማሳየት የ አገባብ ዝርዝር እና ከዛ ይምረጡ ትእዛዝ <emph> ማረሚያ </emph> አንዳንድ ዳታቤዞች የሚደግፉት ንዑስ ስብስብ ብቻ ነው የሚቻለውን የ መጋጠሚያ አይነት"
#: 02010100.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"par_id3156372\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Enter the name of the data field that you referred to in the Query. All settings made in the lower rows refer to this field.</ahelp> If you activate a cell with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields and the criteria is valid for all table fields."
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">የ ዳታ ሜዳ ስም ያስገቡ እርስዎ በ ጥያቄ ውስጥ ያመሳከሩትን: ሁሉም ማሰናጃዎች በ ታችኛው ረድፍ በኩል ያሉት የሚያመሳክሩት ይህን ሜዳ ነው</ahelp> እርስዎ በ አይጥ ክፍል ካስጀመሩ ይጫኑ ለ እርስዎ የ ቀስት ቁልፍ ይታያል: እርስዎን ሜዳ መምረጥ ያስችሎታል: የ \"ሰንጠረዥ ስም.*\" ምርጫ ይመርጣል ሁሉንም የ ዳታ ሜዳዎች እና መለያው ለ ሁሉም ሰንጠረዥ ሜዳዎች ዋጋ አለው"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">የ ዳታ ሜዳ ስም ያስገቡ እርስዎ በ ጥያቄ ውስጥ ያመሳከሩትን: ሁሉም ማሰናጃዎች በ ታችኛው ረድፍ በኩል ያሉት የሚያመሳክሩት ይህን ሜዳ ነው </ahelp> እርስዎ በ አይጥ ክፍል ካስጀመሩ ይጫኑ ለ እርስዎ የ ቀስት ቁልፍ ይታያል: እርስዎን ሜዳ መምረጥ ያስችሎታል: የ \"ሰንጠረዥ ስም:*\" ምርጫ ይመርጣል ሁሉንም የ ዳታ ሜዳዎች እና መለያው ለ ሁሉም ሰንጠረዥ ሜዳዎች ዋጋ አለው"
#: 02010100.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Specifies an alias. This alias will be listed in a query instead of the field name. This makes it possible to use user-defined column labels.</ahelp> For example, if the data field has the name PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as alias."
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">ሀሰት መወሰኛ: ይህ ሀሰት በ ጥያቄ ዝርዝር ውስጥ ይቀመጣል በ ሜዳ ስም ውስጥ ከ ማስቀመጥ ይልቅ: ይህ ሁኔታ በተጠቃሚ-የሚገለጽ የ አምድ ምልክቶች መጠቀም ያስችለዋል</ahelp> ለምሳሌ: የ ዳታ ሜዳው ስም ካለው የ አካል ቁጥር እና ከ ስም ይልቅ: እርስዎ እንዲታይ ከ ፈለጉ የ አካል ቁጥር በ ጥያቄ ውስጥ ይታያል: ያስገቡ የ አካል ቁጥር እንደ ሀሰት"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">ሀሰት መወሰኛ: ይህ ሀሰት በ ጥያቄ ዝርዝር ውስጥ ይቀመጣል በ ሜዳ ስም ውስጥ ከ ማስቀመጥ ይልቅ: ይህ ሁኔታ በተጠቃሚ-የሚገለጽ የ አምድ ምልክቶች መጠቀም ያስችለዋል </ahelp> ለምሳሌ: የ ዳታ ሜዳው ስም ካለው የ አካል ቁጥር እና ከ ስም ይልቅ: እርስዎ እንዲታይ ከ ፈለጉ የ አካል ቁጥር በ ጥያቄ ውስጥ ይታያል: ያስገቡ የ አካል ቁጥር እንደ ሀሰት"
#: 02010100.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3146133\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">If you mark the <emph>Visible</emph> property for a data field, that field will be visible in the query</ahelp>. If you only use a data field to formulate a condition, you do not necessarily need to show it."
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">እርስዎ ምልክት ካደረጉ <emph>የሚታይ</emph> ባህሪዎች ለ ዳታ ሜዳ: ሜዳው ይታያል በ ጥያቄ ውስጥ</ahelp> እርስዎ የሚጠቀሙ ከሆነ የ ዳታ ሜዳ ለ ሁኔታዎች መቀመሪያ: እርስዎ ማሳየት የለብዎትም"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">እርስዎ ምልክት ካደረጉ <emph> የሚታይ </emph> ባህሪዎች ለ ዳታ ሜዳ: ሜዳው ይታያል በ ጥያቄ ውስጥ </ahelp> እርስዎ የሚጠቀሙ ከሆነ የ ዳታ ሜዳ ለ ሁኔታዎች መቀመሪያ: እርስዎ ማሳየት የለብዎትም"
#: 02010100.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3145134\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field should be filtered.</ahelp>"
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">መወሰኛ የ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria \">መመዘኛ </link>የ ዳታ ሜዳ ውስጥ ይዞታው የሚጣራበት</ahelp>"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">መወሰኛ የ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria \"> መመዘኛ </link> የ ዳታ ሜዳ ውስጥ ይዞታው የሚጣራበት </ahelp>"
#: 02010100.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3153233\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Select a function to run in the query here.</ahelp> The functions you can run here depend on the database."
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">ይምረጡ እዚህ በ ጥያቄ ውስጥ ማስኬድ የሚፈልጉትን ተግባር </ahelp> እዚህ የሚያስኬዱት ተግባር እንደ ዳታቤዙ አይነት የወሰናል"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">ይምረጡ እዚህ በ ጥያቄ ውስጥ ማስኬድ የሚፈልጉትን ተግባር </ahelp> እዚህ የሚያስኬዱት ተግባር እንደ ዳታቤዙ አይነት ይወሰናል"
#: 02010100.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id8760818\n"
"help.text"
msgid "If you are working with the HSQL database, the list box in the <emph>Function</emph> row offers you the following options:"
-msgstr "እርስዎ በ HSQL ዳታቤዝ የሚሰሩ ከሆነ: የ ዝርዝር ሳጥን የ <emph>ተግባር</emph> ረድፍ የሚያቀርበው ምርጫዎች እንደሚከተለው ነው:"
+msgstr "እርስዎ በ HSQL ዳታቤዝ የሚሰሩ ከሆነ: የ ዝርዝር ሳጥን የ <emph> ተግባር </emph> ረድፍ የሚያቀርበው ምርጫዎች እንደሚከተለው ነው:"
#: 02010100.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"par_id3159205\n"
"help.text"
msgid "Except for the <emph>Group</emph> function, the above functions are so-called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database system in use and on the current state of the Base driver."
-msgstr "ከ <emph>ቡድን</emph> ተግባሮች በስተቀር ከ ላይ ያሉት ተግባሮች የ ስብስብ ተግባሮች ይባ-ላሉ እነዚህ ተግባሮች ዳታ የሚያሰሉ ናቸው ለ ውጤቱ ማጠቃለያ መፍጠሪያ: ተጨማሪ ተግባሮች በ ሳጥን ውስጥ ያልተዘረዘሩ ሊካተቱ ይችሉ ይሆናል: ይህን የሚወሰነው የ ዳታቤዝ ስርአት አሁን የሚጠቀሙት እና የ አሁኑ ሁኔታ Base driver ነው"
+msgstr "ከ <emph> ቡድን </emph> ተግባሮች በስተቀር ከ ላይ ያሉት ተግባሮች የ ስብስብ ተግባሮች ይባ-ላሉ እነዚህ ተግባሮች ዳታ የሚያሰሉ ናቸው ለ ውጤቱ ማጠቃለያ መፍጠሪያ: ተጨማሪ ተግባሮች በ ሳጥን ውስጥ ያልተዘረዘሩ ሊካተቱ ይችሉ ይሆናል: ይህን የሚወሰነው የ ዳታቤዝ ስርአት አሁን የሚጠቀሙት እና የ አሁኑ ሁኔታ Base driver ነው"
#: 02010100.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If the query is not to be displayed in the column header, enter the desired name under <emph>Alias</emph>."
-msgstr "እርስዎ መመደብ ይችላሉ የ ሀሰት ተግባር መጥሪያዎች: ጥያቄው በ አምድ ራስጌ ላይ የማይታይ ከሆነ: የሚፈልጉትን ስም ያስገቡ በ <emph>ሀስት</emph> ውስጥ"
+msgstr "እርስዎ መመደብ ይችላሉ የ ሀሰት ተግባር መጥሪያዎች: ጥያቄው በ አምድ ራስጌ ላይ የማይታይ ከሆነ: የሚፈልጉትን ስም ያስገቡ በ <emph> ሀስት </emph> ውስጥ"
#: 02010100.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"par_id3149134\n"
"help.text"
msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't see it that strict)."
-msgstr "የ ጽሁፍ ሜዳ ይዞታ ለ መጠየቅ: እርስዎ ማስገባት አለብዎት ነጠላ ትምህርተ ጥቅስ በ አገላለጽ መካከል: መለያው በ አቢይ ፊደል እና በ ትንንሽ ፊደል መካከል እንደ ዳታቤዝ አጠቃቀም ይለያያል : እንደ ትርጉሙ: ፊደል-መመጠኛ ነው (አንዳንድ ዳታቤዝ ይህን መከልከያ አያዩትም)"
+msgstr "የ ጽሁፍ ሜዳ ይዞታ ለ መጠየቅ: እርስዎ ማስገባት አለብዎት ነጠላ ትምህርተ ጥቅስ በ አገላለጽ መካከል: መለያው የ ላይኛው ጉዳይ ፊደል እና የ ታችኛው ጉዳይ ፊደል መካከል እንደ ዳታቤዝ አጠቃቀም ይለያያል: እንደ ትርጉሙ: ፊደል-መመጠኛ ነው (አንዳንድ ዳታቤዝ ይህን መከልከያ አያዩትም)"
#: 02010100.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id31509643\n"
"help.text"
msgid "{ts 'YYYY-MM-DD HH:MI:SS[.SS]'}"
-msgstr "{ጊዜs 'አአአአ-ወወ-ቀቀ ሰሰ:ደደ:ሰሰ[.ሰሰ]'}"
+msgstr "{ጊዜ 'አአአአ-ወወ-ቀቀ ሰሰ:ደደ:ሰሰ[.ሰሰ]'}"
#: 02010100.xhp
msgctxt ""
@@ -2582,7 +2582,7 @@ msgctxt ""
"par_id191120151905518123\n"
"help.text"
msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">WHERE \"Field\" = :Parameter_name</item>"
-msgstr "በ ቀላሉ ጉዳይ: ተጠቃሚ ዋጋ በሚያስገባበት እኩል የሚሆን ከ ጥራት ጋር: የ ደንብ ስም ቀደም ያለው ኮለን (:) በ ቀላሉ ይገባል በ መመዘኛው ረድፍ ውስጥ: በ <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL ዘዴ</link> ውስጥ: ይህ መጻፍ አለበት እንደ <item type=\"input\"> የት \"ሜዳ\" = :ደንብ_ስም</item>"
+msgstr "በ ቀላሉ ጉዳይ: ተጠቃሚ ዋጋ በሚያስገባበት እኩል የሚሆን ከ ጥራት ጋር: የ ደንብ ስም ቀደም ያለው ኮለን (:) በ ቀላሉ ይገባል በ መመዘኛው ረድፍ ውስጥ: በ <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\"> SQL ዘዴ </link> ውስጥ: ይህ መጻፍ አለበት እንደ <item type=\"input\"> የት \"ሜዳ\" = :ደንብ_ስም </item>"
#: 02010100.xhp
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"par_id191120151931441881\n"
"help.text"
msgid "A useful construction for selecting records based on parts of a text field's content is to add a hidden column with <item type=\"input\">\"LIKE '%' || :Part_of_field || '%'\"</item> as the criterion. This will select records with an exact match. If a case-insensitive test is wanted, one solution is to use <item type=\"input\">LOWER (Field_Name)</item> as the field and <item type=\"input\">LIKE LOWER ( '%' || :Part_of_field || '%' )</item> as the criterion. Note that the spaces in the criterion are important; if they are left out the SQL parser interprets the entire criterion as a string to be matched. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">LOWER ( \"Field_Name\" ) LIKE LOWER ( '%' || :Part_of_field || '%' )</item>."
-msgstr "ለ ተመረጡት መዝገቦች ጠቃሚ መገንቢያ የ ጽሁፍ ሜዳዎች ይዞታ መሰረት ያደረገ የ ተደበቀ አምድ መጨመር ነው በ <item type=\"input\">\"እንደ '%' || :የ ሜዳ_አካል_ነው || '%'\"</item> እንደ መለያ: ይህ ተመሳሳይ መዝገቦች በ ትክክል ይመርጣል: የ ፊደል-መመጠኛ መሞከሪያ ካስፈለገ: አንድ የሚጠቀሙት መፍትሄ <item type=\"input\"> ዝቅተኛ (የ ሜዳ_ስም) </item> እንደ ሜዳ እና <item type=\"input\">እንደ ዝቅተኛ ( '%' || : የ ሜዳ_አካል_ነው || '%' )</item> እንደ መለያ: ማስታወሻ ክፍተት እንደ መለያ በጣም አስፈላጊ ነው: ክፍተት ካላስገቡ የ SQL ተንታኝ የሚተረጉመው ጠቅላላ መለያው እንደ አንድ ሀረግ ተመሳሳይ እንደሚፈለግ ነው: በ <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL mode</link> ይህ መጻፍ አለበት እንደ <item type=\"input\"> ዝቅተኛ ( \"የ ሜዳ_ስም\" ) እንደ ዝቅተኛ ( '%' || : የ ሜዳ_አካል_ነው || '%' )</item>."
+msgstr "ለ ተመረጡት መዝገቦች ጠቃሚ መገንቢያ የ ጽሁፍ ሜዳዎች ይዞታ መሰረት ያደረገ የ ተደበቀ አምድ መጨመር ነው በ <item type=\"input\">\"እንደ '%' || :የ ሜዳ_አካል_ነው || '%'\"</item> እንደ መለያ: ይህ ተመሳሳይ መዝገቦች በ ትክክል ይመርጣል: የ ፊደል-መመጠኛ መሞከሪያ ካስፈለገ: አንድ የሚጠቀሙት መፍትሄ <item type=\"input\"> ዝቅተኛ (የ ሜዳ_ስም) </item> እንደ ሜዳ እና <item type=\"input\"> እንደ ዝቅተኛ ( '%' || : የ ሜዳ_አካል_ነው || '%' )</item> እንደ መለያ: ማስታወሻ ክፍተት እንደ መለያ በጣም አስፈላጊ ነው: ክፍተት ካላስገቡ የ SQL ተንታኝ የሚተረጉመው ጠቅላላ መለያው እንደ አንድ ሀረግ ተመሳሳይ እንደሚፈለግ ነው: በ <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\"> SQL mode </link> ይህ መጻፍ አለበት እንደ <item type=\"input\"> ዝቅተኛ ( \"የ ሜዳ_ስም\" ) እንደ ዝቅተኛ ( '%' || : የ ሜዳ_አካል_ነው || '%' )</item>"
#: 02010100.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3152570\n"
"help.text"
msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query design, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the <emph>Switch Design View On/Off </emph>button, you change to the SQL view, you can see the SQL commands for a query that has been created previously."
-msgstr "ለ $[officename] እርስዎ ምንም እውቀት አያስፈልጎትም የ SQL ለ በርካታ ጥያቄዎች: እርስዎ ምንም ማስገባት የለቦትም የ SQL ኮድ: እርስዎ ከ ፈጠሩ ጥያቄ በ ጥያቄ ንድፍ $[officename] ራሱ በራሱ ይቀይራል የ እርስዎን ትእዛዝ ወደ ተመሳሳይ የ SQL አጋባብ: ከሆነ እርስዎ እርዳታ በ <emph>ንድፍ መቀየሪያ መመልከቻ ማብሪያ/ማጥፊያ </emph>ቁልፍ: እርስዎ መቀየር ይችላሉ የ SQL መመልከቻ: እርስዎ መመልከት ይችላሉ የ SQL ትእዛዞች ለ ጥያቄ ቀደም ብሎ ለ ተፈጠረው"
+msgstr "ለ $[officename] እርስዎ ምንም እውቀት አያስፈልጎትም የ SQL ለ በርካታ ጥያቄዎች: እርስዎ ምንም ማስገባት የለቦትም የ SQL ኮድ: እርስዎ ከ ፈጠሩ ጥያቄ በ ጥያቄ ንድፍ $[officename] ራሱ በራሱ ይቀይራል የ እርስዎን ትእዛዝ ወደ ተመሳሳይ የ SQL አጋባብ: ከሆነ እርስዎ እርዳታ በ <emph> ንድፍ መቀየሪያ መመልከቻ ማብሪያ/ማጥፊያ </emph> ቁልፍ: እርስዎ መቀየር ይችላሉ የ SQL መመልከቻ: እርስዎ መመልከት ይችላሉ የ SQL ትእዛዞች ለ ጥያቄ ቀደም ብሎ ለ ተፈጠረው"
#: 02010100.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id3146842\n"
"help.text"
msgid "If you enter the SQL code manually, you can create SQL-specific queries that are not supported by the graphical interface in <emph>Query design</emph>. These queries must be executed in native SQL mode."
-msgstr "እርስዎ በ እጅ የ SQL ካስገቡ: እርስዎ መፍጠር ይችላሉ SQL-የተወሰነ ጥያቄዎች በ ንድፍ ገጽታ ያልተደገፉ በ <emph>ጥያቄ ንድፍ</emph>እነዚህ ጥያቄዎች መፈጸም አለባቸው በ native SQL ዘዴ"
+msgstr "እርስዎ በ እጅ የ SQL ካስገቡ: እርስዎ መፍጠር ይችላሉ SQL-የተወሰነ ጥያቄዎች በ ንድፍ ገጽታ ያልተደገፉ በ <emph> ጥያቄ ንድፍ </emph> እነዚህ ጥያቄዎች መፈጸም አለባቸው በ native SQL ዘዴ ውስጥ"
#: 02010100.xhp
msgctxt ""
@@ -2702,7 +2702,7 @@ msgctxt ""
"bm_id3154015\n"
"help.text"
msgid "<bookmark_value>links;relational databases (Base)</bookmark_value> <bookmark_value>inner joins (Base)</bookmark_value> <bookmark_value>joins in databases (Base)</bookmark_value> <bookmark_value>left joins (Base)</bookmark_value> <bookmark_value>right joins (Base)</bookmark_value> <bookmark_value>full joins (Base)</bookmark_value>"
-msgstr "<bookmark_value>አገናኞች: ተዛማጅ ዳታቤዝ (Base)</bookmark_value> <bookmark_value>የ ውስጥ ማገናኛ (Base)</bookmark_value> <bookmark_value>ማገናኛ ከ ዳታቤዝ (Base)</bookmark_value> <bookmark_value>በ ግራ ማገናኛ (Base)</bookmark_value> <bookmark_value>በ ቀኝ ማገናኛ (Base)</bookmark_value> <bookmark_value>በ ሙሉ ማገናኛ (Base)</bookmark_value>"
+msgstr "<bookmark_value>አገናኞች: ተዛማጅ ዳታቤዝ (ቤዝ)</bookmark_value> <bookmark_value>የ ውስጥ ማገናኛ (ቤዝ)</bookmark_value> <bookmark_value>ማገናኛ ከ ዳታቤዝ (ቤዝ)</bookmark_value> <bookmark_value>በ ግራ ማገናኛ (ቤዝ)</bookmark_value> <bookmark_value>በ ቀኝ ማገናኛ (ቤዝ)</bookmark_value> <bookmark_value>በ ሙሉ ማገናኛ (ቤዝ)</bookmark_value>"
#: 02010101.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"par_id3152482\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">Specifies the link type of the selected link.</ahelp> Some databases support only a subset of the possible types."
-msgstr "<ahelp hid=\"dbaccess/ui/joindialog/type\">የ አገናኝ አይነት መወሰኛ ለ ተመረጠው አገናኝ</ahelp>አንዳንድ ዳታቤዞች ንዑስ ስብስብ የሚቻለውን አይነት ይደግፋሉ"
+msgstr "<ahelp hid=\"dbaccess/ui/joindialog/type\">የ አገናኝ አይነት መወሰኛ ለ ተመረጠው አገናኝ </ahelp> አንዳንድ ዳታቤዞች ንዑስ ስብስብ የሚቻለውን አይነት ይደግፋሉ"
#: 02010101.xhp
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"bm_id3156136\n"
"help.text"
msgid "<bookmark_value>forms; general information (Base)</bookmark_value>"
-msgstr "<bookmark_value>መፍጠሪያ; ባጠቃላይ መረጃ (Base)</bookmark_value>"
+msgstr "<bookmark_value>መፍጠሪያ: ባጠቃላይ መረጃ (ቤዝ)</bookmark_value>"
#: 04000000.xhp
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"bm_id3148668\n"
"help.text"
msgid "<bookmark_value>forms; designing (Base)</bookmark_value>"
-msgstr "<bookmark_value>ፎርሞች; ንድፍ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ፎርሞች: ንድፍ (ቤዝ)</bookmark_value>"
#: 04030000.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">functions</link> needed to edit a form. More functions can be found in the <emph>Form Design</emph> bar and <emph>More Controls</emph> bar."
-msgstr "መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ የያዘው የ <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">ተግባሮች</link> ፎርም ለማረም ነው: ተጨማሪ ተግባሮች እዚህ ይገኛሉ በ <emph>ፎርም ንድፍ</emph> መደርደሪያ ላይ እና <emph>ተጨማሪ መቆጣጠሪያ</emph> መደርደሪያ"
+msgstr "መክፈቻ የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ: የ ፎርም መቆጣጠሪያ እቃ መደርደሪያ የያዘው የ <link href=\"text/shared/02/01170000.xhp\" name=\"functions\"> ተግባሮች </link> ፎርም ለማረም ነው: ተጨማሪ ተግባሮች እዚህ ይገኛሉ በ <emph> ፎርም ንድፍ </emph> መደርደሪያ ላይ እና <emph> ተጨማሪ መቆጣጠሪያ </emph> መደርደሪያ"
#: 04030000.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "If a <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\">table is open</link>, there are several functions available to edit the data."
-msgstr "ይህ <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\">ሰንጠረዥ ክፍት ከሆነ</link> በርካታ ተግባሮች አሉ ዝግጁ ዳታ ለማረም"
+msgstr "ይህ <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\"> ሰንጠረዥ ክፍት ከሆነ </link> በርካታ ተግባሮች አሉ ዝግጁ ዳታ ለማረም"
#: 05000003.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "The window has its own menu bar. It also contains the following new command: <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"Index Design\"><emph>Index Design</emph></link>"
-msgstr "መስኮቱ የራሱ ዝርዝር መደርደሪያ አለው: እንዲሁም እነዚህን አዲስ ትእዛዝ ያካትታል : <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"Index Design\"><emph>የ ማውጫ ንድፍ</emph></link>"
+msgstr "መስኮቱ የራሱ ዝርዝር መደርደሪያ አለው: እንዲሁም እነዚህን አዲስ ትእዛዝ ያካትታል: <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"Index Design\"><emph> የ ማውጫ ንድፍ </emph></link>"
#: 05010000.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/05010100.xhp\" name=\"Index design\">Index design</link>"
-msgstr "<link href=\"text/shared/explorer/database/05010100.xhp\" name=\"Index design\">የማውጫ ንድፍ</link>"
+msgstr "<link href=\"text/shared/explorer/database/05010100.xhp\" name=\"Index design\">የ ማውጫ ንድፍ</link>"
#: 05010100.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"hd_id3153323\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">Relations</link>"
-msgstr "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">ዝምድናው</link>"
+msgstr "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">ግንኙነቱ</link>"
#: 05020000.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"bm_id3146957\n"
"help.text"
msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ ግንኙነት (Base)</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ ግንኙነት (ቤዝ)</bookmark_value>"
#: 05020000.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr "ይህ ትእዛዝ የሚከፍተው የ <emph>ዳታቤዝ ግንኙነት </emph>መስኮት ነው: እርስዎን ግንኙነቱን መግለጽ ያስችሎታል በ ተለያዩ የ ዳታቤዝ ሰንጠረዥ መካከል"
+msgstr "ይህ ትእዛዝ የሚከፍተው የ <emph> ዳታቤዝ ግንኙነት </emph> መስኮት ነው: እርስዎን ግንኙነቱን መግለጽ ያስችሎታል በ ተለያዩ የ ዳታቤዝ ሰንጠረዥ መካከል"
#: 05020000.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
-msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">እዚህ እርስዎ ማገናኘት ይችላሉ አንድ ላይ ሰንጠረዥ ከ አሁኑ ዳታቤዝ በ መደበኛ የ ዳታ ሜዳዎች </ahelp> ይጫኑ የ <emph>አዲስ ግንኙነት</emph> ምልክት ለ መፍጠር ግንኙነት ወይንም በ ቀላሉ ይጎትቱ-እና-ይጣሉ በ አይጥ መጠቆሚያው"
+msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">እዚህ እርስዎ ማገናኘት ይችላሉ አንድ ላይ ሰንጠረዥ ከ አሁኑ ዳታቤዝ በ መደበኛ የ ዳታ ሜዳዎች </ahelp> ይጫኑ የ <emph> አዲስ ግንኙነት </emph> ምልክት ለ መፍጠር ግንኙነት ወይንም በ ቀላሉ ይጎትቱ-እና-ይጣሉ በ አይጥ መጠቆሚያው"
#: 05020000.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"bm_id3148922\n"
"help.text"
msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
-msgstr "<bookmark_value>ቀዳሚ ቁልፎች;ማስገቢያ (Base)</bookmark_value><bookmark_value>ቁልፎች;ቀዳሚ ቁልፎች (Base)</bookmark_value><bookmark_value>የ ውጪ ቁልፎች (Base)</bookmark_value>"
+msgstr "<bookmark_value>ቀዳሚ ቁልፎች: ማስገቢያ (ቤዝ)</bookmark_value><bookmark_value>ቁልፎች: ቀዳሚ ቁልፎች (ቤዝ)</bookmark_value><bookmark_value>የ ውጪ ቁልፎች (ቤዝ)</bookmark_value>"
#: 05020000.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"bm_id3155430\n"
"help.text"
msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr "<bookmark_value>ግንኙነት; መፍጠሪያ እና ማጥፊያ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ግንኙነት: መፍጠሪያ እና ማጥፊያ (ቤዝ)</bookmark_value>"
#: 05020000.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_id3149984\n"
"help.text"
msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr "በ አማራጭ እርስዎ ይጫኑ የ <emph>አዲስ ግንኙነት</emph> ምልክት ከ ግንኙነት ሜዳ በ ላይ በኩል እና ይግለጹ ግንኙነት በ ሁለት ሰንጠረዦች መካከል በ <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>ግንኙነቶች</emph></link> ንግግር ውስጥ"
+msgstr "በ አማራጭ እርስዎ ይጫኑ የ <emph> አዲስ ግንኙነት </emph> ምልክት ከ ግንኙነት ሜዳ በ ላይ በኩል እና ይግለጹ ግንኙነት በ ሁለት ሰንጠረዦች መካከል በ <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph> ግንኙነቶች </emph></link> ንግግር ውስጥ"
#: 05020000.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the external database."
-msgstr "እርስዎ ከ ተጠቀሙ $[officename] እንደ የ ፊት-መጨረሻ ለ ዳታቤዝ ግንኙነት: የ መፍጠሪያ እና የ ማጥፊያ ግንኙነቶች አይቀመጥም በ ማስታወሻ መካከል በ $[officename], ነገር ግን በ ቀጥታ ወደ ፊት ይተላለፋል ወደ ውጪ ዳታቤዝ"
+msgstr "እርስዎ ከ ተጠቀሙ $[officename] እንደ የ ፊት-መጨረሻ ለ ዳታቤዝ ግንኙነት: የ መፍጠሪያ እና የ ማጥፊያ ግንኙነቶች አይቀመጥም በ ማስታወሻ መካከል በ $[officename]: ነገር ግን በ ቀጥታ ወደ ፊት ይተላለፋል ወደ ውጪ ዳታቤዝ"
#: 05020000.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
-msgstr "<bookmark_value>ግንኙነቶች; ባህሪዎች (Base)</bookmark_value><bookmark_value>ቁልፍ ሜዳዎች ለ ግንኙነቶች (Base)</bookmark_value><bookmark_value>cascading ማሻሻያ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ግንኙነቶች: ባህሪዎች (ቤዝ)</bookmark_value><bookmark_value>ቁልፍ ሜዳዎች ለ ግንኙነቶች (ቤዝ)</bookmark_value><bookmark_value>cascading ማሻሻያ (ቤዝ)</bookmark_value>"
#: 05020100.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"bm_id3155535\n"
"help.text"
msgid "<bookmark_value>queries; copying (Base)</bookmark_value><bookmark_value>tables in databases; copying database tables (Base)</bookmark_value>"
-msgstr "<bookmark_value>ጥያቄዎች; ኮፒ በማድረግ ላይ (Base)</bookmark_value><bookmark_value>ሰንጠረዦች ከ ዳታቤዝ ውስጥ; ኮፒ በማድረግ ላይ ከ ዳታቤዝ ሰንጠረዥ ውስጥ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ጥያቄዎች: ኮፒ በማድረግ ላይ (ቤዝ)</bookmark_value><bookmark_value>ሰንጠረዦች ከ ዳታቤዝ ውስጥ: ኮፒ በማድረግ ላይ ከ ዳታቤዝ ሰንጠረዥ ውስጥ (ቤዝ)</bookmark_value>"
#: 05030000.xhp
msgctxt ""
@@ -4238,7 +4238,7 @@ msgctxt ""
"par_id3149264\n"
"help.text"
msgid "You can copy a table by dragging and dropping the table onto the table area of a database file window. The <emph>Copy table </emph>dialog appears."
-msgstr "እርስዎ ኮፒ ማድረግ ይችላሉ በ መጎተት እና በ መጣል ሰንጠረዥ ወደ ዳታቤዝ ፋይል መስኮት ቦታ: የ <emph>ኮፒ ሰንጠረዥ </emph>ንግግር ይታያል"
+msgstr "እርስዎ ኮፒ ማድረግ ይችላሉ በ መጎተት እና በ መጣል ሰንጠረዥ ወደ ዳታቤዝ ፋይል መስኮት ቦታ: የ <emph> ኮፒ ሰንጠረዥ </emph> ንግግር ይታያል"
#: 05030100.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_id3156117\n"
"help.text"
msgid "Match the data field names in the<emph> Copy Table</emph> dialog on the <link href=\"text/shared/explorer/database/05030400.xhp\" name=\"Apply Columns\">Apply Columns</link> page."
-msgstr "የ ዳታ ሜዳ ስሞች ማመሳሰያ በ<emph> ሰንጠረዥ ኮፒ ማድረጊያ</emph> ንግግር በ <link href=\"text/shared/explorer/database/05030400.xhp\" name=\"Apply Columns\">አምዶች መፈጸሚያ</link> ገጽ ውስጥ"
+msgstr "የ ዳታ ሜዳ ስሞች ማመሳሰያ በ <emph> ሰንጠረዥ ኮፒ ማድረጊያ </emph> ንግግር በ <link href=\"text/shared/explorer/database/05030400.xhp\" name=\"Apply Columns\"> አምዶች መፈጸሚያ </link> ገጽ ውስጥ"
#: 05030100.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"bm_id3152594\n"
"help.text"
msgid "<bookmark_value>access rights for database tables (Base)</bookmark_value><bookmark_value>tables in databases; access rights to (Base)</bookmark_value>"
-msgstr "<bookmark_value>መድረሻ ፍቃድ ለ ዳታቤዝ ሰንጠረዥ (Base)</bookmark_value><bookmark_value>ሰንጠረዥ ዳታቤዝ ውስጥ; መድረሻ ፍቃድ ወደ (Base)</bookmark_value>"
+msgstr "<bookmark_value>መድረሻ ፍቃድ ለ ዳታቤዝ ሰንጠረዥ (ቤዝ)</bookmark_value><bookmark_value>ሰንጠረዥ ዳታቤዝ ውስጥ: መድረሻ ፍቃድ ወደ (ቤዝ)</bookmark_value>"
#: 05040100.xhp
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"bm_id3155449\n"
"help.text"
msgid "<bookmark_value>databases;drag and drop (Base)</bookmark_value>"
-msgstr "<bookmark_value>ዳታቤዞች;መጎተቻ እና መጣያ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ዳታቤዞች: መጎተቻ እና መጣያ (ቤዝ)</bookmark_value>"
#: 11000002.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/shared/explorer/database/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">መክፈቻ የ <link href=\"text/shared/explorer/database/11030100.xhp\" name=\"Indexes\"><emph>ማውጫዎች</emph></link> ንግግር: እርስዎ የሚያደራጁበት የ ሰንጠረዥ ማውጫ ለ አሁኑ ዳታቤዝ ዳታቤዝ</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">መክፈቻ የ <link href=\"text/shared/explorer/database/11030100.xhp\" name=\"Indexes\"><emph> ማውጫዎች </emph></link> ንግግር: እርስዎ የሚያደራጁበት የ ሰንጠረዥ ማውጫ ለ አሁኑ ዳታቤዝ ዳታቤዝ </ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -5430,7 +5430,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "<ahelp hid=\".\">Lets you organize dBASE database indexes.</ahelp> An index allows you to access a database quickly, provided that you query the data in the selection that was defined through the index. When you design a table, you can define the indexes on the <emph>Indexes </emph>tab page."
-msgstr "<ahelp hid=\".\">እርስዎን ማደራጀት ያስችሎታል የ ዳታቤዝ ዳታቤዝ ማውጫዎች </ahelp> ማውጫ እርስዎን የሚያስችለው ወደ ዳታቤዝ በፍጥነት መድረስ ነው: እርስዎ ዳታ በሚጠይቁ ጊዜ በ ማውጫ ውስጥ የ ተገለጸ በ ምርጫ ውስጥ: እርስዎ የ ሰንጠረዥ ንድፍ በሚያሰናዱ ጊዜ: እርስዎ መግለጽ ይችላሉ ማውጫዎች በ <emph>ማውጫዎች </emph>tab ገጽ ውስጥ"
+msgstr "<ahelp hid=\".\">እርስዎን ማደራጀት ያስችሎታል የ ዳታቤዝ ዳታቤዝ ማውጫዎች </ahelp> ማውጫ እርስዎን የሚያስችለው ወደ ዳታቤዝ በፍጥነት መድረስ ነው: እርስዎ ዳታ በሚጠይቁ ጊዜ በ ማውጫ ውስጥ የ ተገለጸ በ ምርጫ ውስጥ: እርስዎ የ ሰንጠረዥ ንድፍ በሚያሰናዱ ጊዜ: እርስዎ መግለጽ ይችላሉ ማውጫዎች በ <emph> ማውጫዎች </emph> tab ገጽ ውስጥ"
#: 11030100.xhp
msgctxt ""
@@ -5494,7 +5494,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">Moves the selected index to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">የ ተመረጠውን ማውጫ ማንቀሳቀሻ ወደ <emph>ሰንጠረዥ ማውጫ</emph> ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">የ ተመረጠውን ማውጫ ማንቀሳቀሻ ወደ <emph> ሰንጠረዥ ማውጫ </emph> ዝርዝር</ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -5526,7 +5526,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">የ ተመረጡትን የ ሰንጠረዥ ማውጫዎች ማንቀሳቀሻ ወደ <emph>ነፃ ማውጫ</emph> ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">የ ተመረጡትን የ ሰንጠረዥ ማውጫዎች ማንቀሳቀሻ ወደ <emph> ነፃ ማውጫ </emph> ዝርዝር </ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">Moves all of the table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">የ ተመረጡትን ሁሉንም የ ሰንጠረዥ ማውጫ ማንቀሳቀሻ ወደ <emph>ነፃ ማውጫ</emph> ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">የ ተመረጡትን ሁሉንም የ ሰንጠረዥ ማውጫ ማንቀሳቀሻ ወደ <emph> ነፃ ማውጫ </emph> ዝርዝር </ahelp>"
#: 11080000.xhp
msgctxt ""
@@ -5558,7 +5558,7 @@ msgctxt ""
"bm_id3148983\n"
"help.text"
msgid "<bookmark_value>SQL; executing SQL statements (Base)</bookmark_value><bookmark_value>databases; administration through SQL (Base)</bookmark_value>"
-msgstr "<bookmark_value>SQL: መፈጸሚያ የ SQL አረፍተ ነገር (Base)</bookmark_value><bookmark_value>የ ዳታቤዞች: አስተዳዳሪ በ SQL (Base) ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>SQL: መፈጸሚያ የ SQL አረፍተ ነገር (ቤዝ)</bookmark_value><bookmark_value>የ ዳታቤዞች: አስተዳዳሪ በ SQL (ቤዝ) ውስጥ</bookmark_value>"
#: 11080000.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"par_id3154860\n"
"help.text"
msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
-msgstr "ለማስኬድ የ SQL ጥያቄ ዳታ እንዲያጣራ ከ ዳታቤዝ ውስጥ: ይጠቀሙ የ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">ጥያቄ ንድፍ መመልከቻ </link>"
+msgstr "ለማስኬድ የ SQL ጥያቄ ዳታ እንዲያጣራ ከ ዳታቤዝ ውስጥ: ይጠቀሙ የ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"> ጥያቄ ንድፍ መመልከቻ </link>"
#: 11080000.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"hd_id3150702\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/11090000.xhp\" name=\"Tables\">Table Filter</link>"
-msgstr "<link href=\"text/shared/explorer/database/11090000.xhp\" name=\"Tables\">የሰንጠረዥ ማጣሪያ</link>"
+msgstr "<link href=\"text/shared/explorer/database/11090000.xhp\" name=\"Tables\">የ ሰንጠረዥ ማጣሪያ</link>"
#: 11090000.xhp
msgctxt ""
@@ -5734,7 +5734,7 @@ msgctxt ""
"par_idN10550\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/dabaadvprop.xhp\">Advanced Properties</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabaadvprop.xhp\">የረቀቁ ባህሪዎች</link>"
+msgstr "<link href=\"text/shared/explorer/database/dabaadvprop.xhp\">የ ረቀቁ ባህሪዎች</link>"
#: dabaadvprop.xhp
msgctxt ""
@@ -5750,7 +5750,7 @@ msgctxt ""
"par_id3998840\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Properties</emph>, click <emph>Advanced Properties</emph> tab"
-msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph>, ይጫኑ<emph>የረቀቁ ባህሪዎች</emph> tab"
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph> ይጫኑ <emph> የረቀቁ ባህሪዎች </emph> tab"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -5782,7 +5782,7 @@ msgctxt ""
"par_id7679372\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Advanced Settings</emph>"
-msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - የ ረቀቁ ማሰናጃዎች </emph>"
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - የ ረቀቁ ማሰናጃዎች </emph>"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"par_idN105D6\n"
"help.text"
msgid "Some databases assign version numbers to fields to track changes to records. The version number of a field is incremented by one each time the contents of the field are changed. <ahelp hid=\"dbaccess/ui/specialsettingspage/displayver\">Displays the internal version number of the record in the database table.</ahelp>"
-msgstr "አንዳንድ የ ዳታቤዝ ለ ሜዳዎች የ እትም ቁጥር ይመድባል ለ ተቀየሩ መዝገቦች ደንብ: የ እትም ቁጥር ለ ሜዳ የሚጨምረው በ አንድ ነው እያንዳንዱ ይዞታዎች ሜዳ ሲቀየር <ahelp hid=\"dbaccess/ui/specialsettingspage/displayver\">ከ ዳታቤዝ ሰንጠረዥ መዝገብ ውስጥ የ ውስጥ እትም ቁጥር ማሳያ </ahelp>"
+msgstr "አንዳንድ የ ዳታቤዝ ለ ሜዳዎች የ እትም ቁጥር ይመድባል ለ ተቀየሩ መዝገቦች ደንብ: የ እትም ቁጥር ለ ሜዳ የሚጨምረው በ አንድ ነው እያንዳንዱ ይዞታዎች ሜዳ ሲቀየር <ahelp hid=\"dbaccess/ui/specialsettingspage/displayver\"> ከ ዳታቤዝ ሰንጠረዥ መዝገብ ውስጥ የ ውስጥ እትም ቁጥር ማሳያ </ahelp>"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id1322977\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Properties</emph>"
-msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - የ ረቀቁ ማሰናጃዎች </emph>"
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - የ ረቀቁ ማሰናጃዎች </emph>"
#: dabapropadd.xhp
msgctxt ""
@@ -6302,7 +6302,7 @@ msgctxt ""
"par_id4641865\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Properties</emph>, click <emph>Additional Settings</emph> tab"
-msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph>, ይጫኑ<emph>የ ረቀቁ ባህሪዎች</emph> tab"
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph> ይጫኑ <emph> የ ረቀቁ ባህሪዎች </emph> tab"
#: dabapropadd.xhp
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"par_id9003875\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Connection Type</emph>"
-msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - የ ግንኙነት አይነት </emph>"
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - የ ግንኙነት አይነት </emph>"
#: dabapropcon.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id4513992\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Properties</emph>, click <emph>Advanced Properties</emph> tab"
-msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - ባህሪዎች</emph>, ይጫኑ<emph>የረቀቁ ባህሪዎች</emph> tab"
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph> ማረሚያ - ዳታቤዝ - ባህሪዎች </emph> ይጫኑ <emph> የረቀቁ ባህሪዎች </emph> tab"
#: dabapropgen.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"par_idN1057C\n"
"help.text"
msgid "Ensure that the *.dbf file name extension of the dBASE files is lowercase."
-msgstr "እርግጠኛ ይሁኑ የ *.dbf ፋይል ስም ተጨማሪ ለ የ ዳታቤዝ ፋይሎች lowercase መሆኑን"
+msgstr "እርግጠኛ ይሁኑ የ *.dbf ፋይል ስም ተጨማሪ ለ የ ዳታቤዝ ፋይሎች የ ታችኛው ጉዳይ ፊደል መሆኑን"
#: dabapropgen.xhp
msgctxt ""
@@ -7006,7 +7006,7 @@ msgctxt ""
"bm_id2026429\n"
"help.text"
msgid "<bookmark_value>wizards;databases (Base)</bookmark_value><bookmark_value>Database Wizard (Base)</bookmark_value><bookmark_value>databases; formats (Base)</bookmark_value><bookmark_value>MySQL databases (Base)</bookmark_value><bookmark_value>dBASE; database settings (Base)</bookmark_value><bookmark_value>spreadsheets;as databases (base)</bookmark_value>"
-msgstr "<bookmark_value>አዋቂ: የ ዳታቤዝ (Base)</bookmark_value><bookmark_value>የ ዳታቤዝ አዋቂ (Base)</bookmark_value><bookmark_value>የ ዳታቤዝ: አቀራረብ (Base)</bookmark_value><bookmark_value>MySQL ዳታቤዝ (Base)</bookmark_value><bookmark_value>የ ዳታቤዝ: ዳታቤዝ ማሰናጃ (Base)</bookmark_value><bookmark_value>ሰንጠረዥ: እንደ ዳታቤዝ (base)</bookmark_value>"
+msgstr "<bookmark_value>አዋቂ: የ ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>የ ዳታቤዝ አዋቂ (ቤዝ)</bookmark_value><bookmark_value>የ ዳታቤዝ: አቀራረብ (ቤዝ)</bookmark_value><bookmark_value>MySQL ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>የ ዳታቤዝ: ዳታቤዝ ማሰናጃ (ቤዝ)</bookmark_value><bookmark_value>ሰንጠረዥ: እንደ ዳታቤዝ (ቤዝ)</bookmark_value>"
#: dabawiz00.xhp
msgctxt ""
@@ -7030,7 +7030,7 @@ msgctxt ""
"par_id9856563\n"
"help.text"
msgid "The Database Wizard creates a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link> that contains information about a database."
-msgstr "የ ዳታቤዝ አዋቂ የሚፈጥረው የ <link href=\"text/shared/explorer/database/dabadoc.xhp\">ዳታቤዝ ፋይል</link> መረጃ የያዘ ነው ስለ ዳታቤዝ"
+msgstr "የ ዳታቤዝ አዋቂ የሚፈጥረው የ <link href=\"text/shared/explorer/database/dabadoc.xhp\"> ዳታቤዝ ፋይል </link> መረጃ የያዘ ነው ስለ ዳታቤዝ"
#: dabawiz00.xhp
msgctxt ""
@@ -7150,7 +7150,7 @@ msgctxt ""
"bm_id2082583\n"
"help.text"
msgid "<bookmark_value>databases; connecting (Base)</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዞች: ግንኙነት (Base)</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዞች: ግንኙነት (ቤዝ)</bookmark_value>"
#: dabawiz01.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_idN10614\n"
"help.text"
msgid "Recently used"
-msgstr "በቅርብ ጊዜ የተጠቀሙበት"
+msgstr "በ ቅርብ ጊዜ የ ተጠቀሙበት"
#: dabawiz01.xhp
msgctxt ""
@@ -7390,7 +7390,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "Yes, register the Database for me"
-msgstr "አዎ ዳታቤዙን ለኔ መዝግብልኝ"
+msgstr "አዎ ዳታቤዙን ለ እኔ መዝግብልኝ"
#: dabawiz02.xhp
msgctxt ""
@@ -7414,7 +7414,7 @@ msgctxt ""
"par_idN105BB\n"
"help.text"
msgid "<ahelp hid=\".\">Select to keep the database information only within the created database file.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ የ ዳታቤዝ መረጃ ብቻ በ ተፈጠረው የ ዳታቤዝ ፋይል ውስጥ ለ ማስቀመጥ</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ የ ዳታቤዝ መረጃ ብቻ በ ተፈጠረው የ ዳታቤዝ ፋይል ውስጥ ለ ማስቀመጥ </ahelp>"
#: dabawiz02.xhp
msgctxt ""
@@ -7470,7 +7470,7 @@ msgctxt ""
"bm_id2755516\n"
"help.text"
msgid "<bookmark_value>Access databases (base)</bookmark_value><bookmark_value>Microsoft Office;Access databases (base)</bookmark_value>"
-msgstr "<bookmark_value>መድረሻ ወደ ዳታቤዝ (base)</bookmark_value><bookmark_value>Microsoft Office:መድረሻ ወደ ዳታቤዝ (base)</bookmark_value>"
+msgstr "<bookmark_value>መድረሻ ወደ ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>Microsoft Office: መድረሻ ወደ ዳታቤዝ (ቤዝ)</bookmark_value>"
#: dabawiz02access.xhp
msgctxt ""
@@ -7550,7 +7550,7 @@ msgctxt ""
"bm_id7565233\n"
"help.text"
msgid "<bookmark_value>ADO databases (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>databases;ADO (Base)</bookmark_value>"
-msgstr "<bookmark_value>ADO ዳታቤዞች (Base)</bookmark_value><bookmark_value>MS ADO interface (Base)</bookmark_value><bookmark_value>ዳታቤዞች: ADO (Base)</bookmark_value>"
+msgstr "<bookmark_value>ADO ዳታቤዞች (ቤዝ)</bookmark_value><bookmark_value>MS ADO interface (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዞች: ADO (ቤዝ)</bookmark_value>"
#: dabawiz02ado.xhp
msgctxt ""
@@ -7766,7 +7766,7 @@ msgctxt ""
"bm_id3726920\n"
"help.text"
msgid "<bookmark_value>JDBC; databases (Base)</bookmark_value><bookmark_value>databases; JDBC (Base)</bookmark_value>"
-msgstr "<bookmark_value>JDBC: ዳታቤዝ (Base)</bookmark_value><bookmark_value>ዳታቤዝ: JDBC (Base)</bookmark_value>"
+msgstr "<bookmark_value>JDBC: ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዝ: JDBC (ቤዝ)</bookmark_value>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -7782,7 +7782,7 @@ msgctxt ""
"par_idN10600\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ መድረስ ምርጫዎች መወሰኛለ <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> ዳታቤዝ </ahelp>"
+msgstr "<ahelp hid=\".\">ለ መድረስ ምርጫዎች መወሰኛ ለ <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> ዳታቤዝ </ahelp>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -7798,7 +7798,7 @@ msgctxt ""
"par_idN10627\n"
"help.text"
msgid "<item type=\"productname\">You can use a JDBC driver class to connect to a JDBC database from %PRODUCTNAME</item>. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL."
-msgstr "<item type=\"productname\">እርስዎ መጠቀም ይችላሉ የ JDBC driver class ለ መገናኘት ወደ የ JDBC database ጋር ከ %PRODUCTNAME</item>. የ driver class የሚቀርበው ከ ዳታቤዝ አምራቹ ጋር ነው: ሁለት ምሳሌዎች የ JDBC ዳታቤዞች Oracle እና MySQL ናቸው"
+msgstr "<item type=\"productname\">እርስዎ መጠቀም ይችላሉ የ JDBC driver class ለ መገናኘት ወደ የ JDBC database ጋር ከ %PRODUCTNAME</item> የ driver class የሚቀርበው ከ ዳታቤዝ አምራቹ ጋር ነው: ሁለት ምሳሌዎች የ JDBC ዳታቤዞች Oracle እና MySQL ናቸው"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -7806,7 +7806,7 @@ msgctxt ""
"par_idN1062D\n"
"help.text"
msgid "The driver classes must be added to %PRODUCTNAME in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced."
-msgstr "የ driver classes መጨመር አለበት ወደ %PRODUCTNAME በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - የ ረቀቀ"
+msgstr "የ driver classes መጨመር አለበት ወደ %PRODUCTNAME በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - %PRODUCTNAME - የ ረቀቀ"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"par_id7953733\n"
"help.text"
msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME</emph><emph>- Advanced</emph>, and click the <emph>Class Path</emph> button. After you add the path information, restart <item type=\"productname\">%PRODUCTNAME</item>."
-msgstr "እርስዎ የ JDBC driver ከ መጠቀምዎት በፊት የ ክፍል መንገድ መጨመር አለብዎት: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME</emph><emph>- የ ረቀቀ </emph> እና ይጫኑ <emph> የ ክፍል መንገድ </emph> ቁልፍ: የ መንገዱን መረጃ ከጨመሩ በኋላ: እንደገና ያስጀምሩ <item type=\"productname\">%PRODUCTNAME</item>."
+msgstr "እርስዎ የ JDBC driver ከ መጠቀምዎት በፊት የ ክፍል መንገድ መጨመር አለብዎት: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME</emph><emph>- የ ረቀቀ </emph> እና ይጫኑ <emph> የ ክፍል መንገድ </emph> ቁልፍ: የ መንገዱን መረጃ ከጨመሩ በኋላ: እንደገና ያስጀምሩ <item type=\"productname\">%PRODUCTNAME</item>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -8022,7 +8022,7 @@ msgctxt ""
"bm_id22583\n"
"help.text"
msgid "<bookmark_value>LDAP server; address books (Base)</bookmark_value><bookmark_value>address books; LDAP server (Base)</bookmark_value><bookmark_value>data sources; LDAP server (Base)</bookmark_value>"
-msgstr "<bookmark_value>የ LDAP ሰርቨር: አድራሻ ደብተሮች (Base)</bookmark_value><bookmark_value>የ አድራሻ ደብተሮች: የ LDAP ሰርቨር (Base)</bookmark_value><bookmark_value>የ ዳታ ምንጮች: የ LDAP ሰርቨር (Base)</bookmark_value>"
+msgstr "<bookmark_value>የ LDAP ሰርቨር: አድራሻ ደብተሮች (ቤዝ)</bookmark_value><bookmark_value>የ አድራሻ ደብተሮች: የ LDAP ሰርቨር (ቤዝ)</bookmark_value><bookmark_value>የ ዳታ ምንጮች: የ LDAP ሰርቨር (ቤዝ)</bookmark_value>"
#: dabawiz02ldap.xhp
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"par_idN10562\n"
"help.text"
msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr "ይህን በመጠቀም ይገናኙ ODBC (Open Database Connectivity)"
+msgstr "ይህን በ መጠቀም ይገናኙ ODBC (Open Database Connectivity)"
#: dabawiz02mysql.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"par_idN10569\n"
"help.text"
msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr "ይህን በመጠቀም ተገናኝ JDBC (Java Database Connectivity)"
+msgstr "ይህን በ መጠቀም ተገናኝ JDBC (Java Database Connectivity)"
#: dabawiz02mysql.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"bm_id3149031\n"
"help.text"
msgid "<bookmark_value>ODBC;database (Base)</bookmark_value><bookmark_value>databases;ODBC (Base)</bookmark_value>"
-msgstr "<bookmark_value>ODBC: ዳታቤዝ (Base)</bookmark_value><bookmark_value>ዳታቤዝ: ODBC (Base)</bookmark_value>"
+msgstr "<bookmark_value>ODBC: ዳታቤዝ (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዝ: ODBC (ቤዝ)</bookmark_value>"
#: dabawiz02odbc.xhp
msgctxt ""
@@ -8406,7 +8406,7 @@ msgctxt ""
"par_idN105EA\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Data source URL</emph> box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information.</ahelp>"
-msgstr "<ahelp hid=\".\">ከ <emph>ዳታ ምንጭ URL</emph> ሳጥን ውስጥ: አካባቢውን ያስገቡ የ Oracle ዳታቤዝ ሰርቨር: አገባብ ለ URL እንደ ዳታቤዝ አይነት ይለያያል: አብሮት የ መጣውን ሰነድ ይመልከቱ ከ JDBC driver ጋር ለ በለጠ መረጃ </ahelp>"
+msgstr "<ahelp hid=\".\">ከ <emph> ዳታ ምንጭ URL </emph> ሳጥን ውስጥ: አካባቢውን ያስገቡ የ Oracle ዳታቤዝ ሰርቨር: አገባብ ለ URL እንደ ዳታቤዝ አይነት ይለያያል: አብሮት የ መጣውን ሰነድ ይመልከቱ ከ JDBC driver ጋር ለ በለጠ መረጃ </ahelp>"
#: dabawiz02oracle.xhp
msgctxt ""
@@ -8630,7 +8630,7 @@ msgctxt ""
"bm_id2517166\n"
"help.text"
msgid "<bookmark_value>tables in databases;importing text formats (Base)</bookmark_value><bookmark_value>text databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ ከ ዳታቤዝ ውስጥ: ማምጫ በ ጽሁፍ አቀራረብ (Base)</bookmark_value><bookmark_value>ጽሁፍ ከ ዳታቤዝ ውስጥ (Base)</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዥ ከ ዳታቤዝ ውስጥ: ማምጫ በ ጽሁፍ አቀራረብ (ቤዝ)</bookmark_value><bookmark_value>ጽሁፍ ከ ዳታቤዝ ውስጥ (ቤዝ)</bookmark_value>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8910,7 +8910,7 @@ msgctxt ""
"bm_id8622089\n"
"help.text"
msgid "<bookmark_value>databases;main page (Base)</bookmark_value><bookmark_value>$[officename] Base data sources</bookmark_value><bookmark_value>data sources;$[officename] Base</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዞች: ዋናው ገጽ (Base)</bookmark_value><bookmark_value>$[officename] Base የ ዳታ ምንጮች</bookmark_value><bookmark_value>የ ዳታ ምንጮች: $[officename] Base</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዞች: ዋናው ገጽ (ቤዝ)</bookmark_value><bookmark_value>$[officename] ቤዝ የ ዳታ ምንጮች</bookmark_value><bookmark_value>የ ዳታ ምንጮች: $[officename] ቤዝ</bookmark_value>"
#: main.xhp
msgctxt ""
@@ -8974,7 +8974,7 @@ msgctxt ""
"par_idN10838\n"
"help.text"
msgid "To create a new database file, choose <emph>File - New - Database</emph>."
-msgstr "አዲስ የ ዳታቤዝ ፋይል ለ መፍጠር: ይምረጡ <emph>ፋይል - አዲስ - ዳታቤዝ</emph>."
+msgstr "አዲስ የ ዳታቤዝ ፋይል ለ መፍጠር: ይምረጡ <emph> ፋይል - አዲስ - ዳታቤዝ </emph>"
#: main.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_idN1084A\n"
"help.text"
msgid "To open a database file, choose <emph>File - Open</emph>. In the <emph>File type</emph> list box, select to view only \"Database documents\". Select a database document and click <emph>Open</emph>."
-msgstr "የ ዳታቤዝ ፋይል ለ መክፈት: ይምረጡ <emph>ፋይል - መክፈቻ</emph> በ <emph>ፋይል አይነት</emph> ዝርዝር ሳጥን ውስጥ እና ይምረጡ ለ መመልከቻ ብቻ \"ዳታቤዝ ሰነዶች\" ይምረጡ የ ዳታቤዝ ሰነድ እና ይጫኑ <emph>መክፈቻ</emph>."
+msgstr "የ ዳታቤዝ ፋይል ለ መክፈት: ይምረጡ <emph> ፋይል - መክፈቻ </emph> በ <emph> ፋይል አይነት </emph> ዝርዝር ሳጥን ውስጥ እና ይምረጡ ለ መመልከቻ ብቻ \"ዳታቤዝ ሰነዶች\" ይምረጡ የ ዳታቤዝ ሰነድ እና ይጫኑ <emph> መክፈቻ </emph>"
#: main.xhp
msgctxt ""
@@ -9006,7 +9006,7 @@ msgctxt ""
"par_id6474806\n"
"help.text"
msgid "<link href=\"http://wiki.documentfoundation.org/Database\">Wiki page about Base</link>"
-msgstr "<link href=\"http://wiki.documentfoundation.org/Database\">የ ዊኪ ገጽ ስለ Base</link>"
+msgstr "<link href=\"http://wiki.documentfoundation.org/Database\">የ ዊኪ ገጽ ስለ ቤዝ</link>"
#: menubar.xhp
msgctxt ""
@@ -9342,7 +9342,7 @@ msgctxt ""
"par_idN105C4\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the current database file, query, form or report. For the database file, you see the <link href=\"text/shared/01/01070000.xhp\">file save</link> dialog. For the other objects, you see the <link href=\"text/shared/explorer/database/menufilesave.xhp\">Save</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">ማስቀመጫ የ አሁኑን የ ዳታቤዝ ፋይል: ጥያቄ: ፎርም: ወይንም መግለጫ: ለ ዳታቤዝ ፋይል: ለ እርስዎ ይታያል በ <link href=\"text/shared/01/01070000.xhp\">ፋይል ማስቀመጫ</link> ንግግር ውስጥ: ለ ሌሎች እቃዎች: ለ እርስዎ ይታያል በ <link href=\"text/shared/explorer/database/menufilesave.xhp\">ማስቀመጫ</link> ንግግር ውስጥ</ahelp>"
+msgstr "<ahelp hid=\".\">ማስቀመጫ የ አሁኑን የ ዳታቤዝ ፋይል: ጥያቄ: ፎርም: ወይንም መግለጫ: ለ ዳታቤዝ ፋይል: ለ እርስዎ ይታያል በ <link href=\"text/shared/01/01070000.xhp\"> ፋይል ማስቀመጫ </link> ንግግር ውስጥ: ለ ሌሎች እቃዎች: ለ እርስዎ ይታያል በ <link href=\"text/shared/explorer/database/menufilesave.xhp\"> ማስቀመጫ</link> ንግግር ውስጥ </ahelp>"
#: menufile.xhp
msgctxt ""
@@ -9358,7 +9358,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the current database file with another name. In the <link href=\"text/shared/01/01070000.xhp\">file save</link> dialog, select a path and file name to save.</ahelp>"
-msgstr "<ahelp hid=\".\">ማስቀመጫ የ አሁኑን ዳታቤዝ ፋይል በ ሌላ ስም: በ <link href=\"text/shared/01/01070000.xhp\">ፋይል ማስቀመጫ</link> ንግግር ውስጥ: ይምረጡ የ ፋይል ስም እና መንገድ ለ ማስቀመጥ </ahelp>"
+msgstr "<ahelp hid=\".\">ማስቀመጫ የ አሁኑን ዳታቤዝ ፋይል በ ሌላ ስም: በ <link href=\"text/shared/01/01070000.xhp\"> ፋይል ማስቀመጫ </link> ንግግር ውስጥ: ይምረጡ የ ፋይል ስም እና መንገድ ለ ማስቀመጥ </ahelp>"
#: menufile.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "In this dialog, you can specify the position and name of a form that you save within a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>. The dialog opens automatically when you save a form the first time."
-msgstr "በዚህ ንግግር ውስጥ እርስዎ መወሰን ይችላሉ ቦታውን እና ስሙን ለ ፎርሙ እርስዎ ማስቀመጥ የሚፈልጉበትን የ <link href=\"text/shared/explorer/database/dabadoc.xhp\">ዳታቤዝ ፋይል</link> ንግግሩ ራሱ በራሱ ይከፈታል እርስዎ ለ መጀመሪያ ጊዜ ሲያስቀምጡ"
+msgstr "በዚህ ንግግር ውስጥ እርስዎ መወሰን ይችላሉ ቦታውን እና ስሙን ለ ፎርሙ እርስዎ ማስቀመጥ የሚፈልጉበትን የ <link href=\"text/shared/explorer/database/dabadoc.xhp\"> ዳታቤዝ ፋይል </link> ንግግሩ ራሱ በራሱ ይከፈታል እርስዎ ለ መጀመሪያ ጊዜ ሲያስቀምጡ"
#: menufilesave.xhp
msgctxt ""
@@ -9582,7 +9582,7 @@ msgctxt ""
"par_idN1058F\n"
"help.text"
msgid "<ahelp hid=\".\">Starts the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> window for the selected table, view, or query.</ahelp>"
-msgstr "<ahelp hid=\".\">መጀመሪያ በ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> መስኮት ውስጥ ለ ተመረጠው ሰንጠረዥ መመልከቻ ወይንም ጥያቄ </ahelp>"
+msgstr "<ahelp hid=\".\">መጀመሪያ በ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> መስኮት ውስጥ ለ ተመረጠው ሰንጠረዥ መመልከቻ ወይንም ጥያቄ </ahelp>"
#: menuinsert.xhp
msgctxt ""
@@ -9718,7 +9718,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/explorer/database/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/explorer/database/05020000.xhp\">ግንኙነት ንድፍ</link> መመልከቻ እና መመርመሪያ የ ዳታ ግንኙነት ግንኙነቶች ይደግፍ አንደሆን </ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/explorer/database/05020000.xhp\"> ግንኙነት ንድፍ </link> መመልከቻ እና መመርመሪያ የ ዳታ ግንኙነት ግንኙነቶች ይደግፍ አንደሆን </ahelp>"
#: menutools.xhp
msgctxt ""
@@ -10030,7 +10030,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Migrate Macros"
-msgstr "Macros ማዘዋወሪያ"
+msgstr "ማክሮስ ማዘዋወሪያ"
#: migrate_macros.xhp
msgctxt ""
@@ -10038,7 +10038,7 @@ msgctxt ""
"bm_id6009095\n"
"help.text"
msgid "<bookmark_value>wizards;macros (Base)</bookmark_value> <bookmark_value>Macro Wizard (Base)</bookmark_value> <bookmark_value>macros;attaching new (Base)</bookmark_value> <bookmark_value>migrating macros (Base)</bookmark_value>"
-msgstr "<bookmark_value>አዋቂ: macros (Base)</bookmark_value> <bookmark_value>Macro አዋቂ (Base)</bookmark_value> <bookmark_value>macros: ማያያዣ አዲስ (Base)</bookmark_value> <bookmark_value>ማዘዋወሪያ macros (Base)</bookmark_value>"
+msgstr "<bookmark_value>አዋቂ: ማክሮስ (ቤዝ)</bookmark_value> <bookmark_value>ማክሮስ አዋቂ (ቤዝ)</bookmark_value> <bookmark_value>ማክሮስ: ማያያዣ አዲስ (ቤዝ)</bookmark_value> <bookmark_value>ማዘዋወሪያ ማክሮስ (ቤዝ)</bookmark_value>"
#: migrate_macros.xhp
msgctxt ""
@@ -10046,7 +10046,7 @@ msgctxt ""
"hd_id0112200902353472\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">Migrate Macros</link>"
-msgstr "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">Macros ማዘዋወሪያ </link>"
+msgstr "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">ማክሮስ ማዘዋወሪያ </link>"
#: migrate_macros.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id0112200902353466\n"
"help.text"
msgid "<ahelp hid=\".\">The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ዳታቤዝ ሰነድ Macro ማዘዋወሪያ አዋቂ የ ነበረውን macros ያንቀሳቅሳል ከ ንዑስ-ሰነዶች ከ እሮጌው Base ፋይል ወደ አዲስ Base ፋይሎች macro ማጠራቀሚያ ቦታ ውስጥ </ahelp>"
+msgstr "<ahelp hid=\".\">የ ዳታቤዝ ሰነድ ማክሮስ ማዘዋወሪያ አዋቂ የ ነበረውን ማክሮስ ያንቀሳቅሳል ከ ንዑስ-ሰነዶች ከ እሮጌው ቤዝ ፋይል ወደ አዲስ የ ቤዝ ፋይሎች ማክሮስ ማጠራቀሚያ ቦታ ውስጥ </ahelp>"
#: migrate_macros.xhp
msgctxt ""
@@ -10078,7 +10078,7 @@ msgctxt ""
"par_id0112200902353542\n"
"help.text"
msgid "Previously, macros have been allowed to reside only in the text sub-documents of forms and reports. Now macros can also be stored in the Base file itself. This means that macros in Base files can be called now from any of its sub-components: forms, reports, table design, query design, relation design, table data view."
-msgstr "ቀደም ሲል macros በ ጽሁፍ ንዑስ-ሰነዶች ፎርሞች እና መግለጫዎች ውስጥ ብቻ መቀመጥ ይችሉ ንበር: አሁን macros ማስቀመጥ ይቻላል በ Base ፋይል ውስጥ: ይህ ማለት macros ከ Base ፋይሎች ውስጥ መጥራት ይቻላል ከ ማንኛውም የ ንዑስ-አካሎች: ፎርሞች: የ ሰንጠረዥ ንድፎች: የ ጥያቄ ንድፎች: የ ንድፍ ግንኙነቶች: ከ ሰንጠረዥ ዳታ መመልከቻ ውስጥ"
+msgstr "ቀደም ሲል ማክሮስ በ ጽሁፍ ንዑስ-ሰነዶች ፎርሞች እና መግለጫዎች ውስጥ ብቻ መቀመጥ ይችሉ ንበር: አሁን ማክሮስ ማስቀመጥ ይቻላል በ ቤዝ ፋይል ውስጥ: ይህ ማለት ማክሮስ ከ ቤዝ ፋይሎች ውስጥ መጥራት ይቻላል ከ ማንኛውም የ ንዑስ-አካሎች: ፎርሞች: የ ሰንጠረዥ ንድፎች: የ ጥያቄ ንድፎች: የ ንድፍ ግንኙነቶች: ከ ሰንጠረዥ ዳታ መመልከቻ ውስጥ"
#: migrate_macros.xhp
msgctxt ""
@@ -10086,7 +10086,7 @@ msgctxt ""
"par_id0112200903075865\n"
"help.text"
msgid "However, it is technically not possible to store macros both in a Base file and in its sub-documents at the same time. So, if you want to attach some new macros to the Base file, while retaining any existing old macros that were stored in the sub-documents, you must move the existing old macros up to the Base file's macro storage area."
-msgstr "ነገር ግን: በ ቴክኒክ ችግር የ ተነሳ macros ማስቀመጥ አይቻልም በ ሁለቱም ውስጥ: በ Base ፋይል እና በ ንዑስ-ሰነዶች ውስጥ በ ተመሳሳይ ጊዜ: ስለዚህ እርስዎ ማያያዝ ከ ፈለጉ አዲስ macros ወደBase ፋይል ውስጥ: የ ነበረውን አሮጌ macros የ ተቀመጠውን በ ንዑስ-ሰነዶች ውስጥ: እርስዎ ማንቀሳቀስ አለብዎት አሮጌ macros ወደ Base ፋይሎች macro ማጠራቀሚያ ቦታ ውስጥ"
+msgstr "ነገር ግን: በ ቴክኒክ ችግር የ ተነሳ ማክሮስ ማስቀመጥ አይቻልም በ ሁለቱም ውስጥ: በ ቤዝ ፋይል እና በ ንዑስ-ሰነዶች ውስጥ በ ተመሳሳይ ጊዜ: ስለዚህ እርስዎ ማያያዝ ከ ፈለጉ አዲስ ማክሮስ ወደ ቤዝ ፋይል ውስጥ: የ ነበረውን አሮጌ ማክሮስ የ ተቀመጠውን በ ንዑስ-ሰነዶች ውስጥ: እርስዎ ማንቀሳቀስ አለብዎት አሮጌ ማክሮስ ወደ ቤዝ ፋይሎች ማክሮስ ማጠራቀሚያ ቦታ ውስጥ"
#: migrate_macros.xhp
msgctxt ""
@@ -10094,7 +10094,7 @@ msgctxt ""
"par_id0112200903075830\n"
"help.text"
msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed."
-msgstr "የ ዳታቤዝ Macro አንቀሳቃሽ አዋቂ ማንቀሳቀስ ይችላል macros ወደ Base ፈይሎች ማጠራቀሚያ ቦታ: እርስዎ ከዛ መመርመር ይችላሉ macros እና ማረም እንደተፈለገ"
+msgstr "የ ዳታቤዝ ማክሮስ አንቀሳቃሽ አዋቂ ማንቀሳቀስ ይችላል ማክሮስ ወደ ቤዝ ፈይሎች ማጠራቀሚያ ቦታ: እርስዎ ከዛ መመርመር ይችላሉ ማክሮስ እና ማረም እንደተፈለገ"
#: migrate_macros.xhp
msgctxt ""
@@ -10102,7 +10102,7 @@ msgctxt ""
"par_id0112200903075951\n"
"help.text"
msgid "For example, it is possible that macros from the sub-documents had the same module names and macro names. After you moved the macros into one common macro storage area, you must edit the macros to make the names unique. The wizard cannot do this."
-msgstr "ለምሳሌ: ይቻላል macros ከ ንዑስ-ሰነዶች ውስጥ ተመሳሳይ የ ክፍል ስም ሊኖራቸው ይችላል ከ macro ስሞች ጋር: እርስዎ ካንቀሳቀሱ በኋላ macros ወደ መደበኛ macro ማጠራቀሚያ ቦታ ውስጥ: እርስዎ ማረም አለብዎት macros ስሙን ልዩ ለማድረግ: አዋቂው ይህን አያደርግም"
+msgstr "ለምሳሌ: ይቻላል ማክሮስ ከ ንዑስ-ሰነዶች ውስጥ ተመሳሳይ የ ክፍል ስም ሊኖራቸው ይችላል ከ ማክሮስ ስሞች ጋር: እርስዎ ካንቀሳቀሱ በኋላ ማክሮስ ወደ መደበኛ ማክሮስ ማጠራቀሚያ ቦታ ውስጥ: እርስዎ ማረም አለብዎት ማክሮስ ስሙን ልዩ ለማድረግ: አዋቂው ይህን አያደርግም"
#: migrate_macros.xhp
msgctxt ""
@@ -10110,7 +10110,7 @@ msgctxt ""
"par_id0112200903075915\n"
"help.text"
msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged."
-msgstr "አዋቂው ተተኪ መስራት ይችላል የ Base ፋይል ወደ ሌላ ፎልደር ውስጥ በ እርስዎ ምርጫ: አዋቂው ይቀይራል ዋናውን የ Base ፋይል: ተተኪው አይቀየርም"
+msgstr "አዋቂው ተተኪ መስራት ይችላል የ ቤዝ ፋይል ወደ ሌላ ፎልደር ውስጥ በ እርስዎ ምርጫ: አዋቂው ይቀይራል ዋናውን የ ቤዝ ፋይል: ተተኪውን አይቀየርም"
#: migrate_macros.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_id8638874\n"
"help.text"
msgid "<ahelp hid=\".\">You can open the Date and Time dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Date and Time</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ መክፈት ይችላሉ የ ቀን እና ሰአት ንግግር በ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> ውስጥ በ መምረጥ <item type=\"menuitem\">ማስገቢያ - ቀን እና ሰአት</item>.</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ መክፈት ይችላሉ የ ቀን እና ሰአት ንግግር በ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> ውስጥ በ መምረጥ <item type=\"menuitem\"> ማስገቢያ - ቀን እና ሰአት </item></ahelp>"
#: rep_datetime.xhp
msgctxt ""
@@ -11118,7 +11118,7 @@ msgctxt ""
"par_id6317636\n"
"help.text"
msgid "If no JRE version is found on your system, open your web browser and download the JRE software from <link href=\"http://www.java.com\">http://www.java.com</link>. Install the JRE software. Then restart %PRODUCTNAME and open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced again."
-msgstr "የ JRE እትም በ እርስዎ ስርአት ውስጥ ካልተገኘ: እርስዎ ይክፈቱ የ ዌብ መቃኛ እና ያውርዱ የ JRE ሶፍትዌር ከ <link href=\"http://www.java.com\">http://www.java.com</link> ይግጠሙ የ JRE ሶፍትዌር: እና ከዛ እንደገና ያስጀምሩ %PRODUCTNAME እና ይክፈቱ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - የ ረቀቀ እንደገና"
+msgstr "የ JRE እትም በ እርስዎ ስርአት ውስጥ ካልተገኘ: እርስዎ ይክፈቱ የ ዌብ መቃኛ እና ያውርዱ የ JRE ሶፍትዌር ከ <link href=\"http://www.java.com\">http://www.java.com</link> ይግጠሙ የ JRE ሶፍትዌር: እና ከዛ እንደገና ያስጀምሩ %PRODUCTNAME እና ይክፈቱ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - %PRODUCTNAME - የ ረቀቀ እንደገና"
#: rep_main.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"par_id7050691\n"
"help.text"
msgid "Click the Reports icon in the Base window, then choose Create Report in Design View."
-msgstr "ይጫኑ በ መግለጫ ምልክት ላይ በ Base መስኮት ውስጥ: እና ከዛ ይምረጡ መፍጠሪያ መግለጫ በ ንድፍ መመልከቻ ውስጥ"
+msgstr "ይጫኑ በ መግለጫ ምልክት ላይ በ ቤዝ መስኮት ውስጥ: እና ከዛ ይምረጡ መፍጠሪያ መግለጫ በ ንድፍ መመልከቻ ውስጥ"
#: rep_main.xhp
msgctxt ""
@@ -11190,7 +11190,7 @@ msgctxt ""
"par_id6844386\n"
"help.text"
msgid "<emph>Detail</emph> - drag and drop database fields into the Detail area"
-msgstr "<emph>ዝርዝር</emph> - ይጎትቱ እና ይጣሉ ወደ ዳታቤዝ ሜዳዎች ወደ ዝርዝር ቦታ"
+msgstr "<emph>ዝርዝር </emph> - ይጎትቱ እና ይጣሉ ወደ ዳታቤዝ ሜዳዎች ወደ ዝርዝር ቦታ"
#: rep_main.xhp
msgctxt ""
@@ -11334,7 +11334,7 @@ msgctxt ""
"par_id8925138\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the right margin of the area.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ ሁለት ወይንም ተጨማሪ እቃዎች እና ይጫኑ በዚህ ምልክት ላይ ለማሰለፍ እቃዎችን በ ቀኝ መስመር ቦታ በኩል</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ ሁለት ወይንም ተጨማሪ እቃዎች እና ይጫኑ በዚህ ምልክት ላይ ለማሰለፍ እቃዎችን በ ቀኝ መስመር ቦታ በኩል </ahelp>"
#: rep_main.xhp
msgctxt ""
@@ -11678,7 +11678,7 @@ msgctxt ""
"par_id1150852\n"
"help.text"
msgid "You can open the Report Navigator window of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">View - Report Navigator</item>."
-msgstr "እርስዎ መክፈት ይችላሉ የ መግለጫ መቃኛ መስኮት በ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> ውስጥ በ መምረጥ <item type=\"menuitem\">መመልከቻ - መግለጫ መቃኛ</item>ውስጥ"
+msgstr "እርስዎ መክፈት ይችላሉ የ መግለጫ መቃኛ መስኮት በ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> ውስጥ በ መምረጥ <item type=\"menuitem\"> መመልከቻ - መግለጫ መቃኛ </item> ውስጥ"
#: rep_navigator.xhp
msgctxt ""
@@ -11718,7 +11718,7 @@ msgctxt ""
"par_id9449446\n"
"help.text"
msgid "Functions can be entered using a syntax as specified by the <link href=\"http://en.wikipedia.org/wiki/OpenFormula\">OpenFormula</link> proposal."
-msgstr "ተግባሮችን ማስገባት ይቻላል አገባብ በ መጠቀም እንደ ተወሰነው በ <link href=\"http://en.wikipedia.org/wiki/OpenFormula\">መቀመሪያ መክፈቻ</link> ማቅረቢያ"
+msgstr "ተግባሮችን ማስገባት ይቻላል አገባብ በ መጠቀም እንደ ተወሰነው በ <link href=\"http://en.wikipedia.org/wiki/OpenFormula\"> መቀመሪያ መክፈቻ </link> ማቅረቢያ"
#: rep_navigator.xhp
msgctxt ""
@@ -11846,7 +11846,7 @@ msgctxt ""
"par_id9141819\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ ጥልቅ ጉዞ ካስቻሉ: ተግባሮች ይመረመራሉ ሁሉም ዝቅተኛ ደረጃዎች ቅደም ተከተል ግምት ውስጥ ይገባል: ይህን መጠቀም ይችላሉ ለ ሁኔታዎች ለ መስመር ቁጥር መስጫ: በ ጥልቅ ጉዞ ካላስቻሉ: የ መጀመሪያው ደረጃ ብቻ ቅደም ተከተል ግምት ውስጥ ይገባል:</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ ጥልቅ ጉዞ ካስቻሉ: ተግባሮች ይመረመራሉ ሁሉም ዝቅተኛ ደረጃዎች ቅደም ተከተል ግምት ውስጥ ይገባል: ይህን መጠቀም ይችላሉ ለ ሁኔታዎች ለ መስመር ቁጥር መስጫ: በ ጥልቅ ጉዞ ካላስቻሉ: የ መጀመሪያው ደረጃ ብቻ ቅደም ተከተል ግምት ውስጥ ይገባል: </ahelp>"
#: rep_navigator.xhp
msgctxt ""
@@ -11878,7 +11878,7 @@ msgctxt ""
"par_id3424481\n"
"help.text"
msgid "<ahelp hid=\".\">You can open the Page Numbers dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Page Numbers</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ መክፈት ይችላሉ የ ገጽ ቁጥሮች ንግግር ለ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> በ መምረጥ <item type=\"menuitem\">ማስገቢያ - የ ገጽ ቁጥሮች</item>.</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ መክፈት ይችላሉ የ ገጽ ቁጥሮች ንግግር ለ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> በ መምረጥ <item type=\"menuitem\"> ማስገቢያ - የ ገጽ ቁጥሮች </item></ahelp>"
#: rep_pagenumbers.xhp
msgctxt ""
@@ -11998,7 +11998,7 @@ msgctxt ""
"par_id2711264\n"
"help.text"
msgid "The Properties window of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> always shows the properties of the currently selected object in the Report Builder view."
-msgstr "የ ባህሪ መስኮት በ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> ሁልጊዜ የሚያሳየው ባህሪዎች አሁን የ ተመረጠውን እቃ ነው: በ መግለጫ ገንቢ መመልከቻ ውስጥ"
+msgstr "የ ባህሪ መስኮት በ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> ሁልጊዜ የሚያሳየው ባህሪዎች አሁን የ ተመረጠውን እቃ ነው: በ መግለጫ ገንቢ መመልከቻ ውስጥ"
#: rep_prop.xhp
msgctxt ""
@@ -12286,7 +12286,7 @@ msgctxt ""
"par_id3068636\n"
"help.text"
msgid "<ahelp hid=\".\">In the Sorting and Grouping dialog of <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link>, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group.</ahelp> If you group your report by a certain field, all records with the same value of that field will be kept together in one group."
-msgstr "<ahelp hid=\".\">በ መለያ እና በ ቡድን ማድረጊያ ንግግር ውስጥ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> እርስዎ መግለጽ ይችላሉ የሚለዩትን ሜዳዎች በ እርስዎ መግለጫ ውስጥ: እና ሜዳዎቹ አብረው መቀመጥ አለባቸው ቡድን እንዲፈጥሩ</ahelp> የ እርስዎን መግለጫ በ ተወሰነ ሜዳ በ ቡድን ውስጥ ካደረጉ: ሁሉም ተመሳሳይ ዋጋ ያላቸው መዝገቦች በ ሜዳ ውስጥ በ አንድ ቡድን ውስጥ ይሆናሉ"
+msgstr "<ahelp hid=\".\">በ መለያ እና በ ቡድን ማድረጊያ ንግግር ውስጥ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> እርስዎ መግለጽ ይችላሉ የሚለዩትን ሜዳዎች በ እርስዎ መግለጫ ውስጥ: እና ሜዳዎቹ አብረው መቀመጥ አለባቸው ቡድን እንዲፈጥሩ </ahelp> የ እርስዎን መግለጫ በ ተወሰነ ሜዳ በ ቡድን ውስጥ ካደረጉ: ሁሉም ተመሳሳይ ዋጋ ያላቸው መዝገቦች በ ሜዳ ውስጥ በ አንድ ቡድን ውስጥ ይሆናሉ"
#: rep_sort.xhp
msgctxt ""
@@ -12470,7 +12470,7 @@ msgctxt ""
"bm_id6009094\n"
"help.text"
msgid "<bookmark_value>wizards;database tables (Base)</bookmark_value><bookmark_value>Table Wizard (Base)</bookmark_value>"
-msgstr "<bookmark_value>አዋቂ: የ ዳታቤዝ ሰንጠረዥ (Base)</bookmark_value><bookmark_value>የ ሰንጠረዥ አዋቂ (Base)</bookmark_value>"
+msgstr "<bookmark_value>አዋቂ: የ ዳታቤዝ ሰንጠረዥ (ቤዝ)</bookmark_value><bookmark_value>የ ሰንጠረዥ አዋቂ (ቤዝ)</bookmark_value>"
#: tablewizard00.xhp
msgctxt ""
@@ -12478,7 +12478,7 @@ msgctxt ""
"par_idN1054C\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/tablewizard00.xhp\">የሰንጠረዥ አዋቂ</link>"
+msgstr "<link href=\"text/shared/explorer/database/tablewizard00.xhp\">የ ሰንጠረዥ አዋቂ</link>"
#: tablewizard00.xhp
msgctxt ""
@@ -12494,7 +12494,7 @@ msgctxt ""
"par_idN105AF\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/tablewizard01.xhp\" name=\"Table Wizard - Select fields\">Table Wizard - Select fields</link>"
-msgstr "<link href=\"text/shared/explorer/database/tablewizard01.xhp\" name=\"Table Wizard - Select fields\">የሰንጠረዥ አዋቂ - ሜዳዎች ይምረጡ</link>"
+msgstr "<link href=\"text/shared/explorer/database/tablewizard01.xhp\" name=\"Table Wizard - Select fields\">የ ሰንጠረዥ አዋቂ - ሜዳዎች ይምረጡ</link>"
#: tablewizard01.xhp
msgctxt ""
@@ -12926,7 +12926,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "<ahelp hid=\".\">Select to automatically insert a value and increment the field's value for each new record. The database must support automatic incrementation in order to use the <emph>Auto value</emph> feature.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ራሱ በራሱ ዋጋ እንዲያስገባ እና የ ሜዳዎች ዋጋ እንዲጨምር ለ እያንዳንዱ አዲስ መዝገብ: የ ዳታቤዝ መደገፍ አለበት ራሱ በራሱ መጨመሪያ ለ መጠቀም የ <emph>በራሱ ዋጋ</emph> ገጽታ</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ ራሱ በራሱ ዋጋ እንዲያስገባ እና የ ሜዳዎች ዋጋ እንዲጨምር ለ እያንዳንዱ አዲስ መዝገብ: የ ዳታቤዝ መደገፍ አለበት ራሱ በራሱ መጨመሪያ ለ መጠቀም የ <emph> በራሱ ዋጋ </emph> ገጽታ </ahelp>"
#: tablewizard03.xhp
msgctxt ""
@@ -13102,7 +13102,7 @@ msgctxt ""
"par_idN1056F\n"
"help.text"
msgid "<ahelp hid=\".\">Select to create a form based on this table. The form is created on a text document with the last used settings of the <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ለ መፍጠር ፎርም ይህን ሰንጠረዥ መሰረት ያደረገ በ ጽሁፍ ሰነድ ውስጥ መጨረሻ በ ተጠቀሙበት ማሰናጅ በ <link href=\"text/shared/autopi/01090000.xhp\">ፎርም አዋቂ</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ ለ መፍጠር ፎርም ይህን ሰንጠረዥ መሰረት ያደረገ በ ጽሁፍ ሰነድ ውስጥ መጨረሻ በ ተጠቀሙበት ማሰናጅ በ <link href=\"text/shared/autopi/01090000.xhp\"> ፎርም አዋቂ </link></ahelp>"
#: tablewizard04.xhp
msgctxt ""
@@ -13110,7 +13110,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Table Wizard\">Table Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Table Wizard\">የሰንጠርዥ አዋቂ</link>"
+msgstr "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Table Wizard\">የ ሰንጠርዥ አዋቂ</link>"
#: toolbars.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 583c1d5bafd..e2c757965cc 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 14:57+0000\n"
+"PO-Revision-Date: 2017-06-21 14:18+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496761059.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054720.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id3155552\n"
"help.text"
msgid "Access to all functions by keyboard. The keys that replace the mouse actions are listed in the <link name=\"%PRODUCTNAME Help\" href=\"text/shared/guide/keyboard.xhp\"><item type=\"productname\">%PRODUCTNAME</item> Help</link>"
-msgstr "በ ፊደል ገበታ ሁልም ተግባሮች ጋር መድረሻ: አይጡን የሚተኩት ቁልፎች ተዘርዝረዋል በ <link name=\"%PRODUCTNAME Help\" href=\"text/shared/guide/keyboard.xhp\"><item type=\"productname\">%PRODUCTNAME</item> እርዳታ ውስጥ</link>"
+msgstr "በ ፊደል ገበታ ሁልም ተግባሮች ጋር መድረሻ: አይጡን የሚተኩት ቁልፎች ተዘርዝረዋል በ <link name=\"%PRODUCTNAME Help\" href=\"text/shared/guide/keyboard.xhp\"><item type=\"productname\">%PRODUCTNAME</item> እርዳታ ውስጥ </link>"
#: accessibility.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "The user interface is scalable through your <switchinline select=\"sys\"><caseinline select=\"UNIX\">Window Manager</caseinline><defaultinline>operating system</defaultinline></switchinline> settings. The default font size for dialogs is 12pt, corresponding to a scale of 100%. You can also change the font size for dialogs in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - <item type=\"productname\">%PRODUCTNAME</item> - View</emph>. The zoom factor of a document can be changed in <emph>View - Zoom</emph>, or by double-clicking the zoom factor displayed in the Status Bar."
-msgstr "የ ተጠቃሚ ገጽታዎች ሊመጠኑ ይችላሉ በ እርስዎ <switchinline select=\"sys\"><caseinline select=\"UNIX\">መስኮት አስተዳዳሪ</caseinline><defaultinline> መስሪያ ስርአት</defaultinline></switchinline> ማሰናጃዎች: ነባር የ ፊደል መጠን ለ ንግግር 12ነጥብ ነው: ተመሳሳይ መጠን ከ 100%. የ ፊደሉን መጠን መቀየር ይችላሉ ለ ንግግር ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - <item type=\"productname\">%PRODUCTNAME</item> - መመልከቻ</emph> የ ሰነድ ማሳያ መጠን መቀየር ይችላሉ ከ <emph>መመልከቻ - ማሳያ</emph> ወይንም ሁለት ጊዜ-በመጫን በ ማሳያ መጠን ላይ በ ሁኔታዎች መደርደሪያ ላይ የሚታየውን"
+msgstr "የ ተጠቃሚ ገጽታዎች ሊመጠኑ ይችላሉ በ እርስዎ <switchinline select=\"sys\"><caseinline select=\"UNIX\"> መስኮት አስተዳዳሪ </caseinline><defaultinline> መስሪያ ስርአት </defaultinline></switchinline> ማሰናጃዎች: ነባር የ ፊደል መጠን ለ ንግግር 12ነጥብ ነው: ተመሳሳይ መጠን ከ 100%. የ ፊደሉን መጠን መቀየር ይችላሉ ለ ንግግር ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - <item type=\"productname\">%PRODUCTNAME</item> - መመልከቻ </emph> የ ሰነድ ማሳያ መጠን መቀየር ይችላሉ ከ <emph> መመልከቻ - ማሳያ </emph> ወይንም ሁለት ጊዜ-በመጫን በ ማሳያ መጠን ላይ በ ሁኔታዎች መደርደሪያ ላይ የሚታየውን"
#: accessibility.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Application Colors\" href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Application Colors</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Application Colors\" href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - የ መተግበሪያ ቀለሞች</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Application Colors\" href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - የ መተግበሪያ ቀለሞች </link>"
#: accessibility.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "Click the link to view the document in the Internet Explorer window."
-msgstr "አገናኙን ይጫኑ ሰነዱን ለመመልከት በ Internet Explorer window."
+msgstr "አገናኙን ይጫኑ ሰነዱን ለ መመልከት በ Internet Explorer window."
#: activex.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3154072\n"
"help.text"
msgid "You may still right-click the link to save the file on your harddisk."
-msgstr "አገናኙን በ ቀኝ-ይጫኑ ፋይሉን በ እርስዎ harddisk ላይ ለማስቀመጥ"
+msgstr "አገናኙን በ ቀኝ-ይጫኑ ፋይሉን በ እርስዎ ሀርድ ዲስክ ላይ ለማስቀመጥ"
#: activex.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_id3155430\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\">$[officename] - Application Colors</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\">$[officename] - የ መተግበሪያ ቀለሞች</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\">$[officename] - የ መተግበሪያ ቀለሞች </link>"
#: assistive.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "In the <emph>AutoCorrect</emph> dialog, select the <emph>Options</emph> tab."
-msgstr "ከ <emph>በራሱ አራሚ</emph> ንግግር ውስጥ ይምረጡ የ <emph>ምርጫዎች</emph> tab."
+msgstr "ከ <emph> በራሱ አራሚ </emph> ንግግር ውስጥ ይምረጡ የ <emph> ምርጫዎች </emph> tab."
#: autocorr_url.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph>"
#: background.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Borders</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - ድንበሮች</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - ድንበሮች </emph>"
#: border_paragraph.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "Select one of the default border styles in the <emph>Default</emph> area."
-msgstr "አንድ ነባር የ ድንበር ዘዴ ይምረጡ ከ <emph>ነባር</emph> ቦታ ውስጥ"
+msgstr "አንድ ነባር የ ድንበር ዘዴ ይምረጡ ከ <emph> ነባር </emph> ቦታ ውስጥ"
#: border_paragraph.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id3155388\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Borders</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - ድንበሮች</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - ድንበሮች </emph>"
#: border_paragraph.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_idN106E0\n"
"help.text"
msgid "To insert a line break in a spreadsheet cell, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys."
-msgstr "በ ሰንጠረዥ ክፍል ውስጥ የ መስመር መጨረሻ ለማስገባት ይጫኑ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter ቁልፎች"
+msgstr "በ ሰንጠረዥ ክፍል ውስጥ የ መስመር መጨረሻ ለማስገባት ይጫኑ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ ቁልፎች"
#: breaking_lines.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3153345\n"
"help.text"
msgid "Choose <emph>File - Properties</emph>. This opens the <emph>Document Properties</emph> dialog."
-msgstr "ይምረጡ <emph>ፋይል - ባህሪዎች</emph> ይህ ይከፍታል የ <emph>ሰነድ ባህሪዎችን</emph> ንግግር"
+msgstr "ይምረጡ <emph> ፋይል - ባህሪዎች </emph> ይህ ይከፍታል የ <emph> ሰነድ ባህሪዎችን </emph> ንግግር"
#: change_title.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Chart Axes"
-msgstr "የ ቻርትስ Axes ማረሚያ"
+msgstr "የ ቻርትስ አክሲስ ማረሚያ"
#: chart_axis.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"bm_id3155555\n"
"help.text"
msgid "<bookmark_value>charts; editing axes</bookmark_value><bookmark_value>axes in charts</bookmark_value><bookmark_value>editing; chart axes</bookmark_value><bookmark_value>formatting; axes in charts</bookmark_value>"
-msgstr "<bookmark_value>ቻርትስ: ማረሚያ axes</bookmark_value><bookmark_value>axes በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ማረሚያ: ቻርትስ axes</bookmark_value><bookmark_value>አቀራረብ: በ ቻርትስ ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>ቻርትስ: ማረሚያ አክሲስ</bookmark_value><bookmark_value>አክሲስ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ማረሚያ: የ ቻርትስ አክሲስ</bookmark_value><bookmark_value>አቀራረብ: አክሲስ በ ቻርትስ ውስጥ</bookmark_value>"
#: chart_axis.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "To edit the axes of a chart that you have inserted:"
-msgstr "እርስዎ ያስገቡትን የ ቻርትስ axes ለማረም:"
+msgstr "እርስዎ ያስገቡትን የ ቻርትስ አክሲስ ለማረም:"
#: chart_axis.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id7211218\n"
"help.text"
msgid "Click the <emph>Insert Chart</emph> icon on the <emph>Standard</emph> toolbar."
-msgstr "ይጫኑ በ <emph>ቻርትስ ማስገቢያ</emph> ምልክት ላይ በ <emph>መደበኛ</emph> እቃ መደርደሪያ ላይ"
+msgstr "ይጫኑ በ <emph> ቻርትስ ማስገቢያ </emph> ምልክት ላይ በ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ"
#: chart_insert.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "Choose <emph>Format - Legend</emph> or double-click on the legend. This opens the <emph>Legend</emph> dialog."
-msgstr "ይምረጡ <emph>አቀራረብ - መግለጫ</emph> ወይንም ሁለት ጊዜ-ይጫኑ በ መግለጫ ላይ: ይህ ይከፍታል የ <emph>መግለጫ</emph> ንግግር"
+msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ </emph> ወይንም ሁለት ጊዜ-ይጫኑ በ መግለጫ ላይ: ይህ ይከፍታል የ <emph> መግለጫ </emph> ንግግር"
#: chart_legend.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "If you want to change the formatting of the main title, choose <emph>Format - Title - Main Title</emph>. This opens the <emph>Title</emph> dialog."
-msgstr "የ ዋናውን አርእስት አቀራረብ መቀየር ከፈለጉ: ይምረጡ <emph>አቀራረብ - አርእስት - ዋናውን አርእስት</emph> ይህ ይከፍታል የ <emph>አርእስት</emph> ንግግር"
+msgstr "የ ዋናውን አርእስት አቀራረብ መቀየር ከፈለጉ: ይምረጡ <emph> አቀራረብ - አርእስት - ዋናውን አርእስት </emph> ይህ ይከፍታል የ <emph> አርእስት </emph> ንግግር"
#: chart_title.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_id150820161816031470\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Open Remote Files</item>"
-msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል > መክፈቻ የ ሩቅ ፋይሎች </item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - መክፈቻ የ ሩቅ ፋይሎች </item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id150820161816037870\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Save to Remote Server</item>"
-msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል > ማስቀመጫ ወደ ሩቅ ሰርቨር </item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ማስቀመጫ ወደ ሩቅ ሰርቨር </item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"par_id150820161816047387\n"
"help.text"
msgid "<variable id=\"rememberpw\"><emph>Remember password</emph>: Check to store the password in %PRODUCTNAME’s user profile. The password will be secured by the master password in <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security - Internet passwords</item>.</variable>"
-msgstr "<variable id=\"rememberpw\"><emph>የ መግቢያ ቃል አስታውስ </emph>: የ መግቢያ ቃል የ ተቀመበትን መርምር በ %PRODUCTNAME ተጠቃሚ ገጽታ ውስጥ: የ መግቢያ ቃል ይቀመጣል በ ዋናው መግቢያ ቃል ማስቀመጫ ውስጥ: በ <item type=\"menuitem\">መሳሪያዎች - ምርጫዎች - %PRODUCTNAME - ደህንነት - ኢንተርኔት የ መግቢያ ቃል</item>.</variable>"
+msgstr "<variable id=\"rememberpw\"><emph>የ መግቢያ ቃል አስታውስ </emph>: የ መግቢያ ቃል የ ተቀመበትን መርምር በ %PRODUCTNAME ተጠቃሚ ገጽታ ውስጥ: የ መግቢያ ቃል ይቀመጣል በ ዋናው መግቢያ ቃል ማስቀመጫ ውስጥ: በ <item type=\"menuitem\"> መሳሪያዎች - ምርጫዎች - %PRODUCTNAME - ደህንነት - ኢንተርኔት የ መግቢያ ቃል </item>:</variable>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id17082016160541995\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open remote file</item> in any %PRODUCTNAME module"
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መክፈቻ የ ሩቅ ፋይል</item> በ ማንኛውም %PRODUCTNAME ክፍል"
+msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መክፈቻ የ ሩቅ ፋይል </item> በ ማንኛውም %PRODUCTNAME ክፍል"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id170820161605417597\n"
"help.text"
msgid "Select the file and click <emph>Open</emph> or press <emph>Enter</emph>."
-msgstr "ፋይል ይምረጡ እና ይጫኑ <emph> መክፈቻ </emph> ወይንም ይጫኑ <emph> ማስገቢያ </emph>."
+msgstr "ፋይል ይምረጡ እና ይጫኑ <emph> መክፈቻ </emph> ወይንም ይጫኑ <emph> ማስገቢያ </emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id170820161605428976\n"
"help.text"
msgid "When a file is open from a CMIS remote file service, %PRODUCTNAME display a <emph>Check-out</emph> button on the top message area. Click the <emph>Check-out</emph> button to lock the file in the server to prevent edition by another user. Alternatively choose <item type=\"menuitem\">File - Check-out</item>."
-msgstr "ፋይል በሚከፈት ጊዜ በ CMIS የ ሩቅ ፋይል ግልጋሎት: %PRODUCTNAME ይታያል የ a <emph>መውጫ-መመርመሪያ</emph> ቁልፍ ከ መልእክቱ በ ላይ በኩል: ይጫኑ የ <emph>መውጫ-መመርመሪያ</emph> ቁልፍ ፋይል ለ መቆለፍ በ ሰርቨሩ ውስጥ ለ መከልከል ፋይሉን ከ ማረም በ ሌሎች ተጠቃሚዎች: በ አማራጭ ይምረጡ <item type=\"menuitem\">ፋይል - መውጫ-መመርመሪያ</item>."
+msgstr "ፋይል በሚከፈት ጊዜ በ CMIS የ ሩቅ ፋይል ግልጋሎት: %PRODUCTNAME ይታያል የ <emph> መውጫ-መመርመሪያ </emph> ቁልፍ ከ መልእክቱ በ ላይ በኩል: ይጫኑ የ <emph> መውጫ-መመርመሪያ </emph> ቁልፍ ፋይል ለ መቆለፍ በ ሰርቨሩ ውስጥ ለ መከልከል ፋይሉን ከ ማረም በ ሌሎች ተጠቃሚዎች: በ አማራጭ ይምረጡ <item type=\"menuitem\"> ፋይል - መውጫ-መመርመሪያ </item>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id190820161707155303\n"
"help.text"
msgid "To cancel a check-out, choose <item type=\"menuitem\">File - Cancel Check-Out</item>. A warning message will inform that the latest edition will be discarded. If confirmed, no version updates occurs."
-msgstr "የ መውጫ-መመርመሪያ ለ መሰረዝ: ይምረጡ <item type=\"menuitem\">ፋይል - መሰረዥ መውጫ-መመርመሪያ</item> የ ማስጠንቀቂያ መልእክት ይታያል እና ዘመናዊው እትም ይወገዳል: ካረጋገጡ: ምንም የ እትም ማሻሻያ አይካሄድም"
+msgstr "የ መውጫ-መመርመሪያ ለ መሰረዝ: ይምረጡ <item type=\"menuitem\"> ፋይል - መሰረዥ መውጫ-መመርመሪያ </item> የ ማስጠንቀቂያ መልእክት ይታያል እና ዘመናዊው እትም ይወገዳል: ካረጋገጡ: ምንም የ እትም ማሻሻያ አይካሄድም"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id170820161605423872\n"
"help.text"
msgid "If the file was opened from a CMIS server, choose <item type=\"menuitem\">File - Save</item>, click on the <emph>Save</emph> button or hit <item type=\"literal\">Ctrl + S</item>."
-msgstr "ፋይሉ የ ተከፈተው ከ CMIS ሰርቨር ውስጥ ከሆነ: ይምረጡ <item type=\"menuitem\">ፋይል - ማስቀመጫ</item> ይጫኑ በ <emph>ማስቀመጫ</emph> ቁልፍ ላይ ወይንም ይምቱ <item type=\"literal\">Ctrl + S</item>."
+msgstr "ፋይሉ የ ተከፈተው ከ CMIS ሰርቨር ውስጥ ከሆነ: ይምረጡ <item type=\"menuitem\"> ፋይል - ማስቀመጫ </item> ይጫኑ በ <emph> ማስቀመጫ </emph> ቁልፍ ላይ ወይንም ይምቱ <item type=\"literal\">Ctrl + S</item>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"par_id190820161707166344\n"
"help.text"
msgid "If the file is not stored in a CMIS server, Choose <item type=\"menuitem\">File - Save to Remote Server </item>or do a long click in the <emph>Save</emph> icon, and select <emph>Save Remote File</emph>"
-msgstr "ፋይሉ በ CMIS ሰርቨር ላይ ካልተቀመጠ: ይምረጡ <item type=\"menuitem\">ፋይል - ማስቀመጫ ወደ ሩቅ ሰርቨር </item>ወይንም በረጅሙ ይጫኑ በ <emph>ማስቀመጫ</emph> ምልክት ላይ: እና ይምረጡ <emph>ፋይል በ ሩቅ ማስቀመጫ </emph>"
+msgstr "ፋይሉ በ CMIS ሰርቨር ላይ ካልተቀመጠ: ይምረጡ <item type=\"menuitem\"> ፋይል - ማስቀመጫ ወደ ሩቅ ሰርቨር </item> ወይንም በረጅሙ ይጫኑ በ <emph> ማስቀመጫ </emph> ምልክት ላይ: እና ይምረጡ <emph> ፋይል በ ሩቅ ማስቀመጫ </emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"par_id170820161605425024\n"
"help.text"
msgid "In the <emph>Filter</emph> list box, select the desired format."
-msgstr "በ <emph>ማጣሪያ</emph> ዝርዝር ሳጥን ውስጥ: ይምረጡ የሚፈለገውን አቀራረብ"
+msgstr "በ <emph> ማጣሪያ </emph> ዝርዝር ሳጥን ውስጥ: ይምረጡ የሚፈለገውን አቀራረብ"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"par_id170820161605424622\n"
"help.text"
msgid "Enter a name in the File name box and click <emph>Save</emph>."
-msgstr "ስም ያስገቡ በ ፋይል ስም ሳጥን ውስጥ እና ይጫኑ <emph> ማስቀመጫ </emph>."
+msgstr "ስም ያስገቡ በ ፋይል ስም ሳጥን ውስጥ እና ይጫኑ <emph> ማስቀመጫ </emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"par_id190820161707161708\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Properties</item>, CMIS tab."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - ባህሪዎች</item> CMIS tab."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ባህሪዎች </item> CMIS tab."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2590,7 +2590,7 @@ msgctxt ""
"par_id4411145\n"
"help.text"
msgid "In %PRODUCTNAME Calc, document sharing allows simultaneous write access for many users. Every user who wants to collaborate should enter a name on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - User Data</emph> tab page."
-msgstr "በ %PRODUCTNAME ሰንጠረዥ, ሰነድ መካፈያ የሚያስችለው ለ በርካታ ተጠቃሚዎች ወዲያውኑ ለ መጻፍ እንዲችሉ ነው: ሁሉም ተጠቃሚ መተባበር የሚፈልግ ስም ማስገባት አለበት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የ ተጠቃሚ ዳታ</emph> tab ገጽ ላይ"
+msgstr "የ %PRODUCTNAME ሰንጠረዥ ሰነድ መካፈያ የሚያስችለው ለ በርካታ ተጠቃሚዎች ወዲያውኑ ለ መጻፍ እንዲችሉ ነው: ሁሉም ተጠቃሚ መተባበር የሚፈልግ ስም ማስገባት አለበት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የ ተጠቃሚ ዳታ </emph> tab ገጽ ላይ"
#: collab.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "To select the format in which the clipboard contents will be pasted, click the arrow next to the <emph>Paste</emph> icon on the Standard bar, or choose <emph>Edit - Paste Special</emph>, then select the proper format."
-msgstr "የ ቁራጭ ሰሌዳው ይዞታዎች አቀራረብ እንዴት እንደሚለጠፉ ለመምረጥ: ይጫኑ ቀስቱ አጠገብ ያለውን የ <emph> መለጠፊያ </emph> ምልክት በ መደበኛ እቃ መደርደሪያ ላይ: ወይንም ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ</emph> እና ከዛ ተገቢውን አቀራረብ ይምረጡ"
+msgstr "የ ቁራጭ ሰሌዳው ይዞታዎች አቀራረብ እንዴት እንደሚለጠፉ ለመምረጥ: ይጫኑ ቀስቱ አጠገብ ያለውን የ <emph> መለጠፊያ </emph> ምልክት በ መደበኛ እቃ መደርደሪያ ላይ: ወይንም ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph> እና ከዛ ተገቢውን አቀራረብ ይምረጡ"
#: copytext2application.xhp
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"par_id3145316\n"
"help.text"
msgid "If you want to transfer each heading together with its accompanying paragraphs, select the <emph>File - Send - AutoAbstract to Presentation</emph> command. You must have formatted the headings with a corresponding Paragraph Style to be able to see this command."
-msgstr "እርስዎ ከ ፈለጉ ማስተላለፍ እያንዳንዱን ራስጌ በ አንድ ላይ አብረው ከ አንቀጾች ጋር: ይምረጡ የ <emph>ፋይል - መላኪያ - በራሱ ግልጽ ያልሆነ ወደ ማቅረቢያ</emph> ትእዛዝ: እርስዎ ማቅረብ አለብዎት ራስጌዎቹን ከ ተመሳሳይ የ አንቀጽ ዘዴ ጋር ይህን ትእዛዝ ለ መመልከት"
+msgstr "እርስዎ ከ ፈለጉ ማስተላለፍ እያንዳንዱን ራስጌ በ አንድ ላይ አብረው ከ አንቀጾች ጋር: ይምረጡ የ <emph> ፋይል - መላኪያ - በራሱ ግልጽ ያልሆነ ወደ ማቅረቢያ </emph> ትእዛዝ: እርስዎ ማቅረብ አለብዎት ራስጌዎቹን ከ ተመሳሳይ የ አንቀጽ ዘዴ ጋር ይህን ትእዛዝ ለ መመልከት"
#: copytext2application.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "In $[officename] Writer text formatted in <emph>Thai language</emph> has the following features:"
-msgstr "በ $[officename] መጻፊያ የ ጽሁፍ አቀራረብ ለ <emph>Thai ቋንቋ</emph> የሚቀጥሉት ገጽታዎች አሉት:"
+msgstr "በ $[officename] መጻፊያ የ ጽሁፍ አቀራረብ ለ <emph> ታዪ ቋንቋ</emph> የሚቀጥሉት ገጽታዎች አሉት:"
#: ctl.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id5941648\n"
"help.text"
msgid "The address book data is read-only in %PRODUCTNAME Base. It is not possible to add, edit, or delete address data from within Base."
-msgstr "የ አድራሻ ደብተር ዳታ ለ ንባብ-ብቻ ነው በ %PRODUCTNAME Base ውስጥ: የ አድራሻ ደብተር ዳታ መጨመር: ማረም: ወይንም ማጥፋት አይችሉም በ Base ውስጥ"
+msgstr "የ አድራሻ ደብተር ዳታ ለ ንባብ-ብቻ ነው በ %PRODUCTNAME ቤዝ ውስጥ: የ አድራሻ ደብተር ዳታ መጨመር: ማረም: ወይንም ማጥፋት አይችሉም በ ቤዝ ውስጥ"
#: data_addressbook.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "To call the <link href=\"text/shared/autopi/01170000.xhp\" name=\"Address Data Source\">Address Data Source</link> wizard, choose <emph>File - Wizards - Address Data Source</emph>."
-msgstr "ለመጥራት የ <link href=\"text/shared/autopi/01170000.xhp\" name=\"Address Data Source\">አድራሻ ዳታ ምንጭ</link> አዋቂ ይምረጡ <emph>ፋይል - አዋቂ - የ አድራሻ ዳታ ምንጭ</emph>."
+msgstr "ለ መጥራት የ <link href=\"text/shared/autopi/01170000.xhp\" name=\"Address Data Source\"> አድራሻ ዳታ ምንጭ </link> አዋቂ ይምረጡ <emph> ፋይል - አዋቂ - የ አድራሻ ዳታ ምንጭ </emph>"
#: data_addressbook.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "In the <emph>Data source</emph> combo box, select the system address book or the data source you want to use as an address book."
-msgstr "ከ <emph>ዳታ ምንጭ</emph> መቀላቀያ ሳጥን ውስጥ: ይምረጡ የ ስርአቱን የ አድራሻ ደብተር ወይንም ዳታ ምንጭ እርስዎ መጠቀም የሚፈልጉትን የ አድራሻ ደብተር"
+msgstr "ከ <emph> ዳታ ምንጭ </emph> መቀላቀያ ሳጥን ውስጥ: ይምረጡ የ ስርአቱን የ አድራሻ ደብተር ወይንም ዳታ ምንጭ እርስዎ መጠቀም የሚፈልጉትን የ አድራሻ ደብተር"
#: data_addressbook.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_idN10784\n"
"help.text"
msgid "When finished, close the dialog with <emph>OK</emph>."
-msgstr "ሲጨርሱ ንግግሩን ይዝጉ በ <emph>እሺ</emph>."
+msgstr "ሲጨርሱ ንግግሩን ይዝጉ በ <emph> እሺ </emph>"
#: data_addressbook.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3149983\n"
"help.text"
msgid "Now your data source is registered in <item type=\"productname\">%PRODUCTNAME</item> as the address book. If you now open a template from the <emph>Business Correspondence</emph> category, <item type=\"productname\">%PRODUCTNAME</item> can automatically insert the correct fields for a form letter."
-msgstr "አሁን የ እርስዎ ዳታ ምንጭ ተመዝግቧል በ <item type=\"productname\">%PRODUCTNAME</item> ውስጥ እንደ አድራሻ ደብተር: አሁን ቴምፕሌት ከከፈቱ ከ <emph>ንግዶች ግንኙነት </emph> ምድብ ውስጥ <item type=\"productname\">%PRODUCTNAME</item> ራሱ በራሱ ያስገባል ትክክለኛውን ሜዳዎች ለ ደብዳቤ ፎርም"
+msgstr "አሁን የ እርስዎ ዳታ ምንጭ ተመዝግቧል በ <item type=\"productname\">%PRODUCTNAME</item> ውስጥ እንደ አድራሻ ደብተር: አሁን ቴምፕሌት ከከፈቱ ከ <emph> ንግዶች ግንኙነት </emph> ምድብ ውስጥ <item type=\"productname\">%PRODUCTNAME</item> ራሱ በራሱ ያስገባል ትክክለኛውን ሜዳዎች ለ ደብዳቤ ፎርም"
#: data_dbase2office.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "Choose <emph>File - </emph><link href=\"text/shared/01/01020000.xhp\" name=\"Open\"><emph>Open</emph></link> and click the file to import."
-msgstr "ይምረጡ <emph>ፋይል - </emph><link href=\"text/shared/01/01020000.xhp\" name=\"Open\"><emph>መክፈቻ</emph></link> እና ይጫኑ የሚመጣውን ፋይል"
+msgstr "ይምረጡ <emph> ፋይል - </emph><link href=\"text/shared/01/01020000.xhp\" name=\"Open\"><emph> መክፈቻ </emph></link> እና ይጫኑ የሚመጣውን ፋይል"
#: data_dbase2office.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id1977904\n"
"help.text"
msgid "Select \"Text CSV\" from the <emph>File type</emph> combo box. Click <emph>Open</emph>."
-msgstr "ይምረጡ \"Text CSV\" ከ <emph>ፋይል አይነት</emph> መቀላቀያ ሳጥን ውስጥ: ይጫኑ <emph>መክፈቻ</emph>."
+msgstr "ይምረጡ \"Text CSV\" ከ <emph> ፋይል አይነት </emph> መቀላቀያ ሳጥን ውስጥ: ይጫኑ <emph> መክፈቻ </emph>"
#: data_dbase2office.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "Choose <emph>File - Save as</emph>."
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph>"
#: data_dbase2office.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"par_id3154216\n"
"help.text"
msgid "In <emph>File type</emph> select the filter \"Text CSV\". Enter a file name and click <emph>Save</emph>."
-msgstr "ከ <emph>ፋይል አይነት</emph> ውስጥ ይምረጡ የ ማጣሪያ \"Text CSV\". የ ፋይል ስም ያስገቡ እና ይጫኑ <emph>ማስቀመጫ</emph>."
+msgstr "ከ <emph> ፋይል አይነት </emph> ውስጥ ይምረጡ የ ማጣሪያ \"Text CSV\". የ ፋይል ስም ያስገቡ እና ይጫኑ <emph> ማስቀመጫ </emph>"
#: data_dbase2office.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"par_id7923825\n"
"help.text"
msgid "Choose <emph>File - Open</emph> to open a database file."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph> የ ዳታቤዝ ፋይል ለ መክፈት"
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph> የ ዳታቤዝ ፋይል ለ መክፈት"
#: data_enter_sql.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"par_id3151176\n"
"help.text"
msgid "Click the <emph>Create Query in SQL View</emph> icon <image id=\"img_id3154071\" src=\"cmd/sc_dbnewquerysql.png\" width=\"0.1862in\" height=\"0.1862in\"><alt id=\"alt_id3154071\">Icon</alt></image> or"
-msgstr "ይጫኑ የ <emph> ጥያቄ መፍጠሪያ በ SQL መመልከቻ</emph> ምልክት <image id=\"img_id3154071\" src=\"cmd/sc_dbnewquerysql.png\" width=\"0.1862in\" height=\"0.1862in\"><alt id=\"alt_id3154071\">ምልክት</alt></image> ወይንም"
+msgstr "ይጫኑ የ <emph> ጥያቄ መፍጠሪያ በ SQL መመልከቻ </emph> ምልክት <image id=\"img_id3154071\" src=\"cmd/sc_dbnewquerysql.png\" width=\"0.1862in\" height=\"0.1862in\"><alt id=\"alt_id3154071\"> ምልክት </alt></image> ወይንም"
#: data_enter_sql.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "Select an existing query from the list and click the <emph>Edit</emph> icon <image id=\"img_id3156212\" src=\"cmd/sc_dbqueryedit.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156212\">Icon</alt></image>."
-msgstr "ይምረጡ ከ ነበረው ጥያቄ ዝርዝር ውስጥ እና ይጫኑ የ <emph>ማረሚያ</emph> ምልክት <image id=\"img_id3156212\" src=\"cmd/sc_dbqueryedit.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156212\">ምልክት</alt></image>."
+msgstr "ይምረጡ ከ ነበረው ጥያቄ ዝርዝር ውስጥ እና ይጫኑ የ <emph> ማረሚያ </emph> ምልክት <image id=\"img_id3156212\" src=\"cmd/sc_dbqueryedit.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156212\"> ምልክት </alt></image>"
#: data_enter_sql.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3083443\n"
"help.text"
msgid "In the <emph>Query</emph> window, choose <emph>View - Switch Design View On/Off</emph>. Edit the SQL command."
-msgstr "ከ <emph>ጥያቄ</emph> መስኮት ውስጥ ይምረጡ <emph>መመልከቻ - የ ንድፍ መመልከቻ መቀየሪያ ማብሪያ/ማጥፊያ</emph> ማረሚያ የ SQL ትእዛዝ"
+msgstr "ከ <emph>ጥያቄ</emph> መስኮት ውስጥ ይምረጡ <emph> መመልከቻ - የ ንድፍ መመልከቻ መቀየሪያ ማብሪያ/ማጥፊያ </emph> ማረሚያ የ SQL ትእዛዝ"
#: data_enter_sql.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_idN10636\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Forms</emph> icon."
-msgstr "በ ግራ ክፍል የ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph>ፎርሞች</emph> ምልክት"
+msgstr "በ ግራ ክፍል የ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph> ፎርሞች </emph> ምልክት"
#: data_forms.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_idN10650\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Forms</emph> icon."
-msgstr "በ ግራ ክፍል የ ዳታቤዝ መስኮትውስጥ ይጫኑ የ <emph>ፎርሞች</emph> ምልክት"
+msgstr "በ ግራ ክፍል የ ዳታቤዝ መስኮትውስጥ ይጫኑ የ <emph> ፎርሞች </emph> ምልክት"
#: data_forms.xhp
msgctxt ""
@@ -3934,7 +3934,7 @@ msgctxt ""
"par_idN10670\n"
"help.text"
msgid "Click the <emph>Forms</emph> icon to access all forms that were created from within the current database window. In addition, you can use the <emph>Form Controls</emph> icons to add database form controls to any Writer or Calc document, but these documents will not be listed in the database window."
-msgstr "ይጫኑ የ <emph>ፎርሞች</emph> ምልክት ሁሉም ፎርሞች ጋር ለ መድረስ ከ አሁኑ የ ዳታቤዝ መስኮት ውስጥ የ ተፈጠሩት ጋር: በ ተጨማሪ: እርስዎ መጠቀም ይችላሉ የ <emph>ፎርም መቆጣጠሪያዎች</emph> ምልክት የ ዳታቤዝ ፎርም መቆጣጠሪያዎች ለ መጨመር ለ ማንኛውም መጻፊያ ወይንም ሰንጠረዥ ሰነድ: ነገር ግን እነዚህ ሰነዶች ዳታቤዝ ዝርዝር ውስጥ አይኖሩም"
+msgstr "ይጫኑ የ <emph> ፎርሞች </emph> ምልክት ሁሉም ፎርሞች ጋር ለ መድረስ ከ አሁኑ የ ዳታቤዝ መስኮት ውስጥ የ ተፈጠሩት ጋር: በ ተጨማሪ: እርስዎ መጠቀም ይችላሉ የ <emph> ፎርም መቆጣጠሪያዎች </emph> ምልክት የ ዳታቤዝ ፎርም መቆጣጠሪያዎች ለ መጨመር ለ ማንኛውም መጻፊያ ወይንም ሰንጠረዥ ሰነድ: ነገር ግን እነዚህ ሰነዶች ዳታቤዝ ዝርዝር ውስጥ አይኖሩም"
#: data_im_export.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Importing and Exporting Data in Base"
-msgstr "ዳታ በ Base ማምጫ እና መላኪያ"
+msgstr "ዳታ በ ቤዝ ማምጫ እና መላኪያ ውስጥ"
#: data_im_export.xhp
msgctxt ""
@@ -3950,7 +3950,7 @@ msgctxt ""
"bm_id6911546\n"
"help.text"
msgid "<bookmark_value>databases;importing/exporting</bookmark_value><bookmark_value>importing;databases</bookmark_value><bookmark_value>copying; datasource records in spreadsheets</bookmark_value><bookmark_value>inserting; datasource records in spreadsheets</bookmark_value><bookmark_value>spreadsheets;inserting database records</bookmark_value><bookmark_value>data sources;copying records to spreadsheets</bookmark_value><bookmark_value>pasting;from data sources to %PRODUCTNAME Calc</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ: ማምጫ/መላኪያ</bookmark_value><bookmark_value>ማምጫ: ዳታቤዝ</bookmark_value><bookmark_value>ኮፒ ማድረጊያ: የ ዳታ ምንጭ መዝገብ በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>ማስገቢያ: የ ዳታ ምንጭ መዝገብ በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>ሰንጠረዥ: ማስገቢያ የ ዳታቤዝ መዝገብ</bookmark_value><bookmark_value>የ ዳታ ምንጭ: መዝገብ ኮፒ ማድረጊያ ወደ ሰንጠረዥ</bookmark_value><bookmark_value>መለጠፊያ: ከ ዳታ ምንጭ ወደ %PRODUCTNAME ሰንጠረዥ</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዝ: ማምጫ/መላኪያ </bookmark_value><bookmark_value> ማምጫ: ዳታቤዝ </bookmark_value><bookmark_value> ኮፒ ማድረጊያ: የ ዳታ ምንጭ መዝገብ በ ሰንጠረዥ ውስጥ </bookmark_value><bookmark_value> ማስገቢያ: የ ዳታ ምንጭ መዝገብ በ ሰንጠረዥ ውስጥ </bookmark_value><bookmark_value> ሰንጠረዥ: ማስገቢያ የ ዳታቤዝ መዝገብ </bookmark_value><bookmark_value>የ ዳታ ምንጭ: መዝገብ ኮፒ ማድረጊያ ወደ ሰንጠረዥ </bookmark_value><bookmark_value> መለጠፊያ: ከ ዳታ ምንጭ ወደ %PRODUCTNAME ሰንጠረዥ</bookmark_value>"
#: data_im_export.xhp
msgctxt ""
@@ -3958,7 +3958,7 @@ msgctxt ""
"hd_id4547257\n"
"help.text"
msgid "<variable id=\"data_im_export\"><link href=\"text/shared/guide/data_im_export.xhp\">Importing and Exporting Data in Base</link></variable>"
-msgstr "<variable id=\"data_im_export\"><link href=\"text/shared/guide/data_im_export.xhp\">ዳታ በ Base ማምጫ እና መላኪያ</link></variable>"
+msgstr "<variable id=\"data_im_export\"><link href=\"text/shared/guide/data_im_export.xhp\">ዳታ በ ቤዝ ማምጫ እና መላኪያ</link></variable>"
#: data_im_export.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"hd_id3912778\n"
"help.text"
msgid "Exporting data from Base"
-msgstr "ዳታ ከ Base ውስጥ መላኪያ"
+msgstr "ዳታ ከ ቤዝ ውስጥ መላኪያ"
#: data_im_export.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"par_id3163853\n"
"help.text"
msgid "You copy a table from Base to a new Calc sheet, then you can save or export the data to any file format that Calc supports."
-msgstr "እርስዎ ሰንጠረዥ ኮፒ ያድርጉ ከ Base ውስጥ ወደ አዲስ ሰንጠረዥ ወረቀት ውስጥ: እና ከዛ ያስቀምጡ ወይንም ይላኩ ዳታውን ወደ ማንኛውም የ ፋይል አቀራረብ በ ሰንጠረዥ ድጋፍ"
+msgstr "እርስዎ ሰንጠረዥ ኮፒ ያድርጉ ከ ቤዝ ውስጥ ወደ አዲስ ሰንጠረዥ ወረቀት ውስጥ: እና ከዛ ያስቀምጡ ወይንም ይላኩ ዳታውን ወደ ማንኛውም የ ፋይል አቀራረብ በ ሰንጠረዥ ድጋፍ"
#: data_im_export.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id1331217\n"
"help.text"
msgid "In the Base window, right-click the name of the table to export. Choose <emph>Copy</emph> from the context menu."
-msgstr "ከ Base መስኮት ውስጥ በ ቀኝ-ይጫኑ በሚላከው የ ሰንጠረዥ ስም ላይ: ይምረጡ <emph> ኮፒ </emph> ከ አገባብ ዝርዝር ውስጥ"
+msgstr "ከ ቤዝ መስኮት ውስጥ በ ቀኝ-ይጫኑ በሚላከው የ ሰንጠረዥ ስም ላይ: ይምረጡ <emph> ኮፒ </emph> ከ አገባብ ዝርዝር ውስጥ"
#: data_im_export.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"hd_id9999694\n"
"help.text"
msgid "Importing data to Base"
-msgstr "ዳታ ወደ Base ማምጫ"
+msgstr "ዳታ ወደ ቤዝ ማምጫ"
#: data_im_export.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id9579760\n"
"help.text"
msgid "When you import from a text or spreadsheet file, the file must have a first row of header information. The second row of the file is the first valid data row. The format of every field in the second row determines the format for the entire column. Any format information from a spreadsheet file gets lost when importing to Base."
-msgstr "እርስዎ በሚያመጡ ጊዜ ከ ጽሁፍ ወይንም ከ ሰንጠረዥ ፋይል ውስጥ: ፋይሊ በ መጀመሪያው ረድፍ ውስጥ የ ራስጌ መረጃ መያዝ አለበት: የ ሁለተኛው ረድፍ ፋይል የ መጀመሪያው ዋጋ ያለው የ ዳታ ረድፍ መሆን አለበት: የ ሁሉም ሜዳ አቀራረብ በ ሁለተኛው ረድፍ ይወስናል የ ጠቅላላ አምዱን አቀራረብ: ማንኛውም የ አቀራረብ መረጃ የ ሰንጠረዥ ፋይል ይጠፋል ወደ Base በሚያመጡ ጊዜ"
+msgstr "እርስዎ በሚያመጡ ጊዜ ከ ጽሁፍ ወይንም ከ ሰንጠረዥ ፋይል ውስጥ: ፋይሊ በ መጀመሪያው ረድፍ ውስጥ የ ራስጌ መረጃ መያዝ አለበት: የ ሁለተኛው ረድፍ ፋይል የ መጀመሪያው ዋጋ ያለው የ ዳታ ረድፍ መሆን አለበት: የ ሁሉም ሜዳ አቀራረብ በ ሁለተኛው ረድፍ ይወስናል የ ጠቅላላ አምዱን አቀራረብ: ማንኛውም የ አቀራረብ መረጃ የ ሰንጠረዥ ፋይል ይጠፋል ወደ ቤዝ በሚያመጡ ጊዜ"
#: data_im_export.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_id2216559\n"
"help.text"
msgid "Open a Base file of the database type that you want."
-msgstr "እርስዎ የሚፈልጉትን የ Base ፋይል ከ ዳታቤዝ ውስጥ መክፈቻ"
+msgstr "እርስዎ የሚፈልጉትን የ ቤዝ ፋይል ከ ዳታቤዝ ውስጥ መክፈቻ"
#: data_im_export.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_id7869502\n"
"help.text"
msgid "Either create a new Base file using the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>, or open any existing Base file that is not read-only."
-msgstr "አምዱን ይፈጥራል አዲስ የ Base ፋይል በ መጠቀም የ <link href=\"text/shared/explorer/database/dabawiz00.xhp\">ዳታቤዝ አዋቂ</link> ወይንም መክፈቻ ማንኛውም የ ነበረ የ Base ፋይል ለ ንባብ-ብቻ ያልሆነ"
+msgstr "አምዱን ይፈጥራል አዲስ የ ቤዝ ፋይል በ መጠቀም የ <link href=\"text/shared/explorer/database/dabawiz00.xhp\"> ዳታቤዝ አዋቂ </link> ወይንም መክፈቻ ማንኛውም የ ነበረ የ ቤዝ ፋይል ለ ንባብ-ብቻ ያልሆነ"
#: data_im_export.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_id9852900\n"
"help.text"
msgid "Open the Calc file that contains the data to be imported to Base. You can open a *.dbf dBASE file or many other file types."
-msgstr "መክፈቻ የ ሰንጠረዥ ፋይል ዳታ የያዘ የሚመጣ ከ Base ውስጥ: እርስዎ መክፈት ይችላሉ የ *.dbf የ ዳታቤዝ ፋይል ወይንም በርካታ የ ተለያዩ የ ፋይል አይነቶች"
+msgstr "መክፈቻ የ ሰንጠረዥ ፋይል ዳታ የያዘ የሚመጣ ከ ቤዝ ውስጥ: እርስዎ መክፈት ይችላሉ የ *.dbf የ ዳታቤዝ ፋይል ወይንም በርካታ የ ተለያዩ የ ፋይል አይነቶች"
#: data_im_export.xhp
msgctxt ""
@@ -4086,7 +4086,7 @@ msgctxt ""
"par_id3791924\n"
"help.text"
msgid "Select the data to be copied to Base."
-msgstr "ይምረጡ ወደ Base ኮፒ የሚደረገውን ዳታ"
+msgstr "ይምረጡ ወደ ቤዝ ኮፒ የሚደረገውን ዳታ"
#: data_im_export.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"par_id5669423\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - ኮፒ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ኮፒ </emph>"
#: data_im_export.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_id3619495\n"
"help.text"
msgid "In the Base window, click <emph>Tables</emph> to view the tables."
-msgstr "በ Base መስኮት ውስጥ ይጫኑ <emph>ሰንጠረዦች</emph> ሰንጠረዦች ለ መመልከት"
+msgstr "በ ቤዝ መስኮት ውስጥ ይጫኑ <emph> ሰንጠረዦች </emph> ሰንጠረዦች ለ መመልከት"
#: data_im_export.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_id1175572\n"
"help.text"
msgid "In the Base window, choose <emph>Edit - Paste</emph>."
-msgstr "በ Base መስኮት ውስጥ ይጫኑ <emph>ማረሚያ - መለጠፊያ</emph>."
+msgstr "በ ቤዝ መስኮት ውስጥ ይጫኑ <emph> ማረሚያ - መለጠፊያ </emph>"
#: data_im_export.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id2584002\n"
"help.text"
msgid "On Windows systems, you can also use drag-and-drop instead of Copy and Paste. Also, for registered databases, you can open the datasource browser (press F4) instead of opening the Base window."
-msgstr "በ Windows ስርአት ውስጥ: እርስዎ መጠቀም ይችላሉ የ መጎተቻ-እና-መጣያ ከ ኮፒ ማድረግ እና ከ መለጠፍ ይልቅ: እንዲሁም: ለ ተመዘገቡ ዳታቤዞች: እርስዎ መክፈት ይችላሉ የ ዳታ ምንጭ መቃኛ (ይጫኑ F4) የ Base መስኮት ከ መክፈት ይልቅ"
+msgstr "በ Windows ስርአት ውስጥ: እርስዎ መጠቀም ይችላሉ የ መጎተቻ-እና-መጣያ ከ ኮፒ ማድረግ እና ከ መለጠፍ ይልቅ: እንዲሁም: ለ ተመዘገቡ ዳታቤዞች: እርስዎ መክፈት ይችላሉ የ ዳታ ምንጭ መቃኛ (ይጫኑ F4) የ ቤዝ መስኮት ከ መክፈት ይልቅ"
#: data_new.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_idN105C4\n"
"help.text"
msgid "Choose <emph>File - New - Database</emph>."
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ዳታቤዝ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ዳታቤዝ </emph>"
#: data_new.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_idN105CB\n"
"help.text"
msgid "This opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>, where you create a new database file."
-msgstr "ይህ ይክፍታል የ <link href=\"text/shared/explorer/database/dabawiz00.xhp\">ዳታቤዝ አዋቂ</link> አዲስ የ ዳታቤዝ መፍጠር ያስችሎታል"
+msgstr "ይህ ይክፍታል የ <link href=\"text/shared/explorer/database/dabawiz00.xhp\"> ዳታቤዝ አዋቂ </link> አዲስ የ ዳታቤዝ መፍጠር ያስችሎታል"
#: data_new.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"par_idN105E0\n"
"help.text"
msgid "The <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link> helps you to add a table to the new database file."
-msgstr "የ <link href=\"text/shared/explorer/database/tablewizard00.xhp\">ሰንጠረዥ አዋቂ</link> ይረዳዎታል ሰንጠረዥ ለ መጨመር ወደ አዲሱ ዳታቤዝ ፋይል ውስጥ"
+msgstr "የ <link href=\"text/shared/explorer/database/tablewizard00.xhp\"> ሰንጠረዥ አዋቂ </link> ይረዳዎታል ሰንጠረዥ ለ መጨመር ወደ አዲሱ ዳታቤዝ ፋይል ውስጥ"
#: data_queries.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"bm_id840784\n"
"help.text"
msgid "<bookmark_value>databases;creating queries</bookmark_value><bookmark_value>filtering;data in databases</bookmark_value><bookmark_value>queries;defining (Base)</bookmark_value><bookmark_value>defining;queries (Base)</bookmark_value><bookmark_value>wizards;database queries</bookmark_value><bookmark_value>Query Wizard (Base)</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዞች: መፍጠሪያ ጥያቄዎች</bookmark_value><bookmark_value>ማጣሪያ: ዳታ ከ ዳታቤዞች ውስጥ</bookmark_value><bookmark_value>ጥያቄዎች: መግለጫ (Base)</bookmark_value><bookmark_value>መግለጫ: ጥያቄዎች (Base)</bookmark_value><bookmark_value>አዋቂ: የ ዳታቤዝ ጥያቄዎች</bookmark_value><bookmark_value>የ ጥያቄ አዋቂ (Base)</bookmark_value>"
+msgstr "<bookmark_value>የ ዳታቤዞች: መፍጠሪያ ጥያቄዎች</bookmark_value><bookmark_value>ማጣሪያ: ዳታ ከ ዳታቤዞች ውስጥ</bookmark_value><bookmark_value>ጥያቄዎች: መግለጫ (ቤዝ)</bookmark_value><bookmark_value>መግለጫ: ጥያቄዎች (ቤዝ)</bookmark_value><bookmark_value>አዋቂ: የ ዳታቤዝ ጥያቄዎች</bookmark_value><bookmark_value>የ ጥያቄ አዋቂ (ቤዝ)</bookmark_value>"
#: data_queries.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_idN1061E\n"
"help.text"
msgid "In %PRODUCTNAME you can create a new query using the <link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>:"
-msgstr "በ %PRODUCTNAME መፍጠር ይችላሉ ጥያቄ በ መጠቀም የ <link href=\"text/shared/explorer/database/querywizard00.xhp\">ጥያቄ አዋቂ</link>:"
+msgstr "በ %PRODUCTNAME መፍጠር ይችላሉ ጥያቄ በ መጠቀም የ <link href=\"text/shared/explorer/database/querywizard00.xhp\"> ጥያቄ አዋቂ </link>:"
#: data_queries.xhp
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"par_idN10636\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Queries</emph> icon."
-msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph>ጥያቄዎች</emph> ምልክት"
+msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> ጥያቄዎች </emph> ምልክት"
#: data_queries.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_idN1063E\n"
"help.text"
msgid "Click <emph>Use Wizard to Create Query</emph>."
-msgstr "ይጫኑ <emph>ጥያቄ ለመፍጠር አዋቂውን ይጠቀሙ</emph>."
+msgstr "ይጫኑ <emph> ጥያቄ ለ መፍጠር አዋቂውን ይጠቀሙ </emph>"
#: data_queries.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"par_idN10650\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Queries</emph> icon."
-msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph>ጥያቄዎች</emph> ምልክት"
+msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> ጥያቄዎች </emph> ምልክት"
#: data_queries.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"par_idN1065F\n"
"help.text"
msgid "You see the <link href=\"text/shared/explorer/database/02010100.xhp\">Query Design window</link>."
-msgstr "ይታያል የ <link href=\"text/shared/explorer/database/02010100.xhp\">ጥያቄ ንድፍ መስኮት</link>."
+msgstr "ለ እርስዎ ይታያል የ <link href=\"text/shared/explorer/database/02010100.xhp\"> ጥያቄ ንድፍ መስኮት </link>"
#: data_register.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"bm_id4724570\n"
"help.text"
msgid "<bookmark_value>databases;registering (Base)</bookmark_value><bookmark_value>registering;databases (Base)</bookmark_value><bookmark_value>deleting;databases (Base)</bookmark_value><bookmark_value>databases;deleting (Base)</bookmark_value><bookmark_value>lists;registered databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>ዳታቤዞች: መመዝገቢያ (Base)</bookmark_value><bookmark_value>መመዝገቢያ: ዳታቤዞች (Base)</bookmark_value><bookmark_value>ማጥፊያ: ዳታቤዞች (Base)</bookmark_value><bookmark_value>ዳታቤዞች: ማጥፊያ (Base)</bookmark_value><bookmark_value>ዝርዝሮች: መመዝገቢያ ዳታቤዞች (Base)</bookmark_value>"
+msgstr "<bookmark_value>ዳታቤዞች: መመዝገቢያ (ቤዝ)</bookmark_value><bookmark_value>መመዝገቢያ: ዳታቤዞች (ቤዝ)</bookmark_value><bookmark_value>ማጥፊያ: ዳታቤዞች (ቤዝ)</bookmark_value><bookmark_value>ዳታቤዞች: ማጥፊያ (ቤዝ)</bookmark_value><bookmark_value>ዝርዝሮች: መመዝገቢያ ዳታቤዞች (ቤዝ)</bookmark_value>"
#: data_register.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "Data from any <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link> can be registered to %PRODUCTNAME. To register means to tell %PRODUCTNAME where the data is located, how it is organized, how to get that data, and more. Once the database is registered, you can use the menu command <emph>View - Data source</emph> to access the data records from your text documents and spreadsheets."
-msgstr "ዳታ ከማንኛውም የ <link href=\"text/shared/explorer/database/dabadoc.xhp\">ዳታቤዝ ፋይል</link> መመዝገብ ይቻላል ወደ %PRODUCTNAME. መመዝገብ ማለት መንገር ነው ለ %PRODUCTNAME ዳታ የት እንደሚገኝ: እንዴት እንደ ተደራጀ: ዳታውን እንዴት እንደሚያገኙ: እና ሌሎችም ተጨማሪዎች: አንድ ጊዜ ዳታቤዝ ከ ተመዘገበ: እርስዎ የ ዝርዝር ትእዛዝ መጠቀም ይችላሉ <emph>መመልከቻ - የ ዳታ ምንጭ </emph> የ ዳታ መዝገብ ጋር ለ መድረስ: ከ እርስዎ የ ጽሁፍ እና ሰንጠረዥ ሰነዶች ውስጥ"
+msgstr "ዳታ ከማንኛውም የ <link href=\"text/shared/explorer/database/dabadoc.xhp\"> ዳታቤዝ ፋይል </link> መመዝገብ ይቻላል ወደ %PRODUCTNAME. መመዝገብ ማለት መንገር ነው ለ %PRODUCTNAME ዳታ የት እንደሚገኝ: እንዴት እንደ ተደራጀ: ዳታውን እንዴት እንደሚያገኙ: እና ሌሎችም ተጨማሪዎች: አንድ ጊዜ ዳታቤዝ ከ ተመዘገበ: እርስዎ የ ዝርዝር ትእዛዝ መጠቀም ይችላሉ <emph> መመልከቻ - የ ዳታ ምንጭ </emph> የ ዳታ መዝገብ ጋር ለ መድረስ: ከ እርስዎ የ ጽሁፍ እና ሰንጠረዥ ሰነዶች ውስጥ"
#: data_register.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"par_idN105CF\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01160200.xhp\">%PRODUCTNAME Base - Databases</link>."
-msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01160200.xhp\">%PRODUCTNAME Base - ዳታቤዞች </link>"
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01160200.xhp\">%PRODUCTNAME ቤዝ - ዳታቤዞች </link>"
#: data_register.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_idN105E1\n"
"help.text"
msgid "Click <emph>New</emph> and select the database file."
-msgstr "ይጫኑ <emph>አዲስ</emph> እና ይምረጡ የ ዳታቤዝ ፋይል"
+msgstr "ይጫኑ <emph> አዲስ </emph> እና ይምረጡ የ ዳታቤዝ ፋይል"
#: data_register.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"par_idN10719\n"
"help.text"
msgid "Select the database file and click <emph>Delete</emph>."
-msgstr "ይምረጡ የ ዳታቤዝ ፋይል እና ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ይምረጡ የ ዳታቤዝ ፋይል እና ይጫኑ <emph> ማጥፊያ </emph>"
#: data_report.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "Choose <emph>File - Open</emph> and select the database file."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph> እና ይምረጡ የ ዳታቤዝ ፋይል"
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph> እና ይምረጡ የ ዳታቤዝ ፋይል"
#: data_report.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_id3151054\n"
"help.text"
msgid "In the database file window, click the <emph>Reports</emph> icon."
-msgstr "ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ <emph>መግለጫዎች</emph> ምልክት"
+msgstr "ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይጫኑ የ <emph> መግለጫዎች </emph> ምልክት"
#: data_report.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "A report is a Writer text document that can show your data in an organized order and formatting. In %PRODUCTNAME Base, you have a choice to create a report either manually using drag-and-drop in the Report Builder window, or semi-automatic by following a series of dialogs in the Report Wizard."
-msgstr "መግለጫ የ ጽሁፍ መጻፊያ ሰነድ ነው የ እርስዎን ዳታ የሚያሳይ በ ተደራጀ ደንብ እና አቀራረብ በ %PRODUCTNAME Base: ውስጥ: እርስዎ ምርጫ አለዎት ለ መፍጠር መግለጫ በ እጅ ወይንም በ መጎተት-እና-በመጣል በ መግለጫ ገንቢ መስኮት ውስጥ: ወይንም በ ንዑስ-ራሱ በራሱ መግለጫ ገንቢ ተከታታይ ንግግሮችን በ መከተል"
+msgstr "መግለጫ የ ጽሁፍ መጻፊያ ሰነድ ነው የ እርስዎን ዳታ የሚያሳይ በ ተደራጀ ደንብ እና አቀራረብ በ %PRODUCTNAME ቤዝ: ውስጥ: እርስዎ ምርጫ አለዎት ለ መፍጠር መግለጫ በ እጅ ወይንም በ መጎተት-እና-በመጣል በ መግለጫ ገንቢ መስኮት ውስጥ: ወይንም በ ንዑስ-ራሱ በራሱ መግለጫ ገንቢ ተከታታይ ንግግሮችን በ መከተል"
#: data_reports.xhp
msgctxt ""
@@ -4654,7 +4654,7 @@ msgctxt ""
"par_id2866908\n"
"help.text"
msgid "You can choose to generate a one-time snapshot with fixed data, or a \"live\" report with links to the current data at the time when you open the Base file."
-msgstr "እርስዎ መምረጥ ይችላሉ ለ ማመንጨት የ አንድ-ጊዜ ቁራጭ ፎቶ ከ ተወሰነ ዳታ ጋር: ወይንም የ \"በቀጥታ\" መግለጫ ከ አገናኝ ጋር ወደ አሁኑ ዳታ በ ተመሳሳይ ጊዜ እርስዎ በሚከፍቱ ጊዜ የ Base ፋይል"
+msgstr "እርስዎ መምረጥ ይችላሉ ለ ማመንጨት የ አንድ-ጊዜ ቁራጭ ፎቶ ከ ተወሰነ ዳታ ጋር: ወይንም የ \"በቀጥታ\" መግለጫ ከ አገናኝ ጋር ወደ አሁኑ ዳታ በ ተመሳሳይ ጊዜ እርስዎ በሚከፍቱ ጊዜ የ ቤዝ ፋይል"
#: data_reports.xhp
msgctxt ""
@@ -4662,7 +4662,7 @@ msgctxt ""
"par_id4169743\n"
"help.text"
msgid "Saves the report as a Writer text document. Stores the information how to create the report inside the Base file."
-msgstr "መግለጫ እንደ ጽሁፍ ሰነድ መጻፊያ ማስቀመጫ: መግለጫ እንዴት እንደሚፈጠር በ Base ፋይል ውስጥ መረጃ ያስቀምጣል"
+msgstr "መግለጫ እንደ ጽሁፍ ሰነድ መጻፊያ ማስቀመጫ: መግለጫ እንዴት እንደሚፈጠር በ ቤዝ ፋይል ውስጥ መረጃ ያስቀምጣል"
#: data_reports.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_id408948\n"
"help.text"
msgid "Saves the report and the information how to create the report inside the Base file."
-msgstr "መግለጫ እና መረጃ እንዴት እንደሚፈጠር በ Base ፋይል ውስጥ መረጃ ያስቀምጣል"
+msgstr "መግለጫ እና መረጃ እንዴት እንደሚፈጠር በ ቤዝ ፋይል ውስጥ መረጃ ያስቀምጣል"
#: data_reports.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_id4226508\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Reports</emph> icon."
-msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph>መግለጫዎች</emph> ምልክት"
+msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> መግለጫዎች </emph> ምልክት"
#: data_reports.xhp
msgctxt ""
@@ -4742,7 +4742,7 @@ msgctxt ""
"par_id4870754\n"
"help.text"
msgid "Follow the instructions in the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> guide."
-msgstr "ትእዛዙን ይከተሉ የ <link href=\"text/shared/explorer/database/rep_main.xhp\">መግለጫ ገንቢ</link> መምሪያ"
+msgstr "ትእዛዙን ይከተሉ የ <link href=\"text/shared/explorer/database/rep_main.xhp\"> መግለጫ ገንቢ </link> መምሪያ"
#: data_reports.xhp
msgctxt ""
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_idN105E0\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Reports</emph> icon."
-msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph>መግለጫዎች</emph> ምልክት"
+msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> መግለጫዎች </emph> ምልክት"
#: data_reports.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "As an example, open an empty text document and press F4. Open the bibliography database table <emph>biblio</emph> in the data source view. While pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, drag a few column headers into the document so that the form fields are created."
-msgstr "ለምሳሌ: ባዶ የ ጽሁፍ ሰነድ ይክፈቱ እና ይጫኑ F4. ለ መክፈት የ ጽሁፎች ዝርዝር ዳታቤዝ ሰንጠረዥ <emph>biblio</emph> ከ ዳታ ምንጭ መመልከቻ ውስጥ: ተጭነው ይዘው Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>ይጎትቱ አንዳንድ የ አምድ ራስጌዎች ወደ ሰነድ ውስጥ: ስለዚህ የ ፎርም ሰነድ ይፈጠራል"
+msgstr "ለምሳሌ: ባዶ የ ጽሁፍ ሰነድ ይክፈቱ እና ይጫኑ F4. ለ መክፈት የ ጽሁፎች ዝርዝር ዳታቤዝ ሰንጠረዥ <emph> biblio </emph> ከ ዳታ ምንጭ መመልከቻ ውስጥ: ተጭነው ይዘው Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>ይጎትቱ አንዳንድ የ አምድ ራስጌዎች ወደ ሰነድ ውስጥ: ስለዚህ የ ፎርም ሰነድ ይፈጠራል"
#: data_search2.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "On the <emph>Form Controls</emph> toolbar, click the <emph>Design Mode On/Off</emph> icon <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icon</alt></image> to turn off the design mode."
-msgstr "በ <emph>ፎርም መቆጣጠሪያዎች</emph> እቃ መደርደሪያ ላይ ይጫኑ የ <emph>ንድፍ ዘዴ ማብሪያ/ማጥፊያ</emph> ምልክት <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">ምልክት</alt></image> የ ንድፍ ዘዴን ለማጥፋት"
+msgstr "በ <emph> ፎርም መቆጣጠሪያዎች </emph> እቃ መደርደሪያ ላይ ይጫኑ የ <emph> ንድፍ ዘዴ ማብሪያ/ማጥፊያ </emph> ምልክት <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\"> ምልክት </alt></image> የ ንድፍ ዘዴን ለማጥፋት"
#: data_search2.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id3149481\n"
"help.text"
msgid "More information about wildcards and operators can be found in <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>."
-msgstr "ተጨማሪ መረጃ ስለ ሁለ ገብ እዚህ ይገኛል በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">የ ጥያቄ ንድፍ</link>."
+msgstr "ተጨማሪ መረጃ ስለ ሁለ ገብ እዚህ ይገኛል በ <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"> የ ጥያቄ ንድፍ </link>"
#: data_search2.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id3152462\n"
"help.text"
msgid "<ahelp hid=\".uno:FormFilterExecute\">If you click the <emph>Apply Form-Based Filter</emph> icon on the <emph>Form Filter</emph> toolbar, the filter will be applied.</ahelp> You see the <emph>Form Navigation</emph> toolbar and can browse through the found records."
-msgstr "<ahelp hid=\".uno:FormFilterExecute\">እርስዎ ከ ተጫኑ የ<emph> ፎርም-መሰረት ያደረገ ማጣሪያ መፈጸሚያ</emph> ምልክት በ <emph>ፎርም ማጣሪያ</emph> እቃ መደርደሪያ ላይ: ማጣሪያው ይፈጸማል</ahelp> ለ እርስዎ ይታያል የ <emph>ፎርም መቃኛ</emph> እቃ መደርደሪያ እና እርስው መቃኘት ይችላሉ ጠቅላላ መዝገቦችን"
+msgstr "<ahelp hid=\".uno:FormFilterExecute\">እርስዎ ከ ተጫኑ የ <emph> ፎርም-መሰረት ያደረገ ማጣሪያ መፈጸሚያ </emph> ምልክት በ <emph> ፎርም ማጣሪያ </emph> እቃ መደርደሪያ ላይ: ማጣሪያው ይፈጸማል </ahelp> ለ እርስዎ ይታያል የ <emph> ፎርም መቃኛ </emph> እቃ መደርደሪያ እና እርስዎ መቃኘት ይችላሉ ጠቅላላ መዝገቦችን"
#: data_search2.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_id3146898\n"
"help.text"
msgid "The filter that has been set can be removed by clicking <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>Reset Filter/Sort</emph></link> icon <image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icon</alt></image>."
-msgstr "የተሰናዳውን ማጣሪያ ማስወገድ ይቻላል በ መጫን <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>እንደ ነበር መመለሻ ማጣሪያ/መለያ</emph></link> ምልክት <image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">ምልክት</alt></image>."
+msgstr "የተሰናዳውን ማጣሪያ ማስወገድ ይቻላል በ መጫን <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph> እንደ ነበር መመለሻ ማጣሪያ/መለያ </emph></link> ምልክት <image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\"> ምልክት </alt></image>"
#: data_tabledefine.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"bm_id3155448\n"
"help.text"
msgid "<bookmark_value>tables in databases; creating in design view (manually)</bookmark_value> <bookmark_value>designing; database tables</bookmark_value> <bookmark_value>properties;fields in databases</bookmark_value> <bookmark_value>fields;database tables</bookmark_value> <bookmark_value>AutoValue (Base)</bookmark_value> <bookmark_value>primary keys;design view</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዦች በ ዳታቤዝ ውስጥ: መፍጠሪያ በ ንድፍ መመልከቻ (በ እጅ)</bookmark_value> <bookmark_value>ንድፍ: ዳታቤዝ ሰንጠርዦች</bookmark_value> <bookmark_value>ባህሪዎች: ሜዳዎች በ ዳታቤዝ ውስጥ</bookmark_value> <bookmark_value>ሜዳዎች: ዳታቤዝ ሰንጠርዦች</bookmark_value> <bookmark_value>በራሱ ዋጋ (Base)</bookmark_value> <bookmark_value>ቀዳሚ ቁልፎች: ንድፍ መመልከቻ</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዦች ከ ዳታቤዝ ውስጥ: መፍጠሪያ በ ንድፍ መመልከቻ (በ እጅ)</bookmark_value> <bookmark_value>ንድፍ: ዳታቤዝ ሰንጠረዦች</bookmark_value> <bookmark_value>ባህሪዎች: ሜዳዎች በ ዳታቤዝ ውስጥ</bookmark_value> <bookmark_value>ሜዳዎች: ዳታቤዝ ሰንጠረዦች</bookmark_value> <bookmark_value>በራሱ ዋጋ (ቤዝ)</bookmark_value> <bookmark_value>ቀዳሚ ቁልፎች: ንድፍ መመልከቻ</bookmark_value>"
#: data_tabledefine.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "This section contains information about how to create a new database table in the <link href=\"text/shared/explorer/database/05010000.xhp\" name=\"design view\">design view</link>."
-msgstr "ይህ ክፍል የያዘው መረጃ ስለ ዳታቤዝ ሰንጠረዥ እንዴት እንደሚፈጥሩ ነው በ <link href=\"text/shared/explorer/database/05010000.xhp\" name=\"design view\">ንድፍ መመልከቻ</link>."
+msgstr "ይህ ክፍል የያዘው መረጃ ስለ ዳታቤዝ ሰንጠረዥ እንዴት እንደሚፈጥሩ ነው በ <link href=\"text/shared/explorer/database/05010000.xhp\" name=\"design view\"> ንድፍ መመልከቻ </link>"
#: data_tabledefine.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"par_id1595507\n"
"help.text"
msgid "Include a \"primary key\" data field. Base needs a primary key to be able to edit the table contents. A primary key has unique contents for each data record. For example, insert a numerical field, right-click the first column, and choose <emph>Primary Key</emph> from the context menu. Set <emph>AutoValue</emph> to \"Yes\", so Base can automatically increment the value for each new record."
-msgstr "መጨመሪያ የ \"ቀዳሚ ቁልፍ\" ዳታ ሜዳ: Base ቀዳሚ ቁልፍ ይፈልጋል የ ሰንጠረዥ ይዞታዎችን ለ ማረም: ቀዳሚ ቁልፍ ልዩ ይዞታዎች አሉት ለ እያንዳንዱ ዳታ መዝገቦች: ለምሳሌ: የ ሂሳብ ሜዳ ያስገቡ በ ቀኝ-ይጫኑ የ መጀመሪያውን አምድ: እና ይምረጡ <emph> ቀዳሚ ቁልፍ </emph> ከ ዝርዝር ይዞታዎች ውስጥ: ያሰናዱ <emph> በራሱ ዋጋ </emph> ወደ \"አዎ\" ስለዚህ Base ራሱ በራሱ ለ እያንዳንዱ መዝገብ ዋጋ ይጨምራል"
+msgstr "መጨመሪያ የ \"ቀዳሚ ቁልፍ\" ዳታ ሜዳ: ቤዝ ቀዳሚ ቁልፍ ይፈልጋል የ ሰንጠረዥ ይዞታዎችን ለ ማረም: ቀዳሚ ቁልፍ ልዩ ይዞታዎች አሉት ለ እያንዳንዱ ዳታ መዝገቦች: ለምሳሌ: የ ሂሳብ ሜዳ ያስገቡ በ ቀኝ-ይጫኑ የ መጀመሪያውን አምድ: እና ይምረጡ <emph> ቀዳሚ ቁልፍ </emph> ከ ዝርዝር ይዞታዎች ውስጥ: ያሰናዱ <emph> በራሱ ዋጋ </emph> ወደ \"አዎ\" ስለዚህ ቤዝ ራሱ በራሱ ለ እያንዳንዱ መዝገብ ዋጋ ይጨምራል"
#: data_tabledefine.xhp
msgctxt ""
@@ -5110,7 +5110,7 @@ msgctxt ""
"par_idN1061E\n"
"help.text"
msgid "In %PRODUCTNAME you can create a new table using the <link href=\"text/shared/explorer/database/tablewizard00.xhp\">Table Wizard</link>:"
-msgstr "በ %PRODUCTNAME አዲስ ሰንጠረዥ መፍጠር ይችላሉ በ መጠቀም የ <link href=\"text/shared/explorer/database/tablewizard00.xhp\">ሰንጠረዥ አዋቂ</link>:"
+msgstr "በ %PRODUCTNAME አዲስ ሰንጠረዥ መፍጠር ይችላሉ በ መጠቀም የ <link href=\"text/shared/explorer/database/tablewizard00.xhp\"> ሰንጠረዥ አዋቂ </link>:"
#: data_tables.xhp
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"par_idN10636\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Tables</emph> icon."
-msgstr "በ ግራ ክፍል በ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph>ሰንጠረዥ</emph> ምልክት"
+msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> ሰንጠረዥ </emph> ምልክት"
#: data_tables.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"par_idN10650\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Tables</emph> icon."
-msgstr "በ ግራ ክፍል በ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph>ሰንጠረዥ</emph> ምልክት"
+msgstr "በ ግራ ክፍል ከ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> ሰንጠረዥ </emph> ምልክት"
#: data_tables.xhp
msgctxt ""
@@ -5206,7 +5206,7 @@ msgctxt ""
"par_idN10786\n"
"help.text"
msgid "In the left pane of the database window, click the <emph>Tables</emph> icon."
-msgstr "በ ግራ ክፍል በ ዳታቤዝ መስኮት ውስጥ ይጫኑ የ <emph>ሰንጠረዥ</emph> ምልክት"
+msgstr "በ ግራ ክፍል በ ዳታቤዝ መስኮት ውስጥ: ይጫኑ የ <emph> ሰንጠረዥ </emph> ምልክት"
#: data_tables.xhp
msgctxt ""
@@ -5222,7 +5222,7 @@ msgctxt ""
"par_idN10795\n"
"help.text"
msgid "You see the View Design window, which is almost the same as the <link href=\"text/shared/explorer/database/02010100.xhp\">Query Design window</link>."
-msgstr "የ ንድፍ መመልከቻ መስኮት ይታያል በጣም ተመሳሳይ ነው ከ <link href=\"text/shared/explorer/database/02010100.xhp\">ጥያቄ ንድፍ መስኮት ጋር</link>."
+msgstr "የ ንድፍ መመልከቻ መስኮት ይታያል: በጣም ተመሳሳይ ነው ከ <link href=\"text/shared/explorer/database/02010100.xhp\"> ጥያቄ ንድፍ መስኮት ጋር </link>"
#: data_view.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_idN105CA\n"
"help.text"
msgid "Choose <emph>File - Open</emph> to open the database file."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph> የ ዳታቤዝ ፋይል ለ መክፈት"
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph> የ ዳታቤዝ ፋይል ለ መክፈት"
#: data_view.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"par_idN105D1\n"
"help.text"
msgid "The <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link> gives you full access to tables, queries, reports, and forms. You can edit the structure of your tables and change the contents of the data records."
-msgstr "የ <link href=\"text/shared/explorer/database/dabadoc.xhp\">ዳታቤዝ ፋይል</link> ለ እርስዎ ሙሉ መድረሻ ፍቃድ ይሰጥዎታል ወደ ሰንጠረዥ: ጥያቄዎች: መግለጫዎች: እና ፎርሞች: እርስዎ የ እርስዎን ሰንጠረዥ አካል ማረም እና የ ዳታ መዝገቦች ይዞታን መቀየር ይችላሉ"
+msgstr "የ <link href=\"text/shared/explorer/database/dabadoc.xhp\"> ዳታቤዝ ፋይል </link> ለ እርስዎ ሙሉ መድረሻ ፍቃድ ይሰጥዎታል ወደ ሰንጠረዥ: ጥያቄዎች: መግለጫዎች: እና ፎርሞች: እርስዎ የ እርስዎን ሰንጠረዥ አካል ማረም እና የ ዳታ መዝገቦች ይዞታን መቀየር ይችላሉ"
#: data_view.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_idN105E3\n"
"help.text"
msgid "Choose <emph>View - Data source</emph> to view the registered databases."
-msgstr "ይምረጡ <emph>መመልከቻ - የ ዳታ ምንጭ</emph> የ ተመዘገቡ ዳታቤዞች ለመመልከት"
+msgstr "ይምረጡ <emph> መመልከቻ - የ ዳታ ምንጭ </emph> የ ተመዘገቡ ዳታቤዞች ለ መመልከት"
#: data_view.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"par_idN105EA\n"
"help.text"
msgid "The <link href=\"text/shared/guide/database_main.xhp\">data source view</link> can be used to drag-and-drop table fields from registered databases into your documents and to produce mail merges."
-msgstr "የ <link href=\"text/shared/guide/database_main.xhp\">ዳታ ምንጭ መመልከቻ</link> መጠቀም ይቻላል ለ መጎተት-እና-ለ መጣል ሜዳዎችን ከ ተመዘገቡ ዳታቤዞች ውስጥ ወደ እርስዎ ሰነድ እና ደብዳቤ ማዋሀጃ መፍጠሪያ ውስጥ"
+msgstr "የ <link href=\"text/shared/guide/database_main.xhp\">ዳታ ምንጭ መመልከቻ </link> መጠቀም ይቻላል ለ መጎተት-እና-ለ መጣል ሜዳዎችን ከ ተመዘገቡ ዳታቤዞች ውስጥ ወደ እርስዎ ሰነድ እና ደብዳቤ ማዋሀጃ መፍጠሪያ ውስጥ"
#: database_main.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "On the left you can see the <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">Data source explorer</link>. If you select a table or query there, you see the contents of this table or query on the right. At the top margin is the <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">Table Data bar</link>."
-msgstr "በ ግራ በኩል ይታይዎታል <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">የ ዳታ ምንጭ መቃኛ</link> ሰንጠረዥ ወይንም ጥያቄ ከመረጡ: ሰንጠረዥ ወይንም ጥያቄ እዛ ከመረጡ የ ሰንጠረዥ ወይንም ጥያቄ ይዞታው ከላይ መስመር በ ቀኝ በኩል ይታያል <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">የ ሰንጠረዥ ዳታ መደርደሪያ</link>."
+msgstr "በ ግራ በኩል ይታይዎታል <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">የ ዳታ ምንጭ መቃኛ</link> ሰንጠረዥ ወይንም ጥያቄ ከመረጡ: ሰንጠረዥ ወይንም ጥያቄ እዛ ከመረጡ የ ሰንጠረዥ ወይንም ጥያቄ ይዞታው ከላይ መስመር በ ቀኝ በኩል ይታያል <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">የ ሰንጠረዥ ዳታ መደርደሪያ</link>"
#: database_main.xhp
msgctxt ""
@@ -5454,7 +5454,7 @@ msgctxt ""
"par_id3163713\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\">relations</link>"
-msgstr "<link href=\"text/shared/explorer/database/05010000.xhp\" name=\"Create new table, edit table structure\">አዲስ ሰንጠረዥ መፍጠሪያ የ ሰንጠረዥ አካል ማረሚያ</link>, <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"index\">ማውጫ</link>, <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\">ግንኙነቱ</link>"
+msgstr "<link href=\"text/shared/explorer/database/05010000.xhp\" name=\"Create new table, edit table structure\">አዲስ ሰንጠረዥ መፍጠሪያ የ ሰንጠረዥ አካል ማረሚያ </link>: <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"index\"> ማውጫ </link>: <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\"> ግንኙነቱ </link>"
#: database_main.xhp
msgctxt ""
@@ -5502,7 +5502,7 @@ msgctxt ""
"par_idN10632\n"
"help.text"
msgid "In %PRODUCTNAME, you can digitally sign your documents and macros."
-msgstr "ይህ %PRODUCTNAME, እርስዎን ሰነዶች እና macros ዲጂታሊ መፈረም ይስችሎታል"
+msgstr "ይህ %PRODUCTNAME, እርስዎን ሰነዶች እና ማክሮስ ዲጂታሊ መፈረም ይስችሎታል"
#: digital_signatures.xhp
msgctxt ""
@@ -5574,7 +5574,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the Digital Signature dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as invalid."
-msgstr "የ ፊርማ ማረጋገጫ ማሳያ ውጤት የሚታየው በ ሁኔታዎች መደርደሪያ ላይ ነው: እና በ ዲጂታል ፊርማ ንግግር ውስጥ: በርካታ ሰነዶች እና የ macro ፊርማዎች ይኖራሉ በ ODF ሰነድ ውስጥ: ከ ፊርማው ጋር ችግር ከ ተፈጠረ: የ ማረጋገጫ ውጤት ለ አንድ ፊርማ እንደ ለ ሁሉም ፊርማዎች ይወሰዳል: ይህም ማለት አስር ዋጋ ያላቸው ፊርማዎች ቢኖሩ እና አንድ ዋጋ የ ሌለው ፊርማ ካለ: ከዛ የ ሁኔታዎች መደርደሪያ እና የ ሁኔታዎች ሜዳ በ ንግግር ውስጥ ፊርማው ዋጋ እንደሌለው ምልክት ያሳያል"
+msgstr "የ ፊርማ ማረጋገጫ ማሳያ ውጤት የሚታየው በ ሁኔታዎች መደርደሪያ ላይ ነው: እና በ ዲጂታል ፊርማ ንግግር ውስጥ: በርካታ ሰነዶች እና የ ማክሮስ ፊርማዎች ይኖራሉ በ ODF ሰነድ ውስጥ: ከ ፊርማው ጋር ችግር ከ ተፈጠረ: የ ማረጋገጫ ውጤት ለ አንድ ፊርማ እንደ ለ ሁሉም ፊርማዎች ይወሰዳል: ይህም ማለት አስር ዋጋ ያላቸው ፊርማዎች ቢኖሩ እና አንድ ዋጋ የ ሌለው ፊርማ ካለ: ከዛ የ ሁኔታዎች መደርደሪያ እና የ ሁኔታዎች ሜዳ በ ንግግር ውስጥ ፊርማው ዋጋ እንደሌለው ምልክት ያሳያል"
#: digital_signatures.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "እርስዎ ሰነድ በሚፈርሙ ጊዜ በ OpenOffice.org 3.2 ወይንም በ StarOffice 9.2 ወይንም በ ዘመናዊ እትም: እና እርስዎ ሰነዱን በ አሮጌ እትም ሶፍትዌር ለ መክፈት ሲሞክሩ: ፊርማው እንደ \"ዋጋ የለውም\" የሚል ማስጠንቀቂያ ይታይዎታል: በ አሮጌ እትም የ ተፈጠሩ ፊርማዎች ምልክት ይደረግባቸዋል በ \"አንዳንድ የ ሰነዱ አካል ተፈርሟል\" የሚል ማስጠንቀቂያ ይታይዎታል በ አዲስ ሶፍትዌር ሲከፍቱት"
#: digital_signatures.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "እርስዎ በሚፈርሙ ጊዜ የ OOXML ሰነድ: ፊርማው ሁል ጊዜ ምልክት ይደረግበታል \"በ ከፊል ሰነዱ ተፈርሟል\". Metadata of OOXML ፋይሎች አልተፈረሙም: ተስማሚ እንዲሆኑ ከ Microsoft Office ጋር"
#: digital_signatures.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id2008200911583098\n"
"help.text"
msgid "When you load an ODF document, you might see an icon in the status bar and the status field in the dialog that indicates that the document is only partially signed. This status will appear when the signature and certificate are valid, but they were created with a version of OpenOffice.org before 3.2 or StarOffice before 9.2. In versions of OpenOffice.org before 3.0 or StarOffice before 9.0, the document signature was applied to the main contents, pictures and embedded objects only and some contents, like macros, were not signed. In OpenOffice.org 3.0 and StarOffice 9.0 the document signature was applied to most content, including macros. However, the mimetype and the content of the META-INF folder were not signed. And in OpenOffice.org 3.2, StarOffice 9.2, and all versions of LibreOffice all contents, except the signature file itself (META-INF/documentsignatures.xml), are signed."
-msgstr "እርስዎ በሚጫኑ ጊዜ የ ODF ሰነድ: ለ እርስዎ ይታይዎት ይሆናል ምልክት በ ሁኔታ መደርደሪያ እና በ ሁኔታ ሜዳ መደርደሪያ ንግግር ውስጥ ይታያል ሰነዱ የ ተፈረመው በ ከፊል ነው የሚል ማስጠንቀቂያ: ይህ ሁኔታ የሚታየው ፊርማው እና የምስክር ወረቀቱ ዋጋ ያለው ሲሆን ነው: ነገር ግን የ ተፈጠረው በ OpenOffice.org ከ 3.2 በፊት ወይንም በ StarOffice ከ 9.2. በፊት እትም OpenOffice.org ከ 3.0 በፊት ወይንም StarOffice ከ 9.0, በፊት ከሆነ የ ሰነድ ፊርማ የሚፈጸመው ለ ዋናው ይዞታ: ስእሎች: እና የ ተጣበቁ እቃዎች ብቻ እና አንዳንድ ሁኔታዎች ነው: macros, አይፈረምም በ OpenOffice.org 3.0 እና በ StarOffice 9.0 የ ሰነድ ፊርማ ለ በርካታ ይዞታዎች ይፈጸማል: macros ያካትታል: ነገር ግን: የ mimetype እና የ ይዞታ ለ META-INF ፎልደር አይፈረምም: እና በ OpenOffice.org 3.2, StarOffice 9.2, እና ሁሉም እትሞች ለ LibreOffice ሁሉም ይዞታዎች: ከ ፊርማ ፋይል በስተቀር (META-INF/documentsignatures.xml), ይፈረማሉ"
+msgstr "እርስዎ በሚጫኑ ጊዜ የ ODF ሰነድ: ለ እርስዎ ይታይዎት ይሆናል ምልክት በ ሁኔታ መደርደሪያ እና በ ሁኔታ ሜዳ መደርደሪያ ንግግር ውስጥ ይታያል ሰነዱ የ ተፈረመው በ ከፊል ነው የሚል ማስጠንቀቂያ: ይህ ሁኔታ የሚታየው ፊርማው እና የምስክር ወረቀቱ ዋጋ ያለው ሲሆን ነው: ነገር ግን የ ተፈጠረው በ OpenOffice.org ከ 3.2 በፊት ወይንም በ StarOffice ከ 9.2. በፊት እትም OpenOffice.org ከ 3.0 በፊት ወይንም StarOffice ከ 9.0, በፊት ከሆነ የ ሰነድ ፊርማ የሚፈጸመው ለ ዋናው ይዞታ: ስእሎች: እና የ ተጣበቁ እቃዎች ብቻ እና አንዳንድ ሁኔታዎች ነው: ማክሮስ: አይፈረምም በ OpenOffice.org 3.0 እና በ StarOffice 9.0 የ ሰነድ ፊርማ ለ በርካታ ይዞታዎች ይፈጸማል: ማክሮስ ያካትታል: ነገር ግን: የ mimetype እና የ ይዞታ ለ META-INF ፎልደር አይፈረምም: እና በ OpenOffice.org 3.2, StarOffice 9.2, እና ሁሉም እትሞች ለ LibreOffice ሁሉም ይዞታዎች: ከ ፊርማ ፋይል በስተቀር (META-INF/documentsignatures.xml), ይፈረማሉ"
#: digital_signatures.xhp
msgctxt ""
@@ -5846,7 +5846,7 @@ msgctxt ""
"par_id1227759\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መክፈቻ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - መክፈቻ </item>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"par_id7424237\n"
"help.text"
msgid "In the <emph>File name</emph> box, enter the path to the WebDAV folder. For example, enter <item type=\"literal\">https://192.168.1.1/webfolder</item> to open a secure connection to the WebDAV server at the IP address 192.168.1.1, and to list the contents of the <item type=\"literal\">webfolder</item> folder."
-msgstr "በ <emph>ፋይል ስም</emph> ሳጥን ውስጥ ያስገቡ መንገድ ወደ WebDAV ፎልደር ለ ምሳሌ ያስገቡ <item type=\"literal\">https://192.168.1.1/webfolder</item> አስተማማኝ ግንኙነት ለ መክፈት ወደ WebDAV server በ IP address 192.168.1.1, እና ዝርዝር ይዞታዎች የ <item type=\"literal\">webfolder</item> ፎልደር ይታያል"
+msgstr "በ <emph> ፋይል ስም </emph> ሳጥን ውስጥ ያስገቡ መንገድ ወደ WebDAV ፎልደር ለ ምሳሌ ያስገቡ <item type=\"literal\">https://192.168.1.1/webfolder</item> አስተማማኝ ግንኙነት ለ መክፈት ወደ WebDAV server በ IP address 192.168.1.1, እና ዝርዝር ይዞታዎች የ <item type=\"literal\">webfolder</item> ፎልደር ይታያል"
#: digitalsign_receive.xhp
msgctxt ""
@@ -6142,7 +6142,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the Digital Signature dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as invalid."
-msgstr "የ ፊርማ ማረጋገጫ ማሳያ ውጤት የሚታየው በ ሁኔታዎች መደርደሪያ ላይ ነው: እና በ ዲጂታል ፊርማ ንግግር ውስጥ: በርካታ ሰነዶች እና የ macro ፊርማዎች ይኖራሉ በ ODF ሰነድ ውስጥ: ከ ፊርማው ጋር ችግር ከ ተፈጠረ: የ ማረጋገጫ ውጤት ለ አንድ ፊርማ እንደ ለ ሁሉም ፊርማዎች ይወሰዳል: ይህም ማለት አስር ዋጋ ያላቸው ፊርማዎች ቢኖሩ እና አንድ ዋጋ የ ሌለው ፊርማ ካለ: ከዛ የ ሁኔታዎች መደርደሪያ እና የ ሁኔታዎች ሜዳ በ ንግግር ውስጥ ፊርማው ዋጋ እንደሌለው ምልክት ያሳያል"
+msgstr "የ ፊርማ ማረጋገጫ ማሳያ ውጤት የሚታየው በ ሁኔታዎች መደርደሪያ ላይ ነው: እና በ ዲጂታል ፊርማ ንግግር ውስጥ: በርካታ ሰነዶች እና የ ማክሮስ ፊርማዎች ይኖራሉ በ ODF ሰነድ ውስጥ: ከ ፊርማው ጋር ችግር ከ ተፈጠረ: የ ማረጋገጫ ውጤት ለ አንድ ፊርማ እንደ ለ ሁሉም ፊርማዎች ይወሰዳል: ይህም ማለት አስር ዋጋ ያላቸው ፊርማዎች ቢኖሩ እና አንድ ዋጋ የ ሌለው ፊርማ ካለ: ከዛ የ ሁኔታዎች መደርደሪያ እና የ ሁኔታዎች ሜዳ በ ንግግር ውስጥ ፊርማው ዋጋ እንደሌለው ምልክት ያሳያል"
#: digitalsign_send.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"par_idN106E0\n"
"help.text"
msgid "Signing the macros inside a document"
-msgstr "በ ሰነድ ውስጥ ያሉ macros መፈረሚያ"
+msgstr "በ ሰነድ ውስጥ ያሉ ማክሮስ መፈረሚያ"
#: digitalsign_send.xhp
msgctxt ""
@@ -6158,7 +6158,7 @@ msgctxt ""
"par_idN106E4\n"
"help.text"
msgid "Normally, macros are part of a document. If you sign a document, the macros inside the document are signed automatically. If you want to sign only the macros, but not the document, proceed as follows:"
-msgstr "ብዙ ጊዜ: macros የ ሰነድ አክል ነው: እርስዎ ሰነድ ከ ፈረሙ: macros በ ሰነዱ ውስጥ ራሱ በራሱ ይፈረማል: እርስዎ macros ብቻ መፈረም ከ ፈለጉ: ነገር ግን ሰነዱን መፈረም ካልፈለጉ የሚቀጥለውን ያድርጉ:"
+msgstr "ብዙ ጊዜ: ማክሮስ የ ሰነድ አካል ነው: እርስዎ ሰነድ ከ ፈረሙ: ማክሮስ በ ሰነዱ ውስጥ ራሱ በራሱ ይፈረማል: እርስዎ ማክሮስ ብቻ መፈረም ከ ፈለጉ: ነገር ግን ሰነዱን መፈረም ካልፈለጉ የሚቀጥለውን ያድርጉ:"
#: digitalsign_send.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_idN106EA\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Digital Signature</emph>."
-msgstr "ይምረጡ <emph>መሳሪያዎች - Macros - የ ዲጂታል ፊርማ</emph>"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - የ ዲጂታል ፊርማ </emph>"
#: digitalsign_send.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_idN106F5\n"
"help.text"
msgid "When you open the Basic IDE that contains signed macros, you see an icon <image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr "እርስዎ በሚከፍቱ ጊዜ የ Basic IDE የተፈረመ macros የያዘ: ምልክት ይታያል <image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">ምልክት</alt></image> በ ሁኔታዎች መደርደሪያ ላይ: ሁለት ጊዜ-ይጫኑ ምልክቱን በ ሁኔታዎች መደርደሪያ ላይ ያለውን የ ምስክር ወረቀቱን ለማያት"
+msgstr "እርስዎ በሚከፍቱ ጊዜ የ Basic IDE የተፈረመ ማክሮስ የያዘ: ምልክት ይታያል <image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\"> ምልክት </alt></image> በ ሁኔታዎች መደርደሪያ ላይ: ሁለት ጊዜ-ይጫኑ ምልክቱን በ ሁኔታዎች መደርደሪያ ላይ ያለውን የ ምስክር ወረቀቱን ለማያት"
#: digitalsign_send.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id3148474\n"
"help.text"
msgid "Mark <emph>Always create backup copy</emph>."
-msgstr "ምልክት ያድርጉ <emph>ሁል ጊዜ ተተኪ ኮፒ መፍጠሪያ ላይ </emph>."
+msgstr "ምልክት ያድርጉ <emph> ሁል ጊዜ ተተኪ ኮፒ መፍጠሪያ ላይ </emph>"
#: doc_autosave.xhp
msgctxt ""
@@ -6286,7 +6286,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "You can change the backup directory by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>, then change the <emph>Backups</emph> path in the dialog."
-msgstr "እርስዎ መቀየር ይችላሉ ተተኪ ዳይሬክቶሪ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - መንገድ</emph> እና ከዛ ይቀይሩ የ <emph>ተተኪ</emph> መንገድ በ ንግግር ውስጥ"
+msgstr "እርስዎ መቀየር ይችላሉ ተተኪ ዳይሬክቶሪ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መንገድ </emph> እና ከዛ ይቀይሩ የ <emph> ተተኪ </emph> መንገድ በ ንግግር ውስጥ"
#: doc_autosave.xhp
msgctxt ""
@@ -6398,7 +6398,7 @@ msgctxt ""
"par_idN107A9\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File – Open</item>"
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መክፈቻ</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - መክፈቻ </item>"
#: doc_open.xhp
msgctxt ""
@@ -6406,7 +6406,7 @@ msgctxt ""
"par_id210820160859353525\n"
"help.text"
msgid "Choose<item type=\"menuitem\"> File – Open remote file</item>"
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መክፈቻ የ ሩቅ ፋይል</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - መክፈቻ የ ሩቅ ፋይል </item>"
#: doc_open.xhp
msgctxt ""
@@ -6414,7 +6414,7 @@ msgctxt ""
"par_id210820160901392820\n"
"help.text"
msgid "Do a long click in the <emph>Open</emph> icon on the standard toolbar and select <emph>Open Remote File</emph> in the bottom of the list."
-msgstr "በ ረጅሙ ይጫኑ በ <emph>መክፈቻ</emph> ምልክት ላይ በ መደበኛ እቃ መደርደሪያ ላይ እና ይምረጡ <emph>የ ሩቅ ፋይል መክፈቻ</emph> ከ ዝርዝር በ ታች በኩል"
+msgstr "በ ረጅሙ ይጫኑ በ <emph> መክፈቻ </emph> ምልክት ላይ በ መደበኛ እቃ መደርደሪያ ላይ እና ይምረጡ <emph> የ ሩቅ ፋይል መክፈቻ </emph> ከ ዝርዝር በ ታች በኩል"
#: doc_open.xhp
msgctxt ""
@@ -6438,7 +6438,7 @@ msgctxt ""
"par_id3150985\n"
"help.text"
msgid "To restrict the display of files in the <emph>Open</emph> dialog to a certain type select the corresponding <emph>File type</emph> from the list. Select <emph>All Files</emph> to display all files."
-msgstr "ፋይሎች እንዳይታዩ መከልከያ በ <emph>መክፈቻ</emph> ንግግር ውስጥ ለ አንዳንድ አይነቶች ይምረጡ ተመሳሳይ የ <emph>ፋይል አይነት</emph> ከ ዝርዝር ውስጥ: ይምረጡ <emph>ሁሉንም ፋይሎች</emph> ሁሉንም ፋይሎች ለማሳየት"
+msgstr "ፋይሎች እንዳይታዩ መከልከያ በ <emph> መክፈቻ </emph> ንግግር ውስጥ ለ አንዳንድ አይነቶች ይምረጡ ተመሳሳይ የ <emph> ፋይል አይነት </emph> ከ ዝርዝር ውስጥ: ይምረጡ <emph> ሁሉንም ፋይሎች </emph> ሁሉንም ፋይሎች ለማሳየት"
#: doc_open.xhp
msgctxt ""
@@ -6462,7 +6462,7 @@ msgctxt ""
"par_id6594744\n"
"help.text"
msgid "One exception appears when the author of a Writer text document saves and reopens a document: The cursor will be at the same position where it has been when the document was saved. This only works when the name of the author was entered in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - User Data</emph>."
-msgstr "አንድ የ ተለየ ይታያል ደራሲው የ ጽሁፍ ሰነድ በ መጻፊያ ሲያስቀምጥ እና እንደገና ሰነድ ሲከፍት: መጠቆሚያው በ ተመሳሳይ ቦታ ይሆናል ሰነዱ በሚቀመጥ ጊዜ: ይህ የሚሰራው የ ደራሲው ስም በሚገባ ጊዜ ነው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የ ተጠቃሚ ዳታ </emph>"
+msgstr "አንድ የ ተለየ ይታያል: ደራሲው የ ጽሁፍ ሰነድ በ መጻፊያ ውስጥ ሲያስቀምጥ እና እንደገና ሰነድ ሲከፍት: መጠቆሚያው በ ተመሳሳይ ቦታ ይሆናል ሰነዱ በሚቀመጥ ጊዜ: ይህ የሚሰራው የ ደራሲው ስም በሚገባ ጊዜ ነው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የ ተጠቃሚ ዳታ </emph>"
#: doc_open.xhp
msgctxt ""
@@ -6486,7 +6486,7 @@ msgctxt ""
"par_id3147287\n"
"help.text"
msgid "Click the <emph>New</emph> icon on the Standard bar or choose <emph>File - New</emph>. This opens a document of the document type specified."
-msgstr "ይጫኑ የ <emph>አዲስ</emph> ምልክት ከ መደበኛ መደርደሪያ ላይ ወይንም ይምረጡ <emph>ፋይል - አዲስ</emph> ይህ የ ተወሰነውን የ ፋይል አይነት ይከፍታል"
+msgstr "ይጫኑ የ <emph> አዲስ </emph> ምልክት ከ መደበኛ መደርደሪያ ላይ ወይንም ይምረጡ <emph> ፋይል - አዲስ </emph> ይህ የ ተወሰነውን የ ፋይል አይነት ይከፍታል"
#: doc_open.xhp
msgctxt ""
@@ -6630,7 +6630,7 @@ msgctxt ""
"par_id3152472\n"
"help.text"
msgid "You can set the automatic creation of a backup copy under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link>."
-msgstr "እርስዎ ማሰናዳት ይችላሉ ራሱ በራሱ ተተኪ ኮፒ እንዲፈጥር በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><emph>መጫኛ/ማስቀመጫ - ባጠቃላይ</emph></link>."
+msgstr "እርስዎ ማሰናዳት ይችላሉ ራሱ በራሱ ተተኪ ኮፒ እንዲፈጥር በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><emph> መጫኛ/ማስቀመጫ - ባጠቃላይ </emph></link>"
#: doc_save.xhp
msgctxt ""
@@ -6646,7 +6646,7 @@ msgctxt ""
"par_id9359111\n"
"help.text"
msgid "When saving a file, %PRODUCTNAME always appends an extension to the file name, except when the file name already has an extension that matches the file type. See the list of <link href=\"text/shared/00/00000021.xhp\">ODF extensions</link>."
-msgstr "ፋይል በሚቀመጥ ጊዜ: %PRODUCTNAME ለ ፋይሉ ስም ሁልጊዜ ተጨማሪዎች ይጨምራል: የ ፋይሉ ስም ቀደም ሲል ተጨማሪ ከ ነበረው የሚመሳሰል የ ፋይሉን አይነት: ዝርዝሩን ይመልከቱ የ <link href=\"text/shared/00/00000021.xhp\">ODF ተጨማሪዎች</link>."
+msgstr "ፋይል በሚቀመጥ ጊዜ: %PRODUCTNAME ለ ፋይሉ ስም ሁልጊዜ ተጨማሪዎች ይጨምራል: የ ፋይሉ ስም ቀደም ሲል ተጨማሪ ከ ነበረው የሚመሳሰል የ ፋይሉን አይነት: ዝርዝሩን ይመልከቱ የ <link href=\"text/shared/00/00000021.xhp\"> ODF ተጨማሪዎች</link>"
#: doc_save.xhp
msgctxt ""
@@ -7486,7 +7486,7 @@ msgctxt ""
"par_id3152922\n"
"help.text"
msgid "If you want, you can rearrange the <emph>Commands </emph>list by selecting a command name and clicking <emph>Move Up</emph> and <emph>Move Down</emph>."
-msgstr "እርስዎ ከ ፈለጉ እንደገና ማዘጋጀት ይችላሉ የ <emph>ትእዛዝ </emph>ዝርዝር በ መምረጥ የ ትእዛዝ ስም እና በ መጫን <emph>ወደ ላይ ማንቀሳቀሻ</emph> እና <emph>ወደ ታች ማንቀሳቀሻ</emph>."
+msgstr "እርስዎ ከ ፈለጉ እንደገና ማዘጋጀት ይችላሉ የ <emph> ትእዛዝ </emph> ዝርዝር በ መምረጥ የ ትእዛዝ ስም እና በ መጫን <emph> ወደ ላይ ማንቀሳቀሻ </emph> እና <emph> ወደ ታች ማንቀሳቀሻ </emph>"
#: edit_symbolbar.xhp
msgctxt ""
@@ -7534,7 +7534,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "Choose <emph>File - Send - E-mail Document</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መላኪያ - ሰነድ እንደ ኢ-ሜይል</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ - ሰነድ እንደ ኢ-ሜይል </emph>"
#: email.xhp
msgctxt ""
@@ -7558,7 +7558,7 @@ msgctxt ""
"par_id3595385\n"
"help.text"
msgid "In case you want to send the e-mail to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - E-mail as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
-msgstr "እርስዎ ኢ-ሜይል መላክ ከፈለጉ ለ ተቀባይ ሶፍትዌር ከ ሌለው የ OpenDocument format, ማንበቢያ ሰነድ መክፈቻ: ይህንኑ ሰነድ መላክ ይችላሉ በ ሌላ አቀራረብ<br/>ለ ጽሁፍ ሰነድ ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ Microsoft Word</item> ለ ሰንጠረዥ ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ Microsoft Excel</item> እና ለ ማቅረቢያ ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ Microsoft PowerPoint</item> <br/> እርስዎ ሰነዱን መላክ ከፈለጉ እንደ ለ ንባብ-ብቻ ፋይል ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ PDF</item>.<br/> እነዚህ ትእዛዞች የ እርስዎን ሰነድ አይቀይሩም: ሰነዱን ለ መላክ ጊዚያዊ ኮፒ ፋይል ይፈጥራሉ"
+msgstr "እርስዎ ኢ-ሜይል መላክ ከፈለጉ ለ ተቀባይ ሶፍትዌር ከ ሌለው የ OpenDocument format, ማንበቢያ ሰነድ መክፈቻ: ይህንኑ ሰነድ መላክ ይችላሉ በ ሌላ አቀራረብ <br/> ለ ጽሁፍ ሰነድ ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ Microsoft Word</item> ለ ሰንጠረዥ ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ Microsoft Excel</item> እና ለ ማቅረቢያ ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ Microsoft PowerPoint</item> <br/> እርስዎ ሰነዱን መላክ ከፈለጉ እንደ ለ ንባብ-ብቻ ፋይል ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ - ኢ-ሜይል እንደ PDF</item><br/> እነዚህ ትእዛዞች የ እርስዎን ሰነድ አይቀይሩም: ሰነዱን ለ መላክ ጊዚያዊ ኮፒ ፋይል ይፈጥራሉ"
#: error_report.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "The error report consists of several files. The main file contains information about the error type, operating system name and version, memory usage, and the description that you entered. You can click the <emph>Show Report</emph> button on the main dialog of the Error Report Tool to view what will get sent in the main file."
-msgstr "የ ስህተት መግለጫ በርካታ ፋይሎች ይይዛል: ዋናው ያዘው ፋይል ስለ ስህተት አይነቶች ነው: የ መስሪያ ስርአት ስም እና እትም: የ ማስታወሻ አጠቃቀም: እና እርስዎ ያስገቡትን መግለጫ ነው: እርስዎ መጫን ይችላሉ የ <emph>መግለጫ ማሳያ</emph> ቁልፍ ከ ዋናው ንግግር ውስጥ ከ ስህተት መግለጫ መሳሪያ ውስጥ መመልከት ይችላሉ በ ዋናው ፋይል ውስጥ የሚላከውን"
+msgstr "የ ስህተት መግለጫ በርካታ ፋይሎች ይይዛል: ዋናው ያዘው ፋይል ስለ ስህተት አይነቶች ነው: የ መስሪያ ስርአት ስም እና እትም: የ ማስታወሻ አጠቃቀም: እና እርስዎ ያስገቡትን መግለጫ ነው: እርስዎ መጫን ይችላሉ የ <emph> መግለጫ ማሳያ </emph> ቁልፍ ከ ዋናው ንግግር ውስጥ ከ ስህተት መግለጫ መሳሪያ ውስጥ መመልከት ይችላሉ በ ዋናው ፋይል ውስጥ የሚላከውን"
#: error_report.xhp
msgctxt ""
@@ -7718,7 +7718,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph> ይታይዎታል <emph>ማስቀመጫ እንደ</emph> ንግግር"
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph> ይታይዎታል <emph> ማስቀመጫ እንደ </emph> ንግግር"
#: export_ms.xhp
msgctxt ""
@@ -7726,7 +7726,7 @@ msgctxt ""
"par_id3153348\n"
"help.text"
msgid "In the <emph>Save as type</emph> or <emph>File type</emph> list box, select the desired format."
-msgstr "ከ <emph>ማስቀመጫ እንደ አይነት</emph> ወይንም <emph>የ ፋይል አይነት</emph> ዝርዝር ሳጥን ውስጥ የሚፈልጉትን አቀራረብ ይምረጡ"
+msgstr "ከ <emph> ማስቀመጫ እንደ አይነት </emph> ወይንም <emph> የ ፋይል አይነት </emph> ዝርዝር ሳጥን ውስጥ የሚፈልጉትን አቀራረብ ይምረጡ"
#: export_ms.xhp
msgctxt ""
@@ -7734,7 +7734,7 @@ msgctxt ""
"par_id3150985\n"
"help.text"
msgid "Enter a name in the <emph>File name</emph> box and click <emph>Save</emph>."
-msgstr "ስም ያስገቡ በ <emph>ፋይል ስም</emph> ሳጥን ውስጥ እና ይጫኑ <emph>ማስቀመጫ</emph>."
+msgstr "ስም ያስገቡ በ <emph> ፋይል ስም </emph> ሳጥን ውስጥ እና ይጫኑ <emph> ማስቀመጫ </emph>"
#: export_ms.xhp
msgctxt ""
@@ -8006,7 +8006,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "If you want to search for text in which attributes were set by using direct formatting and styles, select the <emph>Including Styles</emph> box."
-msgstr "እርስዎ ጽሁፍ መፈለግ ከ ፈለጉ በ መለያ የ ተሰናዱ በ ቀጥታ አቀራረብ እና ዘዴዎች: ይምረጡ የ <emph>ዘዴዎች ማካተቻ</emph>ሳጥን"
+msgstr "እርስዎ ጽሁፍ መፈለግ ከ ፈለጉ በ መለያ የ ተሰናዱ በ ቀጥታ አቀራረብ እና ዘዴዎች: ይምረጡ የ <emph> ዘዴዎች ማካተቻ </emph> ሳጥን"
#: find_attributes.xhp
msgctxt ""
@@ -8030,7 +8030,7 @@ msgctxt ""
"par_idN106C5\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph>"
#: find_attributes.xhp
msgctxt ""
@@ -8070,7 +8070,7 @@ msgctxt ""
"par_idN106F4\n"
"help.text"
msgid "Click <emph>Find Next</emph>."
-msgstr "ይጫኑ <emph>ቀጥሎ መፈለጊያ</emph>."
+msgstr "ይጫኑ <emph> ቀጥሎ መፈለጊያ </emph>"
#: find_attributes.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "On the <emph>View</emph> tab page, select the <emph>Toolbar icon size</emph>."
-msgstr "በ <emph>መመልከቻ</emph> tab ገጽ ውስጥ ይምረጡ የ <emph>እቃ መደርደሪያ ምልክት መጠን</emph>."
+msgstr "በ <emph> መመልከቻ </emph> tab ገጽ ውስጥ ይምረጡ የ <emph> እቃ መደርደሪያ ምልክት መጠን </emph>"
#: flat_icons.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "Some toolbar icons, for example the <emph>Font Color</emph> icon, can open another toolbar. Click the arrow next to the icon to open a toolbar containing further icons."
-msgstr "አንዳንድ የ እቃ መደርደሪያ ምልክቶች: ለምሳሌ የ <emph>ፊደል ቀለም</emph> ምልክት: ሌላ የ እቃ መደርደሪያ ይከፍታል: ይጫኑ ቀስቱን ከ ምልክቱ አጠገብ ያለውን ለ መክፈት የ እቃ መደርደሪያ ተጨማሪ ምልክቶች የያዘውን"
+msgstr "አንዳንድ የ እቃ መደርደሪያ ምልክቶች: ለምሳሌ የ <emph> ፊደል ቀለም </emph> ምልክት: ሌላ የ እቃ መደርደሪያ ይከፍታል: ይጫኑ ቀስቱን ከ ምልክቱ አጠገብ ያለውን ለ መክፈት የ እቃ መደርደሪያ ተጨማሪ ምልክቶች የያዘውን"
#: floating_toolbar.xhp
msgctxt ""
@@ -8254,7 +8254,7 @@ msgctxt ""
"par_id295724\n"
"help.text"
msgid "Click the icon in the toolbar's title bar, or choose <emph>Close Toolbar</emph> from the context menu. The toolbar will be shown automatically again when the context becomes active again."
-msgstr "ይጫኑ በ ምልክቱ ላይ በ እቃ መደርደሪያ አርእስት ላይ: ወይንም ይምረጡ <emph>እቃ መደርደሪያ መዝጊያ</emph> ከ አገባብ ዝርዝር ውስጥ: የ እቃ መደርደሪያ ራሱ በራሱ ይታያል እንደገና አገባቡ ንቁ በሚሆን ጊዜ"
+msgstr "ይጫኑ በ ምልክቱ ላይ በ እቃ መደርደሪያ አርእስት ላይ: ወይንም ይምረጡ <emph> እቃ መደርደሪያ መዝጊያ </emph> ከ አገባብ ዝርዝር ውስጥ: የ እቃ መደርደሪያ ራሱ በራሱ ይታያል እንደገና አገባቡ ንቁ በሚሆን ጊዜ"
#: floating_toolbar.xhp
msgctxt ""
@@ -8654,7 +8654,7 @@ msgctxt ""
"par_idN107B2\n"
"help.text"
msgid "Right-click the button and choose <emph>Control</emph>."
-msgstr "በ ቀኝ-ይጫኑ ቁልፉ ላይ እና ይምረጡ <emph>መቆጣጠሪያ</emph>."
+msgstr "በ ቀኝ-ይጫኑ ቁልፉ ላይ እና ይምረጡ <emph> መቆጣጠሪያ </emph>"
#: formfields.xhp
msgctxt ""
@@ -8678,7 +8678,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "To attach a macro to the button, click the <emph>Events</emph> tab, and click the <emph>... </emph>button beside the button action that you want to run the macro. In the <emph>Assign Macro</emph> dialog, locate the macro that you want to use, and then click <emph>OK</emph>."
-msgstr "ለ ማያያዝ macro ከ ቁልፍ ጋር: ይጫኑ የ <emph> ሁኔታዎች </emph> tab, እና ከዛ ይጫኑ የ <emph>... </emph> ከ ቁልፍ አጠገብ ያለውን የ ቁልፍ ተግባር እርስዎ ማስኬድ የሚፈልጉትን macro. በ <emph> Macro መመደቢያ </emph> ንግግር ውስጥ: ፈልገው ያግኙ macro እርስዎ መጠቀም የሚፈልጉትን: እና ከዛ ይጫኑ <emph> እሺ </emph>"
+msgstr "ለ ማያያዝ ማክሮስ ከ ቁልፍ ጋር: ይጫኑ የ <emph> ሁኔታዎች </emph> tab, እና ከዛ ይጫኑ የ <emph>... </emph> ከ ቁልፍ አጠገብ ያለውን የ ቁልፍ ተግባር እርስዎ ማስኬድ የሚፈልጉትን ማክሮስ: በ <emph> ማክሮስ መመደቢያ </emph> ንግግር ውስጥ: ፈልገው ያግኙ ማክሮስ እርስዎ መጠቀም የሚፈልጉትን: እና ከዛ ይጫኑ <emph> እሺ </emph>"
#: formfields.xhp
msgctxt ""
@@ -8702,7 +8702,7 @@ msgctxt ""
"par_idN10828\n"
"help.text"
msgid "Right-click the button and choose <emph>Form</emph>."
-msgstr "በ ቀኝ-ይጫኑ በ ቁልፍ ላይ እና ይምረጡ <emph>ፎርም</emph>."
+msgstr "በ ቀኝ-ይጫኑ በ ቁልፍ ላይ እና ይምረጡ <emph> ፎርም </emph>"
#: formfields.xhp
msgctxt ""
@@ -8766,7 +8766,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "Open the Gallery by clicking the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar, or by selecting <emph>Tools - Gallery</emph>."
-msgstr "አዳራሽ መከፈቻ በመጫን የ <emph>አዳራሽ</emph> ምልክት ከ <emph>መደበኛ</emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ</emph>."
+msgstr "አዳራሽ መከፈቻ በ መጫን የ <emph> አዳራሽ </emph> ምልክት ከ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ </emph>"
#: gallery_insert.xhp
msgctxt ""
@@ -8790,7 +8790,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "Drag the object into the document, or right-click to open the context menu and select <emph>Insert</emph> and <emph>Copy</emph>."
-msgstr "እቃ ይጎትቱ ወደ ሰነድ ውስጥ: ወይንም በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <emph> ማስገቢያ </emph> እና <emph> ኮፒ </emph>."
+msgstr "እቃ ይጎትቱ ወደ ሰነድ ውስጥ: ወይንም በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <emph> ማስገቢያ </emph> እና <emph> ኮፒ </emph> ማድረጊያ"
#: gallery_insert.xhp
msgctxt ""
@@ -8806,7 +8806,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Open the Gallery by clicking the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar, or by selecting <emph>Tools - Gallery</emph>."
-msgstr "አዳራሽ መከፈቻ በመጫን የ <emph>አዳራሽ</emph> ምልክት ከ <emph>መደበኛ</emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ</emph>."
+msgstr "አዳራሽ መከፈቻ በመጫን የ <emph> አዳራሽ </emph> ምልክት ከ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ </emph>"
#: gallery_insert.xhp
msgctxt ""
@@ -8830,7 +8830,7 @@ msgctxt ""
"par_id3154140\n"
"help.text"
msgid "Drag the object into the document while pressing the Shift and <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> keys, or right-click to open the context menu and select <emph>Insert</emph> and <emph>Link</emph>."
-msgstr "እቃ ይጎትቱ ወደ ሰነድ ውስጥ ተጭነው ይዘው የ Shift ቁልፍ እና <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፎች: ወይንም በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <emph> ማስገቢያ </emph> እና <emph> አገናኝ </emph>."
+msgstr "እቃ ይጎትቱ ወደ ሰነድ ውስጥ ተጭነው ይዘው የ Shift ቁልፍ እና <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፎች: ወይንም በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <emph> ማስገቢያ </emph> እና <emph> አገናኝ </emph>"
#: gallery_insert.xhp
msgctxt ""
@@ -8846,7 +8846,7 @@ msgctxt ""
"par_id3152920\n"
"help.text"
msgid "Open the Gallery by clicking the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar, or by selecting <emph>Tools - Gallery</emph>."
-msgstr "አዳራሽ መከፈቻ በ መጫን የ <emph>አዳራሽ</emph> ምልክት ከ <emph>መደበኛ</emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ</emph>."
+msgstr "አዳራሽ መከፈቻ በ መጫን የ <emph> አዳራሽ </emph> ምልክት ከ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ </emph>"
#: gallery_insert.xhp
msgctxt ""
@@ -8870,7 +8870,7 @@ msgctxt ""
"par_id3147289\n"
"help.text"
msgid "Open the context menu and choose <emph>Insert - Background - Page</emph> or <emph>Paragraph</emph>."
-msgstr "መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph> ማስገቢያ - መደብ - ገጽ </emph> ወይንም <emph> አንቀጽ </emph>."
+msgstr "መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph> ማስገቢያ - መደብ - ገጽ </emph> ወይንም <emph> አንቀጽ </emph>"
#: gallery_insert.xhp
msgctxt ""
@@ -8886,7 +8886,7 @@ msgctxt ""
"par_id3159196\n"
"help.text"
msgid "Open the Gallery by clicking the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar, or by selecting <emph>Tools - Gallery</emph>."
-msgstr "አዳራሽ መከፈቻ በ መጫን የ <emph>አዳራሽ</emph> ምልክት ከ <emph>መደበኛ</emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ</emph>."
+msgstr "አዳራሽ መከፈቻ በ መጫን የ <emph> አዳራሽ </emph> ምልክት ከ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ ወይንም በ መምረጥ ከ <emph> መሳሪያዎች - አዳራሽ </emph>"
#: gallery_insert.xhp
msgctxt ""
@@ -8910,7 +8910,7 @@ msgctxt ""
"par_id3147443\n"
"help.text"
msgid "Drag the object on to the other object in the document while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
-msgstr "እቃ ይጎትቱ ወደ ሌላ እቃ በ ሰነድ ውስጥ ተጭነው ይዘው <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
+msgstr "እቃ ይጎትቱ ወደ ሌላ እቃ በ ሰነድ ውስጥ ተጭነው ይዘው <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>"
#: groups.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_id598162\n"
"help.text"
msgid "Choose <emph>Group</emph>."
-msgstr "ይምረጡ <emph>ቡድን</emph>."
+msgstr "ይምረጡ <emph> ቡድን </emph>"
#: groups.xhp
msgctxt ""
@@ -9046,7 +9046,7 @@ msgctxt ""
"par_id343943\n"
"help.text"
msgid "Choose <emph>Enter Group</emph>."
-msgstr "ይምረጡ <emph>መግቢያ ወደ - ቡድን</emph>"
+msgstr "ይምረጡ <emph> መግቢያ ወደ - ቡድን </emph>"
#: groups.xhp
msgctxt ""
@@ -9094,7 +9094,7 @@ msgctxt ""
"par_id2685323\n"
"help.text"
msgid "Choose <emph>Exit Group</emph>."
-msgstr "ይምረጡ <emph>መውጫ ከ - ቡድን</emph>"
+msgstr "ይምረጡ <emph> መውጫ ከ - ቡድን </emph>"
#: groups.xhp
msgctxt ""
@@ -9278,7 +9278,7 @@ msgctxt ""
"par_id3152361\n"
"help.text"
msgid "If the hyperlink is a button, click on the border to select it, or press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while clicking. Open the <emph>Properties</emph> dialog through the context menu. You can edit the label text under \"Caption,\" and modify the address in the \"URL\" field."
-msgstr "hyperlink ቁልፍ ከሆነ: ይጫኑ ድንበሩ ላይ ለመምረጥ: ወይንም ይጫኑ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ: መክፈቻ በ <emph>ባህሪዎች</emph> ንግግር ውስጥ: በ አገባብ ዝርዝር ውስጥ: እርስዎ ማረም ይችላሉ የ ምልክት ጽሁፍ ውስጥ \"መግለጫ\" እና የ \"URL\" ሜዳ አድራሻ ማሻሻያ"
+msgstr "hyperlink ቁልፍ ከሆነ: ይጫኑ ድንበሩ ላይ ለመምረጥ: ወይንም ይጫኑ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ: መክፈቻ በ <emph> ባህሪዎች </emph> ንግግር ውስጥ: በ አገባብ ዝርዝር ውስጥ: እርስዎ ማረም ይችላሉ የ ምልክት ጽሁፍ ውስጥ \"መግለጫ\" እና የ \"URL\" ሜዳ አድራሻ ማሻሻያ"
#: hyperlink_insert.xhp
msgctxt ""
@@ -9398,7 +9398,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "You should create the same directory structure on your hard disk as that which exists in the web space hosted by your Internet provider. Call the root directory for the homepage on your hard disk \"homepage\", for example. The start file is then \"index.html\", the full path being \"C:\\homepage\\index.html\" (assuming Windows operating system). The URL on your Internet provider's server might then be as follows: \"http://www.myprovider.com/mypage/index.html\". With relative addressing, you indicate the link relative to the location of the output document. For example, if you placed all the graphics for your homepage in a subfolder called \"C:\\homepage\\images\", you would need to give the following path to access the graphic \"picture.gif\": \"images\\picture.gif\". This is the relative path, starting from the location of the file \"index.html\". On the provider's server, you would place the picture in the folder \"mypage/images\". When you transfer the document \"index.html\" to the provider's server through the <emph>File - Save As</emph> dialog, and if you have marked the option <emph>Copy local images to Internet</emph> under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, $[officename] will automatically copy the graphic to the correct directory on the server."
-msgstr "እርስዎ መፍጠር አለብዎት ተመሳሳይ ዳይሬክቶሪ አካል በ እርስዎ ሀርድ ዲስክ ውስጥ በ ዌብ ቦታ ውስጥ እንዳለው የ እርስዎ ኢንተርኔት አቅራቢ አይነት: ይጥሩ የ root ዳይሬክቶሪ ለ ቤት ገጽ በ እርስዎ ሀርድ ዲስክ ውስጥ \"የ ቤት ገጽ\": ለምሳሌ: የ ፋይል ማስጀመሪያ ከዛ \"index.html\", ሙሉ መንገድ ይህ ነው \"C:\\homepage\\index.html\" (የ Windows መስሪያ ስርአት ከ ተጠቀሙ). የ URL የ እርስዎ ኢንተርኔት አቅራቢ ሰርቨር እንደሚከተለው ይሆናል: \"http://www.myprovider.com/mypage/index.html\". ከ አንፃራዊ አድራሻ ጋር: እርስዎ ካሳዩ አንፃራዊ አገናኝ ለ ቦታው በ ሰነድ ውጤት ውስጥ: ለምሳሌ: እርስዎ ሁሉንም የ ንድፎች ለ እርስዎ የ ቤት ገጽ በ አንድ ቦታ ካደረጉ በ ንዑስ ፎልደር በሚባል \"C:\\homepage\\images\", እርስዎ መስጠት አለብዎት የሚቀጥለውን መንገድ የ ንድፍ ፋይሎች ጋር ለ መድረስ \"picture.gif\": \"images\\picture.gif\". ይህ አንፃራዊ መንገድ ነው: ፋይሉ ካለበት አካባቢ በ መጀመር: \"index.html\". በ አቅራቢው ሰርቨር ውስጥ: እርስዎ ስእሎቹን ያስቀምጡ በ ፎልደር ውስጥ በሚባል \"mypage/images\". እርስዎ ሰነድ በሚያስተላልፉ ጊዜ: \"index.html\" ወደ አቅራቢው ሰርቨር ውስጥ: <emph>ፋይል – ማስቀመጫ እንደ</emph> ንግግር እና እርስዎ ምርጫው ላይ ምልክት ካደረጉ <emph>የ አካባቢ ምስሎችን ወደ ኢንተርኔት ኮፒ ማድረጊያ</emph> ስር: <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች – ምርጫ</emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ</emph>, $[officename] ራሱ በራሱ ኮፒ ያደርጋል ንድፎች ወደ ትክክለኛው ዳይሬክቶሪ በ ሰርቨር ውስጥ"
+msgstr "እርስዎ መፍጠር አለብዎት ተመሳሳይ ዳይሬክቶሪ አካል በ እርስዎ ሀርድ ዲስክ ውስጥ በ ዌብ ቦታ ውስጥ እንዳለው የ እርስዎ ኢንተርኔት አቅራቢ አይነት: ይጥሩ የ root ዳይሬክቶሪ ለ ቤት ገጽ በ እርስዎ ሀርድ ዲስክ ውስጥ \"የ ቤት ገጽ\": ለምሳሌ: የ ፋይል ማስጀመሪያ ከዛ \"index.html\", ሙሉ መንገድ ይህ ነው \"C:\\homepage\\index.html\" (የ Windows መስሪያ ስርአት ከ ተጠቀሙ): የ URL የ እርስዎ ኢንተርኔት አቅራቢ ሰርቨር እንደሚከተለው ይሆናል: \"http://www.myprovider.com/mypage/index.html\". ከ አንፃራዊ አድራሻ ጋር: እርስዎ ካሳዩ አንፃራዊ አገናኝ ለ ቦታው በ ሰነድ ውጤት ውስጥ: ለምሳሌ: እርስዎ ሁሉንም የ ንድፎች ለ እርስዎ የ ቤት ገጽ በ አንድ ቦታ ካደረጉ በ ንዑስ ፎልደር በሚባል \"C:\\homepage\\images\": እርስዎ መስጠት አለብዎት የሚቀጥለውን መንገድ የ ንድፍ ፋይሎች ጋር ለ መድረስ \"picture.gif\": \"images\\picture.gif\": ይህ አንፃራዊ መንገድ ነው: ፋይሉ ካለበት አካባቢ በ መጀመር: \"index.html\": በ አቅራቢው ሰርቨር ውስጥ: እርስዎ ስእሎቹን ያስቀምጡ በ ፎልደር ውስጥ በሚባል \"mypage/images\": እርስዎ ሰነድ በሚያስተላልፉ ጊዜ: \"index.html\" ወደ አቅራቢው ሰርቨር ውስጥ: <emph> ፋይል – ማስቀመጫ እንደ </emph> ንግግር እና እርስዎ ምርጫው ላይ ምልክት ካደረጉ <emph> የ አካባቢ ምስሎችን ወደ ኢንተርኔት ኮፒ ማድረጊያ </emph> ስር: <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች – ምርጫ </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - HTML ተስማሚ </emph> $[officename] ራሱ በራሱ ኮፒ ያደርጋል ንድፎች ወደ ትክክለኛው ዳይሬክቶሪ በ ሰርቨር ውስጥ"
#: hyperlink_rel_abs.xhp
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"par_idN1068A\n"
"help.text"
msgid "With the image selected, choose <emph>Edit - ImageMap</emph>. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
-msgstr "ምስሉ ከ ተመረጠ በኋላ: ይምረጡ <emph>ማረሚያ - የ ምስል ካርታ</emph> ለ እርስዎ ይታያል <link href=\"text/shared/01/02220000.xhp\">የ ምስል ካርታ ማረሚያ</link> ምስሉን እንደ መደብ ያሳያል"
+msgstr "ምስሉ ከ ተመረጠ በኋላ: ይምረጡ <emph>ማረሚያ - የ ምስል ካርታ</emph> ለ እርስዎ ይታያል <link href=\"text/shared/01/02220000.xhp\"> የ ምስል ካርታ ማረሚያ </link> ምስሉን እንደ መደብ ያሳያል"
#: imagemap.xhp
msgctxt ""
@@ -9614,7 +9614,7 @@ msgctxt ""
"par_id3147242\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph>"
#: import_ms.xhp
msgctxt ""
@@ -9622,7 +9622,7 @@ msgctxt ""
"par_id3152780\n"
"help.text"
msgid "Select a format from the<emph> Files of type</emph> list."
-msgstr "ይምረጡ አቀራረብ ከ<emph> ፋይሎች አይነት </emph> ዝርዝር ውስጥ"
+msgstr "ይምረጡ አቀራረብ ከ <emph> ፋይሎች አይነት </emph> ዝርዝር ውስጥ"
#: import_ms.xhp
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "Select a file name and click <emph>Open</emph>."
-msgstr "የ ፋይል ስም ይምረጡ እና ይጫኑ <emph>መክፈቻ</emph>."
+msgstr "የ ፋይል ስም ይምረጡ እና ይጫኑ <emph> መክፈቻ </emph>"
#: import_ms.xhp
msgctxt ""
@@ -9662,7 +9662,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>File - Wizards - Document Converter</emph></link>."
-msgstr "ይምረጡ <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>ፋይል - አዋቂ - ሰነድ መቀየሪያ</emph></link>."
+msgstr "ይምረጡ <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph> ፋይል - አዋቂ - ሰነድ መቀየሪያ </emph></link>"
#: import_ms.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"par_id9207434\n"
"help.text"
msgid "Choose the file type \"HTML Document\" to open in <item type=\"productname\">%PRODUCTNAME</item> Writer/Web. This is the default for HTML documents in <item type=\"productname\">%PRODUCTNAME</item>."
-msgstr "ይምረጡ የ ፋይል አይነት \"HTML Document\" ለ መክፈት በ <item type=\"productname\">%PRODUCTNAME</item> መጻፊያ/Web. ይህ ነባር ነው ለ HTML ሰነዶች በ <item type=\"productname\">%PRODUCTNAME</item>."
+msgstr "ይምረጡ የ ፋይል አይነት \"HTML Document\" ለ መክፈት በ <item type=\"productname\">%PRODUCTNAME</item> መጻፊያ/ዌብ: ይህ ነባር ነው ለ HTML ሰነዶች በ <item type=\"productname\">%PRODUCTNAME</item>"
#: import_ms.xhp
msgctxt ""
@@ -9774,7 +9774,7 @@ msgctxt ""
"par_id3149236\n"
"help.text"
msgid "Select the file. In the <emph>File type</emph> box you can restrict the selection to certain file types."
-msgstr "ይምረጡ ፋይል ከ <emph>ፋይል አይነት</emph> ሳጥን ውስጥ እርስዎ መከልከል የሚፈልጉትን ከ ተወሰነ የ ፋይል ምርጫ አይነት ውስጥ"
+msgstr "ይምረጡ ፋይል ከ <emph> ፋይል አይነት </emph> ሳጥን ውስጥ እርስዎ መከልከል የሚፈልጉትን ከ ተወሰነ የ ፋይል ምርጫ አይነት ውስጥ"
#: insert_bitmap.xhp
msgctxt ""
@@ -9798,7 +9798,7 @@ msgctxt ""
"par_id3147336\n"
"help.text"
msgid "If the <emph>Link</emph> box is not marked, you are always working with the copy created when the graphic was first inserted."
-msgstr "እዚህ <emph>አገናኝ</emph> ሳጥን ውስጥ ምልክት ካልተደረገ: እርስዎ ሁልጊዜ እየሰሩ ያሉት በ ኮፒ ነው ንድፍ መጀመሪያ ሲገባ"
+msgstr "እዚህ <emph> አገናኝ </emph> ሳጥን ውስጥ ምልክት ካልተደረገ: እርስዎ ሁልጊዜ እየሰሩ ያሉት በ ኮፒ ነው ንድፍ መጀመሪያ ሲገባ"
#: insert_bitmap.xhp
msgctxt ""
@@ -9942,7 +9942,7 @@ msgctxt ""
"par_id3148618\n"
"help.text"
msgid "Choose <emph>File - Export</emph>. The <emph>Export</emph> dialog opens."
-msgstr "ይምረጡ <emph>ፋይል - መለኪያ</emph> ለ <emph>መላኪያ</emph> ንግግር መክፈቻ"
+msgstr "ይምረጡ <emph> ፋይል - መለኪያ </emph> ለ <emph> መላኪያ </emph> ንግግር መክፈቻ"
#: insert_bitmap.xhp
msgctxt ""
@@ -9966,7 +9966,7 @@ msgctxt ""
"par_id3152462\n"
"help.text"
msgid "If you only want to export the selected objects, mark the <emph>Selection</emph> box."
-msgstr "እርስዎ የ ተወሰኑ እቃዎች መላክ ከ ፈለጉ: ምልክት ያድርጉ <emph>ምርጫዎች</emph>ሳጥን ውስጥ"
+msgstr "እርስዎ የ ተወሰኑ እቃዎች መላክ ከ ፈለጉ: ምልክት ያድርጉ <emph> ምርጫዎች </emph> ሳጥን ውስጥ"
#: insert_bitmap.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id3149164\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">To draw multiple objects of the same type, double-click the icon.</caseinline><caseinline select=\"IMPRESS\">To draw multiple objects of the same type, double-click the icon.</caseinline><defaultinline>Draw multiple objects of the same type. Click the document without moving the mouse to stop drawing objects.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">በርካታ ተመሳሳይ እቃ ለ መሳል ሁለት ጊዜ-ይጫኑ በ ምልክቱ ላይ</caseinline><caseinline select=\"IMPRESS\">በርካታ ተመሳሳይ እቃ ለ መሳል: ሁለት ጊዜ-ይጫኑ በ ምልክቱ ላይ</caseinline><defaultinline>በርካታ ተመሳሳይ እቃ ለ መሳል: ይጫኑ በ ሰነዱ ላይ አይጡን ሳያንቀሳቅሱ የ መሳያ እቃዎች ለማስቆም </defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">በርካታ ተመሳሳይ እቃ ለ መሳል ሁለት ጊዜ-ይጫኑ በ ምልክቱ ላይ </caseinline><caseinline select=\"IMPRESS\"> በርካታ ተመሳሳይ እቃ ለ መሳል: ሁለት ጊዜ-ይጫኑ በ ምልክቱ ላይ</caseinline><defaultinline> በርካታ ተመሳሳይ እቃ ለ መሳል: ይጫኑ በ ሰነዱ ላይ አይጡን ሳያንቀሳቅሱ የ መሳያ እቃዎች ለማስቆም </defaultinline></switchinline>"
#: insert_graphic_drawit.xhp
msgctxt ""
@@ -10086,7 +10086,7 @@ msgctxt ""
"par_id224616\n"
"help.text"
msgid "To scale a draw object using the keyboard, first select the object, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab repeatedly to highlight one of the handles. Then press an arrow key. To scale in smaller steps, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while pressing an arrow key. Press Esc to leave the point edit mode."
-msgstr "የ ፊደል ገበታ በ መጠቀም የ መሳያ እቃ ለ መመጠን: በ መጀመሪያ እቃ ይምረጡ: እና ከዛ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab በ ተከታታይ አንዱን እጄታ ለማድመቅ: እና ከዛ ይጫኑ የ ቀስት ቁልፍ: ለ መመጠን በ ትንሽ ደረጃ: ተጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ ተጭነው ይዘው የ ቀስት ቁልፍ: ይጫኑ Esc ከ ማረሚያ ዘዴ ለ መውጣት"
+msgstr "የ ፊደል ገበታ በ መጠቀም የ መሳያ እቃ ለ መመጠን: በ መጀመሪያ እቃ ይምረጡ: እና ከዛ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab በ ተከታታይ አንዱን እጄታ ለማድመቅ: እና ከዛ ይጫኑ የ ቀስት ቁልፍ: ለ መመጠን በ ትንሽ ደረጃ: ተጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ ተጭነው ይዘው የ ቀስት ቁልፍ: ይጫኑ Esc ከ ማረሚያ ዘዴ ለ መውጣት"
#: insert_graphic_drawit.xhp
msgctxt ""
@@ -10102,7 +10102,7 @@ msgctxt ""
"par_id7199316\n"
"help.text"
msgid "To move a draw object using the keyboard, first select the object, then press an arrow key. To move in smaller steps, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while pressing an arrow key."
-msgstr "የ ፊደል ገበታ በ መጠቀም የ መሳያ እቃ ለ ማንቀሳቀስ: በ መጀመሪያ እቃ ይምረጡ: እና ከዛ ይጫኑ የ ቀስት ቁልፍ: ለ ማንቀሳቀስ በ ትንሽ ደረጃ: ተጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ የ ቀስት ቁልፍ"
+msgstr "የ ፊደል ገበታ በ መጠቀም የ መሳያ እቃ ለ ማንቀሳቀስ: በ መጀመሪያ እቃ ይምረጡ: እና ከዛ ይጫኑ የ ቀስት ቁልፍ: ለ ማንቀሳቀስ በ ትንሽ ደረጃ: ተጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ በሚጫኑ ጊዜ የ ቀስት ቁልፍ"
#: insert_graphic_drawit.xhp
msgctxt ""
@@ -10182,7 +10182,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "In any text input field (such as the input fields in the <emph>Find & Replace</emph> dialog) you can press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S to open the <emph>Special Characters</emph> dialog."
-msgstr "በማንኛውም የ ጽሁፍ ማስገቢያ ሜዳ ውስጥ (እንደ ማስገቢያ ሜዳዎች በ <emph>መፈለጊያ & መቀየሪያ</emph> ንግግር) እርስዎ ይጫኑ Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S ለ መክፈት <emph>የ ተለዩ ባህሪዎች</emph> ንግግር"
+msgstr "በማንኛውም የ ጽሁፍ ማስገቢያ ሜዳ ውስጥ (እንደ ማስገቢያ ሜዳዎች በ <emph>መፈለጊያ & መቀየሪያ </emph> ንግግር) እርስዎ ይጫኑ Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S ለ መክፈት <emph> የ ተለዩ ባህሪዎች </emph> ንግግር"
#: insert_specialchar.xhp
msgctxt ""
@@ -10494,7 +10494,7 @@ msgctxt ""
"par_id3144433\n"
"help.text"
msgid "Press Enter to execute the selected icon. If the selected icon normally demands a consecutive mouse action, such as inserting a rectangle, then pressing the Enter key is not sufficient: in these cases press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "ይጫኑ ማስገቢያውን የ ተመረጠውን ምልክት ለ መፈጸም: የ ተመረጠው ምልክት በ ተከታታይ የ አይጥ ቁልፍ መጫን የሚፈልግ ከሆነ: እንደ አራት ማእዘን ማስገቢያ: እና ከዛ የ ማስገቢያ ቁልፍ መጫን ብቻ በቂ ላይሆን ይችላል: ይህ ሲያጋጥም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያውን"
+msgstr "ይጫኑ ማስገቢያውን የ ተመረጠውን ምልክት ለ መፈጸም: የ ተመረጠው ምልክት በ ተከታታይ የ አይጥ ቁልፍ መጫን የሚፈልግ ከሆነ: እንደ አራት ማእዘን ማስገቢያ: እና ከዛ የ ማስገቢያ ቁልፍ መጫን ብቻ በቂ ላይሆን ይችላል: ይህ ሲያጋጥም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያውን"
#: keyboard.xhp
msgctxt ""
@@ -10510,7 +10510,7 @@ msgctxt ""
"par_id3150449\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter on the Selection tool to select the first draw object in the document. If you want to edit, size, or move the selected draw object, first use <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 to set the focus into the document."
-msgstr "ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ በ ምርጫው እቃ ላይ የ መጀመሪያውን የ መሳያ እቃ ለ መምረጥ በ ሰነድ ውስጥ: እርስዎ ማረም ከ ፈለጉ: መጠን ወይንም ማንቀሳቀስ የ ተመረጠውን የ መሳያ እቃ: መጀመሪያ ይጠቀሙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 ትኩረቱን ወደ ሰነድ ውስጥ ለማሰናዳት"
+msgstr "ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ በ ምርጫው እቃ ላይ የ መጀመሪያውን የ መሳያ እቃ ለ መምረጥ በ ሰነድ ውስጥ: እርስዎ ማረም ከ ፈለጉ: መጠን ወይንም ማንቀሳቀስ የ ተመረጠውን የ መሳያ እቃ: መጀመሪያ ይጠቀሙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 ትኩረቱን ወደ ሰነድ ውስጥ ለማሰናዳት"
#: keyboard.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3154320\n"
"help.text"
msgid "In several windows, dialogs, and in the table control field, there are tables to select data, for instance, in the right part of the <link href=\"text/shared/guide/database_main.xhp\" name=\"Data Source View\">Data Source View</link>. The following keys are used for selections in these tables:"
-msgstr "በ በርካታ መስኮቶች: ንግግሮች: እና የ ሰንጠረዥ መቆጣጠሪያ ሜዳ ውስጥ: እርስዎ ዳታ የሚመርጡበት ሰንጠረዦች አሉ: ለምሳሌ: የ ቀኝ ክፍል ለ <link href=\"text/shared/guide/database_main.xhp\" name=\"Data Source View\">ዳታ ምንጭ መመልከቻ</link> የሚቀጥሉትን ቁልፎች ይጠቀሙ ለ መምረጫ ከ እነዚህ ሰንጠረዦች ውስጥ:"
+msgstr "በ በርካታ መስኮቶች: ንግግሮች: እና የ ሰንጠረዥ መቆጣጠሪያ ሜዳ ውስጥ: እርስዎ ዳታ የሚመርጡበት ሰንጠረዦች አሉ: ለምሳሌ: የ ቀኝ ክፍል ለ <link href=\"text/shared/guide/database_main.xhp\" name=\"Data Source View\"> ዳታ ምንጭ መመልከቻ </link> የሚቀጥሉትን ቁልፎች ይጠቀሙ ለ መምረጫ ከ እነዚህ ሰንጠረዦች ውስጥ:"
#: keyboard.xhp
msgctxt ""
@@ -10630,7 +10630,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow or <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow: moves the window separator between table and form, for instance in the bibliography database."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ቀስት ወደ ላይ ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ቀስት ወደ ታች: የ መስኮት መለያያ ያንቀሳቅሳል በ ፎርም እና ሰንጠረዥ መካከል: ለምሳሌ: የ ጽሁፎች ዝርዝር ዳታቤዝ ውስጥ"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ቀስት ወደ ላይ ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ቀስት ወደ ታች: የ መስኮት መለያያ ያንቀሳቅሳል በ ፎርም እና ሰንጠረዥ መካከል: ለምሳሌ: የ ጽሁፎች ዝርዝር ዳታቤዝ ውስጥ"
#: keyboard.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_id3153221\n"
"help.text"
msgid "First press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+spacebar."
-msgstr "መጀመሪያ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+የ ክፍተት ማስገቢያ ቁልፍ"
+msgstr "መጀመሪያ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+የ ክፍተት ማስገቢያ ቁልፍ"
#: keyboard.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"par_id3145619\n"
"help.text"
msgid "Set the grid resolution unit with <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Grid</emph> in the <emph>Resolution</emph> area. If you enter a number greater than 1 in the <emph>Subdivision</emph> area, you must press the arrow key as often as the number states to move the selected object by one grid resolution unit."
-msgstr "የ መጋጠሚያ ሪዞሊሽን ማሰናጃ እስከ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - መጋጠሚያ</emph> በ <emph>ሪዞሊሽን</emph> ቦታ ውስጥ: እርስዎ ቁጥር ካስገቡ ከ 1 የ በለጠ በ <emph>ንዑስ ክፍል</emph> ቦታ ውስጥ: እርስዎ የ ቀስት ቁልፍ መጫን አለብዎት ቁጥሩ እንደሚያሳየው የ ተመረጠውን እቃ ለማንቀሳቀስ በ አንድ መጋጠሚያ ሪዞሊሽን ክፍል"
+msgstr "የ መጋጠሚያ ሪዞሊሽን ማሰናጃ እስከ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - መጋጠሚያ</emph> በ <emph> ሪዞሊሽን </emph> ቦታ ውስጥ: እርስዎ ቁጥር ካስገቡ ከ 1 የ በለጠ በ <emph> ንዑስ ክፍል </emph> ቦታ ውስጥ: እርስዎ የ ቀስት ቁልፍ መጫን አለብዎት ቁጥሩ እንደሚያሳየው የ ተመረጠውን እቃ ለማንቀሳቀስ በ አንድ መጋጠሚያ ሪዞሊሽን ክፍል"
#: keyboard.xhp
msgctxt ""
@@ -11134,7 +11134,7 @@ msgctxt ""
"par_id3159096\n"
"help.text"
msgid "Press Tab to select an icon. If you selected one of the icons from <emph>Rectangle</emph> to <emph>Freeform Polygon</emph> and you press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter, an object of the selected type is created in default size."
-msgstr "ይጫኑ Tab ምልክት ለ መምረጥ: እርስዎ አንዱን ምልክት ከ መረጡ ከ <emph>አራት ማእዘን</emph> ወደ <emph>ነፃ እጅ ፖሊጎን</emph> እና እርስዎ ከ ተጫኑ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter: የ ተመረጠው እቃ አይነት ይፈጠራል እንደ ነባሩ መጠን"
+msgstr "ይጫኑ Tab ምልክት ለ መምረጥ: እርስዎ አንዱን ምልክት ከ መረጡ ከ <emph> አራት ማእዘን </emph> ወደ <emph> ነፃ እጅ ፖሊጎን </emph> እና እርስዎ ከ ተጫኑ የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ: የ ተመረጠው እቃ አይነት ይፈጠራል እንደ ነባሩ መጠን"
#: keyboard.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"par_id3149587\n"
"help.text"
msgid "If the <emph>Select</emph> icon is selected and you press Ctrl+Enter, the first object in the image window gets selected."
-msgstr "የ <emph>ይምረጡ</emph> ምልክት ከ ተመረጠ እና እርስዎ ከ ተጫኑ Ctrl+Enter: የ መጀመሪያው እቃ በ ምስል መስኮት ውስጥ ይመረጣል"
+msgstr "የ <emph> ይምረጡ </emph> ምልክት ከ ተመረጠ እና እርስዎ ከ ተጫኑ Ctrl+ማስገቢያ: የ መጀመሪያው እቃ በ ምስል መስኮት ውስጥ ይመረጣል"
#: keyboard.xhp
msgctxt ""
@@ -11526,7 +11526,7 @@ msgctxt ""
"par_id3146798\n"
"help.text"
msgid "Choose <link href=\"text/shared/01/01010300.xhp\" name=\"File - New - Business Cards\"><emph>File - New - Business Cards</emph></link> to open the<emph> Business Cards </emph>dialog, which allows you to choose how your business cards will look."
-msgstr "ይምረጡ <link href=\"text/shared/01/01010300.xhp\" name=\"File - New - Business Cards\"><emph>ፋይል - አዲስ - የ ንግድ ካርድ</emph></link> ለ መክፈት <emph> የ ንግድ ካርድ </emph>ንግግር: የ እርስዎ የ ንግድ ካርድ ምን እንደሚመስል ማየት ያስችሎታል"
+msgstr "ይምረጡ <link href=\"text/shared/01/01010300.xhp\" name=\"File - New - Business Cards\"><emph> ፋይል - አዲስ - የ ንግድ ካርድ </emph></link> ለ መክፈት <emph> የ ንግድ ካርድ </emph> ንግግር: የ እርስዎ የ ንግድ ካርድ ምን እንደሚመስል ማየት ያስችሎታል"
#: labels.xhp
msgctxt ""
@@ -11550,7 +11550,7 @@ msgctxt ""
"par_id3153880\n"
"help.text"
msgid "Choose <link href=\"text/shared/01/01010200.xhp\" name=\"File - New - Labels\"><emph>File - New - Labels</emph></link> to open the <emph>Labels</emph> dialog."
-msgstr "ይምረጡ <link href=\"text/shared/01/01010200.xhp\" name=\"File - New - Labels\"><emph>ፋይል - አዲስ - ምልክቶች</emph></link> ለ መክፈት የ <emph>ምልክቶች</emph> ንግግር"
+msgstr "ይምረጡ <link href=\"text/shared/01/01010200.xhp\" name=\"File - New - Labels\"><emph> ፋይል - አዲስ - ምልክቶች </emph></link> ለ መክፈት የ <emph> ምልክቶች </emph> ንግግር"
#: labels.xhp
msgctxt ""
@@ -11590,7 +11590,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "Use the <emph>Database </emph>and <emph>Table </emph>list boxes to select the database and table from which the data fields are obtained. Click on the arrow button to transfer the selected data field into the inscription area. Press Enter to insert a line break. You can also enter spaces and any other fixed text."
-msgstr "ይጠቀሙ የ <emph>ዳታቤዝ </emph>እና <emph>ሰንጠረዥ </emph>ዝርዝር ሳጥኖች ለ መምረጥ የ ዳታቤዝ እና ሰንጠረዥ ከ ዳታ ሜዳዎች ከሚገኙበት: ይጫኑ በ ቀስት ቁልፍ ላይ የ ተመረጠውን ዳታ ሜዳ ለማስተላለፍ ወደ መቅረጫ ቦታ: ይጫኑ ማስገቢያውን የ መስመር መጨረሻ ለማስገባት: እርስዎ እንዲሁም ክፍተት እና ሌሎች የ ተወሰኑ ጽሁፎች ማስገባት ይችላሉ"
+msgstr "ይጠቀሙ የ <emph> ዳታቤዝ </emph> እና <emph> ሰንጠረዥ </emph> ዝርዝር ሳጥኖች ለ መምረጥ የ ዳታቤዝ እና ሰንጠረዥ ከ ዳታ ሜዳዎች ከሚገኙበት: ይጫኑ በ ቀስት ቁልፍ ላይ የ ተመረጠውን ዳታ ሜዳ ለማስተላለፍ ወደ መቅረጫ ቦታ: ይጫኑ ማስገቢያውን የ መስመር መጨረሻ ለማስገባት: እርስዎ እንዲሁም ክፍተት እና ሌሎች የ ተወሰኑ ጽሁፎች ማስገባት ይችላሉ"
#: labels.xhp
msgctxt ""
@@ -11598,7 +11598,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "On the <emph>Format</emph> tab you can define your own label formats, not covered by the predefined formats. To do this, select \"User\" from the <emph>Type</emph> list box. On the <emph>Options</emph> tab, you can specify whether all labels or only certain ones are to be created."
-msgstr "በ <emph>አቀራረብ</emph> tab እርስዎ መግለጽ ይችላሉ የራስዎትን የ ምልክት አቀራረብ: በ ቅድሚያ የ ተገለጸ አቀራረብ ውስጥ የማይሸፈን: ይህን ለማድረግ: ይምረጡ \"ተጠቃሚ\" ከ <emph>አይነት</emph> ዝርዝር ሳጥን ውስጥ: ከ <emph>ምርጫ</emph> tab: እርስዎ መወሰን ይችላሉ ሁሉም ወይንም አንዳንድ ምልክቶች እንደሚፈጠሩ"
+msgstr "በ <emph> አቀራረብ </emph> tab እርስዎ መግለጽ ይችላሉ የራስዎትን የ ምልክት አቀራረብ: በ ቅድሚያ የ ተገለጸ አቀራረብ ውስጥ የማይሸፈን: ይህን ለማድረግ: ይምረጡ \"ተጠቃሚ\" ከ <emph> አይነት </emph> ዝርዝር ሳጥን ውስጥ: ከ <emph> ምርጫ </emph> tab: እርስዎ መወሰን ይችላሉ ሁሉም ወይንም አንዳንድ ምልክቶች እንደሚፈጠሩ"
#: labels.xhp
msgctxt ""
@@ -11622,7 +11622,7 @@ msgctxt ""
"par_id3156424\n"
"help.text"
msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "እርስዎ ወዲያውኑ እንደ ተጫኑ በ <emph>አዲስ ሰነድ</emph>ውስጥ: ለ እርስዎ ትንሽ መስኮት ይታያል በ <emph> ምልክቶች ማስማሚያ </emph> ቁልፍ ውስጥ: የ መጀመሪያውን ምልክት ያስገቡ: እርስዎ በሚጫኑ ጊዜ በ <emph> ምልክቶች ማስማሚያ </emph> ቁልፍ ውስጥ: የ አሁኑ እያንዳንዱ ምልክት ኮፒ ይደረጋል ወደ ሁሉም ሌሎች ምልክቶች በ ወረቀቱ ውስጥ"
+msgstr "እርስዎ ወዲያውኑ እንደ ተጫኑ በ <emph> አዲስ ሰነድ </emph> ውስጥ: ለ እርስዎ ትንሽ መስኮት ይታያል በ <emph> ምልክቶች ማስማሚያ </emph> ቁልፍ ውስጥ: የ መጀመሪያውን ምልክት ያስገቡ: እርስዎ በሚጫኑ ጊዜ በ <emph> ምልክቶች ማስማሚያ </emph> ቁልፍ ውስጥ: የ አሁኑ እያንዳንዱ ምልክት ኮፒ ይደረጋል ወደ ሁሉም ሌሎች ምልክቶች በ ወረቀቱ ውስጥ"
#: labels.xhp
msgctxt ""
@@ -11646,7 +11646,7 @@ msgctxt ""
"bm_id3147399\n"
"help.text"
msgid "<bookmark_value>address labels from databases</bookmark_value> <bookmark_value>labels; from databases</bookmark_value> <bookmark_value>stickers</bookmark_value> <bookmark_value>databases;creating labels</bookmark_value>"
-msgstr "<bookmark_value>የ አድራሻ ምልክቶች ከ ዳታቤዝ ውስጥ</bookmark_value> <bookmark_value>ምልክቶች: ከ ዳታቤዝ ውስጥ</bookmark_value> <bookmark_value>ተጣባቂዎች</bookmark_value> <bookmark_value>የ ዳታቤዝ: ምልክቶች መፍጠሪያ</bookmark_value>"
+msgstr "<bookmark_value>የ አድራሻ ምልክቶች ከ ዳታቤዝ ውስጥ</bookmark_value> <bookmark_value>ምልክቶች: ከ ዳታቤዝ ውስጥ </bookmark_value> <bookmark_value> ተጣባቂዎች </bookmark_value> <bookmark_value>የ ዳታቤዝ: ምልክቶች መፍጠሪያ </bookmark_value>"
#: labels_database.xhp
msgctxt ""
@@ -11662,7 +11662,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "Choose <emph>File - New - Labels</emph> to open the <emph>Labels</emph> dialog."
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ምልክቶች</emph> ለ መክፈት የ <emph>ምልክቶች</emph> ንግግር"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ምልክቶች </emph> ለ መክፈት የ <emph> ምልክቶች </emph> ንግግር"
#: labels_database.xhp
msgctxt ""
@@ -11670,7 +11670,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "On the <emph>Labels</emph> tab page, select the format of the label sheets you want to print on."
-msgstr "በ <emph>ምልክቶች</emph> tab ገጽ ውስጥ: ይምረጡ የ ምልክት ወረቀቶች አቀራረብ እርስዎ ማተም የሚፈልጉበትን"
+msgstr "በ <emph> ምልክቶች </emph> tab ገጽ ውስጥ: ይምረጡ የ ምልክት ወረቀቶች አቀራረብ እርስዎ ማተም የሚፈልጉበትን"
#: labels_database.xhp
msgctxt ""
@@ -11734,7 +11734,7 @@ msgctxt ""
"par_id8476821\n"
"help.text"
msgid "When you choose to print the document, you will be asked if you want to print a form letter. Answer Yes to open the <link href=\"text/swriter/01/01150000.xhp\">Mail Merge</link> dialog. In the Mail Merge dialog, you can select the records for which you want to print labels."
-msgstr "እርስዎ በሚመርጡ ጊዜ ሰነድ ለማተም: እርስዎ የ ፎርም ደብዳቤ ማተም እንደሚፈልጉ ይጠየቃሉ: አዎ ብለው ይመልሱ ለ መክፈት የ <link href=\"text/swriter/01/01150000.xhp\">ደብዳቤ ማዋሀጃ</link> ንግግር ውስጥ: በ ደብዳቤ ማዋሀጃ ንግግር ውስጥ: እርስዎ መምረጥ ይችላሉ መዝገቦች እርስዎ እንደ ምልክቶች የሚያትሙት"
+msgstr "እርስዎ በሚመርጡ ጊዜ ሰነድ ለማተም: እርስዎ የ ፎርም ደብዳቤ ማተም እንደሚፈልጉ ይጠየቃሉ: አዎ ብለው ይመልሱ ለ መክፈት የ <link href=\"text/swriter/01/01150000.xhp\"> ደብዳቤ ማዋሀጃ </link> ንግግር ውስጥ: በ ደብዳቤ ማዋሀጃ ንግግር ውስጥ: እርስዎ መምረጥ ይችላሉ መዝገቦች እርስዎ እንደ ምልክቶች የሚያትሙት"
#: language_select.xhp
msgctxt ""
@@ -11814,7 +11814,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "Under <emph>Default languages for documents</emph>, select the document language for all newly created documents. If you mark <emph>For the current document only</emph>, your choice will only apply to the current document. Close the dialog with <emph>OK</emph>."
-msgstr "ከ <emph>ነባር ቋንቋዎች ለ ሰነዶች</emph> ይምረጡ የ ሰነድ ቋንቋ ለ ሁሉም አዲስ ለሚፈጠሩ ሰነዶች: እርስዎ ምልክት ካደረጉ <emph>ለ አሁኑ ሰነድ ብቻ</emph> የ እርስዎ ምርጫ የሚፈጸመው ለ አሁኑ ሰነድ ብቻ ነው: እና ንግግሩን ይዝጉ በ <emph>እሺ</emph>."
+msgstr "ከ <emph> ነባር ቋንቋዎች ለ ሰነዶች </emph> ይምረጡ የ ሰነድ ቋንቋ ለ ሁሉም አዲስ ለሚፈጠሩ ሰነዶች: እርስዎ ምልክት ካደረጉ <emph> ለ አሁኑ ሰነድ ብቻ </emph> የ እርስዎ ምርጫ የሚፈጸመው ለ አሁኑ ሰነድ ብቻ ነው: እና ንግግሩን ይዝጉ በ <emph> እሺ </emph>"
#: language_select.xhp
msgctxt ""
@@ -11838,7 +11838,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "Open the context menu and select <emph>Edit Paragraph Style</emph>. This opens the <emph>Paragraph Style</emph> dialog."
-msgstr "የ አገባብ ዝርዝር መክፈቻ እና ይምረጡ <emph>የ አንቀጽ ዘዴ ማረሚያ</emph> ይህ ይከፍታል የ <emph>አንቀጽ ዘዴ</emph> ንግግር"
+msgstr "የ አገባብ ዝርዝር መክፈቻ እና ይምረጡ <emph> የ አንቀጽ ዘዴ ማረሚያ </emph> ይህ ይከፍታል የ <emph> አንቀጽ ዘዴ </emph> ንግግር"
#: language_select.xhp
msgctxt ""
@@ -11886,7 +11886,7 @@ msgctxt ""
"par_id3159348\n"
"help.text"
msgid "Choose <emph>Format - Character</emph>. This opens the <emph>Character</emph> dialog."
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ</emph> ይህ ይከፍታል የ <emph>ባህሪ</emph> ንግግር"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ </emph> ይህ ይከፍታል የ <emph> ባህሪ </emph> ንግግር"
#: language_select.xhp
msgctxt ""
@@ -11910,7 +11910,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc, choose <emph>Format - Cells</emph> and proceed accordingly."
-msgstr "በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ: ይምረጡ <emph> አቀራረብ - ክፍሎች </emph> እና እንደ ሁኔታው ይቀጥሉ"
+msgstr "በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ውስጥ: ይምረጡ <emph> አቀራረብ - ክፍሎች </emph> እና እንደ ሁኔታው ይቀጥሉ"
#: language_select.xhp
msgctxt ""
@@ -11942,7 +11942,7 @@ msgctxt ""
"par_id3150753\n"
"help.text"
msgid "Then open the context menu in the Styles and Formatting window and select <emph>Modify</emph>. This opens the <emph>Character Style</emph> dialog."
-msgstr "እና ከዛ ይክፈቱ የ አገባብ ዝርዝር ከ ዘዴዎች እና አቀራረብ መስኮት ውስጥ እና ይምረጡ <emph>ማሻሻያ</emph> ይህ ይከፍታል የ <emph>ባህሪ ዘዴ</emph> ንግግር"
+msgstr "እና ከዛ ይክፈቱ የ አገባብ ዝርዝር ከ ዘዴዎች እና አቀራረብ መስኮት ውስጥ እና ይምረጡ <emph> ማሻሻያ </emph> ይህ ይከፍታል የ <emph> ባህሪ ዘዴ </emph> ንግግር"
#: language_select.xhp
msgctxt ""
@@ -12382,7 +12382,7 @@ msgctxt ""
"par_idN107D0\n"
"help.text"
msgid "To remove an automatically drawn border, choose <emph>Format - Paragraph - Borders</emph> and select no border."
-msgstr "ለ ማስወገድ ራሱ በራሱ የ ተሰራውን ድንበር: ይምረጡ <emph>አቀራረብ - አንቀጽ - ድንበሮች</emph> እና ይምረጡ ድንበር የለም"
+msgstr "ለ ማስወገድ ራሱ በራሱ የ ተሰራውን ድንበር: ይምረጡ <emph> አቀራረብ - አንቀጽ - ድንበሮች </emph> እና ይምረጡ ድንበር የለም"
#: line_intext.xhp
msgctxt ""
@@ -12390,7 +12390,7 @@ msgctxt ""
"par_idN107D8\n"
"help.text"
msgid "To undo an automatic border replacement once, choose <emph>Edit - Undo</emph>."
-msgstr "ለ መተው ራሱ በራሱ የ ተሰራውን ድንበር: አንዴ መቀየሪያ: ይምረጡ <emph>ማረሚያ - መተው</emph>"
+msgstr "ለ መተው ራሱ በራሱ የ ተሰራውን ድንበር: አንዴ መቀየሪያ: ይምረጡ <emph> ማረሚያ - መተው </emph>"
#: line_intext.xhp
msgctxt ""
@@ -12470,7 +12470,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "Select the object and choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Drawing Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line</emph>."
-msgstr "ይምረጡ እቃ እና ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ መሳያ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>መስመር</emph>."
+msgstr "ይምረጡ እቃ እና ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ መሳያ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር </emph>"
#: lineend_define.xhp
msgctxt ""
@@ -12534,7 +12534,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Drawing Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line</emph> and click the <emph>Line Styles</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ መሳያ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>መስመር</emph> እና ይጫኑ የ <emph>መስመር ዘዴዎች</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ መሳያ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር </emph> እና ይጫኑ የ <emph> መስመር ዘዴዎች </emph> tab."
#: linestyle_define.xhp
msgctxt ""
@@ -12582,7 +12582,7 @@ msgctxt ""
"par_idN10671\n"
"help.text"
msgid "Click <emph>Close</emph> to close the dialog."
-msgstr "ይጫኑ <emph>መዝጊያ</emph> ንግግሩን ለ መዝጋት"
+msgstr "ይጫኑ <emph> መዝጊያ </emph> ንግግሩን ለ መዝጋት"
#: linestyles.xhp
msgctxt ""
@@ -12654,7 +12654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Recording a Macro"
-msgstr "Macro መቅረጫ"
+msgstr "ማክሮስ መቅረጫ"
#: macro_recording.xhp
msgctxt ""
@@ -12662,7 +12662,7 @@ msgctxt ""
"bm_id3093440\n"
"help.text"
msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
-msgstr "<bookmark_value>macros: መቅረጫ</bookmark_value><bookmark_value>መቅረጫ: macros</bookmark_value><bookmark_value>Basic: መቅረጫ macros</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ: መቅረጫ</bookmark_value><bookmark_value>መቅረጫ: ማክሮስ</bookmark_value><bookmark_value>Basic: መቅረጫ ማክሮስ</bookmark_value>"
#: macro_recording.xhp
msgctxt ""
@@ -12670,7 +12670,7 @@ msgctxt ""
"hd_id3093440\n"
"help.text"
msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Macro መቅረጫ</link></variable>"
+msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">ማክሮስ መቅረጫ</link></variable>"
#: macro_recording.xhp
msgctxt ""
@@ -12678,7 +12678,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Open the document for which you want to record a macro."
-msgstr "ሰነድ ይክፈቱ እርስዎ macro መቅረጽ የሚፈልጉትን"
+msgstr "ሰነድ ይክፈቱ እርስዎ ማክሮስ መቅረጽ የሚፈልጉትን"
#: macro_recording.xhp
msgctxt ""
@@ -12686,7 +12686,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>."
-msgstr "ይምረጡ <emph>መሳሪያዎች - Macros - Macro መቅረጫ</emph>"
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </emph>"
#: macro_recording.xhp
msgctxt ""
@@ -12694,7 +12694,7 @@ msgctxt ""
"par_id3149399\n"
"help.text"
msgid "If <emph>Tools - Macros - Record Macro</emph> menu item is missing, make sure that macro recording feature is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Advanced</emph>."
-msgstr "እነዚህ <emph>መሳሪያዎች - Macros - Macro መቅረጫ</emph> ዝርዝር እቃ አልተገኘም: እርግጠኛ ይሁኑ የ macro መቅረጫ ገጽታ ማስቻሎትን በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የረቀቀ</emph>."
+msgstr "እነዚህ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </emph> ዝርዝር እቃ አልተገኘም: እርግጠኛ ይሁኑ የ ማክሮስ መቅረጫ ገጽታ ማስቻሎትን በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የረቀቀ</emph>"
#: macro_recording.xhp
msgctxt ""
@@ -12718,7 +12718,7 @@ msgctxt ""
"par_id3150504\n"
"help.text"
msgid "Press the Escape key to deselect an object, as the macro recorder currently does not record this action by mouse click."
-msgstr "ይጫኑ መዝለያ ቁልፍ እቃውን ላለመምረጥ: እንደ macro መቅረጫ አሁን እየቀረጽ አይደለም ይህን ተግባር በ አይጥ በ መጫን"
+msgstr "ይጫኑ መዝለያ ቁልፍ እቃውን ላለመምረጥ: እንደ ማክሮስ መቅረጫ አሁን እየቀረጸ አይደለም: ይህን ተግባር በ አይጥ በ መጫን"
#: macro_recording.xhp
msgctxt ""
@@ -12726,7 +12726,7 @@ msgctxt ""
"par_id3148492\n"
"help.text"
msgid "Click <emph>Stop Recording</emph>."
-msgstr "ይጫኑ <emph>መቅረጫ ማስቆሚያ</emph>."
+msgstr "ይጫኑ <emph> መቅረጫ ማስቆሚያ </emph>"
#: macro_recording.xhp
msgctxt ""
@@ -12734,7 +12734,7 @@ msgctxt ""
"par_id3148686\n"
"help.text"
msgid "The <emph>Macro</emph> dialog appears, in which you can save and run the macro."
-msgstr "የ <emph>Macro</emph> ንግግር ይታያል: እርስዎ የሚያስቀምጡበት እና እንደገና የሚያስኬዱበት macro"
+msgstr "የ <emph> ማክሮስ </emph> ንግግር ይታያል: እርስዎ የሚያስቀምጡበት እና እንደገና የሚያስኬዱበት ማክሮስ"
#: macro_recording.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"par_id3159158\n"
"help.text"
msgid "If you want to abort the recording without saving a macro, click the <emph>Close</emph> button of the <emph>Recording</emph> dialog."
-msgstr "እርስዎ ማቋረጥ ከ ፈለጉ መቅረጹን ምንም macro ሳያስቀምጡ: ይጫኑ የ <emph>መዝጊያ</emph> ቁልፍ በ <emph>መቅረጫ</emph> ንግግር ውስጥ"
+msgstr "እርስዎ ማቋረጥ ከ ፈለጉ መቅረጹን ምንም ማክሮስ ሳያስቀምጡ: ይጫኑ የ <emph> መዝጊያ </emph> ቁልፍ በ <emph> መቅረጫ </emph> ንግግር ውስጥ"
#: macro_recording.xhp
msgctxt ""
@@ -12750,7 +12750,7 @@ msgctxt ""
"par_id3144510\n"
"help.text"
msgid "To save the macro, first select the object where you want the macro to be saved in the <emph>Save macro in</emph> list box."
-msgstr "ለማስቀመጥ macro: በ መጀመሪያ እቃ ይምረጡ እርስዎ macro ማስቀመጥ የሚፈልጉበትን በ <emph>macro ማስቀመጫ በ</emph> ዝርዝር ሳጥን ውስጥ"
+msgstr "ለማስቀመጥ ማክሮስ: በ መጀመሪያ እቃ ይምረጡ እርስዎ ማክሮስ ማስቀመጥ የሚፈልጉበትን በ <emph> ማክሮስ ማስቀመጫ በ </emph> ዝርዝር ሳጥን ውስጥ"
#: macro_recording.xhp
msgctxt ""
@@ -12758,7 +12758,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "If you want the macro to be saved into a new library or module, click the <emph>New Library </emph>or <emph>New Module </emph>button and enter a name for the library or module."
-msgstr "እርስዎ ከ ፈለጉ macro እንዲቀመጥ ወደ አዲስ መጻህፍት ቤት ወይንም ክፍል ውስጥ: ይጫኑ የ <emph>አዲስ መጻህፍት ቤት </emph>ወይንም <emph>አዲስ ክፍል </emph>ቁልፍ እና ስም ያስገቡ ለ አዲስ መጻህፍት ቤት ወይንም ለ አዲስ ክፍል"
+msgstr "እርስዎ ከ ፈለጉ ማክሮስ እንዲቀመጥ ወደ አዲስ መጻህፍት ቤት ወይንም ክፍል ውስጥ: ይጫኑ የ <emph> አዲስ መጻህፍት ቤት </emph> ወይንም <emph> አዲስ ክፍል </emph> ቁልፍ እና ስም ያስገቡ ለ አዲስ መጻህፍት ቤት ወይንም ለ አዲስ ክፍል"
#: macro_recording.xhp
msgctxt ""
@@ -12766,7 +12766,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Enter a name for the new macro in the <emph>Macro name</emph> text box. Do not use Basic keywords as a name."
-msgstr "ለ አዲሱ macro ስም ያስገቡ በ <emph> Macro ስም </emph> ጽሁፍ ሳጥን ውስጥ: መሰረታዊ ቁልፍ ቃሎች እንደ ስም አይጠቀሙ"
+msgstr "ለ አዲሱ ማክሮስ ስም ያስገቡ በ <emph> ማክሮስ ስም </emph> ጽሁፍ ሳጥን ውስጥ: መሰረታዊ ቁልፍ ቃሎች እንደ ስም አይጠቀሙ"
#: macro_recording.xhp
msgctxt ""
@@ -12782,7 +12782,7 @@ msgctxt ""
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
-msgstr "የ macro መቅረጫ ገደብ"
+msgstr "የ ማክሮስ መቅረጫ ገደብ"
#: macro_recording.xhp
msgctxt ""
@@ -12822,7 +12822,7 @@ msgctxt ""
"par_id8014465\n"
"help.text"
msgid "Actions that are not related to the document contents are not recorded. For example, changes made in the Options dialog, macro organizer, customizing."
-msgstr "ከ ሰነዱ ይዞታዎች ጋር ያልተዛመዱ ተግባሮች አይቀረጹም: ለምሳሌ: በ ምርጫ ንግግር የ ተፈጸሙ ለውጦች: የ macro አደራጅ: እና ማስተካከያ"
+msgstr "ከ ሰነዱ ይዞታዎች ጋር ያልተዛመዱ ተግባሮች አይቀረጹም: ለምሳሌ: በ ምርጫ ንግግር የ ተፈጸሙ ለውጦች: የ ማክሮስ አደራጅ: እና ማስተካከያ"
#: macro_recording.xhp
msgctxt ""
@@ -12838,7 +12838,7 @@ msgctxt ""
"par_id2522354\n"
"help.text"
msgid "The macro recorder works only in Calc and Writer."
-msgstr "የ macro መቅረጫ የሚሰራው በ ሰንጠረዥ እና በ መጻፊያ ሰነድ ውስጥ ብቻ ነው"
+msgstr "የ ማክሮስ መቅረጫ የሚሰራው በ ሰንጠረዥ እና በ መጻፊያ ሰነድ ውስጥ ብቻ ነው"
#: macro_recording.xhp
msgctxt ""
@@ -12846,7 +12846,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">ማክሮስ</link>"
#: macro_recording.xhp
msgctxt ""
@@ -13166,7 +13166,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Gallery Objects\">Gallery Objects</link><br/>Shapes are on the <emph>Drawing</emph> toolbar (menu <item type=\"menuitem\">View - Toolbars - Drawing</item>)"
-msgstr "<link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Gallery Objects\">የ እቃዎች አዳራሽ </link><br/>ቅርጾች በ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ (ዝርዝር <item type=\"menuitem\">መመልከቻ - እቃ መደርደሪያ - መሳያ </item>)"
+msgstr "<link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Gallery Objects\">የ እቃዎች አዳራሽ </link><br/> ቅርጾች በ <emph> መሳያ </emph> እቃ መደርደሪያ ላይ (ዝርዝር <item type=\"menuitem\"> መመልከቻ - እቃ መደርደሪያ - መሳያ </item>)"
#: microsoft_terms.xhp
msgctxt ""
@@ -13510,7 +13510,7 @@ msgctxt ""
"par_id0815200803314268\n"
"help.text"
msgid "In the context menu, choose <emph>Open with - Choose another app</emph>."
-msgstr "ከ አገባብ ዝርዝር ውስጥ: ይምረጡ <emph>መክፈቻ በ - ይምረጡ ሌላ መተግበሪያ</emph>."
+msgstr "ከ አገባብ ዝርዝር ውስጥ: ይምረጡ <emph> መክፈቻ በ - ይምረጡ ሌላ መተግበሪያ </emph>"
#: ms_doctypes.xhp
msgctxt ""
@@ -13566,7 +13566,7 @@ msgctxt ""
"par_id0804200804174819\n"
"help.text"
msgid "The most recent versions of %PRODUCTNAME can load and save the Microsoft Office Open XML document formats with the extensions docx, xlsx, and pptx. The same versions can also run some Excel Visual Basic scripts, if you enable this feature at <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Load/Save - VBA Properties</item>."
-msgstr "በጣም የ ቅርብ ጊዜ እትም %PRODUCTNAME መጫን እና ማስቀመጥ ይችላል የ Microsoft Office Open XML ሰነድ አቀራረብ ከ ተጨማሪዎች ጋር ከ docx, xlsx, እና pptx. ተመሳሳይ እትም ማስኬድ ይችላል አንዳንድ የ Excel Visual Basic scripts, እርስዎ ይህን ገጽታ ካስቻሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች – ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - መጫኛ/ማስቀመጫ - VBA ባህሪዎች</item>."
+msgstr "በጣም የ ቅርብ ጊዜ እትም %PRODUCTNAME መጫን እና ማስቀመጥ ይቻላል የ Microsoft Office Open XML ሰነድ አቀራረብ ከ ተጨማሪዎች ጋር ከ docx, xlsx, እና pptx. ተመሳሳይ እትም ማስኬድ ይችላል አንዳንድ የ Excel Visual Basic scripts, እርስዎ ይህን ገጽታ ካስቻሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች – ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - መጫኛ/ማስቀመጫ - VBA ባህሪዎች </item>"
#: ms_import_export_limitations.xhp
msgctxt ""
@@ -13798,7 +13798,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "For a detailed overview about converting documents to and from Microsoft Office format, see the <link href=\"http://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\">Migration Guide</link>."
-msgstr "ስለ የ Microsoft Office ሰነዶችን መቀየሪያ ዝርዝር መግለጫ ለማግኘት ይህን ይመልከቱ <link href=\"http://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\">የ መሸጋገሪያ መምሪያ </link>."
+msgstr "ስለ የ Microsoft Office ሰነዶችን መቀየሪያ ዝርዝር መግለጫ ለማግኘት ይህን ይመልከቱ <link href=\"http://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\"> የ መሸጋገሪያ መምሪያ </link>"
#: ms_import_export_limitations.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"bm_id3150789\n"
"help.text"
msgid "<bookmark_value>Office;Microsoft Office and $[officename]</bookmark_value><bookmark_value>Microsoft Office;new users information</bookmark_value><bookmark_value>opening;Microsoft Office files</bookmark_value><bookmark_value>saving;in Microsoft Office file format</bookmark_value><bookmark_value>macros; in MS Office documents</bookmark_value>"
-msgstr "<bookmark_value>ቢሮ: Microsoft Office እና $[officename]</bookmark_value><bookmark_value>Microsoft Office: አዲስ የ ተጠቃሚዎች መረጃ </bookmark_value><bookmark_value> መክፈቻ: Microsoft Office ፋይሎች </bookmark_value><bookmark_value> ማስቀመጫ: በ Microsoft Office ፋይል አቀራረብ </bookmark_value><bookmark_value>macros: በ MS Office ሰነዶች ውስጥ </bookmark_value>"
+msgstr "<bookmark_value>ቢሮ: Microsoft Office እና $[officename]</bookmark_value><bookmark_value>Microsoft Office: አዲስ የ ተጠቃሚዎች መረጃ </bookmark_value><bookmark_value> መክፈቻ: Microsoft Office ፋይሎች </bookmark_value><bookmark_value> ማስቀመጫ: በ Microsoft Office ፋይል አቀራረብ </bookmark_value><bookmark_value>ማክሮስ: በ MS Office ሰነዶች ውስጥ </bookmark_value>"
#: ms_user.xhp
msgctxt ""
@@ -13990,7 +13990,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "Choose <emph>File - Open</emph>. Select a Microsoft Office file in the $[officename] file open dialog."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph> ይምረጡ የ Microsoft Office ፋይል በ $[officename] ፋይል መክፈቻ ንግግር ውስጥ"
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph> ይምረጡ የ Microsoft Office ፋይል በ $[officename] ፋይል መክፈቻ ንግግር ውስጥ"
#: ms_user.xhp
msgctxt ""
@@ -14070,7 +14070,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Choose <emph>File - Save As</emph>."
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ እንደ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ እንደ </emph>"
#: ms_user.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3153379\n"
"help.text"
msgid "In the <emph>File type</emph> box, select a Microsoft Office file format."
-msgstr "ከ <emph>ፋይል አይነት</emph> ሳጥን ውስጥ: ይምረጡ የ Microsoft Office ፋይል አቀራረብ"
+msgstr "ከ <emph> ፋይል አይነት </emph> ሳጥን ውስጥ: ይምረጡ የ Microsoft Office ፋይል አቀራረብ"
#: ms_user.xhp
msgctxt ""
@@ -14102,7 +14102,7 @@ msgctxt ""
"par_id3148453\n"
"help.text"
msgid "In the <emph>Default file format and ODF settings</emph> area, first select a document type, then select the file type for saving."
-msgstr "በ <emph>ነባር የ ፋይል አቀራረብ እና የ ODF ማሰናጃዎች</emph> ቦታ: መጀመሪያ ይምረጡ የ ሰነድ አይእት: እና ከዛ ይምረጡ የ ፋይል አይነት ለ ማስቀመጥ"
+msgstr "በ <emph> ነባር የ ፋይል አቀራረብ እና የ ODF ማሰናጃዎች </emph> ቦታ: መጀመሪያ ይምረጡ የ ሰነድ አይእት: እና ከዛ ይምረጡ የ ፋይል አይነት ለ ማስቀመጥ"
#: ms_user.xhp
msgctxt ""
@@ -14142,7 +14142,7 @@ msgctxt ""
"par_id3150486\n"
"help.text"
msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>File - Wizards - Document Converter</emph></link> to start the wizard."
-msgstr "ይምረጡ <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>ፋይል - አዋቂ - ሰነድ መቀየሪያ</emph></link>አዋቂውን ለ ማስጀመር"
+msgstr "ይምረጡ <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph> ፋይል - አዋቂ - ሰነድ መቀየሪያ </emph></link> አዋቂውን ለ ማስጀመር"
#: ms_user.xhp
msgctxt ""
@@ -14150,7 +14150,7 @@ msgctxt ""
"hd_id3154319\n"
"help.text"
msgid "Macros in Microsoft Office and $[officename]"
-msgstr "Macros in Microsoft Office and $[officename]"
+msgstr "ማክሮስ በ Microsoft Office እና $[officename]"
#: ms_user.xhp
msgctxt ""
@@ -14158,7 +14158,7 @@ msgctxt ""
"par_id3154921\n"
"help.text"
msgid "With a few exceptions, Microsoft Office and $[officename] cannot run the same macro code. Microsoft Office uses VBA (Visual Basic for Applications) code, and $[officename] uses Basic code based on the $[officename] API (Application Program Interface) environment. Although the programming language is the same, the objects and methods are different."
-msgstr "ጥቂት ከ ተለዩ በስተቀር የ Microsoft Office እና $[officename] ተመሳሳይ የ macro code አያስኬዱም: የ Microsoft Office የሚጠቀመው VBA (Visual Basic for Applications) code ነው: እና የ $[officename] የሚጠቀመው Basic code ነው መሰረት ያደረገ የ $[officename] API (Application Program Interface) አካባቢ: ምንም የ ፕሮግራሙ ቋንቋ ተመሳሳይ ቢሆንም: እቃዎች እና ዘዴዎች የ ተለያዩ ናቸው"
+msgstr "ጥቂት ከ ተለዩ በስተቀር የ Microsoft Office እና $[officename] ተመሳሳይ የ ማክሮስ ኮድ አያስኬዱም: የ Microsoft Office የሚጠቀመው VBA (Visual Basic for Applications) ኮድ ነው: እና የ $[officename] የሚጠቀመው Basic code ነው መሰረት ያደረገ የ $[officename] API (Application Program Interface) አካባቢ: ምንም የ ፕሮግራሙ ቋንቋ ተመሳሳይ ቢሆንም: እቃዎች እና ዘዴዎች የ ተለያዩ ናቸው"
#: ms_user.xhp
msgctxt ""
@@ -14166,7 +14166,7 @@ msgctxt ""
"par_id0804200804173539\n"
"help.text"
msgid "The most recent versions of %PRODUCTNAME can run some Excel Visual Basic scripts if you enable this feature at <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Load/Save - VBA Properties</item>."
-msgstr "በጣም የ ቅርብ ጊዜ እትም %PRODUCTNAME ማስኬድ ይችላል የ Excel Visual Basic scripts እርስዎ ይህን ገጽታ ካስቻሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - መጫኛ/ማስቀመጫ - VBA ባህሪዎች</item>."
+msgstr "በጣም የ ቅርብ ጊዜ እትም %PRODUCTNAME ማስኬድ ይችላል የ Excel Visual Basic scripts እርስዎ ይህን ገጽታ ካስቻሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - መጫኛ/ማስቀመጫ - VBA ባህሪዎች </item>"
#: ms_user.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"par_id3152577\n"
"help.text"
msgid "If you use macros in one of the applications and want to use the same functionality in the other application, you must edit the macros. $[officename] can load the macros that are contained within Microsoft Office files and you can then view and edit the macro code in the $[officename] <link href=\"text/shared/main0600.xhp\" name=\"Basic IDE\">Basic IDE</link> editor."
-msgstr "እርስዎ የሚጠቀሙ ከሆነ macros በ አንዱ መተግበሪያ ውስጥ እና እርስዎ ተመሳሳይ ተግባር በ ሌላ መተግበሪያ ውስጥ መስራት ከፈለጉ: እርስዎ macros ማረም አለብዎት $[officename] መጫን ይችላል macros በ Microsoft Office ፋይሎች ውስጥ የተያዙ: እና እርስዎ መመልከት እና ማረም ይችላሉ የ macro ኮድ በ $[officename] <link href=\"text/shared/main0600.xhp\" name=\"Basic IDE\">Basic IDE</link> አራሚ ውስጥ"
+msgstr "እርስዎ የሚጠቀሙ ከሆነ ማክሮስ በ አንዱ መተግበሪያ ውስጥ እና እርስዎ ተመሳሳይ ተግባር በ ሌላ መተግበሪያ ውስጥ መስራት ከፈለጉ: እርስዎ ማክሮስ ማረም አለብዎት $[officename] መጫን ይችላል ማክሮስ በ Microsoft Office ፋይሎች ውስጥ የተያዙ: እና እርስዎ መመልከት እና ማረም ይችላሉ የ ማክሮስ ኮድ በ $[officename] <link href=\"text/shared/main0600.xhp\" name=\"Basic IDE\">Basic IDE</link> አራሚ ውስጥ"
#: ms_user.xhp
msgctxt ""
@@ -14182,7 +14182,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "You can choose to preserve or delete VBA macros"
-msgstr "እርስዎ ይምረጡ የ VBA macros ለማስቀመጥ ወይንም ለማጥፋት"
+msgstr "እርስዎ ይምረጡ የ VBA ማክሮስ ለማስቀመጥ ወይንም ለ ማጥፋት"
#: ms_user.xhp
msgctxt ""
@@ -14190,7 +14190,7 @@ msgctxt ""
"par_id3153144\n"
"help.text"
msgid "Open a Microsoft Office document that contains VBA macro code. Change only the normal contents (text, cells, graphics), and do not edit the macros. Save the document as a Microsoft Office file type. Open the file in Microsoft Office, and the VBA macros will run as before."
-msgstr "መክፈቻ የ Microsoft Office ሰነድ የ VBA macro code የያዘ: መደበኛ ይዞታዎችን ብቻ ይቀይራል (ጽሁፍ: ክፍሎች: ንድፎች) እና macros አያርሙ: ሰነዱን ያስቀምጡ እንደ የ Microsoft Office ፋይል አይነት: መክፈቻ ፋይል በ Microsoft Office: እና የ VBA macros እንደ በፊቱ ይሄዳል"
+msgstr "መክፈቻ የ Microsoft Office ሰነድ የ VBA macro code የያዘ: መደበኛ ይዞታዎችን ብቻ ይቀይራል (ጽሁፍ: ክፍሎች: ንድፎች) እና ማክሮስ አያርሙ: ሰነዱን ያስቀምጡ እንደ የ Microsoft Office ፋይል አይነት: መክፈቻ ፋይል በ Microsoft Office: እና የ VBA ማክሮስ እንደ በፊቱ ይሄዳል"
#: ms_user.xhp
msgctxt ""
@@ -14198,7 +14198,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "You may delete the VBA macros from the Microsoft Office file on loading or on saving."
-msgstr "እርስዎ ማጥፋት ይችላሉ የ VBA macros ከ Microsoft Office ፋይል ውስጥ በሚጫን ወይንም በሚቀመጥ ጊዜ"
+msgstr "እርስዎ ማጥፋት ይችላሉ የ VBA ማክሮስ ከ Microsoft Office ፋይል ውስጥ በሚጫን ወይንም በሚቀመጥ ጊዜ"
#: ms_user.xhp
msgctxt ""
@@ -14206,7 +14206,7 @@ msgctxt ""
"par_id3155366\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\"><emph>Load/Save - VBA Properties</emph></link> to set the VBA macro handling of $[officename]."
-msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\"><emph> መጫኛ/ማስቀመጫ - VBA Properties</emph></link> ለማሰናዳት የ VBA macro handling of $[officename]."
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\"><emph> መጫኛ/ማስቀመጫ - VBA Properties</emph></link> ለማሰናዳት የ VBA ማክሮስ አያያዝ በ $[officename]."
#: navigator.xhp
msgctxt ""
@@ -14430,7 +14430,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>Numbering Off</emph> icon in the <emph>Bullets and Numbering</emph> bar."
-msgstr "ለ አሁኑ አንቀጽ ወይንም ለ ተመረጡት አንቀጾች እርስዎ ማጥፋት ይችላሉ ራሱ በራሱ ቁጥር መስጫ ወይንም ዝርዝር: ይጫኑ በ <emph>ቁጥር መስጫ ማጥፊያ</emph> ምልክት ውስጥ: በ <emph>ነጥቦች እና ቁጥር መስጫ</emph> መደደሪያ ላይ"
+msgstr "ለ አሁኑ አንቀጽ ወይንም ለ ተመረጡት አንቀጾች እርስዎ ማጥፋት ይችላሉ ራሱ በራሱ ቁጥር መስጫ ወይንም ዝርዝር: ይጫኑ በ <emph> ቁጥር መስጫ ማጥፊያ </emph> ምልክት ውስጥ: በ <emph> ነጥቦች እና ቁጥር መስጫ </emph> መደደሪያ ላይ"
#: numbering_stop.xhp
msgctxt ""
@@ -14446,7 +14446,7 @@ msgctxt ""
"par_id3144511\n"
"help.text"
msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Bullets On/Off </emph>icon on the <emph>Text Formatting</emph> bar."
-msgstr "መጠቆሚያው ቁጥር በ ተሰጣቸው ወይንም ነጥብ በ ተሰጣቸው ዝርዝር ውስጥ ከሆነ: እርስዎ ማጥፋት ይችላሉ ራሱ በራሱ ቁጥር ወይንም ነጥብ መስጫ ከ አሁኑ አንቀጽ ወይንም ከ ተመረጡት አንቀጾች ውስጥ በ መጫን የ <emph>ነጥቦች ማብሪያ/ማጥፊያ </emph>ምልክት በ <emph>ጽሁፍ አቀራረብ</emph> መደርደሪያ ላይ"
+msgstr "መጠቆሚያው ቁጥር በ ተሰጣቸው ወይንም ነጥብ በ ተሰጣቸው ዝርዝር ውስጥ ከሆነ: እርስዎ ማጥፋት ይችላሉ ራሱ በራሱ ቁጥር ወይንም ነጥብ መስጫ ከ አሁኑ አንቀጽ ወይንም ከ ተመረጡት አንቀጾች ውስጥ በ መጫን የ <emph> ነጥቦች ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> ጽሁፍ አቀራረብ </emph> መደርደሪያ ላይ"
#: numbering_stop.xhp
msgctxt ""
@@ -14742,7 +14742,7 @@ msgctxt ""
"par_idN106BE\n"
"help.text"
msgid "Copies the frame attributes that are defined in <item type=\"menuitem\">Format - Frame and Object - Properties</item> dialog. The contents, size, position, linking, hyperlinks, and macros in the frame are not copied."
-msgstr "የ ተገለጹ የ ክፈፍ መለያዎች ኮፒ ማድረጊያ በ <item type=\"menuitem\"> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች </item> ንግግር ውስጥ: የ ይዞታዎች መጠን: ቦታዎች: አገናኞች: hyperlinks: እና macros በ ክፈፍ ውስጥ ኮፒ አይደረጉም"
+msgstr "የ ተገለጹ የ ክፈፍ መለያዎች ኮፒ ማድረጊያ በ <item type=\"menuitem\"> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች </item> ንግግር ውስጥ: የ ይዞታዎች መጠን: ቦታዎች: አገናኞች: hyperlinks: እና ማክሮስ በ ክፈፍ ውስጥ ኮፒ አይደረጉም"
#: paintbrush.xhp
msgctxt ""
@@ -14758,7 +14758,7 @@ msgctxt ""
"par_idN106CB\n"
"help.text"
msgid "Copies the object formatting that is defined in the <item type=\"menuitem\">Format - Graphics</item> or <item type=\"menuitem\">Format - Drawing Object</item> dialogs. The contents, size, position, hyperlinks, and macros in the object are not copied."
-msgstr "የ እቃ አቀራረብ ኮፒ ማድረጊያ የ ተገለጸውን በ <item type=\"menuitem\">አቀራረብ - ንድፍ</item> ወይንም <item type=\"menuitem\">አቀራረብ - እቃ መሳያ </item> ንግግር: ይዞታዎቹ: መጠን: ቦታ በ hyperlinks, እና macros በ እቃው ውስጥ ኮፒ አይደረግም"
+msgstr "የ እቃ አቀራረብ ኮፒ ማድረጊያ የ ተገለጸውን በ <item type=\"menuitem\">አቀራረብ - ንድፍ</item> ወይንም <item type=\"menuitem\">አቀራረብ - እቃ መሳያ </item> ንግግር: ይዞታዎቹ: መጠን: ቦታ በ hyperlinks, እና ማክሮስ በ እቃው ውስጥ ኮፒ አይደረግም"
#: paintbrush.xhp
msgctxt ""
@@ -14934,7 +14934,7 @@ msgctxt ""
"par_idN10769\n"
"help.text"
msgid "Choose <emph>Edit - Paste special</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph>"
#: pasting.xhp
msgctxt ""
@@ -14974,7 +14974,7 @@ msgctxt ""
"par_idN1078C\n"
"help.text"
msgid "The other options are explained in the help, when you call the <link href=\"text/shared/01/02070000.xhp\">Paste Special</link> dialog from within %PRODUCTNAME Calc."
-msgstr "ሌሎች ምርጫዎች በ እርዳታ ውስጥ ተገልጸዋል: እርስዎ በሚጠሩ ጊዜ <link href=\"text/shared/01/02070000.xhp\">የ ተለየ መለጠፊያ</link> ንግግር ከ %PRODUCTNAME ሰንጠረዥ ውስጥ"
+msgstr "ሌሎች ምርጫዎች በ እርዳታ ውስጥ ተገልጸዋል: እርስዎ በሚጠሩ ጊዜ <link href=\"text/shared/01/02070000.xhp\"> የ ተለየ መለጠፊያ </link> ንግግር ከ %PRODUCTNAME ሰንጠረዥ ውስጥ"
#: pasting.xhp
msgctxt ""
@@ -15102,7 +15102,7 @@ msgctxt ""
"par_id3149786\n"
"help.text"
msgid "<emph>Grayscale</emph> converts all colors to a maximum of 256 gradations from black to white. All text will be printed in black. A background set by <emph>Format - Page - Background</emph> will not be printed."
-msgstr "<emph>ግራጫማ</emph> ሁሉንም ቀለሞች ይቀይራል ወደ 256 ከፍታ ከ ጥቁር ወደ ነጭ: ሁሉም ጽሁፍ የሚታተመው በ ጥቁር ነው: መደብ ይሰናዳል በ <emph>አቀራረብ - ገጽ - መደብ</emph> አይታተምም"
+msgstr "<emph>ግራጫማ </emph> ሁሉንም ቀለሞች ይቀይራል ወደ 256 ከፍታ ከ ጥቁር ወደ ነጭ: ሁሉም ጽሁፍ የሚታተመው በ ጥቁር ነው: መደብ ይሰናዳል በ <emph> አቀራረብ - ገጽ - መደብ </emph> አይታተምም"
#: print_blackwhite.xhp
msgctxt ""
@@ -15110,7 +15110,7 @@ msgctxt ""
"par_id3145610\n"
"help.text"
msgid "<emph>Black & white</emph> converts all colors into the two values black and white. All borders around objects are printed black. All text will be printed in black. A background set by <emph>Format - Page - Background</emph> will not be printed."
-msgstr "<emph>ጥቁር & ነጭ</emph> ሁሉንም ቀለሞች ወደ ሁለት ዋጋዎች ይቀይራል ወደ ጥቁር እና ነጭ: ሁሉም ድንበሮች በ እቃዎች ዙሪያ የሚታተሙት በ ጥቁር ነው: ሁሉም ጽሁፍ የሚታተመው በ ጥቁር ነው: መደብ ይሰናዳል በ <emph>አቀራረብ - ገጽ - መደብ</emph> አይታተምም"
+msgstr "<emph>ጥቁር & ነጭ </emph> ሁሉንም ቀለሞች ወደ ሁለት ዋጋዎች ይቀይራል ወደ ጥቁር እና ነጭ: ሁሉም ድንበሮች በ እቃዎች ዙሪያ የሚታተሙት በ ጥቁር ነው: ሁሉም ጽሁፍ የሚታተመው በ ጥቁር ነው: መደብ ይሰናዳል በ <emph> አቀራረብ - ገጽ - መደብ </emph> አይታተምም"
#: print_blackwhite.xhp
msgctxt ""
@@ -15190,7 +15190,7 @@ msgctxt ""
"par_id3149667\n"
"help.text"
msgid "Choose <emph>Print text in black</emph> and click <emph>Print</emph>."
-msgstr "ይምረጡ <emph>ጽሁፍ በ ጥቁር ማተሚያ</emph> እና ይጫኑ <emph> ማተሚያ </emph>."
+msgstr "ይምረጡ <emph> ጽሁፍ በ ጥቁር ማተሚያ </emph> እና ይጫኑ <emph> ማተሚያ </emph>"
#: print_blackwhite.xhp
msgctxt ""
@@ -15430,7 +15430,7 @@ msgctxt ""
"par_id3153104\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Protect Changes</emph>. Enter and confirm a password of at least one character."
-msgstr "ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች መጠበቂያ</emph> የ መግቢያ ቃል ያስገቡ እና ያረጋግጡ ቢያንስ አንድ ባህሪ መሆን አለበት"
+msgstr "ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች መጠበቂያ </emph> የ መግቢያ ቃል ያስገቡ እና ያረጋግጡ ቢያንስ አንድ ባህሪ መሆን አለበት"
#: protection.xhp
msgctxt ""
@@ -15446,7 +15446,7 @@ msgctxt ""
"par_id3152920\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Protect Changes</emph>. Enter the correct password."
-msgstr "ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች መጠበቂያ</emph> ትክክለኛ የ መግቢያ ቃል ያስገቡ"
+msgstr "ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች መጠበቂያ </emph> ትክክለኛ የ መግቢያ ቃል ያስገቡ"
#: protection.xhp
msgctxt ""
@@ -15694,7 +15694,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "Open the document and choose <emph>Edit - Track Changes - Manage Changes</emph>. The <emph>Manage Changes</emph> dialog appears."
-msgstr "ሰነድ መክፈቻ እና ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ </emph> የ <emph>ለውጦች ማስተዳደሪያ</emph> ንግግር ይታያል"
+msgstr "ሰነድ መክፈቻ እና ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች ማስተዳደሪያ </emph> የ <emph> ለውጦች ማስተዳደሪያ </emph> ንግግር ይታያል"
#: redlining_accept.xhp
msgctxt ""
@@ -15878,7 +15878,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Merge Document</emph>. A file selection dialog appears."
-msgstr "ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ሰነድ ማዋሀጃ</emph> የ ፋይል ምርጫ ንግግር ይታያል"
+msgstr "ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ሰነድ ማዋሀጃ </emph> የ ፋይል ምርጫ ንግግር ይታያል"
#: redlining_docmerge.xhp
msgctxt ""
@@ -16006,7 +16006,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Track Changes - Comment on Change</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link> dialog."
-msgstr "እርስዎ አስተያየት ማስገባት ይችላሉ በ ተመዘገቡ ለውጦች ውስጥ መጠቆሚያውን በ ለውጡ ቦታ ላይ ያድርጉ እና ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - አስተያየት በ ለውጦች ላይ</emph> በ ተጨማሪ ጠቃሚ ምክር ለማስፋት: አስተያየት ይታያል በ ዝርዝር ውስጥ በ <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>ለውጦች አስተዳዳሪ</emph></link> ንግግር ውስጥ:"
+msgstr "እርስዎ አስተያየት ማስገባት ይችላሉ በ ተመዘገቡ ለውጦች ውስጥ መጠቆሚያውን በ ለውጡ ቦታ ላይ ያድርጉ እና ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - አስተያየት በ ለውጦች ላይ </emph> በ ተጨማሪ ጠቃሚ ምክር ለማስፋት: አስተያየት ይታያል በ ዝርዝር ውስጥ በ <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph> ለውጦች አስተዳዳሪ </emph></link> ንግግር ውስጥ:"
#: redlining_enter.xhp
msgctxt ""
@@ -16134,7 +16134,7 @@ msgctxt ""
"par_id3154751\n"
"help.text"
msgid "To protect the changes made in a document during editing, choose <emph>Edit - Track Changes - Protect Changes</emph>. To turn off the function or to accept or reject changes it is necessary to enter the correct password first."
-msgstr "ለ መጠበቅ የ ተፈጸሙ ለውጦችን በ ሰነድ ውስጥ በሚታረም ጊዜ: ይምረጡ <emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች መጠበቂያ</emph> ተግባሩን ለማጥፋት ወይንም ለመቀበል ወይንም ላለ መቀበል ለውጦችን በጣም አስፈላጊ ነው በ መጀመሪያ ትክክለኛውን የ መግቢያ ቃል ማስገባት"
+msgstr "ለ መጠበቅ የ ተፈጸሙ ለውጦችን በ ሰነድ ውስጥ በሚታረም ጊዜ: ይምረጡ <emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች መጠበቂያ </emph> ተግባሩን ለማጥፋት ወይንም ለመቀበል ወይንም ላለ መቀበል ለውጦችን በጣም አስፈላጊ ነው በ መጀመሪያ ትክክለኛውን የ መግቢያ ቃል ማስገባት"
#: redlining_protect.xhp
msgctxt ""
@@ -16262,7 +16262,7 @@ msgctxt ""
"bm_id5277565\n"
"help.text"
msgid "<bookmark_value>assigning scripts</bookmark_value> <bookmark_value>programming;scripting</bookmark_value> <bookmark_value>form controls;assigning macros</bookmark_value> <bookmark_value>pictures;assigning macros</bookmark_value> <bookmark_value>hyperlinks;assigning macros</bookmark_value> <bookmark_value>shortcut keys;assigning macros</bookmark_value> <bookmark_value>controls;assigning macros (Basic)</bookmark_value> <bookmark_value>menus;assigning macros</bookmark_value> <bookmark_value>events;assigning scripts</bookmark_value>"
-msgstr "<bookmark_value>መመደቢያ ጽሁፍ</bookmark_value> <bookmark_value>ፕሮግራም: ጽሁፍ</bookmark_value> <bookmark_value>ፎርም መቆጣጠሪያ: መመደቢያ macros</bookmark_value> <bookmark_value>ስእሎች: መመደቢያ macros</bookmark_value> <bookmark_value>hyperlinks: መመደቢያ macros</bookmark_value> <bookmark_value>አቋራጭ ቁልፎች: መመደቢያ macros</bookmark_value> <bookmark_value>መቆጣጠሪያ: መመደቢያ macros (Basic)</bookmark_value> <bookmark_value>ዝርዝር: መመደቢያ macros</bookmark_value> <bookmark_value>ሁኔታዎች: መመደቢያ ጽሁፍ</bookmark_value>"
+msgstr "<bookmark_value>መመደቢያ ጽሁፍ</bookmark_value> <bookmark_value>ፕሮግራም: ጽሁፍ</bookmark_value> <bookmark_value>ፎርም መቆጣጠሪያ: መመደቢያ ማክሮስ</bookmark_value> <bookmark_value>ስእሎች: መመደቢያ ማክሮስ</bookmark_value> <bookmark_value>hyperlinks: መመደቢያ ማክሮስ</bookmark_value> <bookmark_value>አቋራጭ ቁልፎች: መመደቢያ ማክሮስ</bookmark_value> <bookmark_value>መቆጣጠሪያ: መመደቢያ ማክሮስ (Basic)</bookmark_value> <bookmark_value>ዝርዝር: መመደቢያ ማክሮስ</bookmark_value> <bookmark_value>ሁኔታዎች: መመደቢያ ጽሁፍ</bookmark_value>"
#: scripting.xhp
msgctxt ""
@@ -16278,7 +16278,7 @@ msgctxt ""
"par_idN10728\n"
"help.text"
msgid "You can assign custom scripts (macros) to menu items, icons, dialog controls, and events in %PRODUCTNAME."
-msgstr "እርስዎ መመደብ ይችላሉ ጽሁፍ ማስተካከያ (macros) ለ ዝርዝር እቃዎች: ምልክቶች: ንግግር መቆጣጠሪያዎች: እና ሁኔታዎች በ %PRODUCTNAME."
+msgstr "እርስዎ መመደብ ይችላሉ ጽሁፍ ማስተካከያ (ማክሮስ) ለ ዝርዝር እቃዎች: ምልክቶች: ንግግር መቆጣጠሪያዎች: እና ሁኔታዎች በ %PRODUCTNAME."
#: scripting.xhp
msgctxt ""
@@ -16358,7 +16358,7 @@ msgctxt ""
"par_idN10760\n"
"help.text"
msgid "In the <emph>Category</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
-msgstr "በ <emph>ምድብ</emph> ዝርዝር ሳጥን ውስጥ ወደ ታች ይሸብልሉ እና ይክፈቱ የ \"%PRODUCTNAME Macros\" ማስገቢያ"
+msgstr "በ <emph> ምድብ </emph> ዝርዝር ሳጥን ውስጥ ወደ ታች ይሸብልሉ እና ይክፈቱ የ \"%PRODUCTNAME ማክሮስ\" ማስገቢያ"
#: scripting.xhp
msgctxt ""
@@ -16366,7 +16366,7 @@ msgctxt ""
"par_idN10768\n"
"help.text"
msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
-msgstr "ለ እርስዎ ማስገቢያ ይታያል ለ \"%PRODUCTNAME Macros\" (scripts እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ %PRODUCTNAME መግጠሚያ), \"My Macros\" (scripts እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ) እና በ አሁኑ ሰነድ ውስጥ: ይክፈቱ ማንኛውንም ለ መመልከት የ ተደገፈውን scripting ቋንቋዎች"
+msgstr "ለ እርስዎ ማስገቢያ ይታያል ለ \"%PRODUCTNAME Macros\" (ጽሁፍ እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ %PRODUCTNAME መግጠሚያ): \"የ እኔ ማክሮስ\" (ጽሁፍ እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ) እና በ አሁኑ ሰነድ ውስጥ: ይክፈቱ ማንኛውንም ለ መመልከት የ ተደገፈውን የ ጽሁፍ ቋንቋዎች"
#: scripting.xhp
msgctxt ""
@@ -16374,7 +16374,7 @@ msgctxt ""
"par_idN1076C\n"
"help.text"
msgid "Open any scripting language entry to see the available scripts. Select a script."
-msgstr "ይክፈቱ ማንኛውም የ scripting ቋንቋ ለማየት ዝግጁ scripts: ይምረጡ script."
+msgstr "ይክፈቱ ማንኛውም የ ጽሁፍ ቋንቋ ማስገቢያ ዝግጁ የሆነ ጽሁፍ ለ መመልከት: ይምረጡ ጽሁፍ"
#: scripting.xhp
msgctxt ""
@@ -16406,7 +16406,7 @@ msgctxt ""
"par_idN10787\n"
"help.text"
msgid "Choose <emph>Tools - Customize - Keyboard</emph>."
-msgstr "ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - የ ፊደል ገበታ </emph>."
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - የ ፊደል ገበታ </emph>"
#: scripting.xhp
msgctxt ""
@@ -16414,7 +16414,7 @@ msgctxt ""
"par_idN10A59\n"
"help.text"
msgid "In the <emph>Category</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
-msgstr "በ <emph>ምድብ</emph> ዝርዝር ሳጥን ውስጥ ወደ ታች ይሸብልሉ እና ይክፈቱ የ \"%PRODUCTNAME Macros\" ማስገቢያ"
+msgstr "በ <emph> ምድብ </emph> ዝርዝር ሳጥን ውስጥ ወደ ታች ይሸብልሉ እና ይክፈቱ የ \"%PRODUCTNAME ማክሮስ\" ማስገቢያ"
#: scripting.xhp
msgctxt ""
@@ -16422,7 +16422,7 @@ msgctxt ""
"par_idN10A61\n"
"help.text"
msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
-msgstr "ለ እርስዎ ማስገቢያ ይታያል ለ \"%PRODUCTNAME Macros\" (scripts እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ %PRODUCTNAME መግጠሚያ), \"My Macros\" (scripts እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ), እና በ አሁኑ ሰነድ ውስጥ: ይክፈቱ ማንኛውንም ለ መመልከት የ ተደገፈውን scripting ቋንቋዎች"
+msgstr "ለ እርስዎ ማስገቢያ ይታያል ለ \"%PRODUCTNAME ማክሮስ\" (ጽሁፍ እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ %PRODUCTNAME መግጠሚያ): \"የ እኔ ማክሮስ\" (ጽሁፍ እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ), እና በ አሁኑ ሰነድ ውስጥ: ይክፈቱ ማንኛውንም ለ መመልከት የ ተደገፈውን የ ጽሁፍ ቋንቋዎች"
#: scripting.xhp
msgctxt ""
@@ -16430,7 +16430,7 @@ msgctxt ""
"par_idN10A65\n"
"help.text"
msgid "Open any scripting language entry to see the available scripts. Select any script."
-msgstr "ይክፈቱ ማንኛውም የ scripting ቋንቋ ለማየት ዝግጁ scripts: ይምረጡ script."
+msgstr "ይክፈቱ ማንኛውም የ ጽሁፍ ቋንቋ ማስገቢያ ዝግጁ የሆነ ጽሁፍ ለ መመልከት: ይምረጡ ጽሁፍ"
#: scripting.xhp
msgctxt ""
@@ -16462,7 +16462,7 @@ msgctxt ""
"par_idN10A78\n"
"help.text"
msgid "Select a key combination from the <emph>Shortcut keys</emph> list box and click <emph>Modify</emph>."
-msgstr "ይምረጡ የ ቁልፍ ጥምረቶች ለ <emph>አቋራጭ ቁልፎች</emph> ዝርዝር ሳጥን ውስጥ: ይጫኑ <emph>ማሻሻያ</emph>."
+msgstr "ይምረጡ የ ቁልፍ ጥምረቶች ለ <emph> አቋራጭ ቁልፎች </emph> ዝርዝር ሳጥን ውስጥ: ይጫኑ <emph> ማሻሻያ </emph>"
#: scripting.xhp
msgctxt ""
@@ -16478,7 +16478,7 @@ msgctxt ""
"par_idN1078E\n"
"help.text"
msgid "Choose <emph>Tools - Customize - Events</emph>."
-msgstr "ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - ሁኔታዎች </emph>."
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - ሁኔታዎች </emph>"
#: scripting.xhp
msgctxt ""
@@ -16486,7 +16486,7 @@ msgctxt ""
"par_idN10A16\n"
"help.text"
msgid "Click <emph>Macro</emph> button."
-msgstr "ይጫኑ የ <emph>Macro</emph> ቁልፍ"
+msgstr "ይጫኑ የ <emph> ማክሮስ </emph> ቁልፍ"
#: scripting.xhp
msgctxt ""
@@ -16494,7 +16494,7 @@ msgctxt ""
"par_idN10A9E\n"
"help.text"
msgid "In the <emph>Library</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
-msgstr "በ <emph>መጻህፍት ቤት</emph> ዝርዝር ሳጥን ውስጥ: ወደ ታች ይሸብልሉ እና ይክፈቱ የ \"%PRODUCTNAME Macros\" ማስገቢያ"
+msgstr "በ <emph> መጻህፍት ቤት </emph> ዝርዝር ሳጥን ውስጥ: ወደ ታች ይሸብልሉ እና ይክፈቱ የ \"%PRODUCTNAME ማክሮስ\" ማስገቢያ"
#: scripting.xhp
msgctxt ""
@@ -16502,7 +16502,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
-msgstr "ለ እርስዎ ማስገቢያ ይታያል ለ \"%PRODUCTNAME Macros\" (scripts እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ %PRODUCTNAME መግጠሚያ), \"My Macros\" (scripts እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ), እና በ አሁኑ ሰነድ ውስጥ: ይክፈቱ ማንኛውንም ለ መመልከት የ ተደገፈውን scripting ቋንቋዎች"
+msgstr "ለ እርስዎ ማስገቢያ ይታያል ለ \"%PRODUCTNAME ማክሮስ\" (ጽሁፍ እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ %PRODUCTNAME መግጠሚያ): \"የ እኔ ማክሮስ\" (ጽሁፍ እርስዎ በሚካፈሉት ዳይሬክቶሪ ውስጥ): እና በ አሁኑ ሰነድ ውስጥ: ይክፈቱ ማንኛውንም ለ መመልከት የ ተደገፈውን የ ጽሁፍ ቋንቋዎች"
#: scripting.xhp
msgctxt ""
@@ -16510,7 +16510,7 @@ msgctxt ""
"par_idN10AAA\n"
"help.text"
msgid "Open any scripting language entry to see the available scripts. Select any script."
-msgstr "ይክፈቱ ማንኛውም የ scripting ቋንቋ ለማየት ዝግጁ scripts: ይምረጡ script."
+msgstr "ይክፈቱ ማንኛውም የ ጽሁፍ ቋንቋ ማስገቢያ ዝግጁ የሆነ ጽሁፍ ለ መመልከት: ይምረጡ ጽሁፍ"
#: scripting.xhp
msgctxt ""
@@ -16566,7 +16566,7 @@ msgctxt ""
"par_idN10ADB\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Macro</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - Macro</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ማክሮስ </emph> tab"
#: scripting.xhp
msgctxt ""
@@ -16574,7 +16574,7 @@ msgctxt ""
"par_idN10ADF\n"
"help.text"
msgid "In the <emph>Macros</emph> list box, open the %PRODUCTNAME Scripts entry."
-msgstr "በ <emph>Macros</emph> ዝርዝር ሳጥን ውስጥ: ይክፈቱ የ %PRODUCTNAME Scripts ማስገቢያ"
+msgstr "በ <emph> ማክሮስ </emph> ዝርዝር ሳጥን ውስጥ: ይክፈቱ የ %PRODUCTNAME ጽሁፍ ማስገቢያ"
#: scripting.xhp
msgctxt ""
@@ -16590,7 +16590,7 @@ msgctxt ""
"par_idN10AEB\n"
"help.text"
msgid "Open any scripting language entry to see the available scripts. Select any script."
-msgstr "ይክፈቱ ማንኛውም የ scripting ቋንቋ ለማየት ዝግጁ scripts: ይምረጡ script."
+msgstr "ይክፈቱ ማንኛውም የ ጽሁፍ ቋንቋ ማስገቢያ ዝግጁ የሆነ ጽሁፍ ለ መመልከት: ይምረጡ ጽሁፍ"
#: scripting.xhp
msgctxt ""
@@ -16598,7 +16598,7 @@ msgctxt ""
"par_idN10AEF\n"
"help.text"
msgid "A list of the script functions will appear in the <emph>Existing macros in</emph> list box. Select any function."
-msgstr "ዝርዝር የ ጽሁፍ ተግባሮች ይታያሉ በ <emph>ነበረው macros በ </emph> ዝርዝር ሳጥን ውስጥ: ይምረጡ ማንኛውንም ተግባር"
+msgstr "ዝርዝር የ ጽሁፍ ተግባሮች ይታያሉ በ <emph> ነበረው ማክሮስ በ </emph> ዝርዝር ሳጥን ውስጥ: ይምረጡ ማንኛውንም ተግባር"
#: scripting.xhp
msgctxt ""
@@ -16670,7 +16670,7 @@ msgctxt ""
"par_idN10B3B\n"
"help.text"
msgid "Choose <emph>Format - Image - Macro</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - Macro</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - ማክሮስ </emph>"
#: scripting.xhp
msgctxt ""
@@ -16742,7 +16742,7 @@ msgctxt ""
"par_idN10B7F\n"
"help.text"
msgid "Right-click the control, then choose <emph>Properties</emph>."
-msgstr "በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph>ባህሪዎች</emph>."
+msgstr "በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph> ባህሪዎች </emph>"
#: scripting.xhp
msgctxt ""
@@ -16830,7 +16830,7 @@ msgctxt ""
"hd_id3163802\n"
"help.text"
msgid "Replacing hyphens by dashes"
-msgstr "ጭረቶችን በ ዳሾች መቀየሪያ"
+msgstr "ጭረቶችን ወደ ዳሾች መቀየሪያ"
#: space_hyphen.xhp
msgctxt ""
@@ -16838,7 +16838,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "In order to enter dashes, you can find under <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> the <emph>Replace dashes</emph> option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">AutoCorrect Options</link>)."
-msgstr "ዳሽ ለማስገባት: እርስዎ ሊያገኙት ይችላሉ በ <emph>መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫ - ምርጫ</emph> በ <emph>ዳሾች መቀየሪያ</emph> ምርጫ: ይህ ምርጫ ይቀይራል አንድ ወይንም ሁለት ጭረቶች በ ተወሰነ ሁኔታ ውስጥ በ en-dash ወይንም የ em-dash (ይመልከቱ <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">በራሱ አራሚ ምርጫ</link>)."
+msgstr "ዳሽ ለማስገባት: እርስዎ ሊያገኙት ይችላሉ በ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫ - ምርጫ </emph> ከ <emph> ዳሾች መቀየሪያ </emph> ምርጫ: ይህ ምርጫ ይቀይራል አንድ ወይንም ሁለት ጭረቶች በ ተወሰነ ሁኔታ ውስጥ በ en-dash ወይንም የ em-dash (ይመልከቱ <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\"> በራሱ አራሚ ምርጫ </link>)"
#: space_hyphen.xhp
msgctxt ""
@@ -16846,7 +16846,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "For additional replacements see the replacements table under <emph>Tools - AutoCorrect - AutoCorrect Options</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>Replace</emph></link>. Here you can, among other things, replace a shortcut automatically by a dash, even in another font."
-msgstr "ለ ተጨማሪ መቀየሪያ ይህን ይመልከቱ መቀየሪያ ሰንጠረዥ በ <emph>መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫ</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>መቀየሪያ</emph></link> እዚህ እርስዎ ከ ሌሎች ነገር ጋር: ይቀይራል አቋራጭ ራሱ በራሱ በ ጭረት በሌላ ፊደል"
+msgstr "ለ ተጨማሪ መቀየሪያ ይህን ይመልከቱ መቀየሪያ ሰንጠረዥ በ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫ </emph><emph> - </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph> መቀየሪያ </emph></link> እዚህ እርስዎ ከ ሌሎች ነገር ጋር: ይቀይራል አቋራጭ ራሱ በራሱ በ ጭረት በሌላ ፊደል"
#: space_hyphen.xhp
msgctxt ""
@@ -16918,7 +16918,7 @@ msgctxt ""
"par_id3156284\n"
"help.text"
msgid "In the <emph>Print</emph> dialog or the <emph>Printer Settings</emph> dialog, select the printer from the <emph>printers</emph> list box and click <emph>Properties</emph>. The <emph>Properties</emph> dialog appears containing several tab pages. This is where you can make settings that are used according to the PPD file of the selected printer."
-msgstr "በ <emph>ማተሚያ</emph> ንግግር ወይንም በ <emph> ማተሚያ ማሰናጃ</emph> ንግግር ውስጥ: ይምረጡ ማተሚያ ከ <emph>ማተሚያ</emph> ዝርዝር ሳጥን ውስጥ እና ይጫኑ <emph>ባህሪዎች</emph> ከ <emph>ባህሪዎች</emph> ንግግር ውስጥ ይታያል በርካታ tab የያዙ ገጾች: እዚህ ነው እርስዎ የሚያሰናዱት የ ተጠቀሙበትን የ PPD ፋይል ለ ተመረጠው ማተሚያ"
+msgstr "በ <emph> ማተሚያ </emph> ንግግር ወይንም በ <emph> ማተሚያ ማሰናጃ </emph> ንግግር ውስጥ: ይምረጡ ማተሚያ ከ <emph> ማተሚያ </emph> ዝርዝር ሳጥን ውስጥ እና ይጫኑ <emph> ባህሪዎች </emph> ከ <emph> ባህሪዎች </emph> ንግግር ውስጥ ይታያል በርካታ tab የያዙ ገጾች: እዚህ ነው እርስዎ የሚያሰናዱት የ ተጠቀሙበትን የ PPD ፋይል ለ ተመረጠው ማተሚያ"
#: spadmin.xhp
msgctxt ""
@@ -16934,7 +16934,7 @@ msgctxt ""
"par_id3145649\n"
"help.text"
msgid "On the <emph>Device</emph> tab page, you can activate the special options for your printer. If your printer can only print in black and white, choose \"grayscale\" under <emph>Color</emph>, otherwise choose \"color\". If switching to grayscale leads to unfavorable results, you can also select \"color\" under <emph>Color</emph> and see how the printer or PostScript emulator applies it. Furthermore, on this tab page you can set the precision with which colors are described as well as the PostScript level."
-msgstr "በ <emph>አካል</emph> tab ገጽ ውስጥ: እርስዎ ማስጀመር ይችላሉ የ ተለዩ ሁኔታዎች ምርጫ ለ እርስዎ ማተሚያ: የ እርስዎ ማተሚያ የሚያትመው በ ጥቁር እና ነጭ ከሆነ: ይምረጡ \"ግራጫማ\" ከ <emph>ቀለም</emph> ውስጥ ያለ በለዚያ ይምረጡ \"ቀለም\": ወደ ግራጫማ ሲቀይሩ ጥሩ ውጤት ካላሳየ: እርስዎ መምረጥ ይችላሉ \"ቀለም\" ከ <emph>ቀለም</emph> ውስጥ እና መመልከት ይችላሉ ማተሚያው እንዴት ወይንም PostScript መሞከሪያ እንዴት እንደሚፈጸም: በ ተጨማሪ በዚህ tab ገጽ ውስጥ እርስዎ ማሰናዳት ይችላሉ በ ትክክል የትኛው ቀለም እንደ ተገለጸ እንዲሁም በ PostScript ደረጃ"
+msgstr "በ <emph> አካል </emph> tab ገጽ ውስጥ: እርስዎ ማስጀመር ይችላሉ የ ተለዩ ሁኔታዎች ምርጫ ለ እርስዎ ማተሚያ: የ እርስዎ ማተሚያ የሚያትመው በ ጥቁር እና ነጭ ከሆነ: ይምረጡ \"ግራጫማ\" ከ <emph> ቀለም </emph> ውስጥ ያለ በለዚያ ይምረጡ \"ቀለም\": ወደ ግራጫማ ሲቀይሩ ጥሩ ውጤት ካላሳየ: እርስዎ መምረጥ ይችላሉ \"ቀለም\" ከ <emph> ቀለም </emph> ውስጥ እና መመልከት ይችላሉ ማተሚያው እንዴት ወይንም PostScript መሞከሪያ እንዴት እንደሚፈጸም: በ ተጨማሪ በዚህ tab ገጽ ውስጥ እርስዎ ማሰናዳት ይችላሉ በ ትክክል የትኛው ቀለም እንደ ተገለጸ እንዲሁም በ PostScript ደረጃ"
#: spadmin.xhp
msgctxt ""
@@ -16950,7 +16950,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "To make the printer selected from the <emph>Installed printers</emph> list box the default printer, double-click its name or click the <emph>Default</emph> button."
-msgstr "ማተሚያው እንዲመረጥ ከ <emph>የ ተገጠሙ ማተሚያ</emph> ዝርዝር ሳጥን ውስጥ: ነባር ማተሚያ ሁለት ጊዜ-ይጫኑ ስሙ ላይ ወይንም ይጫኑ የ <emph>ነባር</emph> ቁልፍ"
+msgstr "ማተሚያው እንዲመረጥ ከ <emph> የ ተገጠሙ ማተሚያ </emph> ዝርዝር ሳጥን ውስጥ: ነባር ማተሚያ ሁለት ጊዜ-ይጫኑ ስሙ ላይ ወይንም ይጫኑ የ <emph> ነባር </emph> ቁልፍ"
#: spadmin.xhp
msgctxt ""
@@ -17054,7 +17054,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr "ሰነድ ያስቀምጡ በ መምረጥ <emph> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </emph> እና ሰነድ ያስቀምጡ በ <emph>የ እኔ ቴምፕሌቶች</emph> ምድብ ውስጥ"
+msgstr "ሰነድ ያስቀምጡ በ መምረጥ <emph> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </emph> እና ሰነድ ያስቀምጡ በ <emph> የ እኔ ቴምፕሌቶች </emph> ምድብ ውስጥ"
#: standard_template.xhp
msgctxt ""
@@ -17062,7 +17062,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ቴምፕሌቶች </emph>"
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ቴምፕሌቶች </emph>"
#: standard_template.xhp
msgctxt ""
@@ -17110,7 +17110,7 @@ msgctxt ""
"par_id3146918\n"
"help.text"
msgid "You can save a new template with <emph>File - Templates - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
-msgstr "እርስዎ አዲስ ቴምፕሌት ማስቀመጥ ይችላሉ በ <emph>ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት</emph> ወይንም በ መምረጥ \"ቴምፕሌት\" ፋይል አይነት በ ማንኛውም ማስቀመጫ ንግግር ውስጥ: ቴምፕሌት ያስቀምጡ በ ተጠቃሚ ዳይሬክቶሪ ውስጥ በ ተወሰነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - መንገድ</emph> ቴምፕሌቱ ጋር ለ መድረስ በ ቀላሉ ከ <emph>ፋይል - አዲስ - ቴምፕሌት</emph> ንግግር ውስጥ"
+msgstr "እርስዎ አዲስ ቴምፕሌት ማስቀመጥ ይችላሉ በ <emph> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </emph> ወይንም በ መምረጥ \"ቴምፕሌት\" ፋይል አይነት በ ማንኛውም ማስቀመጫ ንግግር ውስጥ: ቴምፕሌት ያስቀምጡ በ ተጠቃሚ ዳይሬክቶሪ ውስጥ በ ተወሰነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - መንገድ </emph> ቴምፕሌቱ ጋር ለ መድረስ በ ቀላሉ ከ <emph> ፋይል - አዲስ - ቴምፕሌት </emph> ንግግር ውስጥ"
#: standard_template.xhp
msgctxt ""
@@ -17118,7 +17118,7 @@ msgctxt ""
"par_id3147343\n"
"help.text"
msgid "To open the template for editing, choose <emph>File - New - Templates</emph>, select the template and click the <emph>Edit</emph> button."
-msgstr "ቴምፕሌት ለ ማረም ለ መክፈት: ይምረጡ <emph>ፋይል - አዲስ - ቴምፕሌቶች </emph> ቴምፕሌት ይምረጡ እና ይጫኑ <emph>ማረሚያ</emph> ቁልፍ"
+msgstr "ቴምፕሌት ለ ማረም ለ መክፈት: ይምረጡ <emph> ፋይል - አዲስ - ቴምፕሌቶች </emph> ቴምፕሌት ይምረጡ እና ይጫኑ <emph> ማረሚያ </emph> ቁልፍ"
#: standard_template.xhp
msgctxt ""
@@ -17262,7 +17262,7 @@ msgctxt ""
"par_id40161212063110720\n"
"help.text"
msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
-msgstr "<emph>{ፋይል} macro:///[Library.Module.MacroName]</emph>"
+msgstr "<emph>{ፋይል} ማክሮስ:///[Library.Module.MacroName]</emph>"
#: start_parameters.xhp
msgctxt ""
@@ -17270,7 +17270,7 @@ msgctxt ""
"par_id40161212063330252\n"
"help.text"
msgid "Opens the file and applies specified macros from the file."
-msgstr "ፋይል መክፈቻ እና የ ተወሰነውን macros ከ ፋይል ውስጥ መፈጸሚያ"
+msgstr "ፋይል መክፈቻ እና የ ተወሰነውን ማክሮስ ከ ፋይል ውስጥ መፈጸሚያ"
#: start_parameters.xhp
msgctxt ""
@@ -17374,7 +17374,7 @@ msgctxt ""
"par_id2016120409236546\n"
"help.text"
msgid "(macOS sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
-msgstr "(MacOS X sandbox only) የ ጊዚያዊ ዳይሬክቶርት መንገድ ይመልሳል ለ አሁኑ ተጠቃሚ እና ይወጣል: ሌሎች ሁሉንም ክርክሮች በላያቸው ላይ ደርቦ ይጽፋል"
+msgstr "(MacOS X sandbox only) የ ጊዚያዊ ዳይሬክቶሪ መንገድ ይመልሳል ለ አሁኑ ተጠቃሚ እና ይወጣል: ሌሎች ሁሉንም ክርክሮች በላያቸው ላይ ደርቦ ይጽፋል"
#: start_parameters.xhp
msgctxt ""
@@ -17934,7 +17934,7 @@ msgctxt ""
"par_id0820200803105089\n"
"help.text"
msgid "<emph>Database</emph> opens %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Base</link>"
-msgstr "<emph>ዳታቤዝ</emph> መክፈቻ %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Base</link>"
+msgstr "<emph>ዳታቤዝ </emph> መክፈቻ %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\"> ቤዝ </link>"
#: startcenter.xhp
msgctxt ""
@@ -18038,7 +18038,7 @@ msgctxt ""
"par_id274971\n"
"help.text"
msgid "Change the tab stops for all paragraphs using the current Paragraph Style: Right-click the paragraph to open the context menu, choose <emph>Edit Paragraph Style</emph>, click <emph>Tabs</emph>."
-msgstr "ለ ሁሉም አንቀጾች የ አሁኑን የ አንቀጽ ዘዴ ለሚጠቀሙ የ ማስረጊያ ማስቆሚያ መቀየሪያ: በ ቀኝ-ይጫኑ በ አንቀጽ ላይ የ አገባብ ዝርዝር ለ መክፈት: ይምረጡ <emph>የ አንቀጽ ዘዴ ማረሚያ</emph> ይጫኑ <emph>Tabs</emph>."
+msgstr "ለ ሁሉም አንቀጾች የ አሁኑን የ አንቀጽ ዘዴ ለሚጠቀሙ የ ማስረጊያ ማስቆሚያ መቀየሪያ: በ ቀኝ-ይጫኑ በ አንቀጽ ላይ የ አገባብ ዝርዝር ለ መክፈት: ይምረጡ <emph> የ አንቀጽ ዘዴ ማረሚያ </emph> ይጫኑ <emph> Tabs </emph>"
#: tabs.xhp
msgctxt ""
@@ -18166,7 +18166,7 @@ msgctxt ""
"par_id3154150\n"
"help.text"
msgid "Double-click the ruler to open the <link href=\"text/shared/01/05030300.xhp\" name=\"Paragraph\"><emph>Paragraph</emph></link> dialog."
-msgstr "ሁለት ጊዜ-ይጫኑ በ ማስመሪያው ላይ ለ መክፈት የ <link href=\"text/shared/01/05030300.xhp\" name=\"Paragraph\"><emph>አንቀጽ</emph></link> ንግግር"
+msgstr "ሁለት ጊዜ-ይጫኑ በ ማስመሪያው ላይ ለ መክፈት የ <link href=\"text/shared/01/05030300.xhp\" name=\"Paragraph\"><emph> አንቀጽ </emph></link> ንግግር"
#: tabs.xhp
msgctxt ""
@@ -18174,7 +18174,7 @@ msgctxt ""
"par_id3154145\n"
"help.text"
msgid "Double-click the white area of the ruler to set one tab. The <emph>Paragraph</emph> dialog appears with the <emph>Tabs</emph> tab page open."
-msgstr "ሁለት ጊዜ-ይጫኑ በ ነጭ ቦታ ላይ በ ማስመሪያው ላይ አንድ tab ለማሰናዳት: የ <emph>አንቀጽ</emph> ንግግር ይታያል ከ <emph>Tabs</emph> tab ገጽ ይከፈታል"
+msgstr "ሁለት ጊዜ-ይጫኑ በ ነጭ ቦታ ላይ በ ማስመሪያው ላይ አንድ tab ለማሰናዳት: የ <emph> አንቀጽ </emph> ንግግር ይታያል ከ <emph>Tabs</emph> tab ገጽ ይከፈታል"
#: tabs.xhp
msgctxt ""
@@ -18206,7 +18206,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> when you drag a tab on the ruler to move that tab and all the tabs to the right of it. This results in the spacing between those tabs changing proportionally to their distance from the margin."
-msgstr "ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እርስዎ በሚጎትቱ ጊዜ tab በ ማስመሪያ ላይ ለማንቀሳቀስ tab እና ሁሉንም tabs ወደ ቀኝ በኩል: ውጠቱ ክፍተት ይሆናል በ tabs መካከል እኩል መቀየሪያ እርቀታቸውን ከ ኅዳግ ጀምሮ"
+msgstr "ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እርስዎ በሚጎትቱ ጊዜ tab በ ማስመሪያ ላይ ለማንቀሳቀስ tab እና ሁሉንም tabs ወደ ቀኝ በኩል: ውጠቱ ክፍተት ይሆናል በ tabs መካከል እኩል መቀየሪያ እርቀታቸውን ከ ኅዳግ ጀምሮ"
#: tabs.xhp
msgctxt ""
@@ -18310,7 +18310,7 @@ msgctxt ""
"par_id04162017072349624\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">File - New – Templates.</item>"
-msgstr "ዝርዝር ይምረጡ <item type=\"menuitem\"> ፋይል - አዲስ - ቴምፕሌቶች </item>."
+msgstr "ዝርዝር ይምረጡ <item type=\"menuitem\"> ፋይል - አዲስ - ቴምፕሌቶች </item>"
#: template_manager.xhp
msgctxt ""
@@ -18318,7 +18318,7 @@ msgctxt ""
"par_id041620170723496526\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">File – Template – Manage Templates.</item>"
-msgstr "ዝርዝር ይምረጡ <item type=\"menuitem\"> ፋይል – ቴምፕሌት – ቴምፕሌቶች አስተዳዳሪ </item>."
+msgstr "ዝርዝር ይምረጡ <item type=\"menuitem\"> ፋይል – ቴምፕሌት – ቴምፕሌቶች አስተዳዳሪ </item>"
#: template_manager.xhp
msgctxt ""
@@ -18342,7 +18342,7 @@ msgctxt ""
"par_id041620170723509119\n"
"help.text"
msgid "Select any template type from the <item type=\"menuitem\">Templates </item>button of the Start Center."
-msgstr "ይምረጡ ማንኛውንም አይነት ቴምፕሌት ከ <item type=\"menuitem\">ቴምፕሌቶች </item> ቁልፍ በ ማስጀመሪያ ክፍል ውስጥ"
+msgstr "ይምረጡ ማንኛውንም አይነት ቴምፕሌት ከ <item type=\"menuitem\"> ቴምፕሌቶች </item> ቁልፍ በ ማስጀመሪያ ክፍል ውስጥ"
#: template_manager.xhp
msgctxt ""
@@ -18830,7 +18830,7 @@ msgctxt ""
"par_id04162017072352674\n"
"help.text"
msgid "See Chapter 3 – Using Styles and Templates in the Getting Started Guide, available from the <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">documentation website</link>."
-msgstr "ይህን ይመልከቱ ምዕራፍ 3 – ዘዴዎች እና ቴምፕሌቶች በ መጠቀም እንዴት እንደሚጀምሩ መምሪያ: ዝግጁ ነው በ <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\"> ድሕረ ገጽ ሰነድ ውስጥ </link>."
+msgstr "ይህን ይመልከቱ ምዕራፍ 3 – ዘዴዎች እና ቴምፕሌቶች በ መጠቀም እንዴት እንደሚጀምሩ መምሪያ: ዝግጁ ነው በ <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\"> ድሕረ ገጽ ሰነድ ውስጥ </link>"
#: template_manager.xhp
msgctxt ""
@@ -18998,7 +18998,7 @@ msgctxt ""
"par_id3154307\n"
"help.text"
msgid "Insert mode is enabled. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The text cursor is a blinking vertical line. </caseinline></switchinline>Click on the area to enable the overwrite mode."
-msgstr "የ ማስገቢያ ዘዴ አስችለዋል <switchinline select=\"appl\"><caseinline select=\"WRITER\">የ ጽሁፍ መጠቆሚያው በ ቁመት መስመር ብልጭ ድርግም ይላል </caseinline></switchinline>ይጫኑ በ ቦታው ላይ በላይ ላይ ደርቦ መጻፍ ለማስቻል"
+msgstr "የ ማስገቢያ ዘዴ አስችለዋል <switchinline select=\"appl\"><caseinline select=\"WRITER\"> የ ጽሁፍ መጠቆሚያው በ ቁመት መስመር ብልጭ ድርግም ይላል </caseinline></switchinline> ይጫኑ በ ቦታው ላይ በላይ ላይ ደርቦ መጻፍ ለማስቻል"
#: textmode_change.xhp
msgctxt ""
@@ -19014,7 +19014,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "The overwrite mode is enabled. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The text cursor is a blinking block. </caseinline></switchinline>Click on the area to enable insert mode."
-msgstr "በላይ ላይ ደርቦ መጻፍ አስችለዋል <switchinline select=\"appl\"><caseinline select=\"WRITER\">የ ጽሁፍ መጠቆሚያው ብልጭ ድርግም ይላል መከልከያው. </caseinline></switchinline>ይጫኑ በ ቦታው ላይ የ ማስገቢያ ዘዴ ለማስቻል"
+msgstr "በላይ ላይ ደርቦ መጻፍ አስችለዋል <switchinline select=\"appl\"><caseinline select=\"WRITER\"> የ ጽሁፍ መጠቆሚያው ብልጭ ድርግም ይላል መከልከያው. </caseinline></switchinline> ይጫኑ በ ቦታው ላይ የ ማስገቢያ ዘዴ ለማስቻል"
#: textmode_change.xhp
msgctxt ""
@@ -19078,7 +19078,7 @@ msgctxt ""
"par_idN10643\n"
"help.text"
msgid "Choose <emph>Format - Clear Direct Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
#: undo_formatting.xhp
msgctxt ""
@@ -19110,7 +19110,7 @@ msgctxt ""
"par_idN106F0\n"
"help.text"
msgid "Choose <emph>Format - Clear Direct Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
#: undo_formatting.xhp
msgctxt ""
@@ -19142,7 +19142,7 @@ msgctxt ""
"par_idN1075E\n"
"help.text"
msgid "Choose <emph>Format - Clear Direct Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
#: undo_formatting.xhp
msgctxt ""
@@ -19246,7 +19246,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Choose <emph>File - Properties</emph>."
-msgstr "ይምረጡ <emph>ፋይል - ባህሪዎች</emph>."
+msgstr "ይምረጡ <emph> ፋይል - ባህሪዎች </emph>"
#: viewing_file_properties.xhp
msgctxt ""
@@ -19262,7 +19262,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph>"
#: viewing_file_properties.xhp
msgctxt ""
@@ -19326,7 +19326,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "Click <emph>My Documents </emph>and click the <emph>Edit</emph> button, or double-click on <emph>My Documents</emph>."
-msgstr "ይጫኑ <emph>የ እኔ ሰነዶች </emph>እና ይጫኑ የ <emph>ማረሚያ</emph> ቁልፍ: ወይንም ሁለት ጊዜ-ይጫኑ በ <emph>የ እኔ ሰነዶች</emph> ላይ"
+msgstr "ይጫኑ <emph> የ እኔ ሰነዶች </emph> እና ይጫኑ የ <emph> ማረሚያ </emph> ቁልፍ: ወይንም ሁለት ጊዜ-ይጫኑ በ <emph> የ እኔ ሰነዶች </emph> ላይ"
#: workfolder.xhp
msgctxt ""
@@ -19342,7 +19342,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "You also use this procedure to change the directory displayed by $[officename] when you want to insert a graphic. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths - Images</emph>, then follow step 3."
-msgstr "እርስዎ እንዲሁም ይህን አሰራር መጠቀም ይችላሉ የሚታየውን ዳይሬክቶሪ ለ መቀየር በ $[officename] እርስዎ ንድፍ መጨመር በሚፈልጉ ጊዜ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - መንገድ - ምስሎች </emph> ከዛ ይከተሉ ደረጃ 3."
+msgstr "እርስዎ እንዲሁም ይህን አሰራር መጠቀም ይችላሉ የሚታየውን ዳይሬክቶሪ ለ መቀየር በ $[officename] እርስዎ ንድፍ መጨመር በሚፈልጉ ጊዜ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መንገድ - ምስሎች </emph> ከዛ ይከተሉ ደረጃ 3."
#: workfolder.xhp
msgctxt ""
@@ -19422,7 +19422,7 @@ msgctxt ""
"par_idN1070D\n"
"help.text"
msgid "Choose <emph>File - New - XML Form Document</emph>."
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - የ XML ፎርም ሰነድ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - የ XML ፎርም ሰነድ </emph>"
#: xforms.xhp
msgctxt ""
@@ -19478,7 +19478,7 @@ msgctxt ""
"par_idN10730\n"
"help.text"
msgid "Choose <emph>File - Open</emph> and select the XForms document. An XForm document has the same extension as a Writer text document (*.odt)."
-msgstr "ይምረጡ <emph>ፋይል - መክፈቻ</emph> እና ይምረጡ የ Xፎርሞች ሰነድ: የ Xፎርም ሰነድ ተመሳሳይ ተቀጥያ ነው ያለው እንደ ጽሁፍ መጻፊያ ሰነድ (*.odt)."
+msgstr "ይምረጡ <emph> ፋይል - መክፈቻ </emph> እና ይምረጡ የ Xፎርሞች ሰነድ: የ Xፎርም ሰነድ ተመሳሳይ ተቀጥያ ነው ያለው እንደ ጽሁፍ መጻፊያ ሰነድ (*.odt)."
#: xforms.xhp
msgctxt ""
@@ -19766,7 +19766,7 @@ msgctxt ""
"par_idN10A0F\n"
"help.text"
msgid "In the <emph>Name of File Type</emph> box, enter the file type that the filter is for."
-msgstr "በ <emph>የ ፋይል አይነት ስም</emph> ሳጥን ውስጥ: ያስገቡ የ ፋይል አይነት ማጣሪያው ለ ተሰናዳለት"
+msgstr "በ <emph> የ ፋይል አይነት ስም </emph> ሳጥን ውስጥ: ያስገቡ የ ፋይል አይነት ማጣሪያው ለ ተሰናዳለት"
#: xsltfilter_create.xhp
msgctxt ""
@@ -19774,7 +19774,7 @@ msgctxt ""
"par_idN10CC6\n"
"help.text"
msgid "This name is displayed in the list of file types in the <emph>Open</emph>, <emph>Export</emph>, and <emph>Save As</emph> dialogs."
-msgstr "ይህ ስም ይታያል በ ዝርዝር ፋይል ውስጥ በ <emph> መክፈቻ </emph>, <emph> መላኪያ </emph> እና <emph> ማስቀመጫ እንደ </emph> ንግግሮች ውስጥ"
+msgstr "ይህ ስም ይታያል በ ዝርዝር ፋይል ውስጥ በ <emph> መክፈቻ </emph>: <emph> መላኪያ </emph> እና <emph> ማስቀመጫ እንደ </emph> ንግግሮች ውስጥ"
#: xsltfilter_create.xhp
msgctxt ""
@@ -19822,7 +19822,7 @@ msgctxt ""
"par_idN10A32\n"
"help.text"
msgid "In the <emph>XSLT for export</emph> box, enter the path and file name of the XSLT stylesheet that defines the transformation from OpenDocument format to the external format."
-msgstr "በ <emph>XSLT መላኪያ</emph> ሳጥን ውስጥ: ያስገቡ የ ፋይል ስም እና መንገድ የ XSLT ዘዴ ወረቀት የሚገልጽ መቀየሪያ ከ OpenDocument አቀራረብ ወደ ውጪ አቀራረብ"
+msgstr "በ <emph>XSLT መላኪያ </emph> ሳጥን ውስጥ: ያስገቡ የ ፋይል ስም እና መንገድ የ XSLT ዘዴ ወረቀት የሚገልጽ መቀየሪያ ከ OpenDocument አቀራረብ ወደ ውጪ አቀራረብ"
#: xsltfilter_create.xhp
msgctxt ""
@@ -19830,7 +19830,7 @@ msgctxt ""
"par_idN10A38\n"
"help.text"
msgid "In the <emph>XSLT for import</emph> box, enter the path and file name to the XSLT stylesheet that defines the transformation from the external format to OpenDocument format."
-msgstr "በ <emph>XSLT ማምጫ</emph> ሳጥን ውስጥ: ያስገቡ የ ፋይል ስም እና መንገድ የ XSLT ዘዴ ወረቀት የሚገልጽ መቀየሪያ ከ OpenDocument አቀራረብ ወደ ውጪ አቀራረብ"
+msgstr "በ <emph>XSLT ማምጫ </emph> ሳጥን ውስጥ: ያስገቡ የ ፋይል ስም እና መንገድ የ XSLT ዘዴ ወረቀት የሚገልጽ መቀየሪያ ከ OpenDocument አቀራረብ ወደ ውጪ አቀራረብ"
#: xsltfilter_create.xhp
msgctxt ""
@@ -19838,7 +19838,7 @@ msgctxt ""
"par_idN10A3E\n"
"help.text"
msgid "(Optional) In the <emph>Template for import</emph> box, enter the path and name of the template that defines the %PRODUCTNAME styles that are used in the imported file."
-msgstr "(በምርጫ) በ <emph>ቴምፕሌት ለማምጣት</emph> ሳጥን ውስጥ የ ቴምፕሌት ስም እና መንገድ ያስገቡ የሚገልጸውን የ %PRODUCTNAME ዘዴዎች ለ ማምጫ ፋይል የሚጠቀሙበትን"
+msgstr "(በምርጫ) በ <emph> ቴምፕሌት ለማምጣት </emph> ሳጥን ውስጥ የ ቴምፕሌት ስም እና መንገድ ያስገቡ የሚገልጸውን የ %PRODUCTNAME ዘዴዎች ለ ማምጫ ፋይል የሚጠቀሙበትን"
#: xsltfilter_create.xhp
msgctxt ""
@@ -19910,7 +19910,7 @@ msgctxt ""
"par_idN10A82\n"
"help.text"
msgid "To test an <emph>Export</emph> Filter, do one of the following in the <emph>Export</emph> area of the dialog:"
-msgstr "ለ መሞከር የ <emph>መላኪያ</emph> ማጣሪያ: ከ እነዚህ አንዱን ይስሩ በ <emph>መላኪያ</emph> ቦታ ንግግር ውስጥ:"
+msgstr "ለ መሞከር የ <emph> መላኪያ </emph> ማጣሪያ: ከ እነዚህ አንዱን ይስሩ በ <emph> መላኪያ </emph> ቦታ ንግግር ውስጥ:"
#: xsltfilter_create.xhp
msgctxt ""
@@ -19934,7 +19934,7 @@ msgctxt ""
"par_idN10A99\n"
"help.text"
msgid "To test an <emph>Import</emph> Filter, click <emph>Browse</emph> in the <emph>Import</emph> area of the dialog, select a document, and click <emph>Open</emph>."
-msgstr "ለ መሞከር የ <emph>መላኪያ</emph> ማጣሪያ: ይጫኑ <emph>መቃኝ</emph> በ <emph>ማምጫ</emph> ቦታ ንግግር ውስጥ: ሰነድ ይምረጡ እና ይጫኑ <emph>መክፈቻ</emph>."
+msgstr "ለ መሞከር የ <emph> መላኪያ </emph> ማጣሪያ: ይጫኑ <emph> መቃኝ </emph> በ <emph> ማምጫ </emph> ቦታ ንግግር ውስጥ: ሰነድ ይምረጡ እና ይጫኑ <emph> መክፈቻ </emph>"
#: xsltfilter_create.xhp
msgctxt ""
@@ -20046,7 +20046,7 @@ msgctxt ""
"par_idN10AF6\n"
"help.text"
msgid "Click <emph>Open Package</emph> and select the package file with the filter you want to install."
-msgstr "ይጫኑ <emph>ጥቅል መክፈቻ</emph> እና ይምረጡ የ ጥቅል ፋይል ከ ማጣሪያ ጋር እርስዎ መግጠም የሚፈልጉትን"
+msgstr "ይጫኑ <emph> ጥቅል መክፈቻ </emph> እና ይምረጡ የ ጥቅል ፋይል ከ ማጣሪያ ጋር እርስዎ መግጠም የሚፈልጉትን"
#: xsltfilter_distribute.xhp
msgctxt ""
@@ -20070,7 +20070,7 @@ msgctxt ""
"par_idN10B19\n"
"help.text"
msgid "Select the filter you want to delete and click <emph>Delete</emph>."
-msgstr "እርስዎ ማጥፋት የሚፈልጉትን ማጣሪያ ይምረጡ እና ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "እርስዎ ማጥፋት የሚፈልጉትን ማጣሪያ ይምረጡ እና ይጫኑ <emph> ማጥፊያ </emph>"
#: xsltfilter_distribute.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index da130590a6d..1a844289119 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-07 00:57+0000\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-21 02:22+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496797027.000000\n"
+"X-POOTLE-MTIME: 1498011732.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "If <emph>Load user-specific settings with the document </emph>is not selected, the following user-specific settings still apply:"
-msgstr "በ<emph>ተጠቃሚው-የተወሰነ ማሰናጃ መጫኛ በ ሰነድ ውስጥ </emph>አልተመረጠም: የሚቀጥለው በ ተጠቃሚው-የተወሰነ ማሰናጃ ይፈጸማል"
+msgstr "በ <emph> ተጠቃሚው-የተወሰነ ማሰናጃ መጫኛ በ ሰነድ ውስጥ </emph> አልተመረጠም: የሚቀጥለው በ ተጠቃሚው-የተወሰነ ማሰናጃ ይፈጸማል"
#: 01010200.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3155176\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">Select this box for <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative saving\">relative saving</link> of URLs in the file system.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">ይህን ሳጥን ይምረጡ ለ <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative saving\">አንፃራዊ ማስቀመጫ</link> ለ URLs በ ፋይል ስርአት ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">ይህን ሳጥን ይምረጡ ለ <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative saving\"> አንፃራዊ ማስቀመጫ </link> ለ URLs በ ፋይል ስርአት ውስጥ </ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
-msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">የ ቋንቋ ክፍል ለማረም ይምረጡት እና ይጫኑ <emph>ማረሚያ</emph>.</ahelp> የ <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>ማረሚያ </emph><emph>ክፍሎች</emph></link> ንግግር ይታያል"
+msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">የ ቋንቋ ክፍል ለማረም ይምረጡት እና ይጫኑ <emph> ማረሚያ </emph>.</ahelp> የ <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph> ማረሚያ </emph><emph> ክፍሎች </emph></link> ንግግር ይታያል"
#: 01010400.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "When a dictionary is edited, a check is made on the status of the file. If the file is write-protected, it cannot be changed. The buttons <emph>New</emph> and <emph>Delete</emph> are then deactivated."
-msgstr "መዝገበ ቃላት በሚታረም ጊዜ: በ ፋይሉ ሁኔታ ላይ ምርመራ ይደረጋል: ፋይሉ ለ መጻፍ-የሚጠበቅ ከሆነ መቀየር አይቻልም: እነዚህ ቁልፎች <emph>አዲስ</emph> እና <emph>ማጥፊያ</emph> ይቦዝናሉ"
+msgstr "መዝገበ ቃላት በሚታረም ጊዜ: በ ፋይሉ ሁኔታ ላይ ምርመራ ይደረጋል: ፋይሉ ለ መጻፍ-የሚጠበቅ ከሆነ መቀየር አይቻልም: እነዚህ ቁልፎች <emph> አዲስ </emph> እና <emph> ማጥፊያ </emph> ይቦዝናሉ"
#: 01010400.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id3153231\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optlingupage/linguoptionsedit\">If you want to change a value, select the entry and then click <emph>Edit</emph>.</ahelp> You will see a dialog for entering a new value."
-msgstr "<ahelp hid=\"cui/ui/optlingupage/linguoptionsedit\">እርስዎ ዋጋውን መቀየር ከፈለጉ: ማስገቢያውን ይምረጡ እና ከዛ ይጫኑ <emph> ማረሚያ </emph>.</ahelp> ለ እርስዎ አዲሱን ዋጋ ማስገቢያ ንግግር ይታያል"
+msgstr "<ahelp hid=\"cui/ui/optlingupage/linguoptionsedit\">እርስዎ ዋጋውን መቀየር ከፈለጉ: ማስገቢያውን ይምረጡ እና ከዛ ይጫኑ <emph> ማረሚያ </emph></ahelp> ለ እርስዎ አዲሱን ዋጋ ማስገቢያ ንግግር ይታያል"
#: 01010400.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"hd_id3150983\n"
"help.text"
msgid "Check uppercase words"
-msgstr "መመርመሪያ በ አቢይ ፊደል የ ተጻፈ ቃላት"
+msgstr "መመርመሪያ በ ላይኛው ጉዳይ ፊደል የ ተጻፈ ቃላት"
#: 01010400.xhp
msgctxt ""
@@ -2277,16 +2277,24 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
-msgstr "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME እርስዎን የ ራስዎትን ቀለሞች መግለጽ ያስችሎታል የ ሁለት-አቅጣጫ ንድፍ እና የ ቁጥር ከፍታ ቻርትስ የ ቀለም ንግግር በ መጠቀም </ahelp></variable> ይጫኑ <emph> እሺ </emph> ለ ማሳየት አዲስ የ ተገለጸውን ቀለም በ <emph> አዲስ </emph> ቅድመ እይታ ሳጥን ውስጥ በ <emph> ቀለሞች </emph> tab ውስጥ: እርስዎ መወሰን ይችላሉ መጨመር ወይንም መቀየር አዲስ ቀለም በ አሁኑ የ ቀለም ማሰናጃ ውስጥ"
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgstr "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME እርስዎን የ ራስዎትን ቀለሞች መግለጽ ያስችሎታል: የ ሁለት-አቅጣጫ ንድፍ እና የ ቁጥር ከፍታ ቻርትስ የ ቀለም ንግግር በ መጠቀም </ahelp></variable> ይጫኑ <emph> እሺ </emph> ለ ማሳየት አዲስ የ ተገለጸውን ቀለም በ <emph> አዲስ </emph> ቅድመ እይታ ሳጥን ውስጥ በ <emph> ቀለሞች </emph> tab ውስጥ: እርስዎ መወሰን ይችላሉ መጨመር ወይንም መቀየር አዲስ ቀለም በ አሁኑ የ ቀለም ማሰናጃ ውስጥ"
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
-msgstr "የ ቀለም መስኮት ይምረጡ"
+msgid "The Pick a Color Window"
+msgstr "የ ቀለም መምረጫ መስኮት"
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">የ ቀለም መምረጫ መስኮት</caption></image>"
#: 01010501.xhp
msgctxt ""
@@ -2301,8 +2309,8 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
-msgstr ""
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
+msgstr "የ ራዲዮ ቁልፎች ለ ቀለም የ ቀለም አካላቶች ይመርጣሉ: እነዚህ የ ቀለም አካላቶች የሚገለጹት በ ቀአስ: (ቀይ: አረንጓዴ: ሰማያዊ) ነው ወይንም HSB (Hue, Saturation, Brightness) የ ቀለም ክፍሎች ነው: የ CMYK ቀለም ክፍል የሚመረጥ አይደለም: እና የ ተሰጠው ማስገቢያውን ለ ማቅለል ነው: የ ቀለም ዋጋዎች ለ CMYK ምልክት"
#: 01010501.xhp
msgctxt ""
@@ -2318,7 +2326,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ቁመት የ ቀለም ተንሸራታች አካል ውስጥ እርስዎ ማሻሻል ይችላሉ እያንዳንዱን የ ቀለም ዋጋዎች: </ahelp> በ ትልቁ የ ቀለም ስኬር ውስጥ እርስዎ የ ቀለም አካላት በ ግምት መምረጥ ይችላሉ"
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2334,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "የ አግድም ቀለም መደርደሪያ ከ ታች በኩል የሚያሳየው የ አሁኑን ቀለም እና አዲሱን ቀለም ጎን ለ ጎን ነው"
#: 01010501.xhp
msgctxt ""
@@ -2334,7 +2342,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይጫኑ በ ትልቁ የ ቀለም ቦታ በ ግራ በኩል አዲስ ቀለም ለ መምረጥ: ይህን የ መምረጫ ቦታ በ መጠቀም: እርስዎ ማሻሻል ይችላሉ ሁለት የ ቀለም አካሎችን: የ ቀረቡትን በ ቀአስ ወይንም HSB ቀለም ዘደዎች: ያስታውሱ እነዚህ ሁለት አካሎች አልተመረጡም በ ራዲዮ ቁልፎች በ ቀኝ በኩል በ ንግግር ውስጥ </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2342,7 +2350,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ መደርደሪያው ከ ታች በ ቀኝ በኩል: ለ እርስዎ ይታይዎታል ዋናው ቀለም ከ ወላጅ tab ውስጥ <emph> ቀለሞች </emph></ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2350,7 +2358,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ መደርደሪያው ከ ታች በ ግራ በኩል: የ እርስዎ ስራ የ አሁኑ ውጤት ንግግር ይታያል </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2382,7 +2390,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ቀይ ቀለም አካል ሊሻሻል ይችላል በ ቁመት የ ቀለም ተንሸራታች ውስጥ: እና የ አረንጓዴ እና ሰማያዊ ቀለም አካሎች በ ሁለት አቅጣጫ የ ቀለም መምረጫ ሜዳ ውስጥ: የሚቻለው ዋጋ ከ 0 እስከ 255. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2390,7 +2398,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">በ ቀጥታ የ ቀይ ቀለም ዋጋ ማሰናጃ: የሚቻሉት ዋጋዎች ከ 0 እስከ 255. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2406,7 +2414,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አረንጓዴ ቀለም አካል ሊሻሻል ይችላል በ ቁመት የ ቀለም ተንሸራታች ውስጥ: እና የ አረንጓዴ እና ሰማያዊ ቀለም አካሎች በ ሁለት አቅጣጫ የ ቀለም መምረጫ ሜዳ ውስጥ: የሚቻለው ዋጋ ከ 0 እስከ 255. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2414,7 +2422,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">በ ቀጥታ የ አረንጓዴ ቀለም ዋጋ ማሰናጃ: የሚቻሉት ዋጋዎች ከ 0 እስከ 255. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2430,7 +2438,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ቀይ ቀለም አካል ሊሻሻል ይችላል በ ቁመት የ ቀለም ተንሸራታች ውስጥ: እና የ አረንጓዴ እና ሰማያዊ ቀለም አካሎች በ ሁለት አቅጣጫ የ ቀለም መምረጫ ሜዳ ውስጥ: የሚቻለው ዋጋ ከ 0 እስከ 255. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2438,7 +2446,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">በ ቀጥታ የ ሰማያዊ ቀለም ዋጋ ማሰናጃ: የሚቻሉት ዋጋዎች ከ 0 እስከ 255. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2454,7 +2462,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ቀአስ ውስጥ የ ቀለም ዋጋ ማሳያ እና ማሰናጃ: የ ተገለጸውን በ ሄክሳ ዴሲማል ቁጥር ውስጥ </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2462,7 +2470,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2470,7 +2478,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Hue"
#: 01010501.xhp
msgctxt ""
@@ -2478,7 +2486,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ Hue ቀለም አካል ሊሻሻል ይችላል በ ቁመት የ ቀለም ተንሸራታች ውስጥ: እና Saturation and Brightness ቀለም አካሎች በ ሁለት አቅጣጫ የ ቀለም መምረጫ ሜዳ ውስጥ: የሚቻለው ዋጋ ከ 0 እስከ 359. ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2486,7 +2494,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Hue በ ቀጥታ በ HSB የ ቀለም ክፍል ውስጥ ማሰናጃ: የሚቻለው ዋጋ እንደ ተገለጸው በ ዲግሪ ነው ከ 0 እስከ 359. ድረስ </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2502,7 +2510,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ Saturation ቀለም አካል ሊሻሻል ይችላል በ ቁመት የ ቀለም ተንሸራታች ውስጥ: እና Hue and Brightness ቀለም አካሎች በ ሁለት አቅጣጫ የ ቀለም መምረጫ ሜዳ ውስጥ: ዋጋዎች የሚገለጹት በ ፐርሰንት ነው ከ ( 0 እስከ 100) ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2510,7 +2518,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Saturation በ ቀጥታ በ HSB የ ቀለም ክፍል ውስጥ ማሰናጃ: ዋጋዎች የሚገለጹት በ ፐርሰንት ነው ከ ( 0 እስከ 100) ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2526,7 +2534,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ Brightness ቀለም አካል ሊሻሻል ይችላል በ ቁመት የ ቀለም ተንሸራታች ውስጥ: እና Hue and Saturation ቀለም አካሎች በ ሁለት አቅጣጫ የ ቀለም መምረጫ ሜዳ ውስጥ: ዋጋዎች የሚገለጹት በ ፐርሰንት ነው ከ ( 0 እስከ 100) ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2534,7 +2542,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Brightness በ ቀጥታ በ HSB የ ቀለም ክፍል ውስጥ ማሰናጃ: ዋጋዎች የሚገለጹት በ ፐርሰንት ነው ከ ( 0 እስከ 100) ነው </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2542,7 +2550,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2558,7 +2566,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"> የ ሲያን ቀለም ዋጋ ማሰናጃ እንደ ተገለጸው በ CMYK የ ቀለም ዘዴዎች </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2566,7 +2574,7 @@ msgctxt ""
"hd_id3155429\n"
"help.text"
msgid "Magenta"
-msgstr "ቀይ የ ወይን ጠጅ"
+msgstr "ማጄንታ"
#: 01010501.xhp
msgctxt ""
@@ -2574,7 +2582,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"> የ ማጄንታ ቀለም ዋጋ ማሰናጃ እንደ ተገለጸው በ CMYK የ ቀለም ዘዴዎች </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2590,7 +2598,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"> የ ቢጫ ቀለም ዋጋ ማሰናጃ እንደ ተገለጸው በ CMYK የ ቀለም ዘዴዎች </ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2606,7 +2614,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ጥቁር ቀለም ዋጋ ማሰናጃ ወይንም ቁልፍ (ጥቁር) እንደ ተገለጸው በ CMYK የ ቀለም ዘዴዎች </ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -4694,7 +4702,7 @@ msgctxt ""
"bm_id2322153\n"
"help.text"
msgid "<bookmark_value>macros;selecting security warnings</bookmark_value><bookmark_value>security;options for documents with macros</bookmark_value><bookmark_value>macros;security</bookmark_value>"
-msgstr "<bookmark_value>macros: መምረጫ የ ደህንነት ማስጠንቀቂያ</bookmark_value><bookmark_value>ደህንነት: ምርጫ ለ ሰነዶች ከ macros ጋር</bookmark_value><bookmark_value>macros: ደህንነት</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ: መምረጫ የ ደህንነት ማስጠንቀቂያ</bookmark_value><bookmark_value>ደህንነት: ምርጫ ለ ሰነዶች ከ ማክሮስ ጋር</bookmark_value><bookmark_value>የ ማክሮስ: ደህንነት</bookmark_value>"
#: 01030300.xhp
msgctxt ""
@@ -4710,7 +4718,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the security options for saving documents, for web connections, and for opening documents that contain macros.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ደህንነት ምርጫ መግለጫ ሰነዶች ለ ማስቀመጫ: ለ ዌብ ግንኙነት እና ሰነዶችን ለ መክፈቻ macros የያዙ</ahelp>"
+msgstr "<ahelp hid=\".\">የ ደህንነት ምርጫ መግለጫ ሰነዶች ለ ማስቀመጫ: ለ ዌብ ግንኙነት እና ሰነዶችን ለ መክፈቻ ማክሮስ የያዙ</ahelp>"
#: 01030300.xhp
msgctxt ""
@@ -4734,7 +4742,7 @@ msgctxt ""
"hd_id4076357\n"
"help.text"
msgid "Passwords for web connections"
-msgstr "የመግቢያ ቃሎች ለ ዌብ መገናኛዎች"
+msgstr "የ መግቢያ ቃሎች ለ ዌብ መገናኛዎች"
#: 01030300.xhp
msgctxt ""
@@ -4854,7 +4862,7 @@ msgctxt ""
"par_idN10687\n"
"help.text"
msgid "Macro security"
-msgstr "የ Macro ደህንነት"
+msgstr "የ ማክሮስ ደህንነት"
#: 01030300.xhp
msgctxt ""
@@ -4862,7 +4870,7 @@ msgctxt ""
"par_idN1068B\n"
"help.text"
msgid "Adjust the security level for executing macros and specify trusted macro authors."
-msgstr "የ ደህንነት ደረጃዎችን ማስተካከያ ለ macros ማስኬጃ እና መወሰኛ የሚታመኑ macro አበልጻጊዎች"
+msgstr "የ ደህንነት ደረጃዎችን ማስተካከያ ለ ማክሮስ ማስኬጃ እና መወሰኛ የሚታመኑ ማክሮስ አበልጻጊዎች"
#: 01030300.xhp
msgctxt ""
@@ -4870,7 +4878,7 @@ msgctxt ""
"par_idN1068E\n"
"help.text"
msgid "Macro Security"
-msgstr "የ Macro ደህንነት"
+msgstr "የ ማክሮስ ደህንነት"
#: 01030300.xhp
msgctxt ""
@@ -4878,7 +4886,7 @@ msgctxt ""
"par_idN10692\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsecuritypage/macro\">Opens the <emph>Macro Security</emph> dialog.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optsecuritypage/macro\">መክፈቻ የ <emph>Macro ደህንነት </emph> ንግግር </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optsecuritypage/macro\">መክፈቻ የ <emph> ማክሮስ ደህንነት </emph> ንግግር </ahelp>"
#: 01030300.xhp
msgctxt ""
@@ -5086,7 +5094,7 @@ msgctxt ""
"par_id3150872\n"
"help.text"
msgid "You must activate this option before you create the $[officename] Basic Script, since otherwise it will not be inserted. $[officename] Basic Scripts must be located in the header of the HTML document. Once you have created the macro in the $[officename] Basic IDE, it appears in the source text of the HTML document in the header."
-msgstr "እርስዎ ይህን ምርጫ ማስጀመር አለብዎት ከ መፍጠርዎት በፊት የ $[officename] Basic ጽሁፍ: ያለ በለዚያ ማስገባት አይችሉም: $[officename] Basic ጽሁፍ መሆን አለበት በ HTML ራስጌ ሰነድ ውስጥ: አንድ ጊዜ ከ ፈጠሩ macro በ $[officename] Basic IDE, በ ጽሁፍ ምንጭ ውስጥ ይታያል በ HTML ሰነድ ራስጌ ውስጥ"
+msgstr "እርስዎ ይህን ምርጫ ማስጀመር አለብዎት ከ መፍጠርዎት በፊት የ $[officename] Basic ጽሁፍ: ያለ በለዚያ ማስገባት አይችሉም: $[officename] Basic ጽሁፍ መሆን አለበት በ HTML ራስጌ ሰነድ ውስጥ: አንድ ጊዜ ከ ፈጠሩ ማክሮስ በ $[officename] Basic IDE, በ ጽሁፍ ምንጭ ውስጥ ይታያል በ HTML ሰነድ ራስጌ ውስጥ"
#: 01030500.xhp
msgctxt ""
@@ -5102,7 +5110,7 @@ msgctxt ""
"par_id3150420\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/opthtmlpage/starbasicwarning\">If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/opthtmlpage/starbasicwarning\">እዚህ ሜዳ ውስጥ ምልክት ከ ተደረገ: በሚልኩ ጊዜ ወደ HTML ማስጠንቀቂያ ይታይዎታል የ %PRODUCTNAME Basic macros እንደሚጠፉ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/opthtmlpage/starbasicwarning\">እዚህ ሜዳ ውስጥ ምልክት ከ ተደረገ: በሚልኩ ጊዜ ወደ HTML ማስጠንቀቂያ ይታይዎታል የ %PRODUCTNAME Basic ማክሮስ እንደሚጠፉ </ahelp>"
#: 01030500.xhp
msgctxt ""
@@ -5214,7 +5222,7 @@ msgctxt ""
"par_id3147304\n"
"help.text"
msgid "Specifies the settings for the basic Asian fonts if Asian language support has been activated under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages.</emph>"
-msgstr "የ መሰረታዊ እስያ ፊደሎች ማሰናጃዎች ይወስኑ: የ እስያ ቋንቋዎች ድጋፍ ጀምሮ ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>."
+msgstr "የ መሰረታዊ እስያ ፊደሎች ማሰናጃዎች ይወስኑ: የ እስያ ቋንቋዎች ድጋፍ ጀምሮ ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>"
#: 01040000.xhp
msgctxt ""
@@ -5230,7 +5238,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "Specifies the settings for basic fonts for complex text layout languages if their support has been activated under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr "የ መሰረታዊ ፊደሎች ማሰናጃዎች ይወስኑ ለ ውስብስብ ጽሁፍ እቅድ ቋንቋዎች ድጋፍ ጀምሮ ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>."
+msgstr "የ መሰረታዊ ፊደሎች ማሰናጃዎች ይወስኑ ለ ውስብስብ ጽሁፍ እቅድ ቋንቋዎች ድጋፍ ጀምሮ ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>"
#: 01040200.xhp
msgctxt ""
@@ -5414,7 +5422,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "You can also control the display of graphics through the <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph>Images and Charts</emph></link> icon. If a text document is open, this icon is displayed on the <emph>Tools</emph> bar."
-msgstr "እርስዎ መቆጣጠር ይችላሉ የ ንድፎች መቆጣጠሪያ በ <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph>ምስሎች እና ቻርትስ</emph></link> ምልክት: የ ጽሁፍ ሰነድ ከ ተከፈተ: ይህ ምልክት ይታያል በ <emph>መሳሪያዎች</emph> መደርደሪያ ላይ"
+msgstr "እርስዎ መቆጣጠር ይችላሉ የ ንድፎች መቆጣጠሪያ በ <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph> ምስሎች እና ቻርትስ </emph></link> ምልክት: የ ጽሁፍ ሰነድ ከ ተከፈተ: ይህ ምልክት ይታያል በ <emph> መሳሪያዎች </emph> መደርደሪያ ላይ"
#: 01040200.xhp
msgctxt ""
@@ -5518,7 +5526,7 @@ msgctxt ""
"par_id3154716\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">Specifies the <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Unit\">Unit</link> for HTML documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">መወሰኛ የ <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Unit\">መለኪያ</link> ለ HTML ሰነዶች</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">መወሰኛ <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Unit\"> መለኪያ </link> ለ HTML ሰነዶች</ahelp>"
#: 01040300.xhp
msgctxt ""
@@ -5558,7 +5566,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "You can also change the basic fonts for Asian and complex text layout languages if their support is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr "የ መሰረታዊ ፊደሎች ማሰናጃዎች ይወስኑ: የ እስያ እና ውስብስብ ጽሁፍ እቅድ ቋንቋዎች ድጋፍ ጀምሮ ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>."
+msgstr "የ መሰረታዊ ፊደሎች ማሰናጃዎች ይወስኑ: የ እስያ እና ውስብስብ ጽሁፍ እቅድ ቋንቋዎች ድጋፍ ጀምሮ ከሆነ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>"
#: 01040300.xhp
msgctxt ""
@@ -5830,7 +5838,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>"
#: 01040400.xhp
msgctxt ""
@@ -5846,7 +5854,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> ሜዳዎች ናቸው"
#: 01040400.xhp
msgctxt ""
@@ -6558,7 +6566,7 @@ msgctxt ""
"par_id3149418\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">If you have inserted text using the <emph>Hidden Paragraph</emph> field, specifies whether to display the hidden paragraph.</ahelp> This option has the same function as the menu commands <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\">View - Hidden Paragraphs</link></caseinline><defaultinline>View - Hidden Paragraphs</defaultinline></switchinline> available in open text documents."
-msgstr "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">እርስዎ ጽሁፍ ካስገቡ በመጠቀም <emph>የ ተደበቀ አንቀጽ</emph> ሜዳ: የ ተደበቀ አንቀጽ ይታይ እንደሆን ይወስናል </ahelp> ይህ ምርጫ ተመሳሳይ ተግባር አለው እንደ ዝርዝር ትእዛዞች <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\">መመልከቻ - የ ተደበቁ አንቀጾች</link></caseinline><defaultinline>መመልከቻ - የ ተደበቁ አንቀጾች</defaultinline></switchinline> ዝግጁ የሚሆነው ለ ተከፈተ የ ጽሁፍ ሰነድ ነው"
+msgstr "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">እርስዎ ጽሁፍ ካስገቡ በመጠቀም <emph> የ ተደበቀ አንቀጽ </emph> ሜዳ: የ ተደበቀ አንቀጽ ይታይ እንደሆን ይወስናል </ahelp> ይህ ምርጫ ተመሳሳይ ተግባር አለው እንደ ዝርዝር ትእዛዞች <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\"> መመልከቻ - የ ተደበቁ አንቀጾች </link></caseinline><defaultinline> መመልከቻ - የ ተደበቁ አንቀጾች </defaultinline></switchinline> ዝግጁ የሚሆነው ለ ተከፈተ የ ጽሁፍ ሰነድ ነው"
#: 01040600.xhp
msgctxt ""
@@ -6910,7 +6918,7 @@ msgctxt ""
"hd_id050420171032255464\n"
"help.text"
msgid "Settings for automatic links updates stored in documents are ignored for security reasons. Link updates are always bounded by %PRODUCTNAME Security settings in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME – Security</item>."
-msgstr "በ ሰነድ ውስጥ ራሱ በራሱ አገናኝ እንዲያሻሽል የ ተቀመጠው ይተዋል ለ ደህንነት ሲባል: አገናኝ ማሻሻያ ሁልጊዜ የሚሰራው በ %PRODUCTNAME ደህንነት ማሰናጃ ነው: በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያ - ምርጫ...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME – ደህንነት </item>."
+msgstr "በ ሰነድ ውስጥ ራሱ በራሱ አገናኝ እንዲያሻሽል የ ተቀመጠው ይተዋል ለ ደህንነት ሲባል: አገናኝ ማሻሻያ ሁልጊዜ የሚሰራው በ %PRODUCTNAME ደህንነት ማሰናጃ ነው: በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያ - ምርጫ...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME – ደህንነት </item>"
#: 01040900.xhp
msgctxt ""
@@ -6934,7 +6942,7 @@ msgctxt ""
"par_id050420171020567355\n"
"help.text"
msgid "This setting is treated as <emph>On request</emph> unless either the global macro security level is set to Low in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - Security - Macro Security... - Security Level - Low (not recommended)</item> or the document is located in a trusted place defined by <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - Security - Macro Security... - Trusted Sources - Trusted File Locations</item>."
-msgstr "ይህ ማሰናጃ የሚወሰደው እንደ <emph> ጥያቄ ነው </emph> ያለ በለዚያ አንዱ የ አለም አቀፍ የ ማክሮ ደህንነት ደረጃ የ ተሰናዳው እንደ ዝቅተኛ ነው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - ደህንነት - የ ማክሮ ደህንነት... - ደህንነት ደረጃ - ዝቅተኛ ነው (ይህን አንመክርም)</item> ወይንም ሰነዱ የሚገኘው በሚታመን ቦታ ነው በ ተገለጸው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - ደህንነት - የ ማክሮ ደህንነት... - የሚታመን ምንጭ – የሚታመን ፋይል አካባቢ </item>."
+msgstr "ይህ ማሰናጃ የሚወሰደው እንደ <emph> ጥያቄ ነው </emph> ያለ በለዚያ አንዱ የ አለም አቀፍ የ ማክሮስ ደህንነት ደረጃ የ ተሰናዳው እንደ ዝቅተኛ ነው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - ደህንነት - የ ማክሮስ ደህንነት... - ደህንነት ደረጃ - ዝቅተኛ ነው (ይህን አንመክርም)</item> ወይንም ሰነዱ የሚገኘው በሚታመን ቦታ ነው በ ተገለጸው በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - ደህንነት - የ ማክሮስ ደህንነት... - የሚታመን ምንጭ – የሚታመን ፋይል አካባቢ </item>"
#: 01040900.xhp
msgctxt ""
@@ -7214,7 +7222,7 @@ msgctxt ""
"par_id3150418\n"
"help.text"
msgid "<ahelp hid=\".\">When this setting is enabled, the text grid will look like square page.</ahelp> Square page is a kind of page layout which is used to train students to write articles in China and Japan."
-msgstr "<ahelp hid=\".\">ይህን ማሰናጃ በሚያስችሉ ጊዜ: የ ጽሁፍ መጋጠሚያ ስኴር ገጽ ይመስላል: </ahelp> ስኴር ገጽ የ ገጽ እቅድ ነው የሚጠቅመው ተማሪዎችን ጽሁፍ እንዲጽፉ ለማስተማር ነው በ China እና Japan."
+msgstr "<ahelp hid=\".\">ይህን ማሰናጃ በሚያስችሉ ጊዜ: የ ጽሁፍ መጋጠሚያ ስኴር ገጽ ይመስላል: </ahelp> ስኴር ገጽ የ ገጽ እቅድ ነው: የሚጠቅመው ተማሪዎችን ጽሁፍ እንዲጽፉ ለማስተማር ነው በ ቻይንኛ እና ጃፓንኛ"
#: 01040900.xhp
msgctxt ""
@@ -7846,7 +7854,7 @@ msgctxt ""
"par_id3145120\n"
"help.text"
msgid "<variable id=\"webbrowser\"><ahelp hid=\"SID_SW_ONLINEOPTIONS\">Defines the basic settings for $[officename] documents in HTML format.</ahelp></variable>"
-msgstr "<variable id=\"webbrowser\"><ahelp hid=\"SID_SW_ONLINEOPTIONS\">መእረታዊ መግለጫ ማሰናጃዎች ለ $[officename] ሰነዶች በ HTML አቀራረብ.</ahelp></variable>"
+msgstr "<variable id=\"webbrowser\"><ahelp hid=\"SID_SW_ONLINEOPTIONS\">መሰረታዊ መግለጫ ማሰናጃዎች ለ $[officename] ሰነዶች በ HTML አቀራረብ.</ahelp></variable>"
#: 01050100.xhp
msgctxt ""
@@ -8022,7 +8030,7 @@ msgctxt ""
"hd_id3149667\n"
"help.text"
msgid "Synchronize axes"
-msgstr "axes ማስማሚያ"
+msgstr "አክሲስ ማስማሚያ"
#: 01050100.xhp
msgctxt ""
@@ -8030,7 +8038,7 @@ msgctxt ""
"par_id3147350\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/optgridpage/synchronize\">Specifies whether to change the current grid settings symmetrically.</ahelp> The resolution and subdivision for the X and Y axes remain the same."
-msgstr "<ahelp hid=\"svx/ui/optgridpage/synchronize\">የ አሁኑን መጋጠሚያ ማሰናጃ ተመጣጣኝ ይቀየር እንደሆን መወሰኛ</ahelp>የ ሪዞሊሽን እና ንዑስ ክፍል ለ X እና Y axes ተመሳሳይ ሆኖ ይቀር እንደሆን"
+msgstr "<ahelp hid=\"svx/ui/optgridpage/synchronize\">የ አሁኑን መጋጠሚያ ማሰናጃ ተመጣጣኝ ይቀየር እንደሆን መወሰኛ </ahelp> የ ሪዞሊሽን እና ንዑስ ክፍል ለ X እና Y አክሲስ ተመሳሳይ ሆኖ ይቀር እንደሆን"
#: 01050100.xhp
msgctxt ""
@@ -8094,7 +8102,7 @@ msgctxt ""
"par_id984221\n"
"help.text"
msgid "Set the grid color on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Application Colors</link>."
-msgstr "የ መጋጠሚያ ቀለም ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">የ መተግበሪያ ቀለሞች</link>."
+msgstr "የ መጋጠሚያ ቀለም ማሰናጃ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\"> የ መተግበሪያ ቀለሞች </link>"
#: 01050300.xhp
msgctxt ""
@@ -8118,7 +8126,7 @@ msgctxt ""
"par_id3150443\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the background for HTML documents.</ahelp> The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background."
-msgstr "<ahelp hid=\".\" visibility=\"visible\">የ HTML ሰነዶች መደብ መግለጫ </ahelp>መደቡ ዋጋ አለው ለ ሁለቱም አዲስ የ HTML ሰነዶች እና እርስዎ ለጫኑት: እነዚህ የ ራሳቸውን መደብ የማይገልጹ ከሆነ"
+msgstr "<ahelp hid=\".\" visibility=\"visible\">የ HTML ሰነዶች መደብ መግለጫ </ahelp> መደቡ ዋጋ አለው ለ ሁለቱም አዲስ የ HTML ሰነዶች እና እርስዎ ለጫኑት: እነዚህ የ ራሳቸውን መደብ የማይገልጹ ከሆነ"
#: 01050300.xhp
msgctxt ""
@@ -8230,7 +8238,7 @@ msgctxt ""
"par_id3154286\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/color\">Specifies a color for the grid lines in the current document.</ahelp> To see the grid line color that was saved with the document, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Application Colors</emph>, under <emph>Scheme</emph> find the entry <emph>Spreadsheet - Grid lines</emph> and set the color to \"Automatic\"."
-msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/color\">የ መጋጠሚያ መስመሮች ለ አሁኑ ገጽ መወሰኛ</ahelp> የ መጋጠሚያ መስመሮች ቀለም ለ መመልከት በ ሰነድ ውስጥ የተቀመጠ: ይሂዱ ወደ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME – የ መተግበሪያ ቀለሞች</emph> ውስጥ <emph>ገጽታ</emph> ማስገቢያውን ይፈልጉ <emph>ሰንጠረዥ – የ መጋጠሚያ መስመሮች</emph> ቀለም ማሰናጃ ይቀይሩ ወደ \"ራሱ በራሱ\""
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/color\">የ መጋጠሚያ መስመሮች ለ አሁኑ ገጽ መወሰኛ</ahelp> የ መጋጠሚያ መስመሮች ቀለም ለ መመልከት በ ሰነድ ውስጥ የተቀመጠ: ይሂዱ ወደ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME – የ መተግበሪያ ቀለሞች</emph> ውስጥ <emph> ገጽታ </emph> ማስገቢያውን ይፈልጉ <emph> ሰንጠረዥ – የ መጋጠሚያ መስመሮች </emph> ቀለም ማሰናጃ ይቀይሩ ወደ \"ራሱ በራሱ\""
#: 01060100.xhp
msgctxt ""
@@ -8582,7 +8590,7 @@ msgctxt ""
"par_id3154658\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">Specifies whether to display the sheet tabs at the bottom of the spreadsheet document.</ahelp> If this box is not checked, you will only be able to switch between the sheets through the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">የ ወረቀት tabs በ ሰንጠረዥ ከ ታች በኩል ይታይ እንደሆን መወሰኛ </ahelp> እዚህ ሳጥን ውስጥ ምልክት ካልተደረገ: እርስዎ መቀየር የሚችሉት በ ወረቀቶች መከከል ነው በ <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">መቃኛ</link></caseinline><defaultinline>መቃኛ</defaultinline></switchinline>ውስጥ"
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">የ ወረቀት tabs በ ሰንጠረዥ ከ ታች በኩል ይታይ እንደሆን መወሰኛ </ahelp> እዚህ ሳጥን ውስጥ ምልክት ካልተደረገ: እርስዎ መቀየር የሚችሉት በ ወረቀቶች መከከል ነው በ <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\"> መቃኛ </link></caseinline><defaultinline> መቃኛ </defaultinline></switchinline> ውስጥ"
#: 01060100.xhp
msgctxt ""
@@ -8598,7 +8606,7 @@ msgctxt ""
"par_id3145135\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">If you have defined an <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link></caseinline><defaultinline>outline</defaultinline></switchinline>, the <emph>Outline symbols</emph> option specifies whether to view the outline symbols at the border of the sheet.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">እርስዎ ከ ገለጹ የ<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">ረቂቅ</link></caseinline><defaultinline>ረቂቅ</defaultinline></switchinline>የ <emph>ረቂቅ ምልክቶች</emph> ምርጫ ይታይ እንደሆን ይወስናል የ ረቂቅ ምልክቶች በ ወረቀቱ ድንበር ላይ</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">እርስዎ ከ ገለጹ የ <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\" name=\"outline\"> ረቂቅ </link></caseinline><defaultinline> ረቂቅ </defaultinline></switchinline> የ <emph> ረቂቅ ምልክቶች </emph> ምርጫ ይታይ እንደሆን ይወስናል የ ረቂቅ ምልክቶች በ ወረቀቱ ድንበር ላይ </ahelp>"
#: 01060300.xhp
msgctxt ""
@@ -8686,7 +8694,7 @@ msgctxt ""
"hd_id3148491\n"
"help.text"
msgid "Press Enter to move selection"
-msgstr "የተመረጠውን ለማንቀሳቀስ ማስገቢያውን ይጫኑ"
+msgstr "የ ተመረጠውን ለ ማንቀሳቀስ ማስገቢያውን ይጫኑ"
#: 01060300.xhp
msgctxt ""
@@ -8726,7 +8734,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scgeneralpage/formatcb\">Specifies whether to automatically apply the formatting attributes of the selected cell to the empty adjacent cells.</ahelp> If, for example, the contents of the selected cell have the bold attribute, this bold attribute will also apply to adjacent cells. Cells that already have a special format will not be modified by this function. You can see the range in question by pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + * (multiplication sign on the number pad) shortcut. This format also applies to all new values inserted within this range. The normal default settings apply to cells outside this range."
-msgstr "<ahelp hid=\"modules/scalc/ui/scgeneralpage/formatcb\">ራሱ በራሱ መፈጸሚያ የ አቀራረብ መለያ መወሰኛ ለ ተመረጠው ክፍል ወደ ባዶ አጓዳኝ ክፍሎች</ahelp> ለምሳሌ: የ ተመረጠው ክፍል ይዞታዎች የ ማድመቂያ መለያ አላቸው: ይህ የ ማድመቂያ መለያ መፈጸሚያ በ አጓዳኝ ክፍሎች ውስጥ: ቀደም ብሎ የ ተለየ አቀራረብ ያላቸው ክፍሎች አይሻሻሉም በዚህ ተግባር: እርስዎ መመልከት ይችላሉ የ ጥያቄዎችን መጠን በ መጫን የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + * (የ ማባዣ ምልክት በ ቁጥር መምቻ ገበታ ላይ) አቋራጭ: ይህ አቀራረብ ይፈጸማል ለ ሁሉም አዲስ ዋጋዎች ለሚገቡ በዚህ መጠን ውስጥ: መደበኛው ነባር ማሰናጃ ይፈጸማል ለ ክፍሎች ከ መጠኑ ውጪ ላሉ"
+msgstr "<ahelp hid=\"modules/scalc/ui/scgeneralpage/formatcb\">ራሱ በራሱ መፈጸሚያ የ አቀራረብ መለያ መወሰኛ ለ ተመረጠው ክፍል ወደ ባዶ አጓዳኝ ክፍሎች </ahelp> ለምሳሌ: የ ተመረጠው ክፍል ይዞታዎች የ ማድመቂያ መለያ አላቸው: ይህ የ ማድመቂያ መለያ መፈጸሚያ በ አጓዳኝ ክፍሎች ውስጥ: ቀደም ብሎ የ ተለየ አቀራረብ ያላቸው ክፍሎች አይሻሻሉም በዚህ ተግባር: እርስዎ መመልከት ይችላሉ የ ጥያቄዎችን መጠን በ መጫን የ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + * (የ ማባዣ ምልክት በ ቁጥር መምቻ ገበታ ላይ) አቋራጭ: ይህ አቀራረብ ይፈጸማል ለ ሁሉም አዲስ ዋጋዎች ለሚገቡ በዚህ መጠን ውስጥ: መደበኛው ነባር ማሰናጃ ይፈጸማል ለ ክፍሎች ከ መጠኑ ውጪ ላሉ"
#: 01060300.xhp
msgctxt ""
@@ -8750,7 +8758,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<emph>Example:</emph> If the range A1:B1 is referenced in a formula and you insert a new column after column B, the reference is expanded to A1:C1. If the range A1:B1 is referenced and a new row is inserted under row 1, the reference is not expanded, since there is only a single cell in the vertical direction."
-msgstr "<emph>ለምሳሌ:</emph> ይህ መጠን ከሆነ A1:B1 በ መቀመሪያ የ ተገለጸው እና እርስዎ ማስገባት ከ ፈለጉ አዲስ አምድ ከ አምድ B, በኋላ: መግለጫው ይሰፋል ወደ A1:C1. ይህ መጠን ከሆነ A1:B1 ይገለጻል እና አዲስ ረድፍ ይገባል ከ ረድፉ ስር 1: መግለጫው አይሰፋም: አንድ ነጠላ ክፍል ብቻ ስላለ በ ቁመት አቅጣጫ"
+msgstr "<emph>ለምሳሌ: </emph> ይህ መጠን ከሆነ A1:B1 በ መቀመሪያ የ ተገለጸው እና እርስዎ ማስገባት ከ ፈለጉ አዲስ አምድ ከ አምድ B, በኋላ: መግለጫው ይሰፋል ወደ A1:C1. ይህ መጠን ከሆነ A1:B1 ይገለጻል እና አዲስ ረድፍ ይገባል ከ ረድፉ ስር 1: መግለጫው አይሰፋም: አንድ ነጠላ ክፍል ብቻ በ ቁመት አቅጣጫ ስላለ"
#: 01060300.xhp
msgctxt ""
@@ -9110,7 +9118,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the <emph>Status</emph> Bar."
-msgstr "መደገሚያውን ማብሪያ በትክክል ለማስላት በ መቀመሪያ: ያለበለዚያ የ 'ክብ ማመሳከሪያ' ስህተት መልእክት ይታያል በ <emph>ሁኔታዎች</emph> መደርደሪያ ላይ"
+msgstr "መደገሚያውን ማብሪያ በትክክል ለማስላት በ መቀመሪያ: ያለበለዚያ የ 'ክብ ማመሳከሪያ' ስህተት መልእክት ይታያል በ <emph> ሁኔታዎች </emph> መደርደሪያ ላይ"
#: 01060500.xhp
msgctxt ""
@@ -9366,7 +9374,7 @@ msgctxt ""
"par_id3149211\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/match\">Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the <emph>Search criteria = and <> must apply to whole cells</emph> box and the <emph>Enable wildcards in formulas</emph> box are marked, $[officename] Calc behaves exactly as Microsoft Excel when searching cells in the database functions.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/match\">ይወስኑ እርስዎ ያሰናዱት የ መፈለጊያ ደንብ ለ ሰንጠረዥ ዳታቤዝ ተግባሮች መመሳሰል አለበት ለ ጠቅላላ ክፍሎች ባጣቃላይ: ሁለቱም የ <emph>መፈለጊያ ደንብ = እና <> በ ጠቅላላ ክፍሎች መፈጸም አለበት</emph> ሳጥን እና የ <emph>ሁለገብ በ መቀመሪያ ማስቻያ</emph> ሳጥን ምልክት መደረግ አለበት $[officename] ሰንጠረዥ ልክ እንደ Microsoft Excel ይሆናል ክፍሎች ውስጥ በሚፈልግ ጊዜ የ ዳታቤዝ ተግባሮች </ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/match\">ይወስኑ እርስዎ ያሰናዱት የ መፈለጊያ ደንብ ለ ሰንጠረዥ ዳታቤዝ ተግባሮች መመሳሰል አለበት ለ ጠቅላላ ክፍሎች ባጣቃላይ: ሁለቱም የ <emph> መፈለጊያ ደንብ = እና <> በ ጠቅላላ ክፍሎች መፈጸም አለበት </emph> ሳጥን እና የ <emph> ሁለገብ በ መቀመሪያ ማስቻያ </emph> ሳጥን ምልክት መደረግ አለበት $[officename] ሰንጠረዥ ልክ እንደ Microsoft Excel ይሆናል ክፍሎች ውስጥ በሚፈልግ ጊዜ የ ዳታቤዝ ተግባሮች </ahelp>"
#: 01060500.xhp
msgctxt ""
@@ -9454,7 +9462,7 @@ msgctxt ""
"par_id3148814\n"
"help.text"
msgid "If <emph>Search criteria = and <> must apply to whole cells </emph>is not enabled, the \"win\" search pattern acts like \"*win*\". The search pattern can be at any position within the cell when searching with the Calc database functions."
-msgstr "ከሆነ <emph>መፈለጊያ መመዘኛ = እና <> በ ጠቅላል ክፍሎች መፈጸም አለበት </emph>ካላስቻሉ: የ \"win\" መፈለጊያ ዘዴ ድርጊቱ እንደ \"*win*\". መፈለጊያ ዘዴ በ ማንኛውም ቦታ ሊሆን ይችላል በ ክፍል ውስጥ በሚፈለግ ጊዜ በ ሰንጠረዥ ዳታቤዝ ተግባር ውስጥ"
+msgstr "ከሆነ <emph> መፈለጊያ መመዘኛ = እና <> በ ጠቅላል ክፍሎች መፈጸም አለበት </emph> ካላስቻሉ: የ \"win\" መፈለጊያ ዘዴ ድርጊቱ እንደ \"*win*\". መፈለጊያ ዘዴ በ ማንኛውም ቦታ ሊሆን ይችላል በ ክፍል ውስጥ በሚፈለግ ጊዜ በ ሰንጠረዥ ዳታቤዝ ተግባር ውስጥ"
#: 01060500.xhp
msgctxt ""
@@ -9478,7 +9486,7 @@ msgctxt ""
"par_id3155093\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">Specifies that wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">መደበኛ መግለጫ መወሰኛ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">መደበኛ መግለጫ መወሰኛ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ </ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\"> ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ </caseinline></switchinline>"
#: 01060500.xhp
msgctxt ""
@@ -9526,7 +9534,7 @@ msgctxt ""
"par_id3155092\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">መደበኛ መግለጫ መወሰኛ ከ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">መደበኛ መግለጫ መወሰኛ ከ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ </ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\"> ዳታቤዝ ተግባሮች </link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ </caseinline></switchinline>"
#: 01060500.xhp
msgctxt ""
@@ -9550,7 +9558,7 @@ msgctxt ""
"par_id3155097\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Specifies that only literal strings are used when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">መወሰኛ ቃል በ ቃል ሀረጎችን የ ተጠቀሙትን በሚፈልጉ ጊዜ እና እንዲሁም የ ባህሪ ሀረግ ማነፃፀሪያ </ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link>ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">መወሰኛ ቃል በ ቃል ሀረጎችን የ ተጠቀሙትን በሚፈልጉ ጊዜ እና እንዲሁም የ ባህሪ ሀረግ ማነፃፀሪያ </ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\"> ዳታቤዝ ተግባሮች </link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ </caseinline></switchinline>"
#: 01060500.xhp
msgctxt ""
@@ -9582,7 +9590,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<emph>Example</emph>: Cell E5 contains the text \"Europe\". Below, in cell E6, is the value 100 and in cell E7 the value 200. If the <emph>Automatically find column and row labels</emph> box is marked, you can write the following formula in cell A1: =SUM(Europe)."
-msgstr "<emph>ለምሳሌ</emph>: ክፍል E5 ይህን ጽሁፍ ይዟል \"Europe\". ከ ታች: በ ክፍል E6, ዋጋ አለ 100 እና በ ክፍል E7 ዋጋ አለ 200. ይህ ከሆነ <emph>ራሱ በራሱ አምድ እና ረድፍ ፈልጎ ያገኛል ምልክቶች </emph> ሳጥን ምልክት የ ተደረገበትን: እርስዎ መጻፍ ይችላሉ የሚቀጥለውን መቀመሪያ በ ክፍል A1: =ድምር(Europe)."
+msgstr "<emph>ለምሳሌ </emph>: ክፍል E5 ይህን ጽሁፍ ይዟል \"አውሮፓ\": ከ ታች: በ ክፍል E6, ዋጋ አለ 100 እና በ ክፍል E7 ዋጋ አለ 200. ይህ ከሆነ <emph> ራሱ በራሱ አምድ እና ረድፍ ፈልጎ ያገኛል ምልክቶች </emph> ሳጥን ምልክት የ ተደረገበትን: እርስዎ መጻፍ ይችላሉ የሚቀጥለውን መቀመሪያ በ ክፍል A1: =ድምር(አውሮፓ)"
#: 01060500.xhp
msgctxt ""
@@ -9614,7 +9622,7 @@ msgctxt ""
"par_id3149568\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/prec\">Defines the number of decimals to be displayed for numbers with the <emph>General</emph> number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/prec\">ለ ቁጥሮች የሚታየውን የ ዴሲማል ቦታ መወሰኛ በ <emph>ጠቅላላ</emph>የ ቁጥር አቀራረብ: ቁጥሮቹ የሚታዩት እንደ ተጠጋጋ ቁጥር ነው: ነገር ግን የሚቀመጡት እንደ ተጠጋጋ ቁጥር አይደለም</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/prec\">ለ ቁጥሮች የሚታየውን የ ዴሲማል ቦታ መወሰኛ በ <emph> ጠቅላላ </emph> የ ቁጥር አቀራረብ: ቁጥሮቹ የሚታዩት እንደ ተጠጋጋ ቁጥር ነው: ነገር ግን የሚቀመጡት እንደ የ ተጠጋጋ ቁጥር አይደለም </ahelp>"
#: 01060600.xhp
msgctxt ""
@@ -9646,7 +9654,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "To record changes to your work, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record Changes\"><emph>Edit - Track Changes - Record Changes</emph></link>."
-msgstr "በ እርስዎ ስራ ላይ ለውጦችን ለ መቅረጽ: ይምረጡ <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record Changes\"><emph>ማረሚያ - ለውጦች መከታተያ - ለውጦች መቅረጫ</emph></link>."
+msgstr "በ እርስዎ ስራ ላይ ለውጦችን ለ መቅረጽ: ይምረጡ <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record Changes\"><emph> ማረሚያ - ለውጦች መከታተያ - ለውጦች መቅረጫ </emph></link>"
#: 01060600.xhp
msgctxt ""
@@ -10374,7 +10382,7 @@ msgctxt ""
"bm_id3147008\n"
"help.text"
msgid "<bookmark_value>rulers; visible in presentations</bookmark_value><bookmark_value>moving; using guide lines in presentations</bookmark_value><bookmark_value>guides; displaying when moving objects (Impress)</bookmark_value><bookmark_value>control point display in presentations</bookmark_value><bookmark_value>Bézier curves; control points in presentations</bookmark_value>"
-msgstr "<bookmark_value>ማስመሪያዎች: በ ማቅረቢያ ውስጥ የሚታይ </bookmark_value><bookmark_value> ማንቀሳቀሻ: የ መምሪያ መስመሮች በ ማቅረቢያ ውስጥ መጠቀሚያ </bookmark_value><bookmark_value> መምሪያ: እቃዎች በሚንቀሳቀሱ ጊዜ ማሳያ (ማስደነቂያ) </bookmark_value><bookmark_value> መቆጣጠሪያ ነጥብ ማሳያ በ ማቅረቢያ ውስጥ </bookmark_value><bookmark_value>የ ቤዤ ክቦች: መቆጣጠሪያ ነጥብ ማሳያ በ ማቅረቢያ ውስጥ </bookmark_value>"
+msgstr "<bookmark_value>ማስመሪያዎች: በ ማቅረቢያ ውስጥ የሚታይ </bookmark_value><bookmark_value> ማንቀሳቀሻ: የ መምሪያ መስመሮች በ ማቅረቢያ ውስጥ መጠቀሚያ </bookmark_value><bookmark_value> መምሪያ: እቃዎች በሚንቀሳቀሱ ጊዜ ማሳያ (ማስደነቂያ) </bookmark_value><bookmark_value> መቆጣጠሪያ ነጥብ ማሳያ በ ማቅረቢያ ውስጥ </bookmark_value><bookmark_value> የ ቤዤ ክቦች: መቆጣጠሪያ ነጥብ ማሳያ በ ማቅረቢያ ውስጥ </bookmark_value>"
#: 01070100.xhp
msgctxt ""
@@ -10990,7 +10998,7 @@ msgctxt ""
"par_id3147322\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/prntopts/brouchrb\">Select the<emph> Brochure </emph>option to print the document in brochure format.</ahelp> You can also decide if you want to print the front, the back or both sides of the brochure."
-msgstr "<ahelp hid=\"modules/simpress/ui/prntopts/brouchrb\">ይምረጡ የ<emph> Brochure </emph>ምርጫ የ እርስዎን ሰነድ ለማተም በ brochure አቀራረብ </ahelp> እርስዎ እንዲሁም መወሰን ይችላሉ ለማተም ፊት ለፊቱን ወይንም ጀርባውን ወይንም ሁለቱንም በኩል የ brochure."
+msgstr "<ahelp hid=\"modules/simpress/ui/prntopts/brouchrb\">ይምረጡ የ <emph> Brochure </emph> ምርጫ: የ እርስዎን ሰነድ ለማተም በ brochure አቀራረብ </ahelp> እርስዎ እንዲሁም መወሰን ይችላሉ ለማተም ፊት ለፊቱን ወይንም ጀርባውን ወይንም ሁለቱንም በኩል የ brochure."
#: 01070400.xhp
msgctxt ""
@@ -11398,7 +11406,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:SmEditOptions\">Defines the print format and print options for all new formula documents. These options apply when you print a formula directly from <item type=\"productname\">%PRODUCTNAME</item> Math.</ahelp></variable> You can also call the dialog by clicking the <emph>Options</emph> button in the <emph>Print</emph> dialog. The settings you define in the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline> dialog will be permanent settings, whereas the settings in the Print dialog are only valid for the current document."
-msgstr "<variable id=\"druckentext\"><ahelp hid=\".uno:SmEditOptions\">የ ማተሚያ አቀራረብ እና የ ማተሚያ ምርጫ ለ ሁሉም አዲስ መቀመሪያ ሰነዶች መግለጫ: እነዚህ ምርጫ የሚፈጸሙት እርስዎ መቀመሪያ በ ቀጥታ በሚያትሙ ጊዜ ነው ከ <item type=\"productname\">%PRODUCTNAME</item> ሂሳብ </ahelp></variable> እርስዎ እንዲሁም ንግግር መጥራት ይችላሉ በ መጫን የ <emph>ምርጫዎች</emph> ቁልፍ በ <emph>ማተሚያ</emph> ንግግር ውስጥ: እርስዎ ያሰናዱት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline> ንግግር ቋሚ ማሰናጃ ይሆናል: የ ማተሚያ ንግግር ግን ዋጋ የሚኖረው ለ አሁኑ ሰነድ ነው"
+msgstr "<variable id=\"druckentext\"><ahelp hid=\".uno:SmEditOptions\">የ ማተሚያ አቀራረብ እና የ ማተሚያ ምርጫ ለ ሁሉም አዲስ መቀመሪያ ሰነዶች መግለጫ: እነዚህ ምርጫ የሚፈጸሙት እርስዎ መቀመሪያ በ ቀጥታ በሚያትሙ ጊዜ ነው ከ <item type=\"productname\">%PRODUCTNAME</item> ሂሳብ </ahelp></variable> እርስዎ እንዲሁም ንግግር መጥራት ይችላሉ በ መጫን የ <emph> ምርጫዎች </emph> ቁልፍ በ <emph> ማተሚያ </emph> ንግግር ውስጥ: እርስዎ ያሰናዱት በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline> ንግግር ቋሚ ማሰናጃ ይሆናል: የ ማተሚያ ንግግር ግን ዋጋ የሚኖረው ለ አሁኑ ሰነድ ነው"
#: 01090000.xhp
msgctxt ""
@@ -11494,7 +11502,7 @@ msgctxt ""
"par_id3149516\n"
"help.text"
msgid "<ahelp hid=\".\">Applies a thin border to the formula area in the printout.</ahelp> <emph>Title</emph> and <emph>Formula text</emph> are only set down by a frame if the corresponding check box is active."
-msgstr "<ahelp hid=\".\">ቀጭን የ መስመር ድንበር በ መቀመሪያ ቦታ መክበቢያ በሚታተመው ወረቀት ላይ መፈጸሚያ </ahelp> <emph>አርእስት</emph> እና <emph>መቀመሪያ ጽሁፍ</emph> የሚሰናዳው በ ክፈፍ ነው ተመሳሳዩ ምልክት ማድረጊያ ሳጥን ንቁ ከሆነ"
+msgstr "<ahelp hid=\".\">ቀጭን የ መስመር ድንበር በ መቀመሪያ ቦታ መክበቢያ በሚታተመው ወረቀት ላይ መፈጸሚያ </ahelp> <emph> አርእስት </emph> እና <emph> መቀመሪያ ጽሁፍ </emph> የሚሰናዳው በ ክፈፍ ነው ተመሳሳዩ ምልክት ማድረጊያ ሳጥን ንቁ ከሆነ"
#: 01090100.xhp
msgctxt ""
@@ -11782,7 +11790,7 @@ msgctxt ""
"par_id05172017121531273\n"
"help.text"
msgid "After loading the VBA code, %PRODUCTNAME inserts the statement <item type=\"literal\">Option VBASupport 1</item> in every Basic module to enable a limited support for VBA statements, functions and objects. See <link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport Statement [Runtime]</link> for more information."
-msgstr "የ VBA ኮድ ከ ተጫነ በኋላ: %PRODUCTNAME አረፍተ ነገር ያስገባል <item type=\"literal\"> ምርጫ የ VBA ድጋፍ 1</item> በ ሁሉም የ Basic ክፍል ለማስቻል ድጋፍ ለ VBA አረፍተ ነገር: ተግባሮች እና እቃዎች: ይህን ይመልከቱ <link href=\"text/sbasic/shared/03103350.xhp\"> ምርጫ የ VBA ድጋፍ አረፍተ ነገር [Runtime]</link>ለ በለጠ መረጃ"
+msgstr "የ VBA ኮድ ከ ተጫነ በኋላ: %PRODUCTNAME አረፍተ ነገር ያስገባል <item type=\"literal\"> ምርጫ የ VBA ድጋፍ 1 </item> በ ሁሉም የ መሰረታዊ ክፍል ድጋፍ ለማስቻል ለ VBA አረፍተ ነገር: ለ ተግባሮች እና እቃዎች: ይህን ይመልከቱ <link href=\"text/sbasic/shared/03103350.xhp\"> ምርጫ የ VBA ድጋፍ አረፍተ ነገር [ማስኬጃ ጊዜ] </link> ለ በለጠ መረጃ"
#: 01130100.xhp
msgctxt ""
@@ -12254,7 +12262,7 @@ msgctxt ""
"par_id3159149\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optlanguagespage/asianlanguage\">Specifies the language used for the spellcheck function in Asian alphabets.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optlanguagespage/asianlanguage\">ለ ፊደል ማረሚያ ተግባር የ ተጠቀሙትን ቋንቋ መወሰኛ በ Asian ፊደሎች </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optlanguagespage/asianlanguage\">ለ ፊደል ማረሚያ ተግባር የ ተጠቀሙትን ቋንቋ መወሰኛ በ እሲያ ፊደሎች </ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -12550,7 +12558,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "Defines the default settings for 'first' and 'last' characters. In the dialog that appears when you choose <emph>Format -</emph><link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\"><emph>Asian Typography</emph></link>, you can specify whether the list of forbidden characters applies to those at the beginning or end of a line in a paragraph."
-msgstr "ነባር ማሰናጃ ለ 'መጀመሪያ' እና 'መጨረሻ' ባህሪዎች መገለጫ: በ ንግግር ውስጥ ይታያል እርስዎ ይምረጡ <emph>አቀራረብ -</emph><link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\"><emph>የ እስያ አጻጻፍ</emph></link> እርስዎ መወሰን ይችላሉ ዝርዝሩ የ ተከለከለ ባህሪ መፈጸም ይቻል እንደሆን በ መጀመሪያ እና በ መጨረሻ መስመር በ አንቀጽ ውስጥ"
+msgstr "ነባር ማሰናጃ ለ 'መጀመሪያ' እና 'መጨረሻ' ባህሪዎች መገለጫ: በ ንግግር ውስጥ ይታያል እርስዎ ይምረጡ <emph> አቀራረብ -</emph><link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\"><emph> የ እስያ አጻጻፍ </emph></link> እርስዎ መወሰን ይችላሉ ዝርዝሩ የ ተከለከለ ባህሪ መፈጸም ይቻል እንደሆን በ መጀመሪያ እና በ መጨረሻ መስመር በ አንቀጽ ውስጥ"
#: 01150100.xhp
msgctxt ""
@@ -12614,7 +12622,7 @@ msgctxt ""
"par_id3153367\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optasianpage/end\">Specifies the characters that should not appear alone at the end of a line.</ahelp> If a character typed here is positioned at the end of a line due to a line break, it is automatically moved to the beginning of the next line. For example, a currency symbol that appears in front of an amount never appears at the end of a line if it is part of the<emph> Not at end of line</emph> list."
-msgstr "<ahelp hid=\"cui/ui/optasianpage/end\">በ መስመር መጨረሻ ላይ እንዳይታይ የሚፈልጉትን ባህሪዎች መወሰኛ </ahelp> እዚህ የጻፉት ባህሪ በ መስመሩ መጨረሻ ላይ ከሆነ ከ መስመር መጨረሻ በኋላ: ራሱ በራሱ ይንቀሳቀሳል ወደሚቀጥለው አዲስ መስመር መጀመሪያ: ለምሳሌ: የ ገንዘብ ምልክት ከ መጠን በፊት እንጂ ከ መጠን በኋላ ሆኖ አያውቅም: ይህ አካል <emph> በ መስመር መጨረሻ ላይ አታድርግ</emph> ዝርዝር ውስጥ ካለ"
+msgstr "<ahelp hid=\"cui/ui/optasianpage/end\">በ መስመር መጨረሻ ላይ እንዳይታይ የሚፈልጉትን ባህሪዎች መወሰኛ </ahelp> እዚህ የጻፉት ባህሪ በ መስመሩ መጨረሻ ላይ ከሆነ ከ መስመር መጨረሻ በኋላ: ራሱ በራሱ ይንቀሳቀሳል ወደሚቀጥለው አዲስ መስመር መጀመሪያ: ለምሳሌ: የ ገንዘብ ምልክት ከ መጠን በፊት እንጂ ከ መጠን በኋላ ሆኖ አያውቅም: ይህን አካል <emph> በ መስመር መጨረሻ ላይ አታድርግ </emph> ዝርዝር ውስጥ ካለ"
#: 01150200.xhp
msgctxt ""
@@ -12894,7 +12902,7 @@ msgctxt ""
"bm_id3154136\n"
"help.text"
msgid "<bookmark_value>connections to data sources (Base)</bookmark_value><bookmark_value>data sources; connection settings (Base)</bookmark_value>"
-msgstr "<bookmark_value>ግንኙነት ወደ ዳታ ምንጭ (Base)</bookmark_value><bookmark_value>የ ዳታ ምንጭ: ግንኙነት ማሰናጃዎች (Base)</bookmark_value>"
+msgstr "<bookmark_value>ግንኙነት ወደ ዳታ ምንጭ (ቤዝ)</bookmark_value><bookmark_value>የ ዳታ ምንጭ: ግንኙነት ማሰናጃዎች (ቤዝ)</bookmark_value>"
#: 01160100.xhp
msgctxt ""
@@ -13118,7 +13126,7 @@ msgctxt ""
"par_idN1053E\n"
"help.text"
msgid "Creates or edits an entry in the <link href=\"text/shared/optionen/01160200.xhp\">Databases</link> tab page."
-msgstr "ማስገቢያ መፍጠሪያ ወይንም ማረሚያ ከ <link href=\"text/shared/optionen/01160200.xhp\">ዳታቤዝ</link> tab ገጽ ውስጥ"
+msgstr "ማስገቢያ መፍጠሪያ ወይንም ማረሚያ ከ <link href=\"text/shared/optionen/01160200.xhp\"> ዳታቤዝ </link> tab ገጽ ውስጥ"
#: 01160201.xhp
msgctxt ""
@@ -13374,7 +13382,7 @@ msgctxt ""
"par_id2507201509433461\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optbasicidepage/autoclose_proc\">Automatically insert closing statements for procedures.</ahelp> %PRODUCTNAME Basic IDE will add a statement <item type=\"literal\">End Sub</item> or <item type=\"literal\">End Function</item> after you type a <item type=\"literal\">Sub</item> or <item type=\"literal\">Function</item> statement and press <item type=\"keycode\">Enter</item>."
-msgstr "<ahelp hid=\"cui/ui/optbasicidepage/autoclose_proc\">ራሱ በራሱ ለ አሰራሩ የ መጨረሻ አረፍተ ነገር ማስገቢያ </ahelp> %PRODUCTNAME Basic IDE አረፍተ ነገር ይጨምራል <item type=\"literal\"> መጨረሻ ንዑስ </item> ወይንም <item type=\"literal\"> ተግባር መጨረሻ </item> እርስዎ ከ ጻፉ በኋላ የ <item type=\"literal\">ንዑስ</item> ወይንም <item type=\"literal\"> ተግባር </item> አረፍተ ነገር እና ይጫኑ <item type=\"keycode\"> ማስገቢያ </item>"
+msgstr "<ahelp hid=\"cui/ui/optbasicidepage/autoclose_proc\">ራሱ በራሱ ለ አሰራሩ የ መጨረሻ አረፍተ ነገር ማስገቢያ </ahelp> %PRODUCTNAME Basic IDE አረፍተ ነገር ይጨምራል <item type=\"literal\"> መጨረሻ ንዑስ </item> ወይንም <item type=\"literal\"> ተግባር መጨረሻ </item> እርስዎ ከ ጻፉ በኋላ የ <item type=\"literal\"> ንዑስ </item> ወይንም <item type=\"literal\"> ተግባር </item> አረፍተ ነገር እና ይጫኑ <item type=\"keycode\"> ማስገቢያ </item>"
#: BasicIDE.xhp
msgctxt ""
@@ -13614,7 +13622,7 @@ msgctxt ""
"par_id0709201509091351\n"
"help.text"
msgid "<item type=\"literal\">boolean</item>: true or false values;"
-msgstr "<item type=\"literal\"> ቡልያን </item>: እውነት ወይንም ሀሰት ዋጋዎች:"
+msgstr "<item type=\"literal\">ቡልያን </item>: እውነት ወይንም ሀሰት ዋጋዎች:"
#: expertconfig.xhp
msgctxt ""
@@ -13710,7 +13718,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "Specifies the support options for Java applications in %PRODUCTNAME, including which Java Runtime Environment (JRE) to use. It also specifies whether to use experimental (unstable) features such as macro recording and access expert configuration."
-msgstr "የ ድጋፍ ምርጫ መወሰኛ Java መተግበሪያዎች በ %PRODUCTNAME, እንዲሁም ያካትታል የ Java Runtime Environment (JRE) ለመጠቀም: እንዲሁም ይወስናል ይጠቀሙ እንደሆን ለ ሙከራ (ያልተረጋጋ) ገጽታዎች እንደ macro መቅረጫ እና መድረሻ ወደ ባለሞያ ማዋቀሪያ"
+msgstr "የ ድጋፍ ምርጫ መወሰኛ Java መተግበሪያዎች በ %PRODUCTNAME, እንዲሁም ያካትታል የ Java Runtime Environment (JRE) ለመጠቀም: እንዲሁም ይወስናል ይጠቀሙ እንደሆን ለ ሙከራ (ያልተረጋጋ) ገጽታዎች እንደ ማክሮስ መቅረጫ እና መድረሻ ወደ ባለሞያ ማዋቀሪያ"
#: java.xhp
msgctxt ""
@@ -13830,7 +13838,7 @@ msgctxt ""
"hd_id3148610\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optadvancedpage/macrorecording\">Enable macro recording</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optadvancedpage/macrorecording\">የ macro መቅረጫ ማስቻያ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optadvancedpage/macrorecording\">የ ማክሮስ መቅረጫ ማስቻያ </ahelp>"
#: java.xhp
msgctxt ""
@@ -13838,7 +13846,7 @@ msgctxt ""
"par_id3156345\n"
"help.text"
msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "ያስችላል የ macro መቅረጫ: ስለዚህ የ <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">መሳሪያዎች - Macros - Macro መቅረጫ</item></link> ዝርዝር እቃ ዝግጁ ይሆናል"
+msgstr "ያስችላል የ macro መቅረጫ: ስለዚህ የ <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\"> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </item></link> ዝርዝር እቃ ዝግጁ ይሆናል"
#: java.xhp
msgctxt ""
@@ -14062,7 +14070,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/javastartparametersdialog/assignlist\">Lists the assigned JRE start parameters. To remove a start parameter, select the parameter, and then click <emph>Remove</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/javastartparametersdialog/assignlist\">የ ተመደበው ዝርዝር ለ JRE ደንቦች ማስጀመሪያ: የ ማስጀመሪያ ደንቦች ለማስወገድ: ይምረጡ ደንቡን እና ከዛ ይጫኑ <emph>ማስወገጃ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/javastartparametersdialog/assignlist\">የ ተመደበው ዝርዝር ለ JRE ደንቦች ማስጀመሪያ: የ ማስጀመሪያ ደንቦች ለማስወገድ: ይምረጡ ደንቡን እና ከዛ ይጫኑ <emph> ማስወገጃ </emph></ahelp>"
#: javaparameters.xhp
msgctxt ""
@@ -14118,7 +14126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macro Security"
-msgstr "የ Macro ደህንነት"
+msgstr "የ ማክሮስ ደህንነት"
#: macrosecurity.xhp
msgctxt ""
@@ -14126,7 +14134,7 @@ msgctxt ""
"par_idN1054C\n"
"help.text"
msgid "<variable id=\"macrosecurity\"><link href=\"text/shared/optionen/macrosecurity.xhp\">Macro Security</link></variable>"
-msgstr "<variable id=\"macrosecurity\"><link href=\"text/shared/optionen/macrosecurity.xhp\">Macro Security</link></variable>"
+msgstr "<variable id=\"macrosecurity\"><link href=\"text/shared/optionen/macrosecurity.xhp\">የ ማክሮስ ደህንነት</link></variable>"
#: macrosecurity.xhp
msgctxt ""
@@ -14134,7 +14142,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "The Macro Security dialog appears when a document contains one or more macros. You can also call the dialog from the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01030300.xhp\"><emph>%PRODUCTNAME - Security</emph></link> page."
-msgstr "የ Macro ድህንነት ንግግር ይታያል ሰነዱ አንድ ወይንም ከዚያ በላይ macros በሚይዝ ጊዜ: እርስዎ እንዲሁም መጥራት ይችላሉ ንግግር ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01030300.xhp\"><emph>%PRODUCTNAME - ደህንነት</emph></link> ገጽ ውስጥ"
+msgstr "የ Macro ድህንነት ንግግር ይታያል ሰነዱ አንድ ወይንም ከዚያ በላይ ማክሮስ በሚይዝ ጊዜ: እርስዎ እንዲሁም መጥራት ይችላሉ ንግግር ከ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01030300.xhp\"><emph>%PRODUCTNAME - ደህንነት </emph></link> ገጽ ውስጥ"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14150,7 +14158,7 @@ msgctxt ""
"bm_id1203039\n"
"help.text"
msgid "<bookmark_value>security;security levels for macros</bookmark_value><bookmark_value>macros;security levels</bookmark_value><bookmark_value>levels;macro security</bookmark_value>"
-msgstr "<bookmark_value>ደህንነት: የ ደህንነት ደረጃዎች ለ macros</bookmark_value><bookmark_value>macros: የ ደህንነት ደረጃዎች</bookmark_value><bookmark_value>ደረጃዎች: የ macro ደህንነት</bookmark_value>"
+msgstr "<bookmark_value>ደህንነት: የ ደህንነት ደረጃዎች ለ ማክሮስ</bookmark_value><bookmark_value>ማክሮስ: የ ደህንነት ደረጃዎች</bookmark_value><bookmark_value>ደረጃዎች: የ ማክሮስ ደህንነት</bookmark_value>"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14166,7 +14174,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "Select the <link href=\"text/shared/optionen/macrosecurity.xhp\">macro security</link> level from one of four options. The options differ according to the security level. Macros that are allowed to run on a higher security level are also allowed to run in all lower levels."
-msgstr "ይምረጡ የ <link href=\"text/shared/optionen/macrosecurity.xhp\">macro ደህንነት</link> ደረጃ ከ አራቱ ምርጫዎች አንዱን: ምርጫው ይለያያል እንደ ድህንነቱ ደረጃ: Macros እንዲያስኬዱ የ ተፈቀደላቸው በ ከፍተኛ ደህንነት ደረጃ እንዲሁም ይፈቀድላቸዋል ማስኬድ በ ዝቅተኛ ደረጃ ውስጥ"
+msgstr "ይምረጡ የ <link href=\"text/shared/optionen/macrosecurity.xhp\"> ማክሮስ ደህንነት </link> ደረጃ ከ አራቱ ምርጫዎች አንዱን: ምርጫው ይለያያል እንደ ድህንነቱ ደረጃ: ማክሮስ እንዲያስኬዱ የ ተፈቀደላቸው በ ከፍተኛ ደህንነት ደረጃ እንዲሁም ይፈቀድላቸዋል ማስኬድ በ ዝቅተኛ ደረጃ ውስጥ"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14182,7 +14190,7 @@ msgctxt ""
"par_idN1057C\n"
"help.text"
msgid "Only macros from trusted file locations are allowed to run. All other macros, regardless of whether they are signed or not, are disabled."
-msgstr "macros ከታመኑ የ ፋይል አካባቢዎች ብቻ ማስኬድ ይፈቀዳል: የተቀሩት ሁሉም macros, ቢፈረሙም ባይፈረሙም ይሰናከላሉ"
+msgstr "ማክሮስ ከታመኑ የ ፋይል አካባቢዎች ብቻ ማስኬድ ይፈቀዳል: የተቀሩት ሁሉም ማክሮስ: ቢፈረሙም ባይፈረሙም ይሰናከላሉ"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14190,7 +14198,7 @@ msgctxt ""
"par_idN10591\n"
"help.text"
msgid "<ahelp hid=\".\">Trusted file locations can be set on the Trusted Sources tab page. Any macro from a trusted file location is allowed to run.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ታመኑ የ ፋይል አካባቢዎች ማሰናዳት ይቻላል በሚታመኑ ምንጮች tab ገጽ ውስጥ: ማንኛውም macro ከሚታመን የ ፋይል አካባቢ ማስኬድ ይቻላል </ahelp>"
+msgstr "<ahelp hid=\".\">የ ታመኑ የ ፋይል አካባቢዎች ማሰናዳት ይቻላል በሚታመኑ ምንጮች tab ገጽ ውስጥ: ማንኛውም ማክሮስ ከሚታመን የ ፋይል አካባቢ ማስኬድ ይቻላል </ahelp>"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14206,7 +14214,7 @@ msgctxt ""
"par_idN105A6\n"
"help.text"
msgid "Only signed macros from trusted sources are allowed to run. Unsigned macros are disabled."
-msgstr "የ ተፈረመ macros ከታመኑ ምንጮች ብቻ ማስኬድ ይፈቀዳል ያልተፈረሙ macros ይሰናከላሉ"
+msgstr "የ ተፈረመ ማክሮስ ከታመኑ ምንጮች ብቻ ማስኬድ ይፈቀዳል ያልተፈረሙ ማክሮስ ይሰናከላሉ"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14214,7 +14222,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "<ahelp hid=\".\">Trusted sources can be set on the Trusted Sources tab page. Only signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ታመኑ ምንጮች ማሰናዳት ይቻላል በሚታመኑ ምንጮች tab ገጽ ውስጥ: የ ተፈረሙ macros ብቻ ከ ተፈረሙ ምንጮች ማስኬጃድ ይፈቀዳል: በ ተጨማሪ ማንኛውም macro ከ ታመነ ፋይል አካባቢ ማስኬድ ይፈቀዳል </ahelp>"
+msgstr "<ahelp hid=\".\">የ ታመኑ ምንጮች ማሰናዳት ይቻላል በሚታመኑ ምንጮች tab ገጽ ውስጥ: የ ተፈረሙ ማክሮስ ብቻ ከ ተፈረሙ ምንጮች ማስኬጃ ይፈቀዳል: በ ተጨማሪ ማንኛውም ማክሮስ ከ ታመነ ፋይል አካባቢ ማስኬድ ይፈቀዳል </ahelp>"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14230,7 +14238,7 @@ msgctxt ""
"par_idN105BE\n"
"help.text"
msgid "Confirmation required before executing macros from unknown sources."
-msgstr "ማረጋገጫ ያስፈልጋል ካልታመኑ ምንጮች macros ከ ማስኬድዎት በፊት"
+msgstr "ማረጋገጫ ያስፈልጋል ካልታመኑ ምንጮች ማክሮስ ከ ማስኬድዎት በፊት"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14238,7 +14246,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "<ahelp hid=\".\">Trusted sources can be set on the Trusted Sources tab page. Signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run. All other macros require your confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ታመኑ ምንጮች ማሰናዳት ይቻላል በሚታመኑ ምንጮች tab ገጽ ውስጥ: የ ተፈረሙ macros ብቻ ከ ተፈረሙ ምንጮች ማስኬጃድ ይፈቀዳል: በ ተጨማሪ ማንኛውም macro ከ ታመነ ፋይል አካባቢ ማስኬድ ይፈቀዳል: ሁሉም ሌሎች macros የ እርስዎን ማረጋገጫ ይፈልጋሉ </ahelp>"
+msgstr "<ahelp hid=\".\">የ ታመኑ ምንጮች ማሰናዳት ይቻላል በሚታመኑ ምንጮች tab ገጽ ውስጥ: የ ተፈረሙ ማክሮስ ብቻ ከ ተፈረሙ ምንጮች ማስኬጃድ ይፈቀዳል: በ ተጨማሪ ማንኛውም ማክሮስ ከ ታመነ ፋይል አካባቢ ማስኬድ ይፈቀዳል: ሁሉም ሌሎች ማክሮስ የ እርስዎን ማረጋገጫ ይፈልጋሉ </ahelp>"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14254,7 +14262,7 @@ msgctxt ""
"par_idN105D6\n"
"help.text"
msgid "All macros will be executed without confirmation. Use this setting only if you are certain that all documents that will be opened are safe."
-msgstr "ያለ ማረጋገጫ ሁሉንም macros ማስኬጃ: ይህን ማሰናጃ የሚጠቀሙት ሁሉንም የሚከፍቱዋቸው ሰነዶች በ ደህንነት እንደሚክፈቱ እርግጠኛ ሲሆኑ ብቻ ነው"
+msgstr "ያለ ማረጋገጫ ሁሉንም ማክሮስ ማስኬጃ: ይህን ማሰናጃ የሚጠቀሙት ሁሉንም የሚከፍቱዋቸው ሰነዶች በ ደህንነት እንደሚክፈቱ እርግጠኛ ሲሆኑ ብቻ ነው"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -14262,7 +14270,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "<ahelp hid=\".\">A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors.</ahelp>"
-msgstr "<ahelp hid=\".\">macro በራሱ-እንዲጀምር ማሰናዳት ይቻላል: እና የሚጎዱ ተግባሮች መፈጸም ይችላል: ለምሳሌ: ማጥፋት: ወይንም ፋይሎች እንደገና መሰየም: ይህን ማሰናጃ አንመክርም እርስዎ ሰነድ በሚከፍቱ ጊዜ በ ሌሎች ደራሲዎች የተዘጋጀ </ahelp>"
+msgstr "<ahelp hid=\".\">ማክሮስ በራሱ-እንዲጀምር ማሰናዳት ይቻላል: እና የሚጎዱ ተግባሮች መፈጸም ይችላል: ለምሳሌ: ማጥፋት: ወይንም ፋይሎች እንደገና መሰየም: ይህን ማሰናጃ አንመክርም እርስዎ ሰነድ በሚከፍቱ ጊዜ በ ሌሎች ደራሲዎች የተዘጋጀ </ahelp>"
#: macrosecurity_ts.xhp
msgctxt ""
@@ -14286,7 +14294,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "Specifies the <link href=\"text/shared/optionen/macrosecurity.xhp\">macro security</link> settings for trusted certificates and trusted file locations."
-msgstr "መወሰኛ የ <link href=\"text/shared/optionen/macrosecurity.xhp\">macro security</link> ማሰናጃዎች ለሚታመኑ የምስክር ወረቀት እና ለሚታመኑ የ ፋይል አካባቢዎች"
+msgstr "መወሰኛ የ <link href=\"text/shared/optionen/macrosecurity.xhp\"> ማክሮስ ደህንነት </link> ማሰናጃዎች ለሚታመኑ የምስክር ወረቀት እና ለሚታመኑ የ ፋይል አካባቢዎች"
#: macrosecurity_ts.xhp
msgctxt ""
@@ -14350,7 +14358,7 @@ msgctxt ""
"par_idN105B1\n"
"help.text"
msgid "<ahelp hid=\".\">Document macros are only executed if they have been opened from one of the following locations.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ሰነድ macros የሚፈጸመው ቀደም ብለው ከ እነዚህ አካባቢዎች ከ አንዱ ጋር ተከፍተው ከ ነበረ ነው </ahelp>"
+msgstr "<ahelp hid=\".\">የ ሰነድ ማክሮስ የሚፈጸመው ቀደም ብለው ከ እነዚህ አካባቢዎች ከ አንዱ ጋር ተከፍተው ከ ነበረ ነው </ahelp>"
#: macrosecurity_ts.xhp
msgctxt ""
@@ -14366,7 +14374,7 @@ msgctxt ""
"par_idN105B8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a folder selection dialog. Select a folder from which all macros are allowed to execute.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ ፎልደር ንግግር: ይምረጡ ፎልደር ሁሉንም macros መፈጸም የሚቻልበትን </ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ ፎልደር ንግግር: ይምረጡ ፎልደር ሁሉንም ማክሮስ መፈጸም የሚቻልበትን </ahelp>"
#: macrosecurity_ts.xhp
msgctxt ""
@@ -15126,7 +15134,7 @@ msgctxt ""
"par_idN10680\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/password\">Select to always enable the <emph>Save with password</emph> option in the file save dialogs. Deselect the option to save files by default without password.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/password\">ይምረጡ ሁል ጊዜ ለ ማስቻል: በ <emph>መግቢያ ቃል ማስቀመጫ</emph> ምርጫ በ ፋይል ማስቀመጫ ንግግር ውስጥ: ምልክቱን ያጥፉ ከ ምርጫው ላይ ያለ መግቢያ ቃል እንደ ነባር ለማስቀመጥ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/password\">ይምረጡ ሁል ጊዜ ለ ማስቻል: በ <emph> መግቢያ ቃል ማስቀመጫ </emph> ምርጫ በ ፋይል ማስቀመጫ ንግግር ውስጥ: ምልክቱን ያጥፉ ከ ምርጫው ላይ ያለ መግቢያ ቃል እንደ ነባር ለማስቀመጥ </ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15150,7 +15158,7 @@ msgctxt ""
"hd_id1972107\n"
"help.text"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
-msgstr "አገናኞች መከለከያ ከ ሰነዶች ውስጥ ወደ ያማይታመኑ አካባቢዎች (ይመልከቱ Macro Security)"
+msgstr "አገናኞች መከለከያ ከ ሰነዶች ውስጥ ወደ ያማይታመኑ አካባቢዎች (ይመልከቱ የ ማክሮስ ደህንነት)"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15158,7 +15166,7 @@ msgctxt ""
"par_id79043\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blocks the use of links pointing to images not in the trusted locations defined on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\">Trusted Sources</link> tab of the Macro Security dialog.</ahelp> This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in documents, only a placeholder frame is visible."
-msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">ወደ ምስሎች የሚጠቁሙ አገናኞች መከልከያ በሚታመኑ አካባቢዎች አይደለም በ ተገለጸው በ <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\"> የሚታመኑ ምንጮች </link> tab በ Macro Security ንግግር ውስጥ </ahelp> ይህ ደህንነትን ያጠነክራል እርስዎ የሚሰሩ ከሆነ በ ሰነዶች ከማይታመኑ ምንጮች ጋር (ለምሳሌ: ኢንተርኔት) እና የሚሰጉ ከሆነ ስለ አስተማማኝነቱ የ ምስል ማስኬጃ ሶፍትዌር አካላት: አገናኞች መከልከል ማለት ምስሎቹ ሰነዱ ላይ አይጫኑም: ስለዚህ ቦታ ያዢ ክፈፍ ብቻ ይታያል ማለት ነው:"
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">ወደ ምስሎች የሚጠቁሙ አገናኞች መከልከያ በሚታመኑ አካባቢዎች አይደለም በ ተገለጸው በ <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\"> የሚታመኑ ምንጮች </link> tab በ ማክሮስ ደህንነት ንግግር ውስጥ </ahelp> ይህ ደህንነትን ያጠነክራል እርስዎ የሚሰሩ ከሆነ በ ሰነዶች ከማይታመኑ ምንጮች ጋር (ለምሳሌ: ኢንተርኔት) እና የሚሰጉ ከሆነ ስለ አስተማማኝነቱ የ ምስል ማስኬጃ ሶፍትዌር አካላት: አገናኞች መከልከል ማለት ምስሎቹ ሰነዱ ላይ አይጫኑም: ስለዚህ ቦታ ያዢ ክፈፍ ብቻ ይታያል ማለት ነው:"
#: serverauthentication.xhp
msgctxt ""
@@ -15182,7 +15190,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "On the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge E-mail</link> tab page, click the <emph>Server Authentication</emph> button to specify the server security settings."
-msgstr "በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል </link> tab ገጽ ላይ: ይጫኑ የ <emph>ሰርቨር ማረጋገጫ</emph> ቁልፍ ለ መወሰን የ ሰርቨር ማረጋገጫ ማሰናጃዎች"
+msgstr "በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል </link> tab ገጽ ላይ: ይጫኑ የ <emph> ሰርቨር ማረጋገጫ </emph> ቁልፍ ለ መወሰን የ ሰርቨር ማረጋገጫ ማሰናጃዎች"
#: serverauthentication.xhp
msgctxt ""
@@ -15382,7 +15390,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge E-mail</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
-msgstr "እርስዎ ማሰናጃ በሚያስገቡ ጊዜ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል </link> tab ገጽ ላይ: እርስዎ መጫን ይችላሉ የ <emph>ማሰናጃዎች መሞከሪያ</emph> ቁልፍ የ እርስዎን ማሰናጃዎች ለ መሞከር"
+msgstr "እርስዎ ማሰናጃ በሚያስገቡ ጊዜ በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል </link> tab ገጽ ላይ: እርስዎ መጫን ይችላሉ የ <emph> ማሰናጃዎች መሞከሪያ </emph> ቁልፍ ውስጥ የ እርስዎን ማሰናጃዎች ለ መሞከር"
#: testaccount.xhp
msgctxt ""
@@ -15454,7 +15462,7 @@ msgctxt ""
"par_idN10545\n"
"help.text"
msgid "The View Certificate dialog opens when you click the View Certificate button on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">Trusted Sources</link> tab page of the <link href=\"text/shared/optionen/macrosecurity.xhp\">Macro Security</link> dialog."
-msgstr "የ ምስክር ወረቀት ንግግር መመልከቻ ለ መክፈት እርስዎ ይጫኑ የ ምስክር ወረቀት መመልከቻ ቁልፍ በ <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">የሚታመኑ ምንጮች</link> tab ገጽ ላይ በ <link href=\"text/shared/optionen/macrosecurity.xhp\">Macro Security</link> ንግግር ውስጥ"
+msgstr "የ ምስክር ወረቀት ንግግር መመልከቻ ለ መክፈት እርስዎ ይጫኑ የ ምስክር ወረቀት መመልከቻ ቁልፍ በ <link href=\"text/shared/optionen/macrosecurity_ts.xhp\"> የሚታመኑ ምንጮች </link> tab ገጽ ላይ በ <link href=\"text/shared/optionen/macrosecurity.xhp\"> የ ማክሮስ ደህንነት </link> ንግግር ውስጥ"
#: viewcertificate.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress.po b/source/am/helpcontent2/source/text/simpress.po
index 8887bd8f5a1..e17d7a4c734 100644
--- a/source/am/helpcontent2/source/text/simpress.po
+++ b/source/am/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-04 22:03+0000\n"
+"PO-Revision-Date: 2017-06-17 23:09+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496613826.000000\n"
+"X-POOTLE-MTIME: 1497740975.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3150202\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Drawing</emph> bar contains frequently used editing tools. Click the arrow next to an icon to open a toolbar that contains additional commands.</ahelp>"
-msgstr "<ahelp hid=\".\">የ <emph>መሳያ</emph> መደርደሪያ የያዘው አዘውትረው የሚጠቀሙበትን የ ማረሚያ መሳሪያዎች ነው፡ ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት ተጨማሪ የ እቃ መደርደሪያ ትእዛዞች ያላቸውን</ahelp>"
+msgstr "<ahelp hid=\".\">የ <emph> መሳያ </emph> መደርደሪያ የያዘው አዘውትረው የሚጠቀሙበትን የ ማረሚያ መሳሪያዎች ነው: ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት ተጨማሪ የ እቃ መደርደሪያ ትእዛዞች ያላቸውን </ahelp>"
#: main0210.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "To select an object on the current slide, click the <emph>Select</emph> tool (white arrow) on the Drawing bar, and then click the object."
-msgstr "ከ አሁኑ ተንሸራታች ውስጥ እቃ ለመምረጥ ይጫኑ የ <emph>ይምረጡ</emph> እቃ (ነጭ ቀስት) በ መሳያ መደርደሪያ ላይ እና ከዛ ይጫኑ የሚፈልጉትን እቃ"
+msgstr "ከ አሁኑ ተንሸራታች ውስጥ እቃ ለመምረጥ ይጫኑ የ <emph> ይምረጡ </emph> እቃ (ነጭ ቀስት) በ መሳያ መደርደሪያ ላይ እና ከዛ ይጫኑ የሚፈልጉትን እቃ"
#: main0210.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_idN126D7\n"
"help.text"
msgid "Opens the Arrows toolbar to insert lines and arrows."
-msgstr "የቀስት እቃ መደርደሪያ መክፈቻ መስመር እና ቀስቶች ለማስገቢያ"
+msgstr "የ ቀስት እቃ መደርደሪያ መክፈቻ መስመር እና ቀስቶች ለ ማስገቢያ"
#: main0210.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id3145252\n"
"help.text"
msgid "<ahelp hid=\".\">In<emph> Outline View</emph>, the Outline bar contains frequently used editing tools.</ahelp> Click the arrow next to an icon to open a toolbar that contains additional commands."
-msgstr "<ahelp hid=\".\">በ<emph> እቅድ መመልከቻ</emph>, የ እቅድ መመልከቻ መደርደሪያ አዘውትረው የሚጠቀሙበት የ ማረሚያ መሳሪያዎች ይዟል</ahelp> ይጫኑ ምልክቱ አጠገብ ያለውን ቀስት የ እቃ መደርደሪያ ተጨማሪ ትእዛዞችን የያዘ ለመክፈት"
+msgstr "<ahelp hid=\".\">በ<emph> እቅድ መመልከቻ</emph> የ እቅድ መመልከቻ መደርደሪያ አዘውትረው የሚጠቀሙበት የ ማረሚያ መሳሪያዎች ይዟል </ahelp> ይጫኑ ምልክቱ አጠገብ ያለውን ቀስት የ እቃ መደርደሪያ ተጨማሪ ትእዛዞችን የያዘ ለ መክፈት"
#: main0211.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/00.po b/source/am/helpcontent2/source/text/simpress/00.po
index 71ed8f3151f..a81f408a4b4 100644
--- a/source/am/helpcontent2/source/text/simpress/00.po
+++ b/source/am/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-05 02:38+0000\n"
+"PO-Revision-Date: 2017-06-19 22:00+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496630309.000000\n"
+"X-POOTLE-MTIME: 1497909641.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "<variable id=\"dtvlc\">Choose <emph>File - Export</emph></variable>"
-msgstr "<variable id=\"dtvlc\">ይምረጡ <emph>ፋይል - መላኪያ </emph></variable>"
+msgstr "<variable id=\"dtvlc\">ይምረጡ <emph> ፋይል - መላኪያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "Choose <emph>Edit - Duplicate</emph>"
-msgstr "ይምረጡ <emph>ማባዣ - ማረሚያ</emph>"
+msgstr "ይምረጡ <emph> ማባዣ - ማረሚያ </emph>"
#: 00000402.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id3149263\n"
"help.text"
msgid "<variable id=\"bearbueber\">Choose <emph>Edit - Cross-fading</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only) </variable>"
-msgstr "<variable id=\"bearbueber\">ይምረጡ <emph>ማረሚያ - መስቀልኛ-ማፍዘዣ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ) </variable>"
+msgstr "<variable id=\"bearbueber\">ይምረጡ <emph> ማረሚያ - መስቀልኛ-ማፍዘዣ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ) </variable>"
#: 00000402.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3149666\n"
"help.text"
msgid "<variable id=\"basl\">Choose <emph>Edit - Delete Slide</emph></variable>"
-msgstr "<variable id=\"basl\">ይምረጡ <emph>ማረሚያ - ተንሸራታች ማጥፊያ </emph></variable>"
+msgstr "<variable id=\"basl\">ይምረጡ <emph> ማረሚያ - ተንሸራታች ማጥፊያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "<variable id=\"baebl\">Open the context menu of an inserted layer, then choose <emph>Delete Layer</emph></variable>"
-msgstr "<variable id=\"baebl\">ላስገቡት ደረጃ የ አገባብ ዝርዝር ይክፈቱ እና ከዛ ይምረጡ <emph>ደረጃ ማጥፊያ</emph></variable>"
+msgstr "<variable id=\"baebl\">ላስገቡት ደረጃ የ አገባብ ዝርዝር ይክፈቱ እና ከዛ ይምረጡ <emph> ደረጃ ማጥፊያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "<variable id=\"feldbefehl\">Choose <emph>Edit - Fields</emph></variable>"
-msgstr "<variable id=\"feldbefehl\">ይምረጡ <emph>ማረሚያ - ሜዳዎች</emph></variable>"
+msgstr "<variable id=\"feldbefehl\">ይምረጡ <emph> ማረሚያ - ሜዳዎች </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3145388\n"
"help.text"
msgid "<variable id=\"efglbe\">Select a snap point or line, open the context menu, and choose <emph>Edit Snap Point/Line</emph></variable>"
-msgstr "<variable id=\"efglbe\">ይምረጡ የ መቁረጫ ነጥብ ወይንም መስመር የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph>ማረሚያ መቁረጫ ነጥብ/መስመር</emph></variable>"
+msgstr "<variable id=\"efglbe\">ይምረጡ የ መቁረጫ ነጥብ ወይንም መስመር የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ማረሚያ መቁረጫ ነጥብ/መስመር </emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3144769\n"
"help.text"
msgid "On the <emph>Insert</emph> toolbar, click"
-msgstr "የ <emph>ማስገቢያ</emph> እቃ መደርደሪያውን ይጫኑ"
+msgstr "የ <emph> ማስገቢያ </emph> እቃ መደርደሪያውን ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "On the <emph>Insert</emph> toolbar, click"
-msgstr "የ <emph>ማስገቢያ</emph> እቃ መደርደሪያውን ይጫኑ"
+msgstr "የ <emph> ማስገቢያ </emph> እቃ መደርደሪያውን ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Format - Page</emph></variable>"
-msgstr "<variable id=\"frtite\">ይምረጡ <emph>የገጽ - አቀራረብ</emph></variable>"
+msgstr "<variable id=\"frtite\">ይምረጡ <emph> የ ገጽ - አቀራረብ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Format - Page</emph> and then click the <emph>Page</emph> tab</variable>"
-msgstr "<variable id=\"frtites\">ይምረጡ <emph>የገጽ - አቀራረብ</emph> እና ከዛ ይጫኑ <emph>ገጽ</emph> tab</variable>"
+msgstr "<variable id=\"frtites\">ይምረጡ <emph> የ ገጽ - አቀራረብ </emph> እና ከዛ ይጫኑ <emph> ገጽ </emph> tab</variable>"
#: 00000405.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Format - Page</emph> and then click the <emph>Background</emph> tab</variable>"
-msgstr "<variable id=\"frtiteh\">ይምረጡ <emph>የ ገጽ - አቀራረብ</emph> እና ከዛ ይጫኑ<emph>መደብ</emph> tab</variable>"
+msgstr "<variable id=\"frtiteh\">ይምረጡ <emph> የ ገጽ - አቀራረብ </emph> እና ከዛ ይጫኑ <emph> መደብ </emph> tab</variable>"
#: 00000405.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3155266\n"
"help.text"
msgid "<variable id=\"adnsei\">Choose <emph>Format - Slide Layout</emph></variable>"
-msgstr "<variable id=\"adnsei\">ይምረጡ <emph> አቀራረብ - የ ተንሸራታች እቅድ</emph></variable>"
+msgstr "<variable id=\"adnsei\">ይምረጡ <emph> አቀራረብ - የ ተንሸራታች እቅድ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3152874\n"
"help.text"
msgid "In a Draw document, right-click a layer tab and choose <emph>Modify Layer</emph>"
-msgstr "በ መሳያ ሰነድ ውስጥ በ ቀኝ-ይጫኑ የ ደሬዐጃ tab እና ይምረጡ <emph>ደረጃ ማሻሻያ</emph>"
+msgstr "በ መሳያ ሰነድ ውስጥ በ ቀኝ-ይጫኑ የ ደሬዐጃ tab እና ይምረጡ <emph> ደረጃ ማሻሻያ </emph>"
#: 00000405.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3154765\n"
"help.text"
msgid "Choose <emph>Format - Layer</emph> (only $[officename] Draw)"
-msgstr "ይምረጡ <emph>አቀራረብ - ደረጃ</emph> (ለ $[officename] መሳያ ብቻ)"
+msgstr "ይምረጡ <emph> አቀራረብ - ደረጃ </emph> (ለ $[officename] መሳያ ብቻ)"
#: 00000405.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Choose <emph>Modify - Convert </emph>(<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ </emph>(<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ </emph>(<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert</emph>"
-msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ<emph>መቀየሪያ</emph>"
+msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> መቀየሪያ </emph>"
#: 00000413.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3149124\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To Curve</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ ክብ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ ክብ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3156384\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To Polygon</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ ፖሊጎን</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ ፖሊጎን </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id3147001\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To 3D</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ 3ዲ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ 3ዲ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3150205\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To 3D Rotation Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ 3ዲ እቃ ማሽከርከሪያ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ 3ዲ እቃ ማሽከርከሪያ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3152986\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To Bitmap</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ Bitmap</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ Bitmap </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To Metafile</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ Metafile</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ Metafile </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Choose <emph>Modify - Convert - To Contour</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ ቅርጽ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ ቅርጽ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"par_id3153008\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - In Front of Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - ከ እቃው ፊት ለፊት</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - ከ እቃው ፊት ለፊት </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3145117\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Arrange - In Front of Object</emph>"
-msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph>ማዘጋጃ - ከ እቃው ፊት ለፊት</emph>"
+msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ማዘጋጃ - ከ እቃው ፊት ለፊት </emph>"
#: 00000413.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_id3147249\n"
"help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph>ማዘጋጃ</emph> እቃ መደርደሪያ እና ይጫኑ:"
+msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph> ማዘጋጃ </emph> እቃ መደርደሪያ እና ይጫኑ:"
#: 00000413.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Behind Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - ከእቃው ጀርባ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - ከእቃው ጀርባ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id3150482\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Arrange - Behind Object</emph>"
-msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph>ማዘጋጃ - ከ እቃው ጀርባ</emph>"
+msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ማዘጋጃ - ከ እቃው ጀርባ </emph>"
#: 00000413.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3149886\n"
"help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph>ማዘጋጃ</emph> እቃ መደርደሪያ እና ይጫኑ:"
+msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph> ማዘጋጃ </emph> እቃ መደርደሪያ እና ይጫኑ:"
#: 00000413.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_id3150002\n"
"help.text"
msgid "Choose <emph>Modify - Arrange - Reverse</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ማዘጋጃ - መገልበጫ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ማዘጋጃ - መገልበጫ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3150339\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Arrange - Reverse</emph>"
-msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph>ማዘጋጃ - በ ግልባጭ</emph>"
+msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ማዘጋጃ - በ ግልባጭ </emph>"
#: 00000413.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_id3145164\n"
"help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph>ማዘጋጃ</emph> እቃ መደርደሪያ እና ይጫኑ:"
+msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph> ማዘጋጃ </emph> እቃ መደርደሪያ እና ይጫኑ:"
#: 00000413.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3145298\n"
"help.text"
msgid "Choose <emph>Modify - Combine</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መቀላቀያ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መቀላቀያ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3150930\n"
"help.text"
msgid "Choose <emph>Modify - Split</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መክፈያ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መክፈያ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"par_id3151022\n"
"help.text"
msgid "Select a combined object, open the context menu and choose <emph>Split</emph>."
-msgstr "የተቀላቀሉ እቃዎችን ይምረጡ: የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ<emph>መክፈያ</emph>."
+msgstr "የ ተቀላቀሉ እቃዎችን ይምረጡ: የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> መክፈያ </emph>"
#: 00000413.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3154872\n"
"help.text"
msgid "Choose <emph>Modify - Connect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - አገናኝ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - አገናኝ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3153920\n"
"help.text"
msgid "Choose <emph>Modify - Break</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - መጨረሻ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - መጨረሻ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3148430\n"
"help.text"
msgid "Select a line that was created by connecting two or more lines, open the context menu and choose <emph>Break</emph>."
-msgstr "ሁለት ወይንም ከዚያ በላይ መስመሮችን በማገኛኘት የተፈጠረውን መስመር ይምረጡ: የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph>መጨረሻ</emph>."
+msgstr "ሁለት ወይንም ከዚያ በላይ መስመሮችን በማገኛኘት የተፈጠረውን መስመር ይምረጡ: የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> መጨረሻ </emph>"
#: 00000413.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3155408\n"
"help.text"
msgid "Choose <emph>Modify - Shapes</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ቅርጾች </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ቅርጾች </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id3163822\n"
"help.text"
msgid "Choose <emph>Modify - Shapes - Merge</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ቅርጾች - ማዋሀጃ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ቅርጾች - ማዋሀጃ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3150874\n"
"help.text"
msgid "Choose <emph>Modify - Shapes - Subtract</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ቅርጾች - መቀነሻ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ቅርጾች - መቀነሻ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3145204\n"
"help.text"
msgid "Choose <emph>Modify - Shapes - Intersect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "ይምረጡ <emph>ማሻሻያ - ቅርጾች - መገናኛ</emph> (<item type=\"productname\">%PRODUCTNAME</item> ለመሳያ ብቻ)"
+msgstr "ይምረጡ <emph> ማሻሻያ - ቅርጾች - መገናኛ </emph> (<item type=\"productname\">%PRODUCTNAME</item> ለ መሳያ ብቻ)"
#: 00000413.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3152931\n"
"help.text"
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Intersect</emph>"
-msgstr "ሁለት ወይንም ከዚያ በላይ እቃዎችን ይምረጡ: የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph>ቅርጾች - መገናኛ</emph>"
+msgstr "ሁለት ወይንም ከዚያ በላይ እቃዎችን ይምረጡ: የ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ቅርጾች - መገናኛ </emph>"
#: slide_menu.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index 0048aa88126..9e11f08add1 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 00:06+0000\n"
+"PO-Revision-Date: 2017-06-19 22:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496707573.000000\n"
+"X-POOTLE-MTIME: 1497910097.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3150299\n"
"help.text"
msgid "Select a paper format supported by your printer. You can also create a custom page size by selecting <emph>User </emph>and entering the size dimensions in the <emph>Width</emph> and <emph>Height</emph> boxes."
-msgstr "ይምረጡ የ ወረቀት አቀራረብ በ እርስዎ ማተሚያ የሚደገፈውን፡ እንዲሁም መፍጠር ይችላሉ የ ገጽ መጠን ማስተካከያ በ መምረጥ <emph>ተጠቃሚ </emph>እና የ አቅጣጫ መጠን በ <emph>ስፋት</emph> እና <emph>እርዝመት</emph> ሳጥኖች ውስጥ"
+msgstr "ይምረጡ የ ወረቀት አቀራረብ በ እርስዎ ማተሚያ የሚደገፈውን፡ እንዲሁም መፍጠር ይችላሉ የ ገጽ መጠን ማስተካከያ በ መምረጥ <emph> ተጠቃሚ </emph> እና የ አቅጣጫ መጠን በ <emph> ስፋት </emph> እና <emph> እርዝመት </emph> ሳጥኖች ውስጥ"
#: 01180001.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id3148702\n"
"help.text"
msgid "<ahelp hid=\".uno:RenamePage\">Renames the selected <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">slide </caseinline><defaultinline>page</defaultinline></switchinline>.</ahelp>"
-msgstr "<ahelp hid=\".uno:RenamePage\">የተመረጠውን እንደገና መሰየሚያ <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">ተንሸራታች </caseinline><defaultinline>ገጽ</defaultinline></switchinline>.</ahelp>"
+msgstr "<ahelp hid=\".uno:RenamePage\">የተመረጠውን እንደገና መሰየሚያ <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> ተንሸራታች </caseinline><defaultinline> ገጽ </defaultinline></switchinline></ahelp>"
#: 02140000.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3154754\n"
"help.text"
msgid "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\"modules/simpress/ui/dlgfield/EditFieldsDialog\">Edits the properties of an inserted field.</ahelp> </variable></variable> To edit an inserted field, double-click it. <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Then choose <emph>Edit - Fields</emph>.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"DRAW\">Then choose <emph>Edit - Fields</emph>.</caseinline></switchinline>"
-msgstr "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\"modules/simpress/ui/dlgfield/EditFieldsDialog\">የ ገቡትን ሜዳዎች ባህሪ ማረሚያ</ahelp> </variable></variable> የ ገባውን ሜዳ ለማረም ሁለት-ጊዜ ይጫኑ <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">እና ከዛ ይምረጡ <emph> ማረሚያ - ሜዳዎች</emph>.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"DRAW\"> እና ከዛ ይምረጡ <emph>ማረሚያ - ሜዳዎች</emph>.</caseinline></switchinline>"
+msgstr "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\"modules/simpress/ui/dlgfield/EditFieldsDialog\">የ ገቡትን ሜዳዎች ባህሪ ማረሚያ</ahelp> </variable></variable> የ ገባውን ሜዳ ለማረም ሁለት-ጊዜ ይጫኑ <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> እና ከዛ ይምረጡ <emph> ማረሚያ - ሜዳዎች </emph>.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"DRAW\"> እና ከዛ ይምረጡ <emph> ማረሚያ - ሜዳዎች </emph></caseinline></switchinline>"
#: 02160000.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id110120150547279702\n"
"help.text"
msgid "To modify the number of slides you can print on a page, open the <emph>Properties</emph> sidebar deck and double-click a layout on the <emph>Layout</emph> content panel."
-msgstr "እርስዎ በ ገጽ ላይ ሊያትሙ የሚችሉትን ተንሸራታች ቁጥር ለማሻሻል: ይክፈቱ የ <emph>ባህሪዎች</emph> ተንሸራታች መደርደሪያ ማሳረፊያ እና ሁለት ጊዜ-ይጫኑ በ እቅድ ላይ በ <emph>እቅድ</emph> ይዞታ ክፍል ውስጥ"
+msgstr "እርስዎ በ ገጽ ላይ ሊያትሙ የሚችሉትን ተንሸራታች ቁጥር ለማሻሻል: ይክፈቱ የ <emph> ባህሪዎች </emph> ተንሸራታች መደርደሪያ ማሳረፊያ እና ሁለት ጊዜ-ይጫኑ በ እቅድ ላይ በ <emph> እቅድ </emph> ይዞታ ክፍል ውስጥ"
#: 03130000.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "Under Windows, right-click the *.sxi or *.odp file in the File Explorer, then choose <emph>Show</emph>."
-msgstr "በ መስኮት ስር: በ ቀኝ-ይጫኑ በ *.sxi ወይንም *.odp ፋይል ውስጥ በ መስኮት መቃኛ ውስጥ እና ከዛ ይምረጡ <emph>ማሳያ</emph>."
+msgstr "በ መስኮት ስር: በ ቀኝ-ይጫኑ በ *.sxi ወይንም *.odp ፋይል ውስጥ በ መስኮት መቃኛ ውስጥ እና ከዛ ይምረጡ <emph> ማሳያ </emph>"
#: 03150000.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"hd_id3155333\n"
"help.text"
msgid "Grayscale"
-msgstr "Grayscale"
+msgstr "ግራጫማ"
#: 03180000.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "Click the plus sign next to the file name and select the elements you want to insert. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> to add to or Shift to expand your selection."
-msgstr "ይጫኑ የ መደመሪያ ምልክቱን ከ ፋይሉ ስም አጠገብ ያለውን እና ይምረጡ መጨመር የሚፈልጉትን አካል፡ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ለመጨመር ወይንም Shift ምርጫውን ለማስፋት"
+msgstr "ይጫኑ የ መደመሪያ ምልክቱን ከ ፋይሉ ስም አጠገብ ያለውን እና ይምረጡ መጨመር የሚፈልጉትን አካል ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> ለመጨመር ወይንም Shift ምርጫውን ለማስፋት"
#: 04110100.xhp
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "If you want to insert the file as a link, select <emph>Link</emph>."
-msgstr "ፋይሉን እንደ አገናኝ ማስገባት ከፈለጉ ይምረጡ <emph>አገናኝ</emph>."
+msgstr "ፋይሉን እንደ አገናኝ ማስገባት ከፈለጉ ይምረጡ <emph> አገናኝ </emph>:"
#: 04110100.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"par_id3149019\n"
"help.text"
msgid "If you want to keep the original slide, choose <emph>Edit - Undo</emph>."
-msgstr "ዋናውን የ መጀመሪያውን ተንሸራታች መጠቀም ከ ፈለጉ: ይምረጡ <emph>ማረሚያ - መተው</emph>."
+msgstr "ዋናውን የ መጀመሪያውን ተንሸራታች መጠቀም ከ ፈለጉ: ይምረጡ <emph> ማረሚያ - መተው </emph>"
#: 04140000.xhp
msgctxt ""
@@ -3998,7 +3998,7 @@ msgctxt ""
"bm_id3156329\n"
"help.text"
msgid "<bookmark_value>renaming layers</bookmark_value><bookmark_value>layers; renaming</bookmark_value>"
-msgstr "<bookmark_value>እንደገና መሰየሚያ ደረጃዎችን</bookmark_value><bookmark_value>ደረጃዎች; እንደገና መሰየሚያ</bookmark_value>"
+msgstr "<bookmark_value>እንደገና መሰየሚያ ደረጃዎችን</bookmark_value><bookmark_value>ደረጃዎች: እንደገና መሰየሚያ</bookmark_value>"
#: 05140000.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "If you want to modify the line style or the arrow style of a dimension line, choose <link href=\"text/shared/01/05200000.xhp\" name=\"Format - Line\"><emph>Format - Line</emph></link>."
-msgstr "እርስዎ ማሻሻል ከ ፈለጉ የ መስመር ዘዴ ወይንም የ ቀስት ዘዴ የ አቅጣጫ መስመር: ይምረጡ <link href=\"text/shared/01/05200000.xhp\" name=\"Format - Line\"><emph>አቀራረብ - መስመር</emph></link>."
+msgstr "እርስዎ ማሻሻል ከ ፈለጉ የ መስመር ዘዴ ወይንም የ ቀስት ዘዴ የ አቅጣጫ መስመር: ይምረጡ <link href=\"text/shared/01/05200000.xhp\" name=\"Format - Line\"><emph> አቀራረብ - መስመር </emph></link>"
#: 05150000.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"par_id3154704\n"
"help.text"
msgid "To apply the same transition effect to more than one slide, switch to the <link href=\"text/simpress/01/03100000.xhp\" name=\"Slide View\">Slide Sorter</link>, select the slides, and then choose <emph>Slide - Slide Transition</emph>."
-msgstr "ተመሳሳይ መሸጋገሪያ ውጤት ለ መፈጸም ከ አንድ በላይ ተንሸራታች ላይ ይቀይሩ ወደ የ <link href=\"text/simpress/01/03100000.xhp\" name=\"Slide View\"> ተንሸራታች መለያ </link> ይምረጡ ተንሸራታች: እና ከዛ ይምረጡ <emph> ተንሸራታች ማሳያ - ተንሸራታች መሸጋገሪያ</emph>."
+msgstr "ተመሳሳይ መሸጋገሪያ ውጤት ለ መፈጸም ከ አንድ በላይ ተንሸራታች ላይ ይቀይሩ ወደ የ <link href=\"text/simpress/01/03100000.xhp\" name=\"Slide View\"> ተንሸራታች መለያ </link> ይምረጡ ተንሸራታች: እና ከዛ ይምረጡ <emph> ተንሸራታች ማሳያ - ተንሸራታች መሸጋገሪያ </emph>"
#: 06040000.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"par_id3150470\n"
"help.text"
msgid "You can also select an animation, such as an animated GIF, and click this icon to open it for editing. When you are finished editing the animation, click <emph>Create</emph> to insert a new animation into your slide."
-msgstr "እርስዎ እንዲሁም መምረጥ ይችላሉ እንቅስቃሴ: እንደ animated GIF እና ይጫኑ ይህን ምልክት ለ መክፈት እና ለማረም: እርስዎ ማረሙን ሲጨርሱ: ይጫኑ <emph>መፍጠሪያ</emph>ለ ማስገባት አዲሱን እንቅስቃሴ ወደ እርስዎ ተንሸራታች ውስጥ"
+msgstr "እርስዎ እንዲሁም መምረጥ ይችላሉ እንቅስቃሴ: እንደ animated GIF እና ይጫኑ ይህን ምልክት ለ መክፈት እና ለማረም: እርስዎ ማረሙን ሲጨርሱ: ይጫኑ <emph> መፍጠሪያ </emph> ለ ማስገባት አዲሱን እንቅስቃሴ ወደ እርስዎ ተንሸራታች ውስጥ"
#: 06050000.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_idN1080B\n"
"help.text"
msgid "<ahelp hid=\".\">Selects the additional properties of the animation. Click the <emph>Options</emph> button to open the <link href=\"text/simpress/01/effectoptions.xhp\">Effect Options</link> dialog, where you can select and apply properties.</ahelp>"
-msgstr "<ahelp hid=\".\">ይምረጡ ተጨማሪ ባህሪዎች ለ እንቅስቃሴ: ይጫኑ የ <emph>ምርጫዎች</emph> ቁልፍ ለ መክፈት የ <link href=\"text/simpress/01/effectoptions.xhp\">ውጤቶች ምርጫ </link> ንግግር እርስዎ ባህሪዎችን የሚመርጡበት እና የሚፈጽሙበት</ahelp>"
+msgstr "<ahelp hid=\".\">ይምረጡ ተጨማሪ ባህሪዎች ለ እንቅስቃሴ: ይጫኑ የ <emph> ምርጫዎች </emph> ቁልፍ ለ መክፈት የ <link href=\"text/simpress/01/effectoptions.xhp\"> ውጤቶች ምርጫ </link> ንግግር እርስዎ ባህሪዎችን የሚመርጡበት እና የሚፈጽሙበት </ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5774,7 +5774,7 @@ msgctxt ""
"bm_id3153246\n"
"help.text"
msgid "<bookmark_value>interactions; objects in interactive presentations</bookmark_value><bookmark_value>programs run by mouse click in presentations</bookmark_value><bookmark_value>running macros/programs in presentations</bookmark_value><bookmark_value>macros; running in presentations</bookmark_value><bookmark_value>presentations;exiting by interaction</bookmark_value><bookmark_value>exiting;by clicking objects</bookmark_value>"
-msgstr "<bookmark_value>ተፅእኖ; የ እቃዎች ተፅእኖ በ ማቅረቢያ</bookmark_value><bookmark_value>ፕሮግራሞች አይጥ ሲጫኑ ማስኬጃ በ ማቅረቢያ ውስጥ</bookmark_value><bookmark_value>ማስኬጃ macros/ፕሮግራሞች በ ማቅረቢያ ውስጥ</bookmark_value><bookmark_value>macros; ማስኬጃ በ ማቅረቢያ ውስጥ</bookmark_value><bookmark_value>ማቅረቢያ;የ ነበረ ተፅእኖ</bookmark_value><bookmark_value>የ ነበረ; በመጫን እቃዎችን</bookmark_value>"
+msgstr "<bookmark_value>ተፅእኖ: የ እቃዎች ተፅእኖ በ ማቅረቢያ</bookmark_value><bookmark_value>ፕሮግራሞች አይጥ ሲጫኑ ማስኬጃ በ ማቅረቢያ ውስጥ</bookmark_value><bookmark_value>ማስኬጃ ማክሮስ/ፕሮግራሞች በ ማቅረቢያ ውስጥ</bookmark_value><bookmark_value>ማክሮስ: ማስኬጃ በ ማቅረቢያ ውስጥ</bookmark_value><bookmark_value>ማቅረቢያ: የ ነበረ ተፅእኖ</bookmark_value><bookmark_value>የ ነበረ: በመጫን እቃዎችን</bookmark_value>"
#: 06070000.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"hd_id3152940\n"
"help.text"
msgid "Run macro"
-msgstr "macro ማስኬጃ"
+msgstr "ማክሮስ ማስኬጃ"
#: 06070000.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "Runs a macro during the slide show."
-msgstr "macro ማስኬጃ ተንሸራታች በሚታይበት ጊዜ"
+msgstr "ማክሮስ ማስኬጃ ተንሸራታች በሚታይበት ጊዜ"
#: 06070000.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"hd_id3149916\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 06070000.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"hd_id3149804\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 06070000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id3148625\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/interactionpage/macro\">Enter a path to the macro you want to run, or click <emph>Browse </emph>to locate the macro.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/interactionpage/macro\">መክፈት የሚፈልጉትን ፋይል የ መንገድ ያስገቡ ወይንም ይጫኑ <emph>መቃኛ </emph>macro ፈልጎ ለማግኘት</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/interactionpage/macro\">መክፈት የሚፈልጉትን የ ማክሮስ መንገድ ያስገቡ ወይንም ይጫኑ <emph> መቃኛ </emph> ማክሮስ ፈልጎ ለማግኘት </ahelp>"
#: 06070000.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3148417\n"
"help.text"
msgid "Locate the macro you want to run."
-msgstr "ማስኬድ የሚፈልጉትን macro ፈልገው ይግኙ"
+msgstr "ማስኬድ የሚፈልጉትን ማክሮስ ፈልገው ይግኙ"
#: 06070000.xhp
msgctxt ""
@@ -6926,7 +6926,7 @@ msgctxt ""
"par_id3145252\n"
"help.text"
msgid "<ahelp hid=\".uno:ChangePolygon\">Converts the selected object to a polygon (a closed object bounded by straight lines).</ahelp> The appearance of the object does not change. If you want, you can right-click and choose <link href=\"text/shared/main0227.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> to view the changes."
-msgstr "<ahelp hid=\".uno:ChangePolygon\">የ ተመረጠውን እቃ ወደ ፖሊጎን መቀየሪያ (የ ተዘጋ እቃ ወደ ላይ ይዘላል በ ቀጥታ መስመር).</ahelp> የ እቃው አቀራረብ አይቀየርም: እርስዎ ከ ፈለጉ በ ቀኝ-መጫን ይችላሉ እና ከዛ ይምረጡ <link href=\"text/shared/main0227.xhp\" name=\"Edit Points\"><emph>ነጥቦች ማረሚያ</emph></link> ለውጦቹን ለ መመልከት"
+msgstr "<ahelp hid=\".uno:ChangePolygon\">የ ተመረጠውን እቃ ወደ ፖሊጎን መቀየሪያ (የ ተዘጋ እቃ ወደ ላይ ይዘላል በ ቀጥታ መስመር) </ahelp> የ እቃው አቀራረብ አይቀየርም: እርስዎ ከ ፈለጉ በ ቀኝ-መጫን ይችላሉ እና ከዛ ይምረጡ <link href=\"text/shared/main0227.xhp\" name=\"Edit Points\"><emph> ነጥቦች ማረሚያ </emph></link> ለውጦቹን ለ መመልከት"
#: 13050200.xhp
msgctxt ""
@@ -7046,7 +7046,7 @@ msgctxt ""
"hd_id3149944\n"
"help.text"
msgid "Vectorized image:"
-msgstr "Vectorized ምስል:"
+msgstr "አቅጣጫ ያለው ምስል:"
#: 13050200.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_id3148605\n"
"help.text"
msgid "Preview of the converted image. Click <emph>Preview</emph> to generate the vectorized image."
-msgstr "ቅድመ እይታ የ ተቀየረው ምስል: ይጫኑ <emph>ቅድመ እይታ</emph> ለማመንጨት የ vectorized ምስል"
+msgstr "ቅድመ እይታ የ ተቀየረው ምስል: ይጫኑ <emph> ቅድመ እይታ </emph> አቅጣጫ ያለው ምስል: ለ ማመንጨት"
#: 13050200.xhp
msgctxt ""
@@ -7126,7 +7126,7 @@ msgctxt ""
"par_id3149127\n"
"help.text"
msgid "If you select two or more objects and convert them to 3D, the result is a 3D group that acts as a single object. You can edit the individual objects in the group by choosing <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Modify</emph> - <emph>Enter Group</emph></caseinline><defaultinline><emph>Format - Group - Enter Group</emph></defaultinline></switchinline>. Choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Modify – Exit Group</emph></caseinline><defaultinline><emph>Format – Group – Exit Group</emph></defaultinline></switchinline> when you are finished."
-msgstr "እርስዎ ከ መረጡ ሁለት ወይንም ከዚያ በላይ እቃዎች እና ከ ቀየሩት ወደ 3ዲ: ውጤቱ የ 3ዲ ቡድን እንደ አንድ እቃ ይሆናል: እርስዎ እያንዳንዱን እቃዎች ማረም ይችላሉ በ መምረጥ ከ ቡድን ውስጥ: <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>ማሻሻያ</emph> - <emph>ቡድን ውስጥ መግቢያ</emph></caseinline><defaultinline><emph>አቀራረብ - ቡድን - ውስጥ መግቢያ</emph></defaultinline></switchinline>. ይምረጡ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph> ማሻሻያ – መውጫ ከ ቡድን</emph></caseinline><defaultinline><emph> አቀራረብ – ቡድን – ከ ቡድን መውጫ</emph></defaultinline></switchinline> እርስዎ በሚጨረሱ ጊዜ"
+msgstr "እርስዎ ከ መረጡ ሁለት ወይንም ከዚያ በላይ እቃዎች እና ከ ቀየሩት ወደ 3ዲ: ውጤቱ የ 3ዲ ቡድን እንደ አንድ እቃ ይሆናል: እርስዎ እያንዳንዱን እቃዎች ማረም ይችላሉ በ መምረጥ ከ ቡድን ውስጥ: <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph> ማሻሻያ </emph> - <emph> ቡድን ውስጥ መግቢያ </emph></caseinline><defaultinline><emph> አቀራረብ - ቡድን - ውስጥ መግቢያ </emph></defaultinline></switchinline>: ይምረጡ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph> ማሻሻያ – መውጫ ከ ቡድን </emph></caseinline><defaultinline><emph> አቀራረብ – ቡድን – ከ ቡድን መውጫ </emph></defaultinline></switchinline> እርስዎ በሚጨረሱ ጊዜ"
#: 13050300.xhp
msgctxt ""
@@ -7230,7 +7230,7 @@ msgctxt ""
"par_id3149377\n"
"help.text"
msgid "For more information, see the <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\">Glossary</link>."
-msgstr "በበለጠ ለመረዳት ይህን ይመልከቱ <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\">ቃላት መፍቻ</link>."
+msgstr "በበለጠ ለመረዳት ይህን ይመልከቱ <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\"> ቃላት መፍቻ </link>"
#: 13050500.xhp
msgctxt ""
@@ -7238,7 +7238,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "You can also copy the selected object and choose <emph>Edit - Paste Special </emph>and select the bitmap format from the list."
-msgstr "እርስዎ የተመረጠውን እቃ ኮፒ ማድረግ ይችላሉ እና ከዛ ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ </emph>እና ከዛ ይምረጡ የ bitmap አቀራረብ ከ ዝርዝር ውስጥ"
+msgstr "እርስዎ የተመረጠውን እቃ ኮፒ ማድረግ ይችላሉ እና ከዛ ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph> እና ከዛ ይምረጡ የ bitmap አቀራረብ ከ ዝርዝር ውስጥ"
#: 13050600.xhp
msgctxt ""
@@ -7278,7 +7278,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "For more information on WMF, see the <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\">Glossary</link>."
-msgstr "በበለጠ ለመረዳት WMF, ይህን ይመልከቱ የ <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\">ቃላት መፍቻ</link>."
+msgstr "በበለጠ ለመረዳት WMF, ይህን ይመልከቱ የ <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\"> ቃላት መፍቻ </link>"
#: 13050600.xhp
msgctxt ""
@@ -7286,7 +7286,7 @@ msgctxt ""
"par_id3147344\n"
"help.text"
msgid "You can also copy the selected object and choose <emph>Edit - Paste Special </emph>and select MetaFile from the list."
-msgstr "እርስዎ የተመረጠውን እቃ ኮፒ ማድረግ ይችላሉ እና ከዛ ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ </emph>እና ከዛ ይምረጡ MetaFile ከ ዝርዝር ውስጥ"
+msgstr "እርስዎ የተመረጠውን እቃ ኮፒ ማድረግ ይችላሉ እና ከዛ ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph> እና ከዛ ይምረጡ MetaFile ከ ዝርዝር ውስጥ"
#: 13050700.xhp
msgctxt ""
@@ -7326,7 +7326,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Once you convert a line or a text object to a contour, you can no longer edit it as you normally would. Instead, you can edit the contour as you would any polygon, including using the <emph>Edit – Points </emph>command to adjust its shape."
-msgstr "እርስዎ አንዴ መስመር ወይንም የ ጽሁፍ እቃ ወደ ቅርጽ ከ ቀየሩ በኋላ: እርስዎ ማረም አይችሉም እንደ መደበኛ ማረሚያ: ነገር ግን እርስዎ ቅርጹን ማረም ይችላሉ እንደ ፖሊጎን እንደፈለጉ: ይህን በ መጠቀም <emph>ማረሚያ – ነጥቦች </emph>ትእዛዝ ቅርጽ ለማስተካከል"
+msgstr "እርስዎ አንዴ መስመር ወይንም የ ጽሁፍ እቃ ወደ ቅርጽ ከ ቀየሩ በኋላ: እርስዎ ማረም አይችሉም እንደ መደበኛ ማረሚያ: ነገር ግን እርስዎ ቅርጹን ማረም ይችላሉ እንደ ፖሊጎን እንደፈለጉ: ይህን በ መጠቀም <emph> ማረሚያ – ነጥቦች </emph> ትእዛዝ ቅርጽ ለማስተካከል"
#: 13140000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/02.po b/source/am/helpcontent2/source/text/simpress/02.po
index 41c05a7d5a0..f3b7c2418ce 100644
--- a/source/am/helpcontent2/source/text/simpress/02.po
+++ b/source/am/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-05 15:39+0000\n"
+"PO-Revision-Date: 2017-06-18 18:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496677167.000000\n"
+"X-POOTLE-MTIME: 1497811063.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "This Status bar field uses the same measurement units as the rulers. You can define the units by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\"><emph>%PRODUCTNAME Impress - General</emph></link>."
-msgstr "ይህ የ ሁኔታዎች መደርደሪያ ሜዳ እንደ ማስመሪያ የሚጠቀመው ተመሳሳይ የ መለኪያ ክፍል ነው: መለኪያ ክፍሎቹን በ መምረጥ መግለጽ ይችላሉ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\"><emph>%PRODUCTNAME ማስደነቂያ - ባጠቃላይ</emph></link>."
+msgstr "ይህ የ ሁኔታዎች መደርደሪያ ሜዳ እንደ ማስመሪያ የሚጠቀመው ተመሳሳይ የ መለኪያ ክፍል ነው: መለኪያ ክፍሎቹን በ መምረጥ መግለጽ ይችላሉ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫ </defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\"><emph>%PRODUCTNAME ማስደነቂያ - ባጠቃላይ </emph></link>"
#: 08060000.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "To open the<item type=\"productname\">%PRODUCTNAME</item> Draw <emph>Mode </emph>toolbar, click the arrow next to the <emph>Effects </emph>icon on the <emph>Drawing</emph> bar. In %PRODUCTNAME Impress, choose <emph>View - Toolbars - Mode</emph>."
-msgstr "መክፈቻ የ <item type=\"productname\">%PRODUCTNAME</item> መሳያ <emph>ዘዴ </emph>እቃ መደርደሪያ ላይ ይጫኑ ቀስቱ አጠገብ<emph>ተጽዕኖ </emph>ምልክት በ <emph>መሳያ</emph> መደርደሪያ ላይ %PRODUCTNAME ማስደነቂያ ይምረጡ <emph>መመልከቻ - እቃ መደርደሪያ - ዘዴ</emph>."
+msgstr "መክፈቻ የ <item type=\"productname\">%PRODUCTNAME</item> መሳያ <emph> ዘዴ </emph> እቃ መደርደሪያ ላይ ይጫኑ ቀስቱ አጠገብ <emph>ተጽዕኖ </emph> ምልክት በ <emph> መሳያ </emph> መደርደሪያ ላይ %PRODUCTNAME ማስደነቂያ ይምረጡ <emph> መመልከቻ - እቃ መደርደሪያ - ዘዴ </emph>"
#: 10030000.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3153914\n"
"help.text"
msgid "If you select a group that includes a 3D object, only the 3D object is rotated. You cannot skew a 3D object, instead, you can rotate it about the X and Y axes by dragging the center handles."
-msgstr "እርስዎ ቡድን ከ መረጡ የ 3ዲ እቃ የሚያካትት: የ 3ዲ እቃ ብቻ ይዞራል: እርስዎ የ 3ዲ እቃ ማዘንበል አይችሉም: ነገር ግን እርስዎ ማዞር ይችላሉ በ X እና Y axes ላይ በ መጎተት የ መሀከል እጄታውን"
+msgstr "እርስዎ ቡድን ከ መረጡ የ 3ዲ እቃ የሚያካትት: የ 3ዲ እቃ ብቻ ይዞራል: እርስዎ የ 3ዲ እቃ ማዘንበል አይችሉም: ነገር ግን እርስዎ ማዞር ይችላሉ በ X እና Y አክሲስ ላይ በ መጎተት የ መሀከል እጄታውን"
#: 10030000.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3147516\n"
"help.text"
msgid "Drag the white handle to change the direction of the transparency gradient. Drag the black handle to change the length of the gradient. You can also drag and drop colors onto the handles from the <emph>Color</emph> Bar to change their grayscale values."
-msgstr "የ ግልጽነት ከፍታ አቅጣጫ ለመቀየር የ ነጭ እጄታውን ይጎትቱ: የ ከፍታ እርዝመት ለመቀየር የ ጥቁር እጄታውን ይጎትቱ: እርስዎ እንዲሁም መጎተት እና መጣል ይችላሉ ቀለሞች ወደ እጄታዎች ከ <emph>ቀለም</emph> መደርደሪያ ላይ ለ መቀየር የ ጥቁር እና ነጭ ዋጋዎች"
+msgstr "የ ግልጽነት ከፍታ አቅጣጫ ለመቀየር የ ነጭ እጄታውን ይጎትቱ: የ ከፍታ እርዝመት ለመቀየር የ ጥቁር እጄታውን ይጎትቱ: እርስዎ እንዲሁም መጎተት እና መጣል ይችላሉ ቀለሞች ወደ እጄታዎች ከ <emph> ቀለም </emph> መደርደሪያ ላይ ለ መቀየር የ ጥቁር እና ነጭ ዋጋዎች"
#: 10030000.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3149594\n"
"help.text"
msgid "<ahelp hid=\".uno:InteractiveGradient\">Modifies the gradient fill of the selected object. This command is only available if you applied a gradient to the selected object in <emph>Format - Area</emph>.</ahelp> Drag the handles of the gradient line to change the direction of the gradient or the length of the gradient. You can also drag and drop colors onto the handles from the <emph>Color</emph> Bar to change the color of the gradient endpoints."
-msgstr "<ahelp hid=\".uno:InteractiveGradient\">የ ተመረጠውን እቃ ከፍታ መሙያ ማሻሻያ: ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ ከፍታ ከፈጸሙ ነው ለ ተመረጠው እቃ በ <emph>አቀራረብ - ቦታ</emph>.</ahelp> የ ከፍታ መስመር እጄታ ይዘው ይጎትቱ አቅጣጫውን ለ መቀየር የ ከፍታ ወይንም የ ከፍታ እርዝመት: እርስዎ እንዲሁም መጎተት እና መጣል ይችላሉ ቀለሞች ወደ እጄታዎች ከ <emph>ቀለም</emph> መደርደሪያ ላይ የ ከፍታ መጨረሻ ነጥብ ለ መቀየር"
+msgstr "<ahelp hid=\".uno:InteractiveGradient\">የ ተመረጠውን እቃ ከፍታ መሙያ ማሻሻያ: ይህ ትእዛዝ ዝግጁ የሚሆነው እርስዎ ከፍታ ከፈጸሙ ነው ለ ተመረጠው እቃ በ <emph> አቀራረብ - ቦታ </emph></ahelp> የ ከፍታ መስመር እጄታ ይዘው ይጎትቱ አቅጣጫውን ለ መቀየር የ ከፍታ ወይንም የ ከፍታ እርዝመት: እርስዎ እንዲሁም መጎተት እና መጣል ይችላሉ ቀለሞች ወደ እጄታዎች ከ <emph> ቀለም </emph> መደርደሪያ ላይ የ ከፍታ መጨረሻ ነጥብ ለ መቀየር"
#: 10030000.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3147301\n"
"help.text"
msgid "<ahelp hid=\".uno:LineToolbox\">The Curve icon on the Drawing bar opens the <emph>Lines</emph> toolbar, where you can add lines and shapes to the current slide.</ahelp>"
-msgstr "<ahelp hid=\".uno:LineToolbox\">የ ክብ ምልክት በ መሳያ ላይ እቃ መደርደሪያ ነው: ለ መክፈቻ የ <emph>መስመሮች</emph> እቃ መደርደሪያ ነው: እርስዎ መስመሮች እና ቅርጾች ወደ አሁኑ ተንሸራታች የሚጨምሩበት</ahelp>"
+msgstr "<ahelp hid=\".uno:LineToolbox\">የ ክብ ምልክት በ መሳያ ላይ እቃ መደርደሪያ ነው: ለ መክፈቻ የ <emph> መስመሮች </emph> እቃ መደርደሪያ ነው: እርስዎ መስመሮች እና ቅርጾች ወደ አሁኑ ተንሸራታች የሚጨምሩበት </ahelp>"
#: 10080000.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3153038\n"
"help.text"
msgid "To rotate a 3D object around any of its three axes, click to select the object, and then click again to display its rotation handles. Drag a handle in the direction you want to rotate the object."
-msgstr "የ 3ዲ እቃዎች ለማዞር በ ሶስት axes ዙሪያ: ይጫኑ እቃውን ለ መምረጥ: እና ከዛ ይጫኑ እንደገና የ ማዞሪያ እጄታዎችን ለ መመልከት: እጄታውን ይዘው ይጎትቱ እርስዎ በሚፈልጉት አቅጣጫ ያዙሩ:"
+msgstr "የ 3ዲ እቃዎች ለማዞር በ ሶስት አክሲስ ዙሪያ: ይጫኑ እቃውን ለ መምረጥ: እና ከዛ ይጫኑ እንደገና የ ማዞሪያ እጄታዎችን ለ መመልከት: እጄታውን ይዘው ይጎትቱ እርስዎ በሚፈልጉት አቅጣጫ ያዙሩ:"
#: 10090000.xhp
msgctxt ""
@@ -2830,7 +2830,7 @@ msgctxt ""
"par_id3147511\n"
"help.text"
msgid "<ahelp hid=\".uno:Cyramid\">Draws a pyramid with a square base where you drag in the slide. To draw a pyramid with a rectangular base, hold down Shift while you drag. To define a different polygon for the base of the pyramid, open the <emph>3D Effects </emph>dialog and click the <link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\"><emph>Geometry</emph></link> tab. In the <emph>Segments</emph> area, enter the number of sides for the polygon in the box labeled <emph>Horizontal</emph>, and then click the green checkmark.</ahelp>"
-msgstr "<ahelp hid=\".uno:Cyramid\">ፒራሚድ መሳያ ከ ስኴር መሰረት ጋር እርስዎ በሚጎትቱ ጊዜ በ ተንሸራታች ውስጥ: ፒራሚድ ለ መሳል ከ አራት ማእዘን መሰረት ጋር: ተጭነው ይያዙ Shift እርስዎ በሚጎትቱ ጊዜ: የ ተለየ ፖሊጎን ለ ፒራሚድ መሰረት ለ መግለጽ: ይክፈቱ የ <emph>3ዲ ተፅእኖዎች </emph>ንግግር እና ይጫኑ የ <link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\"><emph> ጂዮሜትሪ </emph></link> tab. በ <emph> ክፍያ </emph> ቦታ ውስጥ: የ ፖሊጎኑን ጎኖች ቁጥር ያስገቡ በ ሳጥኑ ውስጥ ምልክት በ ተደረገበት <emph> አግድም </emph> እና ከዛ ይጫኑ አረንጓዴውን ምልክት ማድረጊያ</ahelp>"
+msgstr "<ahelp hid=\".uno:Cyramid\">ፒራሚድ መሳያ ከ ስኴር መሰረት ጋር እርስዎ በሚጎትቱ ጊዜ በ ተንሸራታች ውስጥ: ፒራሚድ ለ መሳል ከ አራት ማእዘን መሰረት ጋር: ተጭነው ይያዙ Shift እርስዎ በሚጎትቱ ጊዜ: የ ተለየ ፖሊጎን ለ ፒራሚድ መሰረት ለ መግለጽ: ይክፈቱ የ <emph> 3ዲ ተፅእኖዎች </emph> ንግግር እና ይጫኑ የ <link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\"><emph> ጂዮሜትሪ </emph></link> tab. በ <emph> ክፍያ </emph> ቦታ ውስጥ: የ ፖሊጎኑን ጎኖች ቁጥር ያስገቡ በ ሳጥኑ ውስጥ ምልክት በ ተደረገበት <emph> አግድም </emph> እና ከዛ ይጫኑ አረንጓዴውን ምልክት ማድረጊያ </ahelp>"
#: 10090000.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertToolbox\">Open the <emph>Insert</emph> toolbar, where you can add objects, including charts, spreadsheets, and images, to your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertToolbox\">መክፈቻ የ <emph>ማስገቢያ</emph> እቃ መደርደሪያ እቃዎችን የሚጨምሩበት ቻርትስ: ሰንጠረዦች እና ምስሎች ወደ እርስዎ ሰነድ ውስጥ</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertToolbox\">መክፈቻ የ <emph> ማስገቢያ </emph> እቃ መደርደሪያ እቃዎችን የሚጨምሩበት ቻርትስ: ሰንጠረዦች እና ምስሎች ወደ እርስዎ ሰነድ ውስጥ </ahelp>"
#: 10110000.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id3151076\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">Hides all of the headings of the slides in the current slide show except for the titles of the slides. Hidden headings are indicated by a black line in front of a slide title. To show the headings, click the <link href=\"text/simpress/02/11070000.xhp\" name=\"All Levels\"><emph>All Levels</emph></link> icon.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">መደበቂያ ሁሉንም የ ተንሸራታች ራስጌዎች በ አሁኑ ተንሸራታች ውስጥ: ከ ተንሸራታቹ ራስጌ በስተቀር: የ ተደበቁ ራስጌዎች የሚታየው በ ጥቁር መስመር ነው: ከ ተንሸራታቹ ራስጌ ፊት ለ ፊት: ራስጌዎቹን ለማሳየት: ይጫኑ የ <link href=\"text/simpress/02/11070000.xhp\" name=\"All Levels\"><emph>ሁሉንም ደረጃዎች</emph></link> ምልክት </ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">መደበቂያ ሁሉንም የ ተንሸራታች ራስጌዎች በ አሁኑ ተንሸራታች ውስጥ: ከ ተንሸራታቹ ራስጌ በስተቀር: የ ተደበቁ ራስጌዎች የሚታየው በ ጥቁር መስመር ነው: ከ ተንሸራታቹ ራስጌ ፊት ለ ፊት: ራስጌዎቹን ለማሳየት: ይጫኑ የ <link href=\"text/simpress/02/11070000.xhp\" name=\"All Levels\"><emph> ሁሉንም ደረጃዎች </emph></link> ምልክት </ahelp>"
#: 11060000.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "<ahelp hid=\".uno:OutlineFormat\">Shows or hides the character formatting of the slide headings. To change the character formatting of a heading, open the <emph>Styles and Formatting</emph> window, right-click a style, and then choose <emph>Modify</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:OutlineFormat\">ለ ተንሸራታች ራስጌ የ ባህሪ አቀራረብ ማሳያ ወይንም መደበቂያ: መክፈቻ በ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት ውስጥ: በ ቀኝ-ይጫኑ በ ዘዴ ላይ እና ከዛ ይምረጡ <emph> ማሻሻያ </emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:OutlineFormat\">ለ ተንሸራታች ራስጌ የ ባህሪ አቀራረብ ማሳያ ወይንም መደበቂያ: መክፈቻ በ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት ውስጥ: በ ቀኝ-ይጫኑ በ ዘዴ ላይ እና ከዛ ይምረጡ <emph> ማሻሻያ </emph></ahelp>"
#: 11100000.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Show Snap Lines"
-msgstr "የመቁረጫ መስመሮች ማሳያ"
+msgstr "የ መቁረጫ መስመሮች ማሳያ"
#: 13050000.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"bm_id3152596\n"
"help.text"
msgid "<bookmark_value>guides; show snap lines icon</bookmark_value><bookmark_value>showing; guides</bookmark_value>"
-msgstr "<bookmark_value>መምሪያ; የመቁረጫ መስመሮች ምልክት ማሳያ</bookmark_value><bookmark_value>ማሳያ; መምሪያ</bookmark_value>"
+msgstr "<bookmark_value>መምሪያ: የ መቁረጫ መስመሮች ምልክት ማሳያ</bookmark_value><bookmark_value>ማሳያ: መምሪያ</bookmark_value>"
#: 13050000.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_id3147339\n"
"help.text"
msgid "Show Snap Lines"
-msgstr "የመቁረጫ መስመሮች ማሳያ"
+msgstr "የ መቁረጫ መስመሮች ማሳያ"
#: 13060000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/04.po b/source/am/helpcontent2/source/text/simpress/04.po
index 31203e5eb3d..d7263eed415 100644
--- a/source/am/helpcontent2/source/text/simpress/04.po
+++ b/source/am/helpcontent2/source/text/simpress/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-04 14:33+0000\n"
+"PO-Revision-Date: 2017-06-19 17:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496586825.000000\n"
+"X-POOTLE-MTIME: 1497891872.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"hd_ii3155432\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-)"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ctrl</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ጭረት(-)"
#: 01020000.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3154811\n"
"help.text"
msgid "Left/Right arrow keys or Page Up/Down"
-msgstr "የ ግራየ ቀኝ ቀስት ቁልፍ ወይንም ገጽ ወደ ላይ/ታች"
+msgstr "የ ግራ/ቀኝ ቀስት ቁልፍ ወይንም ገጽ ወደ ላይ/ታች"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index 7d484be4de0..9b40c715a87 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-06 00:06+0000\n"
+"PO-Revision-Date: 2017-06-19 22:56+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496707585.000000\n"
+"X-POOTLE-MTIME: 1497913000.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "To modify the shape of the object, click the <emph>Points</emph> icon<image id=\"img_id7219458\" src=\"svx/res/cd015.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id7219458\">Icon</alt></image> on the <emph>Drawing</emph> toolbar, and drag the handles of the object."
-msgstr "እቃውን ቅርጹን ለመቀየር ይጫኑ የ <emph>ነጥቦች</emph> ምልክት<image id=\"img_id7219458\" src=\"svx/res/cd015.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id7219458\">ምልክት</alt></image> ከ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ እና የ እቃውን እጄታ ይጎትቱ"
+msgstr "እቃውን ቅርጹን ለመቀየር ይጫኑ የ <emph> ነጥቦች </emph> ምልክት <image id=\"img_id7219458\" src=\"svx/res/cd015.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id7219458\"> ምልክት </alt></image> ከ <emph> መሳያ </emph> እቃ መደርደሪያ ላይ እና የ እቃውን እጄታ ይጎትቱ"
#: 3d_create.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN108C5\n"
"help.text"
msgid "To convert a text object to 3D, use the <emph>Fontwork</emph> icon<image id=\"img_id3821222\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3821222\">Icon</alt></image> on the <emph>Drawing</emph> toolbar."
-msgstr "የ ጽሁፍ እቃዎችን ወደ 3ዲ ለመቀየር ይጠቀሙ የ <emph>ፊደል ስራ</emph> ምልክት<image id=\"img_id3821222\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3821222\">ምልክት</alt></image> ከ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ"
+msgstr "የ ጽሁፍ እቃዎችን ወደ 3ዲ ለ መቀየር ይጠቀሙ የ <emph> ፊደል ስራ </emph> ምልክት <image id=\"img_id3821222\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3821222\"> ምልክት </alt></image> ከ <emph> መሳያ </emph> እቃ መደርደሪያ ላይ"
#: 3d_create.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3148703\n"
"help.text"
msgid "Select an object or group of objects that you want to include in your animation and choose<emph> Insert - Animated Image</emph>."
-msgstr "ይምረጡ እቃ ወይንም የ እቃ ቡድኖች ማካተት የሚፈልጉትን በ እንቅስቃሴ ውስጥ እና ይምረጡ <emph> ማስገቢያ - ተንቀሳቃሽ ምስል </emph>."
+msgstr "ይምረጡ እቃ ወይንም የ እቃ ቡድኖች ማካተት የሚፈልጉትን በ እንቅስቃሴ ውስጥ እና ይምረጡ <emph> ማስገቢያ - ተንቀሳቃሽ ምስል </emph>"
#: animated_gif_create.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3148391\n"
"help.text"
msgid "In the <emph>Animation Group </emph>area, select <emph>Bitmap object</emph>."
-msgstr "ከ <emph>እንቅስቃሴ ቡድን </emph>ቦታ ይምረጡ <emph>Bitmap እቃ</emph>."
+msgstr "ከ <emph> እንቅስቃሴ ቡድን </emph> ቦታ ይምረጡ <emph> Bitmap እቃ </emph>"
#: animated_gif_create.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3145802\n"
"help.text"
msgid "Choose <emph>File - Export</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መላኪያ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ </emph>"
#: animated_gif_save.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "Select <emph>GIF - Graphics Interchange Format (.gif)</emph> in the <emph>File type </emph>list."
-msgstr "ይምረጡ <emph>GIF - Graphics Interchange Format (.gif)</emph> ከ <emph>ፋይል አይነት </emph>ዝርዝር ውስጥ"
+msgstr "ይምረጡ <emph>GIF - Graphics Interchange Format (.gif)</emph> ከ <emph> ፋይል አይነት </emph> ዝርዝር ውስጥ"
#: animated_gif_save.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id3153718\n"
"help.text"
msgid "Click <emph>Remove</emph>."
-msgstr "ይጫኑ <emph>ማስወግሀጃ</emph>."
+msgstr "ይጫኑ <emph> ማስወግጃ </emph>"
#: animated_slidechange.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3150655\n"
"help.text"
msgid "On the <emph>Tasks</emph> pane, click <emph>Slide Transition</emph>."
-msgstr "ከ <emph>ስራዎች</emph> ክፍል ውስጥ ይምረጡ <emph>የ ተንሸራታች መሸጋገሪያ</emph>."
+msgstr "ከ <emph> ስራዎች</emph> ክፍል ውስጥ ይምረጡ <emph> የ ተንሸራታች መሸጋገሪያ </emph>"
#: animated_slidechange.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3150263\n"
"help.text"
msgid "In <emph>Slide Sorter</emph> view, select the slides that you want to add the transition effect to."
-msgstr "ከ <emph>ተንሸራታች መለያ</emph> መመልከቻ ውስጥ ተንሸራታች ይምረጡ የ መሸጋገሪያ ውጤት መጨመር ለሚፈልጉት ተንሸራታች"
+msgstr "ከ <emph> ተንሸራታች መለያ </emph> መመልከቻ ውስጥ ተንሸራታች ይምረጡ የ መሸጋገሪያ ውጤት ለ መጨመር ለሚፈልጉት ተንሸራታች"
#: animated_slidechange.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id3153785\n"
"help.text"
msgid "To preview the transition effect for a slide, click the small icon underneath the slide on the <emph>Slides Pane</emph>."
-msgstr "ለ ተንሸራታች መሸጋገሪያ ውጤት በ ቅድመ እይታ ለማየት፡ ይጫኑ ትንሿን ምልክት ከ ተንሸራታቹ ስር ያለውን በ <emph>ተንሸራታች ክፍል ውስጥ</emph>."
+msgstr "ለ ተንሸራታች መሸጋገሪያ ውጤት በ ቅድመ እይታ ለማየት: ይጫኑ ትንሿን ምልክት ከ ተንሸራታቹ ስር ያለውን በ <emph> ተንሸራታች ክፍል ውስጥ </emph>"
#: animated_slidechange.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3151287\n"
"help.text"
msgid "In <emph>Slide Sorter</emph> View, select the slides that you want to remove the transition effect from."
-msgstr "ከ <emph>ተንሸራታች መለያ</emph> መመልከቻ ውስጥ መሸጋገሪያውን ማስወገድ የሚፈልጉትን ተንሸራታች ይምረጡ"
+msgstr "ከ <emph> ተንሸራታች መለያ </emph> መመልከቻ ውስጥ መሸጋገሪያውን ማስወገድ የሚፈልጉትን ተንሸራታች ይምረጡ"
#: animated_slidechange.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"par_id3146930\n"
"help.text"
msgid "Choose <emph>No Transition </emph>in the listbox on the <emph>Tasks</emph> pane."
-msgstr "ይምረጡ <emph>መሸጋገሪያ የለም </emph>ከ ዝርዝር ሳጥን ውስጥ ከ <emph>ስራዎች</emph> ክፍል ውስጥ"
+msgstr "ይምረጡ <emph> መሸጋገሪያ የለም </emph> ከ ዝርዝር ሳጥን ውስጥ ከ <emph> ስራዎች </emph> ክፍል ውስጥ"
#: animated_slidechange.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3143233\n"
"help.text"
msgid "Choose <emph>View - Slide Sorter</emph>, select one or more slides, and then drag the slides to another location. To select multiple slides, hold down shift and click on the slides. To create a copy of a selected slide, hold down Ctrl while you drag. The mouse pointer changes to a plus sign. You can also drag a copy of a slide into another open $[officename] Impress document."
-msgstr "ይምረጡ <emph>መመልከቻ - ተንሸራታች መለያ</emph> ይምረጡ አንድ ወይንም ክዚያ በላይ ተንሸራታቾች: እና ከዛ ተንሸራታቾቹን ይጎትቱ ወደ ሌላ አካባቢ: በርካታ ተንሸራታቾች ለ መምረጥ: ተጭነው ይያዙ shift ቁልፍ እና ይጫኑ በ ተንሸራታቾች ላይ: የ ተመረጠውን ተንሻራታች ኮፒ ለ መፍጠር: ተጭነው ይያዙ Ctrl ቁልፍ በሚጎትቱ ጊዜ: የ አይጥ መጠቆሚያው ይቀየራል ወደ መደመሪያ ምልክት: እርስዎ እንዲሁም መጎተት ይችላሉ የ ተንሸራታች ኮፒ ወደ ሌላ የተከፈተ $[officename] ማስደነቂያ ሰነድ ውስጥ"
+msgstr "ይምረጡ <emph> መመልከቻ - ተንሸራታች መለያ </emph> ይምረጡ አንድ ወይንም ክዚያ በላይ ተንሸራታቾች: እና ከዛ ተንሸራታቾቹን ይጎትቱ ወደ ሌላ አካባቢ: በርካታ ተንሸራታቾች ለ መምረጥ: ተጭነው ይያዙ shift ቁልፍ እና ይጫኑ በ ተንሸራታቾች ላይ: የ ተመረጠውን ተንሻራታች ኮፒ ለ መፍጠር: ተጭነው ይያዙ Ctrl ቁልፍ በሚጎትቱ ጊዜ: የ አይጥ መጠቆሚያው ይቀየራል ወደ መደመሪያ ምልክት: እርስዎ እንዲሁም መጎተት ይችላሉ የ ተንሸራታች ኮፒ ወደ ሌላ የተከፈተ $[officename] ማስደነቂያ ሰነድ ውስጥ"
#: arrange_slides.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3149942\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>, and then click on the <emph>Background</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph> እና ከዛ ይጫኑ በ <emph>መደብ</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph> እና ከዛ ይጫኑ በ <emph> መደብ </emph> tab."
#: background.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_id3156064\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>, and then click on the <emph>Background</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph> እና ከዛ ይምረጡ ከ <emph>መደብ</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph> እና ከዛ ይምረጡ ከ <emph> መደብ </emph> tab."
#: background.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_id3150757\n"
"help.text"
msgid "If you want to use a custom image for the slide background, close the <emph>Page Setup </emph>dialog, and then choose <emph>Format - Area</emph>. Click the <emph>Bitmaps </emph>tab, and then click <emph>Import</emph>. Locate the image you want to import and click <emph>Open</emph>. When you return to the <emph>Background </emph>tab, the image you imported will be in the <emph>Bitmap </emph>list."
-msgstr "እርስዎ መጠቀም ከ ፈለጉ የ ምስል ማስተካከያ ለ ተንሸራታች መደብ: ይዝጉ የ <emph>ገጽ ማሰናጃውን </emph>ንግግር እና ከዛ ይምረጡ <emph>አቀራረብ - ቦታ</emph> ይጫኑ የ <emph>Bitmaps </emph>tab, እና ከዛ ይጫኑ <emph>ማምጫ</emph> ምስሉን ፈልገው ያግኙ ማምጣት የሚፈልጉትን እና ይጫኑ <emph>መክፈቻ</emph> ሲመለሱ ወደ <emph>መደብ </emph>tab, እርስዎ የመረጡት ምስል በዚያ ይኖራል በ <emph>Bitmap </emph>ዝርዝር ውስጥ"
+msgstr "እርስዎ መጠቀም ከ ፈለጉ የ ምስል ማስተካከያ ለ ተንሸራታች መደብ: ይዝጉ የ <emph> ገጽ ማሰናጃውን </emph> ንግግር እና ከዛ ይምረጡ <emph> አቀራረብ - ቦታ </emph> ይጫኑ የ <emph> Bitmaps </emph> tab: እና ከዛ ይጫኑ <emph> ማምጫ </emph> ምስሉን ፈልገው ያግኙ ማምጣት የሚፈልጉትን እና ይጫኑ <emph> መክፈቻ </emph> ሲመለሱ ወደ <emph> መደብ </emph> tab: እርስዎ የመረጡት ምስል በዚያ ይኖራል በ <emph> Bitmap </emph> ዝርዝር ውስጥ"
#: background.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_idN1082F\n"
"help.text"
msgid "Choose <emph>Format - Page</emph> to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this slide master."
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph> የ ተንሸራታች መደብ ለ መቀየር ወይንም ሌላ የ አቀራረብ ትእዛዝ ይምረጡ: እዚህ የሚጨመሩ እቃዎች በ ተንሸራታቹ ላይ ይታያሉ: ዋናውን ተንሸራታች መሰረት ባደረገ"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph> የ ተንሸራታች መደብ ለ መቀየር ወይንም ሌላ የ አቀራረብ ትእዛዝ ይምረጡ: እዚህ የሚጨመሩ እቃዎች በ ተንሸራታቹ ላይ ይታያሉ: ዋናውን ተንሸራታች መሰረት ባደረገ"
#: background.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_idN1083F\n"
"help.text"
msgid "Choose <emph>File - Templates - Save As Template</emph> to save the document as a template."
-msgstr "ይምረጡ <emph>ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት</emph> ሰነዱን እንደ ቴምፕሌት ለማስቀመጥ"
+msgstr "ይምረጡ <emph> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </emph> ሰነዱን እንደ ቴምፕሌት ለማስቀመጥ"
#: background.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id0919200803041186\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Glue Points</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ማረሚያ - መጋጠሚያ ነጥብ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማረሚያ - መጋጠሚያ ነጥብ </item>"
#: gluepoints.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"par_id3149502\n"
"help.text"
msgid "Choose <emph>File - Export</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መላኪያ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ </emph>"
#: html_export.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"par_id3146313\n"
"help.text"
msgid "In the slide where you want to insert the text, choose <emph>Insert - File</emph>."
-msgstr "ጽሁፉን ማስገባት የሚፈልጉትን ተንሸራታች ይምረጡ <emph> ማስገቢያ - ፋይል </emph>."
+msgstr "ጽሁፉን ማስገባት የሚፈልጉትን ተንሸራታች ይምረጡ <emph> ማስገቢያ - ፋይል </emph>"
#: html_import.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "Locate the file containing the text that you want to add, and then click <emph>Insert</emph>."
-msgstr "መጨመር የሚፈልጉትን ጽሁፍ ፈልገው ያግኙ እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "መጨመር የሚፈልጉትን ጽሁፍ ፈልገው ያግኙ እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>"
#: html_import.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "Under <emph>Existing Slides</emph>, select the slides you want to add to your slide show, and click the <emph>>></emph> button. Hold down Shift to select a range of slides, or Ctrl to select multiple slides."
-msgstr "በቅድሚያ <emph>ከ ነበረው ተንሸራታቾች</emph>, ይምረጡ ወደ እርስዎ ተንሸራታች መጨመር የሚፈልጉትን ይምረጡ፡ እና ከዛ ይጫኑ የ <emph>>></emph> ቁልፍ፡ ተጭነው ይያዙ Shift ቁልፍ የ ተንሸራታች መጠን ለመምረጥ ወይንም Ctrl በርካታ ተንሸራታቾች ለመምረጥ"
+msgstr "በቅድሚያ <emph> ከ ነበረው ተንሸራታች </emph> ውስጥ ይምረጡ ወደ እርስዎ ተንሸራታች መጨመር የሚፈልጉትን: እና ከዛ ይጫኑ የ <emph>>></emph> ቁልፍ፡ ተጭነው ይያዙ Shift ቁልፍ የ ተንሸራታች መጠን ለመምረጥ ወይንም Ctrl በርካታ ተንሸራታቾች ለመምረጥ"
#: individual.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3145593\n"
"help.text"
msgid "If you want the selected custom slide show to start when you click the <emph>Slide Show</emph> icon on the<emph> Presentation</emph> toolbar, or when you press F5, select <emph>Use Custom Slide Show</emph>."
-msgstr "እርስዎ ከ ፈለጉ የተመረጠው ተንሸራታች ማሳያ ማስተካከያ እንዲጀምር እርስዎ በ ሚጫኑ ጊዜ የ <emph>ተንሸራታች ማሳያ</emph> ምልክት በ<emph> ማቅረቢያ</emph> እቃ መደርደሪያ ላይ: ወይንም እርስዎ ሲጫኑ F5, ይምረጡ <emph>ይጠቀሙ ተንሸራታች ማሳያ ማስተካከያ</emph>."
+msgstr "እርስዎ ከ ፈለጉ የተመረጠው ተንሸራታች ማሳያ ማስተካከያ እንዲጀምር እርስዎ በ ሚጫኑ ጊዜ የ <emph> ተንሸራታች ማሳያ </emph> ምልክት በ <emph> ማቅረቢያ </emph> እቃ መደርደሪያ ላይ: ወይንም እርስዎ ሲጫኑ F5, ይምረጡ <emph> ይጠቀሙ ተንሸራታች ማሳያ ማስተካከያ </emph>"
#: individual.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_id3154501\n"
"help.text"
msgid "Type the page number of the slide, and then press <item type=\"keycode\">Enter</item>."
-msgstr "የ ተንሸራታቹን ገጽ ቁጥር ይጻፉ እና ከዛ ይጫኑ <item type=\"keycode\">ማስገቢያ</item>."
+msgstr "የ ተንሸራታቹን ገጽ ቁጥር ይጻፉ እና ከዛ ይጫኑ <item type=\"keycode\"> ማስገቢያ </item>"
#: keyboard.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "When you first switch to Slide Sorter, press <item type=\"keycode\">Enter</item> to change the keyboard focus to the workspace. Otherwise, press <item type=\"keycode\">F6</item> to navigate to the workspace, and then press <item type=\"keycode\">Enter</item>."
-msgstr "እርስዎ መጀመሪያ የ ተንሸራታች መለያ ሲቀይሩ: ይጫኑ <item type=\"keycode\">ማስገቢያ</item> ለ መቀየር የ ፊደል ገበታ ትኩረት ወደ ስራ ቦታ: ያለበለዚያ ይጫኑ <item type=\"keycode\">F6</item> ለ መቃኘት የ ስራ ቦታ: እና ከዛ ይጫኑ <item type=\"keycode\">ማስገቢያ</item>."
+msgstr "እርስዎ መጀመሪያ የ ተንሸራታች መለያ ሲቀይሩ: ይጫኑ <item type=\"keycode\"> ማስገቢያ </item> ለ መቀየር የ ፊደል ገበታ ትኩረት ወደ ስራ ቦታ: ያለበለዚያ ይጫኑ <item type=\"keycode\">F6</item> ለ መቃኘት የ ስራ ቦታ: እና ከዛ ይጫኑ <item type=\"keycode\"> ማስገቢያ </item>"
#: keyboard.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id3154658\n"
"help.text"
msgid "To change the properties of a layer, click the name tab of the layer, and then choose <emph>Format - Layer</emph>."
-msgstr "የ ደረጃ ባህሪን ለ መቀየር ይጫኑ የ ደረጃውን ስም tab እና ከዛ ይምረጡ <emph>አቀራረብ - ደረጃ</emph>."
+msgstr "የ ደረጃ ባህሪን ለ መቀየር ይጫኑ የ ደረጃውን ስም tab እና ከዛ ይምረጡ <emph> አቀራረብ - ደረጃ </emph>"
#: layer_new.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select a layer, and then choose <emph>Format - Layer</emph>."
-msgstr "ይምረጡ ደረጃ እና ከዛ ይምረጡ <emph>አቀራረብ - ደረጃ</emph>."
+msgstr "ይምረጡ ደረጃ እና ከዛ ይምረጡ <emph> አቀራረብ - ደረጃ </emph>"
#: layer_tipps.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"par_id3157871\n"
"help.text"
msgid "Select a hidden layer, and then choose <emph>Format - Layer</emph>."
-msgstr "ይምረጡ የተደበቀ ደረጃ እና ከዛ ይምረጡ <emph>አቀራረብ - ደረጃ</emph>."
+msgstr "ይምረጡ የተደበቀ ደረጃ እና ከዛ ይምረጡ <emph> አቀራረብ - ደረጃ </emph>"
#: layer_tipps.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"par_id3150864\n"
"help.text"
msgid "Select a layer, and then choose <emph>Format - Layer</emph>."
-msgstr "ይምረጡ ደረጃ እና ከዛ ይምረጡ <emph>አቀራረብ - ደረጃ</emph>."
+msgstr "ይምረጡ ደረጃ እና ከዛ ይምረጡ <emph> አቀራረብ - ደረጃ </emph>"
#: layer_tipps.xhp
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"par_id3145354\n"
"help.text"
msgid "Select a locked layer, and then choose <emph>Format - Layer</emph>."
-msgstr "ይምረጡ የተቆለፈ ደረጃ እና ከዛ ይምረጡ <emph>አቀራረብ - ደረጃ</emph>."
+msgstr "ይምረጡ የተቆለፈ ደረጃ እና ከዛ ይምረጡ <emph> አቀራረብ - ደረጃ </emph>"
#: layer_tipps.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Choose <emph>Format - Line</emph>, and then click the <emph>Line Styles</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - መስመር</emph> እና ከዛ ይጫኑ <emph>የ መስመር ዘዴዎች</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - መስመር </emph> እና ከዛ ይጫኑ <emph> የ መስመር ዘዴዎች </emph> tab."
#: line_arrow_styles.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id4907681\n"
"help.text"
msgid "On the Drawing toolbar, open the <emph>Curves</emph> toolbar <image id=\"Graphic2\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image> and select the <emph>Freeform Line</emph><image id=\"Graphic3\" src=\"cmd/sc_freeline_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image> tool."
-msgstr "በ መሳያ እቃ መደርደሪያ ላይ ይክፈቱ የ <emph>ክቦች</emph> እቃ መደርደሪያ <image id=\"Graphic2\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">ምልክት</alt></image> እና ይምረጡ <emph>ነፃ ከመስመር</emph><image id=\"Graphic3\" src=\"cmd/sc_freeline_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">ምልክት</alt></image> መሳሪያ"
+msgstr "በ መሳያ እቃ መደርደሪያ ላይ ይክፈቱ የ <emph> ክቦች </emph> እቃ መደርደሪያ ላይ <image id=\"Graphic2\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\"> ምልክት </alt></image> እና ይምረጡ <emph> ነፃ ከ መስመር </emph><image id=\"Graphic3\" src=\"cmd/sc_freeline_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\"> ምልክት </alt></image> መሳሪያ"
#: line_draw.xhp
msgctxt ""
@@ -2998,7 +2998,7 @@ msgctxt ""
"par_id3145252\n"
"help.text"
msgid "You can also modify the properties of the line by selecting the line and choosing <emph>Format - Line</emph>."
-msgstr "የ መስመር ባህሪዎችን ማሻሻል ይችላሉ መስመሩን በ መምረጥ እና ከዛ ይምረጡ <emph>አቀራረብ - መስመር</emph>."
+msgstr "የ መስመር ባህሪዎችን ማሻሻል ይችላሉ መስመሩን በ መምረጥ እና ከዛ ይምረጡ <emph> አቀራረብ - መስመር </emph>"
#: line_edit.xhp
msgctxt ""
@@ -3014,7 +3014,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "To view the data points and control points of a curved line, select the line, and then click the <emph>Points</emph> icon on the Drawing bar. The data points are represented by squares and the control points by circles. A control point might overlay a data point."
-msgstr "የ ዳታ ነጥቦች ለ መመልከት እና መቆጣጠሪያ ነጥቦች ለ ክብ መስመር: መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph>ነጥቦች</emph>ምልክት በ መሳያ እቃ መደርደሪያ ላይ: የ ዳታ ነጥቦች የሚወከሉት በ ስኴሮች እና መቆጣጠሪያ ነጥቦች በ ክቦች ነው: የ መቆጣጠሪያ ነጥቦች የ ዳታ ነጥብ ሊደርቡ ይችላሉ"
+msgstr "የ ዳታ ነጥቦች ለ መመልከት እና መቆጣጠሪያ ነጥቦች ለ ክብ መስመር: መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph> ነጥቦች </emph> ምልክት በ መሳያ እቃ መደርደሪያ ላይ: የ ዳታ ነጥቦች የሚወከሉት በ ስኴሮች እና መቆጣጠሪያ ነጥቦች በ ክቦች ነው: የ መቆጣጠሪያ ነጥቦች የ ዳታ ነጥብ ሊደርቡ ይችላሉ"
#: line_edit.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "Select a curved line, and then click the <emph>Points </emph>icon on the <emph>Drawing</emph> Bar."
-msgstr "ይምረጡ የ ክብ መስመር እና ከዛ ይጫኑ የ <emph>ነጥቦች </emph>ምልክት በ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ"
+msgstr "ይምረጡ የ ክብ መስመር እና ከዛ ይጫኑ የ <emph> ነጥቦች </emph> ምልክት በ <emph> መሳያ </emph> እቃ መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"par_id3151392\n"
"help.text"
msgid "Select a curved line, and then click the <emph>Points </emph>icon on the <emph>Drawing</emph> Bar."
-msgstr "የ ክብ መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph>ነጥቦች </emph>ምልክት በ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ"
+msgstr "የ ክብ መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph> ነጥቦች </emph> ምልክት በ <emph> መሳያ </emph> እቃ መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"par_id3149941\n"
"help.text"
msgid "Select a data point, and then click the <emph>Split Curve </emph>icon on the <emph>Edit Points</emph> Bar."
-msgstr "ይምረጡ የ ዳታ ነጥብ እና ከዛ ይጫኑ የ <emph>የ ክብ መክፈያ </emph>ምልክት በ <emph>ነጥቦች ማረሚያ</emph> እቃ መደርደሪያ ላይ"
+msgstr "ይምረጡ የ ዳታ ነጥብ እና ከዛ ይጫኑ የ <emph> ክብ መክፈያ </emph> ምልክት በ <emph> ነጥቦች ማረሚያ </emph> እቃ መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_id3156256\n"
"help.text"
msgid "On the <emph>Edit Points</emph> Bar, click the<emph> Insert Points</emph> icon."
-msgstr "ከ <emph>ማረሚያ ነጥቦች</emph> መደርደሪያ ላይ ይጫኑ የ<emph> ማስገቢያ ነጥቦች</emph> ምልክት"
+msgstr "ከ <emph> ማረሚያ ነጥቦች </emph> መደርደሪያ ላይ ይጫኑ የ <emph> ማስገቢያ ነጥቦች </emph> ምልክት"
#: line_edit.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "If a data point does not have a control point, select the data point, and then click the <emph>Convert to Curve</emph> icon on the <emph>Edit Points</emph> Bar."
-msgstr "የ ዳታ ነጥብ ምንም መቆጣጠሪያ ነጥብ ከሌለው: ይምረጡ የ ዳታ ነጥብ እና ከዛ ይምረጡ የ <emph>መቀየሪያ ወደ ክብ</emph> ምልክት ከ <emph>ነጥብ ማረሚያ </emph> መደርደሪያ ላይ"
+msgstr "የ ዳታ ነጥብ ምንም መቆጣጠሪያ ነጥብ ከሌለው: ይምረጡ የ ዳታ ነጥብ እና ከዛ ይምረጡ የ <emph> መቀየሪያ ወደ ክብ </emph> ምልክት ከ <emph> ነጥብ ማረሚያ </emph> መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_id3143230\n"
"help.text"
msgid "On the <emph>Edit Points</emph> Bar, click the<emph> Delete Points</emph> icon."
-msgstr "ከ <emph>ነጥቦች ማረሚያ</emph> መደርደሪያ ላይ ይጫኑ የ <emph> ነጥቦች ማጥፊያ</emph> ምልክት"
+msgstr "ከ <emph> ነጥቦች ማረሚያ </emph> መደርደሪያ ላይ ይጫኑ የ <emph> ነጥቦች ማጥፊያ </emph> ምልክት"
#: line_edit.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_id3153915\n"
"help.text"
msgid "Under <emph>Templates</emph>, select a template with the design that you want to apply. To preview the template, click <emph>More</emph>, and then select the <emph>Preview </emph>box."
-msgstr "ከ <emph>ቲምፕሌቶች</emph>, ውስጥ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን: ቲምፕሌት በቅድሚያ ለ መመልከት ይጫኑ <emph>ተጨማሪ</emph>, እና ከዛ ይምረጡ <emph>ቅድመ እይታ </emph>ሳጥን"
+msgstr "ከ <emph> ቴምፕሌቶች </emph> ውስጥ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን: ቴምፕሌት በቅድሚያ ለ መመልከት ይጫኑ <emph> ተጨማሪ </emph>: እና ከዛ ይምረጡ <emph> ቅድመ እይታ </emph> ሳጥን"
#: masterpage.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3155930\n"
"help.text"
msgid "Select the shape, and choose <emph>Format - Area</emph>."
-msgstr "ይምረጡ ቅርጽ እና ከዛ ይምረጡ <emph>አቀራረብ - ቦታ</emph>."
+msgstr "ይምረጡ ቅርጽ እና ከዛ ይምረጡ <emph> አቀራረብ - ቦታ </emph>"
#: orgchart.xhp
msgctxt ""
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Choose <emph>Insert - File</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - ፋይል </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - ፋይል </emph>"
#: page_copy.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_id3159238\n"
"help.text"
msgid "Locate the presentation file containing the slide that you want to insert, and click <emph>Insert</emph>."
-msgstr "እርስዎ ማስገባት የሚፈልጉትን ተንሸራታች የያዘውን ማቅረቢያ ፈልገው ያግኙ: እና ይጫኑ <emph>ማስገቢያ</emph>"
+msgstr "እርስዎ ማስገባት የሚፈልጉትን ተንሸራታች የያዘውን ማቅረቢያ ፈልገው ያግኙ: እና ይጫኑ <emph> ማስገቢያ </emph>"
#: page_copy.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "Select the slide(s), and then choose<emph> Edit - Copy</emph>."
-msgstr "ይምረጡ ተንሸራታች(ቾች), እና ከዛ ይምረጡ<emph> ማረሚያ - ኮፒ</emph>."
+msgstr "ይምረጡ ተንሸራታች(ቾች): እና ከዛ ይምረጡ<emph> ማረሚያ - ኮፒ </emph>"
#: page_copy.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id3156401\n"
"help.text"
msgid "Select the slide that you want the copied slide to follow, and then choose <emph>Edit - Paste</emph>."
-msgstr "በ ተንሸራታች ውስጥ እርስዎ ኮፒ ያደረጉት እንዲከተል የሚፈልጉትን ተንሸራታች ይምረጡ<emph> ማረሚያ - መለጠፊያ</emph>."
+msgstr "በ ተንሸራታች ውስጥ እርስዎ ኮፒ ያደረጉት እንዲከተል የሚፈልጉትን ተንሸራታች ይምረጡ <emph> ማረሚያ - መለጠፊያ </emph>"
#: page_copy.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "Choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ</emph>, እና ከዛ ይጫኑ <emph>ቀለሞች</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ከዛ ይጫኑ <emph> ቀለሞች </emph> tab."
#: palette_files.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"par_id3150393\n"
"help.text"
msgid "Choose <emph>Format - Area</emph>, and then click the <emph>Gradients</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ</emph> እና ከዛ ይጫኑ የ <emph>ከፍታ</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ከዛ ይጫኑ የ <emph> ከፍታ </emph> tab."
#: palette_files.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"par_id3155255\n"
"help.text"
msgid "Choose <emph>Format - Area</emph>, and then click the <emph>Hatching</emph> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - ቦታ</emph>, እና ከዛ ይጫኑ የ <emph>Hatching</emph> tab."
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ </emph> እና ከዛ ይጫኑ የ <emph> Hatching </emph> tab."
#: palette_files.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id221120161524584397\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album </item>"
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - መገናኛ - የ ፎቶ አልበም </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - መገናኛ - የ ፎቶ አልበም </item>"
#: photo_album.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_id221120161524581298\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - መገናኛ - የ ፎቶ አልበም </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - መገናኛ - የ ፎቶ አልበም </item>"
#: photo_album.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id221120161524593343\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert Slides</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ተንሸራታች ማስገቢያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ተንሸራታች ማስገቢያ </item>"
#: photo_album.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_id3148871\n"
"help.text"
msgid "In <emph>Layout settings </emph>area, select the <emph>Fit object to paper format</emph> check box."
-msgstr "ከ <emph>እቅድ ማሰናጃዎች </emph>ቦታ ይምረጡ የ <emph>እቃውን በ ወረቀቱ አቀራረብ ልክ</emph> ሳጥ ውስጥ ምልክት ያድርጉ"
+msgstr "ከ <emph> እቅድ ማሰናጃዎች </emph> ቦታ ይምረጡ የ <emph> እቃውን በ ወረቀቱ አቀራረብ ልክ </emph> ሳጥን ውስጥ ምልክት ያድርጉ"
#: print_tofit.xhp
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"par_id3153811\n"
"help.text"
msgid "In the <emph>Paper format</emph> area, select a <emph>Format</emph>."
-msgstr "ከ <emph>ወረቀት አቀራረብ</emph> ቦታ ይምረጡ <emph>አቀራረብ</emph>."
+msgstr "ከ <emph> ወረቀት አቀራረብ </emph> ቦታ ይምረጡ <emph> አቀራረብ </emph>"
#: print_tofit.xhp
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"par_id3154651\n"
"help.text"
msgid "Choose <emph>File - Print</emph>."
-msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>"
#: printing.xhp
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"par_id3150431\n"
"help.text"
msgid "These settings override the default printer options in <emph>Tools - Options - %PRODUCTNAME Impress - Print</emph> for the current print job only."
-msgstr "እኒዚህ ማሰናጃዎች የ ነባር ማተሚያውን ምርጫ ይሽረዋል በ <emph>መሳሪያዎች - ምርጫ - %PRODUCTNAME ማስደነቂያ - ማተሚያ</emph> ለ አሁኑ የ ሕትመት ስራ ብቻ"
+msgstr "እኒዚህ ማሰናጃዎች የ ነባር ማተሚያውን ምርጫ ይሽረዋል በ <emph>መሳሪያዎች - ምርጫ - %PRODUCTNAME ማስደነቂያ - ማተሚያ </emph> ለ አሁኑ የ ሕትመት ስራ ብቻ"
#: printing.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_id7197790\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Print</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ማተሚያ </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ማተሚያ </item>"
#: printing.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_id2901394\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Print</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ማተሚያ </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ማተሚያ </item>"
#: printing.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_id3157875\n"
"help.text"
msgid "Choose <emph>File - Print</emph>."
-msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>"
#: printing.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_id3150746\n"
"help.text"
msgid "In the <emph>Range and copies</emph> area, click <emph>Slides</emph>."
-msgstr "በ <emph>መጠን እና ኮፒዎች</emph> ቦታ ይጫኑ <emph>ተንሸራታቾች</emph>."
+msgstr "በ <emph> መጠን እና ኮፒዎች </emph> ቦታ ይጫኑ <emph> ተንሸራታቾች </emph>"
#: printing.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "Start the show with the <emph>Rehearse Timings</emph> icon <image id=\"img_id3156396\" src=\"cmd/sc_rehearsetimings.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156396\">Icon</alt></image> in the Slide View bar. You see the first slide, and a timer in the bottom corner."
-msgstr "ማሳየት ይጀምሩ በ <emph>ልምምድ ጊዜ</emph> ምልክት <image id=\"img_id3156396\" src=\"cmd/sc_rehearsetimings.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156396\">ምልክት</alt></image> በ ተንሸራታች እቃ መደርደሪያ ላይ፡ የ መጀመሪያው ተንሸራታች ይታያል እና ጊዜ ከ ታች በኩል"
+msgstr "ማሳየት ይጀምሩ በ <emph> ልምምድ ጊዜ </emph> ምልክት <image id=\"img_id3156396\" src=\"cmd/sc_rehearsetimings.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156396\"> ምልክት </alt></image> በ ተንሸራታች እቃ መደርደሪያ ላይ: የ መጀመሪያው ተንሸራታች ይታያል እና ሰአት ከ ታች በኩል"
#: rehearse_timings.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id8702658\n"
"help.text"
msgid "Press <item type=\"keycode\">Esc</item> to abort the show before the end."
-msgstr "ይጫኑ <item type=\"keycode\"> መዝለ </item> ትርኢቱ ከመጨረሱ በፊት ለማቋረጥ"
+msgstr "ይጫኑ <item type=\"keycode\"> መዝለያ </item> ትርኢቱ ከ መጨረሱ በፊት ለማቋረጥ"
#: show.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id6081728\n"
"help.text"
msgid "You can assign a different time for every slide to advance to the next slide. The <link href=\"text/simpress/guide/rehearse_timings.xhp\">rehearse timings</link> feature can assist you to get the timing right."
-msgstr "እርስዎ መመደብ ይችላሉ የ ተለያየ ሰአት እያንዳንዱ ተንሸራታች የሚቀጥልበትን ጊዜ <link href=\"text/simpress/guide/rehearse_timings.xhp\">የ ልምምድ ጊዜ</link> ገጽታ ይህን ለማድረግ ይረዳዎታል"
+msgstr "እርስዎ መመደብ ይችላሉ የ ተለያየ ሰአት እያንዳንዱ ተንሸራታች የሚቀጥልበትን ጊዜ <link href=\"text/simpress/guide/rehearse_timings.xhp\"> የ ልምምድ ጊዜ </link> ገጽታ ይህን ለማድረግ ይረዳዎታል"
#: show.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_id4799340\n"
"help.text"
msgid "You can start %PRODUCTNAME from a command prompt, followed by the parameter <item type=\"literal\">-show</item> and an Impress filename. For example, to start the file <item type=\"literal\">filename.odp</item> from the command prompt, enter the following command:"
-msgstr "እርስዎ መጀመር ይችላሉ %PRODUCTNAMEከ ትእዛዝ መስኮት ደንብ ውስጥ በ <item type=\"literal\">-ማሳያ</item> እና የ ማስደነቂያ ፋይል ስም: ለምሳሌ: ፋይል ለ ማስጀመር <item type=\"literal\">የ ፋይል ስም.odp</item> ከ ትእዛዝ መስኮት ውስጥ: የሚቀጥለውን ትእዛዝ ያስገቡ:"
+msgstr "እርስዎ መጀመር ይችላሉ %PRODUCTNAMEከ ትእዛዝ መስኮት ደንብ ውስጥ በ <item type=\"literal\">-ማሳያ </item> እና የ ማስደነቂያ ፋይል ስም: ለምሳሌ: ፋይል ለ ማስጀመር <item type=\"literal\"> የ ፋይል ስም.odp</item> ከ ትእዛዝ መስኮት ውስጥ: የሚቀጥለውን ትእዛዝ ያስገቡ:"
#: show.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"par_id3146313\n"
"help.text"
msgid "Choose <emph>Insert - OLE- Object</emph>. Click <emph>Create new</emph> and select the %PRODUCTNAME Spreadsheet. Click OK. Click in the spreadsheet to enter your data."
-msgstr "ይምረጡ <emph>ማስገቢያ - OLE- Object</emph> ይጫኑ <emph> አዲስ መፍጠሪያ </emph> እና ይምረጡ የ %PRODUCTNAME ሰንጠረዥ: ይጫኑ እሺ: ይጫኑ ሰንጠረዡ ላይ የ እርስዎን ዳታ ለማስገባት"
+msgstr "ይምረጡ <emph>ማስገቢያ - OLE- እቃ </emph> ይጫኑ <emph> አዲስ መፍጠሪያ </emph> እና ይምረጡ የ %PRODUCTNAME ሰንጠረዥ: ይጫኑ እሺ: ይጫኑ ሰንጠረዡ ላይ የ እርስዎን ዳታ ለማስገባት"
#: table_insert.xhp
msgctxt ""
@@ -5214,7 +5214,7 @@ msgctxt ""
"par_id3150391\n"
"help.text"
msgid "Select <emph>Create from file</emph>, and click <emph>Search</emph>."
-msgstr "ይምረጡ <emph>ከፋይል መፍጠሪያ</emph>, እና ይጫኑ<emph>መፈለጊያ</emph>."
+msgstr "ይምረጡ <emph> ከ ፋይል መፍጠሪያ </emph> እና ይጫኑ <emph> መፈለጊያ </emph>"
#: table_insert.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3149053\n"
"help.text"
msgid "In $[officename] Draw, choose <emph>Modify - Convert - To Curve</emph>."
-msgstr "ከ $[officename] መሳያይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ ክብ</emph>."
+msgstr "ከ $[officename] መሳያ: ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ ክብ </emph>"
#: text2curve.xhp
msgctxt ""
@@ -5390,7 +5390,7 @@ msgctxt ""
"par_id3145118\n"
"help.text"
msgid "In $[officename] Draw, choose <emph>Modify - Convert - To Polygon</emph>."
-msgstr "ከ $[officename] መሳያ ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ ፖሊጎን</emph>."
+msgstr "ከ $[officename] መሳያ: ይምረጡ <emph> ማሻሻያ - መቀየሪያ - ወደ ፖሊጎን </emph>"
#: vectorize.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath.po b/source/am/helpcontent2/source/text/smath.po
index 65562c9317e..e23a7899c1c 100644
--- a/source/am/helpcontent2/source/text/smath.po
+++ b/source/am/helpcontent2/source/text/smath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-28 16:22+0000\n"
+"PO-Revision-Date: 2017-06-18 19:22+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495988557.000000\n"
+"X-POOTLE-MTIME: 1497813747.000000\n"
#: main0000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3143269\n"
"help.text"
msgid "Have a look at <link href=\"http://www.dmaths.org\">www.dmaths.org</link> for a set of additional %PRODUCTNAME Math icons and macros."
-msgstr "ይህን ይመልከቱ <link href=\"http://www.dmaths.org\">www.dmaths.org</link> ለ ተጨማሪ %PRODUCTNAME ሂሳብ ምልክቶች እና macros."
+msgstr "ይህን ይመልከቱ <link href=\"http://www.dmaths.org\">www.dmaths.org</link> ለ ተጨማሪ %PRODUCTNAME ሂሳብ ምልክቶች እና ማክሮስ"
#: main0000.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3150213\n"
"help.text"
msgid "If you are familiar with the $[officename] Math language, you can also type a formula directly into the document. For example, type this formula into a text document: \"a sup 2 + b sup 2 = c sup 2\". Select this text and choose <emph>Insert - Object - Formula</emph>. The text will be converted into a formatted formula."
-msgstr "እርስዎ በ ትክክል የሚያውቁ ከሆነ የ $[officename] ሂሳብ ቋንቋ: እርስዎ መጻፍ ይችላሉ መቀመሪያ በ ቀጥታ ወደ ሰነድ ውስጥ: ለምሳሌ: ይጻፉ ይህን መቀመሪያ ወደ ጽሁፍ ሰነድ ውስጥ: \"a sup 2 + b sup 2 = c sup 2\". ይህን ጽሁፍ ይምረጡ እና ይምረጡ <emph> ማስገቢያ - እቃ - መቀመሪያ </emph> ጽሁፉ ወደ መቀመሪያ አቀራረብ ይቀየራል"
+msgstr "እርስዎ በ ትክክል የሚያውቁ ከሆነ የ $[officename] ሂሳብ ቋንቋ: እርስዎ መጻፍ ይችላሉ መቀመሪያ በ ቀጥታ ወደ ሰነድ ውስጥ: ለምሳሌ: ይጻፉ ይህን መቀመሪያ ወደ ጽሁፍ ሰነድ ውስጥ: \"a sup 2 + b በትንንሽ ፊደል ከፍ ብሎ 2 = c በትንንሽ ፊደል ከፍ ብሎ 2\": ይህን ጽሁፍ ይምረጡ እና ይምረጡ <emph> ማስገቢያ - እቃ - መቀመሪያ </emph> ጽሁፉ ወደ መቀመሪያ አቀራረብ ይቀየራል"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/00.po b/source/am/helpcontent2/source/text/smath/00.po
index a7b48993593..82b556b44d2 100644
--- a/source/am/helpcontent2/source/text/smath/00.po
+++ b/source/am/helpcontent2/source/text/smath/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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-30 23:37+0000\n"
+"PO-Revision-Date: 2017-06-16 19:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496187420.000000\n"
+"X-POOTLE-MTIME: 1497641720.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "Choose <emph>Edit - Next Marker</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - የሚቀጥለው ምልክት</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - የሚቀጥለው ምልክት </emph>"
#: 00000004.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3149021\n"
"help.text"
msgid "Choose <emph>Edit - Previous Marker</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ቀደም ያለው ምልክት</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ቀደም ያለው ምልክት </emph>"
#: 00000004.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "Choose <emph>Edit - Next Error</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - የሚቀጥለው ስህተት</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - የሚቀጥለው ስህተት </emph>"
#: 00000004.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3149499\n"
"help.text"
msgid "Choose <emph>Edit - Previous Error</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - ቀደም ያለው ስህተት</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - ቀደም ያለው ስህተት </emph>"
#: 00000004.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3150360\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Relations</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ግንኙነት</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> ግንኙነት </emph>"
#: 00000004.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Operators</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>አንቀሳቃሾች</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> አንቀሳቃሾች </emph>"
#: 00000004.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3149297\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Functions</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ተግባሮች</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> ተግባሮች </emph>"
#: 00000004.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3147092\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Brackets</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ቅንፎች</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> ቅንፎች </emph>"
#: 00000004.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3153510\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Attributes</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ባህሪዎች</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> ባህሪዎች </emph>"
#: 00000004.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3154114\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Formats</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>አቀራረብ</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> አቀራረብ </emph>"
#: 00000004.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3150581\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Formats</emph> from the listbox."
-msgstr "ይምረጡ <emph>መመልከቻ - አካላቶች</emph> ከዛ ከ አካላቶች ክፍል ይምረጡ <emph>አቀራረብ</emph> ከ ዝርዝር ሳጥን ውስጥ"
+msgstr "ይምረጡ <emph> መመልከቻ - አካላቶች </emph> ከዛ ከ አካላቶች ክፍል ይምረጡ <emph> አቀራረብ </emph> ከ ዝርዝር ሳጥን ውስጥ"
#: 00000004.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3149008\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Set Operations</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ተግባሮች ማሰናጃ</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> ተግባሮች ማሰናጃ </emph>"
#: 00000004.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id3150109\n"
"help.text"
msgid "<variable id=\"fmtsfa\">Choose <emph>Format - Fonts</emph></variable>"
-msgstr "<variable id=\"fmtsfa\">ይምረጡ <emph>አቀራረብ - ፊደሎች</emph></variable>"
+msgstr "<variable id=\"fmtsfa\">ይምረጡ <emph> አቀራረብ - ፊደሎች </emph></variable>"
#: 00000004.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"fmtssa\">Choose <emph>Format - Fonts - Modify</emph></variable>"
-msgstr "<variable id=\"fmtssa\">ይምረጡ <emph>አቀራረብ - ፊደሎች - ማሻሻያ</emph></variable>"
+msgstr "<variable id=\"fmtssa\">ይምረጡ <emph> አቀራረብ - ፊደሎች - ማሻሻያ </emph></variable>"
#: 00000004.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3147419\n"
"help.text"
msgid "<variable id=\"fmtsgr\">Choose <emph>Format - Font Size</emph></variable>"
-msgstr "<variable id=\"fmtsgr\">ይምረጡ <emph>አቀራረብ - የ ፊደል መጠን</emph></variable>"
+msgstr "<variable id=\"fmtsgr\">ይምረጡ <emph> አቀራረብ - የ ፊደል መጠን </emph></variable>"
#: 00000004.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id3147482\n"
"help.text"
msgid "<variable id=\"fmtabs\">Choose <emph>Format - Spacing</emph></variable>"
-msgstr "<variable id=\"fmtabs\">ይምረጡ <emph>አቀራረብ - ክፍተት</emph></variable>"
+msgstr "<variable id=\"fmtabs\">ይምረጡ <emph> አቀራረብ - ክፍተት </emph></variable>"
#: 00000004.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3147628\n"
"help.text"
msgid "<variable id=\"fmtarg\">Choose <emph>Format - Alignment</emph></variable>"
-msgstr "<variable id=\"fmtarg\">ይምረጡ <emph>አቀራረብ - ማሰለፊያ</emph></variable>"
+msgstr "<variable id=\"fmtarg\">ይምረጡ <emph> አቀራረብ - ማሰለፊያ </emph></variable>"
#: 00000004.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3153291\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Others</emph>"
-msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ሌሎች</emph>"
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph> ሌሎች </emph>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index b8838a8aebe..570170b2e8c 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/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: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 00:08+0000\n"
+"PO-Revision-Date: 2017-06-21 15:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496707709.000000\n"
+"X-POOTLE-MTIME: 1498060272.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">የ መቀመሪያ ማሳያ መጠን መጨመሪያ በ 25%.</ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታዎች መደርደሪያ ላይ ይታያል: ሊደርስባቸው የሚችሉ ዝግጁ የሆኑ ማስያዎች ምርጫ ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">አገባብ ዝርዝር</link> ውስጥ: የ አገባብ ዝርዝር በ ስራ ቦታ ውስጥ የማሳያ መጠን ይዟል"
+msgstr "<ahelp hid=\".\">የ መቀመሪያ ማሳያ መጠን መጨመሪያ በ 25%.</ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታዎች መደርደሪያ ላይ ይታያል: ሊደርስባቸው የሚችሉ ዝግጁ የሆኑ ማስያዎች ምርጫ ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ: የ አገባብ ዝርዝር በ ስራ ቦታ ውስጥ የማሳያ መጠን ይዟል"
#: 03050000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">የ መቀመሪያ ማሳያ መጠን መጨመሪያ በ 25%.</ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታዎች መደርደሪያ ላይ ይታያል: ሊደርስባቸው የሚችሉ ዝግጁ የሆኑ ማስያዎች ምርጫ ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">አገባብ ዝርዝር</link> ውስጥ: የ አገባብ ዝርዝር በ ስራ ቦታ ውስጥ የማሳያ መጠን ይዟል"
+msgstr "<ahelp hid=\".\">የ መቀመሪያ ማሳያ መጠን መጨመሪያ በ 25%.</ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታዎች መደርደሪያ ላይ ይታያል: ሊደርስባቸው የሚችሉ ዝግጁ የሆኑ ማስያዎች ምርጫ ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ: የ አገባብ ዝርዝር በ ስራ ቦታ ውስጥ የማሳያ መጠን ይዟል"
#: 03060000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3148571\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
-msgstr "<ahelp hid=\".\">ጠቅላላ መቀመሪያውን ማሳያ በ ተቻለው ከፍተኛ መጠን አካላቶቹ በሙሉ እንዲካተቱ: መቀመሪያው ያንሳል ወይንም ይጨምራል ስለዚህ የ መቀመሪያ አካላቶች በ ስራ ቦታ ላይ ይታያሉ: </ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታ መደርደሪያ ላይ ይታያል: ዝግጁ የማሳያ ምርጫ ጋር መድረስ ይችላሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">አገባብ ዝርዝር</link> የ አገባብ ዝርዝር በ ስራ ቦታ እንዲሁም የ ማሳያ ትእዛዞች ይዟል: የ አገባብ ዝርዝር በ ስራ ቦታ እንዲሁም የ ማሳያ ትእዛዞች ይዟል: የ ማሳያ ትእዛዞች እና ምልክቶች ዝግጁ የሚሆነው ለ ሂሳብ ሰነድ ነው: ለ ተጣበቁ የ ሂሳብ እቃዎች አይደለም"
+msgstr "<ahelp hid=\".\">ጠቅላላ መቀመሪያውን ማሳያ በ ተቻለው ከፍተኛ መጠን አካላቶቹ በሙሉ እንዲካተቱ: መቀመሪያው ያንሳል ወይንም ይጨምራል ስለዚህ የ መቀመሪያ አካላቶች በ ስራ ቦታ ላይ ይታያሉ: </ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታ መደርደሪያ ላይ ይታያል: ዝግጁ የማሳያ ምርጫ ጋር መድረስ ይችላሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> የ አገባብ ዝርዝር በ ስራ ቦታ እንዲሁም የ ማሳያ ትእዛዞች ይዟል: የ አገባብ ዝርዝር በ ስራ ቦታ እንዲሁም የ ማሳያ ትእዛዞች ይዟል: የ ማሳያ ትእዛዞች እና ምልክቶች ዝግጁ የሚሆነው ለ ሂሳብ ሰነድ ነው: ለ ተጣበቁ የ ሂሳብ እቃዎች አይደለም"
#: 03070000.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id3154196\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XCDOTY\">Inserts a dot operator with two placeholders.</ahelp> You can also type <emph><?>cdot<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XCDOTY\">ማስገቢያ a dot operator ከ ሁለት ቦታ ያዢዎች ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?>cdot<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XCDOTY\">ማስገቢያ የ ነጥብ አንቀሳቃሽ ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> ክብ ነጥብ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3155125\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XOVERY\">Inserts a fraction with two placeholders.</ahelp> You can also type <emph><?>over<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XOVERY\">ማስገቢያ ክፍልፋይ ከ ሁለት ቦታ ያዢ ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?>over<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XOVERY\">ማስገቢያ ክፍልፋይ ከ ሁለት ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> ከ ላይ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3151129\n"
"help.text"
msgid "Concatenate"
-msgstr "Concatenate"
+msgstr "አገናኝ"
#: 03090100.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id3156102\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XCIRCY\">Inserts a <emph>concatenation sign</emph> with two placeholders. </ahelp> You can also type <emph>circ</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XCIRCY\">ማስገቢያ <emph> የ concatenation ምልክት </emph> ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph>circ</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XCIRCY\">ማስገቢያ <emph> የ አገናኝ ምልክት </emph> ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ክብ </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3150464\n"
"help.text"
msgid "You can also insert user-defined unary operators by typing <emph>uoper</emph> in the <emph>Commands</emph> window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command <emph>uoper %theta x</emph> produces a small Greek letter theta (a component of the <emph>$[officename] Math</emph> character set). You can also insert characters not in the $[officename] character set by choosing <emph>Tools - Symbols - Edit</emph>."
-msgstr "እርስዎ እንዲሁም ማስገባት ይችላሉ በ ተጠቃሚ-የሚገለጽ unary አንቀሳቃሽ በ መጻፍ <emph>uoper</emph> በ <emph>ትእዛዞች</emph> መስኮት ውስጥ: ተከትሎ አገባብ ለ ባህሪ: ይህ ተግባር በጣም ጠቃሚ ነው ለ ተለዩ ባህሪዎችን ወደ መቀመሪያ ውስጥ ለማዋሀድ: ለምሳሌ: የ ትእዛዝ <emph>uoper %theta x</emph> ይፈጥራል ትንሽ የ Greek ፊደል theta (አካል ለ <emph>$[officename] ሂሳብ</emph> ባህሪ ማሰናጃ). እርስዎ እንዲሁም ባህሪዎች ማስገባት ይችላሉ አይደለም በ $[officename] ባህሪ ማሰናጃ በ መምረጥ <emph>መሳሪያዎች - ምልክቶች - ማረሚያ</emph>."
+msgstr "እርስዎ እንዲሁም ማስገባት ይችላሉ በ ተጠቃሚ-የሚገለጽ unary አንቀሳቃሽ በ መጻፍ <emph>uoper</emph> በ <emph> ትእዛዞች </emph> መስኮት ውስጥ: ተከትሎ አገባብ ለ ባህሪ: ይህ ተግባር በጣም ጠቃሚ ነው ለ ተለዩ ባህሪዎችን ወደ መቀመሪያ ውስጥ ለማዋሀድ: ለምሳሌ: የ ትእዛዝ <emph>uoper %ቴታ x</emph> ይፈጥራል ትንሽ የ ግሪክ ፊደል ቴታ (አካል ለ <emph>$[officename] ሂሳብ </emph> ባህሪ ማሰናጃ): እርስዎ እንዲሁም ባህሪዎች ማስገባት ይችላሉ አይደለም በ $[officename] ባህሪ ማሰናጃ በ መምረጥ <emph> መሳሪያዎች - ምልክቶች - ማረሚያ </emph>"
#: 03090100.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3150906\n"
"help.text"
msgid "By typing <emph><?>oplus<?></emph> in the <emph>Commands</emph> window, you insert a <emph>circled plus operator</emph> in your document."
-msgstr "በ መጻፍ <emph><?>ክብ መደመሪያ<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ: እርስዎ ማስገባት ይችላሉ የ <emph>ክብ መደመሪያ አንቀሳቃሽ</emph> በ እርስዎ ሰነድ ውስጥ"
+msgstr "በ መጻፍ <emph><?> ክብ መደመሪያ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ: እርስዎ ማስገባት ይችላሉ የ <emph> ክብ መደመሪያ አንቀሳቃሽ </emph> በ እርስዎ ሰነድ ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3155082\n"
"help.text"
msgid "Type <emph><?>odot<?></emph> in the <emph>Commands</emph> window to insert a <emph>circled dot operator</emph> in the formula."
-msgstr "ይጻፉ <emph><?>ክብ ነጥብ<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ ለማስገባት የ <emph>ክብ ነጥብ አንቀሳቃሽ</emph> በ መቀመሪያ ውስጥ"
+msgstr "ይጻፉ <emph><?> ክብ ነጥብ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ ለማስገባት የ <emph> ክብ ነጥብ አንቀሳቃሽ </emph> በ መቀመሪያ ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3150089\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XWIDESLASHY\">Type <emph>a wideslash b</emph> in the <emph>Commands</emph> window to produce two characters with a slash (from lower left to upper right) between them.</ahelp> The characters are set such that everything to the left of the slash is up, and everything to the right is down. This command is also available in the context menu of the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XWIDESLASHY\">ይጻፉ <emph>a wideslash b</emph> በ <emph>ትእዛዞች</emph> መስኮት ውስጥ ለ መፍጠር ሁለት ባህሪዎች ከ slash ጋር (ከ ታች በ ግራ በኩል እስከ ላይ በ ቀኝ በኩል) በ መካከለቸው: </ahelp> ባህሪዎች ይሰናዳሉ እንደ ሁሉም ነገር ከ slash በ ግራ በኩል ወደ ላይ: እና ሁሉም ነገር በ ቀኝ በኩል ወደ ታች: ይህ ትእዛዝ እንዲሁም ዝግጁ ነው በ አገባብ ዝርዝር ውስጥ: በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XWIDESLASHY\">ይጻፉ <emph> a ሰፊ ስላሽ b </emph> በ <emph> ትእዛዞች </emph> መስኮት ውስጥ ለ መፍጠር ሁለት ባህሪዎች ከ ስላሽ ጋር (ከ ታች በ ግራ በኩል እስከ ላይ በ ቀኝ በኩል) በ መካከለቸው: </ahelp> ባህሪዎች ይሰናዳሉ እንደ ሁሉም ነገር ከ ስላሽ በ ግራ በኩል ወደ ላይ: እና ሁሉም ነገር በ ቀኝ በኩል ወደ ታች: ይህ ትእዛዝ እንዲሁም ዝግጁ ነው በ አገባብ ዝርዝር ውስጥ: በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3150024\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XWIDEBSLASHY\">Type <emph>a widebslash b</emph> in the <emph>Commands</emph> window to produce two characters with a slash (from upper left to lower right) between them.</ahelp> The characters are set such that everything to the left of the slash is down, and everything to the right is up. This command is also available in the context menu of the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XWIDEBSLASHY\">ይጻፉ <emph>a wideslash b</emph> በ <emph>ትእዛዞች</emph> መስኮት ውስጥ ለ መፍጠር ሁለት ባህሪዎች ከ slash ጋር (ከ ላይ በ ግራ በኩል እስከ ታች በ ቀኝ በኩል) በ መካከለቸው: </ahelp> ባህሪዎች ይሰናዳሉ እንደ ሁሉም ነገር ከ slash በ ግራ በኩል ወደ ታች: እና ሁሉም ነገር በ ቀኝ በኩል ወደ ላይ: ይህ ትእዛዝ እንዲሁም ዝግጁ ነው በ አገባብ ዝርዝር ውስጥ: በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XWIDEBSLASHY\">ይጻፉ <emph>a ሰፊ ስላሽ b </emph> በ <emph> ትእዛዞች </emph> መስኮት ውስጥ ለ መፍጠር ሁለት ባህሪዎች ከ slash ጋር (ከ ላይ በ ግራ በኩል እስከ ታች በ ቀኝ በኩል) በ መካከለቸው: </ahelp> ባህሪዎች ይሰናዳሉ እንደ ሁሉም ነገር ከ ስላሽ በ ግራ በኩል ወደ ታች: እና ሁሉም ነገር በ ቀኝ በኩል ወደ ላይ: ይህ ትእዛዝ እንዲሁም ዝግጁ ነው በ አገባብ ዝርዝር ውስጥ: በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3147258\n"
"help.text"
msgid "The following is a complete list of the relations. The symbol next to the name of the relation indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr "የሚቀጥለው ሙሉ የ ግንኙነቶች ዝርዝር ነው: ከ ምልክት አጠገብ ያለው ስም የሚያሳየው ግንኙነት በ አካላቶች ክፍል ውስጥ መድረስ እንደሚቻል ነው (ይምረጡ <emph>መመልከቻ - አካላቶች</emph>) ወይንም በ አገባብ ዝርዝር ውስጥ ከ <emph>ትእዛዞች</emph> መስኮት ውስጥ"
+msgstr "የሚቀጥለው ሙሉ የ ግንኙነቶች ዝርዝር ነው: ከ ምልክት አጠገብ ያለው ስም የሚያሳየው ግንኙነት በ አካላቶች ክፍል ውስጥ መድረስ እንደሚቻል ነው (ይምረጡ <emph> መመልከቻ - አካላቶች </emph>) ወይንም በ አገባብ ዝርዝር ውስጥ ከ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3155181\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XEQUIVY\">Inserts a character for the <emph>identical to</emph> (congruent) relation with two placeholders.</ahelp> You can also type <emph><?> equiv <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XEQUIVY\">ማስገቢያ ባህሪ ለ <emph>ተመሳሳይ ወደ</emph> (ተመሳሳይ) ግንኙነት ከ ሁለት ቦታ ያዢዎች ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> equiv <?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XEQUIVY\">ማስገቢያ ባህሪ ለ <emph> ተመሳሳይ ወደ </emph> (ተመሳሳይ) ግንኙነት ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> እኩል ነው <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3148976\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XORTHOY\">Inserts a character for an <emph>orthogonal</emph> (right angled) relation with two placeholders.</ahelp> You can also type <emph><?> ortho <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XORTHOY\">ማስገቢያ ባህሪ ለ <emph> ኦርቶጎናል </emph> (ራይት አንግል) ግንኙነት ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> ኦርቶ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XORTHOY\">ማስገቢያ ባህሪ ለ <emph> ኦርቶጎናል </emph> (ራይት አንግል) ግንኙነት ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> ኦርቶጎናል <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNDIVIDESY\">This icon inserts the <emph>does not divide</emph> character.</ahelp> You can also type <emph><?>ndivides<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XNDIVIDESY\">ይህ ምልክት የሚያስገባው የ <emph>አያካፍልም</emph> ባህሪ </ahelp> ነው: እንዲሁም መጻፍ ይችላሉ <emph><?>አያካፍልም<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XNDIVIDESY\">ይህ ምልክት የሚያስገባው የ <emph> አያካፍልም </emph> ባህሪ </ahelp> ነው: እንዲሁም መጻፍ ይችላሉ <emph><?> አያካፍልም <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3147449\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XPARALLELY\">Inserts a <emph>parallel </emph>relation with two placeholders.</ahelp> You can also type <emph><?>parallel<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XPARALLELY\">ማስገቢያ የ <emph> አጓዳኝ </emph> ግንኙነት ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?>አጓዳኝ<?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XPARALLELY\">ማስገቢያ የ <emph> አጓዳኝ </emph> ግንኙነት ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph><?> አጓዳኝ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3149599\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DLARROW\">Inserts the logical relation <emph>arrow with double bar pointing left</emph>.</ahelp> You can also type <emph>dlarrow</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DLARROW\">ማስገቢያ የ ሎጂካል ግንኙነት <emph> ቀስት በ ድርብ መደርደሪያ ወደ ግራ የሚጠቁም </emph>.</ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ድርብ ቀስት </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_DLARROW\">ማስገቢያ የ ሎጂካል ግንኙነት <emph> ቀስት በ ድርብ መደርደሪያ ወደ ግራ የሚጠቁም </emph></ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ድርብ ቀስት </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id3148707\n"
"help.text"
msgid "double arrow pointing left and right"
-msgstr "ድርብ ቀስት ወደ ግራእና ወደ ቀኝ የሚያመለክት"
+msgstr "ድርብ ቀስት ወደ ግራ እና ወደ ቀኝ የሚያመለክት"
#: 03090200.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_id3148721\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DLRARROW\">Inserts the logical relation <emph>arrow with double bar pointing left and right</emph> with two operators.</ahelp> You can also type <emph>dlrarrow</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DLRARROW\">ማስገቢያ የ ሎጂካል ግንኙነት <emph> ድርብ ቀስት ወደ ግራ እና ወደ ቀኝ የሚያመለክት </emph> ከ ሁለት አንቀሳቃሽ ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph>ድርብ ቀስት</emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_DLRARROW\">ማስገቢያ የ ሎጂካል ግንኙነት <emph> ድርብ ቀስት ወደ ግራ እና ወደ ቀኝ የሚያመለክት </emph> ከ ሁለት አንቀሳቃሽ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ድርብ ቀስት ወደ ቀኝ የሚያመለክት </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"par_id3153749\n"
"help.text"
msgid "The <emph>is defined as</emph> relation with two placeholders is inserted by typing <emph><?>def<?></emph>."
-msgstr "የ <emph>መግለጫ እንደ</emph> ግንኙነት ከ ሁለት ባታ ያዢ ጋር በ መጻፍ ያስገቡ <emph><?>መግለጫ<?></emph>."
+msgstr "የ <emph> ተገልጿል እንደ </emph> ግንኙነት ከ ሁለት ባታ ያዢ ጋር በ መጻፍ ያስገቡ <emph><?> ተገልጿል እንደ <?></emph>"
#: 03090200.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "Insert the <emph>picture by</emph> correspondence character with two placeholders by typing <emph><?> transl <?></emph> in the <emph>Commands</emph> window."
-msgstr "ማስገቢያ <emph>ስእል በ</emph> ተመሳሳይ ባህሪ ከ ሁለት ቦታ ያዢ ጋር በ መጻፍ <emph><?> መቀየሪያ <?></emph> በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
+msgstr "ማስገቢያ <emph> ስእል በ </emph> ተመሳሳይ ባህሪ ከ ሁለት ቦታ ያዢ ጋር በ መጻፍ <emph><?> መተርጎሚያ <?></emph> በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
#: 03090200.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id3153576\n"
"help.text"
msgid "The following is a list of the available operators. An icon next to the operator name indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr "የሚቀጥሉት ሙሉ ዝርዝር ናቸው ለ ሁሉም ዝግጁ አንቀሳቃሾች: ይህ ምልክት አጠገብ ያለው አንቀሳቃሽ ስም የሚያመለክተው የ አካላቶች ክፍል ውስጥ መድረስ እንደሚቻል ነው (ይምረጡ <emph>መመልከቻ - አካላቶች</emph>) ወይንም በ አገባብ ዝርዝር ውስጥ በ <emph>ትእዛዞች</emph> መስኮት ውስጥ"
+msgstr "የሚቀጥሉት ሙሉ ዝርዝር ናቸው ለ ሁሉም ዝግጁ አንቀሳቃሾች: ይህ ምልክት አጠገብ ያለው አንቀሳቃሽ ስም የሚያመለክተው የ አካላቶች ክፍል ውስጥ መድረስ እንደሚቻል ነው (ይምረጡ <emph> መመልከቻ - አካላቶች </emph>) ወይንም በ አገባብ ዝርዝር ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
#: 03090300.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3153540\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LIMX\">Inserts the <emph>limit sign</emph> with one placeholder.</ahelp> You can also enter <emph>lim <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LIMX\">ማስገቢያ የ <emph> መጠን ምልክት </emph> ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም ማስገባት ይችላሉ <emph>lim <?></emph> በቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_LIMX\">ማስገቢያ የ <emph> መጠን ምልክት </emph> ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም ማስገባት ይችላሉ <emph> መጠን <?></emph> በቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090300.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_id3147489\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_IIINTX\">Inserts <emph>a triple integral</emph> sign with one placeholder.</ahelp> You can also type <emph>iiint <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_IIINTX\">ማስገቢያ <emph>yeትሪፕል ኢንትግራል </emph> ምልክት ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph>iiint <?></emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_IIINTX\">ማስገቢያ <emph>yeትሪፕል ኢንትግራል </emph> ምልክት ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ትሪፕል ኢንትግራል <?></emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090300.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "You can also add limits to an operator (for example, an integral) by first clicking the desired operator and then clicking the <emph>limit</emph> symbol. This method is faster than typing the commands directly."
-msgstr "እርስዎ እንዲሁም መጠኖች መጨመር ይችላሉ ለ አንቀሳቃሽ (ለምሳሌ: ለ ጠቅላላ) መጀመሪያ በ መጫን የሚፈለገውን አንቀሳቃሽ እና ከዛ በ መጫን የ <emph>መጠን</emph> ምልክት: ይህ ዘዴ ፈጣን ነው ትእዛዝ በ ቀጥታ ከ መጻፍ"
+msgstr "እርስዎ እንዲሁም መጠኖች መጨመር ይችላሉ ለ አንቀሳቃሽ (ለምሳሌ: ለ ጠቅላላ) መጀመሪያ በ መጫን የሚፈለገውን አንቀሳቃሽ እና ከዛ በ መጫን የ <emph> መጠን </emph> ምልክት: ይህ ዘዴ ፈጣን ነው ትእዛዝ በ ቀጥታ ከ መጻፍ"
#: 03090300.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_id3147254\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_EX\">Inserts a natural exponential function.</ahelp> You can also type <emph>func e^<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_EX\">ማስገቢያ የ ተፈጥሮ ኤክስፖኔንሺያል ተግባር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph>ተግባር e^<?></emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_EX\">ማስገቢያ የ ተፈጥሮ ኤክስፖኔንሺያል ተግባር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ተግባር e^<?></emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090400.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3152947\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LNX\">Inserts a natural (base e) logarithm with one placeholder.</ahelp> You can also type <emph>ln(<?>) </emph>in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LNX\">ማስገቢያ የ ተፈጥሮ (base e) ሎጋሪዝም ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph>የ ተፈጥሮ ሎጋሪዝም(<?>) </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_LNX\">ማስገቢያ የ ተፈጥሮ (ቤዝ e) ሎጋሪዝም ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> የ ተፈጥሮ ሎጋሪዝም (<?>) </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090400.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id3159190\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LOGX\">Inserts a common (base 10) logarithm with one placeholder.</ahelp> You can also type <emph>log(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LOGX\">ማስገቢያ የ መደበኛ (base 10) ሎጋሪዝም ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ሎጋሪዝም(<?>)</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_LOGX\">ማስገቢያ የ መደበኛ (ቤዝ 10) ሎጋሪዝም ከ አንድ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ሎጋሪዝም (<?>)</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090400.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts x raised to the yth power.</ahelp> You can also type <emph><?>^{<?>}</emph> in the <emph>Commands</emph> window. You can replace the <emph>^</emph> character with <emph>rsup</emph> or <emph>sup</emph>."
-msgstr "<ahelp hid=\".\">ማስገቢያ x ተነስቷል በ yኛ ሀይል </ahelp> እርስዎ እንዲሁም መጻፍ ይችላሉ <emph><?>^{<?>}</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ: እርስዎ መቀየር ይችላሉ የ <emph>^</emph> ባህሪ በ <emph> በ ቀኝ በትንንሽ ከፍ ብሎ </emph> ወይንም <emph> በትንንሽ ከፍ ብሎ</emph>."
+msgstr "<ahelp hid=\".\">ማስገቢያ x ተነስቷል በ yኛ ሀይል </ahelp> እርስዎ እንዲሁም መጻፍ ይችላሉ <emph><?>^{<?>}</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ: እርስዎ መቀየር ይችላሉ የ <emph>^</emph> ባህሪ <emph> በ ቀኝ በትንንሽ ከፍ ብሎ </emph> ወይንም <emph> በትንንሽ ከፍ ብሎ </emph> መጻፊያ"
#: 03090400.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id3155578\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NROOTXY\">Inserts an nth root function with two placeholders.</ahelp> You can also type <emph>nroot n x</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_NROOTXY\">ማሳያ የ nኛ ሩት ተግባር ከ ሁለት ቦታ ያዢዎች ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph>nኛ ሩት n x</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_NROOTXY\">ማሳያ የ nኛ ሩት ተግባር ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> nኛ ሩት n x </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090400.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3154752\n"
"help.text"
msgid "When typing functions manually in the Commands window, note that spaces are required for some functions (for example, abs 5=5 ; abs -3=3)."
-msgstr "እርስዎ ተግባሮች በ እጅ በሚጽፉ ጊዜ በ ትእዛዞች መስኮት ውስጥ: ያስታውሱ ክፍተት ለ አንዳንድ ተግባሮች አስፈላጊ ነው (ለምሳሌ: abs 5=5 ; abs -3=3)."
+msgstr "እርስዎ ተግባሮች በ እጅ በሚጽፉ ጊዜ በ ትእዛዞች መስኮት ውስጥ: ያስታውሱ ክፍተት ለ አንዳንድ ተግባሮች አስፈላጊ ነው (ለምሳሌ: ፍጹም 5=5 ; ፍጹም -3=3)."
#: 03090500.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"par_id3155175\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRDBRACKETX\">Inserts a placeholder within double square brackets.</ahelp> You can also type <emph>ldbracket <?> rdbracket</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRDBRACKETX\">ማስገቢያ የ ቦታ ያዢ በ ድርብ ስኴር ቅንፍ </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> የ ግራ ድርብ ስኴር ቅንፍ<?> የ ቀኝ ድርብ ስኴር ቅንፍ </emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_LRDBRACKETX\">ማስገቢያ የ ቦታ ያዢ በ ድርብ ስኴር ቅንፍ </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> የ ግራ ድርብ ስኴር ቅንፍ <?> የ ቀኝ ድርብ ስኴር ቅንፍ </emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090500.xhp
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "Braces (curly brackets)"
-msgstr "ድጋፎች (ጠምዛዛ ቅንፎች)"
+msgstr "ጠምዛዛ (ጠምዛዛ ቅንፎች)"
#: 03090500.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"par_id3147101\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserts a placeholder withing braces (curly brackets).</ahelp> You can also type <emph>lbrace<?>rbrace</emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">ማስገቢያ የ ቦታ ያዢ በ ቅንፍ (ጠምዛዛ ቅንፍ) </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> የ ግራ ጠምዛዛ ቅንፍ<?>የ ቀኝ ጠምዛዛ ቅንፍ </emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">ማስገቢያ የ ቦታ ያዢ በ ቅንፍ (ጠምዛዛ ቅንፍ) </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> የ ግራ ጠምዛዛ ቅንፍ <?> የ ቀኝ ጠምዛዛ ቅንፍ </emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090500.xhp
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"par_id3153198\n"
"help.text"
msgid "Useful information about <link href=\"text/smath/01/03091200.xhp\" name=\"indexes and exponents\">indexes and exponents</link> as well as <link href=\"text/smath/01/03091400.xhp\" name=\"scaling\">scaling</link> helps you structure formulas effectively. For more information about brackets, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Groups\">Brackets and Grouping</link>."
-msgstr "ጠቃሚ መረጃ ስለ <link href=\"text/smath/01/03091200.xhp\" name=\"indexes and exponents\">ማውጫ እና ኤክስፖነንት </link> እንዲሁም <link href=\"text/smath/01/03091400.xhp\" name=\"scaling\"> መመጠኛ </link> እርስዎን አካሎች ለ መቀመሪያ ይረዳዎታል: በበለጠ ለ መረዳት ወይንም ተጨማሪ መረጃ ለ ማግኘት ስለ ቅንፎች ይህን ይመልከቱ <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Groups\"> ቅንፎች እና ቡድኖች </link>."
+msgstr "ጠቃሚ መረጃ ስለ <link href=\"text/smath/01/03091200.xhp\" name=\"indexes and exponents\"> ማውጫ እና ኤክስፖነንት </link> እንዲሁም <link href=\"text/smath/01/03091400.xhp\" name=\"scaling\"> መመጠኛ </link> እርስዎን አካሎች ለ መቀመሪያ ይረዳዎታል: በበለጠ ለ መረዳት ወይንም ተጨማሪ መረጃ ለ ማግኘት ስለ ቅንፎች ይህን ይመልከቱ <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Groups\"> ቅንፎች እና ቡድኖች </link>"
#: 03090600.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "The following is a complete list of all attributes available in <item type=\"productname\">%PRODUCTNAME</item> Math. The symbol next to the attribute indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr "የሚቀጥሉት ሙሉ ዝርዝር ናቸው ለ ሁሉም ዝግጁ መለያዎች ለ <item type=\"productname\">%PRODUCTNAME</item> ሂሳብ: ይህ ምልክት አጠገብ ያለው የ መለያ የሚያመለክተው የ አካላቶች ክፍል ውስጥ (ይምረጡ <emph>መመልከቻ - አካላቶች</emph>) ወይንም በ አገባብ ዝርዝር ውስጥ በ <emph>ትእዛዞች</emph> መስኮት ውስጥ"
+msgstr "የሚቀጥሉት ሙሉ ዝርዝር ናቸው ለ ሁሉም ዝግጁ መለያዎች ለ <item type=\"productname\">%PRODUCTNAME</item> ሂሳብ: ይህ ምልክት አጠገብ ያለው የ መለያ የሚያመለክተው የ አካላቶች ክፍል ውስጥ (ይምረጡ <emph> መመልከቻ - አካላቶች </emph>) ወይንም በ አገባብ ዝርዝር ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
#: 03090600.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3149815\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BARX\">Inserts a line (\"bar\") above a placeholder .</ahelp> You can also type <emph>bar <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BARX\">ማስገቢያ የ መስመር (\"መደርደሪያ\") ከ ቦታ ያዢ በላይ .</ahelp> እንዲሁም መጻፍ ይችላሉ <emph> መደርደሪያ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_BARX\">ማስገቢያ የ መስመር (\"መደርደሪያ\") ከ ቦታ ያዢ በላይ </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> መደርደሪያ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090600.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3147126\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WIDEVECX\">Inserts a wide vector arrow with a placeholder.</ahelp> You can also type <emph>widevec</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_WIDEVECX\">ማስገቢያ ሰፊ የ አቅጣጫ ቀስት ከ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ የ <emph> ሰፊ አቅጣጫ ቀስት</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_WIDEVECX\">ማስገቢያ ሰፊ የ አቅጣጫ ቀስት ከ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ የ <emph> ሰፊ አቅጣጫ ቀስት </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090600.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3147311\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WIDEHATX\">Inserts a wide circumflex (\"hat\") with a placeholder. </ahelp> You can also type <emph>widehat</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_WIDEHATX\">ማስገቢያ የ ሰፊ ሰርከምፍሌክስ (\"ባርኔጣ\") ከ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ሰፊ ባርኔጣ</emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_WIDEHATX\">ማስገቢያ የ ሰፊ ሰርከምፍሌክስ (\"ባርኔጣ\") ከ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ሰፊ ባርኔጣ </emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090600.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_id3154718\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DDDOTX\">Inserts three dots over a placeholder.</ahelp> You can also type <emph>dddot <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DDDOTX\">ማስገቢያ ሶስት ነጥቦች ከ ቦታ ያዢ ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph>dddot <?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_DDDOTX\">ማስገቢያ ሶስት ነጥቦች ከ ቦታ ያዢ ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ሶስት ነጥቦች <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090600.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"par_id3149626\n"
"help.text"
msgid "Use the <emph>color</emph> command to change the color of your formula. Type <emph>color</emph>, then type the color name (the available colors are white, black, cyan, magenta, red, blue, green and yellow), then the formula, character or character sequence. The input <emph>color green size 20 a</emph> results in a green letter \"a\" with a font size of 20."
-msgstr "ይጠቀሙ የ <emph>ቀለም</emph> ትእዛዝ የ እርስዎን መቀመሪያ ቀለም ለ መቀየር: ይጻፉ <emph>ቀለም</emph>, እና ከዛ ይጻፉ የ ቀለም ስም (ዝግጁ ቀለሞች እነዚህ ናቸው: ነጭ: ጥቁር: ሲያን: ማጄንታ: ቀይ: ሰማያዊ: አረንጓዴ: እና ቢጫ), ከዛ የ መቀመሪያ: ባህሪ ወይንም ተከታታይ ባህሪ: ማስገቢያ <emph>ቀለም አረንጓዴ መጠን 20 a</emph> ውጤቱ አረንጓዴ ቀለም ፊደል \"a\" የ ፊደል መጠን 20."
+msgstr "ይጠቀሙ የ <emph> ቀለም </emph> ትእዛዝ የ እርስዎን መቀመሪያ ቀለም ለ መቀየር: ይጻፉ <emph> ቀለም </emph> እና ከዛ ይጻፉ የ ቀለም ስም (ዝግጁ ቀለሞች እነዚህ ናቸው: ነጭ: ጥቁር: ሲያን: ማጄንታ: ቀይ: ሰማያዊ: አረንጓዴ: እና ቢጫ), ከዛ የ መቀመሪያ: ባህሪ ወይንም ተከታታይ ባህሪ: ማስገቢያ <emph> ቀለም አረንጓዴ መጠን 20 a </emph> ውጤቱ አረንጓዴ ቀለም ፊደል \"a\" የ ፊደል መጠን 20."
#: 03090600.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3155621\n"
"help.text"
msgid "For size changes you can use <emph>size n</emph>,<emph> +n</emph>,<emph> -n</emph>,<emph> *n</emph> and<emph> /n </emph>, where <emph>n</emph> is a placeholder. This method is useful when the base size of the formula is subject to change. The commands <emph>size +n</emph> and <emph>size -n</emph> change point size, and <emph>size *n</emph> and <emph>size /n</emph> change the size by a percentage. For example, the command <emph>size *1.17</emph> increases the size of a character by exactly 17%."
-msgstr "መጠን ለ መቀየር እርስዎ መጠቀም ይችላሉ <emph> መጠን n</emph>,<emph> +n</emph>,<emph> -n</emph>,<emph> *n</emph> እና<emph> /n </emph>, የ <emph>n</emph> ቦታ ያዢ ነው: ይህ ዘዴ ጠቃሚ ነው የ መሰረቱ መጠን መቀመሪያ ጉዳይ ለ መቀየር: የ ትእዛዝ <emph> መጠን +n</emph> እና <emph> መጠን -n</emph> የ ነጥብ መጠን መቀየሪያ ነው: እና <emph> መጠን *n</emph> እና <emph> መጠን /n</emph> መጠን በ ፐርሰንት መቀየሪያ ነው: ለምሳሌ የ ትእዛዝ <emph> መጠን *1.17</emph> የ ባህሪውን መጠን ይጨምረል በ 17%."
+msgstr "መጠን ለ መቀየር እርስዎ መጠቀም ይችላሉ <emph> መጠን n</emph>,<emph> +n</emph>,<emph> -n</emph>,<emph> *n</emph> እና<emph> /n </emph>, የ <emph> n </emph> ቦታ ያዢ ነው: ይህ ዘዴ ጠቃሚ ነው የ ቤዝ መጠን መቀመሪያ ጉዳይ ለ መቀየር: የ ትእዛዝ <emph> መጠን +n </emph> እና <emph> መጠን -n </emph> የ ነጥብ መጠን መቀየሪያ ነው: እና <emph> መጠን *n </emph> እና <emph> መጠን /n </emph> መጠን በ ፐርሰንት መቀየሪያ ነው: ለምሳሌ የ ትእዛዝ <emph> መጠን *1.17 </emph> የ ባህሪውን መጠን ይጨምረል በ 17%."
#: 03090600.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "For more information about formatting in <emph>%PRODUCTNAME</emph> <emph>Math</emph>, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
-msgstr "በ በለጠ ለመረዳት ስለ አቀራረብ ከ <emph>%PRODUCTNAME</emph> <emph> ሂሳብ </emph> ውስጥ ይመልከቱ <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\"> ቅንፎች እና ቡድን </link>."
+msgstr "በ በለጠ ለመረዳት ስለ አቀራረብ ከ <emph>%PRODUCTNAME</emph> <emph> ሂሳብ </emph> ውስጥ ይመልከቱ <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\"> ቅንፎች እና ቡድን </link>"
#: 03090600.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id3154263\n"
"help.text"
msgid "The following is a complete list of all available formatting options in $[officename] Math. The icon next to the formatting option indicates that it can be accessed through the Elements pane (menu <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr "የሚቀጥለው ሁሉም ሙሉ የሆነ ዝግጁ የ አቀራረብ ምርጫ ነው: በ $[officename] ሂሳብ ውስጥ: ይህ ምልክት ከ ከ አቀራረብ ምርጫ አጠገብ ያለው የሚያመለክተው እርስዎ መድረስ እንዲሚችሉ ነው ወደ አካላቶች ክፍል ውስጥ በ (ዝርዝር <emph>መመልከቻ - አካላቶች</emph>) ወይንምበ አገባብ ዝርዝር ውስጥ በ <emph>ትእዛዞች</emph> መስኮት ውስጥ"
+msgstr "የሚቀጥለው ሁሉም ሙሉ የሆነ ዝግጁ የ አቀራረብ ምርጫ ነው: በ $[officename] ሂሳብ ውስጥ: ይህ ምልክት ከ አቀራረብ ምርጫ አጠገብ ያለው የሚያመለክተው እርስዎ መድረስ እንዲሚችሉ ነው ወደ አካላቶች ክፍል ውስጥ በ (ዝርዝር <emph> መመልከቻ - አካላቶች </emph>) ወይንም በ አገባብ ዝርዝር ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
#: 03090700.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"par_id3147326\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BINOMXY\">Inserts a vertical stack (binomial) with two placeholders.</ahelp> You can also type <emph>binom<?><?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BINOMXY\">ማስገቢያ በ ቁመት መከመሪያ (ባይኖሚያል) ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph>binom<?><?></emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_BINOMXY\">ማስገቢያ በ ቁመት መከመሪያ (ባይኖሚያል) ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> ባይኖሚያል <?><?></emph> በ ቀጥታ በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090700.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"par_id3149319\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ALIGNCX\">Assigns horizontal central alignment to \"a\" and inserts a placeholder.</ahelp> You can also type <emph>alignc<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ALIGNCX\">መመደቢያ በ አግድም መሀከል ማሰለፊያ ወደ \"a\" እና ከ ቦታ ያዢ ጋር</ahelp> እንዲሁም መጻፍ ይችላሉ <emph>alignc<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_ALIGNCX\">መመደቢያ በ አግድም መሀከል ማሰለፊያ ወደ \"a\" እና ከ ቦታ ያዢ ጋር </ahelp> እንዲሁም መጻፍ ይችላሉ <emph> መሀከል ማሰለፊያ <?></emph> በ <emph> ትእዛዝ </emph> መስኮት ውስጥ"
#: 03090700.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"par_id3146941\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_MATRIX\">This icon inserts a matrix with four placeholders.</ahelp> You can also type <emph>matrix{<?>#<?>##<?>#<?>}</emph> directly in the <emph>Commands</emph> window. The position of an element inside this diagram is indicated by two coordinates; the first specifies the line number and the second the column number. You can expand this matrix in any direction in the <emph>Commands</emph> window by adding characters."
-msgstr "<ahelp hid=\"HID_SMA_MATRIX\">ይህ ምልክት matrix ያስገባል ከ አራት ቦታ ያዢዎች ጋር</ahelp> እርስዎ እንዲሁም መጻፍ ይችላሉ <emph>matrix{<?>#<?>##<?>#<?>}</emph> በ ቀጥታ በ <emph>ትእዛዞች</emph> መስኮት ውስጥ:የ አካሉ ቦታ በ ንድፉ ውስጥ የሚታየው በ ሁለት ደረጃ ነው: የ መጀመሪያው የሚወስነው የ መስመር ቁጥር እና ሁለተኛው የ አምድ ቁጥር ነው: እርስዎ ማስፋት ይችላሉ የዚህን matrix በማንኛውም አቅጣጫ በ <emph>ትእዛዞች</emph> መስኮት ውስጥ ባህሪዎች በ መጨመር"
+msgstr "<ahelp hid=\"HID_SMA_MATRIX\">ይህ ምልክት matrix ያስገባል ከ አራት ቦታ ያዢዎች ጋር </ahelp> እርስዎ እንዲሁም መጻፍ ይችላሉ <emph>matrix{<?>#<?>##<?>#<?>}</emph> በ ቀጥታ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ:የ አካሉ ቦታ በ ንድፉ ውስጥ የሚታየው በ ሁለት ደረጃ ነው: የ መጀመሪያው የሚወስነው የ መስመር ቁጥር እና ሁለተኛው የ አምድ ቁጥር ነው: እርስዎ ማስፋት ይችላሉ የዚህን matrix በማንኛውም አቅጣጫ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ ባህሪዎች በ መጨመር"
#: 03090700.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_id3155394\n"
"help.text"
msgid "For alignment, the <emph>alignl, alignc</emph> and <emph>alignr</emph> commands are especially effective, if you are"
-msgstr "ለ ማሰለፊያ በ <emph>ማሰለፊያ l, ማሰለፊያc</emph> እና <emph>ማሰለፊያ r</emph> ትእዛዝ ውጤታማ ይሆናል እርስዎ"
+msgstr "ለ ማሰለፊያ በ <emph>ማሰለፊያ l, ማሰለፊያ መሀከል </emph> እና <emph> ማሰለፊያ በ ቀኝ </emph> ትእዛዝ ውጤታማ ይሆናል እርስዎ"
#: 03090700.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_id3148812\n"
"help.text"
msgid "constructing binomials or stacks, for example <emph>binom{2*n}{alignr k}</emph>"
-msgstr "መገንቢያ binomials ወይንም መከመሪያ: ለምሳሌ: <emph>binom{2*n}{alignr k}</emph>"
+msgstr "መገንቢያ ባይኖሚያልስ ወይንም መከመሪያ: ለምሳሌ: <emph> ባይኖሚያል{2*n}{ማሰለፊያ በ ቀኝ k}</emph>"
#: 03090700.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_id3154360\n"
"help.text"
msgid "aligning the elements in a matrix, for example <emph>matrix{alignr a#b+2##c+1/3#alignl d}</emph> and"
-msgstr "አካሎችን በ matrix ማሰለፊያ: ለምሳሌ: <emph>matrix{alignr a#b+2##c+1/3#alignl d}</emph> and"
+msgstr "አካሎችን በ matrix ማሰለፊያ: ለምሳሌ: <emph>matrix{ማሰለፊያ በ ቀኝ a#b+2##c+1/3#ማሰለፊያ በ ግራ d}</emph> እና"
#: 03090700.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_id3145654\n"
"help.text"
msgid "When typing information in the Commands window, note that some formats require spaces for the correct structure. This is especially true when entering values (for example, a lsup{3}) instead of placeholders."
-msgstr "በ ትእዛዝ መስኮቶትች ውስጥ መረጃ በሚጽፉ ጊዜ: ያስታውሱ አንዳንድ አቀራረብ ክፍተቶች ይፈልጋል ለ ትክክለኛው አክል: ይህ በተለይ እውነት የሚሆነው ዋጋዎች ሲያስገቡ ነው (ለምሳሌ: lsup{3}) ከ ቦታ ያዢዎች ይልቅ"
+msgstr "በ ትእዛዝ መስኮቶትች ውስጥ መረጃ በሚጽፉ ጊዜ: ያስታውሱ አንዳንድ አቀራረብ ክፍተቶች ይፈልጋል ለ ትክክለኛው አካል: ይህ በተለይ እውነት የሚሆነው ዋጋዎች ሲያስገቡ ነው (ለምሳሌ: በ ግራ ከፍ ብሎ መጻፊያ {3}) ከ ቦታ ያዢዎች ይልቅ"
#: 03090700.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"par_id3155340\n"
"help.text"
msgid "Useful information about <link href=\"text/smath/01/03091200.xhp\" name=\"Indexes and Exponents\">Indexes and Exponents</link> and <link href=\"text/smath/01/03091400.xhp\" name=\"Scaling\">Scaling</link>, helps you organize your document in the best possible way."
-msgstr "ጠቃሚ መረጃ ስለ <link href=\"text/smath/01/03091200.xhp\" name=\"Indexes and Exponents\">ማውጫዎች እና ኤክስፖነንት </link> እና <link href=\"text/smath/01/03091400.xhp\" name=\"Scaling\"> መመጠኛ </link> እርስዎን ይረዳዎታል የ እርስዎን ሰነድ በ ጥሩ መንገድ እንዲያደራጁ በ ተቻለው መንገድ ሁሉ"
+msgstr "ጠቃሚ መረጃ ስለ <link href=\"text/smath/01/03091200.xhp\" name=\"Indexes and Exponents\"> ማውጫዎች እና ኤክስፖነንት </link> እና <link href=\"text/smath/01/03091400.xhp\" name=\"Scaling\"> መመጠኛ </link> እርስዎን ይረዳዎታል የ እርስዎን ሰነድ በ ጥሩ መንገድ እንዲያደራጁ በ ተቻለው መንገድ ሁሉ"
#: 03090800.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"bm_id3156318\n"
"help.text"
msgid "<bookmark_value>set operations in $[officename]Math</bookmark_value><bookmark_value>sets of numbers</bookmark_value><bookmark_value>included in set operator</bookmark_value><bookmark_value>not included in set operator</bookmark_value><bookmark_value>owns command</bookmark_value><bookmark_value>includes set operator</bookmark_value><bookmark_value>empty set</bookmark_value><bookmark_value>intersection of sets</bookmark_value><bookmark_value>union of sets</bookmark_value><bookmark_value>difference set operator</bookmark_value><bookmark_value>quotient set</bookmark_value><bookmark_value>cardinal numbers</bookmark_value><bookmark_value>subset set operators</bookmark_value><bookmark_value>superset set operators</bookmark_value><bookmark_value>not subset set operators</bookmark_value><bookmark_value>not superset set operators</bookmark_value><bookmark_value>natural numbers</bookmark_value><bookmark_value>whole numbers</bookmark_value><bookmark_value>real numbers</bookmark_value><bookmark_value>complex numbers; set</bookmark_value><bookmark_value>rational numbers</bookmark_value>"
-msgstr "<bookmark_value>የ ስብስብ አንቀሳቃሾች በ $[officename]ሂሳብ</bookmark_value><bookmark_value> ስብስብ የ ቁጥር</bookmark_value><bookmark_value>ያካትታል በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>አያካትትም በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ትእዛዝ አለው </bookmark_value><bookmark_value> በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ባዶ ስብስብ</bookmark_value><bookmark_value>የ ጋራ ስብስቦች</bookmark_value><bookmark_value>ጠቅላላ የ ስብስቦች</bookmark_value><bookmark_value>ልዩነት ከ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ክፍያ ውጤት ስብስብ</bookmark_value><bookmark_value>cardinal ቁጥሮች</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ትልቅ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>አይደለም ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ተፈጥሮ ቁጥሮች</bookmark_value><bookmark_value>ሙሉ ቁጥሮች</bookmark_value><bookmark_value>real ቁጥሮች</bookmark_value><bookmark_value>ውስብስብ ቁጥሮች: ስብስብ</bookmark_value><bookmark_value>ራሺናል ቁጥሮች</bookmark_value>"
+msgstr "<bookmark_value>የ ስብስብ አንቀሳቃሾች በ $[officename]ሂሳብ</bookmark_value><bookmark_value> ስብስብ የ ቁጥር</bookmark_value><bookmark_value>ያካትታል በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>አያካትትም በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ትእዛዝ አለው </bookmark_value><bookmark_value> በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ባዶ ስብስብ</bookmark_value><bookmark_value>የ ጋራ ስብስቦች</bookmark_value><bookmark_value>ጠቅላላ የ ስብስቦች</bookmark_value><bookmark_value>ልዩነት ከ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ክፍያ ውጤት ስብስብ</bookmark_value><bookmark_value>መቁጠሪያ ቁጥሮች</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ትልቅ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>አይደለም ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ተፈጥሮ ቁጥሮች</bookmark_value><bookmark_value>ሙሉ ቁጥሮች</bookmark_value><bookmark_value>ሪያል ቁጥሮች</bookmark_value><bookmark_value>ውስብስብ ቁጥሮች: ስብስብ</bookmark_value><bookmark_value>ራሺናል ቁጥሮች</bookmark_value>"
#: 03090800.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "After clicking the <emph>Set Operations</emph> icon in the Elements pane additional icons will be shown in the lower part of this window. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window."
-msgstr "ከ ተጫኑ በኋላ የ <emph>እንቅስቃሴ ማሰናጃ</emph> ምልክት በ አካላቶች ክፍል ውስጥ ተጨማሪ ምልክቶች ይታያሉ በ ታችኛው መስኮት ውስጥ: በ ቀላሉ ይጫኑ ምልክቱ ላይ ለ ማዋሀድ ከ አንቀሳቃሽ ጋር በ መቀመሪያ ውስጥ በ መታረም ላይ ባለው ትእዛዝ መስኮት ውስጥ"
+msgstr "ከ ተጫኑ በኋላ የ <emph> እንቅስቃሴ ማሰናጃ </emph> ምልክት በ አካላቶች ክፍል ውስጥ ተጨማሪ ምልክቶች ይታያሉ በ ታችኛው መስኮት ውስጥ: በ ቀላሉ ይጫኑ ምልክቱ ላይ ለ ማዋሀድ ከ አንቀሳቃሽ ጋር በ መቀመሪያ ውስጥ በ መታረም ላይ ባለው ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -4958,7 +4958,7 @@ msgctxt ""
"par_id3151119\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSUPSETEQY\">Use this icon to insert the set operator <emph>is a super set or equal to</emph> with two placeholders.</ahelp> Alternatively, you can enter <emph><?>supseteq<?> </emph>in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XSUPSETEQY\">ይህን ምልክት ይጠቀሙ አንቀሳቃሽ ለ ማሰናዳት <emph> ትልቅ ስብስብ ወይንም እኩል ነው ከ </emph> ሁለት ቦታ ያዢዎች ጋር </ahelp> በ አማራጭ እርስዎ ማስገባት ይችላሉ <emph><?>supseteq<?></emph> በ ትእዛዝ መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_XSUPSETEQY\">ይህን ምልክት ይጠቀሙ አንቀሳቃሽ ለ ማሰናዳት <emph> ትልቅ ስብስብ ወይንም እኩል ነው ከ </emph> ሁለት ቦታ ያዢዎች ጋር </ahelp> በ አማራጭ እርስዎ ማስገባት ይችላሉ <emph><?> ትልቅ ስብስብ ወይንም እኩል ነው <?></emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNSUBSETY\">Use this icon to insert the <emph>not subset</emph> set operator with two placeholders.</ahelp> Instead of this, you can also enter <emph><?>nsubset<?></emph>."
-msgstr "<ahelp hid=\"HID_SMA_XNSUBSETY\">ይህን ምልክት ይጠቀሙ ለ ማስገባት የ <emph> ንዑስ ስብስብ አይደለም </emph> ስብስብ አንቀሳቃሽ በ ሁለት ቦታ ያዢዎች ጋር </ahelp> ከዚህ ይልቅ: እርስዎ ማስገባት ይችላሉ <emph><?> ንዑስ ስብስብ አይደለም <?></emph>."
+msgstr "<ahelp hid=\"HID_SMA_XNSUBSETY\">ይህን ምልክት ይጠቀሙ ለ ማስገባት የ <emph> ንዑስ ስብስብ አይደለም </emph> ስብስብ አንቀሳቃሽ በ ሁለት ቦታ ያዢዎች ጋር </ahelp> ከዚህ ይልቅ: እርስዎ ማስገባት ይችላሉ <emph><?> ንዑስ ስብስብ አይደለም <?></emph>"
#: 03090800.xhp
msgctxt ""
@@ -5078,7 +5078,7 @@ msgctxt ""
"par_id3154352\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SETN\">Use this icon to insert a character for the <emph>set of natural numbers</emph>.</ahelp> Instead of this, you can enter <emph>setn</emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_SETN\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ተፈጥሮ ቁጥሮች ስብስብ </emph>.</ahelp> ከዚህ ይልቅ: እርስዎ ማስገባት ይችላሉ <emph> የ ተፈጥሮ ቁጥሮች ስብስብ </emph> ይህን ምልክት ይጠቀሙ"
+msgstr "<ahelp hid=\"HID_SMA_SETN\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ተፈጥሮ ቁጥሮች ስብስብ </emph></ahelp> ከዚህ ይልቅ: እርስዎ ማስገባት ይችላሉ <emph> የ ተፈጥሮ ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SETZ\">Use this icon to insert a character for the <emph>set of whole numbers</emph>.</ahelp> You can also do this by entering <emph>setz</emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_SETZ\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph>የ ጠቅላላ ቁጥሮች ስብስብ </emph>.</ahelp> እርስዎ እንዲሁም ማስገባት ይችላሉ <emph> ጠቅላላ ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_SETZ\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ሙሉ ቁጥሮች ስብስብ </emph></ahelp> እርስዎ እንዲሁም ማስገባት ይችላሉ <emph> ሙሉ ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"par_id3149974\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SETQ\">Use this icon to insert a character for the <emph>set of rational numbers</emph>.</ahelp> You can also do this by directly entering <emph>setq</emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_SETQ\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ራሺናል ቁጥሮች ስብስብ </emph>.</ahelp> እርስዎ እንዲሁም በ ቀጥታ ማስገባት ይችላሉ <emph> የ ራሺናል ቁጥር ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_SETQ\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ራሺናል ቁጥሮች ስብስብ </emph></ahelp> እርስዎ እንዲሁም በ ቀጥታ ማስገባት ይችላሉ <emph> የ ራሺናል ቁጥር ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -5142,7 +5142,7 @@ msgctxt ""
"par_id3145663\n"
"help.text"
msgid "Set of real numbers"
-msgstr "የ real ቁጥሮች ስብስብ"
+msgstr "የ ሪያል ቁጥሮች ስብስብ"
#: 03090800.xhp
msgctxt ""
@@ -5150,7 +5150,7 @@ msgctxt ""
"par_id3148709\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SETR\">Use this icon to insert a character for the <emph>set of real numbers</emph>.</ahelp> Instead of this, you can enter <emph>setr</emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_SETR\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> የ ሪያል ቁጥሮች ስብስብ </emph>.</ahelp> ከዚህ ይልቅ: እርስዎ ማስገባት ይችላሉ <emph> የ ሪያል ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_SETR\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> የ ሪያል ቁጥሮች ስብስብ </emph></ahelp> ከዚህ ይልቅ: እርስዎ ማስገባት ይችላሉ <emph> የ ሪያል ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -5174,7 +5174,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SETC\">Use this icon to insert a character for the <emph>set of complex numbers</emph>.</ahelp> You can also enter <emph>setc</emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_SETC\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ውስብስብ ቁጥሮች ስብስብ </emph>.</ahelp> እርስዎ ማስገባት ይችላሉ <emph> ውስብስብ ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_SETC\">ይህን ምልክት ይጠቀሙ ባህሪ ለ ማስገባት ለ <emph> ውስብስብ ቁጥሮች ስብስብ </emph></ahelp> እርስዎ ማስገባት ይችላሉ <emph> ውስብስብ ቁጥሮች ስብስብ </emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090800.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "%SIGMA_g^{{}+{}}lsup 3"
-msgstr "%SIGMA_g^{{}+{}}lsup 3"
+msgstr "%ሲግማ_g^{{}+{}}በ ግራ ከፍ ብሎ መጻፊያ 3"
#: 03090903.xhp
msgctxt ""
@@ -5350,7 +5350,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "Here is an example of how to create a matrix with varying font sizes in <emph>$[officename] Math</emph>. You can copy this example to the <emph>Commands</emph> window using the clipboard and use it in your own formula."
-msgstr "ይህ ሌላ ምሳሌ እንዴት እንደሚፈጥሩ ያስረዳዎታል የ ተለያዩ የ ፊደሎች መጠን በ <emph>$[officename] ሂሳብ</emph> እርስዎ ይህን ምሳሌ ኮፒ ማድረግ ይችላሉ ወደ <emph>ትእዛዝ</emph> መስኮት ውስጥ ቁራጭ ሰሌዳን በ መጠቀም እና በ እርስዎ መቀመሪያ ውስጥ ይጠቀሙ"
+msgstr "ይህ ሌላ ምሳሌ እንዴት እንደሚፈጥሩ ያስረዳዎታል የ ተለያዩ የ ፊደሎች መጠን በ <emph>$[officename] ሂሳብ </emph> እርስዎ ይህን ምሳሌ ኮፒ ማድረግ ይችላሉ ወደ <emph> ትእዛዝ </emph> መስኮት ውስጥ ቁራጭ ሰሌዳን በ መጠቀም እና በ እርስዎ መቀመሪያ ውስጥ ይጠቀሙ"
#: 03090904.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Matrix"
-msgstr "መነሻ"
+msgstr "Matrix"
#: 03090905.xhp
msgctxt ""
@@ -5390,7 +5390,7 @@ msgctxt ""
"par_id3150344\n"
"help.text"
msgid "Here is an example of how to create a matrix with <emph>$[officename] Math</emph>. If you want to use the example in your own formula, you can copy it to the <emph>Commands</emph> window using the clipboard."
-msgstr "ይህ ምሳሌ ነው እንዴት እንደሚፈጥሩ ተግባሮች በ <emph>$[officename] ሂሳብ</emph> እርስዎ ምሳሌ መጠቀም ከ ፈለጉ በ እርስዎ መቀመሪያ ውስጥ ኮፒ ያድርጉ ወደ የ <emph>ትእዛዞች</emph> መስኮት ውስጥ ቁራጭ ሰሌዳ በ መጠቀም"
+msgstr "ይህ ምሳሌ ነው እንዴት እንደሚፈጥሩ ተግባሮች በ <emph>$[officename] ሂሳብ </emph> እርስዎ ምሳሌ መጠቀም ከ ፈለጉ በ እርስዎ መቀመሪያ ውስጥ ኮፒ ያድርጉ ወደ የ <emph> ትእዛዞች </emph> መስኮት ውስጥ ቁራጭ ሰሌዳ በ መጠቀም"
#: 03090905.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id3150342\n"
"help.text"
msgid "Here is an example of how to create a bold font matrix in <emph>$[officename] Math</emph>. You can copy this example to the <emph>Commands</emph> window using the clipboard and use it in your own formula."
-msgstr "ይህ ሌላ ምሳሌ እንዴት እንደሚፈጥሩ ያስረዳዎታል የ Matrix የ ተለያዩ የ ፊደሎች መጠን በ <emph>$[officename] ሂሳብ</emph> እርስዎ ይህን ምሳሌ ኮፒ ማድረግ ይችላሉ ወደ <emph>ትእዛዝ</emph> መስኮት ውስጥ ቁራጭ ሰሌዳን በ መጠቀም እና በ እርስዎ መቀመሪያ ውስጥ ይጠቀሙ"
+msgstr "ይህ ሌላ ምሳሌ እንዴት እንደሚፈጥሩ ያስረዳዎታል የ Matrix የ ተለያዩ የ ፊደሎች መጠን በ <emph>$[officename] ሂሳብ </emph> እርስዎ ይህን ምሳሌ ኮፒ ማድረግ ይችላሉ ወደ <emph> ትእዛዝ </emph> መስኮት ውስጥ ቁራጭ ሰሌዳን በ መጠቀም እና በ እርስዎ መቀመሪያ ውስጥ ይጠቀሙ"
#: 03090906.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "bold { f(x\", \"y) = left [ stack { x + y over z + left lbrace matrix { 2 # 3 # 4 ## 4 # 5 # 6 ## 6 # 7 # 8} right rbrace # {y + sin (x)} over %alpha # z + y over g } right ]}"
-msgstr "bold { f(x\", \"y) = left [ stack { x + y over z + left lbrace matrix { 2 # 3 # 4 ## 4 # 5 # 6 ## 6 # 7 # 8} right rbrace # {y + sin (x)} over %alpha # z + y over g } right ]}"
+msgstr "ማድመቂያ { f(x\", \"y) = በ ግራ [ መከመሪያ { x + y ከ ላይ z + በ ግራ ጠምዛዛ በ ግራ matrix { 2 # 3 # 4 ## 4 # 5 # 6 ## 6 # 7 # 8} በ ቀኝ ጠምዛዛ በ ቀኝ # {y + ሳይን (x)} ከ ላይ %አልፋ # z + y ከ ላይ g } በ ቀኝ ]}"
#: 03090907.xhp
msgctxt ""
@@ -5462,7 +5462,7 @@ msgctxt ""
"par_id3148489\n"
"help.text"
msgid "Here is an example of how to create functions with <emph>$[officename] Math</emph>. If you want to use the example in your own formula, copy it to the <emph>Commands</emph> window using the clipboard."
-msgstr "ይህ ምሳሌ ነው እንዴት እንደሚፈጥሩ ተግባሮች በ <emph>$[officename] ሂሳብ</emph>. እርስዎ ምሳሌ መተቀም ከ ፈለጉ በ እርስዎ መቀመሪያ ውስጥ ኮፒ ያድርጉ ወደ የ <emph>ትእዛዞች</emph> መስኮት ውስጥ ቁራጭ ሰሌዳ በ መጠቀም"
+msgstr "ይህ ምሳሌ ነው እንዴት እንደሚፈጥሩ ተግባሮች በ <emph>$[officename] ሂሳብ</emph>. እርስዎ ምሳሌ መተቀም ከ ፈለጉ በ እርስዎ መቀመሪያ ውስጥ ኮፒ ያድርጉ ወደ የ <emph> ትእዛዞች </emph> መስኮት ውስጥ ቁራጭ ሰሌዳ በ መጠቀም"
#: 03090907.xhp
msgctxt ""
@@ -5526,7 +5526,7 @@ msgctxt ""
"bm_id7562181\n"
"help.text"
msgid "<bookmark_value>font sizes;example</bookmark_value><bookmark_value>sum range example</bookmark_value><bookmark_value>examples ;integral</bookmark_value><bookmark_value>range of integral example</bookmark_value><bookmark_value>integrals;example</bookmark_value>"
-msgstr "<bookmark_value>የ ፊደል መጠኖች;ለምሳሌ</bookmark_value><bookmark_value>ጠቅላላ መጠን ለምሳሌ</bookmark_value><bookmark_value>ለምሳሌ ;integral</bookmark_value><bookmark_value>range of integral ለምሳሌ</bookmark_value><bookmark_value>integrals;ለምሳሌ</bookmark_value>"
+msgstr "<bookmark_value>የ ፊደል መጠኖች;ለምሳሌ</bookmark_value><bookmark_value>ጠቅላላ መጠን ለምሳሌ</bookmark_value><bookmark_value>ለምሳሌ: ኢንቲግራል</bookmark_value><bookmark_value>መጠን የ ኢንቲግራል ለምሳሌ</bookmark_value><bookmark_value>ኢንቲግራልስ: ለምሳሌ</bookmark_value>"
#: 03090909.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_id3151392\n"
"help.text"
msgid "Set brackets were previously inserted in the Elements pane or directly in the Commands window as \"left lbrace <?> right rbrace\". Now, a left and a right set bracket can also be inserted using \"lbrace\" and \"rbrace\", with or without wildcards."
-msgstr "ቀደም ብሎ ቅንፎች ገብተዋል በ አካላቶች ክፍል ውስጥ:ወይንም በ ቀጥታ በ ትእዛዞች መስኮት ውስጥ እንደ \"በ ግራ የ ግራ ብሬስ <?> በ ቀኝ የ ቀኝ ብሬስ\": አሁን: የ ግራ እና የ ቀኝ ጥንድ ቅንፍ ማስገባት ይቻላል በ መጠቀም: \"የ ግራ ብሬስ\" እና \"የ ቀኝ ብሬስ\": በ ወይንም ያለ ሁለ ገብ ካርድ"
+msgstr "ቀደም ብሎ ቅንፎች ገብተዋል በ አካላቶች ክፍል ውስጥ:ወይንም በ ቀጥታ በ ትእዛዞች መስኮት ውስጥ እንደ \"በ ግራ የ ግራ ጠምዛዛ <?> በ ቀኝ የ ቀኝ ጠምዛዛ\": አሁን: የ ግራ እና የ ቀኝ ጥንድ ቅንፍ ማስገባት ይቻላል በ መጠቀም: \"የ ግራ ጠምዛዛ\" እና \"የ ቀኝ ጠምዛዛ\": በ ወይንም ያለ ሁለ ገብ ካርድ"
#: 03091100.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3150014\n"
"help.text"
msgid "left lbrace x right none"
-msgstr "የ ግራ lድጋፍ x የ ቀኝ ምንም"
+msgstr "በ ግራ የ ግራ ጠምዛዛ x የ ቀኝ ምንም"
#: 03091100.xhp
msgctxt ""
@@ -5782,7 +5782,7 @@ msgctxt ""
"par_id3149715\n"
"help.text"
msgid "\\{ or \\lbrace, \\} or \\rbrace"
-msgstr "\\{ or \\lbrace, \\} or \\rbrace"
+msgstr "\\{ or \\በ ግራ ጠምዛዛ: \\} ወይንም \\በ ቀኝ ጠምዛዛ"
#: 03091100.xhp
msgctxt ""
@@ -5806,7 +5806,7 @@ msgctxt ""
"par_id3153153\n"
"help.text"
msgid "\\langle, \\rangle"
-msgstr "\\langle, \\rangle"
+msgstr "\\በ ግራ አንግል: \\በ ቀኝ አንግል"
#: 03091100.xhp
msgctxt ""
@@ -5814,7 +5814,7 @@ msgctxt ""
"par_id3150263\n"
"help.text"
msgid "\\lceil, \\rceil"
-msgstr "\\lceil, \\rceil"
+msgstr "\\የ ግራ ጣራ: \\የ ቀኝ ጣራ"
#: 03091100.xhp
msgctxt ""
@@ -5822,7 +5822,7 @@ msgctxt ""
"par_id3147252\n"
"help.text"
msgid "\\lfloor, \\rfloor"
-msgstr "\\lfloor, \\rfloor"
+msgstr "\\በ ግራ ወለል: \\በ ቀኝ ወለል"
#: 03091100.xhp
msgctxt ""
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_id3154690\n"
"help.text"
msgid "\\lline, \\rline"
-msgstr "\\lline, \\rline"
+msgstr "\\በ ግራ መስመር: \\በ ቀኝ መስመር"
#: 03091100.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"par_id3145414\n"
"help.text"
msgid "\\ldline, \\rdline"
-msgstr "\\ldline, \\rdline"
+msgstr "\\በ ግራ ድርብ መስመር: \\በ ቀኝ ድርብ መስመር"
#: 03091100.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"par_id3153532\n"
"help.text"
msgid "Please note that the quotation marks must be entered and can be obtained with <emph>Shift+2</emph> and not with typographical quotation marks. Generally, punctuation marks (like the comma in this case) are set as text. Although it is also possible to type \"\\[2,~3\\)\" the above option is preferable. In the previous example, \"fixed size\" always describes a bracket size dependent on the font size used."
-msgstr "እባክዎን ያስታውሱ የ ጥቅስ ምልክቶች መግባት አለባቸው እና ማግኘት ይቻላል በ <emph>Shift+2</emph> እና በ typographical የ ጥቅስ ምልክት አይደልም: ባጠቃላይ: ነጥቦች እንደ (ኮማ በዚህ ጉዳይ ውስጥ) የሚሰናዱት እንደ ጽሁፍ ነው: ነገር ግን እንዲሁም መጻፍ ይችላሉ \"\\[2,~3\\)\" የ ላይኛው ምርጫ ይመረጣል: ያለፈው ምሳሌ: \"የ ተወሰነ መጠን\" ሁልጊዜ የሚገልጸው የ ቅንፍ መጠን ነው: ጥገኛ የሆነ በሚጠቀሙት የ ፊደል መጠን"
+msgstr "እባክዎን ያስታውሱ የ ጥቅስ ምልክቶች መግባት አለባቸው እና ማግኘት ይቻላል በ <emph>Shift+2</emph> እና በ ጽሁፍ የ ጥቅስ ምልክት አይደልም: ባጠቃላይ: ነጥቦች እንደ (ኮማ በዚህ ጉዳይ ውስጥ) የሚሰናዱት እንደ ጽሁፍ ነው: ነገር ግን እንዲሁም መጻፍ ይችላሉ \"\\[2,~3\\)\" የ ላይኛው ምርጫ ይመረጣል: ያለፈው ምሳሌ: \"የ ተወሰነ መጠን\" ሁልጊዜ የሚገልጸው የ ቅንፍ መጠን ነው: ጥገኛ የሆነ በሚጠቀሙት የ ፊደል መጠን"
#: 03091100.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"par_id3147526\n"
"help.text"
msgid "This differs slightly for competing or mutually influencing attributes. This is often the case with font attributes. For example, which color does the b have in \"color yellow color red (a + color green b)\", or which size does it have in \"size *4 (a + size /2 b)\"? Given a base size of 12, does it have the size 48, 6 or even 24 (which could be seen as a combination)? The following are basic resolution rules, which will be followed consistently in the future. In general, the rules apply to all group operations. This only has a visible effect on the font attributes, like \"bold\", \"ital\", \"phantom\", \"size\", \"color\" and \"font\":"
-msgstr "ይህ በ ትንሹ ይለያያል ለ ማወዳደር ወይንም በጋራ ለ መጫን መለያዎችን: ይህ አንዳንድ ጊዜ ያጋጥማል በ ፊደል መለያዎች ውስጥ: ለምሳሌ: የትኛው ቀለም ነው ለ b ያለው በ \"ቢጫ ቀለም ቀይ ቀለም (የ + አረንጓዴ ቀለም b)\", ወይንም የትኛው መጠን ነው ያለው በ \"መጠን *4 (a + መጠን /2 b)\"? መሰረታዊ መጠን ሲሰጥ ለ 12, ይህን ያህል መጠን አለው 48, 6 ወይንም ቢሆን 24 (ዬትኛው ነው በ መቀላቀያ ውስጥ የሚታየው)? የሚቀጥሉት መሰረታዊ የ ሪዞሊሽን ደንቦች ናቸው: ወደ ፊት ዘላቂ ሆኖ ይቀጥላል: ባጠቃላይ ደንቦቹ ይፈጸማሉ ለ ሁሉም ቡድን አንቀሳቃሾች: ይህ ተፅእኖ የሚታየው በ ፊደል መለያዎች ላይ ብቻ ነው: እንደ \"ማድመቂያ\": \"ማዝመሚያ\", \"phantom\": \"መጠን\": \"ቀለም\" እና \"ፊደል\" ላይ:"
+msgstr "ይህ በ ትንሹ ይለያያል ለ ማወዳደር ወይንም በጋራ ለ መጫን መለያዎችን: ይህ አንዳንድ ጊዜ ያጋጥማል በ ፊደል መለያዎች ውስጥ: ለምሳሌ: የትኛው ቀለም ነው ለ b ያለው በ \"ቢጫ ቀለም ቀይ ቀለም (የ + አረንጓዴ ቀለም b)\", ወይንም የትኛው መጠን ነው ያለው በ \"መጠን *4 (a + መጠን /2 b)\"? መሰረታዊ መጠን ሲሰጥ ለ 12, ይህን ያህል መጠን አለው 48, 6 ወይንም ቢሆን 24 (የትኛው ነው በ መቀላቀያ ውስጥ የሚታየው)? የሚቀጥሉት መሰረታዊ የ ሪዞሊሽን ደንቦች ናቸው: ወደ ፊት ዘላቂ ሆኖ ይቀጥላል: ባጠቃላይ ደንቦቹ ይፈጸማሉ ለ ሁሉም ቡድን አንቀሳቃሾች: ይህ ተፅእኖ የሚታየው በ ፊደል መለያዎች ላይ ብቻ ነው: እንደ \"ማድመቂያ\": \"ማዝመሚያ\", \"phantom\": \"መጠን\": \"ቀለም\" እና \"ፊደል\" ላይ:"
#: 03091100.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3149884\n"
"help.text"
msgid "The index and exponent for a character are displayed one on top of the other, left-justified to the base character. For example, type <emph>a_2^3</emph> or <emph>a^3_2</emph>. This can be in any order. Instead of <emph>'_'</emph> and <emph>'^'</emph>, you can use <emph>'sub'</emph> and <emph>'sup'</emph>."
-msgstr "ማውጫ እና ኤክስፖነንት ለ ባህሪዎች የሚታዩት አንዱ በ አንዱ ላይ ነው: በ ግራ-እኩል ማካፈያ ከ መሰረታዊው ባህሪ ጋር: ለምሳሌ: ይጻፉ <emph>a_2^3</emph> ወይንም <emph>a^3_2</emph>. ይህ በ ማንኛውም ቅደም ተከተል ሊሆን ይችላል: በዚህ ፋንታ <emph>'_'</emph> እና <emph>'^'</emph>, እርስዎ መጠቀም ይችላሉ <emph>'sub'</emph> እና <emph>'sup'</emph>."
+msgstr "ማውጫ እና ኤክስፖነንት ለ ባህሪዎች የሚታዩት አንዱ በ አንዱ ላይ ነው: በ ግራ-እኩል ማካፈያ ከ መሰረታዊው ባህሪ ጋር: ለምሳሌ: ይጻፉ <emph>a_2^3</emph> ወይንም <emph>a^3_2</emph>: ይህ በ ማንኛውም ቅደም ተከተል ሊሆን ይችላል: በዚህ ፋንታ <emph>'_'</emph> እና <emph>'^'</emph>: እርስዎ መጠቀም ይችላሉ <emph> 'በትንንሽ ዝቅ ብሎ መጻፊያ' </emph> እና <emph> 'በትንንሽ ከፍ ብሎ መጻፊያ' </emph>"
#: 03091200.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"par_id3147516\n"
"help.text"
msgid "Super- and subscripts to the left of the base character can also be right-justified. To do this, the new commands \"lsub\" and \"lsup\" are used. Both commands have the same effect as \"sub\" and \"sup\", except that they are left of the base character. See also \"a lsub 2 lsup 3\"."
-msgstr "ሱፐር- እና በትንንሽ ፊደል ዝቅ ብሎ መጻፍ ወደ ግራ ከ መሰረቱ ባህሪ በኩል መሆን ይችላል በ ቀኝ-እኩል ማካፈያ: ይህን ለ ማድረግ: አዲሶቹ ትእዛዞች \"lsub\" and \"lsup\" ይጠቀማል: ሁለቱም ትእዛዞች ውጤታቸው ተመሳሳይ ነው: እንደ \"sub\" እና \"sup\", ከ መሰረታዊ ባህሪ በ ግራ በኩል ከ መሆን በስተቀር: ይህን ይመልከቱ \"a lsub 2 lsup 3\"."
+msgstr "ሱፐር- እና በትንንሽ ፊደል ዝቅ ብሎ መጻፍ ወደ ግራ ከ መሰረቱ ባህሪ በኩል መሆን ይችላል በ ቀኝ-እኩል ማካፈያ: ይህን ለ ማድረግ: አዲሶቹ ትእዛዞች \"በ ግራ ዝቅ ብሎ መጻፊያ\" እና \"በ ግራ ከፍ ብሎ መጻፊያ\" ይጠቀማል: ሁለቱም ትእዛዞች ውጤታቸው ተመሳሳይ ነው: እንደ \"ዝቅ ብሎ መጻፊያ\" እና \"ከፍ ብሎ መጻፊያ\", ከ መሰረታዊ ባህሪ በ ግራ በኩል ከ መሆን በስተቀር: ይህን ይመልከቱ \"a ዝቅ ብሎ መጻፊያ በ ግራ 2 ከፍ ብሎ መጻፊያ በ ግራ 3\"."
#: 03091200.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id3146966\n"
"help.text"
msgid "The <emph>acute</emph>, <emph>bar</emph>, <emph>breve</emph>, <emph>check</emph>, <emph>circle</emph>, <emph>dot</emph>, <emph>ddot</emph>, <emph>dddot</emph>, <emph>grave</emph>, <emph>hat</emph>, <emph>tilde</emph> and <emph>vec</emph> attributes always have a fixed size and do not become wider (longer) if they are above a long symbol. By default, the attributes are centered."
-msgstr "የ <emph>አኪዩት</emph>, <emph>ባር</emph>, <emph>ብሬቬ</emph>, <emph>መመርመሪያ</emph>, <emph>ክብ</emph>, <emph>ነጥብ</emph>, <emph>ሁለት ነጥቦች</emph>, <emph>ሶስት ነጥቦች</emph>, <emph>ግሬቭ</emph>, <emph> ሀት </emph>, <emph> ቲልዴ </emph> እና <emph> አቅጣጫ </emph> ባህሪዎች ሁል ጊዜ የ ተወሰነ መጠን አላቸው እና ማስፋት (ማስረዘም) አይቻልም: በ ነባር ከ ረጅም ምልክት በላይ ከሆኑ: ባህሪዎቹ መሀከል ይሆናሉ"
+msgstr "የ <emph> አኪዩት </emph>: <emph> መደርደሪያ </emph>: <emph> ብሬቬ </emph>: <emph> መመርመሪያ </emph>: <emph> ክብ </emph>: <emph> ነጥብ </emph>: <emph> ሁለት ነጥቦች </emph>: <emph> ሶስት ነጥቦች </emph>: <emph> ግሬቭ </emph>: <emph> ባርኔጣ </emph>: <emph> ቲልዴ </emph> እና <emph> አቅጣጫ </emph> ባህሪዎች ሁል ጊዜ የ ተወሰነ መጠን አላቸው እና ማስፋት (ማስረዘም) አይቻልም: በ ነባር ከ ረጅም ምልክት በላይ ከሆኑ: ባህሪዎቹ መሀከል ይሆናሉ"
#: 03091300.xhp
msgctxt ""
@@ -6654,7 +6654,7 @@ msgctxt ""
"par_id3156125\n"
"help.text"
msgid "Concatenate symbols"
-msgstr "የ ማያያዣ ምልክቶች"
+msgstr "የ አገናኝ ምልክቶች"
#: 03091501.xhp
msgctxt ""
@@ -7254,7 +7254,7 @@ msgctxt ""
"par_id3152784\n"
"help.text"
msgid "Is parallel to"
-msgstr "አጓዳኝ ወደ"
+msgstr "አጓዳኝ ነው ለ"
#: 03091502.xhp
msgctxt ""
@@ -8862,7 +8862,7 @@ msgctxt ""
"par_id3159743\n"
"help.text"
msgid "\"Roof\" above a character"
-msgstr "\"ጣሪያ\" ከ ባህሪው በላይ"
+msgstr "\"ጣራ\" ከ ባህሪው በላይ"
#: 03091506.xhp
msgctxt ""
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_idN12F9F\n"
"help.text"
msgid "<item type=\"literal\">\\lbrace \\rbrace</item> or <item type=\"literal\">\\{ \\}</item>"
-msgstr "<item type=\"literal\">\\የ ቀኝ ቅንፍ \\የ ግራ ቅንፍ</item> ወይንም <item type=\"literal\">\\{ \\}</item>"
+msgstr "<item type=\"literal\">\\የ ቀኝ ጠምዛዛ \\የ ግራ ጠምዛዛ</item> ወይንም <item type=\"literal\">\\{ \\}</item>"
#: 03091508.xhp
msgctxt ""
@@ -10174,7 +10174,7 @@ msgctxt ""
"par_id3186267\n"
"help.text"
msgid "Matrix"
-msgstr "መነሻ"
+msgstr "Matrix"
#: 03091509.xhp
msgctxt ""
@@ -10478,7 +10478,7 @@ msgctxt ""
"par_id3147036\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_IM\">Inserts the symbol for the imaginary part of a complex number.</ahelp> Command for the <emph>Commands</emph> window: <emph>im</emph>"
-msgstr "<ahelp hid=\"HID_SMA_IM\">ምልክት ማስገቢያ ለ ኢማጂነሪ አካል ለ ውስብስብ ቁጥር </ahelp> ትእዛዝ ለ <emph>ትእዛዞች</emph> መስኮት: <emph>ኢማጂነሪ</emph>"
+msgstr "<ahelp hid=\"HID_SMA_IM\">ምልክት ማስገቢያ ለ ኢማጂነሪ አካል ለ ውስብስብ ቁጥር </ahelp> ትእዛዝ ለ <emph> ትእዛዞች </emph> መስኮት: <emph> ኢማጂነሪ </emph>"
#: 03091600.xhp
msgctxt ""
@@ -11102,7 +11102,7 @@ msgctxt ""
"par_id3150213\n"
"help.text"
msgid "<variable id=\"schriftgroessentext\"><ahelp hid=\"modules/smath/ui/fontsizedialog/FontSizeDialog\">Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base.</ahelp></variable>"
-msgstr "<variable id=\"schriftgroessentext\"><ahelp hid=\"modules/smath/ui/fontsizedialog/FontSizeDialog\">ይህን ንግግር ይጠቀሙ ለ መወሰን የ ፊደል መጥን ለ እርስዎ መቀመሪያ: ይምረጡ መሰረታዊ መጠን እና ሁሉንም አካላቶች በ መቀመሪያ ውስጥ መጠናቸው ከ መሰረታዊው አንፃር ይመጠናል </ahelp></variable>"
+msgstr "<variable id=\"schriftgroessentext\"><ahelp hid=\"modules/smath/ui/fontsizedialog/FontSizeDialog\">ይህን ንግግር ይጠቀሙ ለ መወሰን የ ፊደል መጥን ለ እርስዎ መቀመሪያ: ይምረጡ የ ቤዝ መጠን እና ሁሉንም አካላቶች በ መቀመሪያ ውስጥ መጠናቸው ከ ቤዝ አንፃር ይመጠናል </ahelp></variable>"
#: 05020000.xhp
msgctxt ""
@@ -11110,7 +11110,7 @@ msgctxt ""
"hd_id3146968\n"
"help.text"
msgid "Base size"
-msgstr "መሰረታዊ መጠን"
+msgstr "የ ቤዝ መጠን"
#: 05020000.xhp
msgctxt ""
@@ -11118,7 +11118,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#metrik\" name=\"metrics\">metrics</link>, which are then automatically converted to points.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">ሁሉም አካላቶች በ መቀመሪያ ውስጥ በ ተመጣጣኝ የ ተመጠኑ ናቸው ከ መሰረታዊው አንፃር: መሰረታዊ መጠን ለ መቀየር: ይምረጡ ወይንም ይጻፉ የሚፈለገውን ነጥብ (ነጥብ) መጠን: እርስዎ እንዲሁም መጠቀም ይችላሉ ሌሎች መለኪያ ክፍሎች ወይንም ሌላ <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"metrics\"> መለኪያ ደረጃ </link> ራሱ በራሱ ወደ ነጥቦች ይቀይራል </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">ሁሉም አካላቶች በ መቀመሪያ ውስጥ በ ተመጣጣኝ የ ተመጠኑ ናቸው ከ ቤዝ አንፃር: የ ቤዝ መጠን ለ መቀየር: ይምረጡ ወይንም ይጻፉ የሚፈለገውን ነጥብ (ነጥብ) መጠን: እርስዎ እንዲሁም መጠቀም ይችላሉ ሌሎች መለኪያ ክፍሎች ወይንም ሌላ <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"metrics\"> መለኪያ ደረጃ </link> ራሱ በራሱ ወደ ነጥቦች ይቀይራል </ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"par_id3145241\n"
"help.text"
msgid "In this section, you can determine the relative sizes for each type of element with reference to the base size."
-msgstr "በዚህ ክፍል ውስጥ: እርስዎ መወሰን ይችላሉ የ አንፃራዊ መጠኖች ለ እያንዳንዱ አይነት አካል ከ ማመሳከሪያ ጋር ለ መሰረታዊ መጠን"
+msgstr "በዚህ ክፍል ውስጥ: እርስዎ መወሰን ይችላሉ የ አንፃራዊ መጠኖች ለ እያንዳንዱ አይነት አካል ከ ማመሳከሪያ ጋር ለ ቤዝ መጠን"
#: 05020000.xhp
msgctxt ""
@@ -11158,7 +11158,7 @@ msgctxt ""
"par_id3148774\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_text\">Select the size for text in a formula relative to the base size.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_text\">ይምረጡ የ ጽሁፍ መጠን በ መቀመሪያ አንፃር ከ base መጠን ጋር </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_text\">ይምረጡ የ ጽሁፍ መጠን በ መቀመሪያ አንፃር ከ ቤዝ መጠን ጋር </ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11174,7 +11174,7 @@ msgctxt ""
"par_id3149029\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_index\">Select the relative size for the indexes in a formula in proportion to the base size.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_index\">ይምረጡ የ አንፃራዊ መጠን ለ ማውጫዎች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ መሰረታዊ መጠን ጋር </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_index\">ይምረጡ የ አንፃራዊ መጠን ለ ማውጫዎች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ ቤዝ መጠን ጋር </ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11190,7 +11190,7 @@ msgctxt ""
"par_id3153923\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_function\">Select the relative size for names and other function elements in a formula in proportion to the base size.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_function\">ይምረጡ የ አንፃራዊ መጠን ለ ስሞች እና ሌሎች ተግባር አካሎች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ መሰረታዊ መጠን ጋር </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_function\">ይምረጡ የ አንፃራዊ መጠን ለ ስሞች እና ሌሎች ተግባር አካሎች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ ቤዝ መጠን ጋር </ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3083280\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_operator\">Select the relative size of the mathematical operators in a formula in proportion to the base size.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_operator\">ይምረጡ የ አንፃራዊ መጠን ለ ሂሳብ አንቀሳቃሾች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ መሰረታዊ መጠን ጋር </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_operator\">ይምረጡ የ አንፃራዊ መጠን ለ ሂሳብ አንቀሳቃሾች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ ቤዝ መጠን ጋር </ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11222,7 +11222,7 @@ msgctxt ""
"par_id3151189\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_limit\">Select the relative size for the limits in a formula in proportion to the base size.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_limit\">ይምረጡ የ አንፃራዊ መጠን ለ መጠኖች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ መሰረታዊ መጠን ጋር </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_limit\">ይምረጡ የ አንፃራዊ መጠን ለ መጠኖች በ መቀመሪያ ውስጥ ተመጣጣኝ ከ ቤዝ መጠን ጋር </ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11270,7 +11270,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<variable id=\"abstaendetext\"><ahelp hid=\"modules/smath/ui/spacingdialog/SpacingDialog\">Use this dialog to determine the spacing between formula elements. The spacing is specified as a percentage in relation to the base size defined under <emph>Format - Font Size</emph>.</ahelp></variable>"
-msgstr "<variable id=\"abstaendetext\"><ahelp hid=\"modules/smath/ui/spacingdialog/SpacingDialog\">ይህን ንግግር ይጠቀሙ ለ መወሰን ክፍተት በ መቀመሪያ አካላቶች መካከል: ክፍተት የሚወሰነው በ ፐርሰንት ነው ከ መሰረታዊ መጠን አንፃር እንደ ተገለጸው በ <emph>አቀራረብ - የ ፊደል መጠን</emph>.</ahelp></variable> ውስጥ"
+msgstr "<variable id=\"abstaendetext\"><ahelp hid=\"modules/smath/ui/spacingdialog/SpacingDialog\">ይህን ንግግር ይጠቀሙ ለ መወሰን ክፍተት በ መቀመሪያ አካላቶች መካከል: ክፍተት የሚወሰነው በ ፐርሰንት ነው ከ ቤዝ መጠን አንፃር እንደ ተገለጸው በ <emph> አቀራረብ - የ ፊደል መጠን </emph>:</ahelp></variable> ውስጥ"
#: 05030000.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3148699\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/catalogdialog/symbolset\">All symbols are organized into symbol sets. Select the desired symbol set from the list box. The corresponding group of symbols appear in the field below.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/catalogdialog/symbolset\">ሁሉም ምልክቶች የሚደራጁት በ ምልክቶች ማሰናጃ ነው: ይምረጡ የሚፈለገውን ምልክት ከ ዝርዝር ሳጥን ውስጥ: ተመሳሳይ ቡድን የ ምልክቶች ይታያል ከ ሜዳው በ ታቻ በኩል </ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/catalogdialog/symbolset\">ሁሉም ምልክቶች የሚደራጁት በ ምልክቶች ማሰናጃ ነው: ይምረጡ የሚፈለገውን ምልክት ከ ዝርዝር ሳጥን ውስጥ: ተመሳሳይ ቡድን የ ምልክቶች ይታያል ከ ሜዳው ከ ታቻ በኩል </ahelp>"
#: 06010000.xhp
msgctxt ""
@@ -12086,7 +12086,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "To insert a symbol, select it from the list and click <emph>Insert</emph>. The corresponding command name appears in the <emph>Commands</emph> window."
-msgstr "ምልክት ለማስገባት ይምረጡ ከ ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>. ተመሳሳይ የ ትእዛዝ ስም ይታያል በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
+msgstr "ምልክት ለማስገባት ይምረጡ ከ ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph> ማስገቢያ </emph> ተመሳሳይ የ ትእዛዝ ስም ይታያል በ <emph> ትእዛዞች </emph> መስኮት ውስጥ"
#: 06010000.xhp
msgctxt ""
@@ -12422,7 +12422,7 @@ msgctxt ""
"par_id3153917\n"
"help.text"
msgid "You can import MathML files created by other applications as well. The MathML source must have a <item type=\"code\">math</item> element with an <item type=\"code\">xmlns</item> attribute with value \"http://www.w3.org/1998/Math/MathML\". The languages MathML and StarMath are not fully compatible, therefore you should revise the import result. For details about the language MathML see its <link href=\"http://www.w3.org/TR/#tr_MathML\">specification</link>."
-msgstr "እርስዎ ማምጣት ይችላሉ የ MathML ፋይሎች የ ተፈጠረውን በ ሌላ መተግበሪያዎች እንዲሁም: የ MathML ምንጭ እንዲኖረው ያስፈልጋል የ <item type=\"code\">ሂሳብ</item> አካላት በ <item type=\"code\">xmlns</item> መለያ ዋጋ በ \"http://www.w3.org/1998/Math/MathML\". ይህ ቋንቋ የ MathML እና የ StarMath ሙሉ በሙሉ ተስማሚ አይደለም: ስለዚህ እርስዎ እንደገና መመርመር አለብዎት የ ማምጫ ውጤቶችን: ለ ዝርዝር ስለ ቋንቋ MathML ይህን <link href=\"http://www.w3.org/TR/#tr_MathML\">መግለጫ ይመልከቱ</link>."
+msgstr "እርስዎ ማምጣት ይችላሉ የ MathML ፋይሎች የ ተፈጠረውን በ ሌላ መተግበሪያዎች እንዲሁም: የ MathML ምንጭ እንዲኖረው ያስፈልጋል የ <item type=\"code\">ሂሳብ</item> አካላት በ <item type=\"code\">xmlns</item> መለያ ዋጋ በ \"http://www.w3.org/1998/Math/MathML\". ይህ ቋንቋ የ MathML እና የ StarMath ሙሉ በሙሉ ተስማሚ አይደለም: ስለዚህ እርስዎ እንደገና መመርመር አለብዎት የ ማምጫ ውጤቶችን: ለ ዝርዝር ስለ ቋንቋ MathML ይህን <link href=\"http://www.w3.org/TR/#tr_MathML\"> መግለጫ ይመልከቱ </link>"
#: 06020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/02.po b/source/am/helpcontent2/source/text/smath/02.po
index 99c6d2643c5..bdb78fe20ed 100644
--- a/source/am/helpcontent2/source/text/smath/02.po
+++ b/source/am/helpcontent2/source/text/smath/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-17 00:28+0000\n"
+"PO-Revision-Date: 2017-06-14 14:29+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489710505.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497450560.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3153916\n"
"help.text"
msgid "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">Use this icon on the Tools bar to turn the Formula Cursor on or off.</ahelp> The part of the formula where the cursor is positioned in the <emph>Commands</emph> window is marked with a thin border when the formula cursor is active.</variable>"
-msgstr "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">ይህን ምልክት ይጠቀሙ ከ እቃ መደርደሪያ ላይ የ መቀመሪያ መጠቆሚያ ለ ማብሪያ ወይንም ለ ማጥፊያ</ahelp> የ መቀመሪያ አካል መጠቆሚያው ባለበት ቦታ የ <emph>ትእዛዝ</emph> መስኮት በ ቀጭን የ ድንበር መስመር ይከበባል የ መቀመሪያ መጠቆሚያው ንቁ ሲሆን </variable>"
+msgstr "<variable id=\"cursor\"><ahelp hid=\"SID_FORMULACURSOR\">ይህን ምልክት ይጠቀሙ ከ እቃ መደርደሪያ ላይ የ መቀመሪያ መጠቆሚያ ለ ማብሪያ ወይንም ለ ማጥፊያ </ahelp> የ መቀመሪያ አካል መጠቆሚያው ባለበት ቦታ የ <emph> ትእዛዝ </emph> መስኮት በ ቀጭን የ ድንበር መስመር ይከበባል የ መቀመሪያ መጠቆሚያው ንቁ ሲሆን </variable>"
#: 03010000.xhp
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"par_id3146966\n"
"help.text"
msgid "Double-clicking a character or symbol in the document moves the focus of the cursor to the <emph>Commands</emph> window and highlights its respective position."
-msgstr "ሁለት ጊዜ-ይጫኑ ባህሪ ወይንም በ ምልክት ላይ በ ሰነዱ ውስጥ ትኩረቱን ወደ መጠቆሚያው ይመልስሰዋል በ <emph>ትእዛዝ</emph> መስኮት እና ተመሳሳዩን ቦታ ያደምቀዋል"
+msgstr "ሁለት ጊዜ-ይጫኑ ባህሪ ወይንም በ ምልክት ላይ በ ሰነዱ ውስጥ ትኩረቱን ወደ መጠቆሚያው ይመልስሰዋል በ <emph> ትእዛዝ </emph> መስኮት እና ተመሳሳዩን ቦታ ያደምቀዋል"
diff --git a/source/am/helpcontent2/source/text/smath/guide.po b/source/am/helpcontent2/source/text/smath/guide.po
index 89d8c015969..7948993550b 100644
--- a/source/am/helpcontent2/source/text/smath/guide.po
+++ b/source/am/helpcontent2/source/text/smath/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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-04 17:57+0000\n"
+"PO-Revision-Date: 2017-06-18 18:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496599078.000000\n"
+"X-POOTLE-MTIME: 1497811090.000000\n"
#: align.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"bm_id8404492\n"
"help.text"
msgid "<bookmark_value>limits;in sums/integrals</bookmark_value><bookmark_value>integral limits</bookmark_value>"
-msgstr "<bookmark_value>መጠኖች;በ ድምር ውስጥ/ጠቅላላ</bookmark_value><bookmark_value>ጠቅላላ መጠኖች</bookmark_value>"
+msgstr "<bookmark_value>መጠኖች: በ ድምር ውስጥ/ኢንቲግራልስ</bookmark_value><bookmark_value>የ ኢንቲግራልስ መጠኖች</bookmark_value>"
#: limits.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"hd_id9881893\n"
"help.text"
msgid "How can I define the limits in a Sum or Integral formula?"
-msgstr "እኔ እንዴት ነው መጠኖችን የምገልጸው በ ድምር ወይንም Integral መቀመሪያ ውስጥ?"
+msgstr "እኔ እንዴት ነው መጠኖችን የምገልጸው በ ድምር ወይንም ኢንቲግራል መቀመሪያ ውስጥ?"
#: limits.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id9641712\n"
"help.text"
msgid "To enable lower and upper limits, click additionally the <emph>Upper and Lower Limits</emph> icon."
-msgstr "ለ ማስቻል የ ታችኛው እና የ ላይኛው መጠኖችን: ይጫኑ በ ተጨማሪ በ <emph>ላይኛው እና ታችኛው መጠኖች</emph> ምልክት ላይ"
+msgstr "ለ ማስቻል የ ታችኛው እና የ ላይኛው መጠኖችን: ይጫኑ በ ተጨማሪ በ <emph> ላይኛው እና ታችኛው መጠኖች </emph> ምልክት ላይ"
#: limits.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3877071\n"
"help.text"
msgid "If you don't like the font of the letters f and x, choose <item type=\"menuitem\">Format - Fonts</item> and select other fonts. Click the <emph>Default</emph> button to use the new fonts as default from now on."
-msgstr "እርስዎ ካልወደዱት የ ጽሁፉን ፊደል f እና x, ይምረጡ <item type=\"menuitem\">አቀራረብ - ፊደል</item> እና ይምረጡ ሌላ ፊደል: እና ይጫኑ የ <emph>ነባር</emph> ቁልፍ አዲሱን ፊደል እንደ ነባር ከ አሁን በኋላ ለ መጠቀም"
+msgstr "እርስዎ ካልወደዱት የ ጽሁፉን ፊደል f እና x, ይምረጡ <item type=\"menuitem\"> አቀራረብ - ፊደል </item> እና ይምረጡ ሌላ ፊደል: እና ይጫኑ የ <emph> ነባር </emph> ቁልፍ አዲሱን ፊደል እንደ ነባር ከ አሁን በኋላ ለ መጠቀም"
#: limits.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3021332\n"
"help.text"
msgid "If you need the formula within a line of text, the limits increase the line height. You can choose <item type=\"menuitem\">Format - Text Mode</item> to place the limits besides the Sum or Integral symbol, which reduces the line height."
-msgstr "እርስዎ መቀመሪያ በ ጽሁፍ መስመር ላይ ከ ፈለጉ: መጠኑ ይጨምራል የ መስመር እርዝመት: እርስዎ መምረጥ ይችላሉ <item type=\"menuitem\">አቀራረብ - የ ጽሁፍ ዘዴ</item> መጠኖችን ከ ድምሩ አጠገብ ለማድረግ ወይንም Integral symbol, የ መስመሩን እርዝመት ይቀንሳል"
+msgstr "እርስዎ መቀመሪያ በ ጽሁፍ መስመር ላይ ከ ፈለጉ: መጠኑ ይጨምራል የ መስመር እርዝመት: እርስዎ መምረጥ ይችላሉ <item type=\"menuitem\">አቀራረብ - የ ጽሁፍ ዘዴ</item> መጠኖችን ከ ድምሩ አጠገብ ወይንም ኢንቲግራል ምልክት ለማድረግ: የ መስመሩን እርዝመት ይቀንሳል"
#: limits.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id260322\n"
"help.text"
msgid "<link href=\"text/smath/01/03090909.xhp\">Example of Integral and Sum ranges</link>"
-msgstr "<link href=\"text/smath/01/03090909.xhp\">ለምሳሌ የ Integral እና የ መጠኖች ድምር </link>"
+msgstr "<link href=\"text/smath/01/03090909.xhp\">ለምሳሌ የ ኢንቲግራል እና የ መጠኖች ድምር </link>"
#: main.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3155960\n"
"help.text"
msgid "left lbrace x right none"
-msgstr "የ ግራ lድጋፍ x የ ቀኝ ምንም"
+msgstr "በ ግራ የ ግራ ጠምዛዛ x የ ቀኝ ምንም"
#: parentheses.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id755943\n"
"help.text"
msgid "If you have set up Math to convert imported MathType formulas (in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - Microsoft Office), you see the formula with a placeholder instead of the asterisk."
-msgstr "እርስዎ ካሰናዱ ሂሳብ እንዲቀይር ከ ውጪ የ መጣ የ ሂሳብ አይነት መቀመሪያ (በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች – ምርጫ</defaultinline></switchinline> - መጫኛ/ማስቀመጫ - Microsoft Office) ለ እርስዎ መቀመሪያ ይታያል ከ ቦታ ያዢ ጋር በ ኮከብ ፋንታ"
+msgstr "እርስዎ ካሰናዱ ሂሳብ እንዲቀይር ከ ውጪ የ መጣ የ ሂሳብ አይነት መቀመሪያ (በ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች – ምርጫ </defaultinline></switchinline> - መጫኛ/ማስቀመጫ - Microsoft Office) ለ እርስዎ መቀመሪያ ይታያል ከ ቦታ ያዢ ጋር በ ኮከብ ፋንታ"
#: text.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index 322f31e91d9..004d15f107a 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-22 01:10+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 13:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495415435.000000\n"
+"X-POOTLE-MTIME: 1497966076.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id030820161747133280\n"
"help.text"
msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file <item type=\"literal\">example.xml</item> located in <item type=\"menuitem\">Tools - Options - LibreOffice - Paths - Classification</item> into a local folder and edit the contents."
-msgstr "%PRODUCTNAME ለ እርስዎ ንግድ የ መመደቢያ ደረጃዎች ማስተካከያ ማስቻያ: የ ደረጃዎች ስም እና ቁጥር ማስተካከያ ማስቻያ: ኮፒ ያድርጉ ፋይል <item type=\"literal\">example.xml</item> የሚገኘውን በ <item type=\"menuitem\">መሳሪያዎች -> ምርጫዎች -> LibreOffice -> መንገድ -> መመደቢያ</item> ወደ አካባቢ ፎልደር እና ይዞታዎቹን ያርሙ"
+msgstr "%PRODUCTNAME ለ እርስዎ ንግድ የ መመደቢያ ደረጃዎች ማስተካከያ ማስቻያ: የ ደረጃዎች ስም እና ቁጥር ማስተካከያ ማስቻያ: ኮፒ ያድርጉ ፋይል <item type=\"literal\">example.xml</item> የሚገኘውን በ <item type=\"menuitem\"> መሳሪያዎች -> ምርጫዎች -> LibreOffice -> መንገድ -> መመደቢያ </item> ወደ አካባቢ ፎልደር እና ይዞታዎቹን ያርሙ"
#: classificationbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">የ ቁጥር መስጫ እቅድ</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">ምእራፍ ቁጥር መስጫ</link>"
#: main0106.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"par_id8193914\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the language for the selected text. <br/>Click to open a menu where you can choose another language for the selected text or for the current paragraph. <br/>Choose None to exclude the text from spellchecking and hyphenation. <br/>Choose Reset to Default Language to re-apply the default language for the selection or the paragraph. <br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">ለተመረጠው ጽሁፍ ቋንቋ ማሳያ <br/>ይጫኑ ዝርዝሩን ለመክፈት ሌላ ቋንቋ ለመምረጥ እንዲችሉ ለተመረጠው ጽሁፍ ወይንም ለ አሁኑ አንቀጽ <br/>ይምረጡ ምንም ጽሁፉን ከ ፊደል ማረሚያ እና ጭረት ለመተው <br/>ይምረጡ እንደ ነበር መመለሻ ወደ ነባር ቋንቋ እንደ ነበር መመለሻን-ለመፈጸም ወደ ነባር ቋንቋ ወይንም ለተመረጠው አንቀጽ <br/>ይምረጡ ተጨማሪ የ በርካታ ተጨማሪዎች ምርጫ ለመክፈት </ahelp>"
+msgstr "<ahelp hid=\".\">ለተመረጠው ጽሁፍ ቋንቋ ማሳያ <br/> ይጫኑ ዝርዝሩን ለመክፈት ሌላ ቋንቋ ለመምረጥ እንዲችሉ ለተመረጠው ጽሁፍ ወይንም ለ አሁኑ አንቀጽ <br/> ይምረጡ ምንም ጽሁፉን ከ ፊደል ማረሚያ እና ጭረት ለመተው <br/> ይምረጡ እንደ ነበር መመለሻ ወደ ነባር ቋንቋ እንደ ነበር መመለሻን-ለመፈጸም ወደ ነባር ቋንቋ ወይንም ለተመረጠው አንቀጽ <br/> ይምረጡ ተጨማሪ የ በርካታ ተጨማሪዎች ምርጫ ለመክፈት </ahelp>"
#: main0208.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id0821200911015941\n"
"help.text"
msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr "ይህን ይመልከቱ <link href=\"text/shared/guide/digital_signatures.xhp\">የ ዲጂታል ፊርማዎች</link>."
+msgstr "ይህን ይመልከቱ <link href=\"text/shared/guide/digital_signatures.xhp\">የ ዲጂታል ፊርማዎች</link>"
#: main0208.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id3154254\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Formula</emph> Bar allows you to create and insert calculations into a text document.</ahelp> To activate the <emph>Formula</emph> Bar, press F2."
-msgstr "<ahelp hid=\".\">የ <emph>መቀመሪያ</emph> መደርደሪያ የሚያስችለው በ ሰነድ ጽሁፍ ውስጥ ስሌቶችን ለ መፍጠር እና ለማስገባት ነው</ahelp> ለ ማስነሳት <emph>መቀመሪያ</emph> መደርደሪያ ይጫኑ F2."
+msgstr "<ahelp hid=\".\">የ <emph> መቀመሪያ </emph> መደርደሪያ የሚያስችለው በ ሰነድ ጽሁፍ ውስጥ ስሌቶችን ለ መፍጠር እና ለማስገባት ነው </ahelp> ለ ማስነሳት <emph> መቀመሪያ </emph> መደርደሪያ ይጫኑ F2."
#: main0215.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id3155386\n"
"help.text"
msgid "<ahelp hid=\"HID_DRAW_TEXT_TOOLBOX\">Contains formatting commands for text that is contained in a draw object.</ahelp> The <emph>Text Object</emph> bar appears when you double-click inside a draw object."
-msgstr "<ahelp hid=\"HID_DRAW_TEXT_TOOLBOX\">ለ ጽሁፍ አቀራረብ ትእዛዞችን ይዟል በ መሳያ እቃ ውስጥ የተካተተ</ahelp> የ <emph>ጽሁፍ እቃ</emph> መደርደሪያ ላይ ይታያል ሁለት-ጊዜ ሲጫኑ በ መሳያ እቃ ውስጥ"
+msgstr "<ahelp hid=\"HID_DRAW_TEXT_TOOLBOX\">ለ ጽሁፍ አቀራረብ ትእዛዞችን ይዟል በ መሳያ እቃ ውስጥ የተካተተ </ahelp> የ <emph> ጽሁፍ እቃ </emph> መደርደሪያ ላይ ይታያል ሁለት-ጊዜ ሲጫኑ በ መሳያ እቃ ውስጥ"
#: main0220.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3147768\n"
"help.text"
msgid "$[officename] Writer lets you create both basic documents, such as memos, <link href=\"text/shared/guide/fax.xhp\" name=\"faxes\">faxes</link>, letters , resumes and <link href=\"text/swriter/01/01150000.xhp\" name=\"merge documents\">merge documents</link>, as well as long and complex or multi-part documents, complete with bibliographies, reference tables and indexes."
-msgstr "$[officename] መጻፊያ መሰረታዊ ሰነዶችን መፍጠር ያስችሎታል: ለምሳሌ እንደ ማስታወሻ <link href=\"text/shared/guide/fax.xhp\" name=\"faxes\"> ፋክሶች </link> ደብዳቤዎች: ማመልከቻዎች እና <link href=\"text/swriter/01/01150000.xhp\" name=\"merge documents\"> ሰነዶችን ማዋሀጃ </link> እንዲሁም ረጅም እና ውስብስብ ወይንም በርካታ-ክፍል ያላቸው ሰነዶች የ bibliographies, ማመሳከሪያ ሰንጠረዦች እና ማውጫዎች መፍጠር ያስችሎታል"
+msgstr "$[officename] መጻፊያ መሰረታዊ ሰነዶችን መፍጠር ያስችሎታል: ለምሳሌ እንደ ማስታወሻ <link href=\"text/shared/guide/fax.xhp\" name=\"faxes\"> ፋክሶች </link> ደብዳቤዎች: ማመልከቻዎች እና <link href=\"text/swriter/01/01150000.xhp\" name=\"merge documents\"> ሰነዶችን ማዋሀጃ </link> እንዲሁም ረጅም እና ውስብስብ ወይንም በርካታ-ክፍል ያላቸው ሰነዶች የ bibliographies: ማመሳከሪያ ሰንጠረዦች እና ማውጫዎች መፍጠር ያስችሎታል"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index 31f35b58301..b1bc91588fb 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/helpcontent2/source/text/swriter/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-06 14:44+0000\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
+"PO-Revision-Date: 2017-06-20 13:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496760270.000000\n"
+"X-POOTLE-MTIME: 1497966798.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<variable id=\"sendenstarimpress\">Choose <emph>File - Send - Outline to Presentation</emph></variable>"
-msgstr "<variable id=\"sendenstarimpress\">ይምረጡ <emph>ፋይል - መላኪያ - ረቂቅ ወደ ማቅረቢያ</emph></variable>"
+msgstr "<variable id=\"sendenstarimpress\">ይምረጡ <emph> ፋይል - መላኪያ - ረቂቅ ወደ ማቅረቢያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3153249\n"
"help.text"
msgid "<variable id=\"sendenclipboard\">Choose <emph>File - Send - Outline to Clipboard</emph></variable>"
-msgstr "<variable id=\"sendenclipboard\">ይምረጡ <emph>ፋይል - መላኪያ - ረቂቅ ወደ ቁራጭ ሰሌዳ</emph></variable>"
+msgstr "<variable id=\"sendenclipboard\">ይምረጡ <emph> ፋይል - መላኪያ - ረቂቅ ወደ ቁራጭ ሰሌዳ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3146962\n"
"help.text"
msgid "<variable id=\"sendenautoabstract\">Choose <emph>File - Send - Create AutoAbstract</emph></variable>"
-msgstr "<variable id=\"sendenautoabstract\">ይምረጡ <emph>ፋይል - መላኪያ - በራሱ ግልጽ ያልሆነ መፍጠሪያ</emph></variable>"
+msgstr "<variable id=\"sendenautoabstract\">ይምረጡ <emph> ፋይል - መላኪያ - በራሱ ግልጽ ያልሆነ መፍጠሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id3156397\n"
"help.text"
msgid "<variable id=\"sendenpraeser\">Choose <emph>File - Send - AutoAbstract to Presentation</emph></variable>"
-msgstr "<variable id=\"sendenpraeser\">ይምረጡ <emph>ፋይል - መላኪያ - በራሱ ግልጽ ያልሆነ ወደ ማቅረቢያ</emph></variable>"
+msgstr "<variable id=\"sendenpraeser\">ይምረጡ <emph> ፋይል - መላኪያ - በራሱ ግልጽ ያልሆነ ወደ ማቅረቢያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id3147404\n"
"help.text"
msgid "<variable id=\"html\">Choose <emph>File - Send - Create HTML Document</emph></variable>"
-msgstr "<variable id=\"html\">ይምረጡ <emph>ፋይል - መላኪያ - HTML Document መፍጠሪያ</emph></variable>"
+msgstr "<variable id=\"html\">ይምረጡ <emph> ፋይል - መላኪያ - HTML Document መፍጠሪያ </emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3149350\n"
"help.text"
msgid "Insert at least one address database field into a text document, then start printing the document. Answer \"Yes\" to the question whether you want to print a form letter."
-msgstr "ቢያንስ አንድ የአድረሻ ዳታቤዝ ሜዳ ወደ ጽሁፍ ሰነድ ያስገቡ ፡ ከዚያ ሰነዱን ማተም ይጀምሩ ፡ የደብዳቤ ፎርም ማተም እንደሚፈልጉ ሲጠየቁ \"አዎ\" ብለው ይመልሱ"
+msgstr "ቢያንስ አንድ የአድረሻ ዳታቤዝ ሜዳ ወደ ጽሁፍ ሰነድ ያስገቡ ፡ ከዚያ ሰነዱን ማተም ይጀምሩ: የ ደብዳቤ ፎርም ማተም እንደሚፈልጉ ሲጠየቁ \"አዎ\" ብለው ይመልሱ"
#: 00000401.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3149349\n"
"help.text"
msgid "<variable id=\"datenaust\">Choose <emph>Edit - Exchange Database</emph></variable>"
-msgstr "<variable id=\"datenaust\">ይምረጡ <emph>ማረሚያ - ዳታቤዝ መቀያየሪያ</emph></variable>"
+msgstr "<variable id=\"datenaust\"> ይምረጡ <emph> ማረሚያ - ዳታቤዝ መቀያየሪያ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "<variable id=\"feldbefehl\">Choose <emph>Edit - Fields</emph></variable>"
-msgstr "<variable id=\"feldbefehl\">ይምረጡ <emph>ማረሚያ - ሜዳዎች </emph></variable>"
+msgstr "<variable id=\"feldbefehl\">ይምረጡ <emph> ማረሚያ - ሜዳዎች </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3154505\n"
"help.text"
msgid "<variable id=\"fussnote\">Choose <emph>Edit - Footnotes</emph></variable>"
-msgstr "<variable id=\"fussnote\">ይምረጡ <emph>ማረሚያ - የግርጌ ማስታወሻ</emph></variable>"
+msgstr "<variable id=\"fussnote\">ይምረጡ <emph> ማረሚያ - የግርጌ ማስታወሻ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3973204\n"
"help.text"
msgid "<variable id=\"selection_mode\">Choose <emph>Edit - Selection Mode</emph></variable>"
-msgstr "<variable id=\"selection_mode\">ይምረጡ <emph>ማረሚያ - መምረጫ ዘዴ</emph></variable>"
+msgstr "<variable id=\"selection_mode\">ይምረጡ <emph> ማረሚያ - መምረጫ ዘዴ </emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3973244\n"
"help.text"
msgid "<variable id=\"direct_cursor\">Choose <emph>Edit - Direct Cursor Mode</emph></variable>"
-msgstr "<variable id=\"direct_cursor\">ይምረጡ <emph>ማረሚያ - በ ቀጥታ መጠቆሚያ ዘዴ</emph></variable>"
+msgstr "<variable id=\"direct_cursor\">ይምረጡ <emph> ማረሚያ - በ ቀጥታ መጠቆሚያ ዘዴ </emph></variable>"
#: 00000403.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3146966\n"
"help.text"
msgid "Open context menu - choose <emph>Fields</emph> (inserted fields)"
-msgstr "ዝርዝር አገባብ መክፈቻ - ይምረጡ <emph>ሜዳዎች</emph> (የገቡ ሜዳዎች)"
+msgstr "ዝርዝር አገባብ መክፈቻ - ይምረጡ <emph> ሜዳዎች </emph> (የገቡ ሜዳዎች)"
#: 00000404.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3150973\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "Open context menu - choose <emph>Footnote/Endnote</emph> (inserted Footnote/Endnote)"
-msgstr "ዝርዝር አገባብ መክፈቻ - ይምረጡ <emph>የግርጌ ማስታወሻ/የመጨረሻ ማስታወሻ</emph> (ተጨምሯል የግርጌ ማስታወሻ/የመጨረሻ ማስታወሻ)"
+msgstr "ዝርዝር አገባብ መክፈቻ - ይምረጡ <emph> የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ </emph> (ተጨምሯል የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ)"
#: 00000404.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"par_id3143279\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_id3153358\n"
"help.text"
msgid "Open context menu - choose <emph>Caption</emph>"
-msgstr "የዝርዝር አገባብ መክፈቻ - ይምረጡ <emph>መግለጫ ጽሁፍ</emph>"
+msgstr "የዝርዝር አገባብ መክፈቻ - ይምረጡ <emph> መግለጫ ጽሁፍ </emph>"
#: 00000404.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3145785\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3147490\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች </emph>"
#: 00000404.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_id3150103\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3148817\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3150679\n"
"help.text"
msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ይጫኑ"
+msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
#: 00000404.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3153618\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Drop Caps</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - የ መጀመሪያ ፊደል በ ትልቁ መጻፊያ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - የ መጀመሪያ ፊደል በ ትልቁ መጻፊያ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Drop Caps</emph> tab"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>ማሻሻያ/አዲስ - የ መጀመሪያ ፊደል በ ትልቁ መጻፊያ</emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ - የ መጀመሪያ ፊደል በ ትልቁ መጻፊያ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_idN10715\n"
"help.text"
msgid "Right-click a paragraph with style <item type=\"literal\">Text body</item>. Choose <emph>Edit Paragraph Style - Condition</emph> tab"
-msgstr "በ ቀኝ-ይጫኑ አንቀጽ ከ ዘዴ ጋር <item type=\"literal\">የጽሁፍ ሰውነት</item> ይምረጡ <emph>የ አንቀጽ ዘዴ ማረሚያ - ሁኔታ</emph> tab"
+msgstr "በ ቀኝ-ይጫኑ አንቀጽ ከ ዘዴ ጋር <item type=\"literal\"> የ ጽሁፍ አካል </item> ይምረጡ <emph> የ አንቀጽ ዘዴ ማረሚያ - ሁኔታ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_idN10739\n"
"help.text"
msgid "Open <emph>Styles and Formatting</emph> window. Click the <emph>New Style from Selection</emph> icon and keep the mouse button pressed. Choose <emph>Load Styles</emph> from the submenu."
-msgstr "መክፈቻ <emph>ዘዴዎች እና አቀራረብ</emph> መስኮት ይጫኑ የ <emph>አዲስ ዘዴ ከምርጫዎች</emph> ምልክት ውስጥ እና የአይጥ ቁልፉን እንደተጫኑ ይምረጡ <emph>ዘዴዎች መጫኛ</emph> ከ ንዑስ ዝርዝር ውስጥ"
+msgstr "መክፈቻ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት ይጫኑ የ <emph> አዲስ ዘዴ ከምርጫዎች </emph> ምልክት ውስጥ እና የአይጥ ቁልፉን እንደተጫኑ ይምረጡ <emph> ዘዴዎች መጫኛ </emph> ከ ንዑስ ዝርዝር ውስጥ"
#: 00000405.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id3152947\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph>"
#: 00000405.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> - open context menu <emph>New/Modify</emph> (for Page Styles)"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>ማሻሻያ/አዲስ </emph> tab (ለ ገጽ ዘዴዎች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ </emph> tab (ለ ገጽ ዘዴዎች)"
#: 00000405.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3154470\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Outline & Numbering</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ - እቅድ & ቁጥር መስጫ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - እቅድ & ቁጥር መስጫ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3147525\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Outline & Numbering</emph> tab (Paragraph Styles)"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>ማሻሻያ/አዲስ - እቅድ & ቁጥር መስጫ</emph> tab (ለ አንቀጽ ዘዴዎች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ - እቅድ & ቁጥር መስጫ </emph> tab (ለ አንቀጽ ዘዴዎች)"
#: 00000405.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3150836\n"
"help.text"
msgid "Choose <emph>Format - Page - Columns</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - አምዶች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - አምዶች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Columns</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - አምዶች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - አምዶች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Columns</emph> tab"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>ማሻሻያ/አዲስ - አምዶች</emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ - አምዶች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <emph>Insert/Format - Section(s) - Columns</emph> tab"
-msgstr "ይምረጡ <emph> ማስገቢያ/አቀራረብ - ክፍል(ሎች) - አምዶች</emph> tab"
+msgstr "ይምረጡ <emph> ማስገቢያ/አቀራረብ - ክፍል(ሎች) - አምዶች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3149817\n"
"help.text"
msgid "Choose <emph>Format - Page - Footnote</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - የ ግርጌ ማስታወሻ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - የ ግርጌ ማስታወሻ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3149109\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Footnote</emph> tab"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>መቀየሪያ/አዲስ - የ ግርጌ ማስታወሻ</emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> መቀየሪያ/አዲስ - የ ግርጌ ማስታወሻ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id3155140\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for Paragraph Styles)"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>ማሻሻያ/አዲስ </emph> tab (ለ አንቀጽ ዘዴዎች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ </emph> tab (ለ አንቀጽ ዘዴዎች)"
#: 00000405.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3153356\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for Character Styles)"
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>መቀየሪያ/አዲስ</emph> (ለ ባህሪ ዘዴዎች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> መቀየሪያ/አዲስ </emph> (ለ ባህሪ ዘዴዎች)"
#: 00000405.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id3149179\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for Frame Styles)"
-msgstr "ይምረጡ <emph>መመለከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>መቀየሪያ/አዲስ</emph> (ለ ክፈፍ ዘዴዎች)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> መቀየሪያ/አዲስ </emph> (ለ ክፈፍ ዘዴዎች)"
#: 00000405.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id3156364\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New</emph> (for List Styles)"
-msgstr "ይምረጡ <emph>መመለከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>መቀየሪያ/አዲስ</emph> (ለ ዘዴዎች ዝርዝር)"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> መቀየሪያ/አዲስ </emph> (ለ ዘዴዎች ዝርዝር)"
#: 00000405.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Format - AutoCorrect - While Typing</emph></variable>"
-msgstr "<variable id=\"eingabe\">ይምረጡ <emph>አቀራረብ - በራሱ አራሚ - በሚጽፉ ጊዜ </emph></variable>"
+msgstr "<variable id=\"eingabe\">ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - በሚጽፉ ጊዜ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Format - AutoCorrect</emph></variable>"
-msgstr "<variable id=\"autoformat1\">ይምረጡ <emph>አቀራረብ - በራሱ አራሚ</emph></variable>"
+msgstr "<variable id=\"autoformat1\">ይምረጡ <emph> አቀራረብ - በራሱ አራሚ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"par_id3150117\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Format - AutoCorrect - Apply</emph></variable>"
-msgstr "<variable id=\"autoformat2\">ይምረጡ <emph>አቀራረብ - በራሱ አራሚ - መፈጸሚያ</emph></variable>"
+msgstr "<variable id=\"autoformat2\">ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - መፈጸሚያ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Format - AutoCorrect - Apply and Edit Changes</emph></variable>"
-msgstr "<variable id=\"autoformat3\">ይምረጡ <emph>አቀራረብ - በራሱ አራሚ - መፈጸሚያ እና ለውጦቹን ማረሚያ</emph></variable>"
+msgstr "<variable id=\"autoformat3\">ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - መፈጸሚያ እና ለውጦቹን ማረሚያ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_id3147484\n"
"help.text"
msgid "Choose <emph>Format - Image</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል</emph>"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል </emph>"
#: 00000405.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"par_id3146337\n"
"help.text"
msgid "Choose <emph>Format - Image - Type</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - አይነት</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - አይነት </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_id3149841\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Type</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ይጻፉ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ይጻፉ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"par_id3148856\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Type</emph> tab"
-msgstr "ይምረጡ <emph>መመለከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>መቀየሪያ/አዲስ - አይነት</emph> tab"
+msgstr "ይምረጡ <emph> መመለከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> መቀየሪያ/አዲስ - አይነት </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3151082\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Wrap</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - ባህሪዎች መጠቅለያ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - ባህሪዎች መጠቅለያ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3148437\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Wrap</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - መጠቅለያ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - መጠቅለያ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id3153299\n"
"help.text"
msgid "Choose <emph>Format - Wrap - Edit - Wrap</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ - መጠቅለያ - መጠቅለያ</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ - መጠቅለያ - መጠቅለያ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id3150454\n"
"help.text"
msgid "<variable id=\"kontureditor\">Choose <emph>Format - Wrap - Edit Contour</emph></variable>"
-msgstr "<variable id=\"kontureditor\">ይምረጡ <emph>አቀራረብ - መጠቅለያ - ቅርጽ ማረሚያ</emph></variable>"
+msgstr "<variable id=\"kontureditor\">ይምረጡ <emph> አቀራረብ - መጠቅለያ - ቅርጽ ማረሚያ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"par_id3153984\n"
"help.text"
msgid "Choose <emph>Format - Image - Hyperlink</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - Hyperlink</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - Hyperlink </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id3156130\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Hyperlink</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - Hyperlink</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - Hyperlink </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3154724\n"
"help.text"
msgid "Choose <emph>Format - Image - Options</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ምስል - ምርጫዎች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ምስል - ምርጫዎች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"par_id3145636\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Options</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ምርጫዎች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ምርጫዎች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"par_id3149774\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting -</emph> open context menu <emph>Modify/New - Options</emph> tab"
-msgstr "ይምረጡ <emph>መመለከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph>መቀየሪያ/አዲስ - ምርጫዎች</emph> tab"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ -</emph> ዝርዝር አገባብ መክፈቻ <emph> መቀየሪያ/አዲስ - ምርጫዎች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"par_id3155088\n"
"help.text"
msgid "<variable id=\"grafik1\">Choose <emph>Format - Image - Image</emph> tab</variable>"
-msgstr "<variable id=\"grafik1\">ይምረጡ <emph>አቀራረብ - ስእል - ስእል</emph> tab </variable>"
+msgstr "<variable id=\"grafik1\">ይምረጡ <emph> አቀራረብ - ስእል - ስእል </emph> tab </variable>"
#: 00000405.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"par_id3146938\n"
"help.text"
msgid "Choose <emph>Insert/Format - Image - Macro</emph> tab"
-msgstr "ይምረጡ <emph> ማስገቢያ/አቀራረብ - ምስል - Macro</emph> tab"
+msgstr "ይምረጡ <emph> ማስገቢያ/አቀራረብ - ምስል - ማክሮስ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"par_id3154323\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Macro</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - Macro</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች - ማክሮስ </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id3153238\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - AutoText (button) - Macro</emph>"
-msgstr "ይምረጡ <emph> መሳሪያዎች - በራሱ ጽሁፍ - በራሱ ጽሁፍ (ቁልፍ) - Macro </emph>"
+msgstr "ይምረጡ <emph> መሳሪያዎች - በራሱ ጽሁፍ - በራሱ ጽሁፍ (ቁልፍ) - ማክሮስ </emph>"
#: 00000405.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id3148792\n"
"help.text"
msgid "Choose <emph>Edit - ImageMap -</emph> open context menu<emph> - Macro</emph>"
-msgstr "ይምረጡ <emph>ማረሚያ - የ ምስል ካርታ -</emph> ዝርዝር አገባብ መክፈቻ <emph> - Macro</emph>"
+msgstr "ይምረጡ <emph> ማረሚያ - የ ምስል ካርታ -</emph> ዝርዝር አገባብ መክፈቻ <emph> - ማክሮስ </emph>"
#: 00000405.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3150039\n"
"help.text"
msgid "Choose <emph>Format - Character - Hyperlink</emph> tab<emph> - Events</emph> button"
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - Hyperlink</emph> tab<emph> - ሁኔታዎች</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - Hyperlink </emph> tab <emph> - ሁኔታዎች </emph> ቁልፍ"
#: 00000405.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id3149406\n"
"help.text"
msgid "<variable id=\"breites\">In the context menu of a cell, choose <emph>Column - Width</emph></variable>"
-msgstr "<variable id=\"breites\">ከ ክፍል ዝርዝር አገባብ ውስጥ ይምረጡ <emph>አምድ - ስፋት</emph></variable>"
+msgstr "<variable id=\"breites\">ከ ክፍል ዝርዝር አገባብ ውስጥ ይምረጡ <emph> አምድ - ስፋት </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>"
-msgstr "ይምረጡ <emph>አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች</emph> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች </emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">ይምረጡ <emph>እቃዎች - የቁጥር መስጫ እቅድ</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr "<variable id=\"kapitelnumerierung\">ይምረጡ <emph> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </emph></variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">ይምረጡ <emph>እቃዎች - የቁጥር መስጫ እቅድ - የቁጥር መስጫ</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr "<variable id=\"kapitelnumerierung1\">ይምረጡ <emph> መሳሪያዎች - ምእራፍ ቁጥር መስጫ - ቁጥር መስጫ </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">ይምረጡ <emph>እቃዎች - መስመር ቁጥር መስጫ</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr "<variable id=\"zeilennumerierung\">ይምረጡ <emph> መሳሪያዎች - መስመር ቁጥር መስጫ </emph> (ለ HTML አቀራረብ አይደለም) </variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 2fe1cbba797..1f5102846af 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 17:10+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-21 00:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496682614.000000\n"
+"X-POOTLE-MTIME: 1498005097.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3154102\n"
"help.text"
msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>Database</emph></link> tab page under <emph>Insert - Field - More Fields</emph>."
-msgstr "በሚያትሙ ጊዜ የ ዳታቤዝ መረጃ ይቀይረዋል ተመሳሳይ የ ዳታቤዝ ሜዳዎች (ቦታ ያዦችን) በበለጠ ለመማር ስለ ዳታቤዝ ማስገቢያ ሜዳዎች ያመሳክሩ ወደ <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph> ዳታቤዝ </emph></link> tab ገጽ ስር <emph> ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች </emph>."
+msgstr "በሚያትሙ ጊዜ የ ዳታቤዝ መረጃ ይቀይረዋል ተመሳሳይ የ ዳታቤዝ ሜዳዎች (ቦታ ያዦችን) በበለጠ ለመማር ስለ ዳታቤዝ ማስገቢያ ሜዳዎች ያመሳክሩ ወደ <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph> ዳታቤዝ </emph></link> tab ገጽ ስር <emph> ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች </emph>"
#: 01150000.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id8186895\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a database and table.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ የ ዳታቤዝ እና ሰንጠረዥ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ የ ዳታቤዝ እና ሰንጠረዥ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3149804\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/abstractdialog/outlines\">Enter the extent of the outline levels to be copied to the new document.</ahelp> For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in <emph>Subpoints per Level</emph>."
-msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/outlines\">Enter the extent of the outline levels to be copied to the new document.</ahelp> For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in <emph>Subpoints per Level</emph>."
+msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/outlines\">ስፋት ያስገቡ ለ ረቂቅ ደረጃ ኮፒ የሚደረገውን ወደ አዲሱ ሰነድ ውስጥ </ahelp> ለምሳሌ: እርስዎ ከ መረጡ 4 ደረጃዎች: ሁሉም አንቀጾች ይቀርባሉ ከ ራስጌ 1 ወደ ራስጌ 4 ይካተታል: ከ ሌሎች ቁጥሮች ተከትለው የሚመጡ አንቀጾች ጋር የ ተመረጠው በ <emph> ንዑስ ነጥብ በ ደረጃ </emph>"
#: 01160300.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/abstractdialog/paras\">Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading.</ahelp> All of the paragraphs up to the maximum defined are included until the next paragraph with a Heading Style is reached."
-msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/paras\">Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading.</ahelp> All of the paragraphs up to the maximum defined are included until the next paragraph with a Heading Style is reached."
+msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/paras\">ከፍተኛውን ቁጥር ይወስኑ ለ አንቀጾች የሚካተተውን በራሱ ግልጽ ያልሆነ ሰነድ ውስጥ ከ እያንዳንዱ ራስጌ በኋላ: </ahelp> ሁሉም አንቀጾች እስከ ከፍተኛው የ ተገለጹ ይካተታሉ የሚቀጥለው አንቀጽ ከ ራስጌ ዘዴ ጋር እስከሚደርስ ድረስ"
#: 01160400.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3151175\n"
"help.text"
msgid "<variable id=\"htmltext\"><ahelp hid=\".uno:NewHtmlDoc\">Saves the file as an HTML document, so that you can view it in a web browser. You can choose to create a separate page when a heading style that you specify is encountered in the document.</ahelp> If you choose this option, a separate page of links to all of the pages that are generated is also created. </variable>"
-msgstr "<variable id=\"htmltext\"><ahelp hid=\".uno:NewHtmlDoc\">Saves the file as an HTML document, so that you can view it in a web browser. You can choose to create a separate page when a heading style that you specify is encountered in the document.</ahelp> If you choose this option, a separate page of links to all of the pages that are generated is also created. </variable>"
+msgstr "<variable id=\"htmltext\"><ahelp hid=\".uno:NewHtmlDoc\">ፋይል ማስቀመጫ እንደ HTML ሰነድ: ስለዚህ እርስዎ መመልከት ይችላሉ በ ዌብ መቃኛ ውስጥ: እርስዎ መምረጥ ይችላሉ ለ መፍጠር የ ተለየ ገጽ የ ራስጌ ዘዴ እርስዎ የወሰኑት ችግር እስከሚገጥመው ድረስ በ ሰነዱ ውስጥ: </ahelp> እርስዎ ይህን ምርጫ ከ መረጡ: የ ተለየ ገጽ አገናኝ ለ ሁሉም ለ መነጩ ገጾች ይፈጠራል </variable>"
#: 01160500.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3155932\n"
"help.text"
msgid "To quickly reorder headings and their associated text in your document, select the \"Headings\" category in the list, and then click the<emph> Content View</emph> icon. Now you can use drag-and-drop to reorder contents."
-msgstr "በ እርስዎ ሰነድ ውስጥ በፍጥነት ራስጌዎችን እና የ ተዛመዱ ጽሁፎችን ለማዘጋጀት: ይምረጡ የ \"ራስጌዎች\" ምድብ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ የ <emph> ይዞታ መመልከቻ</emph>ምልክት: አሁን እርስዎ በ መጎተቻ-እና-መጣያ ይዞታዎችን ማስተካከል ይችላሉ"
+msgstr "በ እርስዎ ሰነድ ውስጥ በፍጥነት ራስጌዎችን እና የ ተዛመዱ ጽሁፎችን ለማዘጋጀት: ይምረጡ የ \"ራስጌዎች\" ምድብ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ የ <emph> ይዞታ መመልከቻ </emph> ምልክት: አሁን እርስዎ በ መጎተቻ-እና-መጣያ ይዞታዎችን ማስተካከል ይችላሉ"
#: 02110000.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3153011\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, in the <emph>Navigation</emph> window click the <emph>Reminder</emph> icon, and then click the <emph>Previous</emph> or <emph>Next</emph> button.</ahelp> Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይጫኑ እዚህ አስታዋሽ ለማሰናዳት መጠቆሚያው አሁን ባለበት ፡ እስከ አምስት አስታዋሽ መግለጽ ይችላሉ: ወደ አስታዋሽ ለመዝለል ይጫኑ የ <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph> መቃኛ </emph></link> ምልክት, ከ <emph> መቃኛ </emph> መስኮት ውስጥ የ <emph> አስታዋሽ </emph> ምልክት እና ከዛ ይጫኑ <emph> ቀደም ያለው </emph> ወይንም <emph> የሚቀጥለውን </emph> ቁልፍ </ahelp> ይጫኑ እዚህ ማስታወሻ ለማሰናዳት መጠቆሚያው ባለበት ቦታ ፡ እስከ አምስት አስታዋሽ መግለጽ ይችላሉ ፡ ወደ አስታዋሽ ለመዝለል ይጫኑ የ <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"> መቃኛ </link> ምልክት ከ መቃኛው መስኮት ውስጥ ይጫኑ የ አስታዋሹን ምልክት እና ከዛ ይጫኑ ቀደም ያለው ወይንም የሚቀጥለውን ቁልፍ"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይጫኑ እዚህ አስታዋሽ ለማሰናዳት መጠቆሚያው አሁን ባለበት: እስከ አምስት አስታዋሽ መግለጽ ይችላሉ: ወደ አስታዋሽ ለመዝለል ይጫኑ የ <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph> መቃኛ </emph></link> ምልክት ከ <emph> መቃኛ </emph> መስኮት ውስጥ የ <emph> አስታዋሽ </emph> ምልክት እና ከዛ ይጫኑ <emph> ቀደም ያለውን </emph> ወይንም <emph> የሚቀጥለውን </emph> ቁልፍ </ahelp> ይጫኑ እዚህ ማስታወሻ ለማሰናዳት መጠቆሚያው ባለበት ቦታ ፡ እስከ አምስት አስታዋሽ መግለጽ ይችላሉ ፡ ወደ አስታዋሽ ለመዝለል ይጫኑ የ <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"> መቃኛ </link> ምልክት ከ መቃኛው መስኮት ውስጥ ይጫኑ የ አስታዋሹን ምልክት እና ከዛ ይጫኑ ቀደም ያለው ወይንም የሚቀጥለውን ቁልፍ"
#: 02110000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">ይጫኑ <emph>1 </emph> ከ ላይ ያሉትን ራስጌዎች ብቻ ለማየት በ መቃኛው መስኮት ውስጥ እና <emph> 10 </emph> ሁሉንም ራስጌዎች ለመመልከት</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">ይጫኑ <emph> 1 </emph> ከ ላይ ያሉትን ራስጌዎች ብቻ ለማየት በ መቃኛው መስኮት ውስጥ እና <emph> 10 </emph> ሁሉንም ራስጌዎች ለመመልከት </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3154330\n"
"help.text"
msgid "The entries largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> selection box. You can also select other jump destinations. An example are the reminders, which you can set with the <emph>Set Reminder</emph> icon in the Navigator. You can select an object from among the following options on the <emph>Navigation</emph> toolbar: table, text frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula."
-msgstr "ማስገቢያው በ ከፊል ይመሳሰላል ከ <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">መቃኛ</link> ምርጫ ሳጥን ጋር: እርስዎ እንዲሁም መምረጥ ይችላሉ ሌላ መዝለያ መድረሻ: ለምሳሌ አስታዋሾች: እርስዎ ማሰናዳት ይችላሉ በ <emph> አስታዋሽ ማሰናጃ </emph> ምልክት በ መቃኛ ውስጥ: እርስዎ መምረጥ ይችላሉ እቃዎች ከ ሚቀጥሉት ምርጫዎች ውስጥ ከ <emph> መቃኛ </emph> እቃ መደርደሪያ ላይ: ሰንጠረዥ: የ ጽሁፍ ክፈፍ: ንድፎች: የ OLE እቃ: ገጽ: ራስጌዎች: አስታዋሽ: መሳያ እቃ: መቆጣጠሪያ ሜዳ: ክፍል: ምልክት ማድረጊያ: ምርጫዎች: የ ግርጌ ማስታወሻ: ማስታወሻ: ማውጫ ማስገቢያ: የ ሰንጠረዥ መቀመሪያ: የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
+msgstr "ማስገቢያው በ ከፊል ይመሳሰላል ከ <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"> መቃኛ </link> ምርጫ ሳጥን ጋር: እርስዎ እንዲሁም መምረጥ ይችላሉ ሌላ መዝለያ መድረሻ: ለምሳሌ አስታዋሾች: እርስዎ ማሰናዳት ይችላሉ በ <emph> አስታዋሽ ማሰናጃ </emph> ምልክት በ መቃኛ ውስጥ: እርስዎ መምረጥ ይችላሉ እቃዎች ከ ሚቀጥሉት ምርጫዎች ውስጥ ከ <emph> መቃኛ </emph> እቃ መደርደሪያ ላይ: ሰንጠረዥ: የ ጽሁፍ ክፈፍ: ንድፎች: የ OLE እቃ: ገጽ: ራስጌዎች: አስታዋሽ: መሳያ እቃ: መቆጣጠሪያ ሜዳ: ክፍል: ምልክት ማድረጊያ: ምርጫዎች: የ ግርጌ ማስታወሻ: ማስታወሻ: ማውጫ ማስገቢያ: የ ሰንጠረዥ መቀመሪያ: የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#: 02110100.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"par_id3145257\n"
"help.text"
msgid "Lists the AutoText categories. To view the AutoText entries in a category, double-click the category, or click the plus sign (+) in front of the category. To insert an AutoText entry into the current document, select the entry in the list, and then click <emph>Insert</emph>."
-msgstr "የ በራሱ ጽሁፍ ምድቦች ዝርዝር: ለ መመልከት የ በራሱ ጽሁፍ ማስገቢያ በ ምድቦች ውስጥ: ሁለት ጊዜ-ይጫኑ በ ምድብ ላይ ወይንም የ መደመሪያ ምልክት (+) ላይ ከ ምድቡ ፊት ለ ፊት: ለማስገባት በራሱ ጽሁፍ ማስገቢያ ወደ አሁኑ ሰነድ ውስጥ: ይምረጡ ማስገቢያ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>."
+msgstr "የ በራሱ ጽሁፍ ምድቦች ዝርዝር: ለ መመልከት የ በራሱ ጽሁፍ ማስገቢያ በ ምድቦች ውስጥ: ሁለት ጊዜ-ይጫኑ በ ምድብ ላይ ወይንም የ መደመሪያ ምልክት (+) ላይ ከ ምድቡ ፊት ለ ፊት: ለማስገባት በራሱ ጽሁፍ ማስገቢያ ወደ አሁኑ ሰነድ ውስጥ: ይምረጡ ማስገቢያ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>"
#: 02120000.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3153127\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/autotext\">Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/autotext\">ይጫኑ ተጨማሪ በራሱ ጽሁፍ ትእዛዝ ለማሳየት: ለምሳሌ አዲስ በራሱ ጽሁፍ ማስገቢያ ለ መፍጠር ከ ጽሁፍ ምርጫ ከ አሁኑ ሰነድ ውስጥ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/autotext\">ይጫኑ ተጨማሪ በራሱ ጽሁፍ ትእዛዝ ለማሳየት: ለምሳሌ አዲስ በራሱ ጽሁፍ ማስገቢያ ለ መፍጠር ከ ጽሁፍ ምርጫ ከ አሁኑ ሰነድ ውስጥ </ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3155358\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/edit\">Opens the selected AutoText entry for editing in a separate document. Make the changes that you want, choose <emph>File - Save AutoText</emph>, and then choose <emph>File - Close</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/edit\">መክፈቻ የ ተመረጠውን በራሱ አራሚ ለ ማረሚያ በተለየ ሰነድ ውስጥ፡ የሚፈልጉትን ለውጥ ይፈጽሙ እና ይምረጡ <emph>ፋይል - በራሱ ጽሁፍ ማስቀመጫ</emph>, እና ከዛ ይምረጡ <emph>ፋይል - መዝጊያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/edit\">መክፈቻ የ ተመረጠውን በራሱ አራሚ ለ ማረሚያ በተለየ ሰነድ ውስጥ፡ የሚፈልጉትን ለውጥ ይፈጽሙ እና ይምረጡ <emph> ፋይል - በራሱ ጽሁፍ ማስቀመጫ </emph> እና ከዛ ይምረጡ <emph> ፋይል - መዝጊያ </emph></ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 02120000.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id3145106\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Assign Macro dialog, where you attach a macro to the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/05060700.xhp\" name=\"Assign Macro\">Assign Macro</link> dialog, where you attach a macro to the selected AutoText entry."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">መክፈቻ የ Macro ንግግር መፈጸሚያ: እርስዎ የሚያያይዙበት macro ወደ ተመረጠው በራሱ ጽሁፍ ማስገቢያ</ahelp> መክፈቻ የ <link href=\"text/swriter/01/05060700.xhp\" name=\"Assign Macro\">Macro መመደቢያ</link> ንግግር: እርስዎ የሚያያይዙበት macro ወደ ተመረጠው በራሱ ጽሁፍ ማስገቢያ"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">መክፈቻ የ ማክሮስ ንግግር መፈጸሚያ: እርስዎ የሚያያይዙበት ማክሮስ ወደ ተመረጠው በራሱ ጽሁፍ ማስገቢያ </ahelp> መክፈቻ የ <link href=\"text/swriter/01/05060700.xhp\" name=\"Assign Macro\"> ማክሮስ መመደቢያ </link> ንግግር: እርስዎ የሚያያይዙበት ማክሮስ ወደ ተመረጠው በራሱ ጽሁፍ ማስገቢያ ውስጥ"
#: 02120000.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3149583\n"
"help.text"
msgid "You can also use the macros that are linked to some of the provided AutoText entries in AutoText entries that you create. The AutoText entries must be created with the \"text only\" option. For example, insert the string <field:company> in an AutoText entry, and $[officename] replaces the string with the contents of the corresponding database field."
-msgstr "እርስዎ መጠቀም ይችላሉ macros የ ተገናኙ ከ አንዳንድ በራሱ ጽሁፍ ማስገቢያ የቀረቡት በ በራሱ ጽሁፍ ማስገቢያ እርስዎ በ ፋጠሩት: የ በራሱ ጽሁፍ ማስገቢያ መፈጠር ያለበት በ \" ጽሁፍ ብቻ\" ምርጫ ነው: ለምሳሌ: ሀረግ ያስገቡ <field:company> በራሱ ጽሁፍ ማስገቢያ እና $[officename] ይቀይራል ሀረጉን በ ይዞታዎች ከ ዳታቤዝ ሜዳ ከሚመሳሰሉ ጋር"
+msgstr "እርስዎ መጠቀም ይችላሉ ማክሮስ የ ተገናኙ ከ አንዳንድ በራሱ ጽሁፍ ማስገቢያ የቀረቡት በ በራሱ ጽሁፍ ማስገቢያ እርስዎ በ ፋጠሩት: የ በራሱ ጽሁፍ ማስገቢያ መፈጠር ያለበት በ \" ጽሁፍ ብቻ\" ምርጫ ነው: ለምሳሌ: ሀረግ ያስገቡ <field:company> በራሱ ጽሁፍ ማስገቢያ እና $[officename] ይቀይራል ሀረጉን በ ይዞታዎች ከ ዳታቤዝ ሜዳ ከሚመሳሰሉ ጋር"
#: 02120000.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id3150802\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/editcategories/name\">Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click <emph>Rename</emph>. To create a new category, type a name, and then click <emph>New</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/name\">የ ተመረጠውን በራሱ ጽሁፍ ምድብ ስም ማሳያ፡ የምድቡን ስም ለመቀየር አዲስ ስም ይጻፉ እና ከዛ ይጫኑ <emph>እንደገና መሰየሚያ</emph>. አዲስ ምድብ ለ መፍጠር ስም ይጻፉ እና ከዛ ይጫኑ <emph>አዲስ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/name\">የ ተመረጠውን በራሱ ጽሁፍ ምድብ ስም ማሳያ፡ የምድቡን ስም ለመቀየር አዲስ ስም ይጻፉ እና ከዛ ይጫኑ <emph> እንደገና መሰየሚያ </emph> አዲስ ምድብ ለ መፍጠር ስም ይጻፉ እና ከዛ ይጫኑ <emph> አዲስ </emph></ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/editcategories/pathlb\">Displays the current path to the directory where the selected AutoText category files are stored. If you are creating an AutoText category, select where you want to store the category files.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/pathlb\">ማሳያ የ አሁኑን መንገድ ዳይሬክቶሪ እርስዎ የ መረጡትን በራሱ ጽሁፍ ምድብ ፋይል የሚጠራቀምበትን: እርስዎ የሚፈጥሩ ከሆነ የ በራሱ ጽሁፍ ምድብ: ይምረጡ እርስዎ የ ምድብ ፋይሎች የት እንደሚጠራቀሙ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/pathlb\">ማሳያ የ አሁኑን መንገድ ዳይሬክቶሪ እርስዎ የ መረጡትን በራሱ ጽሁፍ ምድብ ፋይል የሚጠራቀምበትን: እርስዎ የሚፈጥሩ ከሆነ የ በራሱ ጽሁፍ ምድብ: ይምረጡ እርስዎ የ ምድብ ፋይሎች የት እንደሚጠራቀሙ </ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"par_id3154560\n"
"help.text"
msgid "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">Tips for working with bibliography entries</link>."
-msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">በ ጽሁፎች ዝርዝር ማስገቢያ እንዴት እንደሚሰሩ ጠቃሚ ምክር</link>."
+msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">በ ጽሁፎች ዝርዝር ማስገቢያ እንዴት እንደሚሰሩ ጠቃሚ ምክር</link>"
#: 02140000.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id3151184\n"
"help.text"
msgid "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\".uno:FieldDialog\">Opens a dialog where you can edit the properties of a field. Click in front of a field, and then choose this command.</ahelp> In the dialog, you can use the arrow buttons to move to the previous or the next field. </variable></variable>"
-msgstr "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\".uno:FieldDialog\">ንግግር መክፈቻ እርስዎ የ ባህሪዎችን ሜዳ ሊያርሙ የሚችሉበት: ይጫኑ ከ ሜዳው ፊት ለ ፊት: እና ከዛ ይምረጡ ይህን ትእዛዝ</ahelp> በ ንግግር ውስጥ: እርስዎ መጠቀም ይችላሉ የ ቀስት ቁልፍ በ መጠቀም ቀደም ወዳለው ወይንም ወደሚቀጥለው ሜዳ ለ መንቀሳቀስ </variable></variable>"
+msgstr "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\".uno:FieldDialog\">እርስዎ የ ባህሪዎችን ሜዳ ሊያርሙ የሚችሉበት ንግግር መክፈቻ: ይጫኑ ከ ሜዳው ፊት ለ ፊት: እና ከዛ ይምረጡ ይህን ትእዛዝ </ahelp> በ ንግግር ውስጥ: እርስዎ መጠቀም ይችላሉ የ ቀስት ቁልፍ በ መጠቀም ቀደም ወዳለው ወይንም ወደሚቀጥለው ሜዳ ለ ማንቀሳቀስ </variable></variable>"
#: 02140000.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3149036\n"
"help.text"
msgid "If you click in front of a \"sender\" type field, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>User data</emph></link> dialog opens."
-msgstr "ከ ፊት ለ ፊት ከ ተጫኑ ከ \"ላኪው\" አይነት ሜዳ እና ከዛ ይምረጡ <item type=\"menuitem\">ማረሚያ - ሜዳዎች</item>, የ <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>የ ተጠቃሚ ዳታ</emph></link> ንግግር ይከፈታል"
+msgstr "ከ ፊት ለ ፊት ከ ተጫኑ ከ \"ላኪው\" አይነት ሜዳ እና ከዛ ይምረጡ <item type=\"menuitem\"> ማረሚያ - ሜዳዎች </item> የ <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph> ተጠቃሚ ዳታ </emph></link> ንግግር ይከፈታል"
#: 02140000.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"hd_id3148785\n"
"help.text"
msgid "Macro name"
-msgstr "የ Macro ስም"
+msgstr "የ ማክሮስ ስም"
#: 02140000.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"par_id3148798\n"
"help.text"
msgid "Displays the name of the macro assigned to the selected field."
-msgstr "ለ ተመረጠው ሜዳ የ ተመደበውን የ macro ስም ማሳያ"
+msgstr "ለ ተመረጠው ሜዳ የ ተመደበውን የ ማክሮስ ስም ማሳያ"
#: 02140000.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3149097\n"
"help.text"
msgid "<variable id=\"footnote_endnote_text\"><variable id=\"fusstext\"><ahelp hid=\".uno:EditFootnote\">Edits the selected footnote or endnote anchor. Click in front of the footnote or endnote, and then choose this command.</ahelp> </variable></variable>"
-msgstr "<variable id=\"footnote_endnote_text\"><variable id=\"fusstext\"><ahelp hid=\".uno:EditFootnote\">ማረሚያ የ ተመረጠውን የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ ማስቆሚያ፡ ይጫኑ ከ ግርጌ ማስታወሻ ወይንም ከ መጨረሻ ማስታወሻ በፊት እና ከዛ ይምረጡ ይህን ትእዛዝ</ahelp> </variable></variable>"
+msgstr "<variable id=\"footnote_endnote_text\"><variable id=\"fusstext\"><ahelp hid=\".uno:EditFootnote\">ማረሚያ የ ተመረጠውን የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ ማስቆሚያ: ይጫኑ ከ ግርጌ ማስታወሻ ወይንም ከ መጨረሻ ማስታወሻ በፊት እና ከዛ ይምረጡ ይህን ትእዛዝ </ahelp> </variable></variable>"
#: 02150000.xhp
msgctxt ""
@@ -2950,7 +2950,7 @@ msgctxt ""
"par_id3149823\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">Edit the index entry if necessary. When you modify the index entry, the new text only appears in the index, and not at the index entry anchor in the document. </ahelp> For example, you can enter an index with comments such as \"Basics, see also General\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">የ ማውጫ ማስገቢያ ማረሚያ አስፈላጊ ከሆነ: እርስዎ የ ማውጫ ማስገቢያ በሚያሻሽሉ ጊዜ: አዲሱ ጽሁፍ የሚታየው በ ማውጫ ውስጥ ብቻ ነው: እና በ ማውጫ ማስገቢያ ማስቆሚያ ውስጥ አይደለም በ ሰድ ውስጥ </ahelp> ለምሳሌ: እርስዎ ማስገባት ይችላሉ ማውጫ በ አስተያየቶች እንደ \"መሰረታዊ: ይህን ይመልከቱ ባጠቃላይ\"."
+msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">የ ማውጫ ማስገቢያ ማረሚያ አስፈላጊ ከሆነ: እርስዎ የ ማውጫ ማስገቢያ በሚያሻሽሉ ጊዜ: አዲሱ ጽሁፍ የሚታየው በ ማውጫ ውስጥ ብቻ ነው: እና በ ማውጫ ማስገቢያ ማስቆሚያ ውስጥ አይደለም በ ሰድ ውስጥ </ahelp> ለምሳሌ: እርስዎ ማስገባት ይችላሉ ማውጫ በ አስተያየቶች እንደ \"መሰረታዊ: ይህን ይመልከቱ ባጠቃላይ\""
#: 02160000.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"par_id3155902\n"
"help.text"
msgid "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Changes the properties of sections defined in your document.</ahelp> To insert a section, select text or click in your document, and then choose <emph>Insert - Section</emph>.</variable>"
-msgstr "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">በ እርስዎ ሰነድ ውስጥ የ ተገለጸውን ክፍል ባህሪዎች መቀየሪያ </ahelp> ክፍል ለ ማስገባት: ይምረጡ ጽሁፍ ወይንም በ እርስዎ ሰነድ ላይ ይጫኑ: እና ከዛ ይምረጡ <emph> ማስገቢያ - ክፍል </emph>.</variable>"
+msgstr "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">በ እርስዎ ሰነድ ውስጥ የ ተገለጸውን ክፍል ባህሪዎች መቀየሪያ </ahelp> ክፍል ለ ማስገባት: ይምረጡ ጽሁፍ ወይንም በ እርስዎ ሰነድ ላይ ይጫኑ: እና ከዛ ይምረጡ <emph> ማስገቢያ - ክፍል </emph></variable>"
#: 02170000.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"par_id3151310\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a <emph>DDE </emph>link. Select this check box, and then enter the <emph>DDE </emph>command that you want to use. The <emph>DDE</emph> option is only available if the <emph>Link</emph> check box is selected.</ahelp>"
-msgstr "<ahelp hid=\".\">መፍጠሪያ የ <emph>DDE </emph>አገናኝ: ምልክት ማድረጊያ ሳጥን ይምረጡ: እና ከዛ ያስገቡ የ <emph>DDE </emph>ትእዛዝ እርስዎ መጠቀም የሚፈልጉትን: የ <emph>DDE</emph> ምርጫ ዝግጁ የሚሆነው የ <emph>አገናኝ</emph> ሳጥን ምልክት ከ ተመረጠ ነው</ahelp>"
+msgstr "<ahelp hid=\".\">መፍጠሪያ የ <emph> DDE </emph> አገናኝ: ምልክት ማድረጊያ ሳጥን ይምረጡ: እና ከዛ ያስገቡ የ <emph> DDE </emph> ትእዛዝ እርስዎ መጠቀም የሚፈልጉትን: የ <emph> DDE </emph> ምርጫ ዝግጁ የሚሆነው የ <emph> አገናኝ </emph> ሳጥን ምልክት ከ ተመረጠ ነው </ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3149098\n"
"help.text"
msgid "For example, to insert a section named \"Section1\" from a $[officename] text document abc.odt as a DDE link, use the command: \"soffice x:\\abc.odt Section1\". To insert the contents of the first cell from a MS Excel spreadsheet file called \"abc.xls\", use the command: \"excel x:\\[abc.xls]Sheet1 z1s1\". You can also copy the elements that you want to insert as a DDE link, and then <emph>Edit - Paste Special</emph>. You can then view the DDE command for the link, by selecting the contents and choosing <emph>Edit - Fields</emph>."
-msgstr "ለምሳሌ ለማስገባት የ ተሰየመ ክፍል \"ክፍል1\" ከ $[officename] ጽሁፍ ሰነድ ውስጥ abc.odt እንደ የ DDE አገናኝ: ይህን ትእዛዝ ይጠቀሙ: \"soffice x:\\abc.odt Section1\". ይዞታዎች ለማስገባት የ መጀመሪያውን ክፍል ከ MS Excel ሰንጠረዥ ፋይል የሚባል \"abc.xls\", ይህን ትእዛዝ ይጠቀሙ: \"excel x:\\[abc.xls]Sheet1 z1s1\". እርስዎ እንዲሁም አካሎቹን ኮፒ ማድረግ ይችላሉ እርስዎ ማስገባት የሚፈልጉትን እንደ የ DDE አገናኝ: እና ከዛ <emph>ማረሚያ - የ ተለየ መለጠፊያ</emph>. እርስዎ ከዛ መመልከት ይችላሉ የ DDE ትእዛዝ ለ አገናኝ: በ መምረጥ ይዞታዎችን እና በ መምረጥ <emph>ሜዳዎች – ማረሚያ</emph>."
+msgstr "ለምሳሌ ለማስገባት የ ተሰየመ ክፍል \"ክፍል1\" ከ $[officename] ጽሁፍ ሰነድ ውስጥ abc.odt እንደ የ DDE አገናኝ: ይህን ትእዛዝ ይጠቀሙ: \"soffice x:\\abc.odt Section1\". ይዞታዎች ለማስገባት የ መጀመሪያውን ክፍል ከ MS Excel ሰንጠረዥ ፋይል የሚባል \"abc.xls\", ይህን ትእዛዝ ይጠቀሙ: \"excel x:\\[abc.xls]Sheet1 z1s1\". እርስዎ እንዲሁም አካሎቹን ኮፒ ማድረግ ይችላሉ እርስዎ ማስገባት የሚፈልጉትን እንደ የ DDE አገናኝ: እና ከዛ <emph> ማረሚያ - የ ተለየ መለጠፊያ </emph> እርስዎ ከዛ መመልከት ይችላሉ የ DDE ትእዛዝ ለ አገናኝ: በ መምረጥ ይዞታዎችን እና በ መምረጥ <emph> ሜዳዎች – ማረሚያ </emph>"
#: 04020100.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_id3156274\n"
"help.text"
msgid "<ahelp hid=\".\">Locate the file that you want to insert as a link, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "Another example would be to create the field variable \"x\" and set its value to 1. Then specify a condition based on this variable for hiding a section, such as: \"x eq 1\". If you want to display the section, set the value of the variable \"x\" to \"0\"."
-msgstr "ሌላ ለምሳሌ ተለዋዋጭ ሜዳ መፍጠሪያ \"x\" እና ዋጋውን ያሰናዱ ወደ 1. እና ከዛ ዋጋውን ይወስኑ ተለዋዋጭ ክፍሉን ለ መደበቅ እንደ : \"x eq 1\". ክፍሉን ማሳየት ከፈለጉ: የ ተለዋዋጭ ዋጋውን ያሰናዱ \"x\" ወደ \"0\"."
+msgstr "ሌላ ለምሳሌ ተለዋዋጭ ሜዳ መፍጠሪያ \"x\" እና ዋጋውን ያሰናዱ ወደ 1. እና ከዛ ዋጋውን ይወስኑ ተለዋዋጭ ክፍሉን ለ መደበቅ እንደ : \"x እኩል ነው 1\". ክፍሉን ማሳየት ከፈለጉ: የ ተለዋዋጭ ዋጋውን ያሰናዱ \"x\" ወደ \"0\"."
#: 04020100.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_id3153677\n"
"help.text"
msgid "To jump to a specific bookmark, press F5 to open the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link>, click the plus sign (+) next to the<emph> Bookmark</emph> entry, and then double-click the bookmark."
-msgstr "ወደ ተወሰነ የ ምልክት ማድረጊያ ለ መዝለል: ይጫኑ F5 ለ መክፈት <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">መቃኛ</link>, ይጫኑ የ መደመሪያ ምልክት (+) አጠገብ ያለውን ከ <emph> ምልክት ማድረጊያ</emph> ማስገቢያ: እና ከዛ ሁለት ጊዜ-ይጫኑ ምልክት ማድረጊያውን"
+msgstr "ወደ ተወሰነ የ ምልክት ማድረጊያ ለ መዝለል: ይጫኑ F5 ለ መክፈት <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"> መቃኛ </link> ይጫኑ የ መደመሪያ ምልክት (+) አጠገብ ያለውን ከ <emph> ምልክት ማድረጊያ </emph> ማስገቢያ: እና ከዛ ሁለት ጊዜ-ይጫኑ ምልክት ማድረጊያውን"
#: 04040000.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. The lower list contains all of the bookmarks in the current document. To delete a bookmark, select it in the list, and then click <emph>Delete</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">እርስዎ መፍጠር የሚፈልጉትን የ ምልክት ማድረጊያ ስም ይጻፉ: የ ታችኛው ዝርዝር የያዘው ሁሉንም ምልክት ማድረጊያዎች ነው በ አሁኑ ሰነድ ውስጥ: ምልክት ማድረጊያውን ለ ማጥፋት: ይምረጡ ከ ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph>ማጥፊያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">እርስዎ መፍጠር የሚፈልጉትን የ ምልክት ማድረጊያ ስም ይጻፉ: የ ታችኛው ዝርዝር የያዘው ሁሉንም ምልክት ማድረጊያዎች ነው በ አሁኑ ሰነድ ውስጥ: ምልክት ማድረጊያውን ለ ማጥፋት: ይምረጡ ከ ዝርዝር ውስጥ እና ከዛ ይጫኑ <emph> ማጥፊያ </emph></ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -5446,7 +5446,7 @@ msgctxt ""
"par_id3154190\n"
"help.text"
msgid "<ahelp hid=\"HID_FIELD_INSERT\">Inserts the selected field at the current cursor position in the document. To close the dialog, click the <emph>Close </emph>button.</ahelp>"
-msgstr "<ahelp hid=\"HID_FIELD_INSERT\">መጠቆሚያው አሁን ባለበት ቦታ የ ተመረጠውን ሜዳ በ ሰነዱ ውስጥ ማስገቢያ: ንግግሩን ለ መዝጋት ይጫኑ <emph>መዝጊያ</emph>ቁልፍ</ahelp>"
+msgstr "<ahelp hid=\"HID_FIELD_INSERT\">መጠቆሚያው አሁን ባለበት ቦታ የ ተመረጠውን ሜዳ በ ሰነዱ ውስጥ ማስገቢያ: ንግግሩን ለ መዝጋት ይጫኑ <emph> መዝጊያ </emph> ቁልፍ </ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -5502,7 +5502,7 @@ msgctxt ""
"par_id3153672\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/type\">Lists the available field types. To add a field to your document, click a field type, click a field in the <emph>Select </emph>list, and then click <emph>Insert</emph>.</ahelp> The following fields are available:"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/type\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ <emph>ምርጫ </emph>ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp> የሚቀጥሉት ሜዳዎች ዝግጁ ይሆናሉ:"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/type\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ <emph> ይምረጡ </emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph> </ahelp> የሚቀጥሉት ሜዳዎች ዝግጁ ይሆናሉ:"
#: 04090001.xhp
msgctxt ""
@@ -5566,7 +5566,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "Inserts the current date. You can insert the date as a fixed field - <item type=\"literal\">Date (fixed)</item> - that does not change, or as a dynamic field - <item type=\"literal\">Date</item> - that it is updated automatically. To manually update the <item type=\"literal\">Date</item> field, press F9."
-msgstr "የ አሁኑን ቀን ማስገቢያ፡ ቀን እንደ የተወሰነ ሜዳ ማስገባት ይችላሉ - <item type=\"literal\">ቀን (የተወሰነ)</item> - የማይቀያየር ወይንም እንደ dynamic ሜዳ - <item type=\"literal\">ቀን</item> - ራሱ በራሱ የሚሻሻል፡ በ እጅ ለማሻሻል የ <item type=\"literal\">ቀን</item> ሜዳ ይጫኑ F9."
+msgstr "የ አሁኑን ቀን ማስገቢያ፡ ቀን እንደ የተወሰነ ሜዳ ማስገባት ይችላሉ - <item type=\"literal\"> ቀን (የተወሰነ) </item> - የማይቀያየር ወይንም እንደ ሀይለኛ ሜዳ - <item type=\"literal\">ቀን</item> - ራሱ በራሱ የሚሻሻል፡ በ እጅ ለማሻሻል የ <item type=\"literal\"> ቀን </item> ሜዳ ይጫኑ F9."
#: 04090001.xhp
msgctxt ""
@@ -5614,7 +5614,7 @@ msgctxt ""
"par_id3146341\n"
"help.text"
msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><emph>$[officename] - User Data</emph></link>."
-msgstr "የ ተጠቃሚ ዳታ ማስገቢያ ሜዳዎች መቀየር ይችላሉ: የ ተጠቃሚ-ዳታ የሚታየውን በመምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><emph>$[officename] - የ ተጠቃሚ ዳታ </emph></link>"
+msgstr "የ ተጠቃሚ ዳታ ማስገቢያ ሜዳዎች መቀየር ይችላሉ: የ ተጠቃሚ-ዳታ የሚታየውን በመምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><emph>$[officename] - የ ተጠቃሚ ዳታ </emph></link>"
#: 04090001.xhp
msgctxt ""
@@ -5662,7 +5662,7 @@ msgctxt ""
"par_id3154340\n"
"help.text"
msgid "Inserts the current time. You can insert the time as a fixed field - <item type=\"literal\">Time (fixed)</item> - that does not change, or as a dynamic field - <item type=\"literal\">Time</item> - that it is updated automatically. To manually update the <item type=\"literal\">Time</item> field, press F9."
-msgstr "የ አሁኑን ሰአት ማስገቢያ፡ ሰአት እንደ ተወሰነ ሜዳ ማስገባት ይችላሉ - <item type=\"literal\">ሰአት (የተወሰነ)</item> - የማይቀየር ወይንም እንደ dynamic ሜዳ - <item type=\"literal\">ሰአት</item> - ራሱ በራሱ የሚሻሻል፡ በ እጅ ለማሻሻል የ <item type=\"literal\">ሰአት</item> ሜዳ ይጫኑ F9."
+msgstr "የ አሁኑን ሰአት ማስገቢያ፡ ሰአት እንደ ተወሰነ ሜዳ ማስገባት ይችላሉ - <item type=\"literal\"> ሰአት (የተወሰነ) </item> - የማይቀየር ወይንም እንደ ሀይለኛ ሜዳ - <item type=\"literal\"> ሰአት </item> - ራሱ በራሱ የሚሻሻል: በ እጅ ለማሻሻል የ <item type=\"literal\"> ሰአት </item> ሜዳ ይጫኑ F9."
#: 04090001.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id3150678\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ <emph>አይነት </emph>ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ <emph> አይነት </emph> ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -5814,7 +5814,7 @@ msgctxt ""
"par_id3145613\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/format\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/format\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/format\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ </ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "እርስዎ ከ መረጡ \"የ ምእራፍ ቁጥር ያለ መለያያ\" ለ ምእራፍ ሜዳ: መለያያዎች በ ምእራፍ ቁጥር የ ተገለጹት በ <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph> መሳሪያዎች - የ ቁጥር መስጫ ረቂቅ </emph></link> አይታይም"
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr "እርስዎ ከ መረጡ \"የ ምእራፍ ቁጥር ያለ መለያያ\" ለ ምእራፍ ሜዳ: መለያያዎች በ ምእራፍ ቁጥር የ ተገለጹትን በ <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </emph></link> አይታይም"
#: 04090001.xhp
msgctxt ""
@@ -5998,7 +5998,7 @@ msgctxt ""
"par_id4516129\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert.</ahelp> The following fields are available:"
-msgstr "<ahelp hid=\".\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ ምርጫ ዝርዝር ውስጥ: እና ከዛ ይጫኑ </ahelp>ማስገቢያ የሚቀጥሉት ሜዳዎች ዝግጁ ይሆናሉ:"
+msgstr "<ahelp hid=\".\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ ምርጫ ዝርዝር ውስጥ: እና ከዛ ይጫኑ </ahelp> ማስገቢያ የሚቀጥሉት ሜዳዎች ዝግጁ ይሆናሉ:"
#: 04090002.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"par_id3149556\n"
"help.text"
msgid "In an HTML document, reference fields entered this way will be ignored. For the target in HTML documents, you have to <link href=\"text/swriter/01/04040000.xhp\" name=\"insert a bookmark\">insert a bookmark</link>."
-msgstr "በ HTML ሰነድ ውስጥ: ማመሳከሪያ ሜዳዎች በዚህ ዘዴ የሚገቡት ይተዋሉ: ለታለመው የ HTML ሰነዶች: እርስዎ የ <link href=\"text/swriter/01/04040000.xhp\" name=\"insert a bookmark\">ምልክት ማድረጊያ ማስገባት አለብዎት</link>."
+msgstr "በ HTML ሰነድ ውስጥ: ማመሳከሪያ ሜዳዎች በዚህ ዘዴ የሚገቡት ይተዋሉ: ለታለመው የ HTML ሰነዶች: እርስዎ የ <link href=\"text/swriter/01/04040000.xhp\" name=\"insert a bookmark\"> ምልክት ማድረጊያ ማስገባት አለብዎት </link>"
#: 04090002.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"par_id3149847\n"
"help.text"
msgid "In an HTML document, reference fields entered this way will be ignored. For referenced fields in HTML documents, you have to <link href=\"text/shared/01/05020400.xhp\" name=\"insert a hyperlink\">insert a hyperlink</link>."
-msgstr "በ HTML ሰነድ ውስጥ: ማመሳከሪያ ሜዳዎች በዚህ ዘዴ የሚገቡት ይተዋሉ: ለተመሳከረው ሜዳዎች የ HTML ሰነዶች: እርስዎ የ <link href=\"text/shared/01/05020400.xhp\" name=\"insert a hyperlink\">hyperlink ማስገባት አለብዎት</link>."
+msgstr "በ HTML ሰነድ ውስጥ: ማመሳከሪያ ሜዳዎች በዚህ ዘዴ የሚገቡት ይተዋሉ: ለተመሳከረው ሜዳዎች የ HTML ሰነዶች: እርስዎ የ <link href=\"text/shared/01/05020400.xhp\" name=\"insert a hyperlink\">hyperlink ማስገባት አለብዎት </link>"
#: 04090002.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3154772\n"
"help.text"
msgid "References are fields. To remove a reference, delete the field. If you set a longer text as a reference and you do not want to reenter it after deleting the reference, select the text and copy it to the clipboard. You can then reinsert it as \"unformatted text\" at the same position using the command <emph>Edit - Paste special</emph>. The text remains intact while the reference is deleted."
-msgstr "ማመሳከሪያዎች ሜዳዎች ናቸው: ማመሳከሪያ ለማስወገድ: ሜዳውን ያጥፉ: እርስዎ ረጅም ጽሁፍ እንደ ማመሳከሪያ አስገብተው ከ ነበረ እና ማመሳከሪያውን ካጠፉ በኋላ እንደገና ማስገባት ከፈለጉ: ጽሁፉን ይምረጡ እና ኮፒ ያድርጉት ወደ ቁራጭ ሰሌዳ: እና ከዛ እርስዎ እንደገና ሊያስገቡት ይችላሉ እንደ \"unformatted text\" በ ተመሳሳይ ቦታ ትእዛዝ በ መጠቀም <emph>ማረሚያ - የተለየ መለጠፊያ</emph>. ጽሁፉ እንደ ነበር ይቀራል ማመሳከሪያው ግን ይጠፋል"
+msgstr "ማመሳከሪያዎች ሜዳዎች ናቸው: ማመሳከሪያ ለማስወገድ: ሜዳውን ያጥፉ: እርስዎ ረጅም ጽሁፍ እንደ ማመሳከሪያ አስገብተው ከ ነበረ እና ማመሳከሪያውን ካጠፉ በኋላ እንደገና ማስገባት ከፈለጉ: ጽሁፉን ይምረጡ እና ኮፒ ያድርጉት ወደ ቁራጭ ሰሌዳ: እና ከዛ እርስዎ እንደገና ሊያስገቡት ይችላሉ እንደ \"unformatted text\" በ ተመሳሳይ ቦታ ትእዛዝ በ መጠቀም <emph> ማረሚያ - የተለየ መለጠፊያ </emph> ጽሁፉ እንደ ነበር ይቀራል ማመሳከሪያው ግን ይጠፋል"
#: 04090002.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id2171086\n"
"help.text"
msgid "In the <emph>Insert reference to</emph> list, click the format that you want to use."
-msgstr "ከ <emph>ማመሳከሪያ ማስገቢያ ወደ</emph> ዝርዝር: ይጫኑ መጠቀም የሚፈልጉትን አቀራረብ"
+msgstr "ከ <emph> ማመሳከሪያ ማስገቢያ ወደ </emph> ዝርዝር: ይጫኑ መጠቀም የሚፈልጉትን አቀራረብ"
#: 04090002.xhp
msgctxt ""
@@ -6446,7 +6446,7 @@ msgctxt ""
"par_id3156032\n"
"help.text"
msgid "In a master document, targets that are in different sub-documents are not displayed in the<emph> Selection</emph> list. If you want to insert a reference to the target, you must type the path and the name in the <emph>Name </emph>box."
-msgstr "በ ዋናው ሰነድ ውስጥ: ኢላማዎች የተለዩ ንዑስ-ሰነዶች አይታዩም በ<emph> ምርጫ</emph> ዝርዝር ውስጥ: እርስዎ ማስገባት ከ ፈለጉ ማመሳከሪያ ወደ ኢላማው: እርስዎ መጻፍ አለብዎት ስም እና መንገድ በ <emph>ስም </emph>ሳጥን ውስጥ"
+msgstr "በ ዋናው ሰነድ ውስጥ: ኢላማዎች የተለዩ ንዑስ-ሰነዶች አይታዩም በ <emph> ምርጫ </emph> ዝርዝር ውስጥ: እርስዎ ማስገባት ከ ፈለጉ ማመሳከሪያ ወደ ኢላማው: እርስዎ መጻፍ አለብዎት ስም እና መንገድ በ <emph> ስም </emph> ሳጥን ውስጥ"
#: 04090002.xhp
msgctxt ""
@@ -6502,7 +6502,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "Depending on the field type that you select, you can assign conditions to certain functions. For example, you can define a field that executes a macro when you click the field in the document, or a condition that, when met, hides a field. You can also define placeholder fields that insert graphics, tables, frames and other objects into your document when needed."
-msgstr "እርስዎ እንደመረጡት ሜዳ አይነት ይለያያል: እርስዎ ሁኔታዎችን መመደብ ይችላሉ ለ ተወሰኑ ተግባሮች: ለምሳሌ: እርስዎ ሜዳ መግለጽ ይችላሉ macro የሚፈጽም እርስዎ በ ሰነድ ውስጥ ሜዳ በሚጫኑ ጊዜ: ወይንም ሁኔታው ሲሟላ ሜዳ የሚደብቅ: እንዲሁም እርስዎ መግለጽ ይችላሉ ባታ ያዢ ሜዳዎች ንድፍ: ሰንጠረዦች: ክፈፎች: እና ሌሎች እቃዎች ወደ እርስዎ ሰነድ ውስጥ በሚያስፈልግ ጊዜ እንዲያስገቡ"
+msgstr "እርስዎ እንደመረጡት ሜዳ አይነት ይለያያል: እርስዎ ሁኔታዎችን መመደብ ይችላሉ ለ ተወሰኑ ተግባሮች: ለምሳሌ: እርስዎ ሜዳ መግለጽ ይችላሉ ማክሮስ የሚፈጽም እርስዎ በ ሰነድ ውስጥ ሜዳ በሚጫኑ ጊዜ: ወይንም ሁኔታው ሲሟላ ሜዳ የሚደብቅ: እንዲሁም እርስዎ መግለጽ ይችላሉ ባታ ያዢ ሜዳዎች ንድፍ: ሰንጠረዦች: ክፈፎች: እና ሌሎች እቃዎች ወደ እርስዎ ሰነድ ውስጥ በሚያስፈልግ ጊዜ እንዲያስገቡ"
#: 04090003.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"par_id3149881\n"
"help.text"
msgid "Inserts text if a certain <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link> is met. For example, enter \"sun eq 1\" in the <emph>Condition</emph> box, and then the text that you want to insert when the variable \"sun\" equals \"1\" in the <emph>Then </emph>box. If you want, you can also enter the text that you want to display when this condition is not met in the <emph>Else</emph> box. To define the variable \"sun\", click the <link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\"><emph>Variables</emph></link> tab, select \"Set variable\", type \"sun\" in the<emph> Name</emph> box, and its value in the<emph> Value</emph> box."
-msgstr "ጽሁፍ ማስገቢያ የሚፈለገው <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">ሁኔታ</link> ሲሟላ ነው: ለምሳሌ: ያስገቡ \"sun eq 1\" በ <emph> ሁኔታ </emph> ሳጥን ውስጥ: እና ከዛ እርስዎ ማስገባት የሚፈልጉት ጽሁፍ ተለዋዋጭ \"sun\" እኩል ይሆናል \"1\" በ <emph> ከዛ </emph> ሳጥን ውስጥ: እርስዎ ከ ፈለጉ: እርስዎ ጽሁፍ ማስገባት ይችላሉ እንዲታይ ይህ ሁኔታ በማይሟላ ጊዜ: በ <emph> ያለ በለዚያ </emph> ሳጥን ውስጥ: ተለዋዋጭ ለ መግለጽ \"sun\", ይጫኑ የ <link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\"><emph> ተለዋዋጭ </emph></link> tab, ይምረጡ \"ተለዋዋጭ ማሰናጃ\", አይነት \"sun\" በ <emph> ስም </emph> ሳጥን ውስጥ: እና ከዛ ዋጋውን በ <emph> ዋጋ </emph> ሳጥን ውስጥ:"
+msgstr "ጽሁፍ ማስገቢያ የሚፈለገው <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">ሁኔታ</link> ሲሟላ ነው: ለምሳሌ: ያስገቡ \"sun eq 1\" በ <emph> ሁኔታ </emph> ሳጥን ውስጥ: እና ከዛ እርስዎ ማስገባት የሚፈልጉት ጽሁፍ ተለዋዋጭ \"sun\" እኩል ይሆናል \"1\" በ <emph> ከዛ </emph> ሳጥን ውስጥ: እርስዎ ከ ፈለጉ: እርስዎ ጽሁፍ ማስገባት ይችላሉ እንዲታይ ይህ ሁኔታ በማይሟላ ጊዜ: በ <emph> ያለ በለዚያ </emph> ሳጥን ውስጥ: ተለዋዋጭ ለ መግለጽ \"sun\": ይጫኑ የ <link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\"><emph> ተለዋዋጭ </emph></link> tab, ይምረጡ \"ተለዋዋጭ ማሰናጃ\", አይነት \"sun\" በ <emph> ስም </emph> ሳጥን ውስጥ: እና ከዛ ዋጋውን በ <emph> ዋጋ </emph> ሳጥን ውስጥ:"
#: 04090003.xhp
msgctxt ""
@@ -6558,7 +6558,7 @@ msgctxt ""
"par_id3147564\n"
"help.text"
msgid "Inserts a text field that displays one item from a list. You can add, edit, and remove items, and change their order in the list. Click an <emph>Input list</emph> field in your document or press Ctrl+Shift+F9 to display the <link href=\"text/swriter/01/04090003.xhp\" name=\"Choose Item\"><emph>Choose Item</emph></link> dialog."
-msgstr "የ ጽሁፍ ሜዳ ማስገቢያ አንድ እቃ ከ ዝርዝር ውስጥ ለማሳየት: እርስዎ እቃዎች መጨመር: ማረም እና ማስወገድ ይችላሉ: እና ከዛ ቅደም ተከተላቸውን መቀየር ይችላሉ ከ ዝርዝር ውስጥ: ይጫኑ የ <emph>ዝርዝር ማስገቢያ</emph> ሜዳ በ እርስዎ ሰነድ ውስጥ ወይንም ይጫኑ Ctrl+Shift+F9 ለማሳየት የ <link href=\"text/swriter/01/04090003.xhp\" name=\"Choose Item\"><emph>እቃ መምረጫ</emph></link> ንግግር"
+msgstr "የ ጽሁፍ ሜዳ ማስገቢያ አንድ እቃ ከ ዝርዝር ውስጥ ለማሳየት: እርስዎ እቃዎች መጨመር: ማረም እና ማስወገድ ይችላሉ: እና ከዛ ቅደም ተከተላቸውን መቀየር ይችላሉ ከ ዝርዝር ውስጥ: ይጫኑ የ <emph> ዝርዝር ማስገቢያ </emph> ሜዳ በ እርስዎ ሰነድ ውስጥ ወይንም ይጫኑ Ctrl+Shift+F9 ለማሳየት የ <link href=\"text/swriter/01/04090003.xhp\" name=\"Choose Item\"><emph> እቃ መምረጫ </emph></link> ንግግር"
#: 04090003.xhp
msgctxt ""
@@ -6582,7 +6582,7 @@ msgctxt ""
"par_id3154691\n"
"help.text"
msgid "Execute macro"
-msgstr "macro ማስኬጃ"
+msgstr "ማክሮስ ማስኬጃ"
#: 04090003.xhp
msgctxt ""
@@ -6590,7 +6590,7 @@ msgctxt ""
"par_id3147515\n"
"help.text"
msgid "Inserts a text field that runs a macro when you click the field in the document. To assign a macro to the field, click the <emph>Macro</emph> button."
-msgstr "የ ጽሁፍ ሜዳ ማስገቢያ macro የሚያስኬድ እርስዎ በሚጫኑ ጊዜ ሜዳ በ ሰነድ ውስጥ: ወደ ሜዳ macro ለ መመደብ: ይጫኑ የ <emph> Macro </emph> ቁልፍ"
+msgstr "የ ጽሁፍ ሜዳ ማስገቢያ ማክሮስ የሚያስኬድ እርስዎ በሚጫኑ ጊዜ ሜዳ በ ሰነድ ውስጥ: ወደ ሜዳ ማክሮስ ለ መመደብ: ይጫኑ የ <emph> ማክሮስ </emph> ቁልፍ"
#: 04090003.xhp
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"par_id0902200804352213\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ </ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"par_id3146865\n"
"help.text"
msgid "You can also insert database fields in the <emph>Then </emph>and <emph>Else </emph>boxes using the format \"databasename.tablename.fieldname\"."
-msgstr "እርስዎ ማስገባት ይችላሉ የ ዳታቤዝ ሜዳዎች በ <emph>ከዛ </emph>እና <emph>የተለየ </emph>ሳጥኖች አቀራረብ በ መጠቀም \"የ ዳታቤዝ ስም.የ ሰንጠረዥ ስም.የ ሜዳ ስም\""
+msgstr "እርስዎ ማስገባት ይችላሉ የ ዳታቤዝ ሜዳዎች በ <emph> ከዛ </emph> እና <emph> የተለየ </emph> ሳጥኖች አቀራረብ በ መጠቀም \"የ ዳታቤዝ ስም.የ ሰንጠረዥ ስም.የ ሜዳ ስም\""
#: 04090003.xhp
msgctxt ""
@@ -6758,7 +6758,7 @@ msgctxt ""
"par_id3147084\n"
"help.text"
msgid "Select the macro that you want to run when the field is clicked."
-msgstr "ይምረጡ macro እርስዎ ማስኬድ የሚፈልጉትን: ሜዳውን በሚጫኑ ጊዜ"
+msgstr "ይምረጡ ማክሮስ እርስዎ ማስኬድ የሚፈልጉትን: ሜዳውን በሚጫኑ ጊዜ"
#: 04090003.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"hd_id3154384\n"
"help.text"
msgid "Macro name"
-msgstr "የ Macro ስም"
+msgstr "የ ማክሮስ ስም"
#: 04090003.xhp
msgctxt ""
@@ -6774,7 +6774,7 @@ msgctxt ""
"par_id3153351\n"
"help.text"
msgid "Displays the name of the selected macro."
-msgstr "የተመረጠውን macro ስም ማሳያ"
+msgstr "የተመረጠውን ማክሮስ ስም ማሳያ"
#: 04090003.xhp
msgctxt ""
@@ -6846,7 +6846,7 @@ msgctxt ""
"hd_id3148877\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 04090003.xhp
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"par_id3155912\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/macro\">Opens the <emph>Macro Selector</emph>, where you can choose the macro that will run when you click the selected field in the document.</ahelp> This button is only available for the \"Execute macro\" function field."
-msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/macro\">መክፈቻ የ <emph> Macro መራጭ </emph> እርስዎ macro የሚመርጡበት እና እርስዎ በ ሰነድ ውስጥ ሜዳ በሚጫኑ ጊዜ የሚሄድ </ahelp> ይህ ቁልፍ ዝግጁ የሚሆነው ለ \"macro መፈጸሚያ\" ተግባር ሜዳ ብቻ ነው"
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/macro\">መክፈቻ የ <emph> ማክሮስ መራጭ </emph> እርስዎ ማክሮስ የሚመርጡበት እና እርስዎ በ ሰነድ ውስጥ ሜዳ በሚጫኑ ጊዜ የሚሄድ </ahelp> ይህ ቁልፍ ዝግጁ የሚሆነው ለ \"ማክሮስ መፈጸሚያ\" ተግባር ሜዳ ብቻ ነው"
#: 04090003.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <emph>File - Properties</emph>."
-msgstr "የ ሰነድ መረጃ ሜዳዎች የያዙት መረጃ ስለ ሰነዱ ባህሪ ነው: እንደ ሰነዱ መቼ እንደ ተፈጠረ: የ ሰነዱን ባህሪዎች መመልከቻ አይነት: ይምረጡ <emph>ፋይል - ባህሪዎች</emph>."
+msgstr "የ ሰነድ መረጃ ሜዳዎች የያዙት መረጃ ስለ ሰነዱ ባህሪ ነው: እንደ ሰነዱ መቼ እንደ ተፈጠረ: የ ሰነዱን ባህሪዎች መመልከቻ አይነት: ይምረጡ <emph> ፋይል - ባህሪዎች </emph>"
#: 04090004.xhp
msgctxt ""
@@ -7070,7 +7070,7 @@ msgctxt ""
"par_id0902200804290053\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይምረጡ ከዝርዝር ውስጥ: እና ከዛ ይጫኑ ማስገቢያ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይምረጡ ከዝርዝር ውስጥ: እና ከዛ ይጫኑ ማስገቢያ </ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7254,7 +7254,7 @@ msgctxt ""
"par_id0902200804290272\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ <emph>አይነት </emph>ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ <emph> አይነት </emph> ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7270,7 +7270,7 @@ msgctxt ""
"par_id0902200804290382\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ </ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7374,7 +7374,7 @@ msgctxt ""
"par_id3150996\n"
"help.text"
msgid "Defines a variable and its value. You can change the value of a variable by clicking in front of the variable field, and then choosing <emph>Edit - Field</emph>."
-msgstr "ተለዋዋጭ እና ዋጋ መግለጫ: እርስዎ የ ተለዋዋጭ ዋጋ መቀየር ይችላሉ: ከ ተለዋዋጩ ሜዳ ፊት ለ ፊት በ መጫን እና ከዛ ይምረጡ <emph>ማረሚያ - ሜዳ</emph>."
+msgstr "ተለዋዋጭ እና ዋጋ መግለጫ: እርስዎ የ ተለዋዋጭ ዋጋ መቀየር ይችላሉ: ከ ተለዋዋጩ ሜዳ ፊት ለ ፊት በ መጫን እና ከዛ ይምረጡ <emph> ማረሚያ - ሜዳ </emph>"
#: 04090005.xhp
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"par_id3151255\n"
"help.text"
msgid "The variables are displayed in the <emph>Selection</emph> field. When you click the <emph>Insert</emph> button, the dialog<link href=\"text/swriter/01/04090100.xhp\" name=\"Input Field\"><emph>Input Field</emph></link> appears, where you can enter the new value or additional text as a remark."
-msgstr "ይህ ተለዋዋጭ ይታያል በ <emph>ምርጫ</emph> ሜዳ ውስጥ: እርስዎ ይጫኑ የ <emph> ማስገቢያ </emph> ቁልፍ: ይህ ንግግር <link href=\"text/swriter/01/04090100.xhp\" name=\"Input Field\"><emph> ሜዳ ማስገቢያ </emph></link> ይታያል: እርስዎ አዲስ ዋጋ ማስገባት የሚችሉበት ወይንም ተጨማሪ ጽሁፍ እንደ አስተያየት"
+msgstr "ይህ ተለዋዋጭ ይታያል በ <emph> ምርጫ </emph> ሜዳ ውስጥ: እርስዎ ይጫኑ የ <emph> ማስገቢያ </emph> ቁልፍ: ይህ ንግግር <link href=\"text/swriter/01/04090100.xhp\" name=\"Input Field\"><emph> ሜዳ ማስገቢያ </emph></link> ይታያል: እርስዎ አዲስ ዋጋ ማስገባት የሚችሉበት ወይንም ተጨማሪ ጽሁፍ እንደ አስተያየት"
#: 04090005.xhp
msgctxt ""
@@ -7526,7 +7526,7 @@ msgctxt ""
"par_id0903200802243892\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው ሜዳ መጠቀም የሚፈልጉትን አቀራረብ ይምረጡ ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" የ አቀራረብ ማስተካከያ ለ መግለጽ </ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7534,7 +7534,7 @@ msgctxt ""
"par_id3148886\n"
"help.text"
msgid "For user-defined fields, click the format that you want to apply in the <emph>Format </emph>list, or click \"Additional formats\" to define a custom format."
-msgstr "በ ተጠቃሚ-የሚገለጽ ሜዳ: ይጫኑ እርስዎ መጠቀም የሚፈልጉትን አቀራረብ ለ መፈጸም: በ <emph>አቀራረብ </emph>ዝርዝር ውስጥ: ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" አቀራረብ ለ መግለጽ"
+msgstr "በ ተጠቃሚ-የሚገለጽ ሜዳ: ይጫኑ እርስዎ መጠቀም የሚፈልጉትን አቀራረብ ለ መፈጸም: በ <emph> አቀራረብ </emph> ዝርዝር ውስጥ: ወይንም ይጫኑ \"ተጨማሪ አቀራረብ\" አቀራረብ ለ መግለጽ"
#: 04090005.xhp
msgctxt ""
@@ -7574,7 +7574,7 @@ msgctxt ""
"par_id7453535\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ <emph>አይነት </emph>ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር ለ ተመረጠው ሜዳ አይነት በ <emph> አይነት </emph> ዝርዝር ውስጥ: ሜዳ ለማስገባት ይጫኑ ሜዳ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7582,7 +7582,7 @@ msgctxt ""
"par_id3326822\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr "በፍጥነት ሜዳዎች ለማስገባት: ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ሁለት ጊዜ-ይጫኑ ሜዳውን"
+msgstr "በፍጥነት ሜዳዎች ለማስገባት: ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ሁለት ጊዜ-ይጫኑ ሜዳውን"
#: 04090005.xhp
msgctxt ""
@@ -7758,7 +7758,7 @@ msgctxt ""
"par_id090220080439090\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available field types. To add a field to your document, click a field type, click a field in the <emph>Select </emph>list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ <emph> ይምረጡ </emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዝግጁ የሆኑ የ ሜዳ አይነቶች ዝርዝር: ወደ እርስዎ ሰነድ ውስጥ ሜዳ ለመጨመር: ይጫኑ የ ሜዳ አይነት: ይጫኑ ሜዳ ከ <emph> ይምረጡ </emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"par_id3151257\n"
"help.text"
msgid "Inserts the contents of the database field that you specify in the <emph>Record Number</emph> box as a mail merge field if the <link href=\"text/swriter/01/04090200.xhp\" name=\"Condition\"><emph>Condition</emph></link> that you enter is met. Only records selected by a multiple selection in the data source view are considered."
-msgstr "እርስዎ የ ገለጹትን የ ዳታቤዝ ሜዳ ይዞታዎች ማስገቢያ: በ <emph>መዝገብ ቁጥር</emph> ሳጥን ውስጥ እንደ ደብዳቤ ማዋሀጃ ሜዳ: ይህ <link href=\"text/swriter/01/04090200.xhp\" name=\"Condition\"><emph>ሁኔታው</emph></link> እርስዎ ያስገቡት ሲሟላ: በ በርካታ ምርጫዎች የ ተመረጡ መዝገቦች ብቻ ከ ዳታ ምንጭ መመልከቻ ውስጥ ይታያሉ"
+msgstr "እርስዎ የ ገለጹትን የ ዳታቤዝ ሜዳ ይዞታዎች ማስገቢያ: በ <emph> መዝገብ ቁጥር </emph> ሳጥን ውስጥ እንደ ደብዳቤ ማዋሀጃ ሜዳ: ይህ <link href=\"text/swriter/01/04090200.xhp\" name=\"Condition\"><emph> ሁኔታ </emph></link> እርስዎ ያስገቡት ሲሟላ: በ በርካታ ምርጫዎች የ ተመረጡ መዝገቦች ብቻ ከ ዳታ ምንጭ መመልከቻ ውስጥ ይታያሉ"
#: 04090006.xhp
msgctxt ""
@@ -7814,7 +7814,7 @@ msgctxt ""
"par_id3152776\n"
"help.text"
msgid "Inserts the name of the database table selected in the <emph>Database selection </emph>box. The \"Database Name\" field is a global field, that is, if you insert a different database name in your document, the contents of all previously inserted \"Database Name\" fields are updated."
-msgstr "የተመረጠውን ዳታቤዝ ስም ማስገቢያ በ <emph>ዳታቤዝ ምርጫ </emph>ሳጥን ውስጥ: የ \"ዳታቤዝ ስም\" ሜዳ አለም አቀፍ ሜዳ ነው: እርስዎ የተለየ የ ዳታቤዝ ስም ካስገቡ በ እርስዎ ሰነድ ውስጥ: ሁሉም ቀደም ብለው የገቡ ይዞታዎች በሙሉ \"ዳታቤዝ ስም\" ሜዳዎች በሙሉ ይሻሻላሉ"
+msgstr "የተመረጠውን ዳታቤዝ ስም ማስገቢያ ከ <emph> ዳታቤዝ ምርጫ </emph> ሳጥን ውስጥ: የ \"ዳታቤዝ ስም\" ሜዳ አለም አቀፍ ሜዳ ነው: እርስዎ የተለየ የ ዳታቤዝ ስም ካስገቡ በ እርስዎ ሰነድ ውስጥ: ሁሉም ቀደም ብለው የገቡ ይዞታዎች በሙሉ \"ዳታቤዝ ስም\" ሜዳዎች በሙሉ ይሻሻላሉ"
#: 04090006.xhp
msgctxt ""
@@ -7918,7 +7918,7 @@ msgctxt ""
"par_id3149836\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddbpage/recnumber\">Enter the number of the record that you want to insert when the condition that you specify is met.</ahelp> The record number corresponds to the current selection in the data source view. For example, if you select the last 5 records in a database containing 10 records, the number of the first record will be 1, and not 6."
-msgstr "<ahelp hid=\"modules/swriter/ui/flddbpage/recnumber\">ያስገቡ የ መዝገብ ቁጥር እርስዎ ማስገባት የሚፈልጉትን እርስዎ የ ወሰኑት ሁኔታ ሲሟላ</ahelp> የ መዝገብ ቁጥር ተመሳሳይ ነው ከ አሁኑ ምርጫ ጋር ከ ዳታ ምንጭ መመልከቻ ጋር: ለምሳሌ: እርስዎ ከ መረጡ የ መጨረሻውን 5 መዝገብ ከ ዳታቤዝ ውስጥ ከ 10 መዝገቦች: የ መጀመሪያው መዝገብ ይሆናል 1, እና አይደለም 6."
+msgstr "<ahelp hid=\"modules/swriter/ui/flddbpage/recnumber\">ያስገቡ የ መዝገብ ቁጥር እርስዎ ማስገባት የሚፈልጉትን እርስዎ የ ወሰኑት ሁኔታ ሲሟላ </ahelp> የ መዝገብ ቁጥር ተመሳሳይ ነው ከ አሁኑ ምርጫ ጋር ከ ዳታ ምንጭ መመልከቻ ጋር: ለምሳሌ: እርስዎ ከ መረጡ የ መጨረሻውን 5 መዝገብ ከ ዳታቤዝ ውስጥ ከ 10 መዝገቦች: የ መጀመሪያው መዝገብ ይሆናል 1, እና አይደለም 6."
#: 04090006.xhp
msgctxt ""
@@ -8022,7 +8022,7 @@ msgctxt ""
"par_idN10803\n"
"help.text"
msgid "<ahelp hid=\".\">When you print a document that contains database fields, a dialog asks you if you want to print a form letter. If you answer Yes, the <link href=\"text/swriter/01/01150000.xhp\">Mail Merge</link> dialog opens where you can select the database records to print.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ ሰነድ በሚያትሙበት ጊዜ የ ዳታቤዝ ሜዳዎች የያዘ: ወዲያውኑ ንግግር ተከፍቶ ይጠይቆታል የ ፎርም ደብዳቤ ማተም ይፈልጉ እንደሆን: እርስዎ ከ መለሱ አዎ: የ <link href=\"text/swriter/01/01150000.xhp\">ደብዳቤ ማዋሀጃ</link> ንግግር ይከፈታል እርስዎ የ ዳታቤዝ መዝገቦች ለማተም የሚመርጡበት</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ ሰነድ በሚያትሙበት ጊዜ የ ዳታቤዝ ሜዳዎች የያዘ: ወዲያውኑ ንግግር ተከፍቶ ይጠይቆታል የ ፎርም ደብዳቤ ማተም ይፈልጉ እንደሆን: እርስዎ ከ መለሱ አዎ: የ <link href=\"text/swriter/01/01150000.xhp\"> ደብዳቤ ማዋሀጃ </link> ንግግር ይከፈታል እርስዎ የ ዳታቤዝ መዝገቦች ለማተም የሚመርጡበት </ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -8574,7 +8574,7 @@ msgctxt ""
"par_id3147500\n"
"help.text"
msgid "The condition is true if \"x\" is equal to 1."
-msgstr "ሁኔታው እውነት ነው ከሆነ \"x\" እኩል ከሆነ ከ 1."
+msgstr "ሁኔታው እውነት ይሆናል \"x\" እኩል ከሆነ ከ 1. ጋር"
#: 04090200.xhp
msgctxt ""
@@ -8590,7 +8590,7 @@ msgctxt ""
"par_id3150551\n"
"help.text"
msgid "The condition is true if \"x\" does not equal 1."
-msgstr "ሁኔታው እውነት ነው ከሆነ \"x\" እኩል አይደለም 1."
+msgstr "ሁኔታው እውነት ይሆናል \"x\" እኩል ካልሆነ ከ 1. ጋር"
#: 04090200.xhp
msgctxt ""
@@ -8606,7 +8606,7 @@ msgctxt ""
"par_id3146345\n"
"help.text"
msgid "The condition is true if \"x\" is a multiple of pi."
-msgstr "ሁኔታው እውነት ነው ከሆነ \"x\" is a multiple of pi."
+msgstr "ሁኔታው እውነት ይሆናል \"x\" ያለ ቀሪ አካፋይ ከሆነ ለ ፓይ"
#: 04090200.xhp
msgctxt ""
@@ -8614,7 +8614,7 @@ msgctxt ""
"par_id3149846\n"
"help.text"
msgid "To use comparative operators with strings, the operands must be bounded by double quotation marks:"
-msgstr "ማነፃፀሪያ ለ መጠቀም አንቀሳቃሽ ከ ሀረግ ጋር: operands በ ድርብ የ ቅንፍ ምልክቶች መከበብ አለበት:"
+msgstr "ማነፃፀሪያ ለ መጠቀም አንቀሳቃሽ ከ ሀረግ ጋር: ምልክት በ ድርብ የ ቅንፍ ምልክቶች መከበብ አለበት:"
#: 04090200.xhp
msgctxt ""
@@ -8686,7 +8686,7 @@ msgctxt ""
"par_id3150028\n"
"help.text"
msgid "You can include user data when you define conditions. To change your user data, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User data</emph>. User data must be entered in the form of strings. You can query the user data with \"==\" (EQ), \"!=\" (NEQ), or \"!\"(NOT)."
-msgstr "እርስዎ የ ተጠቃሚ ዳታ ማካተት ይችላሉ ሁኔታዎችን በሚገልጹ ጊዘ: የ ተጠቃሚ ዳታ ለ መቀየር ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ </emph> የ ተጠቃሚ ዳታ መግባት ያለበት በ ሀረግ ዘዴ ነው: እርስዎ መጠየቅ ይችላሉ የ ተጠቃሚ ዳታ በ \"==\" (እኩል ነው), \"!=\" (እኩል አይደለም), ወይንም \"!\"(አይደለም)"
+msgstr "እርስዎ የ ተጠቃሚ ዳታ ማካተት ይችላሉ ሁኔታዎችን በሚገልጹ ጊዘ: የ ተጠቃሚ ዳታ ለ መቀየር ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ </emph> የ ተጠቃሚ ዳታ መግባት ያለበት በ ሀረግ ዘዴ ነው: እርስዎ መጠየቅ ይችላሉ የ ተጠቃሚ ዳታ በ \"==\" (እኩል ነው), \"!=\" (እኩል አይደለም): ወይንም \"!\"(አይደለም)"
#: 04090200.xhp
msgctxt ""
@@ -9174,7 +9174,7 @@ msgctxt ""
"par_id3150232\n"
"help.text"
msgid "To display hidden paragraphs on the screen, you can choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>, and clear the <emph>Fields: Hidden paragraphs</emph> check box."
-msgstr "የተደበቁ አንቀጾች ለማሳየት በ መመልከቻው ላይ: እርስዎ መምረጥ ይችላሉ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - የ አቀራረብ እርዳታ </emph>, እና ከዛ ያጽዱ የ <emph> ሜዳዎች: የተደበቁ አንቀጾች </emph> ምልክት ማድረጊያ ሳጥን ውስጥ"
+msgstr "የተደበቁ አንቀጾች ለማሳየት በ መመልከቻው ላይ: እርስዎ መምረጥ ይችላሉ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - የ አቀራረብ እርዳታ </emph> እና ከዛ ያጽዱ የ <emph> ሜዳዎች: የተደበቁ አንቀጾች </emph> ምልክት ማድረጊያ ሳጥን ውስጥ"
#: 04090200.xhp
msgctxt ""
@@ -9238,7 +9238,7 @@ msgctxt ""
"par_id3150640\n"
"help.text"
msgid "In the <emph>Or </emph>box, type \"There are several pages\"."
-msgstr "በ <emph>ወይንም </emph>ሳጥን ውስጥ ይጻፉ \"በርካታ ገጾች አሉ\"."
+msgstr "በ <emph> ወይንም </emph> ሳጥን ውስጥ: ይጻፉ \"በርካታ ገጾች አሉ\""
#: 04090200.xhp
msgctxt ""
@@ -9246,7 +9246,7 @@ msgctxt ""
"par_id3153086\n"
"help.text"
msgid "Click <emph>Insert</emph>, and then click <emph>Close</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>, እና ከዚያም ይጫኑ <emph>መዝጊያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ከዛ ይጫኑ <emph> መዝጊያ </emph>"
#: 04090200.xhp
msgctxt ""
@@ -9262,7 +9262,7 @@ msgctxt ""
"par_id3155836\n"
"help.text"
msgid "Choose <emph>Insert - Field - More Fields</emph>, and then click the <emph>Variables</emph> tab."
-msgstr "ይምረጡ <emph>ማስገኒያ - ሜዳ - ተጨማሪ ሜዳዎች</emph> እና ከዛ ይጫኑ የ <emph>ተለዋዋጭ</emph> tab."
+msgstr "ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች </emph> እና ከዛ ይጫኑ የ <emph> ተለዋዋጭ </emph> tab."
#: 04090200.xhp
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"par_id3155109\n"
"help.text"
msgid "In the <emph>Type </emph>list, click \"Set Variable\"."
-msgstr "ከ <emph>አይነት </emph>ዝርዝር ውስጥ ይጫኑ \"ተለዋዋጭ ማሰናጃ\"."
+msgstr "ከ <emph> አይነት </emph> ዝርዝር ውስጥ ይጫኑ \"ተለዋዋጭ ማሰናጃ\""
#: 04090200.xhp
msgctxt ""
@@ -9278,7 +9278,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "In the<emph> Name</emph> box, type \"Profit\"."
-msgstr "ከ <emph> ስም</emph> ሳጥን ውስጥ ይጻፉ \"ትርፍ\"."
+msgstr "በ <emph> ስም </emph> ሳጥን ውስጥ ይጻፉ \"ትርፍ\""
#: 04090200.xhp
msgctxt ""
@@ -9286,7 +9286,7 @@ msgctxt ""
"par_id3147032\n"
"help.text"
msgid "In the<emph> Value</emph> box, type \"5000\"."
-msgstr "ከ <emph> ዋጋ</emph> ሳጥን ውስጥ ይጻፉ \"5000\"."
+msgstr "በ <emph> ዋጋ </emph> ሳጥን ውስጥ ይጻፉ \"5000\""
#: 04090200.xhp
msgctxt ""
@@ -9294,7 +9294,7 @@ msgctxt ""
"par_id3152974\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: 04090200.xhp
msgctxt ""
@@ -9318,7 +9318,7 @@ msgctxt ""
"par_id3156291\n"
"help.text"
msgid "In the <emph>Then</emph> box, type \"Target is not met\"."
-msgstr "እና <emph>ከዛ</emph> ሳጥን ውስጥ ይጻፉ \"ኢላማው ግብ አልመታም\"."
+msgstr "እና <emph> ከዛ </emph> ሳጥን ውስጥ ይጻፉ \"ኢላማው ግብ አልመታም\""
#: 04090200.xhp
msgctxt ""
@@ -9326,7 +9326,7 @@ msgctxt ""
"par_id3156317\n"
"help.text"
msgid "In the <emph>Or </emph>box, type \"Target is met\"."
-msgstr "በ <emph>ወይንም </emph>ሳጥን ውስጥ ይጻፉ \"ኢላማው ግብ መትቷል\"."
+msgstr "በ <emph> ወይንም </emph> ሳጥን ውስጥ: ይጻፉ \"ኢላማው ግብ መትቷል\""
#: 04090200.xhp
msgctxt ""
@@ -9334,7 +9334,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: 04090200.xhp
msgctxt ""
@@ -9374,7 +9374,7 @@ msgctxt ""
"par_id3148811\n"
"help.text"
msgid "In the <emph>Type </emph>list, click \"Mail merge fields\"."
-msgstr "ከ <emph>አይነት </emph>ዝርዝር ውስጥ ይጫኑ \"የ ደብዳቤ ማዋሀጃ ሜዳዎች\"."
+msgstr "ከ <emph> አይነት </emph> ዝርዝር ውስጥ ይጫኑ \"የ ደብዳቤ ማዋሀጃ ሜዳዎች\""
#: 04090200.xhp
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"par_id3148841\n"
"help.text"
msgid "In the<emph> Database selection</emph> box, double-click an address book, click \"First Name\", and then click<emph> Insert</emph>. Repeat for \"Last Name\"."
-msgstr "ከ<emph> ዳታቤዝ ምርጫዎች</emph> ሳጥን ውስጥ ሁለት-ጊዜ ይጫኑ በ አድራሻ ደብተር ላይ ይጫኑ \"የ መጀመሪያ ስም\" እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>. ይድገሙ ለ \"አባት ስም\""
+msgstr "ከ <emph> ዳታቤዝ ምርጫዎች </emph> ሳጥን ውስጥ ሁለት-ጊዜ ይጫኑ በ አድራሻ ደብተር ላይ ይጫኑ \"የ መጀመሪያ ስም\" እና ከዛ ይጫኑ <emph> ማስገቢያ </emph> ይድገሙ ለ \"አባት ስም\""
#: 04090200.xhp
msgctxt ""
@@ -9390,7 +9390,7 @@ msgctxt ""
"par_id3147549\n"
"help.text"
msgid "In the document, place the cursor between the two fields, press Space, and then return to the <emph>Fields </emph>dialog:"
-msgstr "በ ሰነድ ውስጥ ይጫኑ: መጠቆሚያውን በ ሁለቱ ሜዳዎች መካከል ያድርጉ: እና ከዛ ይጫኑ ክፍተት ማስገቢያ: እና ከዛ ማስገቢያውን ይጫኑ የ <emph>ሜዳዎች </emph>ንግግር ይታያል:"
+msgstr "በ ሰነድ ውስጥ ይጫኑ: መጠቆሚያውን በ ሁለቱ ሜዳዎች መካከል ያድርጉ: እና ከዛ ይጫኑ ክፍተት ማስገቢያ: እና ከዛ ማስገቢያውን ይጫኑ የ <emph> ሜዳዎች </emph> ንግግር ይታያል:"
#: 04090200.xhp
msgctxt ""
@@ -9414,7 +9414,7 @@ msgctxt ""
"par_id3153615\n"
"help.text"
msgid "In the <emph>Then </emph>box, type a space and leave the <emph>Or </emph>box blank."
-msgstr "በ <emph>ከዛ </emph>ሳጥን ውስጥ: ይጻፉ ክፍተት እና ይተውት <emph>ወይንም </emph>ሳጥኑን ባዶ ይተውት"
+msgstr "በ <emph> ከዛ </emph> ሳጥን ውስጥ: ይጻፉ ክፍተት እና ይተውት <emph> ወይንም </emph> ሳጥኑን ባዶ ይተውት"
#: 04090200.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"par_id3149138\n"
"help.text"
msgid "In the <emph>Else</emph> box, type \"Hello\"."
-msgstr "በ <emph>ያለ በለዚያ</emph> ሳጥን ውስጥ ይጻፉ\"ሰላም\"."
+msgstr "በ <emph> ያለ በለዚያ </emph> ሳጥን ውስጥ ይጻፉ\"ሰላም\""
#: 04090200.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id3149163\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: 04120000.xhp
msgctxt ""
@@ -9718,7 +9718,7 @@ msgctxt ""
"par_id3147496\n"
"help.text"
msgid "To include all occurrences of a text passage in an index, select the text, choose<emph> Edit - Find & Replace</emph>, and click <emph>Find All</emph>. Then choose <emph>Insert - Table of Contents and Index - Index Entry</emph> and click <emph>Insert</emph>."
-msgstr "ሁሉንም ሁኔታዎች ለማካተት በ ጽሁፍ ምንባብ ማውጫ ውስጥ: ጽሁፍ ይምረጡ: <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph> እና ይጫኑ <emph> ሁሉንም መፈለጊያ </emph> እና ከዛ ይምረጡ <emph> ማስገቢያ - የ ሰንጠረዥ ማውጫዎች እና - ማውጫ ማስገቢያ </emph> እና ይጫኑ <emph> ማስገቢያ </emph>."
+msgstr "ሁሉንም ሁኔታዎች ለማካተት በ ጽሁፍ ምንባብ ማውጫ ውስጥ: ጽሁፍ ይምረጡ: <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph> እና ይጫኑ <emph> ሁሉንም መፈለጊያ </emph> እና ከዛ ይምረጡ <emph> ማስገቢያ - የ ሰንጠረዥ ማውጫዎች እና - ማውጫ ማስገቢያ </emph> እና ይጫኑ <emph> ማስገቢያ </emph>"
#: 04120100.xhp
msgctxt ""
@@ -9926,7 +9926,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<emph><) </emph>button.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">ይምረጡ የ አንቀጽ ዘዴዎች እርስዎ መፈጸም የሚፈልጉትን ለ ተመረጠው የ ማውጫ ደረጃ: እና ከዛ ይጫኑ መመደቢያ (<emph><) </emph>ቁልፍ</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">ይምረጡ የ አንቀጽ ዘዴዎች እርስዎ መፈጸም የሚፈልጉትን ለ ተመረጠው የ ማውጫ ደረጃ: እና ከዛ ይጫኑ መመደቢያ (<emph><) </emph> ቁልፍ </ahelp>"
#: 04120201.xhp
msgctxt ""
@@ -10382,7 +10382,7 @@ msgctxt ""
"par_id3149880\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/casesens\">Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies.</ahelp> If you want the first occurrence of the entry in the document to determine the case of the entry, select <emph>Combine identical entries</emph>."
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/casesens\">በላይኛው ጉዳይ እና በታችኛው ጉዳይ ፊደሎች በ ተመሳሳይ ማውጫ ማስገቢያ መለያ: ለ እስያ ቋንቋዎች የ ተለየ አያያዝ ይፈጸማል: </ahelp> እርስዎ ከ ፈለጉ የ መጀመሪያው ሁኔታ ማስገቢያ በ ሰነድ ውስጥ ለ መወሰን የ ጉዳይ ማስገቢያ: ይምረጡ <emph>ተመሳሳይ ማውጫ ማስገቢያ </emph>."
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/casesens\">በ ላይኛው ጉዳይ እና በ ታችኛው ጉዳይ ፊደሎች በ ተመሳሳይ ማውጫ ማስገቢያ መለያ: ለ እስያ ቋንቋዎች የ ተለየ አያያዝ ይፈጸማል: </ahelp> እርስዎ ከ ፈለጉ የ መጀመሪያው ሁኔታ ማስገቢያ በ ሰነድ ውስጥ ለ መወሰን የ ጉዳይ ማስገቢያ: ይምረጡ <emph> ተመሳሳይ ማውጫ ማስገቢያ </emph>"
#: 04120212.xhp
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"par_id3153677\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/captions\">Creates index entries from object captions.</ahelp> To add a caption to an object, select the object, and then choose <emph>Insert - Caption</emph>."
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/captions\">ከ እቃ መግለጫ ውስጥ የ ማውጫ ማስገቢያ መፍጠሪያ </ahelp> መግለጫ ወደ እቃ ውስጥ ለ መጨመር: እቃ ይምረጡ: እና ከዛ ይምረጡ <emph> መግለጫ - ማስገቢያ </emph>."
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/captions\">ከ እቃ መግለጫ ውስጥ የ ማውጫ ማስገቢያ መፍጠሪያ </ahelp> መግለጫ ወደ እቃ ውስጥ ለ መጨመር: እቃ ይምረጡ: እና ከዛ ይምረጡ <emph> መግለጫ - ማስገቢያ </emph>"
#: 04120213.xhp
msgctxt ""
@@ -10934,7 +10934,7 @@ msgctxt ""
"par_id3154647\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Automatically numbers the bibliography entries.</ahelp> To set the sorting options for the numbering, click the <link href=\"text/swriter/01/04120227.xhp\" name=\"Entries\">Entries</link> tab."
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">ራሱ በራሱ ለ ጽሁፎች ዝርዝር ማስገቢያ ቁጥር መስጫ</ahelp> ለ ቁጥር መስጫ መለያ ምርጫ ለ ማስገቢያ: ይጫኑ የ <link href=\"text/swriter/01/04120227.xhp\" name=\"Entries\">ማስገቢያ</link> tab."
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">ራሱ በራሱ ለ ጽሁፎች ዝርዝር ማስገቢያ ቁጥር መስጫ </ahelp> ለ ቁጥር መስጫ መለያ ምርጫ ለ ማስገቢያ: ይጫኑ የ <link href=\"text/swriter/01/04120227.xhp\" name=\"Entries\"> ማስገቢያ </link> tab."
#: 04120217.xhp
msgctxt ""
@@ -10998,7 +10998,7 @@ msgctxt ""
"par_id3147176\n"
"help.text"
msgid "To create an index entry from a paragraph style, click the style in the<emph> Styles</emph> list, and then click the <emph>>> </emph>button to move the style to the index level that you want."
-msgstr "የ ማውጫ ማስገቢያ ለ መፍጠር ከ ተወሰነ የ አንቀጽ ዘዴዎች ውስጥ: ይጫኑ ዘዴ በ<emph> ዘዴዎች</emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ የ <emph>>> </emph>እርስዎ ወደሚፈልጉት ወደ ማውጫ ደረጃ ቁልፍ ዘዴን ለ ማንቀሳቀስ"
+msgstr "የ ማውጫ ማስገቢያ ለ መፍጠር ከ ተወሰነ የ አንቀጽ ዘዴዎች ውስጥ: ይጫኑ ዘዴ በ <emph> ዘዴዎች </emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ የ <emph>>> </emph> እርስዎ ወደሚፈልጉት ወደ ማውጫ ደረጃ ቁልፍ ዘዴን ለ ማንቀሳቀስ"
#: 04120219.xhp
msgctxt ""
@@ -11166,7 +11166,7 @@ msgctxt ""
"par_id3154638\n"
"help.text"
msgid "The <emph>Structure </emph>line defines how the entries in the index are composed. To change the appearance of an entry you can enter codes or text in the empty boxes on this line. You can also click in an empty box or on a code, and then click a code button."
-msgstr "የ <emph>አካል </emph>መስመር የሚገልጸው በ ማውጫ ውስጥ ማስገቢያዎች እንዴት እንደሚሰንሰናዱ ነው: አቀራረቡን ለ መቀየር ማስገቢያውን እርስዎ ኮድ ማስገባት ይችላሉ ወይንም ጽሁፍ ወደ ባዶ ሳጥኖች በዚህ መስመር ላይ: እርስዎ እንዲሁም መጫን ይችላሉ በ ባዶ ሳጥን ወይንም ኮድ ላይ እና ከዛ ይጫኑ የ ኮድ ቁልፍ"
+msgstr "የ <emph>አካል </emph> መስመር የሚገልጸው በ ማውጫ ውስጥ ማስገቢያዎች እንዴት እንደሚሰንሰናዱ ነው: አቀራረቡን ለ መቀየር ማስገቢያውን እርስዎ ኮድ ማስገባት ይችላሉ ወይንም ጽሁፍ ወደ ባዶ ሳጥኖች በዚህ መስመር ላይ: እርስዎ እንዲሁም መጫን ይችላሉ በ ባዶ ሳጥን ወይንም ኮድ ላይ እና ከዛ ይጫኑ የ ኮድ ቁልፍ"
#: 04120221.xhp
msgctxt ""
@@ -11182,7 +11182,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "To delete a code from the <emph>Structure </emph>line, click the code, and then press the <item type=\"keycode\">Delete</item> key."
-msgstr "code ለ ማጥፋት ከ <emph>አካል </emph>መስመር ላይ: ይጫኑ በ code ላይ: እና ከዛ ይጫኑ የ <item type=\"keycode\">ማጥፊያ</item> ቁልፍ"
+msgstr "code ለ ማጥፋት ከ <emph> አካል </emph> መስመር ላይ: ይጫኑ በ code ላይ: እና ከዛ ይጫኑ የ <item type=\"keycode\"> ማጥፊያ </item> ቁልፍ"
#: 04120221.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">የ ምእራፍ ቁጥር ማስገቢያ: የ ምእራፍ ቁጥር መስጫ ለ መመደብ በ ራስጌ ዘዴ ውስጥ: ይምረጡ <emph> መሳሪያዎች - የ ቁጥር መስጫ ረቂቅ </emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">የ ምእራፍ ቁጥር ማስገቢያ: የ ምእራፍ ቁጥር መስጫ ለ መመደብ በ ራስጌ ዘዴ ውስጥ: ይምረጡ <emph> መሳሪያዎች - የ ምእራፍ ቁጥር መስጫ </emph>:</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id3153631\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/hyperlink\">Creates a hyperlink for the part of the entry that you enclose by the opening (LS) and the closing (LE) hyperlink tags. On the <emph>Structure </emph>line, click in the empty box in front of the part that you want to create a hyperlink for, and then click this button. Click in the empty box after the part that you want to hyperlink, and then click this button again. All hyperlinks must be unique. Available only for a table of contents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/hyperlink\">መፍጠሪያ hyperlink ለ አካሉ ማስገቢያ እርስዎ በ ከበቡት በ መክፈቻ (LS) እና በ መዝጊያ (LE) hyperlink tags. በ <emph>አካል </emph>መስመር ውስጥ: ይጫኑ በ ባዶው ሳጥን ውስጥ ከ አካሉ ፊት ለ ፊት እርስዎ hyperlink መፍጠር ለሚፈልጉት ለ: እና ከዛ ይጫኑ ይህን ቁልፍ: ይጫኑ ባዶው ሳጥን ውስጥ ከ አካሉ በኋላ እርስዎ hyperlink መፍጠር ለሚፈልጉት: እና ከዛ ይጫኑ ይህን ቁልፍ እንደገና: ሁሉም hyperlinks ልዩ መሆን አለባቸው: ዝግጁ የሚሆኑት ለ ሰንጠረዥ ይዞታ ብቻ ነው </ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/hyperlink\">መፍጠሪያ hyperlink ለ አካሉ ማስገቢያ እርስዎ በ ከበቡት በ መክፈቻ (LS) እና በ መዝጊያ (LE) hyperlink tags. በ <emph> አካል </emph> መስመር ውስጥ: ይጫኑ በ ባዶው ሳጥን ውስጥ ከ አካሉ ፊት ለ ፊት እርስዎ hyperlink መፍጠር ለሚፈልጉት ለ: እና ከዛ ይጫኑ ይህን ቁልፍ: ይጫኑ ባዶው ሳጥን ውስጥ ከ አካሉ በኋላ እርስዎ hyperlink መፍጠር ለሚፈልጉት: እና ከዛ ይጫኑ ይህን ቁልፍ እንደገና: ሁሉም hyperlinks ልዩ መሆን አለባቸው: ዝግጁ የሚሆኑት ለ ሰንጠረዥ ይዞታ ብቻ ነው </ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"par_id3149109\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose <emph>Edit - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Index Entry</emph></link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">መወሰኛ የ አቀራረብ ዘዴ ለ ዋናው ማስገቢያ በ ፊደል ቅደም ተከተል ማውጫ: በ ዋናው ማስገቢያ የ ማውጫ ማስገቢያ ለ መቀይር: ይጫኑ ከ ማውጫ ሜዳ ፊት ለ ፊት በ ሰነድ ውስጥ እና ከዛ ይምረጡ <emph> ማረሚያ - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph> ማውጫ ማስገቢያ </emph></link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">መወሰኛ የ አቀራረብ ዘዴ ለ ዋናው ማስገቢያ በ ፊደል ቅደም ተከተል ማውጫ: በ ዋናው ማስገቢያ የ ማውጫ ማስገቢያ ለ መቀይር: ይጫኑ ከ ማውጫ ሜዳ ፊት ለ ፊት በ ሰነድ ውስጥ እና ከዛ ይምረጡ <emph> ማረሚያ - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph> ማውጫ ማስገቢያ </emph></link></ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -12014,7 +12014,7 @@ msgctxt ""
"par_id3154107\n"
"help.text"
msgid "In the <emph>Options </emph>area, select the <emph>Concordance file</emph> check box."
-msgstr "ከ <emph>ምርጫዎች </emph>ቦታ ይምረጡ የ <emph>ፋይል ቅደም ተከተል</emph> ምልክት ማድረጊያ ሳጥን"
+msgstr "ከ <emph> ምርጫዎች </emph> ቦታ ይምረጡ የ <emph> ፋይል ቅደም ተከተል </emph> ምልክት ማድረጊያ ሳጥን"
#: 04120250.xhp
msgctxt ""
@@ -12022,7 +12022,7 @@ msgctxt ""
"par_id3153668\n"
"help.text"
msgid "Click the <emph>File</emph> button, and then choose <emph>New</emph> or <emph>Edit</emph>."
-msgstr "ይጭኑ የ <emph>ፋይል</emph> ቁልፍ እና ከዚያ ይምረጡ <emph>አዲስ</emph> ወይንም <emph>ማረሚያ</emph>."
+msgstr "ይጭኑ የ <emph> ፋይል </emph> ቁልፍ እና ከዚያ ይምረጡ <emph> አዲስ </emph> ወይንም <emph> ማረሚያ </emph>"
#: 04120250.xhp
msgctxt ""
@@ -12062,7 +12062,7 @@ msgctxt ""
"par_id3155184\n"
"help.text"
msgid "\"Match case\" means that uppercase and lowercase letters are considered."
-msgstr "\"ጉዳይ ማመሳሰያ\" ማለት ለ አቢይ ፊደል እና ለ ትንንሽ ፊደል ለ ሁለቱም ይፈቀዳል"
+msgstr "\"ጉዳይ ማመሳሰያ\" ማለት ለ ላይኛው ጉዳይ ፊደል እና ለ ታችኛው ጉዳይ ፊደል ለ ሁለቱም ይፈቀዳል"
#: 04120250.xhp
msgctxt ""
@@ -12278,7 +12278,7 @@ msgctxt ""
"hd_id3151260\n"
"help.text"
msgid "Author, Title"
-msgstr "ደራሲው ፡ አርእስት"
+msgstr "ደራሲው: አርእስት"
#: 04120300.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id3149172\n"
"help.text"
msgid "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">Tips for working with bibliography entries</link>"
-msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">በ ጽሁፎች ዝርዝር ማስገቢያ እንዴት እንደሚሰሩ ጠቃሚ ምክር</link>."
+msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">በ ጽሁፎች ዝርዝር ማስገቢያ እንዴት እንደሚሰሩ ጠቃሚ ምክር</link>"
#: 04130000.xhp
msgctxt ""
@@ -12390,7 +12390,7 @@ msgctxt ""
"par_id3153678\n"
"help.text"
msgid "To edit a frame, click the border to select it, and then choose <emph>Format - Frame and Object - Properties</emph>. You can also resize or move a selected frame using special <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\">shortcut keys</link>."
-msgstr "ክፈፍ ለማረም: ይጫኑ በ ደንበሩ ላይ ለ መምረጥ: እና ከዛ ይምረጡ <emph> አቀራረብ - ክፈፍ እና የ እቃ - ባህሪዎች </emph> እርስዎ እንደገና መመጠን ይችላሉ ወይንም የ ተመረጠውን ክፈፍ ማንቀሳቀስ በ መጠቀም የ ተለየ <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\"> አቋራጭ ቁልፎች </link>."
+msgstr "ክፈፍ ለማረም: ይጫኑ በ ደንበሩ ላይ ለ መምረጥ: እና ከዛ ይምረጡ <emph> አቀራረብ - ክፈፍ እና የ እቃ - ባህሪዎች </emph> እርስዎ እንደገና መመጠን ይችላሉ ወይንም የ ተመረጠውን ክፈፍ ማንቀሳቀስ በ መጠቀም የ ተለየ <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\"> አቋራጭ ቁልፎች </link>"
#: 04130000.xhp
msgctxt ""
@@ -12550,7 +12550,7 @@ msgctxt ""
"par_id3154638\n"
"help.text"
msgid "$[officename] can automatically format numbers that you enter in a table cell, for example, dates and times. To activate this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Table</emph> and click the<emph> Number recognition </emph>check box in the <emph>Input in tables</emph> area."
-msgstr "$[officename] ራሱ በራሱ ቁጥር አቀራረብ እርስዎ ለሚያስገቡት በ ሰንጠረዥ ክፍል ውስጥ: ለምሳሌ: ቀኖች: እና ሰአቶች ይህን ገጽታ ለማስጀመር: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ሰንጠረዥ </emph> እና ይጫኑ የ<emph> ቁጥር መለያ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ በ <emph> ሰንጠረዥ ማስገቢያ </emph> ቦታ ውስጥ"
+msgstr "$[officename] ራሱ በራሱ ቁጥር አቀራረብ እርስዎ ለሚያስገቡት በ ሰንጠረዥ ክፍል ውስጥ: ለምሳሌ: ቀኖች: እና ሰአቶች ይህን ገጽታ ለማስጀመር: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ሰንጠረዥ </emph> እና ይጫኑ የ <emph> ቁጥር መለያ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ በ <emph> ሰንጠረዥ ማስገቢያ </emph> ቦታ ውስጥ"
#: 04150000.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"par_id3153511\n"
"help.text"
msgid "On the Insert toolbar, click the <emph>Table</emph> icon to open the <emph>Insert Table</emph> dialog, where you can insert a table in the current document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
-msgstr "በ እቃ መደርደሪያ ማስገቢያ ላይ: ይጫኑ የ <emph>ሰንጠረዥ</emph>ምልክት ለ መክፈት የ <emph>ሰንጠረዥ ማስገቢያ</emph>ንግግር: እርስዎ ሰንጠረዥ ወደ አሁኑ ሰነ የሚያስገቡበት: እርስዎ እንዲሁም ቀስት መጫን ይችላሉ: ይጎትቱ ለ መምረጥ የ ረድፎች እና አምዶች ቁጥር በ ሰንጠረዥ ውስጥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻው ክፍል ላይ"
+msgstr "በ እቃ መደርደሪያ ማስገቢያ ላይ: ይጫኑ የ <emph> ሰንጠረዥ </emph> ምልክት ለ መክፈት የ <emph> ሰንጠረዥ ማስገቢያ </emph> ንግግር: እርስዎ ሰንጠረዥ ወደ አሁኑ ሰነድ የሚያስገቡበት: እርስዎ እንዲሁም ቀስት መጫን ይችላሉ: ይጎትቱ ለ መምረጥ የ ረድፎች እና አምዶች ቁጥር በ ሰንጠረዥ ውስጥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻው ክፍል ላይ"
#: 04150000.xhp
msgctxt ""
@@ -12774,7 +12774,7 @@ msgctxt ""
"bm_id3145799\n"
"help.text"
msgid "<bookmark_value>databases; exchanging</bookmark_value> <bookmark_value>address books; exchanging</bookmark_value> <bookmark_value>exchanging databases</bookmark_value> <bookmark_value>replacing;databases</bookmark_value>"
-msgstr "<bookmark_value>ዳታቤዞች; መቀያየሪያ</bookmark_value> <bookmark_value>የ አድራሻ ደብተር; መቀያየሪያ</bookmark_value> <bookmark_value>መቀያየሪያ ዳታቤዞች</bookmark_value> <bookmark_value>መቀየሪያ;ዳታቤዞች</bookmark_value>"
+msgstr "<bookmark_value>ዳታቤዞች: መቀያየሪያ</bookmark_value> <bookmark_value>የ አድራሻ ደብተር: መቀያየሪያ</bookmark_value> <bookmark_value>መቀያየሪያ ዳታቤዞች</bookmark_value> <bookmark_value>መቀየሪያ: ዳታቤዞች</bookmark_value>"
#: 04180400.xhp
msgctxt ""
@@ -12878,7 +12878,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">Replaces the current data source with the data source that you selected in the <emph>Available Databases </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">የ አሁኑን ዳታ ምንጭ መቀየሪያ እርስዎ በ መረጡት የ ዳታ ምንጭ በ <emph>ዝግጁ ዳታቤዝ </emph>ዝርዝር</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">የ አሁኑን ዳታ ምንጭ መቀየሪያ እርስዎ በ መረጡት የ ዳታ ምንጭ በ <emph> ዝግጁ ዳታቤዝ </emph> ዝርዝር </ahelp> ውስጥ"
#: 04180400.xhp
msgctxt ""
@@ -12886,7 +12886,7 @@ msgctxt ""
"hd_id3154506\n"
"help.text"
msgid "To exchange a database:"
-msgstr "የ ዳታቤዝ ለመቀያየር:"
+msgstr "የ ዳታቤዝ ለ መቀያየር:"
#: 04180400.xhp
msgctxt ""
@@ -12910,7 +12910,7 @@ msgctxt ""
"par_id3150564\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Exchange Database</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ማረሚያ - ዳታቤዝ መቀያየሪያ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማረሚያ - ዳታቤዝ መቀያየሪያ </item>"
#: 04180400.xhp
msgctxt ""
@@ -12966,7 +12966,7 @@ msgctxt ""
"par_idN105BD\n"
"help.text"
msgid "To always have the latest version of the contents of a file, insert a section into your document, and then insert a link to the text file in the section. See <link href=\"text/swriter/01/04020100.xhp\">insert a section</link> for details."
-msgstr "ሁልጊዜ የ ፋይል ይዞታዎች ዘመናዊ እትም እንዲኖሮት: ወደ እርስዎ ሰነድ ውስጥ ምርጫ ያስገቡ: እና ከዛ አገናኝ ያስገቡ ወደ ጽሁፍ ፋይል ምርጫ: ይህን ይመልከቱ <link href=\"text/swriter/01/04020100.xhp\">ክፍል ማስገቢያ </link> ለ ዝርዝር"
+msgstr "ሁልጊዜ የ ፋይል ይዞታዎች ዘመናዊ እትም እንዲኖሮት: ወደ እርስዎ ሰነድ ውስጥ ምርጫ ያስገቡ: እና ከዛ አገናኝ ያስገቡ ወደ ጽሁፍ ፋይል ምርጫ: ይህን ይመልከቱ <link href=\"text/swriter/01/04020100.xhp\"> ክፍል ማስገቢያ </link> ለ ዝርዝር"
#: 04200000.xhp
msgctxt ""
@@ -13062,7 +13062,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Adds a link to a script file. Click the <emph>URL </emph>radio button, and then enter the link in the box. You can also click the <emph>Browse</emph> button, locate the file, and then click <emph>Insert</emph>.</ahelp> The linked script file is identified in the HTML source code by the following tags:"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">ወደ script ፋይል አገናኝ መጨመሪያ: ይጫኑ የ <emph>URL </emph> ሬዲዮ ቁልፍ: እና ከዛ ያስገቡ አገናኝ በ ሳጥን ውስጥ: እርስዎ እንዲሁም መጫን ይችላሉ የ <emph> መቃኛ </emph> ቁልፍ ፋይሉን ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp> የ ተገናኘ script ፋይል የሚለየው በ HTML ኮድ ምንጭ በሚቀጥለው tags ነው:"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">ወደ ጽሁፍ ፋይል አገናኝ መጨመሪያ: ይጫኑ የ <emph> URL </emph> ሬዲዮ ቁልፍ: እና ከዛ ያስገቡ አገናኝ በ ሳጥን ውስጥ: እርስዎ እንዲሁም መጫን ይችላሉ የ <emph> መቃኛ </emph> ቁልፍ ፋይሉን ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp> የ ተገናኘ ጽሁፍ ፋይል የሚለየው በ HTML ኮድ ምንጭ በሚቀጥለው tags ነው:"
#: 04200000.xhp
msgctxt ""
@@ -13102,7 +13102,7 @@ msgctxt ""
"par_id3154188\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertscript/browse\">Locate the script file that you want to link to, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/browse\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/browse\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph> ማስገቢያ </emph></ahelp>"
#: 04200000.xhp
msgctxt ""
@@ -13142,7 +13142,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "<ahelp hid=\".\">Adds or removes a header from the page style that you select in the submenu. The header is added to all of the pages that use the same page style.</ahelp> In a new document, only the \"Default\" page style is listed. Other page styles are added to the list after you apply them in the document."
-msgstr "<ahelp hid=\".\">በ ገጽ ዘዴ ውስጥ ራስጌ መጨመሪያ ወይንም ማስወገጃ እርስዎ የ መረጡትን ከ ንዑስ ዝርዝር ውስጥ: ራስጌው ወደ ሁሉም ገጾች ይጨመራል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ በሙሉ </ahelp>በ አዲስ ሰነድ ውስጥ: ብቻ የ \"ነባር\" ገጽ ዘዴ ይዘረዘራል: ሌሎች የ ገጽ ዘዴዎች የሚጨመሩት ወደ ዝርዝር እርስዎ ሰነድ ላይ ከ ፈጸሙ በኋላ ነው"
+msgstr "<ahelp hid=\".\">በ ገጽ ዘዴ ውስጥ ራስጌ መጨመሪያ ወይንም ማስወገጃ እርስዎ የ መረጡትን ከ ንዑስ ዝርዝር ውስጥ: ራስጌው ወደ ሁሉም ገጾች ይጨመራል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ በሙሉ </ahelp> በ አዲስ ሰነድ ውስጥ: ብቻ የ \"ነባር\" ገጽ ዘዴ ይዘረዘራል: ሌሎች የ ገጽ ዘዴዎች የሚጨመሩት ወደ ዝርዝር እርስዎ ሰነድ ላይ ከ ፈጸሙ በኋላ ነው"
#: 04220000.xhp
msgctxt ""
@@ -13206,7 +13206,7 @@ msgctxt ""
"par_id3149353\n"
"help.text"
msgid "<ahelp hid=\".\">Adds or removes a footer from the page style that you select in the submenu. The footer is added to all of the pages that use the same page style.</ahelp> In a new document, only the \"Default\" page style is listed. Other page styles are added to the list after you apply them in the document."
-msgstr "<ahelp hid=\".\">በ ገጽ ዘዴ ውስጥ ግርጌ መጨመሪያ ወይንም ማስወገጃ እርስዎ የ መረጡትን ከ ንዑስ ዝርዝር ውስጥ: ግርጌው ወደ ሁሉም ገጾች ይጨመራል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ በሙሉ </ahelp>በ አዲስ ሰነድ ውስጥ: ብቻ የ \"ነባር\" ገጽ ዘዴ ይዘረዘራል: ሌሎች የ ገጽ ዘዴዎች የሚጨመሩት ወደ ዝርዝር እርስዎ ሰነድ ላይ ከ ፈጸሙ በኋላ ነው"
+msgstr "<ahelp hid=\".\">በ ገጽ ዘዴ ውስጥ ግርጌ መጨመሪያ ወይንም ማስወገጃ እርስዎ የ መረጡትን ከ ንዑስ ዝርዝር ውስጥ: ግርጌው ወደ ሁሉም ገጾች ይጨመራል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ በሙሉ </ahelp> በ አዲስ ሰነድ ውስጥ: ብቻ የ \"ነባር\" ገጽ ዘዴ ይዘረዘራል: ሌሎች የ ገጽ ዘዴዎች የሚጨመሩት ወደ ዝርዝር እርስዎ ሰነድ ላይ ከ ፈጸሙ በኋላ ነው"
#: 04230000.xhp
msgctxt ""
@@ -13750,7 +13750,7 @@ msgctxt ""
"par_id3151181\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Select the formatting style that you want to apply to the drop caps.</ahelp> To use the formatting style of the current paragraph, select [None]."
-msgstr "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">እርስዎ መጠቀም የሚፈልጉትን አቀራረብ አይነት ይምረጡ ለ መፈጸም ፊደል በትልቁ መጻፊያ</ahelp> የ አሁኑን የ አንቀጽ ዘዴ ለመጠቀም: ይምረጡ [ምንም]"
+msgstr "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">እርስዎ መጠቀም የሚፈልጉትን አቀራረብ አይነት ይምረጡ ለ መፈጸም ፊደል በትልቁ መጻፊያ </ahelp> የ አሁኑን የ አንቀጽ ዘዴ ለመጠቀም: ይምረጡ [ምንም]"
#: 05030800.xhp
msgctxt ""
@@ -13830,7 +13830,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link> window if you click the <emph>Numbering Style</emph> icon."
-msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">ይምረጡ the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">ቁጥር መስጫ ዘዴ</link> እርስዎ መፈጸም የሚፈልጉትን በ አንቀጽ ውስጥ </ahelp> እነዚህ ዘዴዎች ተዘርዝረዋል በ <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">ዘዴዎች እና አቀራረብ</link> መስኮት ውስጥ እርስዎ ከ ተጫኑ የ <emph>ቁጥር መስጫ ዘዴ</emph> ምልክት"
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">ይምረጡ የ <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\"> ቁጥር መስጫ ዘዴ </link> እርስዎ መፈጸም የሚፈልጉትን በ አንቀጽ ውስጥ </ahelp> እነዚህ ዘዴዎች ተዘርዝረዋል በ <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\"> ዘዴዎች እና አቀራረብ </link> መስኮት ውስጥ እርስዎ ከ ተጫኑ የ <emph> ቁጥር መስጫ ዘዴ </emph> ምልክት"
#: 05030800.xhp
msgctxt ""
@@ -14310,7 +14310,7 @@ msgctxt ""
"par_id3154827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/columnpage/applytolb\">Select the item that you want to apply the column layout to.</ahelp> This option is only available if you access this dialog by choosing <emph>Format - Columns</emph>."
-msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/applytolb\">ይምረጡ እቃ እርስዎ መፈጸም የሚፈልጉትን በ አምድ እቅድ ውስጥ ወደ</ahelp> ይህ ምርጫ ዝግጁ የሚሆነው እርስዎ ንግግሩ ጋር ከ ደረሱ ነው በ መምረጥ <emph>አምድ - አቀራረብ</emph>"
+msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/applytolb\">ይምረጡ እቃ እርስዎ መፈጸም የሚፈልጉትን በ አምድ እቅድ ውስጥ ወደ </ahelp> ይህ ምርጫ ዝግጁ የሚሆነው እርስዎ ንግግሩ ጋር ከ ደረሱ ነው በ መምረጥ <emph> አምድ - አቀራረብ </emph>"
#: 05040501.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3155145\n"
"help.text"
msgid "To specify the spacing between two footnotes, choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <emph>Indents & Spacing</emph> tab."
-msgstr "በ ሁለት የ ግርጌ ማስታወሻዎች መካከል ክፍተት ለ መወሰን: ይምረጡ <item type=\"menuitem\">አቀራረብ - አንቀጽ</item> እና ከዛ ይጫኑ የ <emph>ማስረጊያ & ክፍተት</emph> tab ውስጥ"
+msgstr "በ ሁለት የ ግርጌ ማስታወሻዎች መካከል ክፍተት ለ መወሰን: ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ </item> እና ከዛ ይጫኑ የ <emph> ማስረጊያ & ክፍተት </emph> tab ውስጥ"
#: 05040700.xhp
msgctxt ""
@@ -14966,7 +14966,7 @@ msgctxt ""
"hd_id3149496\n"
"help.text"
msgid "Ruby text below/left from base text"
-msgstr "Ruby ጽሁፍ ከ ታች/በ ግራ ከ base ጽሁፍ በኩል"
+msgstr "Ruby ጽሁፍ ከ ታች/በ ግራ ከ ቤዝ ጽሁፍ በኩል"
#: 05040800.xhp
msgctxt ""
@@ -14974,7 +14974,7 @@ msgctxt ""
"par_id3149816\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/textgridpage/checkCB_RUBYBELOW\">Displays Ruby text to the left of or below the base text.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/checkCB_RUBYBELOW\">Ruby ጽሁፍ በ ግራ ወይንም ከ base ጽሁፍ ከ ታች በኩል </ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/checkCB_RUBYBELOW\">Ruby ጽሁፍ በ ግራ ወይንም ከ ቤዝ ጽሁፍ ከ ታች በኩል </ahelp>"
#: 05040800.xhp
msgctxt ""
@@ -15814,7 +15814,7 @@ msgctxt ""
"par_id3155793\n"
"help.text"
msgid "<variable id=\"konturtext\"><ahelp hid=\".\">Wraps text around the shape of the object. This option is not available for the <emph>Through</emph> wrap type, or for frames.</ahelp> To change the contour of an object, select the object, and then choose <emph>Format - Wrap - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Edit Contour</emph></link>.</variable>"
-msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">ጽሁፍ መጠቅለያ በ እቃው ቅርጽ ዙሪያ: ይህ ምርጫ ዝግጁ አይሆንም ለ <emph> በሙሉ </emph> መጠቅለያ አይነት: ወይንም ለ ክፈፎች </ahelp> የ እቃውን ቅርጽ ለ መቀየር: ይምረጡ እቃውን እና ከዛ ይምረጡ <emph> አቀራረብ – መጠቅለያ - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph> ቅርጽ ማረሚያ </emph></link>. </variable>"
+msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">ጽሁፍ መጠቅለያ በ እቃው ቅርጽ ዙሪያ: ይህ ምርጫ ዝግጁ አይሆንም ለ <emph> በሙሉ </emph> መጠቅለያ አይነት: ወይንም ለ ክፈፎች </ahelp> የ እቃውን ቅርጽ ለ መቀየር: ይምረጡ እቃውን እና ከዛ ይምረጡ <emph> አቀራረብ – መጠቅለያ - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph> ቅርጽ ማረሚያ </emph></link></variable>"
#: 05060200.xhp
msgctxt ""
@@ -16246,7 +16246,7 @@ msgctxt ""
"par_id3154624\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYDELETE\">Removes a point from the contour outline. Click here, and then click the point that you want to delete.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYDELETE\">ነጥብ ከ ቅርጽ ረቂቅ ላይ ማስወገጃ: ይጫኑ እዚህ: እና ከዛ ይጫኑ ነጥቡን እርስዎ ማጥፋት የሚፈልጉትን</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYDELETE\">ነጥብ ከ ቅርጽ ረቂቅ ላይ ማስወገጃ: ይጫኑ እዚህ: እና ከዛ ይጫኑ ነጥቡን እርስዎ ማጥፋት የሚፈልጉትን </ahelp>"
#: 05060201.xhp
msgctxt ""
@@ -16566,7 +16566,7 @@ msgctxt ""
"par_id3151373\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/picturepage/browse\">Locate the new graphic file that you want to link to, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/picturepage/browse\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph>መክፈቻ</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/picturepage/browse\">ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ <emph> መክፈቻ </emph>:</ahelp>"
#: 05060300.xhp
msgctxt ""
@@ -16590,7 +16590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Macro"
-msgstr "Macro"
+msgstr "ማክሮስ"
#: 05060700.xhp
msgctxt ""
@@ -16598,7 +16598,7 @@ msgctxt ""
"hd_id3145241\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Macro\">ማክሮስ</link>"
#: 05060700.xhp
msgctxt ""
@@ -16606,7 +16606,7 @@ msgctxt ""
"par_id3158429\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">Specifies the macro to run when you click an image, frame, or an OLE object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">የሚሄደውን macro መወሰኝ እርስዎ በሚጫኑ ጊዜ: ንድፍ: ክፈፍ: ወይንም የ OLE እቃ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">የሚሄደውን ማክሮስ መወሰኝ እርስዎ በሚጫኑ ጊዜ: ንድፍ: ክፈፍ: ወይንም የ OLE እቃ </ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -16622,7 +16622,7 @@ msgctxt ""
"par_id3147564\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that can trigger a macro.</ahelp> Only the events that are relevant to the selected object are listed."
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">macro የሚያስነሱ ሁኔታዎች ዝርዝር </ahelp> ከ ተመረጠው እቃ ጋር ብቻ ግንኙነት ያለውን ዝርዝር ይታያል"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">ማክሮስ የሚያስነሱ ሁኔታዎች ዝርዝር </ahelp> ከ ተመረጠው እቃ ጋር ብቻ ግንኙነት ያለውን ዝርዝር ይታያል"
#: 05060700.xhp
msgctxt ""
@@ -16630,7 +16630,7 @@ msgctxt ""
"par_id3149286\n"
"help.text"
msgid "The following table lists the object types and the events that can trigger a macro:"
-msgstr "የሚቀጥለው ሰንጠረዥ ዝርዝር የ እቃዎች አይነት እና ሁኔታዎችን ያሳያል macro የሚያስነሱ:"
+msgstr "የሚቀጥለው ሰንጠረዥ ዝርዝር የ እቃዎች አይነት እና ሁኔታዎችን ያሳያል ማክሮስ የሚያስነሱ:"
#: 05060700.xhp
msgctxt ""
@@ -17118,7 +17118,7 @@ msgctxt ""
"par_id3159203\n"
"help.text"
msgid "For events that are linked to controls in forms, see <link href=\"text/shared/02/01170103.xhp\" name=\"Control properties\">Control properties</link> or <link href=\"text/shared/02/01170202.xhp\" name=\"Form properties\">Form properties</link>."
-msgstr "በ ፎርም ውስጥ ለ ተገናኙ ሁኔታዎች መቆጣጠሪያ ይህን: ይመልከቱ <link href=\"text/shared/02/01170103.xhp\" name=\"Control properties\">ባህሪዎች መቆጣጠሪያ</link> ወይንም <link href=\"text/shared/02/01170202.xhp\" name=\"Form properties\">የ ፎርም ባህሪዎች</link>."
+msgstr "በ ፎርም ውስጥ ለ ተገናኙ ሁኔታዎች መቆጣጠሪያ ይህን: ይመልከቱ <link href=\"text/shared/02/01170103.xhp\" name=\"Control properties\"> ባህሪዎች መቆጣጠሪያ </link> ወይንም <link href=\"text/shared/02/01170202.xhp\" name=\"Form properties\"> የ ፎርም ባህሪዎች </link>"
#: 05060700.xhp
msgctxt ""
@@ -17134,7 +17134,7 @@ msgctxt ""
"par_id3156043\n"
"help.text"
msgid "Specify the macro that executes when the selected event occurs."
-msgstr "የ ተመረጠው ሁኔታ ሲፈጠር የሚፈጸመውን macro መወሰኛ"
+msgstr "የ ተመረጠው ሁኔታ ሲፈጠር የሚፈጸመውን ማክሮስ መወሰኛ"
#: 05060700.xhp
msgctxt ""
@@ -17142,7 +17142,7 @@ msgctxt ""
"par_id3156058\n"
"help.text"
msgid "Frames allow you to link certain events to a function that then decides if the event is handled by $[officename] Writer or by the function. See the $[officename] Basic Help for more information."
-msgstr "ክፈፎች የሚያስችሉት እርስዎ እንዲያገናኙ ነው አንዳንድ ሁኔታዎችን ከ ተግበሮች ጋር እና ከዛ እንዲወስኑ ሁኔታው በምን እንደሚያዝ በ $[officename] መጻፊያ ወይንም በ ተግባር: ይህን ይመልከቱ የ $[officename] Basi"
+msgstr "ክፈፎች የሚያስችሉት እርስዎ እንዲያገናኙ ነው አንዳንድ ሁኔታዎችን ከ ተግበሮች ጋር እና ከዛ እንዲወስኑ ሁኔታው በምን እንደሚያዝ በ $[officename] መጻፊያ ወይንም በ ተግባር: ይህን ይመልከቱ የ $[officename] Basic እርዳታ ለ በለጠ መረጃ"
#: 05060700.xhp
msgctxt ""
@@ -17150,7 +17150,7 @@ msgctxt ""
"hd_id3149271\n"
"help.text"
msgid "Macro From"
-msgstr "macro ከ"
+msgstr "ማክሮስ ከ"
#: 05060700.xhp
msgctxt ""
@@ -17158,7 +17158,7 @@ msgctxt ""
"par_id3149284\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the $[officename] program and any open $[officename] document.</ahelp> Within this list, select the location where you want to save the macros."
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">ዝርዝር የ $[officename] ፕሮግራም እና ማንኛውንም መክፈቻ $[officename] ሰነድ </ahelp> ከ ዝርዝር ውስጥ አካባቢ ይምረጡ እርስዎ macros ማስቀመጥ የሚፈልጉበትን"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">ዝርዝር የ $[officename] ፕሮግራም እና ማንኛውንም መክፈቻ $[officename] ሰነድ </ahelp> ከ ዝርዝር ውስጥ አካባቢ ይምረጡ እርስዎ ማክሮስ ማስቀመጥ የሚፈልጉበትን"
#: 05060700.xhp
msgctxt ""
@@ -17166,7 +17166,7 @@ msgctxt ""
"hd_id3156441\n"
"help.text"
msgid "Existing Macros"
-msgstr "የ ነበረው Macros"
+msgstr "የ ነበረው ማክሮስ"
#: 05060700.xhp
msgctxt ""
@@ -17174,7 +17174,7 @@ msgctxt ""
"par_id3148458\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/macros\">Lists the available macros. Select the macro that you want to assign to the selected event, and then click <emph>Assign</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">ዝግጁ የ macros ዝርዝር: ይምረጡ macro እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው ሁኔታ: እና ከዛ ይጫኑ <emph> መመደቢያ </emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">ዝግጁ የ ማክሮስ ዝርዝር: ይምረጡ ማክሮስ እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው ሁኔታ: እና ከዛ ይጫኑ <emph> መመደቢያ </emph></ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -17190,7 +17190,7 @@ msgctxt ""
"par_id3145197\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assign\">Assigns the selected macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/eventassignpage/assign\">የ ተመረጠውን macro ለ ተመረጠው ሁኔታ መመደቢያ </ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assign\">የ ተመረጠውን ማክሮስ ለ ተመረጠው ሁኔታ መመደቢያ </ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -17206,7 +17206,7 @@ msgctxt ""
"par_id3150882\n"
"help.text"
msgid "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">Removes the macro assignment from the selected entry.</ahelp></variable>"
-msgstr "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">ከ ተመረጠው ማስገቢያ ውስጥ የ macro ስራ ማስወገጃ </ahelp></variable>"
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">ከ ተመረጠው ማስገቢያ ውስጥ የ ማክሮስ ስራ ማስወገጃ </ahelp></variable>"
#: 05060800.xhp
msgctxt ""
@@ -18206,7 +18206,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "To insert a column, place the cursor in a table cell, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Insert, release, and then press the left or the right arrow."
-msgstr "አምድ ለመጨመር መጠቆሚያውን በሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫዎች</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ቀኝ ወይንም የ ግራ ቀስትን ይጫኑ"
+msgstr "አምድ ለመጨመር መጠቆሚያውን በሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫዎች </caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ቀኝ ወይንም የ ግራ ቀስትን ይጫኑ"
#: 05090201.xhp
msgctxt ""
@@ -18214,7 +18214,7 @@ msgctxt ""
"par_id3152940\n"
"help.text"
msgid "To delete a column, place the cursor in the column that you want to delete, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Delete, release, and then press the left or the right arrow."
-msgstr "አምድ ለ ማጥፋት: መጠቆሚያውን በ ሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫዎች</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ቀኝ ወይንም የ ግራ ቀስትን ይጫኑ"
+msgstr "አምድ ለ ማጥፋት: መጠቆሚያውን በ ሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫዎች </caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ቀኝ ወይንም የ ግራ ቀስትን ይጫኑ"
#: 05090201.xhp
msgctxt ""
@@ -18222,7 +18222,7 @@ msgctxt ""
"par_id3154105\n"
"help.text"
msgid "To insert a row, place the cursor in a table cell, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Insert, release, and then press the up or the down arrow."
-msgstr "ረድፍ ለ መጨመር መጠቆሚያውን በ ሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫዎች</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ላይ ወይንም የ ታች ቀስትን ይጫኑ"
+msgstr "ረድፍ ለ መጨመር መጠቆሚያውን በ ሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫዎች </caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ላይ ወይንም የ ታች ቀስትን ይጫኑ"
#: 05090201.xhp
msgctxt ""
@@ -18230,7 +18230,7 @@ msgctxt ""
"par_id3153531\n"
"help.text"
msgid "To delete a row, place the cursor in the row that you want to delete, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Delete, release, and then press the up or the down arrow."
-msgstr "ረድፍ ለ ማጥፋት መጠቆሚያውን በ ሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫዎች</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ላይ ወይንም የ ታች ቀስትን ይጫኑ"
+msgstr "ረድፍ ለ ማጥፋት መጠቆሚያውን በ ሰንጠረዡ ውስጥ ያድርጉ እና ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫዎች </caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ማስገቢያውን ይጫኑ እና ይልቀቁ እና ከዛ የ ላይ ወይንም የ ታች ቀስትን ይጫኑ"
#: 05090201.xhp
msgctxt ""
@@ -18238,7 +18238,7 @@ msgctxt ""
"par_id3150983\n"
"help.text"
msgid "To change the behavior of tables in a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040500.xhp\" name=\"Text Document - Table\"><emph>%PRODUCTNAME Writer - Table</emph></link>."
-msgstr "በ ጽሁፍ ሰነድ ውስጥ የ ሰንጠረዥ ባህሪ መቀየር ከ ፈለጉ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040500.xhp\" name=\"Text Document - Table\"><emph>%PRODUCTNAME መጻፊያ - ሰንጠረዥ </emph></link>"
+msgstr "በ ጽሁፍ ሰነድ ውስጥ የ ሰንጠረዥ ባህሪ መቀየር ከ ፈለጉ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040500.xhp\" name=\"Text Document - Table\"><emph>%PRODUCTNAME መጻፊያ - ሰንጠረዥ </emph></link>"
#: 05090201.xhp
msgctxt ""
@@ -18510,7 +18510,7 @@ msgctxt ""
"par_idN10944\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textdirection\">Select the orientation for the text in the cells.</ahelp> You can use the following formatting options to specify the orientation of text in table cells:"
-msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textdirection\">በ ክፍሉ ውስጥ የ ጽሁፍ አቅጣጫ ይምረጡ</ahelp> እርስዎ የሚቀጥለውን አቀራረብ ምርጫ መጠቀም ይችላሉ ለ መወሰን የ ጽሁፍ አቅጣጫ በ ክፍሉ ውስጥ"
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textdirection\">በ ክፍሉ ውስጥ የ ጽሁፍ አቅጣጫ ይምረጡ </ahelp> እርስዎ የሚቀጥለውን አቀራረብ ምርጫ መጠቀም ይችላሉ ለ መወሰን የ ጽሁፍ አቅጣጫ በ ክፍሉ ውስጥ"
#: 05090300.xhp
msgctxt ""
@@ -19206,7 +19206,7 @@ msgctxt ""
"par_id3150015\n"
"help.text"
msgid "If you want, you can edit the styles of the current document, and then save the document as a template. To save the document as template, choose <emph>File - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save as Template\"><emph>Templates - Save as Template</emph></link>."
-msgstr "እርስዎ ከ ፈለጉ: የ አሁኑን ሰነድ ዘዴዎች ማረም ይችላሉ: እና ከዛ ሰነዱን ያስቀምጡት እንደ ቴምፕሌት: ሰነዱን እንደ ቴምፕሌት ለማስቀመጥ ይምረጡ <emph> ፋይል - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save\"><emph> ቴምፕሌት – እንደ ቴምፕሌት ማስቀመጫ </emph></link>."
+msgstr "እርስዎ ከ ፈለጉ: የ አሁኑን ሰነድ ዘዴዎች ማረም ይችላሉ: እና ከዛ ሰነዱን ያስቀምጡት እንደ ቴምፕሌት: ሰነዱን እንደ ቴምፕሌት ለማስቀመጥ ይምረጡ <emph> ፋይል - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save\"><emph> ቴምፕሌት – እንደ ቴምፕሌት ማስቀመጫ </emph></link>"
#: 05130000.xhp
msgctxt ""
@@ -19494,7 +19494,7 @@ msgctxt ""
"par_id3147736\n"
"help.text"
msgid "Displays formatting styles for headers, footers, footnotes, endnotes, tables, and captions."
-msgstr "የ አቀራረብ ዘዴዎች ማሳያ ለራስጌ ፡ ለግርጌ ፡ ለግርጌ ማስታወሻ ፡ ለመጨረሻ ማስታወሻ ፡ ለ ሰንጠረዥ እና መግለጫዎች"
+msgstr "የ አቀራረብ ዘዴዎች ማሳያ ለ ራስጌ: ለ ግርጌ: ለ ግርጌ ማስታወሻ: ለ መጨረሻ ማስታወሻ: ለ ሰንጠረዥ እና መግለጫዎች"
#: 05130000.xhp
msgctxt ""
@@ -19662,7 +19662,7 @@ msgctxt ""
"par_id3148768\n"
"help.text"
msgid "Define a new Paragraph Style by choosing <emph>New</emph> in the <emph>Styles and Formatting</emph> window, and selecting all the paragraph properties that you want for your business letter in the <emph>Paragraph Style</emph> dialog. Name this style \"Business letter\"."
-msgstr "የ አዲስ አንቀጽ ዘዴ ይግለጹ በ መምረጥ <emph>አዲስ</emph> በ <emph>ዘዴዎች እና አቀራረብ</emph> መስኮት ውስጥ: እና ይምረጡ ሁሉንም የ አንቀጽ ባህሪዎች እርስዎ የሚፈልጉትን ለ እርስዎ የ ንግድ ደብዳቤ በ <emph>አንቀጽ ዘዴ</emph> ንግግር ውስጥ: ይህን ዘዴ ይሰይሙ \"የ ንግድ ደብዳቤ\""
+msgstr "የ አዲስ አንቀጽ ዘዴ ይግለጹ በ መምረጥ <emph> አዲስ </emph> በ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት ውስጥ: እና ይምረጡ ሁሉንም የ አንቀጽ ባህሪዎች እርስዎ የሚፈልጉትን ለ እርስዎ የ ንግድ ደብዳቤ በ <emph> አንቀጽ ዘዴ </emph> ንግግር ውስጥ: ይህን ዘዴ ይሰይሙ \"የ ንግድ ደብዳቤ\""
#: 05130100.xhp
msgctxt ""
@@ -19678,7 +19678,7 @@ msgctxt ""
"par_id3154647\n"
"help.text"
msgid "In <emph>Context</emph>, select the header entry and under <emph>Paragraph Styles</emph> select the style for the header in your business letter; for example, the default Paragraph Style \"Header\". You also can select your own style."
-msgstr "በ <emph> አገባብ </emph> ውስጥ ይምረጡ የ ራስጌ ማስገቢያ እና በ <emph> አንቀጽ ዘዴ </emph> ውስጥ ይምረጡ ዘዴ ለ ራስጌ ለ እርስዎ የ ንግድ ደብዳቤ: ለምሳሌ: የ ነባር አንቀጽ ዘዴ \"ራስጌ\". እርስዎ የ ራስዎትን ዘዴ መምረጥ ይችላሉ"
+msgstr "በ <emph> አገባብ </emph> ውስጥ ይምረጡ የ ራስጌ ማስገቢያ እና በ <emph> አንቀጽ ዘዴ </emph> ውስጥ ይምረጡ ዘዴ ለ ራስጌ ለ እርስዎ የ ንግድ ደብዳቤ: ለምሳሌ: የ ነባር አንቀጽ ዘዴ \"ራስጌ\": እርስዎ የ ራስዎትን ዘዴ መምረጥ ይችላሉ"
#: 05130100.xhp
msgctxt ""
@@ -19694,7 +19694,7 @@ msgctxt ""
"par_id3149753\n"
"help.text"
msgid "Click <emph>OK</emph> to close the Paragraph Style dialog, and then format all paragraphs in your business letter, including the header, with the new \"Business letter\" conditional Paragraph Style. (When you click in the header, you may need to display <item type=\"literal\">All Styles</item> or <item type=\"literal\">Custom Styles</item> in the style list to use the new business letter style.)"
-msgstr "ይጫኑ <emph>እሺ</emph> የ አንቀጽ ዘዴ ንግግር ለ መዝጋት: እና ከዛ ሁሉንም አንቀጾች በ እርስዎ የ ንግድ ደብዳቤዎች ውስጥ: እንዲሁም ራስጌዎች: በ አዲስ አቀራረብ በ \"ንግድ ደብዳቤዎች\" እንደ ሁኔታው አንቀጽ ዘዴ: (እርስዎ ራስጌ ሲጫኑ: እርስዎ ማሳየት ያስፈልግዎታል <item type=\"literal\">ሁሉንም ዘዴዎች</item> ወይንም <item type=\"literal\">ዘዴዎች ማስተካከያ</item> በ ዘዴ ዝርዝር ውስጥ እርስዎ መጠቀም በሚፈልጉት የ ንግድ ደብዳቤዎች ዘዴ ውስጥ)"
+msgstr "ይጫኑ <emph> እሺ </emph> የ አንቀጽ ዘዴ ንግግር ለ መዝጋት: እና ከዛ ሁሉንም አንቀጾች በ እርስዎ የ ንግድ ደብዳቤዎች ውስጥ: እንዲሁም ራስጌዎች: በ አዲስ አቀራረብ በ \"ንግድ ደብዳቤዎች\" እንደ ሁኔታው አንቀጽ ዘዴ: (እርስዎ ራስጌ ሲጫኑ: እርስዎ ማሳየት ያስፈልግዎታል <item type=\"literal\">ሁሉንም ዘዴዎች</item> ወይንም <item type=\"literal\">ዘዴዎች ማስተካከያ</item> በ ዘዴ ዝርዝር ውስጥ እርስዎ መጠቀም በሚፈልጉት የ ንግድ ደብዳቤዎች ዘዴ ውስጥ)"
#: 05130100.xhp
msgctxt ""
@@ -19846,7 +19846,7 @@ msgctxt ""
"par_id3148391\n"
"help.text"
msgid "<ahelp hid=\".\">Use the Styles and Formatting deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ዘዴዎች እና አቀራረብ መደርደሪያ በ ጎን በኩል ያለውን ይጠቀሙ ለ መፈጸም: ለ መፍጠር: ለ ማረም: እና ለ ማስወገድ የ አቀራረብ ዘዴዎችን: ሁለት ጊዜ-ይጫኑ በ ማስገቢያው ላይ ዘዴውን ለ መፈጸም</ahelp>"
+msgstr "<ahelp hid=\".\">የ ዘዴዎች እና አቀራረብ መደርደሪያ በ ጎን በኩል ያለውን ይጠቀሙ ለ መፈጸም: ለ መፍጠር: ለ ማረም: እና ለ ማስወገድ የ አቀራረብ ዘዴዎችን: ሁለት ጊዜ-ይጫኑ በ ማስገቢያው ላይ ዘዴውን ለ መፈጸም </ahelp>"
#: 05140000.xhp
msgctxt ""
@@ -20142,7 +20142,7 @@ msgctxt ""
"par_id3148860\n"
"help.text"
msgid "More information about <link href=\"text/swriter/01/05130000.xhp\" name=\"styles\">styles</link>."
-msgstr "በበለጠ ለመረዳት ስለ <link href=\"text/swriter/01/05130000.xhp\" name=\"styles\">ዘዴዎች</link>."
+msgstr "በ በለጠ ለመረዳት ስለ <link href=\"text/swriter/01/05130000.xhp\" name=\"styles\"> ዘዴዎች </link>"
#: 05140000.xhp
msgctxt ""
@@ -20206,7 +20206,7 @@ msgctxt ""
"par_id3147570\n"
"help.text"
msgid "To open the <link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat for Tables\">AutoFormat for Tables</link> dialog, click in a table cell, and then choose <emph>Table - AutoFormat Styles</emph>."
-msgstr "ለ መክፈት <link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat for Tables\">በራሱ አቀራረብ </link> ንግግር ይጫኑ በ ሰንጠረዥ ክፍል ውስጥ እና ከዛ ይምረጡ <emph> ሰንጠረዥ - በራሱ አቀራረብ </emph>"
+msgstr "ለ መክፈት <link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat for Tables\"> በራሱ አቀራረብ </link> ንግግር ይጫኑ በ ሰንጠረዥ ክፍል ውስጥ እና ከዛ ይምረጡ <emph> ሰንጠረዥ - በራሱ አቀራረብ </emph>"
#: 05150100.xhp
msgctxt ""
@@ -20246,7 +20246,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "To reverse the last AutoCorrect action, choose <emph>Edit - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>Undo</emph></link>."
-msgstr "እንደ ነበር ለ መመለስ የ በራሱ አራሚ ተግባርን: ይምረጡ <emph>ማረሚያ - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>መተው</emph></link>."
+msgstr "እንደ ነበር ለ መመለስ የ በራሱ አራሚ ተግባርን: ይምረጡ <emph>ማረሚያ - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph> መተው </emph></link>"
#: 05150100.xhp
msgctxt ""
@@ -20678,7 +20678,7 @@ msgctxt ""
"par_id3154105\n"
"help.text"
msgid "If you type three or more hyphens (---), underscores (___) or equal signs (===) on line and then press Enter, the paragraph is replaced by a horizontal line as wide as the page. The line is actually the <link href=\"text/shared/01/05030500.xhp\" name=\"lower border\">lower border</link> of the preceding paragraph. The following rules apply:"
-msgstr "እርስዎ ከ ጻፉ ሶስት ወይንም ተጨማሪ ጭረት (---): ከ ስሩ ማስመሪያ (___) ወይንም እኩል ምልክት (===) በ መስመር ላይ እና ከዛ ይጫኑ ማስገቢያ: አንቀጽ ይቀየራል በ አግድም መስመር እንደ ገጹ ስፋት: መስመሩ በ ቀጥታ በ <link href=\"text/shared/01/05030500.xhp\" name=\"lower border\">ዝቅተኛ ድንበር</link> በሚቀጥለው አንቀጽ: የሚቀጥሉት ደንቦች ይፈጸማሉ:"
+msgstr "እርስዎ ከ ጻፉ ሶስት ወይንም ተጨማሪ ጭረት (---): ከ ስሩ ማስመሪያ (___) ወይንም እኩል ምልክት (===) በ መስመር ላይ እና ከዛ ይጫኑ ማስገቢያ: አንቀጽ ይቀየራል በ አግድም መስመር እንደ ገጹ ስፋት: መስመሩ በ ቀጥታ በ <link href=\"text/shared/01/05030500.xhp\" name=\"lower border\"> ዝቅተኛ ድንበር </link> በሚቀጥለው አንቀጽ: የሚቀጥሉት ደንቦች ይፈጸማሉ:"
#: 05150200.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "የ ቁጥር መስጫ ረቂቅ"
+msgid "Chapter Numbering"
+msgstr "ምእራፍ ቁጥር መስጫ"
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "የ ቁጥር መስጫ ረቂቅ"
+msgid "Chapter Numbering"
+msgstr "ምእራፍ ቁጥር መስጫ"
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "የ ቁጥር መስጫ ረቂቅ የ ተገናኘ ነው ከ አንቀጽ ዘዴዎች ጋር: በ ነባር: የ \"ራስጌ\" አንቀጽ ዘዴዎች (1-10) የ ተመደቡት ከ ተመሳሳይ የ ረቂቅ ቁጥር ደረጃዎች ጋር ነው ከ (1-10): እርስዎ ከ ፈለጉ መመደብ ይችላሉ የ ተለየ የ አንቀጽ ዘዴዎች ለ ረቂቅ ቁጥር ደረጃ"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr "የ ምእራፍ መስጫ ረቂቅ የ ተገናኘ ነው ከ አንቀጽ ዘዴዎች ጋር: በ ነባር: የ \"ራስጌ\" አንቀጽ ዘዴዎች (1-10) የ ተመደቡት ከ ተመሳሳይ የ ረቂቅ ቁጥር ደረጃዎች ጋር ነው ከ (1-10): እርስዎ ከ ፈለጉ መመደብ ይችላሉ የ ተለየ የ አንቀጽ ዘዴዎች ለ ረቂቅ ቁጥር ደረጃ"
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "እርስዎ ቁጥር የ ተሰጣቸው ራስጌዎች ከ ፈለጉ የ <emph> መሳሪያዎች - ረቂቅ ቁጥር መስጫ </emph> ዝርዝር ትእዛዝ የ ቁጥር መስጫ ለ መመደብ ወደ አንቀጽ ዘዴ: የ ቁጥር መስጫ ምልክት አይጠቀሙ ከ እቃ መደርደሪያ አቀራረብ ውስጥ"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr "እርስዎ ቁጥር የ ተሰጣቸው ራስጌዎች ከ ፈለጉ የ <emph> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </emph> ዝርዝር ትእዛዝ የ ቁጥር መስጫ ለ መመደብ ወደ አንቀጽ ዘዴ ውስጥ: የ ቁጥር መስጫ ምልክት አይጠቀሙ: ከ እቃ መደርደሪያ አቀራረብ ውስጥ"
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "ለማድመቅ የ ረቂቅ ቁጥሮች መመልከቻ ማሳያ <emph>መመልከቻ -</emph><emph>የ ሜዳ ጥላ</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr "ለ ማድመቅ የ ምእራፍ እና የ ቁጥሮች ረቂቅ መመልከቻ ማሳያ: ይምረጡ <emph> መመልከቻ -</emph><emph> የ ሜዳ ጥላ </emph>:"
#: 06060000.xhp
msgctxt ""
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">ረቂቅ የ ቁጥር አቀራረብ መጫኛ ወይንም ማስቀመጫ: የ ተቀመጠ የ ረቂቅ የ ቁጥር አቀራረብ ዝግጁ ነው ለ ሁሉም የ ጽሁፍ ሰነዶች </ahelp>"
#: 06060000.xhp
@@ -21405,8 +21405,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "የ <emph> አቀራረብ </emph> ቁልፍ ዝግጁ የሚሆነው ለ ረቂቅ ቁጥር መስጫ ብቻ ነው: ቁጥር ለ ተሰጣቸው ወይንም ነጥብ ለ ተሰጣቸው ዘዴዎች: የ አንቀጽ ቁጥር መስጫ ማሻሻያ"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr "የ <emph> አቀራረብ </emph> ቁልፍ ዝግጁ የሚሆነ ለ ረቂቅ ቁጥር መስጫ ብቻ ነው: ቁጥር ለ ተሰጣቸው ወይንም ነጥብ ለ ተሰጣቸው ዘዴዎች: የ አንቀጽ ቁጥር መስጫ ማሻሻያ"
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">ንግግር መክፈቻ እርስዎ የሚያስቀምጡበት የ አሁኑን ማሰናጃ ለ ተመረጠው የ ረቂቅ ደረጃ: ስለዚህ እርስዎ ይህን ማሰናጃ መጫን ይችላሉ ከ ሌላ ሰነድ ውስጥ </ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">ንግግር መክፈቻ እርስዎ የሚያስቀምጡበት: የ አሁኑን ማሰናጃ ለ ተመረጠው የ ረቂቅ ደረጃ: ስለዚህ እርስዎ ይህን ማሰናጃ መጫን ይችላሉ ከ ሌላ ሰነድ ውስጥ </ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">ይጫኑ የ ረቂቅ ደረጃ እርስዎ ማሻሻል የሚፈልጉትን: እና ከዛ ይወስኑ የ ቁጥር መስጫ ምርጫ ለ ደረጃ</ahelp>የ ቁጥር መስጫ ምርጫ ለ መፈጸም: ከ አንቀጽ ዘዴ በስተቀር: ለ ሁሉም ደረጃዎች: ይጫኑ \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">ይጫኑ የ ምእራፍ እና ረቂቅ ደረጃ እርስዎ ማሻሻል የሚፈልጉትን: እና ከዛ ይወስኑ የ ቁጥር መስጫ ምርጫ ለ ደረጃ </ahelp> የ ቁጥር መስጫ ምርጫ ለ መፈጸም: ከ አንቀጽ ዘዴ በስተቀር: ለ ሁሉም ደረጃዎች: ይጫኑ \"1-10\"."
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">ይምረጡ የ አንቀጽ ዘዴ እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው የ ረቂቅ ደረጃ</ahelp>እርስዎ ከ ተጫኑ \"ምንም\": የ ተመረጠው ረቂቅ ደረጃ አይገለጽም"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">ይምረጡ የ አንቀጽ ዘዴ እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው የ ምእራፍ እና ረቂቅ ደረጃ </ahelp> እርስዎ ከ ተጫኑ \"ምንም\": የ ተመረጠው ረቂቅ ደረጃ አይገለጽም"
#: 06060100.xhp
msgctxt ""
@@ -21590,7 +21590,7 @@ msgctxt ""
"par_id3153533\n"
"help.text"
msgid "Lowercase letters"
-msgstr "ዝቅተኛ ጉዳይ ፊደሎች"
+msgstr "የ ታችኛው ጉዳይ ፊደሎች"
#: 06060100.xhp
msgctxt ""
@@ -21878,7 +21878,7 @@ msgctxt ""
"par_id3153154\n"
"help.text"
msgid "Uppercase"
-msgstr "በትልልቅ ፊደል መጻፊያ"
+msgstr "በ ላይኛው ጉዳይ ፊደል"
#: 06080100.xhp
msgctxt ""
@@ -21894,7 +21894,7 @@ msgctxt ""
"par_id3147508\n"
"help.text"
msgid "Lowercase"
-msgstr "በ ትንንሽ ፊደል መጻፊያ"
+msgstr "የ ታችኛው ጉዳይ ፊደል"
#: 06080100.xhp
msgctxt ""
@@ -21958,7 +21958,7 @@ msgctxt ""
"par_id3155895\n"
"help.text"
msgid "Alphabetical numbering with uppercase letters. After the first 26 entries, the numbering restarts at \"AA\"."
-msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ከፍተኛ ጉዳይ ፊደሎች: ከ 26 ማስገቢያዎች በኋላ: ቁጥር መስጫው እንደገና ይጀምራል በ \"AA\""
+msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ላይኛው ጉዳይ ፊደል: ከ 26 ማስገቢያዎች በኋላ: ቁጥር መስጫው እንደገና ይጀምራል በ \"AA\""
#: 06080100.xhp
msgctxt ""
@@ -21974,7 +21974,7 @@ msgctxt ""
"par_id3149297\n"
"help.text"
msgid "Alphabetical numbering with lowercase letters. After the first 26 entries, the numbering restarts at \"aa\"."
-msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ዝቅተኛ ጉዳይ ፊደሎች: ከ 26 ማስገቢያዎች በኋላ: ቁጥር መስጫው እንደገና ይጀምራል በ \"aa\""
+msgstr "በ ፊደል ቅደም ተከተል ቁጥር መስጫ በ ታችኛው ጉዳይ ፊደሎች: ከ 26 ማስገቢያዎች በኋላ: ቁጥር መስጫው እንደገና ይጀምራል በ \"aa\""
#: 06080100.xhp
msgctxt ""
@@ -22110,7 +22110,7 @@ msgctxt ""
"par_id334242345\n"
"help.text"
msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style <emph>Footnote</emph>. Press <item type=\"keycode\">F11</item> to open <emph>Styles and Formatting</emph> dialog and select <emph>Footnote</emph> from the list of paragraph styles. Open the local menu with right click and choose <emph>Modify</emph>. Go to the <emph>Indents & Spacing</emph> tab page and set indent to 0 before and after the paragraph, including the first line. On <emph>Tabs</emph> tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in <emph>Footnotes/Endnotes Settings</emph> dialog enter <item type=\"input\">\\t</item> into the <emph>Before</emph> and <emph>After</emph> edit boxes."
-msgstr "የ ግርጌ ማስታወሻ ቁጥሮች በ ነባር በ ግራ የተሰለፉ ናቸው በ ግርጌ ማስታወሻ ቦታ: በ ቀኝ ለሚሰለፉ የ ግርጌ ማስታወሻ ቁጥሮች በ መጀመሪያ የ አንቀጽ ዘዴ ያርሙ: <emph> የ ግርጌ ማስታወሻ </emph> ይጫኑ <item type=\"keycode\">F11</item> ለ መክፈት <emph> ዘዴዎች እና አቀራረብ </emph> ንግግር እና ይምረጡ <emph> የ ግርጌ ማስታወሻ </emph> ከ አንቀጽ ዘዴዎች ዝርዝር ውስጥ: ይክፈቱ የ አካባቢ ዝርዝር በ ቀኝ በ መጫን እና ይምረጡ <emph> ማሻሻያ </emph> መሄጃ ወደ <emph> ማስረጊያዎች & ክፍተት </emph> tab ገጽ እና ያሰናዱ ማስረጊያወደ 0 ከ አንቀጹ ፊት እና ኋላ የ መጀመሪያውን መስመር ያካትታል: በ <emph>Tabs</emph> tab ገጽ ለ መፍጠር tab የ ቀኝ ዘዴ በ 12ነጥብ እና a tab የ ግራ ዘዴ በ 14ነጥብ እና ከ ዛ <emph>የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ ማሰናጃዎች </emph> ንግግር ውስጥ ያስገቡ <item type=\"input\">\\t</item> ወደ የ <emph> በፊት </emph> እና <emph> በኋላ </emph> ማረሚያ ሳጥን ውስጥ"
+msgstr "የ ግርጌ ማስታወሻ ቁጥሮች በ ነባር በ ግራ የተሰለፉ ናቸው በ ግርጌ ማስታወሻ ቦታ: በ ቀኝ ለሚሰለፉ የ ግርጌ ማስታወሻ ቁጥሮች በ መጀመሪያ የ አንቀጽ ዘዴ ያርሙ: <emph> የ ግርጌ ማስታወሻ </emph> ይጫኑ <item type=\"keycode\">F11</item> ለ መክፈት <emph> ዘዴዎች እና አቀራረብ </emph> ንግግር እና ይምረጡ <emph> የ ግርጌ ማስታወሻ </emph> ከ አንቀጽ ዘዴዎች ዝርዝር ውስጥ: ይክፈቱ የ አካባቢ ዝርዝር በ ቀኝ በ መጫን እና ይምረጡ <emph> ማሻሻያ </emph> መሄጃ ወደ <emph> ማስረጊያዎች & ክፍተት </emph> tab ገጽ እና ያሰናዱ ማስረጊያወደ 0 ከ አንቀጹ ፊት እና ኋላ የ መጀመሪያውን መስመር ያካትታል: በ <emph> Tabs </emph> tab ገጽ ለ መፍጠር tab የ ቀኝ ዘዴ በ 12ነጥብ እና a tab የ ግራ ዘዴ በ 14ነጥብ እና ከዛ <emph> የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ ማሰናጃዎች </emph> ንግግር ውስጥ ያስገቡ <item type=\"input\">\\t</item> ወደ የ <emph> በፊት </emph> እና <emph> በኋላ </emph> ማረሚያ ሳጥን ውስጥ"
#: 06080100.xhp
msgctxt ""
@@ -22990,7 +22990,7 @@ msgctxt ""
"par_id3154838\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/sortdialog/matchcase\">Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/sortdialog/matchcase\">የ ላይኛው ጉዳይ እና የ ታችኛው ጉዳይ ፊደሎች መካከል እርስዎ ሰንጠረዥ ሲለዩ መለያ: ለ Asian ቋንቋዎች የ ተለየ አያያዝ ይፈጸማል </ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/sortdialog/matchcase\">የ ላይኛው ጉዳይ እና የ ታችኛው ጉዳይ ፊደሎች መካከል እርስዎ ሰንጠረዥ ሲለዩ መለያ: ለ እሲያ ቋንቋዎች የ ተለየ አያያዝ ይፈጸማል </ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -23046,7 +23046,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:Repaginate\">Updates the page formats in the document and recalculates the total number of pages that is displayed on the <emph>Status Bar</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:Repaginate\">የ ገጽ አቀራረብ ማሻሻያ በ አሁኑ ሰነድ ውስጥ እና እንደገና ማስሊያ የ ገጾችን ጠቅላላ ቁጥር የሚታየውን በ <emph>ሁኔታዎች መደርደሪያ ላይ</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:Repaginate\">የ ገጽ አቀራረብ ማሻሻያ በ አሁኑ ሰነድ ውስጥ እና እንደገና ማስሊያ የ ገጾችን ጠቅላላ ቁጥር የሚታየውን በ <emph> ሁኔታዎች መደርደሪያ ላይ </emph></ahelp>"
#: 06120000.xhp
msgctxt ""
@@ -23166,7 +23166,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <emph>Format - Paragraph</emph>, click the <emph>Numbering </emph>tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
-msgstr "<variable id=\"zeinum\">የ መስመር ቁጥር አቀራረብ መጨመሪያ ወይንም ማስወገጃ በ አሁኑ ሰነድ ውስጥ: የ አንቀጽ ቁጥር መስጫ ላለማካተት: ይጫኑ በ አንቀጽ ውስጥ: እና ይምረጡ <emph> አቀራረብ – አንቀጽ </emph> ይጫኑ የ <emph> ቁጥር መስጫ </emph>tab እና ከዛ ያጽዱ <emph> ይህን አንቀጽ በ ቁጥር መስጫ ውስጥ ማካተቻ </emph> ምልክት ማድረጊያ ሳጥን </variable> እርስዎ እንዲሁም አለማካተት ይችላሉ የ አንቀጽ ዘዴ ከ ቁጥር መስጫ ጋር"
+msgstr "<variable id=\"zeinum\">የ መስመር ቁጥር አቀራረብ መጨመሪያ ወይንም ማስወገጃ በ አሁኑ ሰነድ ውስጥ: የ አንቀጽ ቁጥር መስጫ ላለማካተት: ይጫኑ በ አንቀጽ ውስጥ: እና ይምረጡ <emph> አቀራረብ – አንቀጽ </emph> ይጫኑ የ <emph> ቁጥር መስጫ </emph> tab እና ከዛ ያጽዱ <emph> ይህን አንቀጽ በ ቁጥር መስጫ ውስጥ ማካተቻ </emph> ምልክት ማድረጊያ ሳጥን </variable> እርስዎ እንዲሁም አለማካተት ይችላሉ የ አንቀጽ ዘዴ ከ ቁጥር መስጫ ጋር"
#: 06180000.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"par_idN10543\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge01.xhp\">Mail Merge Wizard - Select starting document</link>"
-msgstr "<link href=\"text/swriter/01/mailmerge01.xhp\">የደብዳቤ ማዋሀጃ አዋቂ - ሰነድ ማስጀመሪያ ይምረጡ </link>"
+msgstr "<link href=\"text/swriter/01/mailmerge01.xhp\">የ ደብዳቤ ማዋሀጃ አዋቂ - ሰነድ ማስጀመሪያ ይምረጡ </link>"
#: mailmerge01.xhp
msgctxt ""
@@ -23726,7 +23726,7 @@ msgctxt ""
"par_idN1056F\n"
"help.text"
msgid "<ahelp hid=\".\">Locate the Writer document that you want to use, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ መጠቀም የሚፈልጉትን የ መጻፊያ ሰነድ ፈልገው ያግኙ እና ከዛ ይጫኑ <emph>መክፈቻ</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ መጠቀም የሚፈልጉትን የ መጻፊያ ሰነድ ፈልገው ያግኙ እና ከዛ ይጫኑ <emph> መክፈቻ </emph></ahelp>"
#: mailmerge01.xhp
msgctxt ""
@@ -23990,7 +23990,7 @@ msgctxt ""
"par_idN1058B\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_seladdblo.xhp\">Select Address Block</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/swriter/01/mm_seladdblo.xhp\">አድራሻ መከልከያ ምርጫዎች</link> ንግግር</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/swriter/01/mm_seladdblo.xhp\"> አድራሻ መከልከያ ምርጫዎች </link> ንግግር </ahelp>"
#: mailmerge03.xhp
msgctxt ""
@@ -24038,7 +24038,7 @@ msgctxt ""
"par_idN105B8\n"
"help.text"
msgid "Next step: <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Mail Merge Wizard - Create salutation\">Mail Merge Wizard - Create salutation</link>"
-msgstr "የሚቀጥለው ደረጃ <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Mail Merge Wizard - Create a salutation\">የ ደብዳቤ ማዋሀጃ አዋቂ - ሰላምታ መፍጠሪያ </link>"
+msgstr "የሚቀጥለው ደረጃ <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Mail Merge Wizard - Create a salutation\"> የ ደብዳቤ ማዋሀጃ አዋቂ - ሰላምታ መፍጠሪያ </link>"
#: mailmerge03.xhp
msgctxt ""
@@ -24078,7 +24078,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the properties for the salutation.</ahelp> If the mail merge database contains gender information, you can specify different salutations based on the gender of the recipient."
-msgstr "<ahelp hid=\".\">የ ሰላምታ ባህሪዎች መወሰኛ: </ahelp>የ ደብዳቤ ማዋሀጃ ዳታቤዝ የያዘው የ ፆታ መረጃ: እርስዎ የ ተለዩ ሰላምታዎች ማሰናዳት ይችላሉ የ ተቀባዩን ፆታ መሰረት ያደረገ"
+msgstr "<ahelp hid=\".\">የ ሰላምታ ባህሪዎች መወሰኛ: </ahelp> የ ደብዳቤ ማዋሀጃ ዳታቤዝ የያዘው የ ፆታ መረጃ: እርስዎ የ ተለዩ ሰላምታዎች ማሰናዳት ይችላሉ የ ተቀባዩን ፆታ መሰረት ያደረገ"
#: mailmerge04.xhp
msgctxt ""
@@ -24278,7 +24278,7 @@ msgctxt ""
"par_idN105D4\n"
"help.text"
msgid "Next step: <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Mail Merge Wizard - Adjust layout\">Mail Merge Wizard - Adjust layout</link>"
-msgstr "የሚቀጥለው ደረጃ: <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Mail Merge Wizard - Adjust layout\">የ ደብዳቤ ማዋሀጃ አዋቂ - እቅድ ማስተካከያ</link>"
+msgstr "የሚቀጥለው ደረጃ: <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Mail Merge Wizard - Adjust layout\"> የ ደብዳቤ ማዋሀጃ አዋቂ - እቅድ ማስተካከያ</link>"
#: mailmerge04.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "አዲስ የ አድራሻ መከልከያ"
+msgid "New Address Block / Edit Address Block"
+msgstr "አዲስ አድራሻ መከልከያ / አድራሻ መከልከያ ማረሚያ"
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "አዲስ የ አድራሻ መከልከያ"
+msgid "New Address Block or Edit Address Block"
+msgstr "አዲስ አድራሻ መከልከያ ወይንም አድራሻ መከልከያ ማረሚያ"
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr "የ አድራሻ አካሎች"
#: mm_newaddblo.xhp
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "የ አድራሻ አካሎችን እታች ካለው ሜዳ ውስጥ መጎተቻ"
+msgid "Drag address elements here"
+msgstr "የ አድራሻ አካሎች ወደ እዚህ ይጎትቱ"
#: mm_newaddblo.xhp
msgctxt ""
@@ -25534,7 +25534,7 @@ msgctxt ""
"par_idN1059E\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_cusaddlis.xhp\">Customize Address List</link> dialog where you can rearrange, rename, add, and delete fields.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ<link href=\"text/swriter/01/mm_cusaddlis.xhp\">የ አድራሻ ዝርዝር ማስተካከያ</link> ንግግር እርስዎ እንደገና የሚያዘጋጁበት: እንደገና የሚሰይሙበት የ አድራሻ ዝርዝር የሚጨምሩበት እና ሜዳዎችን የሚያጠፉበት ነው</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/swriter/01/mm_cusaddlis.xhp\"> አድራሻ ዝርዝር ማስተካከያ </link> ንግግር እርስዎ እንደገና የሚያዘጋጁበት: እንደገና የሚሰይሙበት የ አድራሻ ዝርዝር የሚጨምሩበት እና ሜዳዎችን የሚያጠፉበት ነው </ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25998,7 +25998,7 @@ msgctxt ""
"par_idN1055E\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database file that contains the addresses that you want to use as an address list.</ahelp> If the file contains more than one table, the <link href=\"text/swriter/01/mm_seltab.xhp\">Select Table</link> dialog opens."
-msgstr "<ahelp hid=\".\">የ ዳታቤዝ ፋይል አድራሻዎች የያዘ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን እንደ አድራሻ ዝርዝር </ahelp> ፋይሉ ከ አንድ ሰንጠረዥ በላይ ከያዘ <link href=\"text/swriter/01/mm_seltab.xhp\"> የ ሰንጠረዥ መምረጫ</link> ንግግር ይከፈታል"
+msgstr "<ahelp hid=\".\">የ ዳታቤዝ ፋይል አድራሻዎች የያዘ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን እንደ አድራሻ ዝርዝር </ahelp> ፋይሉ ከ አንድ ሰንጠረዥ በላይ ከያዘ <link href=\"text/swriter/01/mm_seltab.xhp\"> የ ሰንጠረዥ መምረጫ </link> ንግግር ይከፈታል"
#: mm_seladdlis.xhp
msgctxt ""
@@ -26254,7 +26254,7 @@ msgctxt ""
"par_id300920161443301533\n"
"help.text"
msgid "Select the style of the title page in the <emph>Edit Page Properties</emph> area"
-msgstr "ይምረጡ የ አርእስት ገጽ ዘዴ በ <emph>ገጽ ማረሚያ ባህሪዎች </emph> ቦታ ውስጥ"
+msgstr "ይምረጡ የ አርእስት ገጽ ዘዴ በ <emph> ገጽ ማረሚያ ባህሪዎች </emph> ቦታ ውስጥ"
#: title_page.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id30092016144332353\n"
"help.text"
msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles and Formatting</emph>."
-msgstr "ከ ጎን መደርደሪያ ማሳረፊያ ውስጥ: ይምረጡ <emph>የ ጎን መደርደሪያ ማሰናጃ > ዘዴዎች እና አቀራረብ </emph>."
+msgstr "ከ ጎን መደርደሪያ ማሳረፊያ ውስጥ: ይምረጡ <emph> የ ጎን መደርደሪያ ማሰናጃ - ዘዴዎች እና አቀራረብ </emph>"
#: title_page.xhp
msgctxt ""
@@ -26398,7 +26398,7 @@ msgctxt ""
"par_id300920161443329078\n"
"help.text"
msgid "From the <emph>Styles and Formatting</emph>, select button <emph>Page Styles</emph>."
-msgstr "ከ <emph>ዘዴዎች እና አቀራረብ</emph> ይምረጡ ቁልፍ <emph>የ ገጽ ዘዴዎች</emph>"
+msgstr "ከ <emph> ዘዴዎች እና አቀራረብ </emph> ይምረጡ ቁልፍ <emph> የ ገጽ ዘዴዎች </emph>"
#: title_page.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index db2de52f822..47c46ed32f4 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-04 23:32+0000\n"
+"PO-Revision-Date: 2017-06-20 00:55+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496619142.000000\n"
+"X-POOTLE-MTIME: 1497920106.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3150240\n"
"help.text"
msgid "<ahelp hid=\".uno:DefaultNumbering\">Adds or removes numbering from the selected paragraphs.</ahelp> To define the numbering format, choose <emph>Format - Bullets and Numbering</emph>. To display the <emph>Bullets and Numbering</emph> Bar, choose <emph>View - Toolbars - Bullets and Numbering</emph>."
-msgstr "<ahelp hid=\".uno:DefaultNumbering\">ለ ተመረጡት አንቀጾች የ ቁጥር መስጫ መጨመሪያ ወይንም ማስወገጃ</ahelp> የ ቁጥር መስጫ አቀራረብ መግለጫ ይምረጡ <emph>አቀራረብ - ነጥቦች እና ቁጥር መስጫ</emph> ለ ማሳየት የ <emph>ነጥቦች እና ቁጥር መስጫ</emph> መደርደሪያ ይምረጡ <emph>መመልከቻ - እቃ መደርደሪያ - ነጥቦች እና ቁጥር መስጫ</emph>."
+msgstr "<ahelp hid=\".uno:DefaultNumbering\">ለ ተመረጡት አንቀጾች የ ቁጥር መስጫ መጨመሪያ ወይንም ማስወገጃ </ahelp> የ ቁጥር መስጫ አቀራረብ መግለጫ ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph> ለ ማሳየት የ <emph> ነጥቦች እና ቁጥር መስጫ </emph> መደርደሪያ ይምረጡ <emph> መመልከቻ - እቃ መደርደሪያ - ነጥቦች እና ቁጥር መስጫ </emph>"
#: 02110000.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3149096\n"
"help.text"
msgid "The formula appears in the input line. To specify a range of cells in a table, select the desired cells with the mouse. The corresponding cell references also appear in the input line. Enter additional parameters, as necessary, and click <emph>Apply</emph> to confirm your entry. You can also enter the formula directly if you know the appropriate syntax. This is necessary, for example, in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Insert Fields\"><emph>Insert Fields</emph></link> and <emph>Edit Fields</emph> dialogs."
-msgstr "መቀመሪያ በ ማስገቢያ መስመር ላይ ይታያል: የ ክፍል መጠን በ ሰንጠረዥ ውስጥ ለ መወሰን: ይምረጡ የሚፈለገእኡን ክፍሎች በ አይጥ: ተመሳሳይ የ ማመሳከሪያ ክፍል ይታያል በ ማስገቢያ መስመር ውስጥ: ተጨማሪ መደበኛ ያስገቡ: እንደ አስፈላጊነቱ: እና ይጫኑ <emph> መፈጸሚያ </emph> የ እርስዎን ማስገቢያ ለ ማረጋገጥ: እርስዎ እንዲሁም መቀመሪያ በ ቀጥታ ማስገባት ይችላሉ ተገቢውን አገባብ የሚያውቁ ከሆነ: ይህ አስፈላጊ ነው: ለምሳሌ: በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Insert Fields\"><emph> ሜዳዎች ማስገቢያ </emph></link> እና <emph> ሜዳዎች ማረሚያ </emph> ንግግሮች ውስጥ"
+msgstr "መቀመሪያ በ ማስገቢያ መስመር ላይ ይታያል: የ ክፍል መጠን በ ሰንጠረዥ ውስጥ ለ መወሰን: ይምረጡ የሚፈለጉትን ክፍሎች በ አይጥ: ተመሳሳይ የ ማመሳከሪያ ክፍል ይታያል በ ማስገቢያ መስመር ውስጥ: ተጨማሪ መደበኛ ያስገቡ: እንደ አስፈላጊነቱ: እና ይጫኑ <emph> መፈጸሚያ </emph> የ እርስዎን ማስገቢያ ለ ማረጋገጥ: እርስዎ እንዲሁም መቀመሪያ በ ቀጥታ ማስገባት ይችላሉ ተገቢውን አገባብ የሚያውቁ ከሆነ: ይህ አስፈላጊ ነው: ለምሳሌ: በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Insert Fields\"><emph> ሜዳዎች ማስገቢያ </emph></link> እና <emph> ሜዳዎች ማረሚያ </emph> ንግግሮች ውስጥ"
#: 14020000.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_id3153312\n"
"help.text"
msgid "Example: SIN (PI/2)"
-msgstr "ለምሳሌ: SIN (PI/2)"
+msgstr "ለምሳሌ: ሳይን (ፓይ/2)"
#: 14020000.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id3149391\n"
"help.text"
msgid "Example: TAN <A1>"
-msgstr "ለምሳሌ: TAN <A1>"
+msgstr "ለምሳሌ: ታንጀንት <A1>"
#: 14020000.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3150588\n"
"help.text"
msgid "Example: ASIN 1"
-msgstr "ለምሳሌ: ASIN 1"
+msgstr "ለምሳሌ: አርክ ሳይን 1"
#: 14020000.xhp
msgctxt ""
@@ -2166,7 +2166,7 @@ msgctxt ""
"par_id3153833\n"
"help.text"
msgid "Example: ACOS 1"
-msgstr "Example: ACOS 1"
+msgstr "ለምሳሌ: አርክ ኮሳይን 1"
#: 14020000.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3147102\n"
"help.text"
msgid "Example: ATAN 1"
-msgstr "ለምሳሌ: ATAN 1"
+msgstr "ለምሳሌ: አርክ ታንጀንት 1"
#: 14020000.xhp
msgctxt ""
@@ -2838,7 +2838,7 @@ msgctxt ""
"par_id3151312\n"
"help.text"
msgid "If you would like to define a different date format, or have the date updated automatically, select <emph>Insert - Field - More Fields</emph> to insert a field command and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The format of an existing date field can be modified at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
-msgstr "የተለየ የ ቀን አቀራረብ መግለጽ ከፈለጉ ወይንም ቀን ራሱ በራሱ እንዲሻሻል ከፈለጉ: ይምረጡ <emph> ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች </emph> የ ሜዳ ትእዛዝ ለማስገባት እና የሚፈልጉትን ለማሰናዳት በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph> ሜዳዎች </emph></link> ንግግር ውስጥ: የ ነበረው የ ሜዳ አቀራረብ በማንኛውም ጊዜ ማሻሻል ይችላሉ በ መምረጥ ከ <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph> ማረሚያ - ሜዳዎች </emph></link>."
+msgstr "የተለየ የ ቀን አቀራረብ መግለጽ ከፈለጉ ወይንም ቀን ራሱ በራሱ እንዲሻሻል ከፈለጉ: ይምረጡ <emph> ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች </emph> የ ሜዳ ትእዛዝ ለማስገባት እና የሚፈልጉትን ለማሰናዳት በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph> ሜዳዎች </emph></link> ንግግር ውስጥ: የ ነበረው የ ሜዳ አቀራረብ በማንኛውም ጊዜ ማሻሻል ይችላሉ በ መምረጥ ከ <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph> ማረሚያ - ሜዳዎች </emph></link>"
#: 18030200.xhp
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"par_id3151177\n"
"help.text"
msgid "To assign a different time format, or adapt the actual time data, select <emph>Insert - Field - More Fields</emph> and make the desired changes in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. Additionally, you can modify the format of an inserted time field at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
-msgstr "የተለየ የ ሰአት አቀራረብ መመደብ ከፈለጉ ወይንም ትክክለኛ የ ሰአት ዳታ መጠቀም ከፈለጉ: ይምረጡ <emph> ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች </emph> እና የሚፈልጉትን ለውጥ ያካሂዱ በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph> ሜዳዎች </emph></link> ንግግር ውስጥ: በተጨማሪም ያስገቡትን የ ሰአት ሜዳ በሚፈልጉ ጊዜ ማሻሻል ይችላሉ በመምረጥ ከ <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph> ማረሚያ - ሜዳዎች </emph></link>."
+msgstr "የተለየ የ ሰአት አቀራረብ መመደብ ከፈለጉ ወይንም ትክክለኛ የ ሰአት ዳታ መጠቀም ከፈለጉ: ይምረጡ <emph> ማስገቢያ - ሜዳዎች - ተጨማሪ ሜዳዎች </emph> እና የሚፈልጉትን ለውጥ ያካሂዱ በ <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph> ሜዳዎች </emph></link> ንግግር ውስጥ: በተጨማሪም ያስገቡትን የ ሰአት ሜዳ በሚፈልጉ ጊዜ ማሻሻል ይችላሉ በመምረጥ ከ <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph> ማረሚያ - ሜዳዎች </emph></link>"
#: 18030300.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_id3152896\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertAuthorField\">Inserts the name of the person who created the document here as a field.</ahelp> The field applies the entry made under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User data\"><emph>$[officename] - User data</emph></link>."
-msgstr "<ahelp hid=\".uno:InsertAuthorField\">ሰነዱን የፈጠረውን ሰው ስም ያስገቡ እንደ ሜዳ</ahelp> ሜዳው ማስገቢያውን ይፈጽማል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User data\"><emph>$[officename] - የ ተጠቃሚ ዳታ</emph></link>."
+msgstr "<ahelp hid=\".uno:InsertAuthorField\">ሰነዱን የፈጠረውን ሰው ስም ያስገቡ እንደ ሜዳ </ahelp> ሜዳው ማስገቢያውን ይፈጽማል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User data\"><emph>$[officename] - የ ተጠቃሚ ዳታ</emph></link>"
#: 18120000.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\".uno:Graphic\">If the <emph>Images and Charts</emph> icon on the <emph>Tools</emph> bar is activated, no graphics are displayed - only empty frames as placeholders.</ahelp>"
-msgstr "<ahelp hid=\".uno:Graphic\">በ <emph> ምስሎች እና ቻርትስ </emph> ምልክት በ <emph> መሳሪያዎች </emph> መደርደሪያ ላይ ያስነሱ: ምንም ንድፎች አይታይም - ባዶ ክፈፎች ብቻ እንደ ቦታ ያዢዎች ይታያሉ</ahelp>"
+msgstr "<ahelp hid=\".uno:Graphic\">በ <emph> ምስሎች እና ቻርትስ </emph> ምልክት በ <emph> መሳሪያዎች </emph> መደርደሪያ ላይ ያስነሱ: ምንም ንድፎች አይታይም - ባዶ ክፈፎች ብቻ እንደ ቦታ ያዢዎች ይታያሉ </ahelp>"
#: 18120000.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_id3152896\n"
"help.text"
msgid "<ahelp hid=\".uno:ShadowCursor\">Activates or deactivates the direct cursor.</ahelp> You can specify the behavior of the direct cursor by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Text Document - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>."
-msgstr "<ahelp hid=\".uno:ShadowCursor\">ማስነሻ ወይንም ማቦዘኛ በ ቀጥታ መጠቆሚያውን</ahelp> እርስዎ የ ቀጥታ መጠቆሚያውን ባህሪ መግለጽ ይችላሉ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Text Document - Formatting Aids\"><emph>%PRODUCTNAME መጻፊያ - የ አቀራረብ እርዳታ</emph></link>."
+msgstr "<ahelp hid=\".uno:ShadowCursor\">ማስነሻ ወይንም ማቦዘኛ በ ቀጥታ መጠቆሚያውን</ahelp> እርስዎ የ ቀጥታ መጠቆሚያውን ባህሪ መግለጽ ይችላሉ በ መምረጥ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Text Document - Formatting Aids\"><emph>%PRODUCTNAME መጻፊያ - የ አቀራረብ እርዳታ </emph></link>"
#: 18130000.xhp
msgctxt ""
@@ -3422,4 +3422,4 @@ msgctxt ""
"hd_id3149687\n"
"help.text"
msgid "<ahelp hid=\".uno:StateWordCount\">The number of words in the document and selection is displayed in this field of the status bar. A double-click opens the <link href=\"text/swriter/01/06040000.xhp\" name=\"Word Count\">word count dialog</link>, which shows extra document statistics.</ahelp>"
-msgstr "<ahelp hid=\".uno:StateWordCount\">በ ሰነዱ ውስጥ ያሉት ቃላቶች ቁጥር እና ምርጫ በ ሁኔታዎች መደርደሪያ ሜዳ ላይ ይታያል: ሁለት ጊዜ-ይጫኑ ለ መክፈት የ <link href=\"text/swriter/01/06040000.xhp\" name=\"Word Count\">ቃል መቁጠሪያ ንግግር</link>, ተጨማሪ የ ሰነድ ስታስቲክስ ይታያል</ahelp>"
+msgstr "<ahelp hid=\".uno:StateWordCount\">በ ሰነዱ ውስጥ ያሉት ቃላቶች ቁጥር እና ምርጫ በ ሁኔታዎች መደርደሪያ ሜዳ ላይ ይታያል: ሁለት ጊዜ-ይጫኑ ለ መክፈት የ <link href=\"text/swriter/01/06040000.xhp\" name=\"Word Count\"> ቃል መቁጠሪያ ንግግር </link> ተጨማሪ የ ሰነድ ስታስቲክስ ይታያል </ahelp>"
diff --git a/source/am/helpcontent2/source/text/swriter/04.po b/source/am/helpcontent2/source/text/swriter/04.po
index 1d7b9aa90da..caeb05d85b4 100644
--- a/source/am/helpcontent2/source/text/swriter/04.po
+++ b/source/am/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-23 21:46+0000\n"
+"PO-Revision-Date: 2017-06-21 13:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495575987.000000\n"
+"X-POOTLE-MTIME: 1498051804.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3149593\n"
"help.text"
msgid "Field shadings on / off"
-msgstr "የሜዳ ጥላ ማብሪያ / ማጥፊያ"
+msgstr "የ ሜዳ ጥላ ማብሪያ / ማጥፊያ"
#: 01020000.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3147302\n"
"help.text"
msgid "Run macro field"
-msgstr "የ macro ሜዳ ማስኬጃ"
+msgstr "የ ማክሮስ ሜዳ ማስኬጃ"
#: 01020000.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"par_id3154334\n"
"help.text"
msgid "If the active cell is empty: goes to the end of the table. Otherwise: first press goes to the end of the active cell, second press goes to the end of the current table, third press goes to the end of the document."
-msgstr "ንቁ የሆነው ክፍል ባዶ ከሆነ: ወደ ሰንጠረዡ መጨረሻ ይሄዳል፡ ያለበለዚያ: መጀመሪያ ሲጫኑ የሚሄደው ንቁ ወደሆነው ክፍል መጨረሻ ነው፡ ሁለተኛ ጊዜ ሲጫኑ የሚሄደው ወደ አሁኑ ክፍል መጨረሻ ነው፡ ሶስተኛ ጊዜ ሲጫኑ የሚሄደው ወደ ሰነዱ መጨረሻ ነው"
+msgstr "ንቁ የሆነው ክፍል ባዶ ከሆነ: ወደ ሰንጠረዡ መጨረሻ ይሄዳል: ያለ በለዚያ: መጀመሪያ ሲጫኑ የሚሄደው ንቁ ወደሆነው ክፍል መጨረሻ ነው፡ ሁለተኛ ጊዜ ሲጫኑ የሚሄደው ወደ አሁኑ ክፍል መጨረሻ ነው: ሶስተኛ ጊዜ ሲጫኑ የሚሄደው ወደ ሰነዱ መጨረሻ ነው"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 8a21b1ff0ad..5ef5d09ac46 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2017-06-06 14:58+0000\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-21 16:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496761092.000000\n"
+"X-POOTLE-MTIME: 1498061321.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_idN10674\n"
"help.text"
msgid "To center an image on an HTML page, insert the image, anchor it \"as character\", then center the paragraph."
-msgstr "በ HTML ገጽ ውስጥ ስእል መሀከል ለማድረግ፡ ምስሉን ያስገቡ እና አንድ ቦታ ላይ ያድርጉ \"እንደ ባህሪ\", እና ከዛ አንቀጹን መሀከል ያድርጉ"
+msgstr "በ HTML ገጽ ውስጥ ስእል መሀከል ለማድረግ: ምስሉን ያስገቡ እና አንድ ቦታ ላይ ያድርጉ \"እንደ ባህሪ\": እና ከዛ አንቀጹን መሀከል ያድርጉ"
#: anchor_object.xhp
msgctxt ""
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "እርስዎ ራስጌዎች ማንቀሳቀስ ይችላሉ እና ዝቅተኛ ጽሁፍ ወደ ላይ እና ወደ ታች በ ጽሁፍ ሰነድ ውስጥ መቃኛውን በ መጠቀም: እርስዎ እንዲሁም ይችላሉ የ ራስጌ ደረጃዎችን ማሳደግ እና መሻር: ይህን ገጽታ ለመጠቀም: በ እርስዎ ሰነድ ውስጥ የ ራስጌ አቀራረብ ከ እነዚህ በ አንዱ የ አንቀጽ ዘዴዎች ይግለጹ: ለ ራስጌ የ አንቀጽ ዘዴዎች ለማስተካከል ይምረጡ <emph> መሳሪያዎች - የ ቁጥር መስጫ እቅድ </emph> ይምረጡ ዘዴውን ከ <emph> አንቀጽ ዘዴ </emph> ሳጥን ውስጥ: እና ከዛ ሁለት ጊዜ-ይጫኑ በ ቁጥር ላይ ከ <emph> ደረጃዎች </emph> ዝርዝር ውስጥ"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr "እርስዎ ራስጌዎች እና ዝቅተኛ ጽሁፍ ወደ ላይ እና ወደ ታች ማንቀሳቀስ ይችላሉ: በ ጽሁፍ ሰነድ ውስጥ መቃኛውን በ መጠቀም: እርስዎ እንዲሁም የ ራስጌ ደረጃዎችን ማሳደግ እና መቀነስ ይችላሉ: ይህን ገጽታ ለመጠቀም: በ እርስዎ ሰነድ ውስጥ የ ራስጌ አቀራረብ ከ እነዚህ በ አንዱ የ አንቀጽ ዘዴዎች ይግለጹ: ለ ራስጌ የ አንቀጽ ዘዴዎች ለማስተካከል ይምረጡ <emph> መሳሪያዎች - የ ምእራፍ ቁጥር መስጫ </emph>: ይምረጡ ዘዴውን ከ <emph> አንቀጽ ዘዴ </emph> ሳጥን ውስጥ: እና ከዛ ሁለት ጊዜ-ይጫኑ በ ቁጥር ላይ ከ <emph> ደረጃዎች </emph> ዝርዝር ውስጥ"
#: arrange_chapters.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3151206\n"
"help.text"
msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "በ <emph> መደበኛ መደርደሪያው ላይ </emph> ይጫኑ የ <emph> መቃኛውን </emph> ምልክት <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\"> ምልክት </alt></image> ለ መክፈት <emph> መቃኛውን </emph>."
+msgstr "በ <emph> መደበኛ መደርደሪያው ላይ </emph> ይጫኑ የ <emph> መቃኛውን </emph> ምልክት <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\"> ምልክት </alt></image> ለ መክፈት <emph> መቃኛውን </emph>"
#: arrange_chapters.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3151238\n"
"help.text"
msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "በ <emph> መቃኛ </emph> ይጫኑ የ <emph> ይዞታ መመልከቻ </emph> ምልክት <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\"> ምልክት </alt></image>."
+msgstr "በ <emph> መቃኛ </emph> ይጫኑ የ <emph> ይዞታ መመልከቻ </emph> ምልክት <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\"> ምልክት </alt></image>"
#: arrange_chapters.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3155139\n"
"help.text"
msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "ይጫኑ ራስጌ ከ <emph> መቃኛው </emph>ዝርዝር ውስጥ: እና ይጫኑ <emph> ምእራፍ ማሳደጊያ</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\"> ምልክት </alt></image> ወይንም <emph> ምእራፍ መቀነሻ </emph> ምልክት <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\"> ምልክት </alt></image>."
+msgstr "ይጫኑ ራስጌ ከ <emph> መቃኛው </emph> ዝርዝር ውስጥ: እና ይጫኑ <emph> ምእራፍ ማሳደጊያ </emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\"> ምልክት </alt></image> ወይንም <emph> ምእራፍ መቀነሻ </emph> ምልክት <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\"> ምልክት </alt></image>"
#: arrange_chapters.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_idN1081C\n"
"help.text"
msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "ይጫኑ የ <emph> ከፍ ማድረጊያ ደረጃ </emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\"> ምልክት </alt></image> ወይንም <emph> ዝቅ ማድረጊያ ደረጃ </emph> ምልክት <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\"> ምልክት </alt></image>. "
+msgstr "ይጫኑ የ <emph> ከፍ ማድረጊያ ደረጃ </emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\"> ምልክት </alt></image> ወይንም <emph> ዝቅ ማድረጊያ ደረጃ </emph> ምልክት <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\"> ምልክት </alt></image>"
#: arrange_chapters.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3152830\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>, click the <item type=\"menuitem\">Options</item> tab, and then select “Bulleted and numbered lists”."
-msgstr "ይምረጡ <item type=\"menuitem\">እቃዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች</item> ይጫኑ የ <item type=\"menuitem\">ምርጫዎች</item> tab, እና ከዛ ይምረጡ “ቁጥር መስጫ መፈጸሚያ – ምልክት”."
+msgstr "ይምረጡ <item type=\"menuitem\"> እቃዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች </item> ይጫኑ የ <item type=\"menuitem\"> ምርጫዎች </item> tab, እና ከዛ ይምረጡ “ቁጥር መስጫ መፈጸሚያ – ምልክት”"
#: auto_numbering.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3152867\n"
"help.text"
msgid "Choose <emph>Format - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr "ይምረጡ <emph>አቀራረብ - በራሱ አራሚ</emph>, እና ያረጋግጡ <emph>በምጽፍበት ጊዜ</emph> መመረጡን"
+msgstr "ይምረጡ <emph> አቀራረብ - በራሱ አራሚ </emph> እና ያረጋግጡ <emph> በምጽፍበት ጊዜ </emph> መመረጡን"
#: auto_numbering.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id2357860\n"
"help.text"
msgid "The automatic numbering option is only applied to paragraphs that are formatted with the \"Default\", \"Text body\", or \"Text body indent\" paragraph style."
-msgstr "ራሱ በራሱ ቁጥር መስጫ ምርጫ የሚፈጸመው በ አንቀጾች አቀራረብ ሲጠቀሙ ነው በ \"ነባር\", \"የ ጽሁፍ ሰውነት\", ወይንም \"የ ጽሁፍ ሰውነት ማስረጊያ\" በ አንቀጽ ዘዴ ውስጥ"
+msgstr "ራሱ በራሱ ቁጥር መስጫ ምርጫ የሚፈጸመው በ አንቀጾች አቀራረብ ሲጠቀሙ ነው በ \"ነባር\": \"የ ጽሁፍ ሰውነት\": ወይንም \"የ ጽሁፍ ሰውነት ማስረጊያ\" በ አንቀጽ ዘዴ ውስጥ"
#: auto_numbering.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"bm_id3154250\n"
"help.text"
msgid "<bookmark_value>turning off automatic correction</bookmark_value> <bookmark_value>text;turning off automatic correction</bookmark_value> <bookmark_value>uppercase;changing to lowercase</bookmark_value> <bookmark_value>capital letters;changing to small letters after periods</bookmark_value> <bookmark_value>quotation marks;changing automatically</bookmark_value> <bookmark_value>words;automatic replacement on/off</bookmark_value> <bookmark_value>lines;automatic drawing on/off</bookmark_value> <bookmark_value>underlining;quick</bookmark_value> <bookmark_value>borders; automatic drawing on/off</bookmark_value> <bookmark_value>automatic changes on/off</bookmark_value> <bookmark_value>changes;automatic</bookmark_value> <bookmark_value>AutoCorrect function;turning off</bookmark_value>"
-msgstr "<bookmark_value>ራሱ በራሱ ማረሚያ ማጥፊያ</bookmark_value> <bookmark_value>ጽሁፍ: ራሱ በራሱ ማረሚያ ማጥፊያ</bookmark_value> <bookmark_value>በላይኛው ጉዳይ: መቀየሪያ ወደ ታችኛው ጉዳይ</bookmark_value> <bookmark_value>አቢይ ፊደሎች: መቀየሪያ ወደ አነስተኛ ፊደሎች ከ ነጥብ በኋላ</bookmark_value> <bookmark_value>የ ጥቅስ ምልክቶች: ራሱ በራሱ መቀየሪያ</bookmark_value> <bookmark_value>ቃላቶች: ራሱ በራሱ መቀየሪያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>መስመሮች: ራሱ በራሱ መሳያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ከ ስሩ ማስመሪያ: በፍጥነት</bookmark_value> <bookmark_value>ድንበሮች: ራሱ በራሱ መሳያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ራሱ በራሱ መቀየሪያ ማብሪያ/ማጥፊያ </bookmark_value> <bookmark_value>መቀየሪያ: ራሱ በራሱ</bookmark_value> <bookmark_value>በራሱ ተግባሮች ማረሚያ: ማጥፊያ</bookmark_value>"
+msgstr "<bookmark_value>ራሱ በራሱ ማረሚያ ማጥፊያ</bookmark_value> <bookmark_value>ጽሁፍ: ራሱ በራሱ ማረሚያ ማጥፊያ</bookmark_value> <bookmark_value>በ ላይኛው ጉዳይ ፊደል: መቀየሪያ ወደ የ ታችኛው ጉዳይ ፊደል</bookmark_value> <bookmark_value>የ ላይኛው ጉዳይ ፊደሎች: መቀየሪያ ወደ ታችኛው ጉዳይ ፊደሎች ከ ነጥብ በኋላ</bookmark_value> <bookmark_value>የ ጥቅስ ምልክቶች: ራሱ በራሱ መቀየሪያ</bookmark_value> <bookmark_value>ቃላቶች: ራሱ በራሱ መቀየሪያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>መስመሮች: ራሱ በራሱ መሳያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ከ ስሩ ማስመሪያ: በፍጥነት</bookmark_value> <bookmark_value>ድንበሮች: ራሱ በራሱ መሳያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ራሱ በራሱ መቀየሪያ ማብሪያ/ማጥፊያ </bookmark_value> <bookmark_value>መቀየሪያ: ራሱ በራሱ</bookmark_value> <bookmark_value>በራሱ ተግባሮች ማረሚያ: ማጥፊያ</bookmark_value>"
#: auto_off.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3145645\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ይጫኑ <emph> ማጥፊያ </emph>"
#: auto_off.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id3155531\n"
"help.text"
msgid "Choose <emph>Tools - Automatic Spell Checking</emph>."
-msgstr "ይምረጡ <emph>መሳሪያዎች - ራሱ በራሱ ፊደል ማረሚያ</emph>."
+msgstr "ይምረጡ <emph> መሳሪያዎች - ራሱ በራሱ ፊደል ማረሚያ </emph>"
#: auto_spellcheck.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3155569\n"
"help.text"
msgid "Right-click a word with a red wavy underline, and then choose a suggested replacement word from the list, or from the <emph>AutoCorrect </emph>submenu."
-msgstr "በ ቀኝ-ይጫኑ ቃላት ከስሩ በ ቀይ ማእበል የተስመረበትን እና ከዛ ይምረጡ የሚመከሩትን መቀየሪያ ቃላት ከ ዝርዝር ውስጥ ወይንም ከ <emph>በራሱ አራሚ</emph>ንዑስ ዝርዝር ውስጥ"
+msgstr "በ ቀኝ-ይጫኑ ቃላት ከስሩ በ ቀይ ማእበል የተስመረበትን እና ከዛ ይምረጡ የሚመከሩትን መቀየሪያ ቃላት ከ ዝርዝር ውስጥ ወይንም ከ <emph> በራሱ አራሚ </emph> ንዑስ ዝርዝር ውስጥ"
#: auto_spellcheck.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3145602\n"
"help.text"
msgid "Choose \"None (Do not check spelling)\"."
-msgstr "ይምረጡ “ምንም (ፊደሉን አታርም)”."
+msgstr "ይምረጡ “ምንም (ፊደሉን አታርም)”"
#: auto_spellcheck.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3155136\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>."
-msgstr "ይጫኑ <emph>መሳሪያዎች - Macros - Organize Macros - %PRODUCTNAME Basic</emph>."
+msgstr "ይጫኑ <emph>መሳሪያዎች - ማክሮስ - ማደረጃ ማክሮስ - %PRODUCTNAME Basic </emph>"
#: autotext.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id3155160\n"
"help.text"
msgid "In the <emph>Macro from</emph> tree control, select %PRODUCTNAME Macros - Gimmicks - AutoText."
-msgstr "ከ <emph>Macro ከ</emph> ዛፍ መቆጣጠሪያዎች ይምረጡ %PRODUCTNAME Macros - Gimmicks - በራሱ ጽሁፍ"
+msgstr "ከ <emph> ማክሮስ ከ</emph> ዛፍ መቆጣጠሪያዎች ይምረጡ %PRODUCTNAME Macros - Gimmicks - በራሱ ጽሁፍ"
#: autotext.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3151277\n"
"help.text"
msgid "Select \"Main\" in the <emph>Existing macros in: AutoText</emph> list and then click <emph>Run</emph>. A list of the current AutoText entries is generated in a separate text document."
-msgstr "ይምረጡ \"ዋናው\" ከ <emph> ነበረው macros ውስጥ: በራሱ ጽሁፍ </emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስኬጃ </emph> ለ አሁኑ የ በራሱ ጽሁፍ ማስገቢያ ዝርዝር አመንጪ በ ተለየ የ ጽሁፍ ሰነድ ውስጥ ይታያል"
+msgstr "ይምረጡ \"ዋናው\" ከ <emph> ነበረው ማክሮስ ውስጥ: ከ በራሱ ጽሁፍ </emph> ዝርዝር ውስጥ: እና ከዛ ይጫኑ <emph> ማስኬጃ </emph> ለ አሁኑ የ በራሱ ጽሁፍ ማስገቢያ ዝርዝር አመንጪ በ ተለየ የ ጽሁፍ ሰነድ ውስጥ ይታያል"
#: autotext.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3151304\n"
"help.text"
msgid "Choose <emph>File - Print</emph>."
-msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>"
#: autotext.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id3155390\n"
"help.text"
msgid "Choose <emph>Format - Character</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ </emph>"
#: background.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "Choose <emph>Format - Paragraph</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - አንቀጽ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ </emph>"
#: background.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3118473\n"
"help.text"
msgid "Choose <emph>Format - Character - Borders</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ለ ባህሪ - ድንበሮች</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ለ ባህሪ - ድንበሮች </emph>"
#: border_character.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3110171\n"
"help.text"
msgid "Select one of the default border styles in the <emph>Default</emph> area."
-msgstr "አንድ ነባር የ ድንበር ዘዴ ይምረጡ ከ <emph>ነባር</emph> ቦታ."
+msgstr "አንድ ነባር የ ድንበር ዘዴ ይምረጡ ከ <emph> ነባር </emph> ቦታ ውስጥ"
#: border_character.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3111663\n"
"help.text"
msgid "Choose <emph>Format - Character - Borders</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - የ ባህሪ - ድንበሮች</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ባህሪ - ድንበሮች </emph>"
#: border_character.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id3149578\n"
"help.text"
msgid "Click the <emph>Borders</emph> icon on the <emph>OLE-Object</emph> toolbar or <emph>Frame</emph> toolbar to open the <emph>Borders</emph> window."
-msgstr "ይጫኑ የ <emph>ድንበሮች</emph> ምልክት ከ <emph>OLE-Object</emph> እቃ መደርደሪያ ላይ ወይንም <emph>ክፈፍ</emph> እቃ መደርደሪያ ላይ ለ መክፈት የ <emph>ድንበሮችን</emph> መስኮት"
+msgstr "ይጫኑ የ <emph> ድንበሮች </emph> ምልክት ከ <emph> OLE-Object </emph> እቃ መደርደሪያ ላይ ወይንም <emph> ክፈፍ </emph> እቃ መደርደሪያ ላይ ለ መክፈት የ <emph> ድንበሮችን </emph> መስኮት"
#: border_object.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - (object name) – Borders</item>.<br/>Replace (object name) with the actual name of the object type you selected."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - (የ እቃው ስም) – ድንበሮች</item>.<br/>መቀየሪያ (የ እቃው ስም) በ ነበረው የ እቃው ስም ላይ የመረጡትን ስም ይጻፉ"
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - (የ እቃው ስም) – ድንበሮች </item><br/> መቀየሪያ (የ እቃው ስም) በ ነበረው የ እቃው ስም ላይ የመረጡትን ስም ይጻፉ"
#: border_object.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "In Writer, you define borders for <emph>page styles</emph>, not individual pages. All changes made to borders apply to all pages that use the same page style. Note that page style changes cannot be undone by the Undo function in $[officename]."
-msgstr "በ መጻፊያ ውስጥ: እርስዎ መግለጽ ይችላሉ ደንበሮች ለ <emph>ገጽ ዘዴዎች</emph>, ለ እያንዳንዱ ገጽ አይደለም: በ ድንበሮች ላይ የሚያደርጉት ለውጥ በ ሁሉም ድንበሮች ላይ ይፈጸማል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ: ያስታውሱ የ ገጽ ዘዴ ለውጦችን መተው አይቻልም: በ መተው ተግባር በ $[officename]."
+msgstr "በ መጻፊያ ውስጥ: እርስዎ መግለጽ ይችላሉ ደንበሮች ለ <emph> ገጽ ዘዴዎች </emph> ለ እያንዳንዱ ገጽ አይደለም: በ ድንበሮች ላይ የሚያደርጉት ለውጥ በ ሁሉም ድንበሮች ላይ ይፈጸማል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ: ያስታውሱ የ ገጽ ዘዴ ለውጦችን መተው አይቻልም: በ መተው ተግባር በ $[officename]"
#: border_page.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "Choose <emph>Format - Page - Borders</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ድንበሮች </emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ድንበሮች </emph>"
#: border_page.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_id3148663\n"
"help.text"
msgid "Choose <emph>Format - Page - Borders</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ድንበሮች </emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ድንበሮች </emph>"
#: border_page.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"par_id3155547\n"
"help.text"
msgid "Type the calculation that you want to insert, for example, <item type=\"literal\">=10000/12</item>, and then press Enter."
-msgstr "ማስላት የሚፈልጉትን ያስገቡ ለምሳሌ <item type=\"literal\">=10000/12</item>, እና ከዛ ይጫኑ ማስገቢያውን"
+msgstr "ማስላት የሚፈልጉትን ያስገቡ ለምሳሌ <item type=\"literal\">=10000/12</item> እና ከዛ ይጫኑ ማስገቢያውን"
#: calculate.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_id3155565\n"
"help.text"
msgid "You can also click the <item type=\"menuitem\">Formula</item> icon on the <item type=\"menuitem\">Formula Bar</item>, and then choose a function for your formula."
-msgstr "እንዲሁም መጫን ይችላሉ የ <item type=\"menuitem\">መቀመሪያ</item> ምልክት በ <item type=\"menuitem\">መቀመሪያ መደርደርያ ላይ </item>እና ከዛ ይምረጡ ተግባሮች ለ መቀመሪያ"
+msgstr "እንዲሁም መጫን ይችላሉ የ <item type=\"menuitem\"> መቀመሪያ </item> ምልክት በ <item type=\"menuitem\"> መቀመሪያ መደርደርያ ላይ </item> እና ከዛ ይምረጡ ተግባሮች ለ መቀመሪያ"
#: calculate.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3156366\n"
"help.text"
msgid "If your text already contains a formula, for example \"12+24*2\", $[officename] can calculate, and then paste the result of the formula in your document, without using the <emph>Formula Bar</emph>."
-msgstr "የ እርስዎ ጽሁፍ ሰነድ ቀደም ብሎ መቀመሪያ የያዘ ከሆነ: ለምሳሌ \"12+24*2\", $[officename] ያሰላል እና ከዛ ይለጥፋል ውጤቱን የ መቀመሪያ በ እርስዎ ሰነድ ውስጥ: ሳይጠቀም <emph>መቀመሪያ መደርደሪያ</emph>."
+msgstr "የ እርስዎ ጽሁፍ ሰነድ ቀደም ብሎ መቀመሪያ የያዘ ከሆነ: ለምሳሌ \"12+24*2\", $[officename] ያሰላል እና ከዛ ይለጥፋል ውጤቱን የ መቀመሪያ በ እርስዎ ሰነድ ውስጥ: ሳይጠቀም <emph> መቀመሪያ መደርደሪያ </emph>"
#: calculate_clipboard.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"par_id5172582\n"
"help.text"
msgid "Place the cursor where you want to insert the result of the formula, and then choose <item type=\"menuitem\">Edit - Paste</item>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V.<br/>The selected formula is replaced by the result."
-msgstr "መጠቆሚያውን የ መቀመሪያ ውጤት ማስገባት በሚፈልጉበት አካባቢ ያደርጉ: እና ከዛ ይምረጡ<item type=\"menuitem\">ማረሚያ - መለጠፊያ</item> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V.<br/>የ ተመረጠው መቀመሪያ ውጤቱን ይቀይራል"
+msgstr "መጠቆሚያውን የ መቀመሪያ ውጤት ማስገባት በሚፈልጉበት አካባቢ ያደርጉ: እና ከዛ ይምረጡ <item type=\"menuitem\"> ማረሚያ - መለጠፊያ </item> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V.<br/> የ ተመረጠው መቀመሪያ ውጤቱን ይቀይራል"
#: calculate_intable.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"par_id3154222\n"
"help.text"
msgid "Place the cursor in the last cell of the column, and then click the <item type=\"menuitem\">Sum</item> icon on the <item type=\"menuitem\">Table Bar</item>.<br/>The <item type=\"menuitem\">Formula Bar</item> appears with the entry \"=sum\"."
-msgstr "መጠቆሚያውን በ መጨረሻው ክፍል አምድ ውስጥ ያድርጉ: እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ድምር </item> ምልክት ከ <item type=\"menuitem\"> ሰንጠረዥ መደርደሪያ ላይ </item>.<br/>የ <item type=\"menuitem\"> መቀመሪያ መደርደሪ </item> ይታያል ማስገቢያ ይዞ \"=ድምር\"."
+msgstr "መጠቆሚያውን በ መጨረሻው ክፍል አምድ ውስጥ ያድርጉ: እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ድምር </item> ምልክት ከ <item type=\"menuitem\"> ሰንጠረዥ መደርደሪያ ላይ </item>:<br/> የ <item type=\"menuitem\"> መቀመሪያ መደርደሪ </item> ይታያል ማስገቢያ ይዞ \"=ድምር\""
#: calculate_intable.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"par_id3150507\n"
"help.text"
msgid "Press Enter, or click <emph>Apply</emph> in the Formula bar. <br/>The sum of the values in the current column is entered in the cell."
-msgstr "ይጫኑ ማስገቢያውን ወይንም ይጫኑ <emph>መፈጸሚያ</emph> በ መቀመሪያ መደርደሪያ ላይ <br/>የ አሁኑ አምድ ጠቅላላ ድምር ወደ ክፍሉ ይገባል"
+msgstr "ይጫኑ ማስገቢያውን ወይንም ይጫኑ <emph> መፈጸሚያ </emph> በ መቀመሪያ መደርደሪያ ላይ <br/> የ አሁኑ አምድ ጠቅላላ ድምር ወደ ክፍሉ ይገባል"
#: calculate_intable.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Click the <item type=\"menuitem\">Formula</item> icon, and choose \"Mean\" from the Statistical Functions list."
-msgstr "ይጫኑ የ <item type=\"menuitem\">መቀመሪያ</item> ምልክት እና ይጫኑ \"አማካይ\" ከ ስታትስቲክ ተግባሮች ዝርዝር ውስጥ"
+msgstr "ይጫኑ የ <item type=\"menuitem\"> መቀመሪያ </item> ምልክት እና ይጫኑ \"አማካይ\" ከ ስታትስቲክ ተግባሮች ዝርዝር ውስጥ"
#: calculate_intext.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id3149481\n"
"help.text"
msgid "Press <emph>Enter</emph>. The result is inserted as a field into the document."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>. ውጤቱ በ ሰነዱ ውስጥ እንደ ሜዳ ይገባል"
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> ውጤቱ በ ሰነዱ ውስጥ እንደ ሜዳ ይገባል"
#: calculate_intext.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id3155551\n"
"help.text"
msgid "In the <item type=\"menuitem\">Formula Bar</item>, enter the function that you want to perform, for example, <item type=\"literal\">=SUM</item>."
-msgstr "በ <item type=\"menuitem\">መቀመሪያ መደርደሪያ </item> ውስጥ መፈጸም የሚፈልጉትን ተግባር ያስገቡ ለምሳሌ <item type=\"literal\">=ድምር</item>."
+msgstr "በ <item type=\"menuitem\"> መቀመሪያ መደርደሪያ </item> ውስጥ መፈጸም የሚፈልጉትን ተግባር ያስገቡ ለምሳሌ <item type=\"literal\">=ድምር</item>"
#: calculate_intext2.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"par_id3155598\n"
"help.text"
msgid "Press <emph>Enter</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: calculate_intext2.xhp
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id3147228\n"
"help.text"
msgid "In the <item type=\"menuitem\">Formula Bar</item>, enter the function that you want to perform, for example, <item type=\"literal\">=SUM</item>."
-msgstr "በ <item type=\"menuitem\">መቀመሪያ መደርደሪያ</item> መፈጸም የሚፈልጉትን ተግባር ያስገቡ: ለምሳሌ <item type=\"literal\">=ድምር</item>."
+msgstr "በ <item type=\"menuitem\"> መቀመሪያ መደርደሪያ </item> መፈጸም የሚፈልጉትን ተግባር ያስገቡ: ለምሳሌ <item type=\"literal\">=ድምር</item>"
#: calculate_multitable.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"par_id3147274\n"
"help.text"
msgid "Press <emph>Enter</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: captions.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"par_id3155586\n"
"help.text"
msgid "Choose <emph>Insert - Caption</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - መግለጫ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - መግለጫ </emph>"
#: captions.xhp
msgctxt ""
@@ -2718,7 +2718,7 @@ msgctxt ""
"par_id3150503\n"
"help.text"
msgid "Choose <emph>Insert - Caption</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - መግለጫ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - መግለጫ </emph>"
#: captions_numbers.xhp
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"par_id3155592\n"
"help.text"
msgid "Choose <emph>Insert - Manual Break</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - በ እጅ መጨረሻ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - በ እጅ መጨረሻ </emph>"
#: change_header.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "የ ቁጥር መስጫ ረቂቅ"
+msgid "Chapter Numbering"
+msgstr "የ ምእራፍ ቁጥር መስጫ"
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>እቅድ;ቁጥር መስጫ</bookmark_value> <bookmark_value>ማጥፊያ;የ ራስጌ ቁጥሮች</bookmark_value> <bookmark_value>የ ምእራፍ ቁጥሮች</bookmark_value> <bookmark_value>ራስጌ;ቁጥር መስጫ አንቀጽ/የ አንቀጽ ዘዴዎች</bookmark_value> <bookmark_value>ቁጥር መስጫ;ራስጌ</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr "<bookmark_value>እቅድ: ቁጥር መስጫ</bookmark_value> <bookmark_value>ምእራፍ: ቁጥር መስጫ</bookmark_value> <bookmark_value>ማጥፊያ: የ ራስጌ ቁጥሮች</bookmark_value> <bookmark_value>ምእራፍ: ቁጥር መስጫ</bookmark_value> <bookmark_value>ራስጌ: ቁጥር መስጫ/የ አንቀጽ ዘዴዎች</bookmark_value> <bookmark_value>ቁጥር መስጫ: ለ ራስጌ</bookmark_value>"
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">የ ቁጥር መስጫ እቅድ</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">የ ምእራፍ ቁጥር መስጫ</link></variable>"
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "እርስዎ ራስጌ በ ደረጃ ማዘጋጀት ይችላሉ ወይንም የ አንቀጽ ዘዴዎች በ ደረጃ ማስተካከያ: እርስዎ እንዲሁም መጨመር ይችላሉ ምእራፍ እና ክፍል መቁጠሪያ በ ራስጌ አንቀጽ ዘዴዎች: በ ነባር የ \"ራስጌ 1\" አንቀጽ ዘዴ ከ ረቂቅ ደረጃ በ ላይ በኩል ነው"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr "እርስዎ ራስጌ በ ደረጃ ማዘጋጀት ይችላሉ ወይንም የ አንቀጽ ዘዴዎች በ ደረጃ ማስተካከል: እርስዎ እንዲሁም መጨመር ይችላሉ ምእራፍ እና ክፍል መቁጠሪያ በ ራስጌ አንቀጽ ዘዴዎች: በ ነባር የ \"ራስጌ 1\" አንቀጽ ዘዴ ከ ረቂቅ ደረጃ በ ላይ በኩል ነው"
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ቁጥር መስጫ ረቂቅ </item> እና ይጫኑ <item type=\"menuitem\"> የ ቁጥር መስጫ </item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ምእራፍ መስጫ </item> እና ከዛ ይጫኑ <item type=\"menuitem\"> የ ቁጥር መስጫ </item> tab."
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "ራሱ በራሱ ቁጥር መስጫ እቅድን ከ አንቀጽ ራስጌ ውስጥ ለማስወገድ"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr "ራሱ በራሱ የ ምእራፍ ቁጥር መስጫን ከ አንቀጽ ራስጌ ውስጥ ለ ማስወገድ"
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ቁጥር መስጫ ረቂቅ </item> እና ይጫኑ <item type=\"menuitem\"> የ ቁጥር መስጫ </item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ምእራፍ ቁጥር መስጫ </item> እና ከዛ ይጫኑ <item type=\"menuitem\"> የ ቁጥር መስጫ </item> tab."
#: chapter_numbering.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_id3147759\n"
"help.text"
msgid "Click \"Set variable\" in the <item type=\"menuitem\">Type</item> list."
-msgstr "ይጫኑ \"ተለዋዋጭ ማሰናጃ\" ከ <item type=\"menuitem\">አይነት</item> ዝርዝር ውስጥ"
+msgstr "ይጫኑ \"ተለዋዋጭ ማሰናጃ\" ከ <item type=\"menuitem\"> አይነት </item> ዝርዝር ውስጥ"
#: conditional_text.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_id7748344\n"
"help.text"
msgid "Enter <item type=\"literal\">1</item> in the <item type=\"menuitem\">Value</item> box, and then click <item type=\"menuitem\">Insert</item>.<br/>The Format list now displays a \"General\" format."
-msgstr "ያስገቡ <item type=\"literal\">1</item> በ <item type=\"menuitem\">ዋጋ</item> ሳጥን ውስጥ እና ከዛ ይጫኑ <item type=\"menuitem\">ማስገቢያ</item>.<br/>የ አቀራረብ ዝርዝር \"ባጠቃላይ\" አቀራረብ ውስጥ ይታያል"
+msgstr "ያስገቡ <item type=\"literal\">1</item> በ <item type=\"menuitem\"> ዋጋ </item> ሳጥን ውስጥ እና ከዛ ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item>.<br/> የ አቀራረብ ዝርዝር \"ባጠቃላይ\" አቀራረብ ውስጥ ይታያል"
#: conditional_text.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "Type <item type=\"literal\">Reminder EQ \"3\"</item> in the <item type=\"menuitem\">Condition</item> box. In other words, the conditional text will be displayed when the variable in the field that you defined in the first part of this example is equal to three."
-msgstr "ይጻፉ <item type=\"literal\">አስታዋሽ: እኩል ነው \"3\"</item> በ <item type=\"menuitem\">ሁኔታው</item>ሳጥን ውስጥ: በ ሌላ ቃል: የ ሁኔታው ጽሁፍ ይታያል ተለዋዋጭ በ ሜዳ ውስጥ እርስዎ በ ገለጹት በ መጀመሪያው ክፍል በዚህ ምሳሌ ውስጥ እኩል ይሆናል ከ ሶስት ጋር"
+msgstr "ይጻፉ <item type=\"literal\"> አስታዋሽ: እኩል ነው \"3\" </item> በ <item type=\"menuitem\"> ሁኔታው </item> ሳጥን ውስጥ: በ ሌላ ቃል: የ ሁኔታው ጽሁፍ ይታያል ተለዋዋጭ በ ሜዳ ውስጥ: እርስዎ በ ገለጹት በ መጀመሪያው ክፍል በዚህ ምሳሌ ውስጥ እኩል ይሆናል ከ ሶስት ጋር"
#: conditional_text.xhp
msgctxt ""
@@ -3190,7 +3190,7 @@ msgctxt ""
"par_id3150473\n"
"help.text"
msgid "Click <emph>Insert</emph>, and then click <emph>Close</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> እና ከዛ ይጫኑ <emph>መዝጊያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ከዛ ይጫኑ <emph> መዝጊያ </emph>"
#: conditional_text.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_id3155110\n"
"help.text"
msgid "Place your cursor in front of the field that you defined in the first part of this example, and then choose <emph>Edit - Fields</emph>."
-msgstr "የ እርስዎን መጠቆሚያ ከ ሜዳው ፊት ለ ፊት ያድርጉ እርስዎ በ መጀመሪያው ክፍል እንደ ገለጹት ለምሳሌ: እና ከዛ ይምረጡ <emph>ማረሚያ - ሜዳዎች</emph>."
+msgstr "የ እርስዎን መጠቆሚያ ከ ሜዳው ፊት ለ ፊት ያድርጉ እርስዎ በ መጀመሪያው ክፍል እንደ ገለጹት ለምሳሌ: እና ከዛ ይምረጡ <emph> ማረሚያ - ሜዳዎች </emph>"
#: conditional_text.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_id3155136\n"
"help.text"
msgid "Replace the number in the <item type=\"menuitem\">Value</item> box with 3, and then click <item type=\"menuitem\">Close</item>."
-msgstr "ቁጥሩን ይቀይሩ ከ <item type=\"menuitem\">ዋጋው</item>ሳጥን ውስጥ በ 3, እና ከዛ ይጫኑ <item type=\"menuitem\">መዝጊያ</item>."
+msgstr "ቁጥሩን ይቀይሩ ከ <item type=\"menuitem\"> ዋጋው </item> ሳጥን ውስጥ በ 3, እና ከዛ ይጫኑ <item type=\"menuitem\"> መዝጊያ </item>"
#: conditional_text.xhp
msgctxt ""
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "Click <emph>Insert</emph>, and then click <emph>Close</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> እና ከዛ ይጫኑ <emph>መዝጊያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ከዛ ይጫኑ <emph> መዝጊያ </emph>"
#: delete_from_dict.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"par_id3151391\n"
"help.text"
msgid "Select the user-defined dictionary that you want to edit in the <item type=\"menuitem\">User-defined</item> list, and then click <item type=\"menuitem\">Edit</item>."
-msgstr "ይምረጡ በ ተጠቃሚው-የሚወሰን መዝገበ ቃላት ማረም ለሚፈልጉት <item type=\"menuitem\">በ ተጠቃሚው-የሚወሰን</item>ዝርዝር ውስጥ እና ከዛ ይምረጡ <item type=\"menuitem\">ማረሚያ</item>."
+msgstr "ይምረጡ በ ተጠቃሚው-የሚወሰን መዝገበ ቃላት ማረም ለሚፈልጉት <item type=\"menuitem\"> በ ተጠቃሚው-የሚወሰን </item> ዝርዝር ውስጥ እና ከዛ ይምረጡ <item type=\"menuitem\"> ማረሚያ </item>"
#: delete_from_dict.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3153153\n"
"help.text"
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
-msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ በ ቀኝ-ይጫኑ \"የ ግራ ገጽ\" እና ይምረጡ <emph>ማሻሻያ</emph>."
+msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ በ ቀኝ-ይጫኑ \"የ ግራ ገጽ\" እና ይምረጡ <emph> ማሻሻያ </emph>"
#: even_odd_sdw.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3145299\n"
"help.text"
msgid "In the list of page styles, right-click \"Right Page\" and choose <emph>Modify</emph>."
-msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ ፡ በ ቀኝ-ይጫኑ \"የ ቀኝ ገጽ\" እና ይምረጡ <emph>ማሻሻያ</emph>."
+msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በ ቀኝ-ይጫኑ \"የ ቀኝ ገጽ\" እና ይምረጡ <emph> ማሻሻያ </emph>"
#: even_odd_sdw.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id8147221\n"
"help.text"
msgid "Remove the check mark from <emph>Print automatically inserted blank pages</emph>."
-msgstr "ምልክት የ ተደረገበትን ያስወግዱ ከ <emph>የ ገቡትን ባዶ ገጾች ራሱ በራሱ ማተሚያ ላይ</emph>."
+msgstr "ምልክት የ ተደረገበትን ያስወግዱ ከ <emph> የ ገቡትን ባዶ ገጾች ራሱ በራሱ ማተሚያ ላይ </emph>"
#: even_odd_sdw.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3155608\n"
"help.text"
msgid "Select the field and choose <emph>Edit - Cut</emph>."
-msgstr "ይምረጡ ሜዳዎችን እና <emph>ማረሚያ - መቁረጫ </emph>."
+msgstr "ይምረጡ ሜዳዎችን እና <emph> ማረሚያ - መቁረጫ </emph>"
#: field_convert.xhp
msgctxt ""
@@ -3654,7 +3654,7 @@ msgctxt ""
"par_id3154238\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph>"
#: field_convert.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id3147267\n"
"help.text"
msgid "Run macro"
-msgstr "macro ማስኬጃ"
+msgstr "ማክሮስ ማስኬጃ"
#: fields.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"par_id3147290\n"
"help.text"
msgid "Runs a macro."
-msgstr "macro ማስኬጃ"
+msgstr "ማክሮስ ማስኬጃ"
#: fields.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"par_id3151244\n"
"help.text"
msgid "Placeholder, hidden text, insert reference, variable, database, and user-defined fields display a help tip when you rest the mouse pointer over the field in a document. To enable this feature, ensure that the Extended Tips option (<item type=\"menuitem\">What's This?</item>) is selected in the <item type=\"menuitem\">Help</item> menu."
-msgstr "ቦታ ያዢዎች: የ ተደበቀ ጽሁፍ: ማመሳከሪያ ማስገቢያ: ተለዋዋጭ: ዳታቤዝ: እና በ ተጠቃሚ-የሚገለጽ ሜዳዎች ማሳያ: የ እርዳታ ምክር እርስዎ የ አይጥ መጠቆሚያውን በ ሜዳ ላይ በሚያደርጉ ጊዜ በ ሰነድ ውስጥ: ይህን ገጽታ ለ ማስቻል እርግጠኛ ይሁኑ የ ተስፋፉ ምክሮች ምርጫ (<item type=\"menuitem\"> ይህ ምንድነው?</item>) መመረጡን በ <item type=\"menuitem\"> እርዳታ </item> ዝርዝር ውስጥ"
+msgstr "ቦታ ያዢዎች: የ ተደበቀ ጽሁፍ: ማመሳከሪያ ማስገቢያ: ተለዋዋጭ: ዳታቤዝ: እና በ ተጠቃሚ-የሚገለጽ ሜዳዎች ማሳያ: የ እርዳታ ምክር እርስዎ የ አይጥ መጠቆሚያውን በ ሜዳ ላይ በሚያደርጉ ጊዜ በ ሰነድ ውስጥ: ይህን ገጽታ ለ ማስቻል እርግጠኛ ይሁኑ የ ተስፋፉ ምክሮች ምርጫ (<item type=\"menuitem\"> ይህ ምንድነው? </item>) መመረጡን በ <item type=\"menuitem\"> እርዳታ </item> ዝርዝር ውስጥ"
#: fields.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id3147679\n"
"help.text"
msgid "Choose <emph>Insert - Field - More Fields</emph> and click the <emph>Document</emph> tab."
-msgstr "ይምረጡ <emph>ማስገኒያ - ሜዳ - ተጨማሪ ሜዳዎች</emph> እና ከዛ ይጫኑ የ <emph>ሰነድ</emph> tab."
+msgstr "ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች </emph> እና ከዛ ይጫኑ የ <emph> ሰነድ </emph> tab."
#: fields_date.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "Click “Date” in the <item type=\"menuitem\">Type</item> list and do one of the following:"
-msgstr "ይጫኑ “ቀን” ከ <item type=\"menuitem\">አይነት</item> ዝርዝር ውስጥእና ከ እነዚህ አንዱን ይፈጽሙ:"
+msgstr "ይጫኑ “ቀን” ከ <item type=\"menuitem\"> አይነት </item> ዝርዝር ውስጥ እና ከ እነዚህ አንዱን ይፈጽሙ:"
#: fields_date.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"par_id3155620\n"
"help.text"
msgid "Click “Input field”in the <item type=\"menuitem\">Type</item> list."
-msgstr "ይጫኑ “ማስገቢያ ሜዳ” ከ <item type=\"menuitem\"> አይነት</item> ዝርዝር ውስጥ"
+msgstr "ይጫኑ “ማስገቢያ ሜዳ” ከ <item type=\"menuitem\"> አይነት </item> ዝርዝር ውስጥ"
#: fields_enter.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3154257\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item> and type the text for the variable."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> እና ይጻፉ ለተለዋጩ"
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> እና ይጻፉ ለተለዋጩ"
#: fields_enter.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>."
+msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>"
#: fields_userdata.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_id3145297\n"
"help.text"
msgid "In the <item type=\"menuitem\">Hide</item> area, select the <item type=\"menuitem\">Hide</item> check box."
-msgstr "ከ <item type=\"menuitem\">መደብቂያ</item> ቦታ ይምረጡ የ <item type=\"menuitem\">መደበቂያ</item> ሳጥን ውስጥ ምልክት ያድርጉ"
+msgstr "ከ <item type=\"menuitem\"> መደብቂያ </item> ቦታ ይምረጡ የ <item type=\"menuitem\"> መደበቂያ </item> ሳጥን ውስጥ ምልክት ያድርጉ"
#: fields_userdata.xhp
msgctxt ""
@@ -4134,7 +4134,7 @@ msgctxt ""
"par_id3155573\n"
"help.text"
msgid "Click <emph>Insert</emph> and then save the document."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> እና ሰነዱን ያስቀምጡ"
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ሰነዱን ያስቀምጡ"
#: fields_userdata.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id6957304\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
-msgstr "ይምረጡ <emph>ማረሚያ - መፈለጊያ & መቀየሪያ</emph> ለ መክፈት መፈለጊያ & መቀየሪያ ንግግርን"
+msgstr "ይምረጡ <emph> ማረሚያ - መፈለጊያ & መቀየሪያ </emph> ለ መክፈት መፈለጊያ & ንግግር መቀየሪያ"
#: finding.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_id5684072\n"
"help.text"
msgid "Either click <emph>Find Next</emph> or <emph>Find All</emph>."
-msgstr "አንዱን ይጫኑ <emph>ቀጥሎ መፈለጊያ</emph> ወይንም <emph>ሁሉንም መፈለጊያ</emph>."
+msgstr "አንዱን ይጫኑ <emph> ቀጥሎ መፈለጊያ </emph> ወይንም <emph> ሁሉንም መፈለጊያ </emph>"
#: finding.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_id4377269\n"
"help.text"
msgid "When you click <emph>Find Next</emph>, Writer will show you the next text that is equal to your entry. You can watch and edit the text, then click <emph>Find Next</emph> again to advance to the next found text."
-msgstr "ይህን ሲጫኑ <emph>ቀጥሎ መፈለጊያ</emph>, መጻፊያ እርስዎ ካስገቡት ጋር የሚመሳሰለውን ጽሁፍ ያሳያል: ከዛ እርስዎ እያዩ ጽሁፉን ማረም ይችላሉ: ከዛ ይጫኑ <emph>ቀጥሎ መፈለጊያ</emph> እንደገና ወደ ቀጥሎ ወደሚገኘው ጽሁፍ ያመራል"
+msgstr "ይህን ሲጫኑ <emph> ቀጥሎ መፈለጊያ </emph> መጻፊያ እርስዎ ካስገቡት ጋር የሚመሳሰለውን ጽሁፍ ያሳያል: ከዛ እርስዎ እያዩ ጽሁፉን ማረም ይችላሉ: ከዛ ይጫኑ <emph> ቀጥሎ መፈለጊያ </emph> እንደገና ወደ ቀጥሎ ወደሚገኘው ጽሁፍ ያመራል"
#: finding.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_id2467421\n"
"help.text"
msgid "Choose Edit - Find & Replace to open the Find & Replace dialog."
-msgstr "ይምረጡ ማረሚያ - መፈለጊያ & መቀየሪያ ለ መክፈት መፈለጊያ & መቀየሪያ ንግግር"
+msgstr "ይምረጡ ማረሚያ - መፈለጊያ & መቀየሪያ ለ መክፈት መፈለጊያ & ንግግር መቀየሪያ"
#: finding.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"par_id24109\n"
"help.text"
msgid "Either click <emph>Replace</emph> or <emph>Replace All</emph>."
-msgstr "አንዱን ይጫኑ <emph>መቀየሪያ</emph> ወይንም <emph>ሁሉንም መቀየሪያ</emph>."
+msgstr "አንዱን ይጫኑ <emph> መቀየሪያ </emph> ወይንም <emph> ሁሉንም መቀየሪያ </emph>"
#: finding.xhp
msgctxt ""
@@ -4590,7 +4590,7 @@ msgctxt ""
"par_id7540818\n"
"help.text"
msgid "When you click <emph>Replace All</emph>, Writer replaces all text that matches your entry."
-msgstr "በሚጫኑ ጊዜ <emph>ሁሉንም መቀየሪያ</emph>, መጻፊያ ይቀይራል ሁሉንም ጽሁፍ ያስገቡትን የሚመሳሰለውን በሙሉ"
+msgstr "በሚጫኑ ጊዜ <emph> ሁሉንም መቀየሪያ </emph> መጻፊያ ይቀይራል ሁሉንም ጽሁፍ ያስገቡትን የሚመሳሰለውን በሙሉ"
#: finding.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"par_id2696920\n"
"help.text"
msgid "Choose Edit - Find & Replace to open the Find & Replace dialog."
-msgstr "ይምረጡ ማረሚያ - መፈለጊያ & መቀየሪያ ለ መክፈት የ መፈለጊያ & መቀየሪያ ንግግር"
+msgstr "ይምረጡ ማረሚያ - መፈለጊያ & መቀየሪያ ለ መክፈት የ መፈለጊያ & ንግግር መቀየሪያ"
#: finding.xhp
msgctxt ""
@@ -4622,7 +4622,7 @@ msgctxt ""
"par_id896938\n"
"help.text"
msgid "Click <emph>Other options</emph> to expand the dialog."
-msgstr "ይጫኑ <emph>ተጨማሪ ምርጫዎች</emph> ንግግሩን ለማስፋት"
+msgstr "ይጫኑ <emph> ተጨማሪ ምርጫዎች </emph> ንግግሩን ለማስፋት"
#: finding.xhp
msgctxt ""
@@ -4630,7 +4630,7 @@ msgctxt ""
"par_id9147007\n"
"help.text"
msgid "Check <item type=\"menuitem\">Paragraph Styles</item>.<br/>The <item type=\"menuitem\">Find</item> text box now is a list box, where you can select any of the Paragraph Styles that are applied in the current document."
-msgstr "ይመርምሩ <item type=\"menuitem\">የ አንቀጽ ዘዴዎች</item>.<br/>የ <item type=\"menuitem\">መፈለጊያ</item> ጽሁፍ ሳጥን አሁን የ ዝርዝር ሳጥን ነው: እርስዎ መምረጥ የሚችሉበት ማንኛውንም የ አንቀጽ ዘዴዎች የሚፈጸሙትን በ አሁኑ ሰነድ ውስጥ"
+msgstr "ይመርምሩ <item type=\"menuitem\"> የ አንቀጽ ዘዴዎች </item>.<br/> የ <item type=\"menuitem\"> መፈለጊያ </item> ጽሁፍ ሳጥን አሁን የ ዝርዝር ሳጥን ነው: እርስዎ መምረጥ የሚችሉበት ማንኛውንም የ አንቀጽ ዘዴዎች የሚፈጸሙትን በ አሁኑ ሰነድ ውስጥ"
#: finding.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id679342\n"
"help.text"
msgid "Select the style to search for, then click <emph>Find Next</emph> or <emph>Find All</emph>."
-msgstr "የሚፈልጉትን ዘዴ ይምረጡ እና ከዛ ይጫኑ <emph>ቀጥሎ መፈለጊያ</emph> ወይንም <emph>ሁሉንም መፈለጊያ</emph>."
+msgstr "የሚፈልጉትን ዘዴ ይምረጡ እና ከዛ ይጫኑ <emph> ቀጥሎ መፈለጊያ </emph> ወይንም <emph> ሁሉንም መፈለጊያ </emph>"
#: finding.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_id2448805\n"
"help.text"
msgid "Choose Edit - Find & Replace to open the Find & Replace dialog."
-msgstr "ይምረጡ ማረሚያ - መፈለጊያ & መቀየሪያ ለ መክፈት የ መፈለጊያ & መቀየሪያ ንግግር"
+msgstr "ይምረጡ ማረሚያ - መፈለጊያ & መቀየሪያ ለ መክፈት የ መፈለጊያ & ንግግር መቀየሪያ"
#: finding.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_id4542985\n"
"help.text"
msgid "Click <emph>More Options</emph> to expand the dialog."
-msgstr "ይጫኑ <emph>ተጨማሪ ምርጫዎች</emph> ንግግሩን ለማስፋት"
+msgstr "ይጫኑ <emph> ተጨማሪ ምርጫዎች </emph> ንግግሩን ለማስፋት"
#: finding.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_id7783745\n"
"help.text"
msgid "Click <emph>Find Next</emph> or <emph>Find All</emph>."
-msgstr "ይጫኑ <emph>ቀጥሎ መፈለጊያ</emph> ወይንም <emph>ሁሉንም መፈለጊያ</emph>."
+msgstr "ይጫኑ <emph> ቀጥሎ መፈለጊያ </emph> ወይንም <emph> ሁሉንም መፈለጊያ </emph>"
#: finding.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_id4646748\n"
"help.text"
msgid "When you have enabled Asian language support under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>, the Find & Replace dialog offers options to search Asian text."
-msgstr "እርስዎ በሚያስችሉ ጊዜ የ እሲያ ቋንቋ ድጋፍ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች</emph>, መፈለጊያ & መቀየሪያ ንግግር ምርጫዎች ያቀርባል የ እሲያ ጽሁፍ ፍለጋ ውጤት"
+msgstr "እርስዎ በሚያስችሉ ጊዜ የ እሲያ ቋንቋ ድጋፍ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph> መፈለጊያ & መቀየሪያ ንግግር ምርጫዎች ያቀርባል የ እሲያ ጽሁፍ ፍለጋ ውጤት"
#: finding.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id3150727\n"
"help.text"
msgid "Click <emph>Insert</emph> to insert the field with the page number."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> ሜዳ ለማስገቢያ ከ ገጽ ቁጥር ጋር"
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> ሜዳ ለማስገቢያ ከ ገጽ ቁጥር ጋር"
#: footer_pagenumber.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id3145029\n"
"help.text"
msgid "To change the format of a footnote, click in the footnote, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline> to open the Styles and Formatting window, right-click \"Footnote\" in the list, and then choose <emph>Modify</emph>."
-msgstr "የ ግርጌ ማስታወሻ አቀራረብ ለ መቀየር ይጫኑ በ ግርጌ ማስታወሻ ላይ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+T</caseinline><defaultinline>F11</defaultinline></switchinline> ለ መክፈት ዘዴዎች እና አቀራረብ መስኮት: በ ቀኝ-ይጫኑ \"ግርጌ ማስታወሻ\" ከ ዝርዝሩ ውስጥ እና ከዛ ይምረጡ <emph>ማሻሻያ</emph>."
+msgstr "የ ግርጌ ማስታወሻ አቀራረብ ለ መቀየር ይጫኑ በ ግርጌ ማስታወሻ ላይ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+T</caseinline><defaultinline>F11</defaultinline></switchinline> ለ መክፈት ዘዴዎች እና አቀራረብ መስኮት: በ ቀኝ-ይጫኑ \"ግርጌ ማስታወሻ\" ከ ዝርዝሩ ውስጥ እና ከዛ ይምረጡ <emph> ማሻሻያ </emph>"
#: footnote_usage.xhp
msgctxt ""
@@ -5110,7 +5110,7 @@ msgctxt ""
"par_id3145081\n"
"help.text"
msgid "To edit the numbering properties of a footnote or endnote anchor, click in front of the anchor, and choose <link href=\"text/swriter/01/02150000.xhp\" name=\"Edit - Footnote\"><emph>Edit - Footnote/Endnote</emph></link>."
-msgstr "የ ቁጥር መስጫ ባህሪዎች ለማረም ለ ግርጌ ማስታወሻ እና ለ መጨረሻ ማስታወሻ ማስቆሚያ: ይጫኑ ከ ማስቆሚያው ፊት ለ ፊት: እና ይምረጡ <link href=\"text/swriter/01/02150000.xhp\" name=\"Edit - Footnote\"><emph>ማረሚያ - ግርጌ ማስታወሻ/መጨረሻ ማስታወሻ</emph></link>."
+msgstr "የ ቁጥር መስጫ ባህሪዎች ለማረም ለ ግርጌ ማስታወሻ እና ለ መጨረሻ ማስታወሻ ማስቆሚያ: ይጫኑ ከ ማስቆሚያው ፊት ለ ፊት: እና ይምረጡ <link href=\"text/swriter/01/02150000.xhp\" name=\"Edit - Footnote\"><emph> ማረሚያ - ግርጌ ማስታወሻ/መጨረሻ ማስታወሻ </emph></link>"
#: footnote_usage.xhp
msgctxt ""
@@ -5182,7 +5182,7 @@ msgctxt ""
"par_id3155620\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ዘዴዎች እና አቀራረብ </emph>"
#: footnote_with_line.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_idN10653\n"
"help.text"
msgid "The <link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> helps you to create form letters."
-msgstr "የ <link href=\"text/swriter/01/mailmerge00.xhp\">ደብዳቤ ማዋሀጃ አዋቂ</link> የ ደብዳቤዎች ፎርም ለ መፍጠር ይረዳዎታል"
+msgstr "የ <link href=\"text/swriter/01/mailmerge00.xhp\"> ደብዳቤ ማዋሀጃ አዋቂ </link> የ ደብዳቤዎች ፎርም ለ መፍጠር ይረዳዎታል"
#: form_letters_main.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_idN10664\n"
"help.text"
msgid "To create a form letter"
-msgstr "የ ፎርም ደብዳቤ ለመፍጠር"
+msgstr "የ ፎርም ደብዳቤ ለ መፍጠር"
#: form_letters_main.xhp
msgctxt ""
@@ -5318,7 +5318,7 @@ msgctxt ""
"par_idN1066B\n"
"help.text"
msgid "Choose <emph>Tools - Mail Merge Wizard</emph>."
-msgstr "ይምረጡ <emph>እቃዎች - የ ደብዳቤ ማዋሀጃ አዋቂ</emph>."
+msgstr "ይምረጡ <emph> እቃዎች - የ ደብዳቤ ማዋሀጃ አዋቂ </emph>"
#: form_letters_main.xhp
msgctxt ""
@@ -5334,7 +5334,7 @@ msgctxt ""
"par_idN10676\n"
"help.text"
msgid "Select <emph>Start from a template</emph>, and click the <emph>Browse</emph> button."
-msgstr "ይምረጡ <emph>ከ ቴምፕሌት ማስጀመሪያ</emph>, እና ይጫኑ የ <emph>መቃኛ</emph> ቁልፍ"
+msgstr "ይምረጡ <emph> ከ ቴምፕሌት ማስጀመሪያ </emph> እና ይጫኑ የ <emph> መቃኛ </emph> ቁልፍ"
#: form_letters_main.xhp
msgctxt ""
@@ -5582,7 +5582,7 @@ msgctxt ""
"par_id3149956\n"
"help.text"
msgid "Choose <emph>File - New - Master Document</emph>."
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ዋናውን ሰነድ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ዋናውን ሰነድ </emph>"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"par_id3149612\n"
"help.text"
msgid "Open an existing document and choose <emph>File - Send - Create Master Document</emph>."
-msgstr "የ ነበረ ሰነድ ይክፈቱ እና ይምረጡ <emph>ፋይል - መላኪያ - ዋና ሰነድ መፍጠሪያ</emph>."
+msgstr "የ ነበረ ሰነድ ይክፈቱ እና ይምረጡ <emph> ፋይል - መላኪያ - ዋና ሰነድ መፍጠሪያ </emph>"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5598,7 +5598,7 @@ msgctxt ""
"par_id3149873\n"
"help.text"
msgid "If you are creating a new master document, the first entry in the Navigator should be a <item type=\"menuitem\">Text</item> entry. Type an introduction or enter some text. This ensures that after having edited an existing style in the master document, you see the changed style when viewing the subdocuments."
-msgstr "አዲስ ዋናውን ሰነድ የሚፈጥሩ ከሆነ መጀመሪያ የሚያስገቡት በ መቃኛ ውስጥ <item type=\"menuitem\">ጽሁፍ</item>ማስገቢያ መሆን አለበት: መግቢያ ይጻፉ ወይንም አንድ ጽሁፍ ያስገቡ: ይህ የሚያረጋግጠው የ ነበረውን ዘዴ ካረሙ በኋላ በ ዋናው ሰነድ የ ተለወጠውን ዘዴ በ ንዑስ ሰነዶች ውስጥ ይታያሉ"
+msgstr "አዲስ ዋናውን ሰነድ የሚፈጥሩ ከሆነ መጀመሪያ የሚያስገቡት በ መቃኛ ውስጥ <item type=\"menuitem\"> ጽሁፍ </item> ማስገቢያ መሆን አለበት: መግቢያ ይጻፉ ወይንም አንድ ጽሁፍ ያስገቡ: ይህ የሚያረጋግጠው የ ነበረውን ዘዴ ካረሙ በኋላ በ ዋናው ሰነድ የ ተለወጠውን ዘዴ በ ንዑስ ሰነዶች ውስጥ ይታያሉ"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_id3153382\n"
"help.text"
msgid "Choose <emph>File - Save</emph>."
-msgstr "ይምረጡ <emph>ፋይል - ማስቀመጫ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማስቀመጫ </emph>"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5742,7 +5742,7 @@ msgctxt ""
"par_id3153876\n"
"help.text"
msgid "In the master document, choose <emph>View - Styles and Formatting</emph>, and click the <emph>Paragraph Styles</emph> icon."
-msgstr "ከ ዋናው ሰነድ ውስጥ ይምረጡ <emph>አቀራረብ - ዘዴዎች እና አቀራረብ </emph> እና ይጫኑ የ <emph>አንቀጽ ዘዴዎችን</emph> ምልክት"
+msgstr "ከ ዋናው ሰነድ ውስጥ ይምረጡ <emph> አቀራረብ - ዘዴዎች እና አቀራረብ </emph> እና ይጫኑ የ <emph> አንቀጽ ዘዴዎችን </emph> ምልክት"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5798,7 +5798,7 @@ msgctxt ""
"par_id3150315\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Export</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - መላኪያ</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - መላኪያ </item>"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5806,7 +5806,7 @@ msgctxt ""
"par_id3148580\n"
"help.text"
msgid "In the <emph>File format</emph> list, select a text document file format and click <emph>Export</emph>."
-msgstr "ከ <emph>ፋይል አቀራረብ</emph> ዝርዝር ውስጥ ይምረጡ የ ጽሁፍ ሰነድ ፋይል አቀራረብ እና ይጫኑ <emph>መላኪያ</emph>."
+msgstr "ከ <emph> ፋይል አቀራረብ </emph> ዝርዝር ውስጥ ይምረጡ የ ጽሁፍ ሰነድ ፋይል አቀራረብ እና ይጫኑ <emph> መላኪያ </emph>"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"bm_id3155863\n"
"help.text"
msgid "<bookmark_value>headers;about</bookmark_value> <bookmark_value>footers;about</bookmark_value> <bookmark_value>HTML documents; headers and footers</bookmark_value>"
-msgstr "<bookmark_value>ራስጌዎች;ስለ</bookmark_value> <bookmark_value>ግርጌዎች;ስለ</bookmark_value> <bookmark_value>የ HTML ሰነዶች; ራስጌዎች እና ግርጌዎች</bookmark_value>"
+msgstr "<bookmark_value>ራስጌዎች: ስለ</bookmark_value> <bookmark_value>ግርጌዎች: ስለ</bookmark_value> <bookmark_value>የ HTML ሰነዶች: ራስጌዎች እና ግርጌዎች</bookmark_value>"
#: header_footer.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3150510\n"
"help.text"
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
-msgstr "በ ቀኝ-ይጫኑ \"የ ቀኝ ገጽ\" ከ ዝርዝር የ ገጽ ዘዴዎች እና ይምረጡ <emph>ማሻሻያ</emph>."
+msgstr "በ ቀኝ-ይጫኑ \"የ ቀኝ ገጽ\" ከ ዝርዝር የ ገጽ ዘዴዎች እና ይምረጡ <emph> ማሻሻያ </emph>"
#: header_pagestyles.xhp
msgctxt ""
@@ -6030,7 +6030,7 @@ msgctxt ""
"par_id3150714\n"
"help.text"
msgid "In the <emph>Styles and Formatting</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
-msgstr "ከ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት በቀኝ-ይጫኑ \"የ ግራ ገጽ\" ከ ዝርዝር የ ገጽ ዘዴዎች እና ይምረጡ <emph> ማሻሻያ </emph>."
+msgstr "ከ <emph> ዘዴዎች እና አቀራረብ </emph> መስኮት በቀኝ-ይጫኑ \"የ ግራ ገጽ\" ከ ዝርዝር የ ገጽ ዘዴዎች እና ይምረጡ <emph> ማሻሻያ </emph>"
#: header_pagestyles.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "የ ምእራፍ መረጃ ከ ማስገባትዎ በፊት በ ራስጌ ወይንም ግርጌ ውስጥ: እርስዎ መጀመሪያ የ ረቂቅ ቁጥር መስጫ ምርጫ ለ አንቀጽ ዘዴ ማሰናዳት አለብዎት እርስዎ መጠቀም ከ ፈለጉ የ ምእራፍ አርእስቶች"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr "የ ምእራፍ መረጃ ከ ማስገባትዎ በፊት በ ራስጌ ወይንም በ ግርጌ ውስጥ: እርስዎ መጀመሪያ የ ምእራፍ ቁጥር መስጫ ምርጫ ለ አንቀጽ ዘዴ ማሰናዳት አለብዎት: እርስዎ መጠቀም ከ ፈለጉ የ ምእራፍ አርእስቶች"
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "ይምረጡ <emph>እቃዎች - የ ቁጥር መስጫ እቅድ</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ምእራፍ ቁጥር </item>"
#: header_with_chapter.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3153175\n"
"help.text"
msgid "Click \"Chapter\" in the <item type=\"menuitem\">Type</item> list and \"Chapter number and name\" in the <item type=\"menuitem\">Format</item> list."
-msgstr "ይጫኑ \"ምእራፍ\" ከ <item type=\"menuitem\">አይነት</item> ዝርዝር ውስጥ እና \"የ ምእራፍ ቁጥር እና ስም\" ከ <item type=\"menuitem\">አቀራረብ</item> ዝርዝር ውስጥ"
+msgstr "ይጫኑ \"ምእራፍ\" ከ <item type=\"menuitem\"> አይነት </item> ዝርዝር ውስጥ እና \"የ ምእራፍ ቁጥር እና ስም\" ከ <item type=\"menuitem\"> አቀራረብ </item> ዝርዝር ውስጥ"
#: header_with_chapter.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"par_id3147065\n"
"help.text"
msgid "Click <emph>Insert</emph> and then click <emph>Close</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> እና ከዛ ይጫኑ <emph>መዝጊያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ከዛ ይጫኑ <emph> መዝጊያ </emph>"
#: header_with_chapter.xhp
msgctxt ""
@@ -6286,7 +6286,7 @@ msgctxt ""
"par_id3147128\n"
"help.text"
msgid "To add a border or a shadow to the header or the footer, click <item type=\"menuitem\">More</item>. The <item type=\"menuitem\">Border/Background</item> dialog opens."
-msgstr "ለ መጨመር ድንበር ወይንም ጥላ ወደ ራስጌ ወይንም ግርጌ ይጫኑ <item type=\"menuitem\">ተጨማሪ</item> የ <item type=\"menuitem\">ድንበር/መደብ</item> ንግግር ይከፈታል"
+msgstr "ለ መጨመር ድንበር ወይንም ጥላ ወደ ራስጌ ወይንም ግርጌ ይጫኑ <item type=\"menuitem\"> ተጨማሪ </item> የ <item type=\"menuitem\"> ድንበር/መደብ </item> ንግግር ይከፈታል"
#: header_with_line.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"par_id3153131\n"
"help.text"
msgid "Click in your document and choose <emph>Insert - Field - More Fields</emph>."
-msgstr "ይጫኑ በ እርስዎ ሰነድ ላይ እና ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች </emph>."
+msgstr "ይጫኑ በ እርስዎ ሰነድ ላይ እና ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች </emph>"
#: hidden_text.xhp
msgctxt ""
@@ -6382,7 +6382,7 @@ msgctxt ""
"par_id3149620\n"
"help.text"
msgid "Type a name for the variable in the <item type=\"menuitem\">Name</item> box, for example, <item type=\"literal\">Hide</item>."
-msgstr "ለተለዋዋጩ ስም ይጻፉ በ <item type=\"menuitem\">ስም</item> ሳጥን ውስጥ ለምሳሌ <item type=\"literal\">መደበቂያ</item>."
+msgstr "ለ ተለዋዋጩ ስም ይጻፉ በ <item type=\"menuitem\"> ስም </item> ሳጥን ውስጥ ለምሳሌ <item type=\"literal\"> መደበቂያ </item>"
#: hidden_text.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3149869\n"
"help.text"
msgid "Enter a value for the variable in the <item type=\"menuitem\">Value</item> box, for example, <item type=\"literal\">1</item>."
-msgstr "ለተለዋዋጩ ዋጋ ያስገቡ በ <item type=\"menuitem\">ዋጋ</item> ሳጥን ውስጥ ለምሳሌ <item type=\"literal\">1</item>."
+msgstr "ለ ተለዋዋጩ ዋጋ ያስገቡ በ <item type=\"menuitem\"> ዋጋ </item> ሳጥን ውስጥ ለምሳሌ <item type=\"literal\">1</item>"
#: hidden_text.xhp
msgctxt ""
@@ -6398,7 +6398,7 @@ msgctxt ""
"par_id3145108\n"
"help.text"
msgid "To hide the variable in your document, select <emph>Invisible</emph>."
-msgstr "በ ሰነድ ውስጥ ተለዋዋጭ ለመደበቅ ይጫኑ <emph>የማይታይ</emph>."
+msgstr "በ ሰነድ ውስጥ ተለዋዋጭ ለ መደበቅ ይጫኑ <emph> የማይታይ </emph>"
#: hidden_text.xhp
msgctxt ""
@@ -6406,7 +6406,7 @@ msgctxt ""
"par_id3149585\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item> and <item type=\"menuitem\">Close</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> እና <item type=\"menuitem\">መዝጊያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> እና <item type=\"menuitem\"> መዝጊያ </item>"
#: hidden_text.xhp
msgctxt ""
@@ -6462,7 +6462,7 @@ msgctxt ""
"par_id3154233\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item> and <item type=\"menuitem\">Close</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> እና <item type=\"menuitem\">መዝጊያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> እና <item type=\"menuitem\"> መዝጊያ </item>"
#: hidden_text.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"par_id3155902\n"
"help.text"
msgid "Click \"Hidden Paragraph\" in the <emph>Type </emph>list."
-msgstr "ይጫኑ \"የተደበቁ አንቀጾች\" ከ <emph>አይነት </emph>ዝርዝርዝ ውስጥ"
+msgstr "ይጫኑ \"የ ተደበቀ አንቀጽ\" ከ <emph> አይነት </emph> ዝርዝርዝ ውስጥ"
#: hidden_text.xhp
msgctxt ""
@@ -6510,7 +6510,7 @@ msgctxt ""
"par_id3149991\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item> and <item type=\"menuitem\">Close</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> እና <item type=\"menuitem\">መዝጊያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> እና <item type=\"menuitem\"> መዝጊያ </item>"
#: hidden_text.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"par_id3153019\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>."
+msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>"
#: hidden_text.xhp
msgctxt ""
@@ -6550,7 +6550,7 @@ msgctxt ""
"par_id3148950\n"
"help.text"
msgid "In the <item type=\"menuitem\">Hide</item> area, select <item type=\"menuitem\">Hide</item>, and then enter an expression in the <item type=\"menuitem\">Condition</item> box. For example, using the variable you previously defined, enter <item type=\"literal\">Hide==1</item>."
-msgstr "በ <item type=\"menuitem\">መደበቂያ</item> ቦታ ይምረጡ <item type=\"menuitem\">መደበቂያ</item> እና ከዛ ያስገቡ አገላለጽ በ እንደ <item type=\"menuitem\">ሁኔታው</item> ሳጥን ውስጥ: ለ ምሳሌ: ቀደም ብለው የገለጹትን ተለዋዋጭ በማስገባት ይጫኑ <item type=\"literal\">መደበቂያ==1</item>."
+msgstr "በ <item type=\"menuitem\"> መደበቂያ </item> ቦታ ይምረጡ <item type=\"menuitem\"> መደበቂያ </item> እና ከዛ ያስገቡ አገላለጽ በ እንደ <item type=\"menuitem\"> ሁኔታው </item> ሳጥን ውስጥ: ለ ምሳሌ: ቀደም ብለው የገለጹትን ተለዋዋጭ በማስገባት: ይጫኑ <item type=\"literal\"> መደበቂያ==1 </item>:"
#: hidden_text.xhp
msgctxt ""
@@ -6558,7 +6558,7 @@ msgctxt ""
"par_id3153636\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item>"
#: hidden_text.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"par_id3156108\n"
"help.text"
msgid "Click the arrow next to the <item type=\"menuitem\">Drag Mode</item> icon, and ensure that <item type=\"menuitem\">Insert as Hyperlink</item> is selected."
-msgstr "ይጫኑ ቀስቱን ከ <item type=\"menuitem\">መጎተቻ ዘዴ</item> ምልክት አጠገብ ያለውን እና እርግጠኛ ይሁኑ <item type=\"menuitem\">ማስገቢያ እንደ Hyperlink</item> መመረጡን"
+msgstr "ይጫኑ ቀስቱን ከ <item type=\"menuitem\"> መጎተቻ ዘዴ </item> ምልክት አጠገብ ያለውን እና እርግጠኛ ይሁኑ <item type=\"menuitem\"> ማስገቢያ እንደ Hyperlink</item> መመረጡን"
#: hyperlinks.xhp
msgctxt ""
@@ -6806,7 +6806,7 @@ msgctxt ""
"par_id3153658\n"
"help.text"
msgid "Select a dictionary in the <emph>User-defined dictionary </emph>list, and then click <emph>Edit</emph>."
-msgstr "ይምረጡ የ መዝገበ ቃላት ከ <emph>በ ተጠቃሚው-የሚወሰን መዝገበ ቃላት </emph>ዝርዝር ውስጥ እና ከዛ ይምረጡ <emph>ማረሚያ</emph>."
+msgstr "ይምረጡ የ መዝገበ ቃላት ከ <emph> በ ተጠቃሚው-የሚወሰን መዝገበ ቃላት </emph> ዝርዝር ውስጥ: እና ከዛ ይምረጡ <emph> ማረሚያ </emph>"
#: hyphen_prevent.xhp
msgctxt ""
@@ -6838,7 +6838,7 @@ msgctxt ""
"par_id3147036\n"
"help.text"
msgid "To quickly exclude a word from hyphenation, select the word, choose <emph>Format - Character</emph>, click the <emph>Font </emph>tab, and select \"None\" in the <emph>Language </emph>box."
-msgstr "ቃል በፍጥነት ከ ጭረት ለማስቀረት: ቃል ይምረጡ: ይምረጡ <emph>አቀራረብ - ባህሪ</emph> ይጫኑ የ <emph>ፊደል </emph>tab: እና ይምረጡ \"ምንም\"በ <emph>ቋንቋ </emph> ሳጥን ውስጥ"
+msgstr "ቃል በፍጥነት ከ ጭረት ለማስቀረት: ቃል ይምረጡ: ይምረጡ <emph> አቀራረብ - ባህሪ </emph> ይጫኑ የ <emph> ፊደል </emph> tab: እና ይምረጡ \"ምንም\"በ <emph> ቋንቋ </emph> ሳጥን ውስጥ"
#: hyphen_prevent.xhp
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"par_id0302200910262850\n"
"help.text"
msgid "Enable the special features of complex text layout (CTL) languages: Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Language Settings - Languages</item> and check <emph>Enabled for complex text layout (CTL)</emph>. Click OK."
-msgstr "የተለዩ ገጽታዎችን ለ ውስብስብ ጽሁፍ እቅድ ማስቻያ (CTL) ቋንቋዎች: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - ቋንቋ ማሰናጃ - ቋንቋዎች </item> እና ከዛ ምልክት ያድርጉ <emph> የ ውስብስብ ጽሁፍ እቅድ ማስቻያ (CTL)</emph> ይጫኑ እሺ"
+msgstr "የተለዩ ገጽታዎችን ለ ውስብስብ ጽሁፍ እቅድ ማስቻያ (CTL) ቋንቋዎች: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - ቋንቋ ማሰናጃ - ቋንቋዎች </item> እና ከዛ ምልክት ያድርጉ <emph> የ ውስብስብ ጽሁፍ እቅድ ማስቻያ (CTL)</emph> ይጫኑ እሺ:"
#: hyphen_prevent.xhp
msgctxt ""
@@ -6870,7 +6870,7 @@ msgctxt ""
"par_id0302200910262867\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Formatting Mark - No-width no break</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ ምልክት አቀራረብ - ስፋት-የለም መጨረሻ የለም </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ ምልክት አቀራረብ - ስፋት-የለም መጨረሻ የለም </item>"
#: hyphen_prevent.xhp
msgctxt ""
@@ -6934,7 +6934,7 @@ msgctxt ""
"par_id7953123\n"
"help.text"
msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "እርስዎ ይችላሉ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ማስረጊያ ማሰናጃ ማስመሪያ በመጠቀም</link>. ማስመሪያውን ለማሳየት ይምረጡ <item type=\"menuitem\">መመልከቻ - ማስመሪያ</item>."
+msgstr "እርስዎ ይችላሉ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> ማስረጊያ ማሰናጃ ማስመሪያ በመጠቀም </link>: ማስመሪያውን ለማሳየት ይምረጡ <item type=\"menuitem\"> መመልከቻ - ማስመሪያ </item>:"
#: indenting.xhp
msgctxt ""
@@ -6942,7 +6942,7 @@ msgctxt ""
"par_id4013794\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት</item> ማስረጊያውን ለ መቀየር ለ አሁኑ አንቀጽ ወይንም ለሁሉም ለተመረጡት አንቀጾች ፡ እንዲሁም ይችላሉ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ማስመሪያ በመጠቀም ማስረጊያ ማሰናጃ</link>."
+msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት </item> ማስረጊያውን ለ መቀየር ለ አሁኑ አንቀጽ ወይንም ለሁሉም ለተመረጡት አንቀጾች: እንዲሁም ይችላሉ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> ማስመሪያ በመጠቀም ማስረጊያ ማሰናጃ </link>"
#: indenting.xhp
msgctxt ""
@@ -6950,7 +6950,7 @@ msgctxt ""
"par_id1631824\n"
"help.text"
msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "በ ቀኝ-ይጫኑ አንቀጹን እና ይምረጡ <item type=\"menuitem\">ማረሚያ የ አንቀጽ ዘዴ - ማስረጊያ & ክፍተት</item> ለ መቀየር ማስረጊያውን ለ ሁሉም አንቀጾች ተመሳሳይ የ አንቀጽ ዘዴ ያላቸውን"
+msgstr "በ ቀኝ-ይጫኑ አንቀጹን እና ይምረጡ <item type=\"menuitem\"> ማረሚያ የ አንቀጽ ዘዴ - ማስረጊያ & ክፍተት </item> ለ መቀየር ማስረጊያውን ለ ሁሉም አንቀጾች ተመሳሳይ የ አንቀጽ ዘዴ ያላቸውን"
#: indenting.xhp
msgctxt ""
@@ -7046,7 +7046,7 @@ msgctxt ""
"par_id3154263\n"
"help.text"
msgid "To remove the entry, click <emph>Delete</emph>."
-msgstr "ማስገቢያውን ለማስወገድ ይጫኑ <emph>ማጥፊያ</emph>."
+msgstr "ማስገቢያውን ለማስወገድ ይጫኑ <emph> ማጥፊያ </emph>"
#: indices_delete.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_id3155893\n"
"help.text"
msgid "To cycle through the index entries in your document, click the next or the previous arrows in the <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit Index Entry dialog\"><emph>Edit Index Entry</emph> dialog</link>."
-msgstr "በ ማውጫ ማስገቢያዎች ውስጥ ለ መዘዋወር በ እርስዎ ሰነድ ውስጥ: ይጫኑ የሚቀጥለውን ወይንም ያለፈውን ቀስቶች በ <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit Index Entry dialog\"><emph>የ ማውጫ ማስገቢያ ማረሚያ</emph> ንግግር</link>."
+msgstr "በ ማውጫ ማስገቢያዎች ውስጥ ለ መዘዋወር በ እርስዎ ሰነድ ውስጥ: ይጫኑ የሚቀጥለውን ወይንም ያለፈውን ቀስቶች በ <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit Index Entry dialog\"><emph> የ ማውጫ ማስገቢያ ማረሚያ</emph> ንግግር </link>"
#: indices_edit.xhp
msgctxt ""
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr "<bookmark_value>ማውጫዎች: መግለጫ ማስገቢያዎች በ</bookmark_value> <bookmark_value>የ ሰንጠረዥ ማውጫ: መግለጫ ማስገቢያዎች በ</bookmark_value> <bookmark_value>ማስገቢያዎች: መግለጫ በ ማውጫዎች/የ ሰንጠረዥ ይዞታዎች</bookmark_value>"
#: indices_enter.xhp
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "ይምረጡ <emph> ማስገቢያ - ማውጫ እና የ ሰንጠረዦች ማውጫ - ማውጫ - ማስገቢያ </emph> እና ከሚቀጥሉት አንዱን ይስሩ:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ ሰንጠረዥ ይዞታዎች እና ማውጫ - ማውጫ ማስገቢያ </item>: እና ከ እነዚህ አንዱን ይስሩ:"
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "ይምረጡ <emph> መሳሪያዎች - ቁጥር መስጫ እቅድ </emph> እና ይጫኑ የ <emph> ቁጥር መስጫ </emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - </item><item type=\"menuitem\"> ምእራፍ </item><item type=\"menuitem\"> ቁጥር መስጫ </item> እና ይጫኑ የ <emph> ቁጥር መስጫ </emph> tab."
#: indices_enter.xhp
msgctxt ""
@@ -7318,7 +7318,7 @@ msgctxt ""
"par_id3150960\n"
"help.text"
msgid "Click the assign button <emph><</emph>."
-msgstr "ይጫኑ የ መመደቢያውን ቁልፍ <emph><</emph>."
+msgstr "ይጫኑ የ መመደቢያውን ቁልፍ <emph><</emph>"
#: indices_form.xhp
msgctxt ""
@@ -7358,7 +7358,7 @@ msgctxt ""
"par_id3150738\n"
"help.text"
msgid "Click the <emph>Entries</emph> tab."
-msgstr "ይጫኑ የ <emph>ማስገቢያ</emph> tab."
+msgstr "ይጫኑ የ <emph> ማስገቢያ </emph> tab."
#: indices_form.xhp
msgctxt ""
@@ -7446,7 +7446,7 @@ msgctxt ""
"par_id3147114\n"
"help.text"
msgid "If you want to use a concordance file, select <item type=\"menuitem\">Concordance file</item> in the <item type=\"menuitem\">Options</item> area, click the <item type=\"menuitem\">File</item> button, and then locate an existing file or create a new concordance file."
-msgstr "እርስዎ ፋይል በ ፊደል ቅደም ተከተል መጠቀም ከ ፈለጉ: ይምረጡ <item type=\"menuitem\">ፋይል በ ፊደል ቅደም ተከተል</item> በ <item type=\"menuitem\">ምርጫ</item> ቦታ ውስጥ: ይጫኑ የ <item type=\"menuitem\">ፋይል</item> ቁልፍ: እና ከዛ ፋይሉን ፈልገው ያግኙ ወይንም አዲስ ፋይል በ ፊደል ቅደም ተከተል ይፍጠሩ"
+msgstr "እርስዎ ፋይል በ ፊደል ቅደም ተከተል መጠቀም ከ ፈለጉ: ይምረጡ <item type=\"menuitem\"> ፋይል በ ፊደል ቅደም ተከተል </item> በ <item type=\"menuitem\"> ምርጫ </item> ቦታ ውስጥ: ይጫኑ የ <item type=\"menuitem\"> ፋይል </item> ቁልፍ: እና ከዛ ፋይሉን ፈልገው ያግኙ ወይንም አዲስ ፋይል በ ፊደል ቅደም ተከተል ይፍጠሩ"
#: indices_index.xhp
msgctxt ""
@@ -7494,7 +7494,7 @@ msgctxt ""
"bm_id3149687\n"
"help.text"
msgid "<bookmark_value>indexes;creating bibliographies</bookmark_value> <bookmark_value>databases;creating bibliographies</bookmark_value> <bookmark_value>bibliographies</bookmark_value> <bookmark_value>entries;bibliographies</bookmark_value> <bookmark_value>storing bibliographic information</bookmark_value>"
-msgstr "<bookmark_value>ማውጫዎች: መፍጠሪያ bibliographies</bookmark_value> <bookmark_value>ዳታቤዝ: መፍጠሪያ bibliographies</bookmark_value> <bookmark_value>bibliographies</bookmark_value> <bookmark_value>ማስገቢያዎች: bibliographies</bookmark_value> <bookmark_value>ማስቀመጫ bibliographic መረጃ</bookmark_value>"
+msgstr "<bookmark_value>ማውጫዎች: መፍጠሪያ የ ስራዎች ዝርዝር</bookmark_value> <bookmark_value>ዳታቤዝ: መፍጠሪያ የ ስራዎች ዝርዝር</bookmark_value> <bookmark_value>የ ስራዎች ዝርዝር</bookmark_value> <bookmark_value>ማስገቢያዎች: የ ስራዎች ዝርዝር</bookmark_value> <bookmark_value>ማስቀመጫ የ ስራዎች ዝርዝር መረጃ</bookmark_value>"
#: indices_literature.xhp
msgctxt ""
@@ -7550,7 +7550,7 @@ msgctxt ""
"par_id3155900\n"
"help.text"
msgid "Choose <emph>Insert - Record</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - መዝገብ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - መዝገብ </emph>"
#: indices_literature.xhp
msgctxt ""
@@ -7558,7 +7558,7 @@ msgctxt ""
"par_id3147123\n"
"help.text"
msgid "Type a name for the bibliography entry in the <item type=\"menuitem\">Short name</item> box, and then add additional information to the record in the remaining boxes."
-msgstr "ስም ይጻፉ የ bibliography ማስገቢያ በ <item type=\"menuitem\">አጭር ስም</item> ሳጥን ውስጥ: እና ከዛ ይጨምሩ ተጨማሪ መረጃ ለ መግለጫ በሚቀሩት ሳጥኖች ውስጥ"
+msgstr "ስም ይጻፉ የ bibliography ማስገቢያ በ <item type=\"menuitem\"> አጭር ስም </item> ሳጥን ውስጥ: እና ከዛ ይጨምሩ ተጨማሪ መረጃ ለ መግለጫ በሚቀሩት ሳጥኖች ውስጥ"
#: indices_literature.xhp
msgctxt ""
@@ -7566,7 +7566,7 @@ msgctxt ""
"par_id3150219\n"
"help.text"
msgid "Close the <item type=\"menuitem\">Bibliography Database</item> window."
-msgstr "መዝጊያ <item type=\"menuitem\">የ ጽሁፎች ዝርዝር ዳታቤዝ</item> መስኮት"
+msgstr "መዝጊያ <item type=\"menuitem\"> የ ጽሁፎች ዝርዝር ዳታቤዝ </item> መስኮት"
#: indices_literature.xhp
msgctxt ""
@@ -7598,7 +7598,7 @@ msgctxt ""
"par_id3150525\n"
"help.text"
msgid "Select <emph>From document content</emph> and click <emph>New</emph>."
-msgstr "ይምረጡ <emph>ከ ሰነድ ይዞታ</emph> እና ይጫኑ<emph>አዲስ</emph>."
+msgstr "ይምረጡ <emph> ከ ሰነድ ይዞታ </emph> እና ይጫኑ <emph> አዲስ </emph>"
#: indices_literature.xhp
msgctxt ""
@@ -7630,7 +7630,7 @@ msgctxt ""
"par_id3146897\n"
"help.text"
msgid "In the <item type=\"menuitem\">Insert Bibliography Entry</item> dialog, click <item type=\"menuitem\">Insert</item>, and then <item type=\"menuitem\">Close</item>."
-msgstr "በ <item type=\"menuitem\">ማስገቢያ በ ጽሁፎች ዝርዝር</item> ንግግር ውስጥ ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> እና ከዛ <item type=\"menuitem\">መዝጊያ</item>."
+msgstr "በ <item type=\"menuitem\">ማስገቢያ በ ጽሁፎች ዝርዝር </item> ንግግር ውስጥ ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> እና ከዛ <item type=\"menuitem\"> መዝጊያ </item>"
#: indices_literature.xhp
msgctxt ""
@@ -7662,7 +7662,7 @@ msgctxt ""
"par_id3153231\n"
"help.text"
msgid "Select <emph>From bibliography database</emph>."
-msgstr "ይምረጡ <emph>ከ ጽሁፎች ዝርዝር ዳታቤዝ</emph> ውስጥ"
+msgstr "ይምረጡ <emph> ከ ጽሁፎች ዝርዝር ዳታቤዝ </emph> ውስጥ"
#: indices_literature.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id3147085\n"
"help.text"
msgid "Click <emph>Insert</emph> and then click <emph>Close</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> እና ከዛ ይጫኑ <emph>መዝጊያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ከዛ ይጫኑ <emph> መዝጊያ </emph>"
#: indices_literature.xhp
msgctxt ""
@@ -7750,7 +7750,7 @@ msgctxt ""
"par_id3150230\n"
"help.text"
msgid "Create a <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>, add as subdocuments the files that you want to include in the index, and then choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography</emph>."
-msgstr "መፍጠሪያ የ <link href=\"text/shared/01/01010001.xhp\" name=\"master document\"> ዋናው ሰነድ </link> መጨመሪያ እንደ ንዑስ ሰነድ እርስዎ ማካተት በሚፈልጉበት ፋይሎች: በ ማውጫ ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ - ማውጫ እና የ ሰንጠረዥ ይዞታዎች ማውጫ ወይንም የ ጽሁፎች ዝርዝር </emph>."
+msgstr "መፍጠሪያ የ <link href=\"text/shared/01/01010001.xhp\" name=\"master document\"> ዋናው ሰነድ </link> መጨመሪያ እንደ ንዑስ ሰነድ እርስዎ ማካተት በሚፈልጉበት ፋይሎች: በ ማውጫ ውስጥ: እና ከዛ ይጫኑ <emph> ማስገቢያ - ማውጫ እና የ ሰንጠረዥ ይዞታዎች ማውጫ ወይንም የ ጽሁፎች ዝርዝር </emph>"
#: indices_toc.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "መጠቀም ከ ፈለጉ የ ተለየ የ አንቀጽ ዘዴ እንደ ሰንጠረዥ ማውጫ ይምረጡ የ <item type=\"menuitem\"> ተጨማሪ ዘዴዎች </item> ምልክት ማድረጊያ ሳጥን ውስጥ የ <item type=\"menuitem\"> መፍጠሪያ ፎርም </item> ቦታ ውስጥ እና ከዛ ይጫኑ ከ <item type=\"menuitem\"></item> ምልክት ማድረጊያው ሳጥን አጠገብ ያለውን ቁልፍ ከ <item type=\"menuitem\"> መመደቢያ ዘዴዎች </item> ንግግር ውስጥ: ይጫኑ ከ ዘዴ ዝርዝር ውስጥ እና ከዛ ይጫኑ የ <item type=\"menuitem\">>></item> ወይንም የ <item type=\"menuitem\"><<</item> ቁልፍ ለ መግለጽ የ እቅድ ደረጃ ለ አንቀጽ ዘዴዎች"
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr "እርስዎ መጠቀም ከ ፈለጉ የ ተለየ የ አንቀጽ ዘዴ እንደ ሰንጠረዥ ማውጫ ማስገቢያ: ይምረጡ የ <item type=\"menuitem\"> ተጨማሪ ዘዴዎች </item> ምልክት ማድረጊያ ሳጥን ውስጥ የ <item type=\"menuitem\"> መፍጠሪያ ከ </item> ቦታ ውስጥ: እና ከዛ ይጫኑ ከ <item type=\"menuitem\"></item> ምልክት ማድረጊያው ሳጥን አጠገብ ያለውን ቁልፍ ከ <item type=\"menuitem\"> መመደቢያ ዘዴዎች </item> ንግግር ውስጥ: ይጫኑ ከ ዘዴ ዝርዝር ውስጥ እና ከዛ ይጫኑ የ <item type=\"menuitem\">>></item> ወይንም የ <item type=\"menuitem\"><<</item> ቁልፍ የ ምእራፍ ደረጃ ለ አንቀጽ ዘዴ ለ መግለጽ"
#: indices_toc.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_id3147114\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item> to add the selected word(s) to the new index."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> የተመረጠውን ቃል(ሎች) ወደ አዲሱ ማውጫ ለመጨመር"
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> የተመረጠውን ቃል(ሎች) ወደ አዲሱ ማውጫ ለ መጨመር"
#: indices_userdef.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "እርስዎ የ ተለየ የ አንቀጽ ዘዴ እንደ ሰንጠረዥ ይዛታዎች ማስገቢያ መጠቀም ከ ፈለጉ: ይምረጡ <item type=\"menuitem\"> ተጨማሪ ዘዴዎች </item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ዘዴዎች መመደቢያ </item> ቁልፍ ከ ሳጥኑ አጠገብ: ይጫኑ ዘዴ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ የ <item type=\"menuitem\">>></item> ወይንም የ <item type=\"menuitem\"><<</item> ቁልፍ የ ረቂቅ ደረጃ ለ አንቀጽ ዘዴ ለ መግለጽ"
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr "እርስዎ የ ተለየ የ አንቀጽ ዘዴ እንደ ሰንጠረዥ ይዛታዎች ማስገቢያ መጠቀም ከ ፈለጉ: ይምረጡ <item type=\"menuitem\"> ተጨማሪ ዘዴዎች </item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ዘዴዎች መመደቢያ </item> ቁልፍ ከ ሳጥኑ አጠገብ: ይጫኑ ዘዴ ከ ዝርዝር ውስጥ: እና ከዛ ይጫኑ የ <item type=\"menuitem\">>></item> ወይንም የ <item type=\"menuitem\"><<</item> ቁልፍ የ ምእራፍ ደረጃ ለ አንቀጽ ዘዴ ለ መግለጽ"
#: insert_beforetable.xhp
msgctxt ""
@@ -8046,7 +8046,7 @@ msgctxt ""
"par_id3155923\n"
"help.text"
msgid "If you want to insert text before a table that is at the top of a page, click in the first cell of the table, in front of any contents of that cell, and then press <item type=\"keycode\">Enter</item> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+Enter</item>."
-msgstr "እርስዎ ጽሁፍ ማስገባት ከ ፈለጉ ከ ሰንጠረዥ በፊት በ ገጹ ከ ላይ በኩል: ይጫኑ የ ሰንጠረዡን የ መጀመሪያ ክፍል: ከ ክፍሉ ይዞታዎች በፊት: እና ከዛ ይጫኑ <item type=\"keycode\">ማስገቢያ</item> ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">ምርጫ</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+ማስገቢያ</item>."
+msgstr "እርስዎ ጽሁፍ ማስገባት ከ ፈለጉ ከ ሰንጠረዥ በፊት በ ገጹ ከ ላይ በኩል: ይጫኑ የ ሰንጠረዡን የ መጀመሪያ ክፍል: ከ ክፍሉ ይዞታዎች በፊት: እና ከዛ ይጫኑ <item type=\"keycode\"> ማስገቢያ </item> ወይንም <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\"> ምርጫ </item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+ማስገቢያ</item>"
#: insert_beforetable.xhp
msgctxt ""
@@ -8054,7 +8054,7 @@ msgctxt ""
"par_idN10612\n"
"help.text"
msgid "To insert text after a table at the end of the document, go to the last cell of the table and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+Enter</item>."
-msgstr "ጽሁፍ ለማስገባት ከ ሰንጠረዥ በኋላ ወይንም በ ሰነድ መጨረሻ ላይ: ወደ መጨረሻው ክፍል ይሂዱ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">ምርጫ</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+ማስገቢያ</item>."
+msgstr "ጽሁፍ ለማስገባት ከ ሰንጠረዥ በኋላ ወይንም በ ሰነድ መጨረሻ ላይ: ወደ መጨረሻው ክፍል ይሂዱ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\"> ምርጫ </item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+ማስገቢያ</item>"
#: insert_graphic.xhp
msgctxt ""
@@ -8126,7 +8126,7 @@ msgctxt ""
"par_id3155864\n"
"help.text"
msgid "Choose <link href=\"text/shared/01/04140000.xhp\" name=\"Insert - Image - From File\"><emph>Insert - Image - From File</emph></link>."
-msgstr "ይምረጡ <link href=\"text/shared/01/04140000.xhp\" name=\"Insert - Image - From File\"><emph> ማስገቢያ - ምስል - ከ ፋይል ውስጥ </emph></link>."
+msgstr "ይምረጡ <link href=\"text/shared/01/04140000.xhp\" name=\"Insert - Image - From File\"><emph> ማስገቢያ - ምስል - ከ ፋይል ውስጥ </emph></link>"
#: insert_graphic_dialog.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"par_id3156021\n"
"help.text"
msgid "Locate the graphic file that you want to insert, and then click <emph>Open</emph>."
-msgstr "ማስገባት የሚፈልጉትን የ ንድፍ ፋይል ፈልገው ያግኙ እና ከዛ ይጫኑ <emph>መክፈቻ</emph>."
+msgstr "ማስገባት የሚፈልጉትን የ ንድፍ ፋይል ፈልገው ያግኙ እና ከዛ ይጫኑ <emph> መክፈቻ </emph>"
#: insert_graphic_dialog.xhp
msgctxt ""
@@ -8478,7 +8478,7 @@ msgctxt ""
"par_id3155911\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "በ <item type=\"menuitem\">አቀራረብ</item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\">ቁጥር መስጫ ማብሪያ/ማጥፊያ</item> ምልክት ሁለት ጊዜ ይጫኑ"
+msgstr "በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ቁጥር መስጫ ማብሪያ/ማጥፊያ </item> ምልክት ሁለት ጊዜ ይጫኑ"
#: join_numbered_lists.xhp
msgctxt ""
@@ -8502,7 +8502,7 @@ msgctxt ""
"par_id3149644\n"
"help.text"
msgid "Continue to hold down Ctrl, and drag a selection in each numbered paragraph of the lists you want to combine."
-msgstr "ተጭነው ይያዙ Ctrl, እና ይጎትቱ ምርጫውን እያንዳንዱ ቁጥር የ ተሰጠውን አንቀጽ ከ ዝርዝር ውስጥ እርስዎ መቀላቀል የሚፈልጉትን"
+msgstr "ተጭነው ይያዙ Ctrl እና ይጎትቱ ምርጫውን እያንዳንዱ ቁጥር የ ተሰጠውን አንቀጽ ከ ዝርዝር ውስጥ እርስዎ መቀላቀል የሚፈልጉትን"
#: join_numbered_lists.xhp
msgctxt ""
@@ -8510,7 +8510,7 @@ msgctxt ""
"par_id3145102\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "በ <item type=\"menuitem\">አቀራረብ</item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\">ቁጥር መስጫ ማብሪያ/ማጥፊያ</item> ምልክት ሁለት ጊዜ ይጫኑ"
+msgstr "በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ቁጥር መስጫ ማብሪያ/ማጥፊያ </item> ምልክት ሁለት ጊዜ ይጫኑ"
#: jump2statusbar.xhp
msgctxt ""
@@ -8542,7 +8542,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "To go to a specific bookmark in your document, <switchinline select=\"sys\"><caseinline select=\"MAC\">hold down Ctrl and click </caseinline><defaultinline>right-click</defaultinline></switchinline> in the <emph>Page</emph> field on the <emph>Status Bar</emph>, and then choose the bookmark."
-msgstr "በ እርስዎ ሰነድ ውስጥ ወደ ተወሰነ ምልክት ማድረጊያ ውስጥ መሄድ ከ ፈለጉ <switchinline select=\"sys\"><caseinline select=\"MAC\">ተጭነው ይያዙ Ctrl እና ይጫኑ </caseinline><defaultinline> በ ቀኝ-ይጫኑ </defaultinline></switchinline> በ <emph> ገጽ </emph> ሜዳ ላይ በ <emph> ሁኔታዎች መደርደሪያ </emph> ላይ: እና ከዛ ይምረጡ ምልክት ማድረጊያውን"
+msgstr "በ እርስዎ ሰነድ ውስጥ ወደ ተወሰነ ምልክት ማድረጊያ ውስጥ መሄድ ከ ፈለጉ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ተጭነው ይያዙ Ctrl እና ይጫኑ </caseinline><defaultinline> በ ቀኝ-ይጫኑ </defaultinline></switchinline> በ <emph> ገጽ </emph> ሜዳ ላይ: በ <emph> ሁኔታዎች መደርደሪያ </emph> ላይ: እና ከዛ ይምረጡ ምልክት ማድረጊያውን"
#: jump2statusbar.xhp
msgctxt ""
@@ -8614,7 +8614,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "Press F6 until the focus is on the <item type=\"menuitem\">Insert</item> toolbar."
-msgstr "ይጫኑ F6 ትኩረቱ በ <item type=\"menuitem\">ማስገቢያ</item> እቃ መደርደሪያ ላይ እስኪሆን ድረስ"
+msgstr "ይጫኑ F6 ትኩረቱ በ <item type=\"menuitem\"> ማስገቢያ </item> እቃ መደርደሪያ ላይ እስኪሆን ድረስ"
#: keyboard.xhp
msgctxt ""
@@ -8734,7 +8734,7 @@ msgctxt ""
"par_id3155910\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph> to open the <emph>Styles and Formatting</emph> sidebar deck."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph> ለ መክፈት የ <emph>ዘዴዎች እና አቀራረብ</emph> የ ጎን መደርደሪያ ማሳረፊያ"
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> ለ መክፈት የ <emph> ዘዴዎች እና አቀራረብ </emph> የ ጎን መደርደሪያ ማሳረፊያ"
#: load_styles.xhp
msgctxt ""
@@ -8758,7 +8758,7 @@ msgctxt ""
"par_id3149632\n"
"help.text"
msgid "Use the check boxes at the bottom of the dialog to select the style types that you want to import. To replace styles in the current document that have the same name as the ones you are importing, select <emph>Overwrite</emph>."
-msgstr "ከ ታች በኩል ያለውን ምልክት ማድረጊያ ሳጥን ይጠቀሙ ንግግር ለ መምረጥ የ ዘዴ አይነት እርስዎ ማምጣት የሚፈልጉትን: ዘዴዎችን ለ መቀየር በ አሁኑ ሰነድ ውስጥ ተመሳሳይ ስም ያላቸውን እርስዎ ከሚያመጡት ጋር: ይምረጡ <emph> በላዩ ላይ ደርቦ ይጽፋል </emph>."
+msgstr "ከ ታች በኩል ያለውን ምልክት ማድረጊያ ሳጥን ይጠቀሙ ንግግር ለ መምረጥ የ ዘዴ አይነት እርስዎ ማምጣት የሚፈልጉትን: ዘዴዎችን ለ መቀየር በ አሁኑ ሰነድ ውስጥ ተመሳሳይ ስም ያላቸውን እርስዎ ከሚያመጡት ጋር: ይምረጡ <emph> በላዩ ላይ ደርቦ ይጽፋል </emph>"
#: load_styles.xhp
msgctxt ""
@@ -8782,7 +8782,7 @@ msgctxt ""
"par_id3153377\n"
"help.text"
msgid "Click <emph>From File</emph>, locate the file containing the styles that you want to use, and then click name, and then click <emph>Open</emph>."
-msgstr "ይጫኑ <emph>ከ ፋይል</emph> ያግኙ መጨመር የሚፈልጉትን ዘዴ የያዘውን ፋይል እና ከዛ ይጫኑ ስሙን: እና ከዛ ይጫኑ <emph>መክፈቻ</emph>."
+msgstr "ይጫኑ <emph> ከ ፋይል </emph> ውስጥ: ያግኙ መጨመር የሚፈልጉትን ዘዴ የያዘውን ፋይል እና ከዛ ይጫኑ ስሙን: እና ከዛ ይጫኑ <emph> መክፈቻ </emph>"
#: main.xhp
msgctxt ""
@@ -9166,7 +9166,7 @@ msgctxt ""
"par_id3156240\n"
"help.text"
msgid "Click \"Number range\" in the <item type=\"menuitem\">Type</item> list."
-msgstr "ይጫኑ \"የ ቁጥር መጠን\" ከ <item type=\"menuitem\">አይነት </item> ዝርዝር ውስጥ"
+msgstr "ይጫኑ \"የ ቁጥር መጠን\" ከ <item type=\"menuitem\"> አይነት </item> ዝርዝር ውስጥ"
#: number_sequence.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3154250\n"
"help.text"
msgid "Type a number in the <emph>Value</emph> box, or leave the box empty to use automatic numbering."
-msgstr "ቁጥር ይጻፉ በ <emph>ዋጋ</emph> ሳጥን ውስጥ ወይንም ሳጥኑን ባዶ ይተዉት ራሱ በራሱ ቁጥር እንዲሰጥ"
+msgstr "ቁጥር ይጻፉ በ <emph> ዋጋ </emph> ሳጥን ውስጥ ወይንም ሳጥኑን ባዶ ይተዉት ራሱ በራሱ ቁጥር እንዲሰጥ"
#: number_sequence.xhp
msgctxt ""
@@ -9206,7 +9206,7 @@ msgctxt ""
"par_id3155886\n"
"help.text"
msgid "Click <emph>Insert</emph>, and then click <emph>Close</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph> እና ከዛ ይጫኑ <emph>መዝጊያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph> እና ከዛ ይጫኑ <emph> መዝጊያ </emph>"
#: numbering_lines.xhp
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"par_id3149612\n"
"help.text"
msgid "Select <emph>Show numbering</emph>, and then select the options that you want."
-msgstr "ይምረጡ <emph>ቁጥር መስጫ ማሳያ</emph> እና ከዛ የሚፈልጉትን እርስዎ ከ ምርጫዎቹ ውስጥ ይምረጡ"
+msgstr "ይምረጡ <emph> ቁጥር መስጫ ማሳያ </emph> እና ከዛ የሚፈልጉትን እርስዎ ከ ምርጫዎቹ ውስጥ ይምረጡ"
#: numbering_lines.xhp
msgctxt ""
@@ -9302,7 +9302,7 @@ msgctxt ""
"par_id3153385\n"
"help.text"
msgid "Select <emph>Show numbering</emph>."
-msgstr "ይምረጡ <emph>ቁጥር መስጫ ማሳያ</emph>."
+msgstr "ይምረጡ <emph> ቁጥር መስጫ ማሳያ </emph>"
#: numbering_lines.xhp
msgctxt ""
@@ -9318,7 +9318,7 @@ msgctxt ""
"par_id3154853\n"
"help.text"
msgid "Right-click the \"Default\" paragraph style and choose <emph>Modify</emph>."
-msgstr "በ ቀኝ-ይጫኑ ከ \"ነባር\" የ አንቀጽ ዘዴዎች እና ይምረጡ <emph>ማሻሻያ</emph>."
+msgstr "በ ቀኝ-ይጫኑ ከ \"ነባር\" የ አንቀጽ ዘዴዎች እና ይምረጡ <emph> ማሻሻያ </emph>"
#: numbering_lines.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id2212591\n"
"help.text"
msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\">Wiki page about numbering paragraphs by styles</link>"
+msgstr "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\">የ ዊኪ ገጽ ለ አንቀጾች ቁጥር መስጫ በ ዘዴዎች </link>"
#: numbering_paras.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>ቁጥር መስጫ; ማስወገጃ/ማቋረጫ</bookmark_value> <bookmark_value>ነጥብ ዝርዝሮች; ማቋረጫ</bookmark_value> <bookmark_value>ዝርዝሮች;ማስወገጃ/ማቋረጫ ቁጥር መስጫ</bookmark_value> <bookmark_value>ማጥፊያ;ቁጥሮችን ከ ዝርዝሮች</bookmark_value> <bookmark_value>ማቋረጫ የ ቁጥሮችን ዝርዝሮች</bookmark_value> <bookmark_value>መቀየሪያ;ማስጀመሪያ ቁጥሮችን በ ዝርዝሮች</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr "<bookmark_value>ቁጥር መስጫ: ማስወገጃ/ማቋረጫ</bookmark_value> <bookmark_value>የ ነጥብ ዝርዝሮች: ማቋረጫ</bookmark_value> <bookmark_value>ዝርዝሮች: ማስወገጃ/ማቋረጫ ቁጥር መስጫ</bookmark_value> <bookmark_value>ማጥፊያ: ቁጥሮችን ከ ዝርዝሮች ውስጥ</bookmark_value> <bookmark_value>ማቋረጫ ቁጥር የ ተሰጣቸውን ዝርዝሮች</bookmark_value> <bookmark_value>መቀየሪያ: ማስጀመሪያ ቁጥር መስጫ በ ዝርዝሮች ውስጥ</bookmark_value>"
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "እርስዎ ቁጥር የ ተሰጣቸው ራስጌዎች ከ ፈለጉ የ <emph> መሳሪያዎች - ረቂቅ ቁጥር መስጫ </emph> ዝርዝር ትእዛዝ የ ቁጥር መስጫ ለ መመደብ ወደ አንቀጽ ዘዴ: የ ቁጥር መስጫ ምልክት አይጠቀሙ ከ እቃ መደርደሪያ አቀራረብ ውስጥ"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr "እርስዎ ቁጥር የ ተሰጣቸው ራስጌዎች ከ ፈለጉ: ይጠቀሙ የ <emph> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </emph> ዝርዝር ትእዛዝ የ ቁጥር መስጫ ለ መመደብ ወደ አንቀጽ ዘዴ ውስጥ: የ ቁጥር መስጫ ምልክት አይጠቀሙ: ከ እቃ መደርደሪያ አቀራረብ ውስጥ"
#: numbering_paras.xhp
msgctxt ""
@@ -9550,7 +9550,7 @@ msgctxt ""
"par_id3154248\n"
"help.text"
msgid "To remove the number and the indent of the paragraph, click the <emph>Numbering on/off</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
-msgstr "ቁጥር እና የ አንቀጽ ማስረጊያ ለማጥፋት: ይጫኑ የ <emph>ቁጥር መስጫ ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph>አቀራረብ</emph> መደርደሪያ ላይ: እርስዎ ሰነድ ካስቀመጡ በ HTML አቀራረብ: የ ተለየ የ ቁጥር መስጫ ዝርዝር ይፈጠራል: ለ ቁጥር ለ ተሰጣቸው አንቀጾች የ አሁኑን አንቀጽ ለሚከተሉ"
+msgstr "ቁጥር እና የ አንቀጽ ማስረጊያ ለማጥፋት: ይጫኑ የ <emph> ቁጥር መስጫ ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> አቀራረብ </emph> መደርደሪያ ላይ: እርስዎ ሰነድ ካስቀመጡ በ HTML አቀራረብ: የ ተለየ የ ቁጥር መስጫ ዝርዝር ይፈጠራል: ለ ቁጥር ለ ተሰጣቸው አንቀጾች የ አሁኑን አንቀጽ ለሚከተሉ"
#: numbering_paras.xhp
msgctxt ""
@@ -9598,7 +9598,7 @@ msgctxt ""
"par_id6943571\n"
"help.text"
msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\">Wiki page about numbering paragraphs by styles</link>"
+msgstr "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\">የ ዊኪ ገጽ ለ አንቀጾች ቁጥር መስጫ በ ዘዴዎች </link>"
#: page_break.xhp
msgctxt ""
@@ -9646,7 +9646,7 @@ msgctxt ""
"par_id3153119\n"
"help.text"
msgid "Press Ctrl+Enter."
-msgstr "ይጫኑ Ctrl+Enter."
+msgstr "ይጫኑ Ctrl+ማስገቢያ"
#: page_break.xhp
msgctxt ""
@@ -9758,7 +9758,7 @@ msgctxt ""
"par_idN10827\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph>"
#: pagebackground.xhp
msgctxt ""
@@ -9774,7 +9774,7 @@ msgctxt ""
"par_idN10837\n"
"help.text"
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ <emph>አዲስ</emph>."
+msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ <emph> አዲስ </emph>"
#: pagebackground.xhp
msgctxt ""
@@ -9854,7 +9854,7 @@ msgctxt ""
"par_idN10892\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph>"
#: pagebackground.xhp
msgctxt ""
@@ -9902,7 +9902,7 @@ msgctxt ""
"par_idN108C1\n"
"help.text"
msgid "Choose <emph>Insert - Manual Break</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - በ እጅ መጨረሻ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - በ እጅ መጨረሻ </emph>"
#: pagebackground.xhp
msgctxt ""
@@ -10006,7 +10006,7 @@ msgctxt ""
"par_id6604510\n"
"help.text"
msgid "If you see the text \"Page number\" instead of the number, choose <emph>View - Field names</emph>."
-msgstr "ይህን ጽሁፍ ከተመለከቱ \"የ ገጽ ቁጥር\" በ ቁጥር ፋንታ ይምረጡ <emph>መመልከቻ - የ ሜዳ ስሞች</emph>."
+msgstr "ይህን ጽሁፍ ከ ተመለከቱ \"የ ገጽ ቁጥር\" በ ቁጥር ፋንታ ይምረጡ <emph>መመልከቻ - የ ሜዳ ስሞች </emph>"
#: pagenumbers.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id2632831\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Text flow</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - የ ጽሁፍ ፍሰት </emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - አንቀጽ - የ ጽሁፍ ፍሰት </emph>"
#: pagenumbers.xhp
msgctxt ""
@@ -10206,7 +10206,7 @@ msgctxt ""
"par_id4313791\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph>"
#: pagenumbers.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id5256508\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ </emph>"
#: pageorientation.xhp
msgctxt ""
@@ -10358,7 +10358,7 @@ msgctxt ""
"par_id7994323\n"
"help.text"
msgid "Under <item type=\"menuitem\">Paper format</item>, select “Portrait” or “Landscape”."
-msgstr "ከስር <item type=\"menuitem\">ወረቀት አቀራረብ</item> ይምረጡ “ምስል” ወይንም “በመሬት አቀማመጥ”."
+msgstr "ከስር <item type=\"menuitem\"> ወረቀት አቀራረብ </item> ይምረጡ “ምስል” ወይንም “በመሬት አቀማመጥ”"
#: pageorientation.xhp
msgctxt ""
@@ -10414,7 +10414,7 @@ msgctxt ""
"par_idN10727\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph>"
#: pageorientation.xhp
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"par_idN1077D\n"
"help.text"
msgid "Under <item type=\"menuitem\">Paper format</item>, select “Portrait” or “Landscape”."
-msgstr "ከስር <item type=\"menuitem\">ወረቀት አቀራረብ</item> ይምረጡ “ምስል” ወይንም “በ መሬት አቀማመጥ”."
+msgstr "ከስር <item type=\"menuitem\"> ወረቀት አቀራረብ </item> ይምረጡ “ምስል” ወይንም “በ መሬት አቀማመጥ”"
#: pageorientation.xhp
msgctxt ""
@@ -10542,7 +10542,7 @@ msgctxt ""
"par_id6386913\n"
"help.text"
msgid "The “Default” page style does not set a different \"next style\" on the <item type=\"menuitem\">Format - Page - Organizer</item> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "የ “ነባር” ገጽ ዘዴ አያሰናዳም የ ተለያዩ \"የሚቀጥለው ዘዴ\" በ <item type=\"menuitem\">አቀራረብ - ገጽ - ማደራጃ</item> tab ገጽ ውስጥ: በሱ ፋንታ የ \"የሚቀጥለው ዘዴ\" ይሰናዳል እንደ “ነባር”: ሁሉንም የ ገጽ ዘዴዎች የሚከተሉ ተመሳሳይ የ ገጽ ዘዴ ወደ በርካታ ገጾች ይስፋፋሉ: የ ታችኛው እና የ ላይኛው ድንበሮች ለ ገጽ ዘዴዎች መጠን የሚገለጸው በ \"ገጽ መጨረሻ ዘዴ\" ነው: ሁሉም ገጾች በ ማንኛውም ሁለት \"ገጽ መጨረሻ ዘዴ\" መካከል የሚጠቀመው ተመሳሳይ የ ገጽ ዘዴ ነው"
+msgstr "የ “ነባር” ገጽ ዘዴ አያሰናዳም የ ተለያዩ \"የሚቀጥለው ዘዴ\" በ <item type=\"menuitem\"> አቀራረብ - ገጽ - ማደራጃ </item> tab ገጽ ውስጥ: በሱ ፋንታ የ \"የሚቀጥለው ዘዴ\" ይሰናዳል እንደ “ነባር”: ሁሉንም የ ገጽ ዘዴዎች የሚከተሉ ተመሳሳይ የ ገጽ ዘዴ ወደ በርካታ ገጾች ይስፋፋሉ: የ ታችኛው እና የ ላይኛው ድንበሮች ለ ገጽ ዘዴዎች መጠን የሚገለጸው በ \"ገጽ መጨረሻ ዘዴ\" ነው: ሁሉም ገጾች በ ማንኛውም ሁለት \"ገጽ መጨረሻ ዘዴ\" መካከል የሚጠቀመው ተመሳሳይ የ ገጽ ዘዴ ነው"
#: pageorientation.xhp
msgctxt ""
@@ -10574,7 +10574,7 @@ msgctxt ""
"par_id9935911\n"
"help.text"
msgid "To apply the \"page break with style\" property to the current paragraph, choose <item type=\"menuitem\">Format - Paragraph - Text Flow</item>. In the Breaks area, activate <emph>Enable</emph> and <emph>With Page Style</emph>. Select a page style name from the listbox."
-msgstr "ለመፈጸም የ \"ገጽ መጨረሻ ዘዴ\" ባህሪ ወደ አሁኑ አንቀጽ: ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ - የ ጽሁፍ ፍሰት </item> በ መጨረሻው ቦታ ውስጥ: ያስጀምሩ <emph> ማስቻያ </emph> እና <emph> ከ ገጽ ዘዴ ውስጥ</emph> ይምረጡ የ ገጽ ዘዴ ስም ከ ዝርዝር ሳጥን ውስጥ"
+msgstr "ለመፈጸም የ \"ገጽ መጨረሻ ዘዴ\" ባህሪ ወደ አሁኑ አንቀጽ: ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ - የ ጽሁፍ ፍሰት </item> በ መጨረሻው ቦታ ውስጥ: ያስጀምሩ <emph> ማስቻያ </emph> እና <emph> ከ ገጽ ዘዴ ውስጥ </emph> ይምረጡ የ ገጽ ዘዴ ስም ከ ዝርዝር ሳጥን ውስጥ"
#: pageorientation.xhp
msgctxt ""
@@ -10638,7 +10638,7 @@ msgctxt ""
"par_id3153411\n"
"help.text"
msgid "Choose <item type=\"menuitem\">View - Styles and Formatting</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">መመልከቻ - ዘዴዎች እና አቀራረብ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> መመልከቻ - ዘዴዎች እና አቀራረብ </item>"
#: pagestyles.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ <emph>አዲስ</emph>."
+msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ <emph> አዲስ </emph>"
#: pagestyles.xhp
msgctxt ""
@@ -10750,7 +10750,7 @@ msgctxt ""
"par_id3150210\n"
"help.text"
msgid "Choose <emph>Insert - Manual Break</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - በ እጅ መጨረሻ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - በ እጅ መጨረሻ </emph>"
#: pagestyles.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"bm_id6743064\n"
"help.text"
msgid "<bookmark_value>printing; individual brochures</bookmark_value> <bookmark_value>booklet printing</bookmark_value> <bookmark_value>brochures; printing individual</bookmark_value>"
-msgstr "<bookmark_value>ማተሚያ; እያንዳንዱን brochures</bookmark_value> <bookmark_value>booklet ማተሚያ</bookmark_value> <bookmark_value>brochures; ማተሚያ እያንዳንዱን</bookmark_value>"
+msgstr "<bookmark_value>ማተሚያ: እያንዳንዱን brochures</bookmark_value> <bookmark_value>መጽሀፍ ማተሚያ</bookmark_value> <bookmark_value>brochures: ማተሚያ እያንዳንዱን</bookmark_value>"
#: print_brochure.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Choose <emph>File - Print</emph>."
-msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>"
#: print_brochure.xhp
msgctxt ""
@@ -10926,7 +10926,7 @@ msgctxt ""
"par_id3149847\n"
"help.text"
msgid "Choose <emph>File</emph> - <emph>Print Preview</emph>."
-msgstr "ይምረጡ <emph>ፋይል</emph> - <emph>የ ህትመት ቅድመ እይታ</emph>."
+msgstr "ይምረጡ <emph> ፋይል </emph> - <emph> የ ህትመት ቅድመ እይታ </emph>"
#: print_preview.xhp
msgctxt ""
@@ -11078,7 +11078,7 @@ msgctxt ""
"par_id3149841\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph>"
#: printer_tray.xhp
msgctxt ""
@@ -11166,7 +11166,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "Choose <emph>File - Print</emph>."
-msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማተሚያ </emph>"
#: printing_order.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id181120161920589\n"
"help.text"
msgid "If the section does not exist: Select the text, then choose menu <item type=\"menuitem\">Insert - Section...</item> ."
-msgstr "ይህ ክፍል ካልተገኘ: ጽሁፍ ይምረጡ እና ከዛ ይምረጡ ዝርዝር <item type=\"menuitem\"> ከፍል - ማስገቢያ...</item> ."
+msgstr "ይህ ክፍል ካልተገኘ: ጽሁፍ ይምረጡ እና ከዛ ይምረጡ ዝርዝር <item type=\"menuitem\"> ከፍል - ማስገቢያ... </item>"
#: protection.xhp
msgctxt ""
@@ -11286,7 +11286,7 @@ msgctxt ""
"par_id181120164739204\n"
"help.text"
msgid "If the section already exists: <variable id=\"gotosection\">Choose menu <item type=\"menuitem\">Format - Sections...</item> and select the section in the list <emph>Section</emph>, or right-click on the section in the Navigator and choose <item type=\"menuitem\">Edit...</item>.</variable>"
-msgstr "ክፍሉ ቀደም ብሎ ከ ነበረ: <variable id=\"gotosection\"> ዝርዝር ይምረጡ <item type=\"menuitem\"> አቀራረብ - ክፍሎች...</item> እና ይምረጡ የ ክፍል ዝርዝር <emph> ክፍል </emph> ወይንም በ ቀኝ-ይጫኑ በ ክፍሉ መቃኛ ላይ እና ይምረጡ <item type=\"menuitem\"> ማረሚያ...</item>.</variable>"
+msgstr "ክፍሉ ቀደም ብሎ ከ ነበረ: <variable id=\"gotosection\"> ዝርዝር ይምረጡ <item type=\"menuitem\"> አቀራረብ - ክፍሎች...</item> እና ይምረጡ የ ክፍል ዝርዝር <emph> ክፍል </emph> ወይንም በ ቀኝ-ይጫኑ በ ክፍሉ መቃኛ ላይ እና ይምረጡ <item type=\"menuitem\"> ማረሚያ...</item></variable>"
#: protection.xhp
msgctxt ""
@@ -11326,7 +11326,7 @@ msgctxt ""
"par_id18112016456780\n"
"help.text"
msgid "If the protection has no a password, and you want to give it, choose the <emph>With password</emph> checkbox and press the <emph>Password...</emph> button, enter and confirm the password of at least five characters."
-msgstr "መጠበቂያው የ መግቢያ ቃል ከሌለው: እና እርስዎ የ መግቢያ ቃል መፍጠር ከፈለጉ: ይምረጡ: የ <emph> በ መግቢያ ቃል</emph> ምልክት ማድረጊያ ውስጥ ምልክት ያድርጉ እና ይጫኑ የ <emph> መግቢያ ቃል ...</emph> ቁልፍ: ያስገቡ እና ያረጋግጡ የ መግቢያ ቃል ቢያንስ አምስት ባህሪዎች መሆን አለበት"
+msgstr "መጠበቂያው የ መግቢያ ቃል ከሌለው: እና እርስዎ የ መግቢያ ቃል መፍጠር ከፈለጉ: ይምረጡ: የ <emph> በ መግቢያ ቃል </emph> ምልክት ማድረጊያ ውስጥ ምልክት ያድርጉ እና ይጫኑ የ <emph> መግቢያ ቃል ...</emph> ቁልፍ: ያስገቡ እና ያረጋግጡ የ መግቢያ ቃል ቢያንስ አምስት ባህሪዎች መሆን አለበት"
#: protection.xhp
msgctxt ""
@@ -11334,7 +11334,7 @@ msgctxt ""
"par_id18112016234567\n"
"help.text"
msgid "If the protection has a password, and you want only to clear it, uncheck the <emph>With password</emph> under the <emph>Write protection</emph> and enter the correct password."
-msgstr "መጠበቂያው የ መግቢያ ቃል ካለው: እና እርስዎ የ መግቢያ ቃል ማጥፋት ከፈለጉ: ምልክት ማድረጊያውን ያጥፉ: የ <emph> በ መግቢያ ቃል </emph> ከ <emph> መጻፊያ መጠበቂያ </emph> እና ያስገቡ ትክክለኛውን የ መግቢያ ቃል"
+msgstr "መጠበቂያው የ መግቢያ ቃል ካለው: እና እርስዎ የ መግቢያ ቃል ማጥፋት ከፈለጉ: ምልክት ማድረጊያውን ያጥፉ: በ <emph> መግቢያ ቃል </emph> ከ <emph> መጻፊያ መጠበቂያ </emph> ውስጥ እና ያስገቡ ትክክለኛውን የ መግቢያ ቃል"
#: protection.xhp
msgctxt ""
@@ -11342,7 +11342,7 @@ msgctxt ""
"par_id18112016234566\n"
"help.text"
msgid "If the protection has a password, and you want only to change it, click to the <emph>Password</emph> button in the <emph>Write protection</emph>, enter the correct password twice."
-msgstr "መጠበቂያው የ መግቢያ ቃል ካለው እና እርስዎ መቀየር ከ ፈለጉ: ይጫኑ የ <emph> መግቢያ ቃል </emph> ቁልፍ በ <emph> መጻፊያ መጠበቂያ </emph> እና ትክክለኛውን የ መግቢያ ቃል ያስገቡ"
+msgstr "መጠበቂያው የ መግቢያ ቃል ካለው እና እርስዎ መቀየር ከ ፈለጉ: ይጫኑ የ <emph> መግቢያ ቃል </emph> ቁልፍ በ <emph> መጻፊያ መጠበቂያ </emph> ውስጥ እና ትክክለኛውን የ መግቢያ ቃል ያስገቡ"
#: protection.xhp
msgctxt ""
@@ -11358,7 +11358,7 @@ msgctxt ""
"par_id18112016345678\n"
"help.text"
msgid "If the protection has no a password, uncheck the <emph>Protect</emph> under the <emph>Write protection</emph>."
-msgstr "መጠበቂያው የ መግቢያ ቃል ከሌለው: ምልክቱን ያጥፉ የ <emph>መጠበቂያ</emph> በ <emph>መጻፊያ መጠበቂያ</emph>."
+msgstr "መጠበቂያው የ መግቢያ ቃል ከሌለው: ምልክቱን ያጥፉ የ <emph> መጠበቂያ </emph> በ <emph> መጻፊያ መጠበቂያ </emph>"
#: protection.xhp
msgctxt ""
@@ -11366,7 +11366,7 @@ msgctxt ""
"par_id19112016123456\n"
"help.text"
msgid "If the protection has a password, uncheck the <emph>Protect</emph> under the <emph>Write protection</emph> and enter the correct password."
-msgstr "መጠበቂያው የ መግቢያ ቃል ካለው: ምልክቱን ያጥፉ የ <emph>መጠበቂያ</emph> በ <emph>መጻፊያ መጠበቂያ</emph> እና ያስገቡ ትክክለኛውን የ መግቢያ ቃል"
+msgstr "መጠበቂያው የ መግቢያ ቃል ካለው: ምልክቱን ያጥፉ <emph> መጠበቂያ </emph> ከ <emph> መጻፊያ መጠበቂያ </emph> ውስጥ እና ያስገቡ ትክክለኛውን የ መግቢያ ቃል"
#: protection.xhp
msgctxt ""
@@ -11446,7 +11446,7 @@ msgctxt ""
"par_id3159088\n"
"help.text"
msgid "Right-click in the index or table of contents. Choose <item type=\"menuitem\">Edit Index...</item> in the context menu. Choose <emph>Protected against manual changes</emph> on the <emph>Type</emph> tab."
-msgstr "በ ቀኝ-ይጫኑ በ ማውጫ ወይንም የ ሰንጠረዥ ማውጫ ውስጥ: ይምረጡ <item type=\"menuitem\">ማውጫ ማረሚያ...</item> በ አገባብ ዝርዝር ውስጥ: ይምረጡ <emph> በ እጅ ከ መቀየር መጠበቂያ </emph> በ <emph> አይነት </emph> tab ውስጥ"
+msgstr "በ ቀኝ-ይጫኑ በ ማውጫ ወይንም የ ሰንጠረዥ ማውጫ ውስጥ: ይምረጡ <item type=\"menuitem\"> ማውጫ ማረሚያ... </item> በ አገባብ ዝርዝር ውስጥ: ይምረጡ <emph> በ እጅ ከ መቀየር መጠበቂያ </emph> በ <emph> አይነት </emph> tab ውስጥ"
#: protection.xhp
msgctxt ""
@@ -11494,7 +11494,7 @@ msgctxt ""
"par_id18112016812973\n"
"help.text"
msgid "To enable the protection of the whole document, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></emph></caseinline><defaultinline><emph><item type=\"menuitem\">Tools - Options</item></emph></defaultinline></switchinline><emph><item type=\"menuitem\"> - %PRODUCTNAME Writer - Compatibility</item></emph> and choose <emph>Protect form</emph>. To disable protection, uncheck it."
-msgstr "ጠቅላላ ሰነዱን መጠበቅ ለ ማስቻል: ይሂዱ ወደ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph><item type=\"menuitem\">%PRODUCTNAME – ምርጫዎች </item></emph></caseinline><defaultinline><emph><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></emph></defaultinline></switchinline><emph><item type=\"menuitem\"> - %PRODUCTNAME መጻፊያ – ተስማሚነቱ </item></emph> እና ይምረጡ <emph> መጠበቂያ ከ </emph> መጠበቂያውን ለ ማሰናከል ምልክቱን ያጥፉ"
+msgstr "ጠቅላላ ሰነዱን መጠበቅ ለ ማስቻል: ይሂዱ ወደ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph><item type=\"menuitem\">%PRODUCTNAME – ምርጫዎች </item></emph></caseinline><defaultinline><emph><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></emph></defaultinline></switchinline><emph><item type=\"menuitem\"> - %PRODUCTNAME መጻፊያ – ተስማሚነቱ </item></emph> እና ይምረጡ <emph> ፎርም መጠበቂያ: </emph> መጠበቂያውን ለ ማሰናከል ምልክቱን ያጥፉ"
#: protection.xhp
msgctxt ""
@@ -11582,7 +11582,7 @@ msgctxt ""
"par_id3153125\n"
"help.text"
msgid "Choose <emph>Insert - Cross-reference</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - መስቀልኛ-ማመሳከሪያ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - መስቀልኛ-ማመሳከሪያ </emph>"
#: references.xhp
msgctxt ""
@@ -11590,7 +11590,7 @@ msgctxt ""
"par_id3149634\n"
"help.text"
msgid "In the <item type=\"menuitem\">Type</item> list, select “Set Reference”."
-msgstr "በ <item type=\"menuitem\">አይነት </item> ዝርዝር ውስጥ ይምረጡ “ማመሳከሪያ ማሰናጃ”."
+msgstr "በ <item type=\"menuitem\"> አይነት </item> ዝርዝር ውስጥ ይምረጡ “ማመሳከሪያ ማሰናጃ”"
#: references.xhp
msgctxt ""
@@ -11606,7 +11606,7 @@ msgctxt ""
"par_id3145110\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert</item>. The name of the target is added to the <item type=\"menuitem\">Selection</item> list."
-msgstr "ይጫኑ <item type=\"menuitem\">ማስገቢያ</item> የ ኢላማው ስም ተጨምሯል ወደ <item type=\"menuitem\">ምርጫዎች</item> ዝርዝር"
+msgstr "ይጫኑ <item type=\"menuitem\"> ማስገቢያ </item> የ ኢላማው ስም ተጨምሯል ወደ <item type=\"menuitem\"> ምርጫዎች </item> ዝርዝር"
#: references.xhp
msgctxt ""
@@ -11662,7 +11662,7 @@ msgctxt ""
"par_id3154856\n"
"help.text"
msgid "In the <emph>Insert reference to</emph> list, select the format for the cross-reference. The <link href=\"text/swriter/01/04090002.xhp\" name=\"format\">format</link> specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the target text, and \"Page\" inserts the page number where the target is located. For footnotes the footnote number is inserted."
-msgstr "ከ <emph> ማስገቢያ ማመሳከሪያዎች ወደ </emph> ዝርዝር ውስጥ ይምረጡ አቀራረብ ለ መስቀልኛ-ማመሳከሪያ <link href=\"text/swriter/01/04090002.xhp\" name=\"format\"> አቀራረብ </link> የሚታየውን የ መረጃውን አይነት ይወስናል እንደ መስቀልኛ-ማመሳከሪያ ለምሳሌ \"ማመሳከሪያ\" የ ኢላማውን ጽሁፍ ያስገባል እና \"ገጽ\" የ ገጽ ቁጥር ያስገባል ወደ ታለመለት ኢላማ: ለ ግርጌ ማስታወሻ የ ግርጌ ማስታወሻ ቁጥር ይገባል"
+msgstr "ከ <emph> ማስገቢያ ማመሳከሪያዎች ወደ </emph> ዝርዝር ውስጥ ይምረጡ አቀራረብ ለ መስቀልኛ-ማመሳከሪያ <link href=\"text/swriter/01/04090002.xhp\" name=\"format\"> አቀራረብ </link> የሚታየውን የ መረጃውን አይነት ይወስናል እንደ መስቀልኛ-ማመሳከሪያ ለምሳሌ: \"ማመሳከሪያ\" የ ኢላማውን ጽሁፍ ያስገባል እና \"ገጽ\" የ ገጽ ቁጥር ያስገባል ወደ ታለመለት ኢላማ: ለ ግርጌ ማስታወሻ የ ግርጌ ማስታወሻ ቁጥር ይገባል"
#: references.xhp
msgctxt ""
@@ -11670,7 +11670,7 @@ msgctxt ""
"par_id3155895\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: references.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"par_id3149992\n"
"help.text"
msgid "You can cross-reference most objects in your document, such as graphics, drawing objects, OLE objects, and tables, so long as they have a caption. To add a caption to an object, select the object, and then choose <link href=\"text/swriter/guide/captions.xhp\" name=\"Insert - Caption\"><emph>Insert - Caption</emph></link>."
-msgstr "እርስዎ መስቀልኛ-ማመሳከር ይችላሉ በርካታ እቃዎችን በ እርስዎ ሰነድ ውስጥ: እንደ ንድፍ: መሳያ እቃዎች: የ OLE እቃዎች እና ሰንጠረዦች የመሳሰሉ: መግለጫ እስካላቸው ድረስ: ለ እቃ መግለጫ ለ መጨመር: እቃውን ይምረጡ: እና ከዛ ይምረጡ <link href=\"text/swriter/guide/captions.xhp\" name=\"Insert - Caption\"><emph> መግለጫ- ማስገቢያ </emph></link>."
+msgstr "እርስዎ መስቀልኛ-ማመሳከር ይችላሉ በርካታ እቃዎችን በ እርስዎ ሰነድ ውስጥ: እንደ ንድፍ: መሳያ እቃዎች: የ OLE እቃዎች እና ሰንጠረዦች የመሳሰሉ: መግለጫ እስካላቸው ድረስ: ለ እቃ መግለጫ ለ መጨመር: እቃውን ይምረጡ: እና ከዛ ይምረጡ <link href=\"text/swriter/guide/captions.xhp\" name=\"Insert - Caption\"><emph> መግለጫ- ማስገቢያ </emph></link>"
#: references.xhp
msgctxt ""
@@ -11710,7 +11710,7 @@ msgctxt ""
"par_id3150212\n"
"help.text"
msgid "Choose <emph>Insert - Cross-reference</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - መስቀልኛ-ማመሳከሪያ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - መስቀልኛ-ማመሳከሪያ </emph>"
#: references.xhp
msgctxt ""
@@ -11742,7 +11742,7 @@ msgctxt ""
"par_id3150535\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: references.xhp
msgctxt ""
@@ -11822,7 +11822,7 @@ msgctxt ""
"par_id3149611\n"
"help.text"
msgid "Choose <emph>Edit - Fields</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - ሜዳዎች</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - ሜዳዎች </emph>"
#: references_modify.xhp
msgctxt ""
@@ -11886,7 +11886,7 @@ msgctxt ""
"par_idN10669\n"
"help.text"
msgid "Choose <emph>Format - Page - Page</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ገጽ </emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ገጽ - ገጽ </emph>"
#: registertrue.xhp
msgctxt ""
@@ -11926,7 +11926,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "Select all the paragraphs you want to exempt, then choose <emph>Format - Paragraph - Indents & Spacing</emph>."
-msgstr "ይምረጡ ሁሉንም አንቀጾች ነፃ ማድረግ የሚፈልጉትን: እና ከዛ ይምረጡ <emph>አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት</emph>."
+msgstr "ይምረጡ ሁሉንም አንቀጾች ነፃ ማድረግ የሚፈልጉትን: እና ከዛ ይምረጡ <emph> አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት </emph>"
#: registertrue.xhp
msgctxt ""
@@ -11934,7 +11934,7 @@ msgctxt ""
"par_idN1068C\n"
"help.text"
msgid "Open the Styles and Formatting window, click the Paragraph Style you want to exempt, right-click that style, choose <emph>Modify</emph>. In the dialog, click the <emph>Indents & Spacing</emph> tab."
-msgstr "የ ዘዴዎች እና አቀራረብ መስኮት መክፈቻ: ይጫኑ የ አንቀጽ ዘዴዎች እርስዎ ነፃ ማድረግ የሚፈልጉትን: በ ቀኝ-ይጫኑ በ ዘዴው ላይ: እና ይምረጡ <emph>ማሻሻያ</emph> በ ንግግር ውስጥ: ይጫኑ የ <emph>ማስረጊያ & ክፍተት</emph> tab"
+msgstr "የ ዘዴዎች እና አቀራረብ መስኮት መክፈቻ: ይጫኑ የ አንቀጽ ዘዴዎች እርስዎ ነፃ ማድረግ የሚፈልጉትን: በ ቀኝ-ይጫኑ በ ዘዴው ላይ: እና ይምረጡ <emph> ማሻሻያ </emph> በ ንግግር ውስጥ: ይጫኑ የ <emph> ማስረጊያ & ክፍተት </emph> tab"
#: registertrue.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3149645\n"
"help.text"
msgid "On the <emph>Options</emph> tab, ensure that <emph>Combine single line paragraphs if length greater than 50%</emph> is selected. To change the minimum percentage for the line length, double-click the option in the list, and then enter a new percentage."
-msgstr "በ <emph>ምርጫ</emph> tab, እርግጠኛ ይሁኑ የ <emph>ነጠላ አንቀጾች መቀላቀያ እርዝመት እንደሚበልጥ ከ 50%</emph> መመረጡን: አነስተኛውን ፐርሰንት ለ መምረጥ ለ መስመር እርዝመት: ሁለት ጊዜ-ይጫኑ ከ ዝርዝር ምርጫ ውስጥ: እና ከዛ አዲስ ፐርሰንት ያስገቡ"
+msgstr "በ <emph> ምርጫ </emph> tab: እርግጠኛ ይሁኑ የ <emph> ነጠላ አንቀጾች መቀላቀያ እርዝመት እንደሚበልጥ ከ 50%</emph> መመረጡን: አነስተኛውን ፐርሰንት ለ መምረጥ ለ መስመር እርዝመት: ሁለት ጊዜ-ይጫኑ ከ ዝርዝር ምርጫ ውስጥ: እና ከዛ አዲስ ፐርሰንት ያስገቡ"
#: removing_line_breaks.xhp
msgctxt ""
@@ -12030,7 +12030,7 @@ msgctxt ""
"par_id3156253\n"
"help.text"
msgid "In the <item type=\"menuitem\">Apply Style</item> box on the <item type=\"menuitem\">Formatting</item> bar, choose “Default”."
-msgstr "ከ <item type=\"menuitem\">ዘዴዎች መፈጸሚያ</item> ሳጥን ውስጥ የ <item type=\"menuitem\">አቀራረብ</item> መደርደሪያ ውስጥ ይምረጡ “ነባር”."
+msgstr "ከ <item type=\"menuitem\">ዘዴዎች መፈጸሚያ</item> ሳጥን ውስጥ የ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ውስጥ ይምረጡ “ነባር”"
#: removing_line_breaks.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id3153388\n"
"help.text"
msgid "Choose <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - በራሱ አራሚ - መፈጸሚያ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - መፈጸሚያ </emph>"
#: reset_format.xhp
msgctxt ""
@@ -12078,7 +12078,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "To reset all direct formatting of existing text, select that text, then choose the menu command <emph>Format - Clear Direct Formatting</emph>."
-msgstr "የ ነበረውን ጽሁፍ እንደነበር ለ መመለስ በ ቀጥታ አቀራረብ: ይምረጡ ያን ጽሁፍ: እና ከዛ ይምረጡ የ ዝርዝር ትእዛዝ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>."
+msgstr "የ ነበረውን ጽሁፍ እንደነበር ለ መመለስ በ ቀጥታ አቀራረብ: ይምረጡ ያን ጽሁፍ: እና ከዛ ይምረጡ የ ዝርዝር ትእዛዝ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
#: resize_navigator.xhp
msgctxt ""
@@ -12262,7 +12262,7 @@ msgctxt ""
"par_id3155907\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Find & Replace</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ማረሚያ - መፈለጊያ & መቀየሪያ</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ማረሚያ - መፈለጊያ & መቀየሪያ </item>"
#: search_regexp.xhp
msgctxt ""
@@ -12270,7 +12270,7 @@ msgctxt ""
"par_id2142399\n"
"help.text"
msgid "Click <item type=\"menuitem\">More Options</item> to expand the dialog."
-msgstr "ይጫኑ <item type=\"menuitem\">ተጨማሪ ምርጫዎች</item> ንግግሩን ለማስፊያ"
+msgstr "ይጫኑ <item type=\"menuitem\"> ተጨማሪ ምርጫዎች </item> ንግግሩን ለማስፊያ"
#: search_regexp.xhp
msgctxt ""
@@ -12294,7 +12294,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "Click <item type=\"menuitem\">Find Next</item> or <item type=\"menuitem\">Find All</item>."
-msgstr "ይጫኑ <item type=\"menuitem\">ቀጥሎ መፈለጊያ</item> ወይንም <item type=\"menuitem\">ሁሉንም መፈለጊያ</item>."
+msgstr "ይጫኑ <item type=\"menuitem\"> ቀጥሎ መፈለጊያ </item> ወይንም <item type=\"menuitem\"> ሁሉንም መፈለጊያ </item>"
#: search_regexp.xhp
msgctxt ""
@@ -12398,7 +12398,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "Choose <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Sections\"><emph>Format - Sections</emph></link>."
-msgstr "ይምረጡ <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Sections\"><emph>አቀራረብ - ክፍሎች</emph></link>"
+msgstr "ይምረጡ <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Sections\"><emph> አቀራረብ - ክፍሎች </emph></link>"
#: section_edit.xhp
msgctxt ""
@@ -12422,7 +12422,7 @@ msgctxt ""
"par_id3153120\n"
"help.text"
msgid "To convert a section into normal text, click <emph>Remove</emph>."
-msgstr "በ ከፊል ክፍሎችን ወደ መደበኛ ጽሁፍ ለ መቀየር: ይጫኑ<emph>ማስወገጃ</emph>."
+msgstr "በ ከፊል ክፍሎችን ወደ መደበኛ ጽሁፍ ለ መቀየር: ይጫኑ <emph> ማስወገጃ </emph>"
#: section_edit.xhp
msgctxt ""
@@ -12430,7 +12430,7 @@ msgctxt ""
"par_id3149631\n"
"help.text"
msgid "To make a section read-only, select the <emph>Protected</emph> check box in the <emph>Write Protection</emph> area."
-msgstr "የተወሰነ ክፍል ለንባብ-ብቻ ለማድረግ: ይምረጡ <emph> የሚጠበቅ </emph> ሳጥን ውስጥ ምልክት ያድርጉ <emph> ከ መጻፍ የሚጠበቅ </emph> ቦታ ውስጥ"
+msgstr "የ ተወሰነ ክፍል ለ ንባብ-ብቻ ለ ማድረግ: ይምረጡ <emph> የሚጠበቅ </emph> ሳጥን ውስጥ ምልክት ያድርጉ <emph> ከ መጻፍ የሚጠበቅ </emph> ቦታ ውስጥ"
#: section_edit.xhp
msgctxt ""
@@ -12518,7 +12518,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>."
+msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>"
#: section_insert.xhp
msgctxt ""
@@ -12534,7 +12534,7 @@ msgctxt ""
"par_id3153127\n"
"help.text"
msgid "Set the options for the section, and then click <emph>Insert</emph>."
-msgstr "ለ ክፍሉ ምርጫ ማሰናጃ: እና ከዛ ይምረጡ <emph> ማስገቢያ </emph>."
+msgstr "ለ ክፍሉ ምርጫ ማሰናጃ: እና ከዛ ይምረጡ <emph> ማስገቢያ </emph>"
#: section_insert.xhp
msgctxt ""
@@ -12582,7 +12582,7 @@ msgctxt ""
"par_id3156241\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>."
+msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>"
#: section_insert.xhp
msgctxt ""
@@ -12614,7 +12614,7 @@ msgctxt ""
"par_id3155882\n"
"help.text"
msgid "Locate the document containing the section that you want to link to, and then click <emph>Insert</emph>."
-msgstr "ሰነዱን ፈልገው ያግኙ ክፍሉን የያዘውን እርስዎ ማገናኘት የሚፈልጉትን ወደ እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ሰነዱን ፈልገው ያግኙ ክፍሉን የያዘውን እርስዎ ማገናኘት የሚፈልጉትን ወደ እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>"
#: section_insert.xhp
msgctxt ""
@@ -12630,7 +12630,7 @@ msgctxt ""
"par_id3150003\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: sections.xhp
msgctxt ""
@@ -12646,7 +12646,7 @@ msgctxt ""
"bm_id3149832\n"
"help.text"
msgid "<bookmark_value>multi-column text</bookmark_value> <bookmark_value>text; multi-column</bookmark_value> <bookmark_value>columns; on text pages</bookmark_value> <bookmark_value>text columns</bookmark_value> <bookmark_value>sections; columns in/use of</bookmark_value>"
-msgstr "<bookmark_value>የ በርካታ-አምዶች ጽሁፍ</bookmark_value> <bookmark_value>ጽሁፍ; በርካታ-አምዶች</bookmark_value> <bookmark_value>አምዶች; በ ጽሁፍ ገጾች ውስጥ</bookmark_value> <bookmark_value>ጽሁፍ አምዶች</bookmark_value> <bookmark_value>ክፍሎች; አምዶች በ/ስራ ላይ ነው በ</bookmark_value>"
+msgstr "<bookmark_value>የ በርካታ-አምዶች ጽሁፍ</bookmark_value> <bookmark_value>ጽሁፍ; በርካታ-አምዶች</bookmark_value> <bookmark_value>አምዶች: በ ጽሁፍ ገጾች ውስጥ</bookmark_value> <bookmark_value>ጽሁፍ አምዶች</bookmark_value> <bookmark_value>ክፍሎች: አምዶች በ/ስራ ላይ ነው በ</bookmark_value>"
#: sections.xhp
msgctxt ""
@@ -12806,7 +12806,7 @@ msgctxt ""
"par_id3156100\n"
"help.text"
msgid "Choose <emph>File - Send - Create HTML Document</emph>."
-msgstr "ይምረጡ <emph>ፋይል - መላኪያ - የ HTML ሰነድ መፍጠሪያ</emph>."
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ - የ HTML ሰነድ መፍጠሪያ </emph>"
#: send2html.xhp
msgctxt ""
@@ -13046,7 +13046,7 @@ msgctxt ""
"par_id1917477\n"
"help.text"
msgid "Any text in a Writer document can be marked with a Smart Tag, by default a magenta colored underline. You can change the color in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Application Colors</item>."
-msgstr "ማንኛውንም ጽሁፍ በ መጻፊያ ሰነድ ውስጥ ምልክት ማድረግ ይቻላል እንደ Smart Tag, በ ነባር የ magenta ቀለም ከ ስሩ ይሰመርበታል: እርስዎ ቀለሙን መቀየር ይችላሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - የ መተግበሪያ ቀለሞች</item>."
+msgstr "ማንኛውንም ጽሁፍ በ መጻፊያ ሰነድ ውስጥ ምልክት ማድረግ ይቻላል እንደ Smart Tag, በ ነባር የ ማጄንታ ቀለም ከ ስሩ ይሰመርበታል: እርስዎ ቀለሙን መቀየር ይችላሉ በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - የ መተግበሪያ ቀለሞች </item>"
#: smarttags.xhp
msgctxt ""
@@ -13126,7 +13126,7 @@ msgctxt ""
"par_id0525200902184476\n"
"help.text"
msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
-msgstr "በ ጽሁፍ ውስጥ ፊደል እና ሰዋሰው ለማረም: ተገቢው መዝገበ ቃላት መገጠም አለበት: ለ በርካታ ቋንቋዎች ሶስት የ ተለያዩ መዝገበ ቃላቶች አሉ: ፊደል ማረሚያ: የ ጭረት መዝገበ ቃላት: እና ተመሳሳይ: እያንዳንዱ መዝገበ ቃላት የሚሸፍነው አንድ ቋንቋ ብቻ ነው: የ ሰዋሰው መዝገበ ቃላት ማውረድ እና መግጠም ይቻላል እንደ ተጨማሪዎች: ይህን ይመልከቱ የ <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\"> የ ተጨማሪዎች ድህረ ገጽ </link>."
+msgstr "በ ጽሁፍ ውስጥ ፊደል እና ሰዋሰው ለማረም: ተገቢው መዝገበ ቃላት መገጠም አለበት: ለ በርካታ ቋንቋዎች ሶስት የ ተለያዩ መዝገበ ቃላቶች አሉ: ፊደል ማረሚያ: የ ጭረት መዝገበ ቃላት: እና ተመሳሳይ: እያንዳንዱ መዝገበ ቃላት የሚሸፍነው አንድ ቋንቋ ብቻ ነው: የ ሰዋሰው መዝገበ ቃላት ማውረድ እና መግጠም ይቻላል እንደ ተጨማሪዎች: ይህን ይመልከቱ <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\"> የ ተጨማሪዎች ድህረ ገጽ </link>"
#: spellcheck_dialog.xhp
msgctxt ""
@@ -13238,7 +13238,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ዘዴዎች እና አቀራረብ </emph>"
#: stylist_fillformat.xhp
msgctxt ""
@@ -13318,7 +13318,7 @@ msgctxt ""
"par_id3156097\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ዘዴዎች እና አቀራረብ </emph>"
#: stylist_fromselect.xhp
msgctxt ""
@@ -13374,7 +13374,7 @@ msgctxt ""
"par_id3154233\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ዘዴዎች እና አቀራረብ </emph>"
#: stylist_fromselect.xhp
msgctxt ""
@@ -13454,7 +13454,7 @@ msgctxt ""
"par_id3149838\n"
"help.text"
msgid "Choose <emph>View - Styles and Formatting</emph>."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች እና አቀራረብ</emph>."
+msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph>"
#: stylist_update.xhp
msgctxt ""
@@ -13550,7 +13550,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "Choose <emph>Format - Character - Position</emph>, and then select <emph>Superscript</emph> or <emph>Subscript</emph>."
-msgstr "ይምረጡ <emph>አቀራረብ - ባህሪ - ቦታ</emph> እና ከዛ ይምረጡ <emph> በትንንሽ ከፍ ብሎ መጻፊያ</emph> ወይንም <emph> በትንንሽ ዝቅ ብሎ መጻፊያ</emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - ቦታ </emph> እና ከዛ ይምረጡ <emph> በትንንሽ ከፍ ብሎ መጻፊያ </emph> ወይንም <emph> በትንንሽ ዝቅ ብሎ መጻፊያ </emph>"
#: subscript.xhp
msgctxt ""
@@ -13702,7 +13702,7 @@ msgctxt ""
"par_id3155906\n"
"help.text"
msgid "To insert a new row in a table, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and then press the up or down arrow key. You can also move the cursor to the last cell in the table, and then press Tab."
-msgstr "አዲስ ረድፍ ለመጨመር መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ፡ እና ከዛ ይጫኑ ቀስት ወደ ላይ ወይንም ወደ ታች ቁልፍ፡ እንዲሁም መጠቆሚያውን ወደ ሰንጠረዡ መጨረሻ ክፍል ያንቀሳቅሱ እና ከዛ ይጫኑ Tab."
+msgstr "አዲስ ረድፍ ለመጨመር መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ፡ እና ከዛ ይጫኑ ቀስት ወደ ላይ ወይንም ወደ ታች ቁልፍ፡ እንዲሁም መጠቆሚያውን ወደ ሰንጠረዡ መጨረሻ ክፍል ያንቀሳቅሱ እና ከዛ ይጫኑ Tab."
#: table_cells.xhp
msgctxt ""
@@ -13710,7 +13710,7 @@ msgctxt ""
"par_id3147412\n"
"help.text"
msgid "To insert a new column, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and then press the left or right arrow key."
-msgstr "አዲስ አምድ ለመጨመር መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ: እና ከዛ ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት ቁልፎችን"
+msgstr "አዲስ አምድ ለመጨመር መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ: እና ከዛ ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት ቁልፎችን"
#: table_cells.xhp
msgctxt ""
@@ -13718,7 +13718,7 @@ msgctxt ""
"par_id3156096\n"
"help.text"
msgid "To split a table cell instead of adding a column, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and then hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you press the left or right arrow key."
-msgstr "የ ሰንጠረዥ ክፍል ለ መክፈል አምድ ከ መጨመር ይልቅ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ፡ እና ከዛ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> የ ግራ ወይንም የ ቀኝ ቀስት ቁልፎችን በሚጫኑ ጊዜ"
+msgstr "የ ሰንጠረዥ ክፍል ለ መክፈል አምድ ከ መጨመር ይልቅ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ: እና ከዛ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> የ ግራ ወይንም የ ቀኝ ቀስት ቁልፎችን በሚጫኑ ጊዜ"
#: table_cells.xhp
msgctxt ""
@@ -13726,7 +13726,7 @@ msgctxt ""
"par_id3153408\n"
"help.text"
msgid "To delete a row, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, and then press the up or down arrow key."
-msgstr "ረድፍ ለማጥፋት መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ማጥፊያ: እና ከዛ ይጫኑ ወደ ላይ ወይንም ወደ ታች የ ቀስት ቁልፎች"
+msgstr "ረድፍ ለማጥፋት መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማጥፊያ: እና ከዛ ይጫኑ ወደ ላይ ወይንም ወደ ታች የ ቀስት ቁልፎች"
#: table_cells.xhp
msgctxt ""
@@ -13734,7 +13734,7 @@ msgctxt ""
"par_id3149626\n"
"help.text"
msgid "To delete a column, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, and then press the left or the right arrow key."
-msgstr "አምድ ለማጥፋት መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ማጥፊያ እና ከዛ ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት ቁልፍ"
+msgstr "አምድ ለማጥፋት መጠቆሚያውን በ ሰንጠረዥ ክፍል ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማጥፊያ እና ከዛ ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት ቁልፍ"
#: table_cells.xhp
msgctxt ""
@@ -13742,7 +13742,7 @@ msgctxt ""
"par_id3149612\n"
"help.text"
msgid "To merge a table into an adjacent cell, place the cursor in the cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Delete, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then press the left or the right arrow key."
-msgstr "ሰንጠረዥ ለማዋሀድ አጠገቡ ካለው ክፍል ጋር፡ መጠቆሚያውን ክፍሉ ውስጥ ያድርጉ እን ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>+ማጥፊያ፡ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, እና ከዛ ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት ቁልፍ"
+msgstr "ሰንጠረዥ ለማዋሀድ አጠገቡ ካለው ክፍል ጋር፡ መጠቆሚያውን ክፍሉ ውስጥ ያድርጉ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማጥፊያ፡ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ከዛ ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት ቁልፍ"
#: table_delete.xhp
msgctxt ""
@@ -13790,7 +13790,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "To delete the contents of a table, click in the table, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A until all cells are selected, and then press Delete or Backspace."
-msgstr "የ ሰንጠረዥ ይዞታዎችን ለ ማጥፋት ይጫኑ በ ሰንጠረዡ ውስጥ ፡ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A ሁሉም ክፍሎች እስኪመረጡ እና ከዛ ይጫኑ ማጥፊያ ወይንም የ ኋሊት ደምሳሽ"
+msgstr "የ ሰንጠረዥ ይዞታዎችን ለ ማጥፋት ይጫኑ በ ሰንጠረዡ ውስጥ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A ሁሉም ክፍሎች እስኪመረጡ እና ከዛ ይጫኑ ማጥፊያ ወይንም የ ኋሊት ደምሳሽ"
#: table_insert.xhp
msgctxt ""
@@ -13846,7 +13846,7 @@ msgctxt ""
"par_id3147416\n"
"help.text"
msgid "On the <emph>Standard</emph> or the <emph>Insert</emph> bar, click the arrow next to the <emph>Table</emph> icon."
-msgstr "በ <emph>መደበኛው</emph> ወይንም በ <emph>ማስገቢያ</emph> መደርደሪያ ላይ ይጫኑ ቀስቱን ከ<emph>ሰንጠረዥ</emph> ምልክት አጠገብ ያለውን"
+msgstr "በ <emph> መደበኛው </emph> ወይንም በ <emph> ማስገቢያ </emph> መደርደሪያ ላይ ይጫኑ ቀስቱን ከ <emph> ሰንጠረዥ </emph> ምልክት አጠገብ ያለውን"
#: table_insert.xhp
msgctxt ""
@@ -13934,7 +13934,7 @@ msgctxt ""
"par_id3154395\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr "ይምረጡ <emph>ማረሚያ - ኮፒ</emph>."
+msgstr "ይምረጡ <emph> ማረሚያ - ኮፒ </emph>"
#: table_insert.xhp
msgctxt ""
@@ -13950,7 +13950,7 @@ msgctxt ""
"par_id3153383\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>. The cell range is pasted as an OLE object. To edit the contents of the cells, double-click the object."
-msgstr "ይምረጡ <emph>ማረሚያ - መለጠፊያ</emph>. የ ክፍሉ መጠን ይለጠፋል እንደ OLE እቃ: የ ክፍሎቹን ይዞታ ለማረም: ሁለት ጊዜ-ይጫኑ በ እቃው ላይ"
+msgstr "ይምረጡ <emph> ማረሚያ - መለጠፊያ </emph> የ ክፍሉ መጠን ይለጠፋል እንደ OLE እቃ: የ ክፍሎቹን ይዞታ ለማረም: ሁለት ጊዜ-ይጫኑ በ እቃው ላይ"
#: table_insert.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"par_id3154248\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>, and choose from the following options:"
-msgstr "ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ</emph> እና ይምረጡ ከሚቀጥሉት ምርጫዎች ውስጥ:"
+msgstr "ይምረጡ <emph> ማረሚያ - የተለየ መለጠፊያ </emph> እና ይምረጡ ከሚቀጥሉት ምርጫዎች ውስጥ:"
#: table_insert.xhp
msgctxt ""
@@ -14198,7 +14198,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting Tables, Rows, and Columns"
-msgstr "ሰንጠረዦች ፡ ረድፎች እና አምዶች መምረጫ"
+msgstr "ሰንጠረዦች: ረድፎች እና አምዶች መምረጫ"
#: table_select.xhp
msgctxt ""
@@ -14214,7 +14214,7 @@ msgctxt ""
"par_idN105F0\n"
"help.text"
msgid "<variable id=\"table_select\"><link href=\"text/swriter/guide/table_select.xhp\">Selecting Tables, Rows, and Columns</link></variable>"
-msgstr "<variable id=\"table_select\"><link href=\"text/swriter/guide/table_select.xhp\">ሰንጠረዦች ፡ ረድፎች እና አምዶች መምረጫ</link></variable>"
+msgstr "<variable id=\"table_select\"><link href=\"text/swriter/guide/table_select.xhp\">ሰንጠረዦች: ረድፎች እና አምዶች መምረጫ</link></variable>"
#: table_select.xhp
msgctxt ""
@@ -14438,7 +14438,7 @@ msgctxt ""
"par_id5009308\n"
"help.text"
msgid "To wrap text to the sides of a table, and to arrange two tables next to another, you must insert the tables into a frame. Click inside the table, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A twice to select the whole table, then choose <emph>Insert - Frame</emph>."
-msgstr "ጽሁፍ ለ መጠቅለል ከ ሰንጠረዥ አጠገብ: እና ለማዘጋጀት ሁለት ሰንጠረዦች አጠገብ ለ አጠገብ: እርስዎ ማስገባት አለብዎት ሰንጠረዦች ወደ ክፈፍ ውስጥ: ይጫኑ በ ሰንጠረዥ ውስጥ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A ሁለት ጊዜ ጠቅላላ ሰነዱን ለመምረጥ: እና ከዛ ይምረጡ <emph> ማስገቢያ - ክፈፍ </emph>."
+msgstr "ጽሁፍ ለ መጠቅለል ከ ሰንጠረዥ አጠገብ: እና ለማዘጋጀት ሁለት ሰንጠረዦች አጠገብ ለ አጠገብ: እርስዎ ማስገባት አለብዎት ሰንጠረዦች ወደ ክፈፍ ውስጥ: ይጫኑ በ ሰንጠረዥ ውስጥ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A ሁለት ጊዜ ጠቅላላ ሰነዱን ለመምረጥ: እና ከዛ ይምረጡ <emph> ማስገቢያ - ክፈፍ </emph>"
#: table_sizing.xhp
msgctxt ""
@@ -14566,7 +14566,7 @@ msgctxt ""
"par_id3147422\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Templates - Save As Template</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - ቴምፕሌቶች - ማስቀመጫ እንደ ቴምፕሌት</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ቴምፕሌቶች - ማስቀመጫ እንደ ቴምፕሌት </item>"
#: template_create.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "In the <item type=\"menuitem\">New Template</item> box, type a name for the new template."
-msgstr "ከ <item type=\"menuitem\">አዲስ ቴምፕሌት</item> ሳጥን ውስጥ ለ አዲሱ ቴምፕሌት ስም ይጻፉ"
+msgstr "ከ <item type=\"menuitem\"> አዲስ ቴምፕሌት </item> ሳጥን ውስጥ ለ አዲሱ ቴምፕሌት ስም ይጻፉ"
#: template_create.xhp
msgctxt ""
@@ -14598,7 +14598,7 @@ msgctxt ""
"par_id3153404\n"
"help.text"
msgid "To create a document based on the template, choose <item type=\"menuitem\">File - New - Templates</item>, select the template, and then click <item type=\"menuitem\">Open</item>."
-msgstr "ቴምፕሌት መሰረት ያደረገ ሰነድ ለ መፍጠር ይምረጡ <item type=\"menuitem\">ፋይል - አዲስ - ቴምፕሌት </item> ቴምፕሌት ይምረጡ እና ከዛ ይጫኑ <item type=\"menuitem\">መክፈቻ</item>."
+msgstr "ቴምፕሌት መሰረት ያደረገ ሰነድ ለ መፍጠር ይምረጡ <item type=\"menuitem\"> ፋይል - አዲስ - ቴምፕሌት </item> ቴምፕሌት ይምረጡ እና ከዛ ይጫኑ <item type=\"menuitem\"> መክፈቻ </item>"
#: template_create.xhp
msgctxt ""
@@ -14662,7 +14662,7 @@ msgctxt ""
"par_id3156101\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Templates - Save As Template</item>."
-msgstr "ይምረጡ <item type=\"menuitem\">ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት </item>"
#: template_default.xhp
msgctxt ""
@@ -14686,7 +14686,7 @@ msgctxt ""
"par_id3153140\n"
"help.text"
msgid "Choose <emph>File - New - Templates</emph>."
-msgstr "ይምረጡ <emph>ፋይል - አዲስ - ቴምፕሌቶች</emph>."
+msgstr "ይምረጡ <emph> ፋይል - አዲስ - ቴምፕሌቶች </emph>"
#: template_default.xhp
msgctxt ""
@@ -14806,7 +14806,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Object - Text Attributes</item>, and then click the <item type=\"menuitem\">Text Animation</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - እቃ - የ ጽሁፍ ባህሪዎች </item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ጽሁፍ እንቅስቃሴ </item> tab."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - እቃ - የ ጽሁፍ ባህሪዎች </item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ጽሁፍ እንቅስቃሴ </item> tab"
#: text_animation.xhp
msgctxt ""
@@ -14838,7 +14838,7 @@ msgctxt ""
"bm_id3155182\n"
"help.text"
msgid "<bookmark_value>characters; uppercase or lowercase</bookmark_value> <bookmark_value>text; uppercase or lowercase</bookmark_value> <bookmark_value>lowercase letters; text</bookmark_value> <bookmark_value>uppercase; formatting text</bookmark_value> <bookmark_value>capital letters;changing to small letters</bookmark_value> <bookmark_value>changing;cases of text</bookmark_value> <bookmark_value>initial capitals in titles</bookmark_value> <bookmark_value>small capitals (guide)</bookmark_value>"
-msgstr "<bookmark_value>ባህሪዎች: uppercase ወይንም lowercase</bookmark_value> <bookmark_value>ጽሁፍ: uppercase ወይንም lowercase</bookmark_value> <bookmark_value>lowercase ፊደሎች: ጽሁፍ</bookmark_value> <bookmark_value>uppercase: ጽሁፍ አቀራረብ</bookmark_value> <bookmark_value>አቢይ ፊደሎች: መቀየሪያ ወደ ትንንሽ ፊደሎች</bookmark_value> <bookmark_value>መቀየሪያ: የ ጽሁፍ ጉዳይ</bookmark_value> <bookmark_value>የ አርእስት መጀመሪያ በ አቢይ ፊደሎች</bookmark_value> <bookmark_value>በ ትንንሽ አቢይ ፊደሎች (መምሪያ)</bookmark_value>"
+msgstr "<bookmark_value>ባህሪዎች: የ ላይኛው ጉዳይ ፊደል ወይንም የ ታችኛው ጉዳይ ፊደል</bookmark_value> <bookmark_value>ጽሁፍ: የ ላይኛው ጉዳይ ፊደል ወይንም የ ታችኛው ጉዳይ ፊደል</bookmark_value> <bookmark_value> የ ታችኛው ጉዳይ ፊደል: ጽሁፍ</bookmark_value> <bookmark_value>የ ላይኛው ጉዳይ ፊደል: የ ጽሁፍ አቀራረብ</bookmark_value> <bookmark_value>አቢይ ፊደል: መቀየሪያ ወደ ትንንሽ ፊደል</bookmark_value> <bookmark_value>መቀየሪያ: የ ጽሁፍ ጉዳይ</bookmark_value> <bookmark_value> የ አርእስት መጀመሪያ በ አቢይ ፊደል</bookmark_value> <bookmark_value>በ ትንሽ አቢይ ፊደሎች (መምሪያ)</bookmark_value>"
#: text_capital.xhp
msgctxt ""
@@ -14894,7 +14894,7 @@ msgctxt ""
"par_id1120200910485778\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Text - Uppercase</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ጽሁፍ - በ ላይኛው ጉዳይ </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ጽሁፍ - በ ላይኛው ጉዳይ ፊደል </item>"
#: text_capital.xhp
msgctxt ""
@@ -14902,7 +14902,7 @@ msgctxt ""
"par_id1120200910485775\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Character</item>, click the Font Effects tab, then select the type of capitalization in the Effects box. \"Capitals\" capitalizes all letters. \"Title\" capitalizes the first letter of each word. \"Small capitals\" capitalizes all letters, but in a reduced font size."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - ባህሪ</item>, ይጫኑ የ ፊደል ተጽእኖ tab, እና ከዛ ይምረጡ የሚፈልጉትን አይነት አቢይ ማድረጊያ ተጽእኖ ሳጥን ውስጥ: \"አቢይ\" ሁሉንም ፊደሎች አቢይ ያደርጋል: \"አርእስት\" የ ቃሎችን መጀመሪያ አቢይ ያደርጋል\"ትንሽ አቢይ\" ሁሉንም ፊደሎች አቢይ ያደርጋል: ነገር ግን በ ተቀነሰ የ ፊደል መጠን"
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ባህሪ </item> ይጫኑ የ ፊደል ተጽእኖ tab, እና ከዛ ይምረጡ የሚፈልጉትን አይነት አቢይ ማድረጊያ ተጽእኖ ሳጥን ውስጥ: \"አቢይ\" ሁሉንም ፊደሎች አቢይ ያደርጋል: \"አርእስት\" የ ቃሎችን መጀመሪያ አቢይ ያደርጋል\"ትንሽ አቢይ\" ሁሉንም ፊደሎች አቢይ ያደርጋል: ነገር ግን በ ተቀነሰ የ ፊደል መጠን"
#: text_capital.xhp
msgctxt ""
@@ -14910,7 +14910,7 @@ msgctxt ""
"hd_id3149644\n"
"help.text"
msgid "To Change Text to Lowercase"
-msgstr "ጽሁፍ ወደ Lowercase ለ መቀየር"
+msgstr "ጽሁፍ ወደ ታችኛው ጉዳይ ለ መቀየር"
#: text_capital.xhp
msgctxt ""
@@ -14918,7 +14918,7 @@ msgctxt ""
"par_id3149964\n"
"help.text"
msgid "Select the text that you want to change to lowercase."
-msgstr "ጽሁፉን ይምረጡ ወደ lowercase መቀየር የሚፈልጉትን"
+msgstr "ጽሁፉን ይምረጡ ወደ ታችኛው ጉዳይ መቀየር የሚፈልጉትን"
#: text_capital.xhp
msgctxt ""
@@ -14934,7 +14934,7 @@ msgctxt ""
"par_id112020091049000\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Text - Lowercase</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ጽሁፍ - በ ታችኛው ጉዳይ </item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ጽሁፍ - በ ታችኛው ጉዳይ </item>"
#: text_capital.xhp
msgctxt ""
@@ -14942,7 +14942,7 @@ msgctxt ""
"par_id1120200910490034\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Character</item>, click the Font Effects tab, then select \"Lowercase\" in the Effects box."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - ባህሪ</item> ይጫኑ የ ፊደል ተጽእኖ tab, እና ከዛ ይምረጡ \"Lowercase\" ከ ተጽእኖ ሳጥን ውስጥ"
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ባህሪ </item> ይጫኑ የ ፊደል ውጤት tab እና ከዛ ይምረጡ \"የ ታችኛው ጉዳይ\" ከ ውጤት ሳጥን ውስጥ"
#: text_centervert.xhp
msgctxt ""
@@ -14982,7 +14982,7 @@ msgctxt ""
"par_id3155868\n"
"help.text"
msgid "Choose <emph>Insert - Frame</emph>."
-msgstr "ይምረጡ <emph> ማስገቢያ - ክፈፍ </emph>."
+msgstr "ይምረጡ <emph> ማስገቢያ - ክፈፍ </emph>"
#: text_centervert.xhp
msgctxt ""
@@ -15174,7 +15174,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "Select the text, and then choose <item type=\"menuitem\">Insert - Frame</item>."
-msgstr "ይምረጡ ጽሁፍ እና ከዛ ይምረጡ <item type=\"menuitem\"> ማስገቢያ - ክፈፍ </item>."
+msgstr "ይምረጡ ጽሁፍ እና ከዛ ይምረጡ <item type=\"menuitem\"> ማስገቢያ - ክፈፍ </item>"
#: text_emphasize.xhp
msgctxt ""
@@ -15310,7 +15310,7 @@ msgctxt ""
"par_id3155875\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Options</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - የ ክፈፍ እና እቃ - ባህሪዎች - ምርጫዎች </emph>."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ክፈፍ እና እቃ - ባህሪዎች - ምርጫዎች </emph>"
#: text_frame.xhp
msgctxt ""
@@ -15350,7 +15350,7 @@ msgctxt ""
"par_id3150223\n"
"help.text"
msgid "On the <item type=\"menuitem\">Frame</item> Bar, click the <item type=\"menuitem\">Link Frames</item> icon <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\">Icon</alt></image>."
-msgstr "በ <item type=\"menuitem\">ክፈፍ</item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\">ክፈፎች አገናኝ</item> ምልክት <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\">ምልክት</alt></image>."
+msgstr "በ <item type=\"menuitem\"> ክፈፍ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ክፈፎች አገናኝ </item> ምልክት <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\"> ምልክት </alt></image>"
#: text_frame.xhp
msgctxt ""
@@ -15766,7 +15766,7 @@ msgctxt ""
"par_id3154415\n"
"help.text"
msgid "Click outside of the object, then click the text you entered. Click the <link href=\"text/shared/02/05090000.xhp\" name=\"Object Rotation Mode\"><item type=\"menuitem\">Rotate</item></link> icon <image id=\"img_id3145405\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3145405\">Icon</alt></image> on the <item type=\"menuitem\">Drawing Object Properties</item> toolbar."
-msgstr "ይጫኑ ከ እቃው ውጪ: ከዛ ይጫኑ ያስገቡትን ጽሁፍ: ይጫኑ <link href=\"text/shared/02/05090000.xhp\" name=\"Object Rotation Mode\"><item type=\"menuitem\">ማዞሪያ</item></link> ምልክት <image id=\"img_id3145405\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3145405\">ምልክት</alt></image> በ <item type=\"menuitem\">መሳያ እቃ ባህሪዎች </item> እቃ መደርደሪያ ላይ"
+msgstr "ይጫኑ ከ እቃው ውጪ: ከዛ ይጫኑ ያስገቡትን ጽሁፍ: ይጫኑ <link href=\"text/shared/02/05090000.xhp\" name=\"Object Rotation Mode\"><item type=\"menuitem\"> ማዞሪያ </item></link> ምልክት <image id=\"img_id3145405\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3145405\"> ምልክት </alt></image> በ <item type=\"menuitem\"> መሳያ እቃ ባህሪዎች </item> እቃ መደርደሪያ ላይ"
#: text_rotate.xhp
msgctxt ""
@@ -15838,7 +15838,7 @@ msgctxt ""
"par_id3147412\n"
"help.text"
msgid "Choose <emph>Insert - File</emph>."
-msgstr "ይምረጡ <emph> ፋይል - ማስገቢያ </emph>."
+msgstr "ይምረጡ <emph> ፋይል - ማስገቢያ </emph>"
#: textdoc_inframe.xhp
msgctxt ""
@@ -15878,7 +15878,7 @@ msgctxt ""
"par_id3153404\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>."
+msgstr "ይምረጡ <emph> ክፍል - ማስገቢያ </emph>"
#: textdoc_inframe.xhp
msgctxt ""
@@ -15918,7 +15918,7 @@ msgctxt ""
"par_id3149862\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr "ይጫኑ <emph>ማስገቢያ</emph>."
+msgstr "ይጫኑ <emph> ማስገቢያ </emph>"
#: textdoc_inframe.xhp
msgctxt ""
@@ -16206,7 +16206,7 @@ msgctxt ""
"par_id3149635\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Icon</alt></image>."
-msgstr "በ <item type=\"menuitem\">አቀራረብ</item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\">ነጥቦች ማብሪያ/ማጥፊያ</item> ምልክት <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">ምልክት</alt></image>."
+msgstr "በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ነጥቦች ማብሪያ/ማጥፊያ </item> ምልክት <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\"> ምልክት </alt></image>"
#: using_numbered_lists.xhp
msgctxt ""
@@ -16214,7 +16214,7 @@ msgctxt ""
"par_id3145403\n"
"help.text"
msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar."
-msgstr "ነጥቦችን ለማስወገድ ይምረጡ ነጥብ የተደረገባቸው አንቀጾች እና ከዛ ይምረጡ የ <emph>ነጥቦች ማብሪያ/ማጥፊያ</emph> ምልክት በ <emph>አቀራረብ</emph> መደርደሪያ ላይ"
+msgstr "ነጥቦችን ለማስወገድ ይምረጡ ነጥብ የተደረገባቸው አንቀጾች እና ከዛ ይምረጡ የ <emph> ነጥቦች ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> አቀራረብ </emph> መደርደሪያ ላይ"
#: using_numbered_lists.xhp
msgctxt ""
@@ -16230,7 +16230,7 @@ msgctxt ""
"par_id3154416\n"
"help.text"
msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
-msgstr "የ ነጥቦችን ዝርዝር አቀራረብ ለ መቀየር: ይምረጡ <item type=\"menuitem\"> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </item>."
+msgstr "የ ነጥቦችን ዝርዝር አቀራረብ ለ መቀየር: ይምረጡ <item type=\"menuitem\"> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </item>"
#: using_numbered_lists.xhp
msgctxt ""
@@ -16286,7 +16286,7 @@ msgctxt ""
"par_id3149968\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">Icon</alt></image>."
-msgstr "በ <item type=\"menuitem\">አቀራረብ</item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\">ቁጥር መስጫ ማብሪያ/ማጥፊያ</item> ምልክት <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">ምልክት</alt></image>."
+msgstr "በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ቁጥር መስጫ ማብሪያ/ማጥፊያ </item> ምልክት <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\"> ምልክት </alt></image>"
#: using_numbered_lists2.xhp
msgctxt ""
@@ -16294,7 +16294,7 @@ msgctxt ""
"par_id3149573\n"
"help.text"
msgid "To change the formatting and the hierarchy of a numbered list, click in the list, and then open the <emph>Bullets and Numbering</emph> toolbar."
-msgstr "አቀራረብ እና ቁጥር የተሰጣቸውን ዝርዝር ደረጃ ለ መቀየር: ይጫኑ በ ዝርዝር ላይ እና ከዛ ይክፈቱ የ <emph>ነጥቦች እና ቁጥር መስጫ</emph> እቃ መደርደሪያ"
+msgstr "አቀራረብ እና ቁጥር የተሰጣቸውን ዝርዝር ደረጃ ለ መቀየር: ይጫኑ በ ዝርዝር ላይ እና ከዛ ይክፈቱ የ <emph> ነጥቦች እና ቁጥር መስጫ </emph> እቃ መደርደሪያ"
#: using_numbered_lists2.xhp
msgctxt ""
@@ -16318,7 +16318,7 @@ msgctxt ""
"par_id3154246\n"
"help.text"
msgid "To change the formatting of a numbered list, click in the list, then choose <emph>Format - Bullets and Numbering</emph>."
-msgstr "ቁጥር የተሰጣቸው ዝርዝር አቀራረብ ለ መቀየር: ይጫኑ በ ዝርዝር ውስጥ: እና ከዛ ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph>."
+msgstr "ቁጥር የተሰጣቸው ዝርዝር አቀራረብ ለ መቀየር: ይጫኑ በ ዝርዝር ውስጥ: እና ከዛ ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph>"
#: using_numbering.xhp
msgctxt ""
@@ -16366,7 +16366,7 @@ msgctxt ""
"par_id3155866\n"
"help.text"
msgid "To apply numbering manually, click in the paragraph, and then click the <item type=\"menuitem\">Numbering On/Off</item> icon on the <item type=\"menuitem\">Formatting</item> Bar."
-msgstr "በ እጅ ቁጥር ለ መስጠት: ይጫኑ በ አንቀጹ ላይ: እና ከዛ ይጫኑ የ <item type=\"menuitem\">ቁጥር መስጫ ማብሪያ/ማጥፊያ</item> ምልክት በ <item type=\"menuitem\">አቀራረብ</item> መደርደሪያ ላይ"
+msgstr "በ እጅ ቁጥር ለ መስጠት: ይጫኑ በ አንቀጹ ላይ: እና ከዛ ይጫኑ የ <item type=\"menuitem\"> ቁጥር መስጫ ማብሪያ/ማጥፊያ </item> ምልክት በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ"
#: using_numbering.xhp
msgctxt ""
@@ -16422,7 +16422,7 @@ msgctxt ""
"par_idN1073A\n"
"help.text"
msgid "You can also use the commands on the <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\">Bullets and Numbering</link> toolbar to edit a numbered or bulleted list. To change the numbering or bullet format, click the <emph>Bullets and Numbering</emph> icon."
-msgstr "እርስዎ እንዲሁም መጠቀም ይችላሉ ትእዛዞችን ከ <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\">ነጥብ እና ቁጥር መስጫ</link> እቃ መደርደሪያ ላይ ለ ማረም ነጥብ እና ቁጥር የተሰጣቸውን ዝርዝር: ነጥብ እና ቁጥር የተሰጣቸውን ለ መቀየር ይጫኑ የ <emph>ነጥብ ወይንም ቁጥር መስጫ</emph> ምልክት"
+msgstr "እርስዎ እንዲሁም መጠቀም ይችላሉ ትእዛዞችን ከ <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\"> ነጥብ እና ቁጥር መስጫ </link> እቃ መደርደሪያ ላይ ለ ማረም ነጥብ እና ቁጥር የተሰጣቸውን ዝርዝር: ነጥብ እና ቁጥር የተሰጣቸውን ለ መቀየር ይጫኑ የ <emph> ነጥብ ወይንም ቁጥር መስጫ </emph> ምልክት"
#: using_numbering.xhp
msgctxt ""
@@ -16446,7 +16446,7 @@ msgctxt ""
"par_id3149646\n"
"help.text"
msgid "Choose <item type=\"menuitem\">View - Styles and Formatting</item>, and then click the <item type=\"menuitem\">Paragraph Styles</item> icon."
-msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - ዘዴዎች እና አቀራረብ</item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> አንቀጽ ዘዴዎች </item> ምልክት"
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - ዘዴዎች እና አቀራረብ </item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> አንቀጽ ዘዴዎች </item> ምልክት"
#: using_numbering.xhp
msgctxt ""
@@ -16966,7 +16966,7 @@ msgctxt ""
"par_id1116200901133998\n"
"help.text"
msgid "In general, every string of characters between two spaces is a word. Dashes, tabs, line breaks, and paragraph breaks are word limits, too."
-msgstr "ባጠቃላይ: ሁሉም የ ባህሪ ሀረጎች በ ሁለት ክፍተት መካከል እንደ ቃል ይቆጠራሉ: ጭረቶች, tabs, የ መስመር መጨረሻ እና የ አንቀጽ መጨረሻ የ ቃላት መመጠኛ ናቸው"
+msgstr "ባጠቃላይ: ሁሉም የ ባህሪ ሀረጎች በ ሁለት ክፍተት መካከል እንደ ቃል ይቆጠራሉ: ጭረቶች: tabs: የ መስመር መጨረሻ እና የ አንቀጽ መጨረሻ የ ቃላት መመጠኛ ናቸው"
#: words_count.xhp
msgctxt ""
@@ -16998,7 +16998,7 @@ msgctxt ""
"par_idN106E2\n"
"help.text"
msgid "To get some more statistics about the document, choose <emph>File - Properties - Statistics</emph>."
-msgstr "ስለ ሰነዱ አንዳንድ ስታትስቲክ መረጃ ለማግኘት: ይምረጡ <emph>ፋይል - ባህሪዎች - ስታትስቲክ</emph>"
+msgstr "ስለ ሰነዱ አንዳንድ ስታትስቲክ መረጃ ለማግኘት: ይምረጡ <emph> ፋይል - ባህሪዎች - ስታትስቲክ </emph>"
#: words_count.xhp
msgctxt ""
@@ -17086,7 +17086,7 @@ msgctxt ""
"par_id3153396\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>, and then click the <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph>Wrap</emph></link> tab."
-msgstr "ይምረጡ <emph>አቀራረብ - የ ክፈፍ እና እቃ - ባህሪዎች </emph> እና ከዛ ይጫኑ በ <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph> መጠቅለያ </emph></link> tab"
+msgstr "ይምረጡ <emph> አቀራረብ - የ ክፈፍ እና እቃ - ባህሪዎች </emph> እና ከዛ ይጫኑ በ <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph> መጠቅለያ </emph></link> tab"
#: wrap.xhp
msgctxt ""
@@ -17110,7 +17110,7 @@ msgctxt ""
"hd_id3154247\n"
"help.text"
msgid "To Change the Wrapping Contour of a Graphic"
-msgstr "የ ንድፍ ቅርጽ መጠቅለያ ለመቀየር"
+msgstr "የ ንድፍ ቅርጽ መጠቅለያ ለ መቀየር"
#: wrap.xhp
msgctxt ""
@@ -17126,7 +17126,7 @@ msgctxt ""
"par_id3154860\n"
"help.text"
msgid "Select the graphic, right-click, and then choose <emph>Wrap - Edit Contour</emph>."
-msgstr "ንድፍ ይምረጡ: በ ቀኝ-ይጫኑ: እና ከዛ ይምረጡ <emph>መጠቅለያ - ቅርጽ ማረሚያ</emph>"
+msgstr "ንድፍ ይምረጡ: በ ቀኝ-ይጫኑ: እና ከዛ ይምረጡ <emph> መጠቅለያ - ቅርጽ ማረሚያ </emph>"
#: wrap.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/librelogo.po b/source/am/helpcontent2/source/text/swriter/librelogo.po
index 33a49feef64..6e566f8e30e 100644
--- a/source/am/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/am/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-07 21:39+0200\n"
-"PO-Revision-Date: 2017-05-30 03:43+0000\n"
+"PO-Revision-Date: 2017-06-20 01:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496115828.000000\n"
+"X-POOTLE-MTIME: 1497922995.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_345\n"
"help.text"
msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (<item type=\"menuitem\">Tools - Options - Language Settings - Languages - Western</item>) and click on this icon to translate the Logo program to the selected language."
-msgstr "የ “magic wand” ምልክት ማሰናጃዎች 2-ገጽ እቅድ ለ ፕሮግራም ማረሚያ: ማስፊያ እና መቀየሪያ ወደ አቢይ ፊደል አሕፃሮተ ቃል: መደበኛ ፊደል አርማ ትእዛዞች በ መጻፊያ ሰነድ ውስጥ: የ ሰነዱን ቋንቋ ይቀይራል (<item type=\"menuitem\">መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች - ቋንቋዎች - የ ምእራብ </item>) እና ይጫኑ ይህን ምልክት ለ መተርጎም የ አርማ ፕሮግራም ወደ ተመረጠው ቋንቋ"
+msgstr "የ “magic wand” ምልክት ማሰናጃዎች 2-ገጽ እቅድ ለ ፕሮግራም ማረሚያ: ማስፊያ እና መቀየሪያ ወደ አቢይ ፊደል አሕፃሮተ ቃል: በ ላይኛው ጉዳይ ፊደል አርማ ትእዛዞች በ መጻፊያ ሰነድ ውስጥ: የ ሰነዱን ቋንቋ ይቀይራል (<item type=\"menuitem\"> መሳሪያዎች - ምርጫዎች - ቋንቋ ማሰናጃዎች - ቋንቋዎች - የ ምእራብ </item>) እና ይጫኑ ይህን ምልክት ለ መተርጎም የ አርማ ፕሮግራም ወደ ተመረጠው ቋንቋ:"
#: LibreLogo.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_550\n"
"help.text"
msgid "TO triangle size<br/> REPEAT 3 [ FORWARD size LEFT 120 ]<br/> END<br/>"
-msgstr "ለ ሶስት ማእዘን :መጠን<br/> መድገሚያ 3 [ ወደ ፊት :መጠን በ ግራ 120 ]<br/> መጨረሻ<br/>"
+msgstr "ለ ሶስት ማእዘን :መጠን<br/> መድገሚያ 3 [ ወደ ፊት መጠን በ ግራ 120 ]<br/> መጨረሻ<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_660\n"
"help.text"
msgid "TO star size color<br/> FILLCOLOR color<br/> REPEAT 5 [ LEFT 72 FORWARD size RIGHT 144 FORWARD size ]<br/> FILL<br/> END<br/> <br/> star 100 “red”<br/> star (100, “green”)<br/> star(100, “blue”)<br/>"
-msgstr "ለ ኮከብ መጠን ቀለም<br/> ቀለም መሙያ ቀለም<br/> መድገሚያ 5 [ በ ግራ 72 ወደ ፊት መጠን በ ቀኝ 144 ወደ ፊት መጠን ]<br/> መሙያ<br/> መጨረሻ<br/> <br/> ኮከብ 100 “ቀይ”<br/> ኮከብ (100, “አረንጓዴ”)<br/> ኮከብ(100, “ሰማያዊ”)<br/>"
+msgstr "ለ ኮከብ መጠን ቀለም <br/> ቀለም መሙያ ቀለም <br/> መድገሚያ 5 [ በ ግራ 72 ወደ ፊት መጠን በ ቀኝ 144 ወደ ፊት መጠን ] <br/> መሙያ <br/> መጨረሻ <br/> <br/> ኮከብ 100 “ቀይ”<br/> ኮከብ (100, “አረንጓዴ”)<br/> ኮከብ(100, “ሰማያዊ”)<br/>"
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index b373505d3de..13e86831532 100644
--- a/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-30 15:31+0000\n"
+"PO-Revision-Date: 2017-06-10 02:29+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493566291.000000\n"
+"X-POOTLE-MTIME: 1497061740.000000\n"
#: Options.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id0603200910430845\n"
"help.text"
msgid "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parameters</link>."
-msgstr "ለማንኛውም ይህን ከተጠቀሙ የ DEPS ወይንም SCO, እዚህ በ መሄድ ይጀምሩ መሳሪያዎች - መፍትሄ ሰጪ እና አጥጋቢ ክፍሉን ማሰናጃ: የሚሄድበት አቅጣጫ (ዝቅተኛ: ከፍተኛ) እና የሚሻሻሉት ክፍሎች ግቡን እንዲመቱ: ከዚያ ወደ ምርጫ ይሂዱ እና ይወስኑ መፍትሄ ሰጪውን ይጠቀሙ እንደሆን እንደ አስፈላጊነቱ ያስተካክሉ <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">ደንቦች</link>."
+msgstr "ለማንኛውም ይህን ከተጠቀሙ የ DEPS ወይንም SCO, እዚህ በ መሄድ ይጀምሩ መሳሪያዎች - መፍትሄ ሰጪ እና አጥጋቢ ክፍሉን ማሰናጃ: የሚሄድበት አቅጣጫ (ዝቅተኛ: ከፍተኛ) እና የሚሻሻሉት ክፍሎች ግቡን እንዲመቱ: ከዚያ ወደ ምርጫ ይሂዱ እና ይወስኑ መፍትሄ ሰጪውን ይጠቀሙ እንደሆን እንደ አስፈላጊነቱ ያስተካክሉ <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\"> ደንቦች </link>"
#: Usage.xhp
msgctxt ""
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 7f399b52065..c619cd73e9c 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:47+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 15:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496792851.000000\n"
+"X-POOTLE-MTIME: 1497971955.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ገጽታዎች ይምረጡ"
+msgid "Spreadsheet Theme"
+msgstr "የ ሰንጠረዥ ገጽታ"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~ማስገቢያ..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "ነባር"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "ማጉሊያ 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "ማጉሊያ 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "ማጉሊያ 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "ራስጌ 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "ራስጌ 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "መጥፎ"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "ስህተት"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "ጥሩ"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "ገለልተኛ"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "ማስጠንቀቂያ"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "የ ግርጌ ማስታወሻ"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "ማስታወሻ"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -4559,7 +4676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Axes..."
-msgstr "~ዘንግ..."
+msgstr "~አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4748,7 +4865,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~X Axis Title..."
-msgstr "የ ~X ዘንግ አርእስት..."
+msgstr "የ ~X አክሲስ አርእስት..."
#: ChartCommands.xcu
msgctxt ""
@@ -4757,7 +4874,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Y Axis Title..."
-msgstr "የ ~Y ዘንግ አርእስት..."
+msgstr "የ ~Y አክሲስ አርእስት..."
#: ChartCommands.xcu
msgctxt ""
@@ -4766,7 +4883,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z Axis Title..."
-msgstr "የ ~Z ዘንግ አርእስት..."
+msgstr "የ ~Z አክሲስ አርእስት..."
#: ChartCommands.xcu
msgctxt ""
@@ -4775,7 +4892,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~econdary X Axis Title..."
-msgstr "ሁ~ለተኛ የ X ዘንግ አርእስት..."
+msgstr "ሁ~ለተኛ የ X አክሲስ አርእስት..."
#: ChartCommands.xcu
msgctxt ""
@@ -4784,7 +4901,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Se~condary Y Axis Title..."
-msgstr "ሁለ~ተኛ የ Y ዘንግ አርእስት..."
+msgstr "ሁለ~ተኛ የ Y አክሲስ አርእስት..."
#: ChartCommands.xcu
msgctxt ""
@@ -4802,7 +4919,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~X Axis..."
-msgstr "የ ~X ዘንግ..."
+msgstr "የ ~X አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4811,7 +4928,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Y Axis..."
-msgstr "የ ~Y ዘንግ..."
+msgstr "የ ~Y አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4820,7 +4937,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z Axis..."
-msgstr "የ ~Z ዘንግ..."
+msgstr "የ ~Z አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4829,7 +4946,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Secondary X Axis..."
-msgstr "~ሁለተኛ የ X ዘንግ..."
+msgstr "~ሁለተኛ የ X አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4838,7 +4955,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~econdary Y Axis..."
-msgstr "ሁ~ለተኛ የ Y ዘንግ..."
+msgstr "ሁ~ለተኛ የ Y አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4847,7 +4964,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~All Axes..."
-msgstr "~ሁሉንም ዘንጎች..."
+msgstr "~ሁሉንም አክሲስ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4856,7 +4973,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Y Axis Major Grid..."
-msgstr "የ ~Y Axis ዋና መጋጠሚያ..."
+msgstr "የ ~Y አክሲስ ዋና መጋጠሚያ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4865,7 +4982,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~X Axis Major Grid..."
-msgstr "የ ~X Axis ዋና መጋጠሚያ..."
+msgstr "የ ~X አክሲስ ዋና መጋጠሚያ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4874,7 +4991,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z Axis Major Grid..."
-msgstr "የ ~Z Axis ዋና መጋጠሚያ..."
+msgstr "የ ~Z አክሲስ ዋና መጋጠሚያ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4883,7 +5000,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Y Axis Minor ~Grid..."
-msgstr "የ Y Axis አነስተኛ ~መጋጠሚያ..."
+msgstr "የ Y አክሲስ አነስተኛ ~መጋጠሚያ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4892,7 +5009,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "X Axis ~Minor Grid..."
-msgstr "የ X Axis ~አነስተኛ መጋጠሚያ..."
+msgstr "የ X አክሲስ ~አነስተኛ መጋጠሚያ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4991,7 +5108,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert/Delete Axes..."
-msgstr "ዘንጎች ማስገቢያ/ማጥፊያ..."
+msgstr "አክሲስ ማስገቢያ/ማጥፊያ..."
#: ChartCommands.xcu
msgctxt ""
@@ -5000,7 +5117,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Axis"
-msgstr "Axis ማስገቢያ"
+msgstr "አክሲስ ማስገቢያ"
#: ChartCommands.xcu
msgctxt ""
@@ -5009,7 +5126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Axis"
-msgstr "ዘንግ ማጥፊያ"
+msgstr "አክሲስ ማጥፊያ"
#: ChartCommands.xcu
msgctxt ""
@@ -5018,7 +5135,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Axis..."
-msgstr "የ ዘንግ አቀራረብ..."
+msgstr "የ አክሲስ አቀራረብ..."
#: ChartCommands.xcu
msgctxt ""
@@ -5027,7 +5144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Axis Title"
-msgstr "የ Axis አርእስት ማስገቢያ"
+msgstr "የ አክሲስ አርእስት ማስገቢያ"
#: ChartCommands.xcu
msgctxt ""
@@ -5414,7 +5531,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show/Hide Axis Description(s)"
-msgstr "የ Axis መግለጫ(ዎች) ማሳያ/መደበቂያ"
+msgstr "የ አክሲስ መግለጫ(ዎች) ማሳያ/መደበቂያ"
#: ChartCommands.xcu
msgctxt ""
@@ -15674,7 +15791,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Object Catalog"
-msgstr "የእቃ መዝገብ"
+msgstr "የ እቃ መዝገብ"
#: GenericCommands.xcu
msgctxt ""
@@ -20149,7 +20266,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop Recording"
-msgstr "ምዝገባውን ማስቆሚያ"
+msgstr "መቅረጹን ማስቆሚያ"
#: GenericCommands.xcu
msgctxt ""
@@ -20437,7 +20554,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop Macro"
-msgstr "Macro ማስቆሚያ"
+msgstr "ማክሮ ማስቆሚያ"
#: GenericCommands.xcu
msgctxt ""
@@ -20698,7 +20815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "First Record"
-msgstr "የመጀመሪያው መዝገብ"
+msgstr "የ መጀመሪያው መዝገብ"
#: GenericCommands.xcu
msgctxt ""
@@ -22408,7 +22525,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit with External Tool"
-msgstr "በውስጥ መሳሪያዎች ማረሚያ"
+msgstr "በ ውስጥ መሳሪያ ማረሚያ"
#: GenericCommands.xcu
msgctxt ""
@@ -24586,7 +24703,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Axis"
-msgstr "Axis"
+msgstr "አክሲስ"
#: Sidebar.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~ባህሪዎች..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~እቃ..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/am/sc/source/ui/src.po b/source/am/sc/source/ui/src.po
index a7cf5b43e63..8578841f2f6 100644
--- a/source/am/sc/source/ui/src.po
+++ b/source/am/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 01:00+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 15:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495760435.000000\n"
+"X-POOTLE-MTIME: 1497972113.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "መጠኑ ተንቀሳቅሷል ከ #1 ወደ #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,10 +2710,10 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"ይህ ተግባር ከመመዝገቢያ መቀየሪያ ዘዴ ይወጣል\n"
-"ስለ ለውጡ የነበሩ ማናቸውም መረጃዎች ይጠፋሉ\n"
+"ይህ ተግባር ከ ለውጥ መቅረጫ ዘዴ ውስጥ ይወጣል \n"
+"ማንኛውም መረጃ ስለ ለውጦች ይጠፋሉ \n"
"\n"
-"ከመመዝገቢያ መቀየሪያ ዘዴ ልውጣ?\n"
+"ከ ለውጥ መቅረጫ ዘዴ ልውጣ?\n"
"\n"
#: globstr.src
@@ -2871,7 +2871,7 @@ msgstr "Nested arrays are not supported."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "ጽሁፍ ወደ አምዶች"
@@ -17894,7 +17894,7 @@ msgctxt ""
"Returns the intercept of the linear regression line and the Y axis.\n"
"itemlist.text"
msgid "Returns the intercept of the linear regression line and the Y axis."
-msgstr "መገናኛ ለ ቀጥታ ዝቅ ማድረጊያ መስመር እና ለ Y axis. ይመልሳል"
+msgstr "መገናኛ ለ ቀጥታ ዝቅ ማድረጊያ መስመር እና ለ Y አክሲስ ይመልሳል"
#: scfuncs.src
msgctxt ""
diff --git a/source/am/sc/uiconfig/scalc/ui.po b/source/am/sc/uiconfig/scalc/ui.po
index 04b0ecda045..907d638382b 100644
--- a/source/am/sc/uiconfig/scalc/ui.po
+++ b/source/am/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 01:01+0000\n"
+"PO-Revision-Date: 2017-06-20 15:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495760485.000000\n"
+"X-POOTLE-MTIME: 1497971846.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -2351,7 +2351,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position of vertical axis:"
-msgstr "በ ቁመት የ axis ቦታ:"
+msgstr "በ ቁመት የ አክሲስ ቦታ:"
#: databaroptions.ui
msgctxt ""
@@ -2360,7 +2360,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color of vertical axis:"
-msgstr "ቀለም የ ቁመት axis:"
+msgstr "የ ቁመት አክሲስ ቀለም:"
#: databaroptions.ui
msgctxt ""
@@ -2396,7 +2396,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axis"
-msgstr "Axis"
+msgstr "አክሲስ"
#: databaroptions.ui
msgctxt ""
@@ -6041,7 +6041,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 1"
-msgstr "አክሰንት 1"
+msgstr "ማጉሊያ 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6050,7 +6050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 2"
-msgstr "አክሰንት 2"
+msgstr "ማጉሊያ 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6059,7 +6059,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 3"
-msgstr "አክሰንት 3"
+msgstr "ማጉሊያ 3"
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/am/sd/uiconfig/sdraw/ui.po b/source/am/sd/uiconfig/sdraw/ui.po
index e558c12383e..f1bf4f95433 100644
--- a/source/am/sd/uiconfig/sdraw/ui.po
+++ b/source/am/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-19 00:11+0000\n"
+"PO-Revision-Date: 2017-06-14 22:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492560696.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497478765.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis:"
-msgstr "_X axis:"
+msgstr "_X አክሲስ:"
#: copydlg.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis:"
-msgstr "_Y axis:"
+msgstr "_Y አክሲስ:"
#: copydlg.ui
msgctxt ""
diff --git a/source/am/sfx2/source/view.po b/source/am/sfx2/source/view.po
index 25379c31d12..54f7bb1c1e5 100644
--- a/source/am/sfx2/source/view.po
+++ b/source/am/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 15:40+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 14:00+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492702828.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497967237.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "ይህ ሰነድ ዋጋ የሌለው ፊርማ አለው"
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "ፊርማው ዋጋ ያለው ነው: ነገር ግን ሰነዱ ተሻሽሏል:"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/am/svtools/source/control.po b/source/am/svtools/source/control.po
index b767b86ae53..59101d810fb 100644
--- a/source/am/svtools/source/control.po
+++ b/source/am/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-05-01 17:53+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 14:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462125204.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497969662.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "ጥቁር ያዘመመ"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "መጽሀፍ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "ማድመቂያ ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "የታመቀ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "የታመቀ ማድመቂያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "የታመቀ ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "የታመቀ ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "ተጨማሪ ብርሀን"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "ተጨማሪ ብርሀን ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "ንዑስ ማድመቂያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "ንዑስ ማድመቂያ ማዝመሚያ"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/am/svtools/source/misc.po b/source/am/svtools/source/misc.po
index 67f85d11dae..0c3d612c4a8 100644
--- a/source/am/svtools/source/misc.po
+++ b/source/am/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-20 17:11+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 14:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492708314.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497968238.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (Democratic Republic of the Congo)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/am/svx/source/dialog.po b/source/am/svx/source/dialog.po
index db898c361ea..b837aecad1d 100644
--- a/source/am/svx/source/dialog.po
+++ b/source/am/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-04 16:39+0000\n"
+"PO-Revision-Date: 2017-06-20 15:25+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493915961.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497972310.000000\n"
#: SafeMode.src
msgctxt ""
@@ -3160,7 +3160,7 @@ msgctxt ""
"RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT\n"
"string.text"
msgid "Green Accent"
-msgstr "አረንጓዴ አክሰንት"
+msgstr "አረንጓዴ ማጉሊያ"
#: sdstring.src
msgctxt ""
@@ -3168,7 +3168,7 @@ msgctxt ""
"RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT\n"
"string.text"
msgid "Blue Accent"
-msgstr "ሰማያዊ አክሰንት"
+msgstr "ሰማያዊ ማጉሊያ"
#: sdstring.src
msgctxt ""
@@ -3176,7 +3176,7 @@ msgctxt ""
"RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT\n"
"string.text"
msgid "Orange Accent"
-msgstr "ብርቱካንማ አክሰንት"
+msgstr "ብርቱካንማ ማጉሊያ"
#: sdstring.src
msgctxt ""
@@ -3192,7 +3192,7 @@ msgctxt ""
"RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT\n"
"string.text"
msgid "Purple Accent"
-msgstr "ወይን ጠጅ አክሰንት"
+msgstr "ወይን ጠጅ ማጉሊያ"
#: sdstring.src
msgctxt ""
@@ -3200,7 +3200,7 @@ msgctxt ""
"RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT\n"
"string.text"
msgid "Yellow Accent"
-msgstr "ቢጫ አክሰንት"
+msgstr "ቢጫ ማጉሊያ"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: sdstring.src
diff --git a/source/am/svx/source/form.po b/source/am/svx/source/form.po
index 3337f5bced1..0c392ac9745 100644
--- a/source/am/svx/source/form.po
+++ b/source/am/svx/source/form.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-10 21:44+0000\n"
+"PO-Revision-Date: 2017-06-07 04:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484084647.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496809892.000000\n"
#: datanavi.src
msgctxt ""
@@ -489,7 +489,7 @@ msgctxt ""
"RID_STR_DELETECONFIRM_RECORD\n"
"string.text"
msgid "You intend to delete 1 record."
-msgstr "1መዝገብ ሊያጠፉ ነው"
+msgstr "1 መዝገብ ሊያጠፉ ነው"
#: fmstring.src
msgctxt ""
diff --git a/source/am/svx/uiconfig/ui.po b/source/am/svx/uiconfig/ui.po
index dd3bcbc2b77..0c0ed36e6a2 100644
--- a/source/am/svx/uiconfig/ui.po
+++ b/source/am/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-21 00:48+0000\n"
+"PO-Revision-Date: 2017-06-16 14:14+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495327701.000000\n"
+"X-POOTLE-MTIME: 1497622493.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -4544,7 +4544,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_ight margin:"
-msgstr "በ_ቀኝ መስመር:"
+msgstr "በ ቀ_ኝ መስመር:"
#: headfootformatpage.ui
msgctxt ""
diff --git a/source/am/sw/source/core/undo.po b/source/am/sw/source/core/undo.po
index c2578b31bab..ad838f0f030 100644
--- a/source/am/sw/source/core/undo.po
+++ b/source/am/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-28 22:26+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 14:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493418381.000000\n"
+"X-POOTLE-MTIME: 1497969387.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "የ አምድ መጨረሻ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "ማስገቢያ $1"
@@ -899,7 +899,7 @@ msgstr "ማስገቢያ $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "ማጥፊያ $1"
@@ -907,15 +907,15 @@ msgstr "ማጥፊያ $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ባህሪዎቹ ተቀይረዋል"
+msgstr "ባህሪው ተቀይሯል"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr "ሰንጠረዡ ተቀይሯል"
@@ -923,10 +923,50 @@ msgstr "ሰንጠረዡ ተቀይሯል"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ዘዴው ተቀይሯል"
+msgstr "ዘዴ ተቀይሯል"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "ረድፍ ማስገቢያ"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "ረድፍ ማጥፊያ"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "ክፍል ማስገቢያ"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "ክፍል ማጥፊያ"
#: undo.src
msgctxt ""
diff --git a/source/am/sw/source/uibase/docvw.po b/source/am/sw/source/uibase/docvw.po
index ec5501e5538..0e73091b933 100644
--- a/source/am/sw/source/uibase/docvw.po
+++ b/source/am/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-12-31 19:33+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 14:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483212811.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497968460.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "የ ተፈጸሙ የ አንቀጽ ዘዴዎች"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "ረድፍ ገብቷል"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "ረድፍ ጠፍቷል"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "ክፍል ገብቷል"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "ክፍል ጠፍቷል"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/am/sw/source/uibase/ribbar.po b/source/am/sw/source/uibase/ribbar.po
index bca3bdf0a52..4bf53d28df4 100644
--- a/source/am/sw/source/uibase/ribbar.po
+++ b/source/am/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-14 15:46+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 14:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481730407.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497968478.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "የ _መቀመሪያ ጽሁፍ"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "የ ጽሁፍ መቀመሪያ"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/am/sw/source/uibase/uiview.po b/source/am/sw/source/uibase/uiview.po
index e95d025b394..ae1a902e7f3 100644
--- a/source/am/sw/source/uibase/uiview.po
+++ b/source/am/sw/source/uibase/uiview.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-20 01:28+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 14:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463707730.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497968518.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "ምንጩን ~መላኪያ..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~መላኪያ የ ኮፒ ምንጭ..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/am/wizards/source/formwizard.po b/source/am/wizards/source/formwizard.po
index f228b5b7cf2..5a432538802 100644
--- a/source/am/wizards/source/formwizard.po
+++ b/source/am/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-31 01:02+0000\n"
+"PO-Revision-Date: 2017-06-19 13:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496192572.000000\n"
+"X-POOTLE-MTIME: 1497878460.000000\n"
#: dbwizres.src
msgctxt ""
@@ -2140,7 +2140,7 @@ msgctxt ""
"RID_DB_REPORT_WIZARD_START + 85\n"
"string.text"
msgid "In blocks, labels above"
-msgstr "በመደብ: ምልክቶች ከ ላይ"
+msgstr "በ መደብ: ምልክቶች ከ ላይ"
#: dbwizres.src
msgctxt ""
@@ -2801,7 +2801,7 @@ msgctxt ""
"RID_DB_TABLE_WIZARD_START + 49\n"
"string.text"
msgid "Catalog of the table"
-msgstr "የሰንጠረዥ መዝገብ"
+msgstr "የ ሰንጠረዥ መዝገብ"
#: dbwizres.src
msgctxt ""
diff --git a/source/am/xmlsecurity/uiconfig/ui.po b/source/am/xmlsecurity/uiconfig/ui.po
index 658f14cef9d..67726874c54 100644
--- a/source/am/xmlsecurity/uiconfig/ui.po
+++ b/source/am/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-28 22:32+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:59+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493418773.000000\n"
+"X-POOTLE-MTIME: 1497967155.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "ማስወገጃ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "የ ምስክር ወረቀት አስተዳዳሪ ማስጀመሪያ..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ar/desktop/source/deployment/gui.po b/source/ar/desktop/source/deployment/gui.po
index 05fea0f37d0..1a3f3fc61fa 100644
--- a/source/ar/desktop/source/deployment/gui.po
+++ b/source/ar/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-18 16:38+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484757530.000000\n"
#: dp_gui_dialog.src
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index 054c7378588..cf7a846ba2f 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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index b8ed75af536..c7a3070af5d 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-11-25 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 5344875306e..9c3985b147e 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index ef8c937b1b4..2ec189b64fc 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 15:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ar/helpcontent2/source/text/swriter.po b/source/ar/helpcontent2/source/text/swriter.po
index db8c711d697..3f1ddbfdcab 100644
--- a/source/ar/helpcontent2/source/text/swriter.po
+++ b/source/ar/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 02:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Line Numbering\">ترقيم الأسطر</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter/00.po b/source/ar/helpcontent2/source/text/swriter/00.po
index 22ffa6a585a..0cbe800728e 100644
--- a/source/ar/helpcontent2/source/text/swriter/00.po
+++ b/source/ar/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 02:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Arabic <kde-i18n-doc@kde.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index e2a0731ad87..3941b12e82c 100644
--- a/source/ar/helpcontent2/source/text/swriter/01.po
+++ b/source/ar/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 16:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,7 +21341,7 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21349,7 +21349,7 @@ msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 0fcdca16936..6cd9daeffd5 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 16:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: chapter_numbering.xhp
@@ -2909,7 +2909,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
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 2f63af51803..086c6a8b377 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-12 20:19+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "اختر السمات"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4024,6 +4024,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "أ~درج..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26780,15 +26897,6 @@ msgstr "ال~خصائص"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "ال~كائن..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/ar/sc/source/ui/src.po b/source/ar/sc/source/ui/src.po
index 860b8ef07a6..9f1f506bf0e 100644
--- a/source/ar/sc/source/ui/src.po
+++ b/source/ar/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-12 20:23+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "إزاحة النطاق من #1 إلى #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "المصفوفات المتداخلة غير مدعومة."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ar/sfx2/source/view.po b/source/ar/sfx2/source/view.po
index dc8e6be13b3..ab619cb096a 100644
--- a/source/ar/sfx2/source/view.po
+++ b/source/ar/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-20 15:46+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -254,6 +254,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ar/svtools/source/control.po b/source/ar/svtools/source/control.po
index bd9faee4459..0ed561fd1a7 100644
--- a/source/ar/svtools/source/control.po
+++ b/source/ar/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-30 17:42+0000\n"
"Last-Translator: صفا الفليج <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "أسود مائل"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ar/svtools/source/misc.po b/source/ar/svtools/source/misc.po
index 6d6391bbdb9..376b8c070de 100644
--- a/source/ar/svtools/source/misc.po
+++ b/source/ar/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-10 18:06+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "لغة Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "كيتوبا"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ar/sw/source/core/undo.po b/source/ar/sw/source/core/undo.po
index 5ba73b97201..351c7bf2d70 100644
--- a/source/ar/sw/source/core/undo.po
+++ b/source/ar/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-12 20:22+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "فاصل أعمدة"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "إدراج $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "حذف $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "تغيّر الصفات"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "تغيّر الجدول"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "تغيّر النمط"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ar/sw/source/uibase/docvw.po b/source/ar/sw/source/uibase/docvw.po
index ce1e8de0438..b7420cd0d94 100644
--- a/source/ar/sw/source/uibase/docvw.po
+++ b/source/ar/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-20 07:50+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "أنماط الفقرات المطبقّة"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ar/sw/source/uibase/ribbar.po b/source/ar/sw/source/uibase/ribbar.po
index 83b1ed5d6f0..b8e923a7b35 100644
--- a/source/ar/sw/source/uibase/ribbar.po
+++ b/source/ar/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-13 19:20+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "نصّ المعادلة"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ar/sw/source/uibase/uiview.po b/source/ar/sw/source/uibase/uiview.po
index e0d5c369668..0b99369e8c2 100644
--- a/source/ar/sw/source/uibase/uiview.po
+++ b/source/ar/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-19 14:20+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~صدّر المصدر..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ar/xmlsecurity/uiconfig/ui.po b/source/ar/xmlsecurity/uiconfig/ui.po
index f9984afc7ac..96bf275501c 100644
--- a/source/ar/xmlsecurity/uiconfig/ui.po
+++ b/source/ar/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-12 19:05+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "أزل"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/as/desktop/source/deployment/gui.po b/source/as/desktop/source/deployment/gui.po
index 898c17c5782..651187f5727 100644
--- a/source/as/desktop/source/deployment/gui.po
+++ b/source/as/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 15:46+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-25 18:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467647201.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1440525828.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -174,6 +174,14 @@ msgstr ""
"সংস্থাপন বন্ধ কৰিবলৈ 'বাতিল কৰক' টিপক।"
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -189,6 +197,14 @@ msgstr ""
"প্ৰসাৰণ আতৰোৱা বন্ধ কৰিবলে 'বাতিল কৰক' ক্লিক কৰক।"
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 6dc9f7707e1..37af8ccba39 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "বিষয় নির্বাচন কৰক"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26996,15 +27113,6 @@ msgid "~Properties..."
msgstr "বৈশিষ্ট্যসমূহ..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/as/sc/source/ui/src.po b/source/as/sc/source/ui/src.po
index aafe02f97f9..e5f5f39acdd 100644
--- a/source/as/sc/source/ui/src.po
+++ b/source/as/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -2702,7 +2702,7 @@ msgstr "বিস্তাৰটো #1ৰ পৰা #2 লৈকে নিয়া
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "নেস্টেড এৰেসমূহ অসমর্থিত।"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/as/sfx2/source/view.po b/source/as/sfx2/source/view.po
index 1085592abd3..d599fa16f0e 100644
--- a/source/as/sfx2/source/view.po
+++ b/source/as/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/as/svtools/source/control.po b/source/as/svtools/source/control.po
index e7882cf5b9a..32ea5ff8228 100644
--- a/source/as/svtools/source/control.po
+++ b/source/as/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -291,6 +291,110 @@ msgstr "ক'লা ইটালীক"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/as/svtools/source/misc.po b/source/as/svtools/source/misc.po
index e082a4a7aa2..d5b65512da0 100644
--- a/source/as/svtools/source/misc.po
+++ b/source/as/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-11 18:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -3181,10 +3181,10 @@ msgstr "বিকৱেল"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "কিটুবা"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/as/sw/source/core/undo.po b/source/as/sw/source/core/undo.po
index e7de46ba2ae..c98990045fc 100644
--- a/source/as/sw/source/core/undo.po
+++ b/source/as/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-11 19:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -891,42 +891,82 @@ msgstr "স্তম্ভ ভাঙন"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 সুমুৱাওক"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 মচি পেলাওক..."
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "বৈশিষ্টসমূহ সলনি কৰা হ'ল"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "টেবুল সলনি কৰা হ'ল"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "সলনি কৰা শৈলী"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/as/sw/source/uibase/docvw.po b/source/as/sw/source/uibase/docvw.po
index f5c43a649f7..878c8259f9c 100644
--- a/source/as/sw/source/uibase/docvw.po
+++ b/source/as/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 13:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/as/sw/source/uibase/ribbar.po b/source/as/sw/source/uibase/ribbar.po
index f206963d422..67e1944e129 100644
--- a/source/as/sw/source/uibase/ribbar.po
+++ b/source/as/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-11 19:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/as/sw/source/uibase/uiview.po b/source/as/sw/source/uibase/uiview.po
index 071253b1700..d9b442281e3 100644
--- a/source/as/sw/source/uibase/uiview.po
+++ b/source/as/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 13:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/as/xmlsecurity/uiconfig/ui.po b/source/as/xmlsecurity/uiconfig/ui.po
index c2adf832f80..2a28d4f82a3 100644
--- a/source/as/xmlsecurity/uiconfig/ui.po
+++ b/source/as/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -173,6 +173,15 @@ msgstr "আতৰাওক"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ast/desktop/source/deployment/gui.po b/source/ast/desktop/source/deployment/gui.po
index 89c8f7d40aa..82d60555ccd 100644
--- a/source/ast/desktop/source/deployment/gui.po
+++ b/source/ast/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 15:46+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-25 18:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467647204.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1440526019.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -174,6 +174,14 @@ msgstr ""
"Calque «Encaboxar» pa detener la instalación."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -189,6 +197,14 @@ msgstr ""
"Calque «Encaboxar» pa detener el desaniciu de la estensión."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index c33e9262877..62496cf8070 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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Códigos de fallu</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Esta función d'execución devuelve'l contestu de componente predetermináu que se debe usar, si se instancien servicios por aciu de XmultiServiceFactory. Consulte'l capítulu <item type=\"literal\">Professional UNO</item> del documentu <item type=\"literal\">Developer's Guide</item> en <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> pa más información."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 08cd915d9b1..505647d5a8d 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index b2975dcfc20..25b4bdf9cf2 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-24 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index dfb777d5697..6039a7830d9 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter.po b/source/ast/helpcontent2/source/text/swriter.po
index 426f3ba4c5b..7a5f28edc63 100644
--- a/source/ast/helpcontent2/source/text/swriter.po
+++ b/source/ast/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 03:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numberación de esquema\">Numberación d'esquema</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/00.po b/source/ast/helpcontent2/source/text/swriter/00.po
index 91c9ca6b60c..f3236725ff3 100644
--- a/source/ast/helpcontent2/source/text/swriter/00.po
+++ b/source/ast/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 03:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Escueya <emph>Ferramientes - Numberación d'esquema</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Escueya na llingüeta <emph>Ferramientes - Numberación d'esquema - Numberación</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Escueya <emph>Ferramientes - Numberación de llinies...</emph>(sacante pa formatu HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 7018749d90c..d2b4fe3221c 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 17:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_NAVI_OUTLINES\">Faiga clic en <emph>1</emph> pa ver namái les testeres de nivel cimeru na ventana del Navegador y <emph>10</emph> pa ver toles testeres.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Si escueye \"Númberu de capítulu ensin separador\" pa un campu de capítulu, nun s'amuesen los separadores especificaos pa númberu de capítulu en <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Ferramientes - Numberación d'esquema</emph></link>."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inxerta'l númberu de capítulu. P'asignar una numberación de capítulu a un estilu de testera, escueya<emph> Ferramientes - Esquema de numberación</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numberación de capítulos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numberación de capítulos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "La numberación de capítulos enllazar a los estilos de los párrafos. De forma predeterminada, los estilos del párrafu \"Testera\" (1-10) asignar a los niveles correspondientes de númberos de capítulos (1-10). Si deseyar, pue asignar estilos de párrafos distintos al nivel del númberu del capítulu."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Si deseya cabezales numberaos, utiliza'l menú de <emph>Ferramientes - Enumberación de Eschema</emph>p'asignar enumberación a un estilu de párrafu. NUN use l'iconu de Enumberación n'en la barra de Formateo."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Pa destacar la visualización na pantalla de los númberos de capítulos, escueya <emph>Ver -</emph><emph> Marques</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Guarda o carga un formatu de númberu de capítulos. Un formatu guardáu de númberu de capítulos ta disponible pa tolos documentos.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "El botón <emph>Formatu</emph> namái ta disponible na numberación de capítulos. Nos estilos de llista con númberos o con viñetes, modifique los estilos de numberación de los párrafos."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Abre un diálogu onde pue guardar los valores del nivel de numberación escoyíu. De siguío pue cargar estos valores a partir d'otru documentu.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\" visibility=\"visible\">Calque sobre'l nivel d'esquema que deseye modificar y especifique les opciones de numberación del nivel.</ahelp> Calque \"1-10\" p'aplicar les opciones de numberación a tolos niveles, sacante al estilu del párrafu."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\" visibility=\"visible\">Escueya l'estilu de párrafu que deseye asignar al nivel d'esquema escoyíu.</ahelp> Si calca \"Nengunu\", el nivel d'esquema escoyíu nun se define."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nuevu bloque de direiciones"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nuevu bloque de direiciones"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementos de la direición"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Abasnar l'elementu de direición al campu de baxo"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index b6b3a376aca..abd8858fd99 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 17:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Pue mover la testera y el testu subordináu enriba o embaxo nun documentu de testu por aciu el Navegador. Tamién pue xubir o baxar un nivel les testeres. Pa usar esta función, formatee les testeres del documentu con unu de los estilos predefiníos de párrafu de la testera. Si deseya usar un estilu de párrafu personalizáu pa una testera, escueya <emph>Ferramientes - Numberación de capítulos</emph>, escueya l'estilu del cuadru <emph>Estilu de párrafu</emph> y calque dos vegaes sobre un númberu de la llista <emph>Nivel</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numberación de capítulos"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>esquemes;numberación</bookmark_value> <bookmark_value>desaniciar;númberos de testera</bookmark_value> <bookmark_value>numberación de capítulos</bookmark_value> <bookmark_value>testeres; numberación/estilu de párrafu</bookmark_value> <bookmark_value>numberación;testeres</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numberación de capítulos\">Numberación de capítulos</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Pue modificar la xerarquía de la testera o asignar un nivel na xerarquía a un estilu de párrafu personalizáu. Tamién pue amestar numberación de capítulos y de seiciones a los estilos de párrafu de la testera. De forma predeterminada, l'estilu de párrafu \"Testera 1\" ocupa la parte cimera de la xerarquía de numberación."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escueya <item type=\"menuitem\">Ferramientes - Numberación d'esquema</item> y faiga clic na llingüeta <item type=\"menuitem\">Numberación</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Pa desaniciar la numberación d'esquema automática d'un párrafu de testera"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escueya <item type=\"menuitem\">Ferramientes - Numberación d'esquema</item> y faiga clic na llingüeta <item type=\"menuitem\">Numberación</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Primero que pueda inxertar información sobre'l capítulu nuna testera o pie de páxina, primero tien de configurar les opciones de numberación de capítulos pal estilu de párrafu que deseye usar nos títulos de los capítulos."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Escueya <emph>Ferramientes - Numberación de capítulos</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>índices;definir entraes en</bookmark_value> <bookmark_value>índiz de materies;definir entraes en</bookmark_value> <bookmark_value>entraes;definir n'índiz/índiz de materies</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Escueya <emph>Inxertar - Índices - Entrada</emph> y siga unu d'estos procedimientos:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Escueya <emph>Ferramientes - Numberación de capítulos</emph> y calque la llingüeta <emph>Numberación</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Si quier usar un estilu de párrafu distintu como entrada d'índiz de materies, escueya'l caxellu de comprobación <item type=\"menuitem\">Estilos adicionales</item> nel área <item type=\"menuitem\">Crear dende</item> y, de siguío, faiga clic nel botón (<item type=\"menuitem\">...</item>) qu'hai al pie del caxellu de comprobación. Nel diálogu <item type=\"menuitem\">Asignar estilos</item>, faiga clic nel estilu de la llista y, de siguío, faiga clic nel botón <item type=\"menuitem\">>></item> o nel botón <item type=\"menuitem\"><<</item> pa definir el nivel de diseñu del estilu de párrafu."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numberación;desaniciar/encaboxar</bookmark_value> <bookmark_value>llistes con viñetes;encaboxar</bookmark_value> <bookmark_value>llistes;desaniciar/encaboxar numberación</bookmark_value> <bookmark_value>desaniciar;númberos en llistes</bookmark_value> <bookmark_value>encaboxar llistes numberaes</bookmark_value> <bookmark_value>camudar;númberos iniciales en llistes</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Si quier utilizar testeres numberaes, utilice'l comandu <emph>Ferramientes - Numberación de capítulos</emph> p'asignar una numberación a un estilu de párrafu. Nun utilice l'iconu Numberación de la barra d'herramienta Formatu."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
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 0428a47ea53..3d52f630512 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Escoyeta de temes"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26997,15 +27114,6 @@ msgid "~Properties..."
msgstr "Propiedaes..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ast/sc/source/ui/src.po b/source/ast/sc/source/ui/src.po
index 4a61ddbb3c4..c3c46d1883d 100644
--- a/source/ast/sc/source/ui/src.po
+++ b/source/ast/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2703,7 +2703,7 @@ msgstr "El rangu moviose de #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "Nun hai encontu pa matrices añeraes."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ast/sfx2/source/view.po b/source/ast/sfx2/source/view.po
index 92c96c3c294..80377102150 100644
--- a/source/ast/sfx2/source/view.po
+++ b/source/ast/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ast/svtools/source/control.po b/source/ast/svtools/source/control.po
index 3276334162c..0068ca6bc57 100644
--- a/source/ast/svtools/source/control.po
+++ b/source/ast/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 22:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Cursiva prieta"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ast/svtools/source/misc.po b/source/ast/svtools/source/misc.po
index 80d332cffa4..12473213e17 100644
--- a/source/ast/svtools/source/misc.po
+++ b/source/ast/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-11 18:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3181,10 +3181,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ast/sw/source/core/undo.po b/source/ast/sw/source/core/undo.po
index f7014188323..08b09047598 100644
--- a/source/ast/sw/source/core/undo.po
+++ b/source/ast/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-11 19:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "saltu de columna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Inxertar $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Desaniciar $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributos camudaos"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabla camudada"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Estilu camudáu"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ast/sw/source/uibase/docvw.po b/source/ast/sw/source/uibase/docvw.po
index 81f22eb2a95..4a06a6902d2 100644
--- a/source/ast/sw/source/uibase/docvw.po
+++ b/source/ast/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ast/sw/source/uibase/ribbar.po b/source/ast/sw/source/uibase/ribbar.po
index a912a5590bc..8c526a3f84f 100644
--- a/source/ast/sw/source/uibase/ribbar.po
+++ b/source/ast/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-11 19:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ast/sw/source/uibase/uiview.po b/source/ast/sw/source/uibase/uiview.po
index 5874d90eddc..ed2d831b6a0 100644
--- a/source/ast/sw/source/uibase/uiview.po
+++ b/source/ast/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ast/xmlsecurity/uiconfig/ui.po b/source/ast/xmlsecurity/uiconfig/ui.po
index 77b9d1684c4..1c42c41816f 100644
--- a/source/ast/xmlsecurity/uiconfig/ui.po
+++ b/source/ast/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -174,6 +174,15 @@ msgstr "Desaniciar"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/be/chart2/source/controller/dialogs.po b/source/be/chart2/source/controller/dialogs.po
index 0765d8b17b8..a105f6e141c 100644
--- a/source/be/chart2/source/controller/dialogs.po
+++ b/source/be/chart2/source/controller/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-04 17:32+0000\n"
+"PO-Revision-Date: 2017-06-18 19:42+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1491327163.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497814974.000000\n"
#: Strings.src
msgctxt ""
@@ -1306,7 +1306,7 @@ msgctxt ""
"STR_CONTROLTEXT_ERROR_BARS_FROM_DATA\n"
"string.text"
msgid "From Data Table"
-msgstr "From Data Table"
+msgstr "З табліцы даных"
#: Strings_Statistic.src
msgctxt ""
diff --git a/source/be/connectivity/source/resource.po b/source/be/connectivity/source/resource.po
index 4b9303962a4..fa72722019a 100644
--- a/source/be/connectivity/source/resource.po
+++ b/source/be/connectivity/source/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-30 17:57+0000\n"
+"PO-Revision-Date: 2017-06-18 19:43+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493575044.000000\n"
+"X-POOTLE-MTIME: 1497815010.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -658,7 +658,7 @@ msgctxt ""
"STR_SORT_BY_COL_ONLY\n"
"string.text"
msgid "Can only sort by table columns."
-msgstr "Can only sort by table columns."
+msgstr "Парадкаванне магчымае толькі па калонкам табліцы."
#: conn_shared_res.src
msgctxt ""
diff --git a/source/be/cui/source/tabpages.po b/source/be/cui/source/tabpages.po
index f1c83408119..b88f3debb26 100644
--- a/source/be/cui/source/tabpages.po
+++ b/source/be/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: tabpages\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-22 14:48+0000\n"
+"PO-Revision-Date: 2017-06-18 17:44+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495464482.000000\n"
+"X-POOTLE-MTIME: 1497807852.000000\n"
#: border.src
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"RID_SVXSTR_DESC_LINESTYLE\n"
"string.text"
msgid "Please enter a name for the line style:"
-msgstr "Please enter a name for the line style:"
+msgstr "Дайце назву новаму стылю лініі:"
#: strings.src
msgctxt ""
diff --git a/source/be/cui/uiconfig/ui.po b/source/be/cui/uiconfig/ui.po
index c791a4623d8..411921a0536 100644
--- a/source/be/cui/uiconfig/ui.po
+++ b/source/be/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-04 17:42+0000\n"
+"PO-Revision-Date: 2017-06-19 17:19+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496598164.000000\n"
+"X-POOTLE-MTIME: 1497892790.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -1715,7 +1715,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pr_esets:"
-msgstr ""
+msgstr "Загатоўкі:"
#: borderpage.ui
msgctxt ""
@@ -2012,7 +2012,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_By:"
-msgstr ""
+msgstr "На:"
#: calloutpage.ui
msgctxt ""
@@ -2276,34 +2276,31 @@ msgid "Text Alignment"
msgstr "Раўнаванне тэксту"
#: cellalignment.ui
-#, fuzzy
msgctxt ""
"cellalignment.ui\n"
"labelSTR_BOTTOMLOCK\n"
"label\n"
"string.text"
msgid "Text Extension From Lower Cell Border"
-msgstr "Тэкст Прыстаўка Ніжні Клетка Мяжа"
+msgstr "Расцягванне тэксту ад ніжняга канта клеткі"
#: cellalignment.ui
-#, fuzzy
msgctxt ""
"cellalignment.ui\n"
"labelSTR_TOPLOCK\n"
"label\n"
"string.text"
msgid "Text Extension From Upper Cell Border"
-msgstr "Тэкст Прыстаўка Верхні Клетка Мяжа"
+msgstr "Расцягванне тэксту ад верхняга канта клеткі"
#: cellalignment.ui
-#, fuzzy
msgctxt ""
"cellalignment.ui\n"
"labelSTR_CELLLOCK\n"
"label\n"
"string.text"
msgid "Text Extension Inside Cell"
-msgstr "Тэкст Прыстаўка Усярэдзіне Клетка"
+msgstr "Расцягванне тэксту ўсярэдзіне клеткі"
#: cellalignment.ui
msgctxt ""
@@ -3203,7 +3200,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Сцерці"
#: colorpage.ui
msgctxt ""
@@ -3689,7 +3686,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Begin horizontal:"
-msgstr ""
+msgstr "Пачаць гарызанталь:"
#: connectortabpage.ui
msgctxt ""
@@ -3698,7 +3695,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "End _horizontal:"
-msgstr ""
+msgstr "Скончыць гарызанталь:"
#: connectortabpage.ui
msgctxt ""
@@ -3707,7 +3704,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Begin _vertical:"
-msgstr ""
+msgstr "Пачаць вертыкаль:"
#: connectortabpage.ui
msgctxt ""
@@ -3716,7 +3713,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End vertical:"
-msgstr ""
+msgstr "Скончыць вертыкаль:"
#: connectortabpage.ui
msgctxt ""
@@ -4130,7 +4127,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Guide _overhang:"
-msgstr ""
+msgstr "Вылет вынаскі:"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4139,7 +4136,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Guide distance:"
-msgstr ""
+msgstr "Водступ вынаскі:"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4148,7 +4145,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Left guide:"
-msgstr ""
+msgstr "Левая вынаска:"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4157,7 +4154,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Right guide:"
-msgstr ""
+msgstr "Правая вынаска:"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4175,7 +4172,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Measure _below object"
-msgstr ""
+msgstr "Памер пад аб'ектам"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4202,7 +4199,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_AutoVertical"
-msgstr ""
+msgstr "Аўтавертыкальна"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4211,7 +4208,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_utoHorizontal"
-msgstr ""
+msgstr "Аўтагарызантальна"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4220,7 +4217,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Parallel to line"
-msgstr ""
+msgstr "Паралельна лініі"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -6128,7 +6125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ignore post-positional word"
-msgstr ""
+msgstr "Ігнараваць слова ў постпазіцыі"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6146,7 +6143,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace all unique entries automatically"
-msgstr ""
+msgstr "Замяняць усе ўнікальныя запісы аўтаматычна"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6173,7 +6170,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Штрыхоўка"
#: hatchpage.ui
msgctxt ""
@@ -6218,7 +6215,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Crossed"
-msgstr ""
+msgstr "Перакрыжавана"
#: hatchpage.ui
msgctxt ""
@@ -6344,7 +6341,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Targ_et:"
-msgstr ""
+msgstr "Мэта:"
#: hyperlinkdocpage.ui
msgctxt ""
@@ -6740,7 +6737,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select Path"
-msgstr ""
+msgstr "Выберыце шлях"
#: hyperlinknewdocpage.ui
msgctxt ""
@@ -6888,7 +6885,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Change Icon"
-msgstr ""
+msgstr "Змяніць значок"
#: iconselectordialog.ui
msgctxt ""
@@ -6897,7 +6894,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Icons"
-msgstr ""
+msgstr "Значкі"
#: iconselectordialog.ui
msgctxt ""
@@ -6906,7 +6903,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_mport..."
-msgstr ""
+msgstr "Імпарт..."
#: iconselectordialog.ui
msgctxt ""
@@ -7137,7 +7134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display as icon"
-msgstr ""
+msgstr "Паказваць значок"
#: insertoleobject.ui
msgctxt ""
@@ -7380,7 +7377,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add a selected object to create new arrow styles."
-msgstr ""
+msgstr "Дадаць выбраны аб'ект для стварэння новых стыляў стрэлак."
#: lineendstabpage.ui
msgctxt ""
@@ -7650,7 +7647,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Corner style:"
-msgstr ""
+msgstr "_Стыль вугла:"
#: linetabpage.ui
msgctxt ""
@@ -7659,7 +7656,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ca_p style:"
-msgstr ""
+msgstr "Стыль наканечніка:"
#: linetabpage.ui
msgctxt ""
@@ -7668,7 +7665,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Corner and Cap Styles"
-msgstr ""
+msgstr "Стылі вуглоў і наканечнікаў"
#: linetabpage.ui
msgctxt ""
@@ -7731,7 +7728,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_No Symbol"
-msgstr ""
+msgstr "Без знака"
#: linetabpage.ui
msgctxt ""
@@ -8280,7 +8277,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "E_nhance edges"
-msgstr ""
+msgstr "Палепшыць краі"
#: mosaicdialog.ui
msgctxt ""
@@ -9108,7 +9105,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Табуляцыя:"
#: numberingpositionpage.ui
msgctxt ""
@@ -9472,7 +9469,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enable experimental features (may be unstable)"
-msgstr ""
+msgstr "Уключыць эксперыментальныя магчымасці (могуць быць нестабільнымі)"
#: optadvancedpage.ui
msgctxt ""
@@ -9571,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Western text only"
-msgstr ""
+msgstr "Толькі для заходняга тэксту"
#: optasianpage.ui
msgctxt ""
@@ -9691,7 +9688,6 @@ msgid "Enable code completion"
msgstr ""
#: optbasicidepage.ui
-#, fuzzy
msgctxt ""
"optbasicidepage.ui\n"
"label1\n"
@@ -11904,14 +11900,13 @@ msgid "_Company:"
msgstr "Кампанія:"
#: optuserpage.ui
-#, fuzzy
msgctxt ""
"optuserpage.ui\n"
"nameft\n"
"label\n"
"string.text"
msgid "First/last _name/initials:"
-msgstr "Імя/Прозвішча/Ініцыялы"
+msgstr "Імя/Прозвішча/Ініцыялы:"
#: optuserpage.ui
msgctxt ""
@@ -12094,14 +12089,13 @@ msgid "Use data for document properties"
msgstr "Ужываць звесткі ва ўласцівасцях дакументаў"
#: optuserpage.ui
-#, fuzzy
msgctxt ""
"optuserpage.ui\n"
"rusnameft\n"
"label\n"
"string.text"
msgid "Last name/first _name/father’s name/initials:"
-msgstr "Прозвішча/Імя/Імя па бацьку/Ініцыялы"
+msgstr "Прозвішча/Імя/Імя па бацьку/Ініцыялы:"
#: optuserpage.ui
msgctxt ""
@@ -12140,14 +12134,13 @@ msgid "First name"
msgstr "Імя"
#: optuserpage.ui
-#, fuzzy
msgctxt ""
"optuserpage.ui\n"
"eastnameft\n"
"label\n"
"string.text"
msgid "Last/first _name/initials:"
-msgstr "Прозвішча/Імя/Ініцыялы"
+msgstr "Прозвішча/Імя/Ініцыялы:"
#: optuserpage.ui
msgctxt ""
@@ -13452,7 +13445,6 @@ msgid "Deci_mal"
msgstr "Дзеся_тковы"
#: paratabspage.ui
-#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_TABTYPE_LEFT\n"
@@ -13471,7 +13463,6 @@ msgid "_Left/Top"
msgstr ""
#: paratabspage.ui
-#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_TABTYPE_RIGHT\n"
@@ -13676,7 +13667,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File Sharing Password"
-msgstr ""
+msgstr "Пароль для сумеснага доступу к файлу"
#: password.ui
msgctxt ""
@@ -14048,7 +14039,6 @@ msgid "Rotation / Scaling"
msgstr "Паварот і маштаб"
#: positionpage.ui
-#, fuzzy
msgctxt ""
"positionpage.ui\n"
"scale\n"
@@ -14085,7 +14075,6 @@ msgid "Preview"
msgstr "Перадпаказ"
#: positionsizedialog.ui
-#, fuzzy
msgctxt ""
"positionsizedialog.ui\n"
"PositionAndSizeDialog\n"
@@ -14095,7 +14084,6 @@ msgid "Position and Size"
msgstr "Месца і водступ"
#: positionsizedialog.ui
-#, fuzzy
msgctxt ""
"positionsizedialog.ui\n"
"RID_SVXPAGE_POSITION_SIZE\n"
@@ -14105,7 +14093,6 @@ msgid "Position and Size"
msgstr "Месца і водступ"
#: positionsizedialog.ui
-#, fuzzy
msgctxt ""
"positionsizedialog.ui\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -14133,24 +14120,22 @@ msgid "Slant & Corner Radius"
msgstr ""
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"FT_POS_X\n"
"label\n"
"string.text"
msgid "Position _X:"
-msgstr "Месца"
+msgstr "Пазіцыя _X:"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"FT_POS_Y\n"
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr "Месца"
+msgstr "Пазіцыя _Y:"
#: possizetabpage.ui
msgctxt ""
@@ -14171,7 +14156,6 @@ msgid "Position"
msgstr "Месца"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"FT_WIDTH\n"
@@ -14181,17 +14165,15 @@ msgid "Wi_dth:"
msgstr "Шырыня:"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"FT_HEIGHT\n"
"label\n"
"string.text"
msgid "H_eight:"
-msgstr "Вышыня"
+msgstr "Вышыня:"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"CBX_SCALE\n"
@@ -14219,7 +14201,6 @@ msgid "Size"
msgstr "Памер"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"TSB_POSPROTECT\n"
@@ -14229,7 +14210,6 @@ msgid "Positio_n"
msgstr "Месца"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"TSB_SIZEPROTECT\n"
@@ -14263,7 +14243,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fit _height to text"
-msgstr ""
+msgstr "Па вышыні тэксту"
#: possizetabpage.ui
msgctxt ""
@@ -14272,7 +14252,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Adapt"
-msgstr ""
+msgstr "Дапасаваць"
#: posterdialog.ui
msgctxt ""
@@ -14281,7 +14261,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Posterize"
-msgstr ""
+msgstr "Плакат"
#: posterdialog.ui
msgctxt ""
@@ -14290,17 +14270,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Poster colors:"
-msgstr ""
+msgstr "Колеры плаката:"
#: posterdialog.ui
-#, fuzzy
msgctxt ""
"posterdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Parameters"
-msgstr "Параметр"
+msgstr "Параметры"
#: querychangelineenddialog.ui
msgctxt ""
@@ -14309,7 +14288,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Save Arrowhead?"
-msgstr ""
+msgstr "Запісаць вастрыё стрэлкі?"
#: querychangelineenddialog.ui
msgctxt ""
@@ -14318,7 +14297,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "The arrowhead was modified without saving."
-msgstr ""
+msgstr "Вастрыё стрэлкі зменена, але не запісана."
#: querychangelineenddialog.ui
msgctxt ""
@@ -14327,7 +14306,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "Would you like to save the arrowhead now?"
-msgstr ""
+msgstr "Запісаць вастрыё стрэлкі зараз?"
#: querydeletebitmapdialog.ui
msgctxt ""
@@ -14336,7 +14315,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Delete Bitmap?"
-msgstr ""
+msgstr "Сцерці растравы відарыс?"
#: querydeletebitmapdialog.ui
msgctxt ""
@@ -14345,7 +14324,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Are you sure you want to delete the bitmap?"
-msgstr ""
+msgstr "Сапраўды сцерці растравы відарыс?"
#: querydeletechartcolordialog.ui
msgctxt ""
@@ -14354,7 +14333,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Delete Color?"
-msgstr ""
+msgstr "Сцерці колер?"
#: querydeletechartcolordialog.ui
msgctxt ""
@@ -14363,7 +14342,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you really want to delete the chart color?"
-msgstr ""
+msgstr "Сапраўды сцерці колер дыяграмы?"
#: querydeletechartcolordialog.ui
msgctxt ""
@@ -14381,7 +14360,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Delete color?"
-msgstr ""
+msgstr "Сцерці колер?"
#: querydeletecolordialog.ui
msgctxt ""
@@ -14444,7 +14423,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Delete Hatching?"
-msgstr ""
+msgstr "Сцерці штрыхоўку?"
#: querydeletehatchdialog.ui
msgctxt ""
@@ -14453,7 +14432,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to delete the hatching?"
-msgstr ""
+msgstr "Сапраўды сцерці штрыхоўку?"
#: querydeletelineenddialog.ui
msgctxt ""
@@ -14462,7 +14441,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Delete Arrowhead?"
-msgstr ""
+msgstr "Сцерці вастрыё стрэлкі?"
#: querydeletelineenddialog.ui
msgctxt ""
@@ -14471,7 +14450,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you really want to delete the arrowhead?"
-msgstr ""
+msgstr "Сапраўды сцерці вастрыё стрэлкі?"
#: querydeletelineenddialog.ui
msgctxt ""
@@ -14489,7 +14468,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Delete Line Style?"
-msgstr ""
+msgstr "Сцерці стыль лініі?"
#: querydeletelinestyledialog.ui
msgctxt ""
@@ -14498,7 +14477,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to delete the line style?"
-msgstr ""
+msgstr "Сапраўды сцерці стыль лініі?"
#: queryduplicatedialog.ui
msgctxt ""
@@ -14534,7 +14513,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "No Loaded File"
-msgstr ""
+msgstr "Няма адчытанага файла"
#: querynoloadedfiledialog.ui
msgctxt ""
@@ -14627,24 +14606,22 @@ msgid "go to record"
msgstr ""
#: rotationtabpage.ui
-#, fuzzy
msgctxt ""
"rotationtabpage.ui\n"
"FT_POS_X\n"
"label\n"
"string.text"
msgid "Position _X:"
-msgstr "Месца"
+msgstr "Пазіцыя _X:"
#: rotationtabpage.ui
-#, fuzzy
msgctxt ""
"rotationtabpage.ui\n"
"FT_POS_Y\n"
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr "Месца"
+msgstr "Пазіцыя _Y:"
#: rotationtabpage.ui
msgctxt ""
diff --git a/source/be/desktop/source/deployment/gui.po b/source/be/desktop/source/deployment/gui.po
index 61edd36a4b3..693d8af6846 100644
--- a/source/be/desktop/source/deployment/gui.po
+++ b/source/be/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-13 18:19+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492107540.000000\n"
#: dp_gui_dialog.src
@@ -173,6 +173,14 @@ msgstr ""
"Націсніце Нічога, каб спыніць устанаўленне."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -188,6 +196,14 @@ msgstr ""
"Click 'Cancel' to stop removing the extension."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/be/dictionaries/en/dialog.po b/source/be/dictionaries/en/dialog.po
index 654c7da39f1..9af600455fd 100644
--- a/source/be/dictionaries/en/dialog.po
+++ b/source/be/dictionaries/en/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2017-04-30 17:14+0000\n"
+"PO-Revision-Date: 2017-06-18 19:03+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493572490.000000\n"
+"X-POOTLE-MTIME: 1497812630.000000\n"
#: en_en_US.properties
msgctxt ""
@@ -157,7 +157,6 @@ msgid "Check double quotation marks: \"x\" → “x”"
msgstr "Праверыць двукоссі: \"x\" → “x”"
#: en_en_US.properties
-#, fuzzy
msgctxt ""
"en_en_US.properties\n"
"quotation\n"
@@ -208,13 +207,12 @@ msgid "Check more than two extra space characters between words and sentences."
msgstr "Адзначыць паміж і."
#: en_en_US.properties
-#, fuzzy
msgctxt ""
"en_en_US.properties\n"
"spaces3\n"
"property.text"
msgid "More spaces"
-msgstr "Дадаткова"
+msgstr "Дадатковыя прабелы"
#: en_en_US.properties
msgctxt ""
diff --git a/source/be/dictionaries/is.po b/source/be/dictionaries/is.po
index 7f30a66decd..6feb9a078c8 100644
--- a/source/be/dictionaries/is.po
+++ b/source/be/dictionaries/is.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: is\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2013-07-15 11:07+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-06-17 15:50+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1373886432.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497714634.000000\n"
#: description.xml
msgctxt ""
@@ -22,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus"
-msgstr ""
+msgstr "Ісландскі правапісны слоўнік, правілы пераносаў і тэзаўрус"
diff --git a/source/be/dictionaries/lo_LA.po b/source/be/dictionaries/lo_LA.po
index 54b1d17285c..5d5c2a6d4e7 100644
--- a/source/be/dictionaries/lo_LA.po
+++ b/source/be/dictionaries/lo_LA.po
@@ -3,16 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-12-17 14:12+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-06-17 15:51+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497714670.000000\n"
#: description.xml
msgctxt ""
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Lao spelling dictionary"
-msgstr ""
+msgstr "Лаоскі арфаграфічны слоўнік"
diff --git a/source/be/editeng/source/items.po b/source/be/editeng/source/items.po
index 3b4b5eb49d5..8ab642b8a7f 100644
--- a/source/be/editeng/source/items.po
+++ b/source/be/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: items\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 19:20+0000\n"
+"PO-Revision-Date: 2017-06-17 19:09+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492284047.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497726543.000000\n"
#: page.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"RID_FINE_DASHED\n"
"string.text"
msgid "Single, fine dashed"
-msgstr ""
+msgstr "Адзінарная, тонкі штрых"
#: svxitems.src
msgctxt ""
@@ -958,16 +958,15 @@ msgctxt ""
"RID_DOUBLE_THIN\n"
"string.text"
msgid "Double, fixed thin lines"
-msgstr ""
+msgstr "Падвойная, сталая, тонкія лініі"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_DASH_DOT\n"
"string.text"
msgid "Single, dash-dot"
-msgstr "Single, dashed"
+msgstr "Адзіночны штрых-пункцір"
#: svxitems.src
msgctxt ""
@@ -975,7 +974,7 @@ msgctxt ""
"RID_DASH_DOT_DOT\n"
"string.text"
msgid "Single, dash-dot-dot"
-msgstr ""
+msgstr "Адзіночная, штрых-кропка-кропка"
#: svxitems.src
msgctxt ""
@@ -1675,49 +1674,44 @@ msgid "Engraved"
msgstr "Engraved"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PARAVERTALIGN_AUTO\n"
"string.text"
msgid "Automatic text alignment"
-msgstr "Automatic text alignment"
+msgstr "Аўтаматычнае раўнаванне тэксту"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PARAVERTALIGN_BASELINE\n"
"string.text"
msgid "Text aligned to base line"
-msgstr "Text aligned to base line"
+msgstr "Раўнаванне тэксту па базавай лініі"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PARAVERTALIGN_TOP\n"
"string.text"
msgid "Text aligned top"
-msgstr "Text aligned top"
+msgstr "Раўнаванне тэксту зверху"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PARAVERTALIGN_CENTER\n"
"string.text"
msgid "Text aligned middle"
-msgstr "Text aligned middle"
+msgstr "Раўнаванне тэксту ў цэнтры"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PARAVERTALIGN_BOTTOM\n"
"string.text"
msgid "Text aligned bottom"
-msgstr "Text aligned bottom"
+msgstr "Раўнаванне тэксту знізу"
#: svxitems.src
#, fuzzy
diff --git a/source/be/extensions/source/propctrlr.po b/source/be/extensions/source/propctrlr.po
index c9809f71160..f0d559abe05 100644
--- a/source/be/extensions/source/propctrlr.po
+++ b/source/be/extensions/source/propctrlr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: propctrlr\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-30 17:37+0000\n"
+"PO-Revision-Date: 2017-06-18 19:45+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493573836.000000\n"
+"X-POOTLE-MTIME: 1497815137.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -2643,7 +2643,7 @@ msgctxt ""
"RID_STR_EDITABLE\n"
"string.text"
msgid "Editable"
-msgstr "Editable"
+msgstr "Рэдагавальны"
#: formres.src
msgctxt ""
diff --git a/source/be/extras/source/autocorr/emoji.po b/source/be/extras/source/autocorr/emoji.po
index 707d89a1222..dfe4472a6c5 100644
--- a/source/be/extras/source/autocorr/emoji.po
+++ b/source/be/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-10-18 13:02+0200\n"
-"PO-Revision-Date: 2017-06-02 19:43+0000\n"
+"PO-Revision-Date: 2017-06-17 15:57+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496432628.000000\n"
+"X-POOTLE-MTIME: 1497715040.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4496,7 +4496,7 @@ msgctxt ""
"CHOCOLATE_BAR\n"
"LngText.text"
msgid "chocolate"
-msgstr ""
+msgstr "шакалад"
#. 🍬 (U+1F36C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4505,7 +4505,7 @@ msgctxt ""
"CANDY\n"
"LngText.text"
msgid "candy"
-msgstr ""
+msgstr "цукерка"
#. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4514,7 +4514,7 @@ msgctxt ""
"LOLLIPOP\n"
"LngText.text"
msgid "lollipop"
-msgstr ""
+msgstr "лядзяш"
#. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4550,7 +4550,7 @@ msgctxt ""
"BENTO_BOX\n"
"LngText.text"
msgid "bento"
-msgstr ""
+msgstr "бенто"
#. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4568,7 +4568,7 @@ msgctxt ""
"COOKING\n"
"LngText.text"
msgid "egg"
-msgstr ""
+msgstr "яйка"
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4577,7 +4577,7 @@ msgctxt ""
"FORK_AND_KNIFE\n"
"LngText.text"
msgid "restaurant"
-msgstr ""
+msgstr "рэстаран"
#. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4604,7 +4604,7 @@ msgctxt ""
"WINE_GLASS\n"
"LngText.text"
msgid "wine glass"
-msgstr ""
+msgstr "шклянка віна"
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4649,7 +4649,7 @@ msgctxt ""
"BABY_BOTTLE\n"
"LngText.text"
msgid "baby bottle"
-msgstr ""
+msgstr "дзіцячая бутэлька"
#. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4685,7 +4685,7 @@ msgctxt ""
"JACK-O-LANTERN\n"
"LngText.text"
msgid "Halloween"
-msgstr ""
+msgstr "Дзень усіх Святых"
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/be/filter/source/config/fragments/filters.po b/source/be/filter/source/config/fragments/filters.po
index 722841b90c2..083ddce83c7 100644
--- a/source/be/filter/source/config/fragments/filters.po
+++ b/source/be/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-23 18:13+0000\n"
+"PO-Revision-Date: 2017-06-18 19:46+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495563239.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815180.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: PNG___Portable_Network_Graphic.xcu
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: PPM___Portable_Pixelmap.xcu
msgctxt ""
@@ -707,7 +707,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: PSD___Adobe_Photoshop.xcu
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: writer_web_HTML_help.xcu
msgctxt ""
diff --git a/source/be/filter/source/pdf.po b/source/be/filter/source/pdf.po
index 68ded4cfd84..f8c9f33c191 100644
--- a/source/be/filter/source/pdf.po
+++ b/source/be/filter/source/pdf.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: pdf\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2017-06-04 17:45+0000\n"
+"PO-Revision-Date: 2017-06-14 14:36+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496598322.000000\n"
+"X-POOTLE-MTIME: 1497450998.000000\n"
#: impdialog.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_WARN_TRANSP_PDFA_SHORT\n"
"string.text"
msgid "PDF/A transparency"
-msgstr ""
+msgstr "Празрыстасць PDF/A"
#: impdialog.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_WARN_TRANSP_PDFA\n"
"string.text"
msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
-msgstr ""
+msgstr "У PDF/A забаронена празрыстасць. Замест празрыстага аб'екта паказваецца непразрысты."
#: impdialog.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_WARN_TRANSP_VERSION_SHORT\n"
"string.text"
msgid "PDF version conflict"
-msgstr ""
+msgstr "Канфлікт версій PDF"
#: impdialog.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_WARN_FORMACTION_PDFA_SHORT\n"
"string.text"
msgid "PDF/A form action"
-msgstr ""
+msgstr "Дзеянне формы PDF/A"
#: impdialog.src
msgctxt ""
diff --git a/source/be/filter/uiconfig/ui.po b/source/be/filter/uiconfig/ui.po
index 44ebf14d958..a1a9e899bd3 100644
--- a/source/be/filter/uiconfig/ui.po
+++ b/source/be/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-04 17:46+0000\n"
+"PO-Revision-Date: 2017-06-18 17:35+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496598379.000000\n"
+"X-POOTLE-MTIME: 1497807339.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -522,7 +522,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Export _URLs relative to file system"
-msgstr ""
+msgstr "Экспартаваць URL-і адносна тутэйшых файлавых шляхоў"
#: pdflinkspage.ui
msgctxt ""
@@ -1125,7 +1125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Panes"
-msgstr ""
+msgstr "Панэлі"
#: pdfviewpage.ui
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Default"
-msgstr ""
+msgstr "Тыпо_ва"
#: pdfviewpage.ui
msgctxt ""
@@ -1152,7 +1152,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fit _width"
-msgstr ""
+msgstr "Дапасава_ць шырыню"
#: pdfviewpage.ui
msgctxt ""
diff --git a/source/be/formula/source/core/resource.po b/source/be/formula/source/core/resource.po
index 2d4161ae5cd..7636e3dd23e 100644
--- a/source/be/formula/source/core/resource.po
+++ b/source/be/formula/source/core/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: resource\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-27 19:08+0000\n"
+"PO-Revision-Date: 2017-06-14 14:39+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493320133.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497451155.000000\n"
#: core_resource.src
msgctxt ""
@@ -3139,14 +3139,13 @@ msgid "GAMMAINV"
msgstr "GAMMAINV"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"GAMMA.INV\n"
"itemlist.text"
msgid "GAMMA.INV"
-msgstr "GAMMAINV"
+msgstr "GAMMA.INV"
#: core_resource.src
msgctxt ""
@@ -3164,17 +3163,16 @@ msgctxt ""
"T.INV.2T\n"
"itemlist.text"
msgid "T.INV.2T"
-msgstr ""
+msgstr "T.INV.2T"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"T.INV\n"
"itemlist.text"
msgid "T.INV"
-msgstr "TINV"
+msgstr "T.INV"
#: core_resource.src
msgctxt ""
@@ -3186,14 +3184,13 @@ msgid "FINV"
msgstr "FINV"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"F.INV\n"
"itemlist.text"
msgid "F.INV"
-msgstr "FINV"
+msgstr "F.INV"
#: core_resource.src
msgctxt ""
@@ -3202,7 +3199,7 @@ msgctxt ""
"F.INV.RT\n"
"itemlist.text"
msgid "F.INV.RT"
-msgstr ""
+msgstr "F.INV.RT"
#: core_resource.src
msgctxt ""
@@ -3214,14 +3211,13 @@ msgid "CHITEST"
msgstr "CHITEST"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"CHISQ.TEST\n"
"itemlist.text"
msgid "CHISQ.TEST"
-msgstr "CHISQDIST"
+msgstr "CHISQ.TEST"
#: core_resource.src
msgctxt ""
@@ -3233,14 +3229,13 @@ msgid "LOGINV"
msgstr "LOGINV"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"LOGNORM.INV\n"
"itemlist.text"
msgid "LOGNORM.INV"
-msgstr "LOGNORMDIST"
+msgstr "LOGNORM.INV"
#: core_resource.src
msgctxt ""
@@ -3270,24 +3265,22 @@ msgid "BETAINV"
msgstr "BETAINV"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"BETA.DIST\n"
"itemlist.text"
msgid "BETA.DIST"
-msgstr "BETADIST"
+msgstr "BETA.DIST"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"BETA.INV\n"
"itemlist.text"
msgid "BETA.INV"
-msgstr "BETAINV"
+msgstr "BETA.INV"
#: core_resource.src
msgctxt ""
@@ -3305,7 +3298,7 @@ msgctxt ""
"ISOWEEKNUM\n"
"itemlist.text"
msgid "ISOWEEKNUM"
-msgstr ""
+msgstr "ISOWEEKNUM"
#: core_resource.src
msgctxt ""
@@ -3314,7 +3307,7 @@ msgctxt ""
"WEEKNUM_OOO\n"
"itemlist.text"
msgid "WEEKNUM_OOO"
-msgstr ""
+msgstr "WEEKNUM_OOO"
#: core_resource.src
msgctxt ""
@@ -3341,7 +3334,7 @@ msgctxt ""
"NETWORKDAYS\n"
"itemlist.text"
msgid "NETWORKDAYS"
-msgstr ""
+msgstr "NETWORKDAYS"
#: core_resource.src
msgctxt ""
@@ -3350,7 +3343,7 @@ msgctxt ""
"NETWORKDAYS.INTL\n"
"itemlist.text"
msgid "NETWORKDAYS.INTL"
-msgstr ""
+msgstr "NETWORKDAYS.INTL"
#: core_resource.src
msgctxt ""
@@ -3359,7 +3352,7 @@ msgctxt ""
"WORKDAY.INTL\n"
"itemlist.text"
msgid "WORKDAY.INTL"
-msgstr ""
+msgstr "WORKDAY.INTL"
#: core_resource.src
msgctxt ""
@@ -3413,7 +3406,7 @@ msgctxt ""
"CONVERT_OOO\n"
"itemlist.text"
msgid "CONVERT_OOO"
-msgstr ""
+msgstr "CONVERT_OOO"
#: core_resource.src
msgctxt ""
@@ -3497,14 +3490,13 @@ msgid "CHISQDIST"
msgstr "CHISQDIST"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"CHISQ.DIST\n"
"itemlist.text"
msgid "CHISQ.DIST"
-msgstr "CHISQDIST"
+msgstr "CHISQ.DIST"
#: core_resource.src
msgctxt ""
@@ -3516,14 +3508,13 @@ msgid "CHISQINV"
msgstr "CHISQINV"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"CHISQ.INV\n"
"itemlist.text"
msgid "CHISQ.INV"
-msgstr "CHISQINV"
+msgstr "CHISQ.INV"
#: core_resource.src
msgctxt ""
@@ -3640,7 +3631,7 @@ msgctxt ""
"FILTERXML\n"
"itemlist.text"
msgid "FILTERXML"
-msgstr ""
+msgstr "FILTERXML"
#: core_resource.src
msgctxt ""
diff --git a/source/be/fpicker/source/office.po b/source/be/fpicker/source/office.po
index eb74c02af53..bd29e79b5d8 100644
--- a/source/be/fpicker/source/office.po
+++ b/source/be/fpicker/source/office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: office\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-27 19:13+0000\n"
+"PO-Revision-Date: 2017-06-14 17:49+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493320393.000000\n"
+"X-POOTLE-MTIME: 1497462556.000000\n"
#: OfficeFilePicker.src
msgctxt ""
@@ -243,6 +243,8 @@ msgid ""
"Are you sure you want to delete the service?\n"
"\"$servicename$\""
msgstr ""
+"Вы сапраўды хочаце выдаліць сэрвіс?\n"
+"\"$servicename$\""
#: iodlg.src
msgctxt ""
diff --git a/source/be/fpicker/uiconfig/ui.po b/source/be/fpicker/uiconfig/ui.po
index 8f79665ee13..00bc0e3b2d9 100644
--- a/source/be/fpicker/uiconfig/ui.po
+++ b/source/be/fpicker/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-05-23 18:15+0000\n"
+"PO-Revision-Date: 2017-06-14 17:50+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495563349.000000\n"
+"X-POOTLE-MTIME: 1497462619.000000\n"
#: explorerfiledialog.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Connect To Server"
-msgstr ""
+msgstr "Злучыцца з серверам"
#: explorerfiledialog.ui
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit service"
-msgstr ""
+msgstr "Змяніць сэрвіс"
#: remotefilesdialog.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete service"
-msgstr ""
+msgstr "Сцерці сэрвіс"
#: remotefilesdialog.ui
msgctxt ""
@@ -239,4 +239,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change password"
-msgstr ""
+msgstr "Змяніць пароль"
diff --git a/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 5b682b48a5c..3d93ff6a561 100644
--- a/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: msi_languages\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-26 18:39+0000\n"
+"PO-Revision-Date: 2017-06-17 19:06+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493231986.000000\n"
+"X-POOTLE-MTIME: 1497726382.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"OOO_CONTROL_325\n"
"LngText.text"
msgid "Cancel"
-msgstr ""
+msgstr "Скасаваць"
#: Control.ulf
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"OOO_CONTROL_326\n"
"LngText.text"
msgid "OK"
-msgstr ""
+msgstr "ОК"
#: CustomAc.ulf
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"OOO_CUSTOMACTION_5\n"
"LngText.text"
msgid "[ProductName] cannot be installed on this Windows version. [WindowsMinVersionText] or newer is required."
-msgstr ""
+msgstr "[ProductName] немагчыма ўстанавіць на гэту версію Windows. Патрэбна [WindowsMinVersionText] або навейшая."
#: Error.ulf
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"OOO_RADIOBUTTON_10\n"
"LngText.text"
msgid "&Close the applications and attempt to restart them."
-msgstr ""
+msgstr "&Закрыць праграмы і паспрабаваць іх перазапусціць."
#: RadioBut.ulf
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"OOO_RADIOBUTTON_11\n"
"LngText.text"
msgid "&Do not close applications. A reboot will be required."
-msgstr ""
+msgstr "&Не закрываць праграмы. Спатрэбіцца перазагрузка."
#: UIText.ulf
msgctxt ""
diff --git a/source/be/librelogo/source/pythonpath.po b/source/be/librelogo/source/pythonpath.po
index 82e22d315ee..e7abb69ae03 100644
--- a/source/be/librelogo/source/pythonpath.po
+++ b/source/be/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: pythonpath\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-23 18:19+0000\n"
+"PO-Revision-Date: 2017-06-18 19:05+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495563543.000000\n"
+"X-POOTLE-MTIME: 1497812720.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -115,13 +115,12 @@ msgid "rectangle"
msgstr ""
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"LABEL\n"
"property.text"
msgid "label"
-msgstr "Метка"
+msgstr "метка"
#: LibreLogo_en_US.properties
#, fuzzy
@@ -173,7 +172,6 @@ msgid "pencap|linecap"
msgstr ""
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"NONE\n"
@@ -487,7 +485,7 @@ msgctxt ""
"FOR\n"
"property.text"
msgid "for"
-msgstr "для"
+msgstr "for"
#: LibreLogo_en_US.properties
#, fuzzy
@@ -821,7 +819,6 @@ msgid "mm"
msgstr "мм"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"CM\n"
@@ -830,22 +827,20 @@ msgid "cm"
msgstr "см"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"PT\n"
"property.text"
msgid "pt"
-msgstr "пункты"
+msgstr "пт"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"INCH\n"
"property.text"
msgid "in|\""
-msgstr "цаль"
+msgstr "цаль|\""
#: LibreLogo_en_US.properties
msgctxt ""
@@ -853,7 +848,7 @@ msgctxt ""
"INVISIBLE\n"
"property.text"
msgid "invisible"
-msgstr ""
+msgstr "нябачны"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -861,7 +856,7 @@ msgctxt ""
"BLACK\n"
"property.text"
msgid "black"
-msgstr ""
+msgstr "чорны"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -917,7 +912,7 @@ msgctxt ""
"FUCHSIA\n"
"property.text"
msgid "fuchsia|magenta"
-msgstr ""
+msgstr "фуксія|пурпурны"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -997,7 +992,7 @@ msgctxt ""
"TOMATO\n"
"property.text"
msgid "tomato"
-msgstr ""
+msgstr "тамат"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 9f95f67a8ca..bc8d922b99e 100644
--- a/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: com.sun.star.comp.Calc.NLPSolver\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-05-23 18:26+0000\n"
+"PO-Revision-Date: 2017-06-17 16:45+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495563992.000000\n"
+"X-POOTLE-MTIME: 1497717926.000000\n"
#: Options.xhp
msgctxt ""
@@ -364,13 +364,12 @@ msgid "Size of Library"
msgstr "Памер бібліятэкі"
#: Options.xhp
-#, fuzzy
msgctxt ""
"Options.xhp\n"
"par_id060320091040136\n"
"help.text"
msgid "… defines the amount of information to store in the public library. Each individual stores knowledge there and asks for information."
-msgstr "з цаль і для."
+msgstr "… вызначае абсяг інфармацыі, што мусіць захоўвацца ў супольнай бібліятэцы. У ёй кожны захоўвае веды і запытвае звесткі."
#: Usage.xhp
msgctxt ""
@@ -381,13 +380,12 @@ msgid "Usage"
msgstr "Выкарыстанне"
#: Usage.xhp
-#, fuzzy
msgctxt ""
"Usage.xhp\n"
"bm_id0603200910434044_scalc\n"
"help.text"
msgid "<bookmark_value>Solver for Nonlinear Problems;Usage</bookmark_value>"
-msgstr "<bookmark_value> для value</bookmark_value>"
+msgstr "<bookmark_value>Вырашальнік нелінейных задач;Ужыванне</bookmark_value>"
#: Usage.xhp
msgctxt ""
diff --git a/source/be/nlpsolver/src/locale.po b/source/be/nlpsolver/src/locale.po
index f006fd25da9..d811591f701 100644
--- a/source/be/nlpsolver/src/locale.po
+++ b/source/be/nlpsolver/src/locale.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: locale\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2017-04-27 19:23+0000\n"
+"PO-Revision-Date: 2017-06-18 19:06+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493320995.000000\n"
+"X-POOTLE-MTIME: 1497812767.000000\n"
#: NLPSolverCommon_en_US.properties
#, fuzzy
@@ -171,13 +171,12 @@ msgid "PS: Mutation Probability (0-0.005)"
msgstr "Probability"
#: NLPSolverStatusDialog_en_US.properties
-#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Dialog.Caption\n"
"property.text"
msgid "Solver Status"
-msgstr "Статус"
+msgstr "Статус вырашальніка"
#: NLPSolverStatusDialog_en_US.properties
msgctxt ""
diff --git a/source/be/officecfg/registry/data/org/openoffice.po b/source/be/officecfg/registry/data/org/openoffice.po
index b3dc474221d..0b72f727913 100644
--- a/source/be/officecfg/registry/data/org/openoffice.po
+++ b/source/be/officecfg/registry/data/org/openoffice.po
@@ -3,16 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-06-18 19:47+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815222.000000\n"
#: Setup.xcu
msgctxt ""
@@ -66,7 +68,7 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Table Design"
-msgstr ""
+msgstr "Base: Распрацоўка табліцы"
#: Setup.xcu
msgctxt ""
@@ -84,7 +86,7 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Table Data View"
-msgstr ""
+msgstr "Base: Від даных табліцы"
#: Setup.xcu
msgctxt ""
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office.po b/source/be/officecfg/registry/data/org/openoffice/Office.po
index 70b6698b9c3..05554f24557 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-26 09:15+0000\n"
+"PO-Revision-Date: 2017-06-18 19:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495790157.000000\n"
+"X-POOTLE-MTIME: 1497813462.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1590,7 +1590,6 @@ msgid "Right click, left or up arrow, page up, backspace, 'P'"
msgstr "Справа улева or уверх старонак уверх P"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.b\n"
@@ -1600,7 +1599,6 @@ msgid "Previous slide, or previous effect"
msgstr "Папярэдні слайд/эфект"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.d\n"
@@ -1610,7 +1608,6 @@ msgid "Home"
msgstr "Пачатак"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.d\n"
@@ -1620,7 +1617,6 @@ msgid "First slide"
msgstr "Першы слайд"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.e\n"
@@ -1630,7 +1626,6 @@ msgid "End"
msgstr "Канец"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.e\n"
@@ -1640,17 +1635,15 @@ msgid "Last slide"
msgstr "Апошні слайд"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.g\n"
"Left\n"
"value.text"
msgid "Alt-Page Up"
-msgstr "Старонка Уверх"
+msgstr "Alt-Page Up"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.g\n"
@@ -1660,17 +1653,15 @@ msgid "Previous slide without effects"
msgstr "Папярэдні слайд без эфектаў"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.h\n"
"Left\n"
"value.text"
msgid "Alt-Page Down"
-msgstr "Старонка Уніз"
+msgstr "Alt-Page Down"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.h\n"
@@ -1695,10 +1686,9 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Blacks/Unblacks the screen"
-msgstr ""
+msgstr "Уключае/выключае чорны экран"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.k\n"
@@ -1714,7 +1704,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Whites/Unwhites the screen"
-msgstr ""
+msgstr "Уключае/выключае белы экран"
#: PresenterScreen.xcu
msgctxt ""
@@ -1723,7 +1713,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Esc, '-'"
-msgstr ""
+msgstr "Esc, '-'"
#: PresenterScreen.xcu
msgctxt ""
@@ -1822,7 +1812,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Shows the Presenter Console"
-msgstr ""
+msgstr "Паказвае кансоль прэзентара"
#: PresenterScreen.xcu
msgctxt ""
@@ -1852,14 +1842,13 @@ msgid "Ctrl-'3'"
msgstr "Ctrl-'3'"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.w\n"
"Right\n"
"value.text"
msgid "Shows the Slides Overview"
-msgstr "Слайды Агульны агляд"
+msgstr "Паказвае мініяцюры слайдаў"
#: PresenterScreen.xcu
msgctxt ""
@@ -2006,14 +1995,13 @@ msgid "CategoryID"
msgstr "CategoryID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.categories.Fields.categoryID\n"
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатэгорыі"
#: TableWizard.xcu
msgctxt ""
@@ -2052,14 +2040,13 @@ msgid "ProductID"
msgstr "ProductID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.productID\n"
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПрадукту"
#: TableWizard.xcu
msgctxt ""
@@ -2098,24 +2085,22 @@ msgid "ProdDescr"
msgstr "ProdDescr"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.categoryID\n"
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатэгорыі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.categoryID\n"
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатэгорыі"
#: TableWizard.xcu
msgctxt ""
@@ -3089,24 +3074,22 @@ msgid "ContactID"
msgstr "ContactID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.firstname\n"
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Імя"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.firstname\n"
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Імя"
#: TableWizard.xcu
msgctxt ""
@@ -3307,14 +3290,13 @@ msgid "EmailAddress"
msgstr "EmailAddress"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.emailaddress\n"
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрасЭлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -3774,27 +3756,24 @@ msgid "EmailAddr"
msgstr "EmailAddr"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.title\n"
"Name\n"
"value.text"
msgid "Title"
-msgstr "Загаловак"
+msgstr "Пасада"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.title\n"
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Загаловак"
+msgstr "Пасада"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.notes\n"
@@ -3804,7 +3783,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.notes\n"
@@ -3842,24 +3820,22 @@ msgid "EmployeeID"
msgstr "EmployeeID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.firstname\n"
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Імя"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.firstname\n"
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Імя"
#: TableWizard.xcu
#, fuzzy
@@ -3902,27 +3878,24 @@ msgid "LastName"
msgstr "LastName"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.title\n"
"Name\n"
"value.text"
msgid "Title"
-msgstr "Загаловак"
+msgstr "Пасада"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.title\n"
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Загаловак"
+msgstr "Пасада"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.department\n"
@@ -3932,7 +3905,6 @@ msgid "Department"
msgstr "Аддзел"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.department\n"
@@ -4017,7 +3989,6 @@ msgid "Extension"
msgstr "Прыстаўка"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.address\n"
@@ -4027,7 +3998,6 @@ msgid "Address"
msgstr "Адрас"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.address\n"
@@ -4037,7 +4007,6 @@ msgid "Address"
msgstr "Адрас"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.city\n"
@@ -4047,7 +4016,6 @@ msgid "City"
msgstr "Горад"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.city\n"
@@ -4346,27 +4314,24 @@ msgid "OfficeLoc"
msgstr "OfficeLoc"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.photo\n"
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.photo\n"
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.notes\n"
@@ -4376,7 +4341,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.notes\n"
@@ -4776,24 +4740,22 @@ msgid "OrderID"
msgstr "OrderID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.productID\n"
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПрадукту"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.productID\n"
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПрадукту"
#: TableWizard.xcu
msgctxt ""
@@ -4805,14 +4767,13 @@ msgid "DateSold"
msgstr "DateSold"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.datesold\n"
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "ДатаПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -4824,14 +4785,13 @@ msgid "Quantity"
msgstr "Quantity"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.quantity\n"
"ShortName\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Колькасць"
#: TableWizard.xcu
#, fuzzy
@@ -5291,7 +5251,6 @@ msgid "PaymMethID"
msgstr "PaymMethID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.notes\n"
@@ -5301,7 +5260,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.notes\n"
@@ -5407,7 +5365,6 @@ msgid "Status"
msgstr "Status"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.status\n"
@@ -5529,7 +5486,6 @@ msgid "ShipCost"
msgstr "ShipCost"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.notes\n"
@@ -5539,7 +5495,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.notes\n"
@@ -5636,24 +5591,22 @@ msgid "ProductID"
msgstr "ProductID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.quantity\n"
"Name\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Колькасць"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.quantity\n"
"ShortName\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Колькасць"
#: TableWizard.xcu
#, fuzzy
@@ -5999,7 +5952,6 @@ msgid "EmployeeID"
msgstr "EmployeeID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.status\n"
@@ -6009,7 +5961,6 @@ msgid "Status"
msgstr "Статус"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.status\n"
@@ -6028,7 +5979,6 @@ msgid "Location"
msgstr "Location"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.location\n"
@@ -6189,7 +6139,6 @@ msgid "CostPPersn"
msgstr "CostPPersn"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.notes\n"
@@ -6199,7 +6148,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.notes\n"
@@ -6429,7 +6377,6 @@ msgid "Confirmation"
msgstr "Confirmation"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.notes\n"
@@ -6439,7 +6386,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.notes\n"
@@ -6788,7 +6734,6 @@ msgid "PaymntMeth"
msgstr "PaymntMeth"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.notes\n"
@@ -6798,7 +6743,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.notes\n"
@@ -7266,7 +7210,6 @@ msgid "FrghtChrge"
msgstr "FrghtChrge"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.notes\n"
@@ -7276,7 +7219,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.notes\n"
@@ -7437,14 +7379,13 @@ msgid "Make"
msgstr "Make"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.make\n"
"ShortName\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Выраб"
#: TableWizard.xcu
msgctxt ""
@@ -7456,7 +7397,6 @@ msgid "Model"
msgstr "Мадэль"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.model\n"
@@ -7649,24 +7589,22 @@ msgid "CurrentVal"
msgstr "CurrentVal"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.comments\n"
"Name\n"
"value.text"
msgid "Comments"
-msgstr "Каментары"
+msgstr "Каментарыі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.comments\n"
"ShortName\n"
"value.text"
msgid "Comments"
-msgstr "Каментары"
+msgstr "Каментарыі"
#: TableWizard.xcu
msgctxt ""
@@ -7761,7 +7699,6 @@ msgid "Date"
msgstr "Дата"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.date\n"
@@ -7771,7 +7708,6 @@ msgid "Date"
msgstr "Дата"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.description\n"
@@ -7781,7 +7717,6 @@ msgid "Description"
msgstr "Апісанне"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.description\n"
@@ -7800,14 +7735,13 @@ msgid "Amount"
msgstr "Колькасць"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.amount\n"
"ShortName\n"
"value.text"
msgid "Amount"
-msgstr "Колькасць"
+msgstr "Сума"
#: TableWizard.xcu
msgctxt ""
@@ -7992,7 +7926,6 @@ msgid "Taxable"
msgstr "Taxable"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.notes\n"
@@ -8002,7 +7935,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.notes\n"
@@ -8040,7 +7972,6 @@ msgid "TaskID"
msgstr "TaskID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.description\n"
@@ -8050,7 +7981,6 @@ msgid "Description"
msgstr "Апісанне"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.description\n"
@@ -8099,7 +8029,6 @@ msgid "EndDate"
msgstr "EndDate"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.notes\n"
@@ -8109,7 +8038,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.notes\n"
@@ -8146,14 +8074,13 @@ msgid "EmplTaskID"
msgstr "EmplTaskID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.employeeID\n"
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацаўніка"
#: TableWizard.xcu
#, fuzzy
@@ -8195,7 +8122,6 @@ msgid "Private"
msgstr "Прыватнае"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories\n"
@@ -8313,27 +8239,24 @@ msgid "LastName"
msgstr "LastName"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.title\n"
"Name\n"
"value.text"
msgid "Title"
-msgstr "Загаловак"
+msgstr "Пасада"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.title\n"
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Загаловак"
+msgstr "Пасада"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.address\n"
@@ -8343,7 +8266,6 @@ msgid "Address"
msgstr "Адрас"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.address\n"
@@ -8353,7 +8275,6 @@ msgid "Address"
msgstr "Адрас"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.city\n"
@@ -8363,7 +8284,6 @@ msgid "City"
msgstr "Горад"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.city\n"
@@ -8513,7 +8433,6 @@ msgid "EmailAddr"
msgstr "EmailAddr"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.salutation\n"
@@ -8523,7 +8442,6 @@ msgid "Salutation"
msgstr "Форма звароту"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.salutation\n"
@@ -8612,7 +8530,6 @@ msgid "SpouseName"
msgstr "SpouseName"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.nickname\n"
@@ -8622,7 +8539,6 @@ msgid "Nickname"
msgstr "Псеўданім"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.nickname\n"
@@ -8671,27 +8587,24 @@ msgid "ChildName"
msgstr "ChildName"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.photo\n"
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.photo\n"
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.notes\n"
@@ -8701,7 +8614,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.notes\n"
@@ -8833,7 +8745,6 @@ msgid "ItemType"
msgstr "ItemType"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.description\n"
@@ -8843,7 +8754,6 @@ msgid "Description"
msgstr "Апісанне"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.description\n"
@@ -8871,7 +8781,6 @@ msgid "Manufactur"
msgstr "Manufactur"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.model\n"
@@ -8881,7 +8790,6 @@ msgid "Model"
msgstr "Мадэль"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.model\n"
@@ -9025,7 +8933,6 @@ msgid "Insured"
msgstr "Insured"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.notes\n"
@@ -9035,7 +8942,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.notes\n"
@@ -9063,14 +8969,13 @@ msgid "RecipeID"
msgstr "RecipeID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.recipeID\n"
"ShortName\n"
"value.text"
msgid "RecipeID"
-msgstr "RecipeID"
+msgstr "КодРэцэпта"
#: TableWizard.xcu
msgctxt ""
@@ -9082,7 +8987,6 @@ msgid "Name"
msgstr "Назва"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.name\n"
@@ -9092,7 +8996,6 @@ msgid "Name"
msgstr "Назва"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.description\n"
@@ -9102,7 +9005,6 @@ msgid "Description"
msgstr "Апісанне"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.description\n"
@@ -9121,7 +9023,6 @@ msgid "Source"
msgstr "Крыніца"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.source\n"
@@ -9296,7 +9197,6 @@ msgid "Utensils"
msgstr "Utensils"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.notes\n"
@@ -9306,7 +9206,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.notes\n"
@@ -9605,27 +9504,24 @@ msgid "DateWaterd"
msgstr "DateWaterd"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.photo\n"
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.photo\n"
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.notes\n"
@@ -9635,7 +9531,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.notes\n"
@@ -9663,14 +9558,13 @@ msgid "PhotoID"
msgstr "PhotoID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.photoID\n"
"ShortName\n"
"value.text"
msgid "PhotoID"
-msgstr "PhotoID"
+msgstr "КодФота"
#: TableWizard.xcu
msgctxt ""
@@ -9777,14 +9671,13 @@ msgid "Aperture"
msgstr "Aperture"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.aperture\n"
"ShortName\n"
"value.text"
msgid "Aperture"
-msgstr "Aperture"
+msgstr "Дыяфрагма"
#: TableWizard.xcu
msgctxt ""
@@ -9833,7 +9726,6 @@ msgid "Flash"
msgstr "Flash"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.flash\n"
@@ -9862,7 +9754,6 @@ msgid "PrintSize"
msgstr "PrintSize"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.notes\n"
@@ -9872,7 +9763,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.notes\n"
@@ -9891,44 +9781,40 @@ msgid "MiniatureFilms"
msgstr "MiniatureFilms"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.filmID\n"
"Name\n"
"value.text"
msgid "FilmID"
-msgstr "FilmID"
+msgstr "КодПлёнкі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.filmID\n"
"ShortName\n"
"value.text"
msgid "FilmID"
-msgstr "FilmID"
+msgstr "КодПлёнкі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.make\n"
"Name\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Выраб"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.make\n"
"ShortName\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Выраб"
#: TableWizard.xcu
msgctxt ""
@@ -10059,7 +9945,6 @@ msgid "Camera"
msgstr "Camera"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.notes\n"
@@ -10069,7 +9954,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.notes\n"
@@ -10134,14 +10018,13 @@ msgid "Genre"
msgstr "Genre"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.actress\n"
"ShortName\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
msgctxt ""
@@ -10153,14 +10036,13 @@ msgid "Actor"
msgstr "Actor"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.actor\n"
"ShortName\n"
"value.text"
msgid "Actor"
-msgstr "Actor"
+msgstr "Акцёр"
#: TableWizard.xcu
msgctxt ""
@@ -10172,14 +10054,13 @@ msgid "Director"
msgstr "Director"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.director\n"
"ShortName\n"
"value.text"
msgid "Director"
-msgstr "Director"
+msgstr "Рэжысёр"
#: TableWizard.xcu
msgctxt ""
@@ -10247,7 +10128,6 @@ msgid "Subject"
msgstr "Тэма"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.subject\n"
@@ -10266,7 +10146,6 @@ msgid "Length"
msgstr "Даўжыня"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.length\n"
@@ -10353,7 +10232,6 @@ msgid "Review"
msgstr "Review"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.notes\n"
@@ -10363,7 +10241,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.notes\n"
@@ -10382,24 +10259,22 @@ msgid "CD-Collection"
msgstr "CD-Collection"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.cdcollectionID\n"
"Name\n"
"value.text"
msgid "CollectionID"
-msgstr "CollectionID"
+msgstr "КодКалекцыі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.cdcollectionID\n"
"ShortName\n"
"value.text"
msgid "CollectnID"
-msgstr "CollectnID"
+msgstr "КодКалекцыі"
#: TableWizard.xcu
msgctxt ""
@@ -10496,44 +10371,40 @@ msgid "Producer"
msgstr "Producer"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.releaseyear\n"
"Name\n"
"value.text"
msgid "ReleaseYear"
-msgstr "ReleaseYear"
+msgstr "ГодВыпуску"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.releaseyear\n"
"ShortName\n"
"value.text"
msgid "ReleasYear"
-msgstr "ReleasYear"
+msgstr "ГодВыпуску"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.rating\n"
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рэйтынг"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.rating\n"
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рэйтынг"
#: TableWizard.xcu
msgctxt ""
@@ -10545,7 +10416,6 @@ msgid "Format"
msgstr "Format"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.format\n"
@@ -10653,7 +10523,6 @@ msgid "Review"
msgstr "Review"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.notes\n"
@@ -10663,7 +10532,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.notes\n"
@@ -10701,7 +10569,6 @@ msgid "BookID"
msgstr "BookID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.title\n"
@@ -10711,7 +10578,6 @@ msgid "Title"
msgstr "Загаловак"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.title\n"
@@ -10721,24 +10587,22 @@ msgid "Title"
msgstr "Загаловак"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.topic\n"
"Name\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.topic\n"
"ShortName\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
msgctxt ""
@@ -10750,14 +10614,13 @@ msgid "AuthorID"
msgstr "AuthorID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.authorID\n"
"ShortName\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАўтара"
#: TableWizard.xcu
msgctxt ""
@@ -10787,14 +10650,13 @@ msgid "ISBNNumber"
msgstr "ISBNNumber"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.isbnnumber\n"
"ShortName\n"
"value.text"
msgid "ISBNNumber"
-msgstr "ISBNNumber"
+msgstr "НумарISBN"
#: TableWizard.xcu
msgctxt ""
@@ -10806,7 +10668,6 @@ msgid "Publisher"
msgstr "Выдавец"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.publisher\n"
@@ -10816,24 +10677,22 @@ msgid "Publisher"
msgstr "Выдавец"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.rating\n"
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рэйтынг"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.rating\n"
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рэйтынг"
#: TableWizard.xcu
msgctxt ""
@@ -10845,14 +10704,13 @@ msgid "Translator"
msgstr "Translator"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.translator\n"
"ShortName\n"
"value.text"
msgid "Translator"
-msgstr "Translator"
+msgstr "Перакладчык"
#: TableWizard.xcu
msgctxt ""
@@ -10969,7 +10827,6 @@ msgid "EditionNo"
msgstr "EditionNo"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.notes\n"
@@ -10979,7 +10836,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.notes\n"
@@ -10998,74 +10854,67 @@ msgid "Authors"
msgstr "Authors"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.authorID\n"
"Name\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАўтара"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.authorID\n"
"ShortName\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАўтара"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.firstname\n"
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Імя"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.firstname\n"
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Імя"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.lastname\n"
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прозвішча"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.lastname\n"
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прозвішча"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.nationality\n"
"Name\n"
"value.text"
msgid "Nationality"
-msgstr "Nationality"
+msgstr "Нацыянальнасць"
#: TableWizard.xcu
msgctxt ""
@@ -11170,27 +11019,24 @@ msgid "MajrInflue"
msgstr "MajrInflue"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.photo\n"
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.photo\n"
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фота"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.notes\n"
@@ -11200,7 +11046,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.notes\n"
@@ -11311,7 +11156,6 @@ msgid "AccountTyp"
msgstr "AccountTyp"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.description\n"
@@ -11321,7 +11165,6 @@ msgid "Description"
msgstr "Апісанне"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.description\n"
@@ -11331,7 +11174,6 @@ msgid "Descrption"
msgstr "Апісанне"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.notes\n"
@@ -11341,7 +11183,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.notes\n"
@@ -11470,7 +11311,6 @@ msgid "ShareOwned"
msgstr "ShareOwned"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.investments.Fields.notes\n"
@@ -11480,7 +11320,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.investments.Fields.notes\n"
@@ -11701,7 +11540,6 @@ msgid "HoursSleep"
msgstr "HoursSleep"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.exerciselog.Fields.notes\n"
@@ -11711,7 +11549,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.exerciselog.Fields.notes\n"
@@ -11928,17 +11765,15 @@ msgid "Vitamins"
msgstr "Vitamins"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dietlog.Fields.vitamins\n"
"ShortName\n"
"value.text"
msgid "Vitamins"
-msgstr "Vitamins"
+msgstr "Вітаміны"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dietlog.Fields.notes\n"
@@ -11948,7 +11783,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dietlog.Fields.notes\n"
@@ -12018,7 +11852,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Formulas"
-msgstr ""
+msgstr "Формулы"
#: UI.xcu
msgctxt ""
@@ -12129,7 +11963,6 @@ msgid "Text"
msgstr "Тэкст"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.WriterObject.Frame.Settings\n"
@@ -12148,7 +11981,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.WriterObject.Graphic.Settings\n"
@@ -12158,7 +11990,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Calc.Settings\n"
@@ -12168,7 +11999,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Calc.Settings\n"
@@ -12178,7 +12008,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Draw.Settings\n"
@@ -12188,7 +12017,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Draw.Settings\n"
@@ -12198,7 +12026,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Chart.Settings\n"
@@ -12208,7 +12035,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Chart.Settings\n"
@@ -12218,7 +12044,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Image.Settings\n"
@@ -12228,7 +12053,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Image.Settings\n"
@@ -12238,7 +12062,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Formula.Settings\n"
@@ -12248,7 +12071,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Formula.Settings\n"
@@ -12258,7 +12080,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Impress.Settings\n"
@@ -12268,7 +12089,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.Impress.Settings\n"
@@ -12278,7 +12098,6 @@ msgid ": "
msgstr ": "
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.OLEMisc.Settings\n"
@@ -12288,7 +12107,6 @@ msgid "Illustration"
msgstr "Ілюстрацыя"
#: Writer.xcu
-#, fuzzy
msgctxt ""
"Writer.xcu\n"
"..Writer.Insert.Caption.OfficeObject.OLEMisc.Settings\n"
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index 3c60256a97e..70613d25bb8 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 20:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-18 19:50+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496780176.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497815407.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Database Object"
-msgstr ""
+msgstr "Аб'ект базы даных"
#: BaseWindowState.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Line..."
-msgstr ""
+msgstr "Ісці да радка..."
#: BasicIDECommands.xcu
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Module"
-msgstr ""
+msgstr "Модуль Бэйсіка"
#: BasicIDECommands.xcu
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Dialog"
-msgstr ""
+msgstr "Дыялог Бэйсіка"
#: BasicIDECommands.xcu
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Сцерці"
#: BasicIDECommands.xcu
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename"
-msgstr ""
+msgstr "Перайменаваць"
#: BasicIDECommands.xcu
msgctxt ""
@@ -194,10 +194,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide"
-msgstr ""
+msgstr "Схаваць"
#: BasicIDEWindowState.xcu
-#, fuzzy
msgctxt ""
"BasicIDEWindowState.xcu\n"
"..BasicIDEWindowState.UIElements.States.private:resource/popupmenu/dialog\n"
@@ -216,7 +215,6 @@ msgid "Tab Bar"
msgstr ""
#: BasicIDEWindowState.xcu
-#, fuzzy
msgctxt ""
"BasicIDEWindowState.xcu\n"
"..BasicIDEWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -271,7 +269,6 @@ msgid "Toolbox"
msgstr "Скрынка прылад"
#: BasicIDEWindowState.xcu
-#, fuzzy
msgctxt ""
"BasicIDEWindowState.xcu\n"
"..BasicIDEWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -281,7 +278,6 @@ msgid "Full Screen"
msgstr "Экран цалкам"
#: BasicIDEWindowState.xcu
-#, fuzzy
msgctxt ""
"BasicIDEWindowState.xcu\n"
"..BasicIDEWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -318,14 +314,13 @@ msgid "Delete ~Record"
msgstr "Сцерці запіс"
#: BibliographyCommands.xcu
-#, fuzzy
msgctxt ""
"BibliographyCommands.xcu\n"
"..BibliographyCommands.UserInterface.Commands..uno:Bib/InsertRecord\n"
"Label\n"
"value.text"
msgid "~Record"
-msgstr "Запіс"
+msgstr "~Запіс"
#: BibliographyCommands.xcu
msgctxt ""
@@ -337,7 +332,6 @@ msgid "~Choose Data Source..."
msgstr "Выберыце крыніцу даных..."
#: BibliographyCommands.xcu
-#, fuzzy
msgctxt ""
"BibliographyCommands.xcu\n"
"..BibliographyCommands.UserInterface.Commands..uno:Bib/source\n"
@@ -356,7 +350,6 @@ msgid "Search Key"
msgstr "Ключ пошуку"
#: BibliographyCommands.xcu
-#, fuzzy
msgctxt ""
"BibliographyCommands.xcu\n"
"..BibliographyCommands.UserInterface.Commands..uno:Bib/autoFilter\n"
@@ -372,10 +365,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset Filter"
-msgstr ""
+msgstr "Скінуць фільтр"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertObjectStarMath\n"
@@ -385,7 +377,6 @@ msgid "~Formula..."
msgstr "Формула..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ObjectMirrorVertical\n"
@@ -395,17 +386,15 @@ msgid "Flip Vertically"
msgstr "Адлюстраваць вертыкальна"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:NumberFormatType\n"
"Label\n"
"value.text"
msgid "Number Format Type"
-msgstr "Лік Фармат Тып"
+msgstr "Тып лікавага фармату"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ObjectMirrorHorizontal\n"
@@ -424,7 +413,6 @@ msgid "Trace ~Precedents"
msgstr "Сачыць за прэцэдэнтамі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ResetAttributes\n"
@@ -524,7 +512,6 @@ msgid "Insert Chart"
msgstr "Уставіць дыяграму"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FillModeTracePredescessor\n"
@@ -534,7 +521,6 @@ msgid "Trace ~Precedent"
msgstr "Сачыць за прэцэдэнтамі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FillModeRemovePredescessor\n"
@@ -544,7 +530,6 @@ msgid "~Remove Precedent"
msgstr "Выдаліць прэцэдэнты"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FillModeTraceSuccessor\n"
@@ -554,7 +539,6 @@ msgid "~Trace Dependent"
msgstr "Сачыць за залежнасцямі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FillModeRemoveSuccessor\n"
@@ -632,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Choose Themes"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -645,7 +629,6 @@ msgid "Euro Converter"
msgstr "Калькулятар Еўра"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ProtectTraceChangeMode\n"
@@ -664,7 +647,6 @@ msgid "Link to E~xternal Data..."
msgstr "Спасылка на вонкавыя даныя..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Hyphenate\n"
@@ -674,7 +656,6 @@ msgid "~Hyphenation..."
msgstr "Пераносы..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:RenameObject\n"
@@ -693,7 +674,6 @@ msgid "Input Line"
msgstr "Уведзены радок"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SelectTables\n"
@@ -721,7 +701,6 @@ msgid "Pivot Table Filter"
msgstr "Pivot Table Filter"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DataPilotFilter\n"
@@ -767,7 +746,6 @@ msgid "Last Page"
msgstr "Апошняя старонка"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ZoomIn\n"
@@ -777,7 +755,6 @@ msgid "Zoom In"
msgstr "Павялічыць"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ZoomOut\n"
@@ -814,14 +791,13 @@ msgid "Close Preview"
msgstr "Закрыць перадпаказ"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:StatusDocPos\n"
"Label\n"
"value.text"
msgid "Position in Document"
-msgstr "Position in Document"
+msgstr "Пазіцыя ў дакуменце"
#: CalcCommands.xcu
msgctxt ""
@@ -833,7 +809,6 @@ msgid "Page Format"
msgstr "Фармат старонкі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:StatusSelectionMode\n"
@@ -1086,7 +1061,6 @@ msgid "To Previous Sheet"
msgstr "Да папярэдняга аркуша"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:StarChartDialog\n"
@@ -1114,7 +1088,6 @@ msgid "To Previous Unprotected Cell"
msgstr "Да папярэдняй незасцераганай клеткі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SelectColumn\n"
@@ -1151,14 +1124,13 @@ msgid "C~onditional Formatting"
msgstr "Узгодненае фарматаванне"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ConditionalFormatDialog\n"
"Label\n"
"value.text"
msgid "Conditional Formatting: Condition"
-msgstr "Узгодненае фарматаванне"
+msgstr "Узгодненае фарматаванне: умова"
#: CalcCommands.xcu
msgctxt ""
@@ -1170,34 +1142,31 @@ msgid "Condition..."
msgstr "Умова..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n"
"Label\n"
"value.text"
msgid "Conditional Formatting: Color Scale"
-msgstr "Узгодненае фарматаванне"
+msgstr "Узгодненае фарматаванне: шкала колераў"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ColorScaleFormatDialog\n"
"ContextLabel\n"
"value.text"
msgid "Color Scale..."
-msgstr "Колер Маштаб."
+msgstr "Колерная шкала..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DataBarFormatDialog\n"
"Label\n"
"value.text"
msgid "Conditional Formatting: Data Bar"
-msgstr "Узгодненае фарматаванне"
+msgstr "Узгодненае фарматаванне: гістаграма"
#: CalcCommands.xcu
#, fuzzy
@@ -1311,7 +1280,6 @@ msgid "AutoFill Data Series: automatic"
msgstr "Аўта-запаўненне выбаркі даных: аўтаматычна"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Cancel\n"
@@ -1363,7 +1331,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Protection"
-msgstr ""
+msgstr "Засцераганне клетак"
#: CalcCommands.xcu
msgctxt ""
@@ -1372,7 +1340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Area"
-msgstr ""
+msgstr "Абсяг друку"
#: CalcCommands.xcu
msgctxt ""
@@ -1390,7 +1358,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr ""
+msgstr "Акрэсліць абсяг друку"
#: CalcCommands.xcu
msgctxt ""
@@ -1399,7 +1367,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Ачысціць"
#: CalcCommands.xcu
msgctxt ""
@@ -1408,7 +1376,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Clear"
-msgstr ""
+msgstr "Ачы~сціць"
#: CalcCommands.xcu
msgctxt ""
@@ -1426,10 +1394,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr ""
+msgstr "Правіць"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:EditPrintArea\n"
@@ -1445,7 +1412,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Edit Print Ranges"
-msgstr ""
+msgstr "Правіць абсяг друку"
#: CalcCommands.xcu
msgctxt ""
@@ -1454,7 +1421,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add"
-msgstr ""
+msgstr "Дадаць"
#: CalcCommands.xcu
msgctxt ""
@@ -1472,7 +1439,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Add Print Range"
-msgstr ""
+msgstr "Дадаць абсяг друку"
#: CalcCommands.xcu
msgctxt ""
@@ -1511,7 +1478,6 @@ msgid "Delete C~ells..."
msgstr "Сцерці клеткі..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DeleteCell\n"
@@ -1530,14 +1496,13 @@ msgid "Repeat Search"
msgstr "Паўтарыць пошук"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Remove\n"
"Label\n"
"value.text"
msgid "~Delete Sheet..."
-msgstr "Выбраць аркушы..."
+msgstr "Выняць аркушы..."
#: CalcCommands.xcu
msgctxt ""
@@ -1567,7 +1532,6 @@ msgid "Fill ~Right"
msgstr "Запоўніць управа"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FillRight\n"
@@ -1604,7 +1568,6 @@ msgid "Fill ~Left"
msgstr "Запоўніць улева"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FillLeft\n"
@@ -1804,7 +1767,6 @@ msgid "~Chi-square Test..."
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:EditHeaderAndFooter\n"
@@ -1868,7 +1830,6 @@ msgid "~Record Changes"
msgstr "Запісваць змены"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowChanges\n"
@@ -1905,24 +1866,22 @@ msgid "Show Comment"
msgstr "Show Comment"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowNote\n"
"Label\n"
"value.text"
msgid "Show Comment"
-msgstr "Паказаць каментар"
+msgstr "Паказаць каментарый"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:HideNote\n"
"Label\n"
"value.text"
msgid "Hide Comment"
-msgstr "Не паказваць Заўвага"
+msgstr "Не паказваць заўвагу"
#: CalcCommands.xcu
msgctxt ""
@@ -1970,14 +1929,13 @@ msgid "Insert Co~mment"
msgstr "Уставіц~ь заўвагу"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DeleteNote\n"
"Label\n"
"value.text"
msgid "Delete Comment"
-msgstr "Сцерці каментар"
+msgstr "Сцерці каментарый"
#: CalcCommands.xcu
msgctxt ""
@@ -2025,7 +1983,6 @@ msgid "~Normal View"
msgstr "Звычайны* пагляд"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:NormalViewMode\n"
@@ -2523,14 +2480,13 @@ msgid "~Create Names..."
msgstr "Дадаць назвы..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:CreateNames\n"
"ContextLabel\n"
"value.text"
msgid "~Create..."
-msgstr "Стварыць..."
+msgstr "~Стварыць..."
#: CalcCommands.xcu
msgctxt ""
@@ -2578,7 +2534,6 @@ msgid "Ce~lls..."
msgstr "Клеткі..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:FormatCellDialog\n"
@@ -2606,7 +2561,6 @@ msgid "~Height..."
msgstr "Вышыня..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:RowHeight\n"
@@ -2652,7 +2606,6 @@ msgid "H~ide"
msgstr "Не паказваць"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:HideRow\n"
@@ -2671,7 +2624,6 @@ msgid "~Show Rows"
msgstr "Паказваць радкі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowRow\n"
@@ -2681,7 +2633,6 @@ msgid "~Show"
msgstr "Паказваць"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowRow\n"
@@ -2709,7 +2660,6 @@ msgid "~Width..."
msgstr "Шырыня..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ColumnWidth\n"
@@ -2755,7 +2705,6 @@ msgid "~Hide"
msgstr "Не паказваць"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:HideColumn\n"
@@ -2774,7 +2723,6 @@ msgid "~Show Columns"
msgstr "Паказваць калонкі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowColumn\n"
@@ -2784,7 +2732,6 @@ msgid "~Show"
msgstr "Паказваць"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowColumn\n"
@@ -2803,7 +2750,6 @@ msgid "~Hide Sheets"
msgstr "Не паказваць аркушы"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Show\n"
@@ -2813,7 +2759,6 @@ msgid "~Show Sheet..."
msgstr "Паказваць аркушы..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
@@ -2823,7 +2768,6 @@ msgid "Merge Cells"
msgstr "Аб'яднаць клеткі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SplitCell\n"
@@ -2860,7 +2804,6 @@ msgid "~Page..."
msgstr "Старонка..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
@@ -2879,7 +2822,6 @@ msgid "Standard Text Attributes"
msgstr "Стандартныя атрыбуты тэксту"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:StandardTextAttributes\n"
@@ -2979,7 +2921,6 @@ msgid "~Delete Pivot Table"
msgstr "~Delete Pivot Table"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DeletePivotTable\n"
@@ -3067,7 +3008,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop streaming"
-msgstr ""
+msgstr "Спыніць струмень"
#: CalcCommands.xcu
msgctxt ""
@@ -3121,7 +3062,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Reset Filter"
-msgstr ""
+msgstr "С~кінуць фільтр"
#: CalcCommands.xcu
msgctxt ""
@@ -3169,7 +3110,6 @@ msgid "~Hide AutoFilter"
msgstr "Не паказваць Аўта-фільтр"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SortDescending\n"
@@ -3179,7 +3119,6 @@ msgid "Sort Descending"
msgstr "У парадку памяншэння"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SortAscending\n"
@@ -3213,17 +3152,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr ""
+msgstr "Кол_ер карткі аркуша..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SetTabBgColor\n"
"PopupLabel\n"
"value.text"
msgid "~Tab Color..."
-msgstr "~Tab Color..."
+msgstr "Кол~ер карткі..."
#: CalcCommands.xcu
msgctxt ""
@@ -3235,7 +3173,6 @@ msgid "Tab Color"
msgstr "Tab Color"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Move\n"
@@ -3272,7 +3209,6 @@ msgid "Insert Sheet at End..."
msgstr "Уставіць аркуш у канцы..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AlignLeft\n"
@@ -3282,7 +3218,6 @@ msgid "Align Left"
msgstr "Раўнаванне злева"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AlignRight\n"
@@ -3302,7 +3237,6 @@ msgid "Center Horizontally"
msgstr "Center Horizontal"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AlignBlock\n"
@@ -3312,7 +3246,6 @@ msgid "Justified"
msgstr "Да шырыні"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AlignTop\n"
@@ -3322,7 +3255,6 @@ msgid "Align Top"
msgstr "Раўнаванне зверху"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AlignBottom\n"
@@ -3359,7 +3291,6 @@ msgid "Redraw Chart"
msgstr "Перарысаваць дыяграму"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ToggleAnchorType\n"
@@ -3369,7 +3300,6 @@ msgid "Change Anchor"
msgstr "Змяніць мацаванне"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:NumberFormatMenu\n"
@@ -3385,7 +3315,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Валюта"
#: CalcCommands.xcu
msgctxt ""
@@ -3550,7 +3480,6 @@ msgid "Edit Lin~ks..."
msgstr "Правіць спасылкі..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
@@ -3578,7 +3507,6 @@ msgid "R~ight-To-Left"
msgstr "Справа-налева"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SheetRightToLeft\n"
@@ -3597,7 +3525,6 @@ msgid "Anchor: To P~age"
msgstr "Мацаванне: да старонкі"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SetAnchorToPage\n"
@@ -3688,7 +3615,6 @@ msgid "Document Title"
msgstr "Загаловак дакумента"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertFieldDateVariable\n"
@@ -3770,7 +3696,6 @@ msgid "F~ill Cells"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:CellContentsMenu\n"
@@ -3789,14 +3714,13 @@ msgid "~Named Ranges and Expressions"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:EditAnnotation\n"
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr "Наступны каментар"
+msgstr "Змяніць каментарый"
#: CalcCommands.xcu
msgctxt ""
@@ -3826,7 +3750,6 @@ msgid "More ~Filters"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:SendTo\n"
@@ -3882,7 +3805,6 @@ msgid "Colu~mns"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:SheetMenu\n"
@@ -3910,7 +3832,6 @@ msgid "M~erge Cells"
msgstr "M~erge Cells"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PrintRangesMenu\n"
@@ -4001,17 +3922,15 @@ msgid "Export as Image"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:EditShapeHyperlink\n"
"Label\n"
"value.text"
msgid "Edit Hyperlink"
-msgstr "Правіць Сеціўная спасылка"
+msgstr "Правіць сеціўную спасылку"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:DeleteShapeHyperlink\n"
@@ -4039,7 +3958,6 @@ msgid "Paste Only Formula"
msgstr "Уставіць толькі формулы"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteOnlyFormula\n"
@@ -4111,8 +4029,124 @@ msgctxt ""
msgid "~Insert..."
msgstr "Устаўка..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/audit\n"
@@ -4122,7 +4156,6 @@ msgid "Detective"
msgstr "Дэтэктыў"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/cell\n"
@@ -4141,7 +4174,6 @@ msgid "Cell Edit"
msgstr ""
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/chart\n"
@@ -4178,7 +4210,6 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -4197,7 +4228,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -4226,7 +4256,6 @@ msgid "Notebookbar"
msgstr ""
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -4264,14 +4293,13 @@ msgid "Print Preview"
msgstr ""
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/rowheader\n"
"UIName\n"
"value.text"
msgid "Row Header"
-msgstr "Да верхняга калантытула"
+msgstr "Загаловак радка"
#: CalcWindowState.xcu
msgctxt ""
@@ -4292,14 +4320,13 @@ msgid "Image Filter"
msgstr ""
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/linesbar\n"
"UIName\n"
"value.text"
msgid "Lines"
-msgstr "Радкі"
+msgstr "Лініі"
#: CalcWindowState.xcu
msgctxt ""
@@ -4347,7 +4374,6 @@ msgid "Print Preview"
msgstr ""
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -4366,7 +4392,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -4376,7 +4401,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -4386,7 +4410,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -4396,7 +4419,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -4406,7 +4428,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -4416,7 +4437,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/formatobjectbar\n"
@@ -4444,7 +4464,6 @@ msgid "Insert Cell"
msgstr "Уставіць клетку"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -4454,7 +4473,6 @@ msgid "Standard"
msgstr "Стандартна"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -4482,7 +4500,6 @@ msgid "Tools"
msgstr "Прылады"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -4492,7 +4509,6 @@ msgid "Full Screen"
msgstr "Экран цалкам"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -4511,7 +4527,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -4521,7 +4536,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -4531,14 +4545,13 @@ msgid "Color"
msgstr "Колер"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: CalcWindowState.xcu
msgctxt ""
@@ -4550,7 +4563,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя фігуры"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -4560,7 +4572,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -4570,7 +4581,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -4589,7 +4599,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -4599,7 +4608,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -4744,14 +4752,13 @@ msgid "Format Selection..."
msgstr "Format Selection..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:Legend\n"
"Label\n"
"value.text"
msgid "Format Legend"
-msgstr "Format Legend..."
+msgstr "Фармат легенды"
#: ChartCommands.xcu
msgctxt ""
@@ -4808,14 +4815,13 @@ msgid "~Data Ranges..."
msgstr "~Data Ranges..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:DiagramData\n"
"Label\n"
"value.text"
msgid "~Data Table..."
-msgstr "Меткі на даных..."
+msgstr "Табліца даных..."
#: ChartCommands.xcu
msgctxt ""
@@ -4827,7 +4833,6 @@ msgid "~3D View..."
msgstr "Від 3D..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:Forward\n"
@@ -4837,7 +4842,6 @@ msgid "Bring ~Forward"
msgstr "Бліжэй"
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:Backward\n"
@@ -5638,7 +5642,6 @@ msgid "Number of lines in combination chart"
msgstr "Колькасць радкоў у камбінаванай дыяграме"
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:TextAttributes\n"
@@ -5648,7 +5651,6 @@ msgid "Te~xt..."
msgstr "Тэкст..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:ObjectTitleDescription\n"
@@ -5658,7 +5660,6 @@ msgid "Description..."
msgstr "Апісанне..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:RenameObject\n"
@@ -5668,7 +5669,6 @@ msgid "Name..."
msgstr "Назва..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:LineArrowEnd\n"
@@ -5732,7 +5732,6 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: ChartWindowState.xcu
-#, fuzzy
msgctxt ""
"ChartWindowState.xcu\n"
"..ChartWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -5742,7 +5741,6 @@ msgid "Standard"
msgstr "Стандартна"
#: ChartWindowState.xcu
-#, fuzzy
msgctxt ""
"ChartWindowState.xcu\n"
"..ChartWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -5779,7 +5777,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: ChartWindowState.xcu
-#, fuzzy
msgctxt ""
"ChartWindowState.xcu\n"
"..ChartWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -5789,7 +5786,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: ChartWindowState.xcu
-#, fuzzy
msgctxt ""
"ChartWindowState.xcu\n"
"..ChartWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -5799,7 +5795,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: ChartWindowState.xcu
-#, fuzzy
msgctxt ""
"ChartWindowState.xcu\n"
"..ChartWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -5809,7 +5804,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: ChartWindowState.xcu
-#, fuzzy
msgctxt ""
"ChartWindowState.xcu\n"
"..ChartWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -5825,7 +5819,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Explorer"
-msgstr ""
+msgstr "Праваднік"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -5879,10 +5873,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Report"
-msgstr ""
+msgstr "Справаздача"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -5892,7 +5885,6 @@ msgid "Standard"
msgstr "Стандартна"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/Formatting\n"
@@ -5902,7 +5894,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/reportcontrols\n"
@@ -5921,7 +5912,6 @@ msgid "Drawing objects"
msgstr "Толькі нарысаванае"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
@@ -5931,7 +5921,6 @@ msgid "Align"
msgstr "Раўнаванне"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/sectionalignmentbar\n"
@@ -5941,7 +5930,6 @@ msgid "Align at Section"
msgstr "Раўнаванне на* Раздзел"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/sectionshrinkbar\n"
@@ -5951,14 +5939,13 @@ msgid "Shrink at Section"
msgstr "Сціснуць на* Раздзел"
#: DbReportWindowState.xcu
-#, fuzzy
msgctxt ""
"DbReportWindowState.xcu\n"
".DbReportWindowState.UIElements.States.private:resource/toolbar/resizebar\n"
"UIName\n"
"value.text"
msgid "Object Resizing"
-msgstr "Аб'ект"
+msgstr "Змена памераў аб'екта"
#: DbTableDataWindowState.xcu
msgctxt ""
@@ -6066,17 +6053,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Limit"
-msgstr ""
+msgstr "Абмежаванне"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryPropertiesDialog\n"
"Label\n"
"value.text"
msgid "Query Properties"
-msgstr "Зварот Уласцівасці"
+msgstr "Уласцівасці звароту"
#: DbuCommands.xcu
msgctxt ""
@@ -6088,7 +6074,6 @@ msgid "Paste ~Special..."
msgstr "Уставіць спец~ыяльнае..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBDelete\n"
@@ -6143,7 +6128,6 @@ msgid "Open..."
msgstr "Адкрыць..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBTableDelete\n"
@@ -6153,7 +6137,6 @@ msgid "Delete"
msgstr "Сцерці"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBTableRename\n"
@@ -6163,7 +6146,6 @@ msgid "Rename..."
msgstr "Назваць..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBTableEdit\n"
@@ -6182,7 +6164,6 @@ msgid "Open Database Object..."
msgstr "Адкрыць аб'ект базы даных..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryDelete\n"
@@ -6192,7 +6173,6 @@ msgid "Delete"
msgstr "Сцерці"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryRename\n"
@@ -6202,7 +6182,6 @@ msgid "Rename..."
msgstr "Назваць..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryEdit\n"
@@ -6221,7 +6200,6 @@ msgid "Open Database Object..."
msgstr "Адкрыць аб'ект базы даных..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBFormDelete\n"
@@ -6231,7 +6209,6 @@ msgid "Delete"
msgstr "Сцерці"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBFormRename\n"
@@ -6241,7 +6218,6 @@ msgid "Rename..."
msgstr "Назваць..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBFormEdit\n"
@@ -6260,7 +6236,6 @@ msgid "Open Database Object..."
msgstr "Адкрыць аб'ект базы даных..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBReportDelete\n"
@@ -6270,7 +6245,6 @@ msgid "Delete"
msgstr "Сцерці"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBReportRename\n"
@@ -6280,7 +6254,6 @@ msgid "Rename..."
msgstr "Назваць..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBReportEdit\n"
@@ -6335,7 +6308,6 @@ msgid "Query Wizard..."
msgstr "Майстар Зваротаў..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBNewFormAutoPilotWithPreSelection\n"
@@ -6351,7 +6323,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr ""
+msgstr "Справаздача..."
#: DbuCommands.xcu
msgctxt ""
@@ -6363,7 +6335,6 @@ msgid "Report Wizard..."
msgstr "Майстар Справаздач..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBNewReportAutoPilotWithPreSelection\n"
@@ -6514,7 +6485,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Query (Design View)"
-msgstr ""
+msgstr "Новы зварот (лад распрацоўкі)"
#: DbuCommands.xcu
msgctxt ""
@@ -6532,10 +6503,9 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New Query (~SQL View)"
-msgstr ""
+msgstr "Новы зварот (лад SQL)"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBNewTable\n"
@@ -6551,7 +6521,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Table Design"
-msgstr ""
+msgstr "Стварыць табліцу (рэжым распрацоўкі)"
#: DbuCommands.xcu
msgctxt ""
@@ -6569,7 +6539,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~View Design"
-msgstr ""
+msgstr "Новы від"
#: DbuCommands.xcu
msgctxt ""
@@ -6623,7 +6593,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Tables"
-msgstr "Refresh Tables"
+msgstr "Абнавіць табліцы"
#: DbuCommands.xcu
msgctxt ""
@@ -6653,7 +6623,6 @@ msgid "Edit Data"
msgstr "Edit Data"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DSBFormLetter\n"
@@ -6709,7 +6678,6 @@ msgid "Report to Text Document..."
msgstr "Справаздача ў тэкставы дакумент..."
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:FormSlots/deleteRecord\n"
@@ -6719,7 +6687,6 @@ msgid "Delete ~Record"
msgstr "Сцерці запіс"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:FormSlots/insertRecord\n"
@@ -6729,7 +6696,6 @@ msgid "~Record"
msgstr "Запіс"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryPreview\n"
@@ -6745,7 +6711,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rebuild"
-msgstr ""
+msgstr "Перабудаваць"
#: DbuCommands.xcu
msgctxt ""
@@ -6772,7 +6738,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Disco~nnect"
-msgstr ""
+msgstr "Адлучыцца"
#: DbuCommands.xcu
msgctxt ""
@@ -6781,7 +6747,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Registered databases ..."
-msgstr ""
+msgstr "Зарэгістраваныя базы даных..."
#: DbuCommands.xcu
msgctxt ""
@@ -6811,7 +6777,6 @@ msgid "Sort"
msgstr "Парадкаваць"
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Popups..uno:DBPreview\n"
@@ -6839,7 +6804,6 @@ msgid "Black & White View"
msgstr "Чорна-белы від"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMenu\n"
@@ -6849,7 +6813,6 @@ msgid "S~lide"
msgstr "Слайд"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
@@ -6859,14 +6822,13 @@ msgid "Navigate"
msgstr "Рух"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
msgid "Move"
-msgstr "Mode"
+msgstr "Перанесці"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6878,7 +6840,6 @@ msgid "Rename Page"
msgstr "Назваць старонку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:RenameSlide\n"
@@ -6894,7 +6855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rename Layer"
-msgstr ""
+msgstr "Назваць слой"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6903,7 +6864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from ~First Slide"
-msgstr ""
+msgstr "Пачаць з першага слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6912,7 +6873,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from C~urrent Slide"
-msgstr ""
+msgstr "Пачаць з цяперашняга слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6921,17 +6882,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump to Last Edited Slide"
-msgstr ""
+msgstr "Перайсці да апошняга змененага слайда"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Remote\n"
"Label\n"
"value.text"
msgid "Impress R~emote"
-msgstr "R"
+msgstr "Пульт ДК Impress"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6943,14 +6903,13 @@ msgid "~Rehearse Timings"
msgstr "Выпрабаваць часавыя параметры"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PhotoAlbumDialog\n"
"Label\n"
"value.text"
msgid "Photo Album"
-msgstr "Photo"
+msgstr "Фотаальбом"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6980,7 +6939,6 @@ msgid "~Hide Slide"
msgstr "Не паказваць слайд"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:TextAttributes\n"
@@ -6996,7 +6954,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slides per Row"
-msgstr ""
+msgstr "Слайдаў у радку"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7027,7 +6985,6 @@ msgid "3D Objects"
msgstr "3D Objects"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Cube\n"
@@ -7046,7 +7003,6 @@ msgid "Sphere"
msgstr "Sphere"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Cylinder\n"
@@ -7306,10 +7262,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Анімацыя"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n"
@@ -7364,14 +7319,13 @@ msgid "Duplicate Page"
msgstr "Дубліраваць старонку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:DuplicateSlide\n"
"Label\n"
"value.text"
msgid "Duplicate ~Slide"
-msgstr "Дублікаваць Слайд"
+msgstr "Дублікаваць слайд"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7407,7 +7361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Шаблон слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7416,7 +7370,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Шаблон заўвагі"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7479,7 +7433,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Tit~le"
-msgstr ""
+msgstr "Загаловак старонкі"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7491,7 +7445,6 @@ msgid "Page ~Count"
msgstr "Колькасць ~старонак"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
@@ -7510,7 +7463,6 @@ msgid "~File Name"
msgstr "Назва ф~айла"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertAuthorField\n"
@@ -7529,7 +7481,6 @@ msgid "~Custom Slide Show..."
msgstr "Адмысловы паказ слайдаў..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:OutputQualityColor\n"
@@ -7557,7 +7508,6 @@ msgid "~Black and White"
msgstr "Чорна-белы"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PreviewQualityColor\n"
@@ -7567,7 +7517,6 @@ msgid "~Color"
msgstr "Колер"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PreviewQualityGrayscale\n"
@@ -7577,7 +7526,6 @@ msgid "~Grayscale"
msgstr "Шэрыя адценні"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PreviewQualityBlackWhite\n"
@@ -7632,7 +7580,6 @@ msgid "To C~ontour"
msgstr "У контур"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:EditHyperlink\n"
@@ -7684,10 +7631,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Slide"
-msgstr ""
+msgstr "Фармат слайда"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideSetup\n"
@@ -7715,7 +7661,6 @@ msgid "Duplicat~e..."
msgstr "Дублікаваць..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
@@ -7770,7 +7715,6 @@ msgid "Sli~de Sorter"
msgstr "Парадкаванне слайдаў"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PreviewQualityContrast\n"
@@ -7795,7 +7739,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Slide"
-msgstr ""
+msgstr "С~тварыць слайд"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7852,7 +7796,6 @@ msgid "Connector"
msgstr "Злучальнік"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Forward\n"
@@ -7862,7 +7805,6 @@ msgid "Bring ~Forward"
msgstr "Бліжэй"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Backward\n"
@@ -7917,14 +7859,13 @@ msgid "~Insert Snap Point/Line..."
msgstr "Уставіць пункт/лінію прыцягнення..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n"
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr "Лінейка"
+msgstr "Лінейкі"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7933,27 +7874,25 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "View ~Rulers"
-msgstr ""
+msgstr "Паказаць лінейкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertLayer\n"
"Label\n"
"value.text"
msgid "Insert Layer"
-msgstr "Уставіць меткі"
+msgstr "Уставіць пласт"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertLayer\n"
"ContextLabel\n"
"value.text"
msgid "~Layer..."
-msgstr "Слой..."
+msgstr "Пласт..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7965,14 +7904,13 @@ msgid "~Insert Layer..."
msgstr "Уставіць пласт..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n"
"Label\n"
"value.text"
msgid "Slide ~Layout"
-msgstr "Slide Layout"
+msgstr "Выклад слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7981,10 +7919,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Modify Layer"
-msgstr ""
+msgstr "Правіць слой"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyLayer\n"
@@ -8000,10 +7937,9 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Modify Layer..."
-msgstr ""
+msgstr "Правіц~ь слой..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PageMode\n"
@@ -8058,7 +7994,6 @@ msgid "Time"
msgstr "Час"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Connector\n"
@@ -8173,20 +8108,18 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Slide"
-msgstr ""
+msgstr "Сцерці слайд"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:DeleteLayer\n"
"Label\n"
"value.text"
msgid "Delete Layer"
-msgstr "Сцерці майстра"
+msgstr "Сцерці слой"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:Dismantle\n"
@@ -8268,7 +8201,6 @@ msgid "Effects"
msgstr "Эфекты"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InteractiveTransparence\n"
@@ -8386,7 +8318,6 @@ msgid "Straight Connector"
msgstr "Straight Connector"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:RectangleToolbox\n"
@@ -8405,7 +8336,6 @@ msgid "Straight Connector starts with Arrow"
msgstr "Просты злучальнік з стрэлкай у пачатку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:EllipseToolbox\n"
@@ -8710,7 +8640,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Replace..."
-msgstr ""
+msgstr "Замяніць..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8719,7 +8649,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Co~mpress..."
-msgstr ""
+msgstr "Сціснуц~ь..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8728,7 +8658,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Background Image..."
-msgstr ""
+msgstr "Задаць фонавы відарыс..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8764,7 +8694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~dit Style..."
-msgstr ""
+msgstr "Змяніць стыль..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8866,14 +8796,13 @@ msgid "Wor~kspace"
msgstr "Майстэрня"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:MirrorMenu\n"
"Label\n"
"value.text"
msgid "~Flip"
-msgstr "Адлюстраванне"
+msgstr "~Адлюстраванне"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8894,7 +8823,6 @@ msgid "La~yer"
msgstr "Слой"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:ConvertMenu\n"
@@ -8922,7 +8850,6 @@ msgid "~Color/Grayscale"
msgstr "Колеры"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SlideShowMenu\n"
@@ -8932,17 +8859,15 @@ msgid "~Slide Show"
msgstr "Паказ слайдаў"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:GroupMenu\n"
"Label\n"
"value.text"
msgid "~Group"
-msgstr "Згрупаваць"
+msgstr "Згру~паваць"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SendMenu\n"
@@ -8952,7 +8877,6 @@ msgid "Sen~d"
msgstr "Адаслаць"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:TemplatesMenu\n"
@@ -8971,14 +8895,13 @@ msgid "~Snap Lines"
msgstr "Лініі прыцягнення"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:MasterPageMenu\n"
"Label\n"
"value.text"
msgid "~Master"
-msgstr "Майстры"
+msgstr "Майстар"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8996,7 +8919,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master Elements..."
-msgstr ""
+msgstr "Майстар-элементы..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9044,7 +8967,6 @@ msgid "Date and ~Time..."
msgstr "Дата і час..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:NormalMultiPaneGUI\n"
@@ -9054,7 +8976,6 @@ msgid "~Normal"
msgstr "Нармальны"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SlideSorterMultiPaneGUI\n"
@@ -9070,7 +8991,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Панэль слайдаў"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9091,7 +9012,6 @@ msgid "Tas~k Pane"
msgstr "Панель задач"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
@@ -9101,7 +9021,6 @@ msgid "Merge Cells"
msgstr "Аб'яднаць клеткі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
@@ -9111,7 +9030,6 @@ msgid "Split Cells"
msgstr "Падзяліць клеткі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:OptimizeTable\n"
@@ -9130,7 +9048,6 @@ msgid "Distribute Columns Evenly"
msgstr "Размеркаваць калонкі раўнамерна"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DistributeRows\n"
@@ -9176,7 +9093,6 @@ msgid "Insert Rows"
msgstr "Уставіць радкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertRowDialog\n"
@@ -9231,7 +9147,6 @@ msgid "Insert Columns"
msgstr "Уставіць калонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertColumnDialog\n"
@@ -9250,7 +9165,6 @@ msgid "Insert Columns..."
msgstr "Уставіць калонкі..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
@@ -9260,7 +9174,6 @@ msgid "Delete Row"
msgstr "Сцерці радок"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
@@ -9270,7 +9183,6 @@ msgid "~Rows"
msgstr "Радкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
@@ -9280,7 +9192,6 @@ msgid "Delete Row"
msgstr "Сцерці радок"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
@@ -9290,7 +9201,6 @@ msgid "Delete Column"
msgstr "Сцерці калонку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
@@ -9300,7 +9210,6 @@ msgid "~Columns"
msgstr "Калонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
@@ -9310,7 +9219,6 @@ msgid "Delete Column"
msgstr "Сцерці калонку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SelectTable\n"
@@ -9320,7 +9228,6 @@ msgid "Select Table"
msgstr "Пазначыць табліцу"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SelectTable\n"
@@ -9330,7 +9237,6 @@ msgid "~Table"
msgstr "Табліца"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:EntireColumn\n"
@@ -9340,7 +9246,6 @@ msgid "Select Column"
msgstr "Пазначыць калонку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:EntireColumn\n"
@@ -9350,7 +9255,6 @@ msgid "~Columns"
msgstr "Калонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:EntireColumn\n"
@@ -9360,7 +9264,6 @@ msgid "Select Column"
msgstr "Пазначыць калонку"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:EntireRow\n"
@@ -9370,7 +9273,6 @@ msgid "Select Rows"
msgstr "Пазначыць радкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:EntireRow\n"
@@ -9380,7 +9282,6 @@ msgid "~Rows"
msgstr "Радкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:EntireRow\n"
@@ -9390,7 +9291,6 @@ msgid "Select Rows"
msgstr "Пазначыць радкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:TableDialog\n"
@@ -9400,7 +9300,6 @@ msgid "Ta~ble Properties..."
msgstr "Уласцівасці табліцы..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:AutoSum\n"
@@ -9410,7 +9309,6 @@ msgid "Sum"
msgstr "Сума"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:TableSort\n"
@@ -9420,7 +9318,6 @@ msgid "So~rt..."
msgstr "Парадкаваць..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertTable\n"
@@ -9439,7 +9336,6 @@ msgid "Double Underline "
msgstr "Double Underline "
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
@@ -9530,24 +9426,22 @@ msgid "To First Page"
msgstr "Да першай старонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:FirstSlide\n"
"Label\n"
"value.text"
msgid "Go to First Slide"
-msgstr "Першая старонка"
+msgstr "Да першага слайду"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:FirstSlide\n"
"ContextLabel\n"
"value.text"
msgid "To First Slide"
-msgstr "Першая старонка"
+msgstr "Да першага слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9568,24 +9462,22 @@ msgid "To Previous Page"
msgstr "Да папярэдняй старонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:PreviousSlide\n"
"Label\n"
"value.text"
msgid "Go to Previous Slide"
-msgstr "Да папярэдняга аркуша"
+msgstr "Да папярэдняга слайда"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:PreviousSlide\n"
"ContextLabel\n"
"value.text"
msgid "To Previous Slide"
-msgstr "Да папярэдняга аркуша"
+msgstr "Да папярэдняга слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9606,24 +9498,22 @@ msgid "To Next Page"
msgstr "Да наступнай старонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:NextSlide\n"
"Label\n"
"value.text"
msgid "Go to Next Slide"
-msgstr "Першая старонка"
+msgstr "Да наступнага слайда"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:NextSlide\n"
"ContextLabel\n"
"value.text"
msgid "To Next Slide"
-msgstr "Першая старонка"
+msgstr "Да наступнага слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9644,24 +9534,22 @@ msgid "To Last Page"
msgstr "Да апошняй старонкі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:LastSlide\n"
"Label\n"
"value.text"
msgid "Go to Last Slide"
-msgstr "Першая старонка"
+msgstr "Да апошняга слайда"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:LastSlide\n"
"ContextLabel\n"
"value.text"
msgid "To Last Slide"
-msgstr "Першая старонка"
+msgstr "Да апошняга слайда"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9688,7 +9576,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide to Start"
-msgstr ""
+msgstr "Перанесці слайд у пачатак"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9697,7 +9585,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide to Start"
-msgstr ""
+msgstr "Слайд у пачатак"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9706,17 +9594,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page Up"
-msgstr ""
+msgstr "Перасунуць старонку ўгору"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:MovePageUp\n"
"ContextLabel\n"
"value.text"
msgid "Page Up"
-msgstr "Page Up"
+msgstr "Старонку ўгору"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9725,7 +9612,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide Up"
-msgstr ""
+msgstr "Перасунуць слайд угору"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9734,7 +9621,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Up"
-msgstr ""
+msgstr "Слайд угору"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9743,17 +9630,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page Down"
-msgstr ""
+msgstr "Пасунуць старонку ўніз"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:MovePageDown\n"
"ContextLabel\n"
"value.text"
msgid "Page Down"
-msgstr "Page Down"
+msgstr "Старонку ўніз"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9762,7 +9648,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide Down"
-msgstr ""
+msgstr "Перанесці слайд уніз"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9771,7 +9657,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Down"
-msgstr ""
+msgstr "Слайд уніз"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9780,7 +9666,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page to End"
-msgstr ""
+msgstr "Перанесці старонку ў канец"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9789,7 +9675,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page to End"
-msgstr ""
+msgstr "Старонку ў канец"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9798,7 +9684,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide to End"
-msgstr ""
+msgstr "Перанесці слайд у канец"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9807,7 +9693,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide to End"
-msgstr ""
+msgstr "Слайд у канец"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9816,7 +9702,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Blank Slide"
-msgstr ""
+msgstr "Пусты слайд"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9825,7 +9711,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Only"
-msgstr ""
+msgstr "Толькі загаловак"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9834,7 +9720,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Тытульны слайд"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9954,17 +9840,15 @@ msgid "Title, 2 Vertical Text, Clipart"
msgstr ""
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SlideLayoutMenu\n"
"Label\n"
"value.text"
msgid "Slide Layout"
-msgstr "Slide Layout"
+msgstr "Выклад слайда"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:PageMenu\n"
@@ -9983,7 +9867,6 @@ msgid "Slid~e Features"
msgstr ""
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:CellMenu\n"
@@ -9993,7 +9876,6 @@ msgid "~Cell"
msgstr "Клетка"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:RowMenu\n"
@@ -10003,7 +9885,6 @@ msgid "~Row"
msgstr "Радок"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:ColumnMenu\n"
@@ -10019,7 +9900,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Presentation ~Object..."
-msgstr ""
+msgstr "Аб'ект прэзентацыі..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10028,17 +9909,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hanging Indent"
-msgstr ""
+msgstr "Тэкст галоўны з выступам"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/3dobject\n"
"UIName\n"
"value.text"
msgid "3D Object"
-msgstr "3D Objects"
+msgstr "Трохвымерны аб'ект"
#: DrawWindowState.xcu
msgctxt ""
@@ -10047,7 +9927,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene"
-msgstr ""
+msgstr "Трохвымерная сцэна"
#: DrawWindowState.xcu
msgctxt ""
@@ -10056,7 +9936,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene (group)"
-msgstr ""
+msgstr "Трохвымерная сцэна (група)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10068,7 +9948,6 @@ msgid "Connector/Freeform Line"
msgstr ""
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/curve\n"
@@ -10096,7 +9975,6 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -10115,7 +9993,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/gluepoint\n"
@@ -10125,7 +10002,6 @@ msgid "Glue Point"
msgstr "Клейкія пункты"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -10135,7 +10011,6 @@ msgid "Image"
msgstr "Выява"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/group\n"
@@ -10163,7 +10038,6 @@ msgid "Line/Arrow"
msgstr ""
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/measure\n"
@@ -10173,14 +10047,13 @@ msgid "Dimension Line"
msgstr "Мерная лінія"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Мультымедыя"
#: DrawWindowState.xcu
msgctxt ""
@@ -10189,10 +10062,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Multiple Selection"
-msgstr ""
+msgstr "Множнае вылучэнне"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -10247,7 +10119,6 @@ msgid "Page Master Pane (no selection)"
msgstr ""
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -10275,7 +10146,6 @@ msgid "Text Box (drawing)"
msgstr ""
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -10303,7 +10173,6 @@ msgid "Options"
msgstr "Настаўленні"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -10313,7 +10182,6 @@ msgid "Standard"
msgstr "Стандартна"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -10350,14 +10218,13 @@ msgid "3D-Objects"
msgstr "Аб'екты 3D"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: DrawWindowState.xcu
msgctxt ""
@@ -10369,7 +10236,6 @@ msgid "Arrows"
msgstr "Arrows"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -10403,10 +10269,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Circles and Ovals"
-msgstr ""
+msgstr "Састарэлыя акружыны і авалы"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -10434,7 +10299,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -10444,7 +10308,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -10454,7 +10317,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -10464,7 +10326,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -10474,7 +10335,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -10484,7 +10344,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/gluepointsobjectbar\n"
@@ -10500,7 +10359,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image Filter"
-msgstr ""
+msgstr "Фільтр відарысаў"
#: DrawWindowState.xcu
msgctxt ""
@@ -10536,7 +10395,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Rectangles"
-msgstr ""
+msgstr "Састарэлыя прамавугольнікі"
#: DrawWindowState.xcu
msgctxt ""
@@ -10557,7 +10416,6 @@ msgid "Text Formatting"
msgstr "Фарматаванне тэксту"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -10585,7 +10443,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя фігуры"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -10595,7 +10452,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -10614,7 +10470,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -10624,7 +10479,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -10634,7 +10488,6 @@ msgid "Stars and Banners"
msgstr "Зоркі і сцягі"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -10644,7 +10497,6 @@ msgid "Full Screen"
msgstr "Экран цалкам"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -10654,7 +10506,6 @@ msgid "Standard (Viewing Mode)"
msgstr "Стандартна (рэжым аглядання)"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -10664,7 +10515,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -10692,7 +10542,6 @@ msgid "Master View"
msgstr "Від: майстар-элементы"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/optimizetablebar\n"
@@ -10747,7 +10596,6 @@ msgid "Checkerboard"
msgstr "Шахматная дошка"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-entrance-circle\n"
@@ -10763,7 +10611,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Вертыкальны авал"
#: Effects.xcu
msgctxt ""
@@ -10775,14 +10623,13 @@ msgid "Fly in Slow"
msgstr "Павольнае ўлятанне ўнутр"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-entrance-diamond\n"
"Label\n"
"value.text"
msgid "Diamond"
-msgstr "Дыямант"
+msgstr "Ромб"
#: Effects.xcu
msgctxt ""
@@ -10911,7 +10758,6 @@ msgid "Wipe"
msgstr "Выціранне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-entrance-zoom\n"
@@ -11128,7 +10974,6 @@ msgid "Magnify"
msgstr "Павелічальнае шкло"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-entrance-curve-up\n"
@@ -11165,7 +11010,6 @@ msgid "Expand"
msgstr "Распаўсюд"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-entrance-flip\n"
@@ -11226,7 +11070,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Font Style"
-msgstr "Змена стыля шрыфту"
+msgstr "Змена стылю шрыфту"
#: Effects.xcu
msgctxt ""
@@ -11256,7 +11100,6 @@ msgid "Spin"
msgstr "Вярчэнне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-emphasis-transparency\n"
@@ -11455,7 +11298,6 @@ msgid "Bold Reveal"
msgstr "Выразнае выяўленне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-emphasis-wave\n"
@@ -11465,7 +11307,6 @@ msgid "Wave"
msgstr "Хваля"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-venetian-blinds\n"
@@ -11475,7 +11316,6 @@ msgid "Venetian Blinds"
msgstr "Венецыянскія ваканніцы"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-box\n"
@@ -11485,7 +11325,6 @@ msgid "Box"
msgstr "Скрыня"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-checkerboard\n"
@@ -11495,7 +11334,6 @@ msgid "Checkerboard"
msgstr "Шахматная дошка"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-circle\n"
@@ -11514,14 +11352,13 @@ msgid "Crawl Out"
msgstr "Выпаўзанне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-diamond\n"
"Label\n"
"value.text"
msgid "Diamond"
-msgstr "Дыямант"
+msgstr "Ромб"
#: Effects.xcu
msgctxt ""
@@ -11542,7 +11379,6 @@ msgid "Dissolve"
msgstr "Разрэджванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-flash-once\n"
@@ -11570,7 +11406,6 @@ msgid "Peek Out"
msgstr "Вызіранне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-plus\n"
@@ -11580,7 +11415,6 @@ msgid "Plus"
msgstr "Плюс"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-random-bars\n"
@@ -11590,7 +11424,6 @@ msgid "Random Bars"
msgstr "Беспарадкавыя брусы"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-random\n"
@@ -11600,7 +11433,6 @@ msgid "Random Effects"
msgstr "Выпадкова выбраныя эфекты"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-split\n"
@@ -11610,7 +11442,6 @@ msgid "Split"
msgstr "Падзяліць"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-diagonal-squares\n"
@@ -11620,7 +11451,6 @@ msgid "Diagonal Squares"
msgstr "Дыяганальныя квадраты"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-wedge\n"
@@ -11630,7 +11460,6 @@ msgid "Wedge"
msgstr "Укліноўванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-wheel\n"
@@ -11640,7 +11469,6 @@ msgid "Wheel"
msgstr "Кола"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-wipe\n"
@@ -11686,7 +11514,6 @@ msgid "Fade out and Zoom"
msgstr "Зніканне і маштаб"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-ascend\n"
@@ -11696,7 +11523,6 @@ msgid "Ascend"
msgstr "Узвышэнне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-center-revolve\n"
@@ -11715,7 +11541,6 @@ msgid "Collapse"
msgstr "Згарнуць"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-colored-lettering\n"
@@ -11725,7 +11550,6 @@ msgid "Colored Lettering"
msgstr "Каляровыя літары"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-descend\n"
@@ -11744,7 +11568,6 @@ msgid "Ease Out"
msgstr "Папусканне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-turn-and-grow\n"
@@ -11772,7 +11595,6 @@ msgid "Spin Out"
msgstr "Выкручванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-stretchy\n"
@@ -11782,7 +11604,6 @@ msgid "Stretchy"
msgstr "Расцяганне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-unfold\n"
@@ -11792,7 +11613,6 @@ msgid "Unfold"
msgstr "Разгортванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-zoom\n"
@@ -11802,7 +11622,6 @@ msgid "Zoom"
msgstr "Маштаб"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-boomerang\n"
@@ -11812,7 +11631,6 @@ msgid "Boomerang"
msgstr "Бумеранг"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-bounce\n"
@@ -11822,17 +11640,15 @@ msgid "Bounce"
msgstr "Падскокванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-movie-credits\n"
"Label\n"
"value.text"
msgid "Movie Credits"
-msgstr "Тытры фільма"
+msgstr "Цітры фільма"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-curve-down\n"
@@ -11842,7 +11658,6 @@ msgid "Curve Down"
msgstr "Крывая ўніз"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-flip\n"
@@ -11852,7 +11667,6 @@ msgid "Flip"
msgstr "Адлюстраванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-float\n"
@@ -11862,7 +11676,6 @@ msgid "Float"
msgstr "Плаванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-fold\n"
@@ -11872,7 +11685,6 @@ msgid "Fold"
msgstr "Складанне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-glide\n"
@@ -11892,7 +11704,6 @@ msgid "Put on the Brakes"
msgstr "Put on the Brakes"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-magnify\n"
@@ -11902,7 +11713,6 @@ msgid "Magnify"
msgstr "Павелічальнае шкло"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-pinwheel\n"
@@ -11912,7 +11722,6 @@ msgid "Pinwheel"
msgstr "Феерверкавае кола"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-sling\n"
@@ -11940,7 +11749,6 @@ msgid "Swish"
msgstr "Маханне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-swivel\n"
@@ -11950,7 +11758,6 @@ msgid "Swivel"
msgstr "Абяртанне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-thread\n"
@@ -11960,7 +11767,6 @@ msgid "Thread"
msgstr "Нітка"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-whip\n"
@@ -12006,7 +11812,6 @@ msgid "8 Point Star"
msgstr "8-прамянёвая зорка"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-circle\n"
@@ -12025,14 +11830,13 @@ msgid "Crescent Moon"
msgstr "Паўмесяц"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-diamond\n"
"Label\n"
"value.text"
msgid "Diamond"
-msgstr "Дыямант"
+msgstr "Ромб"
#: Effects.xcu
msgctxt ""
@@ -12053,7 +11857,6 @@ msgid "Oval"
msgstr "Oval"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-heart\n"
@@ -12063,7 +11866,6 @@ msgid "Heart"
msgstr "Сэрца"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-hexagon\n"
@@ -12073,7 +11875,6 @@ msgid "Hexagon"
msgstr "Шасцівугольнік"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-octagon\n"
@@ -12083,7 +11884,6 @@ msgid "Octagon"
msgstr "Васьмівугольнік"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-parallelogram\n"
@@ -12093,7 +11893,6 @@ msgid "Parallelogram"
msgstr "Паралелаграм"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-pentagon\n"
@@ -12103,7 +11902,6 @@ msgid "Pentagon"
msgstr "Пяцівугольнік"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-right-triangle\n"
@@ -12113,7 +11911,6 @@ msgid "Right Triangle"
msgstr "Прамавугольны трохвугольнік"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-square\n"
@@ -12132,7 +11929,6 @@ msgid "Teardrop"
msgstr "Кропля"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-trapezoid\n"
@@ -12205,7 +12001,6 @@ msgid "Curvy Left"
msgstr "Скрыўленне ўлева"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-left\n"
@@ -12215,7 +12010,6 @@ msgid "Left"
msgstr "Злева"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-right\n"
@@ -12396,7 +12190,6 @@ msgid "Up"
msgstr "Уверх"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-motionpath-wave\n"
@@ -12676,7 +12469,6 @@ msgid "Across"
msgstr "Цераз"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Properties.down\n"
@@ -12686,7 +12478,6 @@ msgid "Down"
msgstr "Уніз"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Properties.up\n"
@@ -13092,7 +12883,6 @@ msgid "From right to top"
msgstr "Справа і ўверх"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionGroups.subtle\n"
@@ -13102,7 +12892,6 @@ msgid "Subtle"
msgstr "Далікатна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionGroups.exciting\n"
@@ -13130,7 +12919,6 @@ msgid "3D Venetian"
msgstr ""
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.box\n"
@@ -13146,7 +12934,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Checkers"
-msgstr ""
+msgstr "Шашкі"
#: Effects.xcu
msgctxt ""
@@ -13155,17 +12943,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comb"
-msgstr ""
+msgstr "Грэбень"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.cover\n"
"Label\n"
"value.text"
msgid "Cover"
-msgstr "Канюшына"
+msgstr "Закрыццё"
#: Effects.xcu
msgctxt ""
@@ -13174,10 +12961,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Uncover"
-msgstr ""
+msgstr "Адкрыццё"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.wipe\n"
@@ -13187,7 +12973,6 @@ msgid "Wipe"
msgstr "Выціранне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.wedge\n"
@@ -13197,7 +12982,6 @@ msgid "Wedge"
msgstr "Укліноўванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.wheel\n"
@@ -13213,10 +12997,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Push"
-msgstr ""
+msgstr "Выштурхванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.cut\n"
@@ -13232,7 +13015,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fade"
-msgstr ""
+msgstr "Знікненне"
#: Effects.xcu
msgctxt ""
@@ -13241,7 +13024,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bars"
-msgstr ""
+msgstr "Брускі"
#: Effects.xcu
msgctxt ""
@@ -13253,7 +13036,6 @@ msgid "Shape"
msgstr "Абрыс"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.split\n"
@@ -13269,7 +13051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Diagonal"
-msgstr ""
+msgstr "Дыяганальна"
#: Effects.xcu
msgctxt ""
@@ -13278,10 +13060,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random"
-msgstr ""
+msgstr "Выпадкова"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.dissolve\n"
@@ -13291,17 +13072,15 @@ msgid "Dissolve"
msgstr "Разрэджванне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.finedissolve\n"
"Label\n"
"value.text"
msgid "Fine Dissolve"
-msgstr "Fine Dissolve"
+msgstr "Плаўнае растварэнне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.newsflash\n"
@@ -13317,10 +13096,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tiles"
-msgstr ""
+msgstr "Пліткі"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.cube-turning\n"
@@ -13330,14 +13108,13 @@ msgid "Cube"
msgstr "Куб"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.revolving-circles\n"
"Label\n"
"value.text"
msgid "Circles"
-msgstr "Колца"
+msgstr "Колцы"
#: Effects.xcu
msgctxt ""
@@ -13346,30 +13123,27 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Helix"
-msgstr ""
+msgstr "Спіраль"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.fall\n"
"Label\n"
"value.text"
msgid "Fall"
-msgstr "Fall"
+msgstr "Падзенне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.turn-around\n"
"Label\n"
"value.text"
msgid "Turn Around"
-msgstr "Turn around"
+msgstr "Вярчэнне"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.turn-down\n"
@@ -13389,24 +13163,22 @@ msgid "Iris"
msgstr "Iris"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.rochade\n"
"Label\n"
"value.text"
msgid "Rochade"
-msgstr "Rochade"
+msgstr "Ракіроўка"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.static\n"
"Label\n"
"value.text"
msgid "Static"
-msgstr "Static"
+msgstr "Статычнасць"
#: Effects.xcu
msgctxt ""
@@ -13415,7 +13187,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vortex"
-msgstr ""
+msgstr "Вір"
#: Effects.xcu
msgctxt ""
@@ -13424,7 +13196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ripple"
-msgstr ""
+msgstr "Рабізна"
#: Effects.xcu
msgctxt ""
@@ -13433,7 +13205,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glitter"
-msgstr ""
+msgstr "Бляск"
#: Effects.xcu
msgctxt ""
@@ -13442,7 +13214,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Honeycomb"
-msgstr ""
+msgstr "Соты"
#: Effects.xcu
msgctxt ""
@@ -13451,20 +13223,18 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Plain"
-msgstr ""
+msgstr "Проста"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.smoothly\n"
"Label\n"
"value.text"
msgid "Smoothly"
-msgstr "Smooth"
+msgstr "Плаўна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.through-black\n"
@@ -13474,14 +13244,13 @@ msgid "Through Black"
msgstr "Выразаць праз чорны"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.left-right\n"
"Label\n"
"value.text"
msgid "Left to Right"
-msgstr "Left-To-Right"
+msgstr "Злева направа"
#: Effects.xcu
msgctxt ""
@@ -13548,7 +13317,6 @@ msgid "Bottom Left to Top Right"
msgstr ""
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.vertical\n"
@@ -13558,7 +13326,6 @@ msgid "Vertical"
msgstr "Вертыкальна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal\n"
@@ -13568,7 +13335,6 @@ msgid "Horizontal"
msgstr "Гарызантальна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.in\n"
@@ -13578,7 +13344,6 @@ msgid "In"
msgstr "Унутр"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.out\n"
@@ -13588,7 +13353,6 @@ msgid "Out"
msgstr "Вонкі"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.across\n"
@@ -13598,7 +13362,6 @@ msgid "Across"
msgstr "Цераз"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.down\n"
@@ -13608,7 +13371,6 @@ msgid "Down"
msgstr "Уніз"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.up\n"
@@ -13618,27 +13380,24 @@ msgid "Up"
msgstr "Уверх"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.right\n"
"Label\n"
"value.text"
msgid "Right"
-msgstr "Справа"
+msgstr "Управа"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.left\n"
"Label\n"
"value.text"
msgid "Left"
-msgstr "Злева"
+msgstr "Улева"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.circle\n"
@@ -13654,7 +13413,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Horizontal"
-msgstr ""
+msgstr "Гарызантальны авал"
#: Effects.xcu
msgctxt ""
@@ -13663,30 +13422,27 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Вертыкальны авал"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.diamond\n"
"Label\n"
"value.text"
msgid "Diamond"
-msgstr "Дыямант"
+msgstr "Ромб"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.plus\n"
"Label\n"
"value.text"
msgid "Plus"
-msgstr "Plus"
+msgstr "Плюс"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal-in\n"
@@ -13696,7 +13452,6 @@ msgid "Horizontal In"
msgstr "Унутр, гарызантальна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal-out\n"
@@ -13706,7 +13461,6 @@ msgid "Horizontal Out"
msgstr "Вонкі, гарызантальна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.vertical-in\n"
@@ -13716,7 +13470,6 @@ msgid "Vertical In"
msgstr "Унутр, вертыкальна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.vertical-out\n"
@@ -13732,7 +13485,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clockwise 1 Spoke"
-msgstr ""
+msgstr "Па гадзінніку, 1 сектар"
#: Effects.xcu
msgctxt ""
@@ -13822,7 +13575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inside"
-msgstr ""
+msgstr "Унутр"
#: Effects.xcu
msgctxt ""
@@ -13831,10 +13584,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outside"
-msgstr ""
+msgstr "Вонкі"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Entrance.basic\n"
@@ -13844,7 +13596,6 @@ msgid "Basic"
msgstr "Звычайна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Entrance.special\n"
@@ -13854,7 +13605,6 @@ msgid "Special"
msgstr "Спецыяльна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Entrance.moderate\n"
@@ -13864,7 +13614,6 @@ msgid "Moderate"
msgstr "Умеркавана"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Entrance.exciting\n"
@@ -13874,7 +13623,6 @@ msgid "Exciting"
msgstr "Усхвалявана"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Emphasis.basic\n"
@@ -13884,7 +13632,6 @@ msgid "Basic"
msgstr "Звычайна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Emphasis.special\n"
@@ -13894,7 +13641,6 @@ msgid "Special"
msgstr "Спецыяльна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Emphasis.moderate\n"
@@ -13904,7 +13650,6 @@ msgid "Moderate"
msgstr "Умеркавана"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Emphasis.exciting\n"
@@ -13914,7 +13659,6 @@ msgid "Exciting"
msgstr "Усхвалявана"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Exit.basic\n"
@@ -13924,7 +13668,6 @@ msgid "Basic"
msgstr "Звычайна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Exit.special\n"
@@ -13934,7 +13677,6 @@ msgid "Special"
msgstr "Спецыяльна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Exit.moderate\n"
@@ -13944,7 +13686,6 @@ msgid "Moderate"
msgstr "Умеркавана"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Exit.exciting\n"
@@ -13954,7 +13695,6 @@ msgid "Exciting"
msgstr "Усхвалявана"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.MotionPaths.basic\n"
@@ -13964,7 +13704,6 @@ msgid "Basic"
msgstr "Звычайна"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.MotionPaths.linesandcurves\n"
@@ -13974,7 +13713,6 @@ msgid "Lines and Curves"
msgstr "Лініі і крывыя"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.MotionPaths.special\n"
@@ -14047,7 +13785,6 @@ msgid "BASIC"
msgstr "Бэйсік"
#: GenericCategories.xcu
-#, fuzzy
msgctxt ""
"GenericCategories.xcu\n"
"..GenericCategories.Commands.Categories.6\n"
@@ -14111,7 +13848,6 @@ msgid "Text"
msgstr "Тэкст"
#: GenericCategories.xcu
-#, fuzzy
msgctxt ""
"GenericCategories.xcu\n"
"..GenericCategories.Commands.Categories.13\n"
@@ -14253,7 +13989,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Заўвагі"
#: GenericCommands.xcu
msgctxt ""
@@ -14262,10 +13998,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Replace with"
-msgstr ""
+msgstr "Замяняць на"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n"
@@ -14393,14 +14128,13 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SymbolShapes\n"
"ContextLabel\n"
"value.text"
msgid "~Symbol"
-msgstr "Сімвалы"
+msgstr "Сімвал"
#: GenericCommands.xcu
msgctxt ""
@@ -14409,7 +14143,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "Пабольшыць"
#: GenericCommands.xcu
msgctxt ""
@@ -14526,10 +14260,9 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "S~tar"
-msgstr ""
+msgstr "Зорка"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.rectangle\n"
@@ -14548,7 +14281,6 @@ msgid "Rectangle, Rounded"
msgstr "Прамавугольнік скруглены"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.quadrat\n"
@@ -14567,7 +14299,6 @@ msgid "Square, Rounded"
msgstr "Квадрат скруглены"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.circle\n"
@@ -14577,7 +14308,6 @@ msgid "Circle"
msgstr "Колца"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.ellipse\n"
@@ -14605,7 +14335,6 @@ msgid "Isosceles Triangle"
msgstr "Роўнабаковы трохвугольнік"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.right-triangle\n"
@@ -14615,7 +14344,6 @@ msgid "Right Triangle"
msgstr "Прамавугольны трохвугольнік"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.trapezoid\n"
@@ -14625,17 +14353,15 @@ msgid "Trapezoid"
msgstr "Трапецыя"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.diamond\n"
"Label\n"
"value.text"
msgid "Diamond"
-msgstr "Дыямант"
+msgstr "Ромб"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.parallelogram\n"
@@ -14654,7 +14380,6 @@ msgid "Regular Pentagon"
msgstr "Правільны пяцівугольнік"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.hexagon\n"
@@ -14664,7 +14389,6 @@ msgid "Hexagon"
msgstr "Шасцівугольнік"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.octagon\n"
@@ -14701,7 +14425,6 @@ msgid "Block Arc"
msgstr "Дуга з заліўкай"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.can\n"
@@ -14711,7 +14434,6 @@ msgid "Cylinder"
msgstr "Цыліндр"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.cube\n"
@@ -14730,7 +14452,6 @@ msgid "Folded Corner"
msgstr "Складзены вугал"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BasicShapes.frame\n"
@@ -14776,7 +14497,6 @@ msgid "Lightning Bolt"
msgstr "Маланка"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SymbolShapes.heart\n"
@@ -14810,7 +14530,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Prohibited"
-msgstr ""
+msgstr "Забаронена"
#: GenericCommands.xcu
msgctxt ""
@@ -15020,7 +14740,6 @@ msgid "Notched Right Arrow"
msgstr "Зазубленая стрэлка ўправа"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ArrowShapes.pentagon-right\n"
@@ -15417,7 +15136,6 @@ msgid "Round Callout"
msgstr "Скругленая вынаска"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CalloutShapes.cloud-callout\n"
@@ -15523,7 +15241,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "6-Point Star, Concave"
-msgstr ""
+msgstr "6-прамянёвая зорка, увагнутая"
#: GenericCommands.xcu
msgctxt ""
@@ -15571,7 +15289,6 @@ msgid "Plain Text"
msgstr "Просты тэкст"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FontworkShapeType.fontwork-wave\n"
@@ -15599,7 +15316,6 @@ msgid "Stop"
msgstr "Спыніць"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FontworkShapeType.fontwork-curve-up\n"
@@ -15609,7 +15325,6 @@ msgid "Curve Up"
msgstr "Крывая ўверх"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FontworkShapeType.fontwork-curve-down\n"
@@ -15862,7 +15577,6 @@ msgid "Scrollbar"
msgstr "Scrollbar"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ZoomMenu\n"
@@ -15962,14 +15676,13 @@ msgid "Enable Watch"
msgstr "Enable Watch"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharacterBackgroundPattern\n"
"Label\n"
"value.text"
msgid "Highlight Color"
-msgstr "Колер"
+msgstr "Колер падсвечвання"
#: GenericCommands.xcu
msgctxt ""
@@ -16014,7 +15727,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "Пабольшыць"
#: GenericCommands.xcu
msgctxt ""
@@ -16023,7 +15736,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Size"
-msgstr ""
+msgstr "Пабольшыць памер"
#: GenericCommands.xcu
msgctxt ""
@@ -16032,7 +15745,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Font Size"
-msgstr ""
+msgstr "Павялічыць памер шрыфту"
#: GenericCommands.xcu
msgctxt ""
@@ -16041,7 +15754,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "Паменшыць"
#: GenericCommands.xcu
msgctxt ""
@@ -16050,7 +15763,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Size"
-msgstr ""
+msgstr "Паменшыць памер"
#: GenericCommands.xcu
msgctxt ""
@@ -16059,7 +15772,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Font Size"
-msgstr ""
+msgstr "Паменшыць памер шрыфту"
#: GenericCommands.xcu
msgctxt ""
@@ -16077,7 +15790,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Modules..."
-msgstr ""
+msgstr "Модулі..."
#: GenericCommands.xcu
msgctxt ""
@@ -16095,7 +15808,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Shadow"
-msgstr ""
+msgstr "Пераключыць цень"
#: GenericCommands.xcu
msgctxt ""
@@ -16140,7 +15853,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline"
-msgstr ""
+msgstr "Падкрэсліванне"
#: GenericCommands.xcu
msgctxt ""
@@ -16221,7 +15934,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Find All"
-msgstr ""
+msgstr "Знайсці ўсё"
#: GenericCommands.xcu
msgctxt ""
@@ -16257,7 +15970,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~What's This?"
-msgstr ""
+msgstr "Што гэта?"
#: GenericCommands.xcu
msgctxt ""
@@ -16269,7 +15982,6 @@ msgid "~Extended Tips"
msgstr "Дадатковыя наменкі"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Color\n"
@@ -16369,7 +16081,6 @@ msgid "Center Horizontally"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:JustifyPara\n"
@@ -16388,14 +16099,13 @@ msgid "Send Default Fax"
msgstr "Адаслаць стандартны факс"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:LineSpacing\n"
"Label\n"
"value.text"
msgid "Line Spacing"
-msgstr "Інтэрвал радкоў: 1"
+msgstr "Інтэрвал радкоў"
#: GenericCommands.xcu
msgctxt ""
@@ -16416,7 +16126,6 @@ msgid "Line Spacing: 1"
msgstr "Інтэрвал радкоў: 1"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SpacePara15\n"
@@ -16426,7 +16135,6 @@ msgid "Line Spacing: 1.5"
msgstr "Інтэрвал радкоў: 1,5"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SpacePara2\n"
@@ -16436,7 +16144,6 @@ msgid "Line Spacing: 2"
msgstr "Інтэрвал радкоў: 2"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:StatusGetPosition\n"
@@ -16464,14 +16171,13 @@ msgid "Manage Breakpoints"
msgstr "Кіраваць перапынкамі"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationAngle\n"
"Label\n"
"value.text"
msgid "Rotation Angle"
-msgstr "Паварот Вугал"
+msgstr "Вугал павароту"
#: GenericCommands.xcu
msgctxt ""
@@ -16501,7 +16207,6 @@ msgid "Contrast"
msgstr "Contrast"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ZoomToolBox\n"
@@ -16520,7 +16225,6 @@ msgid "Red"
msgstr "Чырвоны"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ZoomPlus\n"
@@ -16539,7 +16243,6 @@ msgid "Green"
msgstr "Зялёны"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ZoomIn\n"
@@ -16549,7 +16252,6 @@ msgid "Zoom Out"
msgstr "Паменшыць"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ZoomMinus\n"
@@ -16640,7 +16342,6 @@ msgid "Entire Page"
msgstr "Старонка цалкам"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GrafTransparence\n"
@@ -16656,7 +16357,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal"
-msgstr ""
+msgstr "Аптымальна"
#: GenericCommands.xcu
msgctxt ""
@@ -16665,7 +16366,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Optimal View"
-msgstr ""
+msgstr "Аптымальны від"
#: GenericCommands.xcu
msgctxt ""
@@ -16701,7 +16402,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "Лініі і стрэлкі"
#: GenericCommands.xcu
msgctxt ""
@@ -16782,7 +16483,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Image Mode"
-msgstr ""
+msgstr "Рэжым відарыса"
#: GenericCommands.xcu
msgctxt ""
@@ -16794,7 +16495,6 @@ msgid "Line (45°)"
msgstr "Line (45°)"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Rect\n"
@@ -16813,7 +16513,6 @@ msgid "Insert Rectangle"
msgstr "Уставіць прамавугольнік"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Rect_Rounded\n"
@@ -16823,7 +16522,6 @@ msgid "Rectangle, Rounded"
msgstr "Прамавугольнік скруглены"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Ellipse\n"
@@ -16947,7 +16645,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Co~mpress..."
-msgstr ""
+msgstr "Сціснуц~ь..."
#: GenericCommands.xcu
msgctxt ""
@@ -16974,7 +16672,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Original Size"
-msgstr ""
+msgstr "Пачатковы памер"
#: GenericCommands.xcu
msgctxt ""
@@ -16986,7 +16684,6 @@ msgid "Gr~id and Helplines"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ToolsFormsMenu\n"
@@ -17269,7 +16966,6 @@ msgid "Smooth Transition"
msgstr "Smooth Transition"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n"
@@ -17279,7 +16975,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n"
@@ -17289,7 +16984,6 @@ msgid "Poi~nts"
msgstr "Пункты"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertAnnotation\n"
@@ -17335,7 +17029,6 @@ msgid "~Rotate"
msgstr "Павярнуць"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ObjectAlignLeft\n"
@@ -17354,7 +17047,6 @@ msgid "~Centered"
msgstr "У цэнтры"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ObjectAlignRight\n"
@@ -17498,7 +17190,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering"
-msgstr ""
+msgstr "Нумараванне"
#: GenericCommands.xcu
msgctxt ""
@@ -17543,7 +17235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Outline List Style"
-msgstr ""
+msgstr "Задаць стыль структуры"
#: GenericCommands.xcu
msgctxt ""
@@ -17763,7 +17455,6 @@ msgid "Symmetric Transition"
msgstr "Symmetric Transition"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineUp\n"
@@ -17782,7 +17473,6 @@ msgid "~New"
msgstr "Дадаць"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineDown\n"
@@ -17834,7 +17524,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Styles and Formatting Sidebar"
-msgstr ""
+msgstr "Бакавая панэль Стылі і Фарматаванне"
#: GenericCommands.xcu
msgctxt ""
@@ -17960,7 +17650,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Area Style / Filling"
-msgstr "Area Style / Filling"
+msgstr "Стыль/запаўненне абсягу"
#: GenericCommands.xcu
msgctxt ""
@@ -18080,14 +17770,13 @@ msgid "Update"
msgstr "Абнавіць"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:LineCap\n"
"Label\n"
"value.text"
msgid "Line Cap Style"
-msgstr "Лінія Стыль"
+msgstr "Стыль канца лініі"
#: GenericCommands.xcu
msgctxt ""
@@ -18495,14 +18184,13 @@ msgid "Preview Dialog"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:LineJoint\n"
"Label\n"
"value.text"
msgid "Line Corner Style"
-msgstr "Лінія Стыль"
+msgstr "Стыль вугла лініі"
#: GenericCommands.xcu
msgctxt ""
@@ -18676,7 +18364,6 @@ msgid "F~ull Screen"
msgstr "На ўвесь экран"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertFrameMenu\n"
@@ -18696,7 +18383,6 @@ msgid "Footnote and Endno~te"
msgstr "Зноскі..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatImageMenu\n"
@@ -18715,7 +18401,6 @@ msgid "~Object and Shape"
msgstr "Аб'ект і фігура"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatImageFiltersMenu\n"
@@ -18725,7 +18410,6 @@ msgid "~Filter"
msgstr "Фільтр"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatTextMenu\n"
@@ -18771,7 +18455,6 @@ msgid "Frame and Ob~ject"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatFormMenu\n"
@@ -18806,7 +18489,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoFormat Table Styles"
-msgstr ""
+msgstr "Стылі аўтафарматавання табліц"
#: GenericCommands.xcu
msgctxt ""
@@ -18818,7 +18501,6 @@ msgid "Auto~Format Styles..."
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TableDesign\n"
@@ -20174,7 +19856,6 @@ msgid "Merge Track Changed Document"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FlipHorizontal\n"
@@ -20184,7 +19865,6 @@ msgid "Flip Horizontally"
msgstr "Адлюстраваць гарызантальна"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FlipVertical\n"
@@ -20275,7 +19955,6 @@ msgid "Expor~t..."
msgstr "Экспартаваць..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SdGraphicOptions\n"
@@ -20294,7 +19973,6 @@ msgid "Navigation Bar Visible"
msgstr "Паказваць стужку навігацыі"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatGroup\n"
@@ -20376,7 +20054,6 @@ msgid "Increase Indent"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:LineToolbox\n"
@@ -20422,7 +20099,6 @@ msgid "Filter"
msgstr "Фільтр"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GraphicFilterInvert\n"
@@ -20964,7 +20640,6 @@ msgid "Gallery"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Gallery\n"
@@ -21001,7 +20676,6 @@ msgid "Step Out"
msgstr "Step Out"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Config\n"
@@ -21011,7 +20685,6 @@ msgid "Controls"
msgstr "Кантрольнікі"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:MoreControls\n"
@@ -21021,7 +20694,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormDesignTools\n"
@@ -21040,7 +20712,6 @@ msgid "Push Button"
msgstr "Push Button"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:RadioButton\n"
@@ -21050,7 +20721,6 @@ msgid "Option Button"
msgstr "Радыё-кнопка"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CheckBox\n"
@@ -21069,7 +20739,6 @@ msgid "Label Field"
msgstr "Поле меткі"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GroupBox\n"
@@ -21088,7 +20757,6 @@ msgid "Text Box"
msgstr "Тэкставае поле"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ListBox\n"
@@ -21098,7 +20766,6 @@ msgid "List Box"
msgstr "Спісавы бокс"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ComboBox\n"
@@ -21144,7 +20811,6 @@ msgid "Con~trol Properties..."
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ControlProperties\n"
@@ -21163,7 +20829,6 @@ msgid "For~m Properties..."
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormProperties\n"
@@ -21308,7 +20973,6 @@ msgid "Design Mode"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SwitchXFormsDesignMode\n"
@@ -21454,7 +21118,6 @@ msgid "Item Browser On/Off"
msgstr "Паказваць агляд элементаў"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DateField\n"
@@ -21464,7 +21127,6 @@ msgid "Date Field"
msgstr "Поле даты"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TimeField\n"
@@ -21483,7 +21145,6 @@ msgid "Numerical Field"
msgstr "Numerical Field"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CurrencyField\n"
@@ -21520,7 +21181,6 @@ msgid "Close Preview"
msgstr "Закрыць перадпаказ"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:PatternField\n"
@@ -21539,7 +21199,6 @@ msgid "Open in Design Mode"
msgstr "Open in Design Mode"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ImageControl\n"
@@ -21558,7 +21217,6 @@ msgid "Reset Filter/Sort"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Sortup\n"
@@ -21568,7 +21226,6 @@ msgid "Sort Ascending"
msgstr "У парадку павелічэння"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SortDown\n"
@@ -21641,7 +21298,6 @@ msgid "Standard Filter..."
msgstr "Стандартны фільтр..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:AutoFilter\n"
@@ -21723,7 +21379,6 @@ msgid "Wizards On/Off"
msgstr "Wizards On/Off"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormattedField\n"
@@ -22075,7 +21730,6 @@ msgid "Toolbar ~Layout"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:AvailableToolbars\n"
@@ -22139,7 +21793,6 @@ msgid "Digital Signature..."
msgstr "Лічбавы подпіс..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignLeft\n"
@@ -22149,7 +21802,6 @@ msgid "Left"
msgstr "Злева"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignHorizontalCenter\n"
@@ -22159,7 +21811,6 @@ msgid "Centered"
msgstr "У цэнтры"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignRight\n"
@@ -22169,7 +21820,6 @@ msgid "Right"
msgstr "Справа"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignTop\n"
@@ -22188,7 +21838,6 @@ msgid "Center"
msgstr "У цэнтры"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignBottom\n"
@@ -22198,7 +21847,6 @@ msgid "Bottom"
msgstr "Знізу"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignJustified\n"
@@ -22217,7 +21865,6 @@ msgid "Default"
msgstr "Прадвызначана"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CommonAlignVerticalDefault\n"
@@ -22251,7 +21898,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format All Comments"
-msgstr ""
+msgstr "Фарматаваць усе заўвагі"
#: GenericCommands.xcu
msgctxt ""
@@ -22272,14 +21919,13 @@ msgid "Reply Comment"
msgstr "Reply Comment"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DeleteComment\n"
"Label\n"
"value.text"
msgid "Delete Comment"
-msgstr "Сцерці каментар"
+msgstr "Сцерці заўвагу"
#: GenericCommands.xcu
msgctxt ""
@@ -22288,7 +21934,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top"
-msgstr ""
+msgstr "Зверху"
#: GenericCommands.xcu
msgctxt ""
@@ -22297,7 +21943,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Top"
-msgstr ""
+msgstr "Раўнаванне зверху"
#: GenericCommands.xcu
msgctxt ""
@@ -22306,7 +21952,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center"
-msgstr ""
+msgstr "У цэнтры"
#: GenericCommands.xcu
msgctxt ""
@@ -22324,7 +21970,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bottom"
-msgstr ""
+msgstr "Знізу"
#: GenericCommands.xcu
msgctxt ""
@@ -22333,7 +21979,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Bottom"
-msgstr ""
+msgstr "Раўнаванне знізу"
#: GenericCommands.xcu
msgctxt ""
@@ -22342,7 +21988,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Synony~ms"
-msgstr ""
+msgstr "Сінонімы"
#: GenericCommands.xcu
msgctxt ""
@@ -22351,7 +21997,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "St~yle"
-msgstr ""
+msgstr "Стыль"
#: GenericCommands.xcu
msgctxt ""
@@ -22372,7 +22018,6 @@ msgid "~File"
msgstr "Файл"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
@@ -22382,7 +22027,6 @@ msgid "Alig~n"
msgstr "Раўнаванне"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
@@ -22416,17 +22060,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~haracter..."
-msgstr ""
+msgstr "Знак..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FontEffectsDialog\n"
"Label\n"
"value.text"
msgid "Character Font Effects..."
-msgstr "Знак Шрыфт Эфекты."
+msgstr "Шрыфтавыя эфекты..."
#: GenericCommands.xcu
msgctxt ""
@@ -22453,7 +22096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Chart"
-msgstr ""
+msgstr "Дыяграма"
#: GenericCommands.xcu
msgctxt ""
@@ -22489,7 +22132,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Лічбавыя подпісы"
#: GenericCommands.xcu
msgctxt ""
@@ -22501,14 +22144,13 @@ msgid "~Macros"
msgstr "Макрасы"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:GraphicMenu\n"
"Label\n"
"value.text"
msgid "~Media"
-msgstr "Media"
+msgstr "Медыя"
#: GenericCommands.xcu
msgctxt ""
@@ -22526,7 +22168,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Track Chan~ges"
-msgstr ""
+msgstr "Асочваць змены"
#: GenericCommands.xcu
msgctxt ""
@@ -22535,10 +22177,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "R~eference"
-msgstr ""
+msgstr "Спасылкі"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:EditCommentsMenu\n"
@@ -22548,7 +22189,6 @@ msgid "Comme~nt"
msgstr "Заўвага"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FormatImageFilterMenu\n"
@@ -22603,14 +22243,13 @@ msgid "~Toolbars"
msgstr "Стужкі прылад"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FieldMenu\n"
"Label\n"
"value.text"
msgid "Fiel~d"
-msgstr "Палі"
+msgstr "Поле"
#: GenericCommands.xcu
msgctxt ""
@@ -22649,7 +22288,6 @@ msgid "A~rrange"
msgstr "Набліжэнне"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FlipMenu\n"
@@ -22665,7 +22303,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rot~ate"
-msgstr ""
+msgstr "Паварот"
#: GenericCommands.xcu
msgctxt ""
@@ -22677,7 +22315,6 @@ msgid "Rot~ate or Flip"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:AnchorMenu\n"
@@ -22693,17 +22330,16 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Anc~hor"
-msgstr ""
+msgstr "Мацаванне"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:AVMediaPlayer\n"
"Label\n"
"value.text"
msgid "Me~dia Player"
-msgstr "Media Player*"
+msgstr "Медыяплеер"
#: GenericCommands.xcu
msgctxt ""
@@ -22712,7 +22348,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Media"
-msgstr ""
+msgstr "Медыя"
#: GenericCommands.xcu
msgctxt ""
@@ -22721,7 +22357,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Audio or ~Video..."
-msgstr ""
+msgstr "Гук або відэа..."
#: GenericCommands.xcu
msgctxt ""
@@ -22766,7 +22402,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~oft hyphen"
-msgstr ""
+msgstr "Мяккі перанос"
#: GenericCommands.xcu
msgctxt ""
@@ -22856,7 +22492,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "For All Text"
-msgstr ""
+msgstr "Для ўсяго тэксту"
#: GenericCommands.xcu
msgctxt ""
@@ -22913,7 +22549,6 @@ msgid "Templates"
msgstr "Шаблоны"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TemplateMenu\n"
@@ -22938,7 +22573,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "3D Model..."
-msgstr ""
+msgstr "Трохвымерная мадэль..."
#: GenericCommands.xcu
msgctxt ""
@@ -22956,7 +22591,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select"
-msgstr ""
+msgstr "Выбраць"
#: GenericCommands.xcu
msgctxt ""
@@ -22974,7 +22609,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Menubar"
-msgstr ""
+msgstr "Стужка меню"
#: GenericCommands.xcu
msgctxt ""
@@ -22983,7 +22618,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Name..."
-msgstr ""
+msgstr "Назва..."
#: GenericCommands.xcu
msgctxt ""
@@ -22992,7 +22627,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Description..."
-msgstr ""
+msgstr "Апісанне..."
#: GenericCommands.xcu
msgctxt ""
@@ -23001,17 +22636,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Restart in Safe Mode..."
-msgstr ""
+msgstr "Перазапуск у бяспечным рэжыме..."
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/3dobject\n"
"UIName\n"
"value.text"
msgid "3D Object"
-msgstr "3D Objects"
+msgstr "Трохвымерны аб'ект"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23020,7 +22654,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene"
-msgstr ""
+msgstr "Трохвымерная сцэна"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23029,7 +22663,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene (group)"
-msgstr ""
+msgstr "Трохвымерная сцэна (група)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23038,10 +22672,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Connector/Freeform Line"
-msgstr ""
+msgstr "Злучальнік/Адвольная лінія"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/curve\n"
@@ -23069,14 +22702,13 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/form\n"
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Кантрольнікі"
+msgstr "Кантрольнік"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23088,17 +22720,15 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/gluepoint\n"
"UIName\n"
"value.text"
msgid "Glue Point"
-msgstr "Клейкія пункты"
+msgstr "Клейкі пункт"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -23108,7 +22738,6 @@ msgid "Image"
msgstr "Выява"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/group\n"
@@ -23124,10 +22753,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Line/Arrow"
-msgstr ""
+msgstr "Лінія/стрэлка"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/measure\n"
@@ -23137,14 +22765,13 @@ msgid "Dimension Line"
msgstr "Мерная лінія"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Мультымедыя"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23153,7 +22780,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Multiple Selection"
-msgstr ""
+msgstr "Множнае вылучэнне"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23162,10 +22789,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Стужка"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -23175,17 +22801,15 @@ msgid "OLE Object"
msgstr "Аб'ект OLE"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/outline\n"
"UIName\n"
"value.text"
msgid "Outline"
-msgstr "Outline"
+msgstr "Контур"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/page\n"
@@ -23201,7 +22825,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Slide Sorter/Pane"
-msgstr ""
+msgstr "Сартаванне слайдаў/панэль"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23231,7 +22855,6 @@ msgid "Slide Master Sorter/Pane (no selection)"
msgstr ""
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -23256,7 +22879,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box (drawing)"
-msgstr ""
+msgstr "Тэкставае поле (рысунак)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23277,7 +22900,6 @@ msgid "Line and Filling"
msgstr "Лінія і заліўка"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/3dobjectsbar\n"
@@ -23287,17 +22909,15 @@ msgid "3D-Objects"
msgstr "Аб'екты 3D"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/arrowsbar\n"
@@ -23307,7 +22927,6 @@ msgid "Arrows"
msgstr "Стрэлкі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
@@ -23326,7 +22945,6 @@ msgid "Presentation"
msgstr "Прэзентацыя"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/connectorsbar\n"
@@ -23336,7 +22954,6 @@ msgid "Connectors"
msgstr "Злучальнікі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -23352,7 +22969,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Circles and Ovals"
-msgstr ""
+msgstr "Састарэлыя акружыны і авалы"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23364,7 +22981,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -23374,7 +22990,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -23384,7 +22999,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -23394,7 +23008,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -23404,7 +23017,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -23414,7 +23026,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -23448,10 +23059,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image Filter"
-msgstr ""
+msgstr "Фільтр відарысаў"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/outlinetoolbar\n"
@@ -23470,7 +23080,6 @@ msgid "Insert"
msgstr "Уставіць"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/linesbar\n"
@@ -23486,7 +23095,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "TSCP Classification"
-msgstr ""
+msgstr "Класіфікацыя TSCP"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23507,7 +23116,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -23517,7 +23125,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -23527,7 +23134,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -23537,7 +23143,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -23547,7 +23152,6 @@ msgid "Stars and Banners"
msgstr "Зоркі і сцягі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/optionsbar\n"
@@ -23563,10 +23167,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Rectangles"
-msgstr ""
+msgstr "Састарэлыя прамавугольнікі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/positionbar\n"
@@ -23594,7 +23197,6 @@ msgid "Slide View"
msgstr "Від: слайды"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -23631,7 +23233,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -23641,7 +23242,6 @@ msgid "Table"
msgstr "Табліца"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/zoombar\n"
@@ -23651,7 +23251,6 @@ msgid "Zoom"
msgstr "Маштаб"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/gluepointsobjectbar\n"
@@ -23661,7 +23260,6 @@ msgid "Gluepoints"
msgstr "Пункты мацавання"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -23671,7 +23269,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -23681,7 +23278,6 @@ msgid "Standard (Viewing Mode)"
msgstr "Стандартна (рэжым аглядання)"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -23691,7 +23287,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -23701,17 +23296,15 @@ msgid "Color"
msgstr "Колер"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/commentsbar\n"
"UIName\n"
"value.text"
msgid "Comments"
-msgstr "Каментары"
+msgstr "Каментарыі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/masterviewtoolbar\n"
@@ -23721,7 +23314,6 @@ msgid "Master View"
msgstr "Від: майстар-элементы"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/optimizetablebar\n"
@@ -23731,7 +23323,6 @@ msgid "Optimize"
msgstr "Аптымізаваць"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -23912,14 +23503,13 @@ msgid "Previous ~Marker"
msgstr "Папярэдні маркер"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:SymbolCatalogue\n"
"Label\n"
"value.text"
msgid "~Symbols…"
-msgstr "Сімвалы"
+msgstr "Сімвал~ы…"
#: MathCommands.xcu
msgctxt ""
@@ -23949,7 +23539,6 @@ msgid "U~pdate"
msgstr "Абнавіць"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:ZoomOptimal\n"
@@ -23959,7 +23548,6 @@ msgid "Sho~w All"
msgstr "Паказваць усё"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n"
@@ -23984,7 +23572,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Line"
-msgstr ""
+msgstr "Новы радок"
#: MathCommands.xcu
msgctxt ""
@@ -23993,7 +23581,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Small Gap"
-msgstr ""
+msgstr "Малы прагал"
#: MathCommands.xcu
msgctxt ""
@@ -24002,7 +23590,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gap"
-msgstr ""
+msgstr "Прагал"
#: MathCommands.xcu
msgctxt ""
@@ -24011,7 +23599,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Unary/Binary Operators"
-msgstr ""
+msgstr "Унарныя/бінарныя аператары"
#: MathCommands.xcu
msgctxt ""
@@ -24020,7 +23608,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Relations"
-msgstr ""
+msgstr "Стасункі"
#: MathCommands.xcu
msgctxt ""
@@ -24029,7 +23617,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Set Operations"
-msgstr ""
+msgstr "Аперацыі над мноствамі"
#: MathCommands.xcu
msgctxt ""
@@ -24038,7 +23626,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Functions"
-msgstr ""
+msgstr "Функцыі"
#: MathCommands.xcu
msgctxt ""
@@ -24047,7 +23635,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "O~perators"
-msgstr ""
+msgstr "Аператары"
#: MathCommands.xcu
msgctxt ""
@@ -24056,7 +23644,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Attributes"
-msgstr ""
+msgstr "Атрыбуты"
#: MathCommands.xcu
msgctxt ""
@@ -24065,7 +23653,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Brackets"
-msgstr ""
+msgstr "Дужк~і"
#: MathCommands.xcu
msgctxt ""
@@ -24074,7 +23662,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "For~mats"
-msgstr ""
+msgstr "Фарматы"
#: MathCommands.xcu
msgctxt ""
@@ -24083,7 +23671,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Others"
-msgstr ""
+msgstr "Іншыя"
#: MathWindowState.xcu
msgctxt ""
@@ -24104,7 +23692,6 @@ msgid "View Panel"
msgstr ""
#: MathWindowState.xcu
-#, fuzzy
msgctxt ""
"MathWindowState.xcu\n"
"..MathWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -24123,7 +23710,6 @@ msgid "Tools"
msgstr "Прылады"
#: MathWindowState.xcu
-#, fuzzy
msgctxt ""
"MathWindowState.xcu\n"
"..MathWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -24139,7 +23725,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Карткі"
#: Notebookbar.xcu
msgctxt ""
@@ -24202,7 +23788,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Карткі"
#: Notebookbar.xcu
msgctxt ""
@@ -24211,10 +23797,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Кантэкстныя групы"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ReportHeaderFooter\n"
@@ -24233,7 +23818,6 @@ msgid "Page Header/Footer"
msgstr "Калантытул старонкі"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ShowRuler\n"
@@ -24243,7 +23827,6 @@ msgid "~Ruler"
msgstr "Лінейка"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:DbSortingAndGrouping\n"
@@ -24253,7 +23836,6 @@ msgid "~Sorting and Grouping"
msgstr "Парадкаванне і групы"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:AddField\n"
@@ -24263,7 +23845,6 @@ msgid "~Add Field"
msgstr "Дадаць поле"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ConditionalFormatting\n"
@@ -24291,7 +23872,6 @@ msgid "~Page..."
msgstr "Старонка..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ResetAttributes\n"
@@ -24310,24 +23890,22 @@ msgid "~Page Numbers..."
msgstr "Нумары старонак..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:InsertDateTimeField\n"
"Label\n"
"value.text"
msgid "~Date and Time..."
-msgstr "Дата і Час."
+msgstr "Дата і Час..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SelectReport\n"
"Label\n"
"value.text"
msgid "~Select Report"
-msgstr "Выбраць Справаздача"
+msgstr "Выбраць справаздачу"
#: ReportCommands.xcu
msgctxt ""
@@ -24339,7 +23917,6 @@ msgid "~Subreport in New Window..."
msgstr "Падп. справаздача ў нов_ым акне..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:FontColor\n"
@@ -24349,7 +23926,6 @@ msgid "Font Color"
msgstr "Колер шрыфту"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:GridMenu\n"
@@ -24359,14 +23935,13 @@ msgid "Gr~id"
msgstr "Рашотка"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ColumnHeaderFooter\n"
"Label\n"
"value.text"
msgid "~Column Header/Footer"
-msgstr "Калонка Калантытул верхні Калантытул ніжні"
+msgstr "Калантытулы калонкі"
#: ReportCommands.xcu
msgctxt ""
@@ -24378,24 +23953,22 @@ msgid "Paste ~Special..."
msgstr "Уставіць спец~ыяльнае..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ExecuteReport\n"
"Label\n"
"value.text"
msgid "Execute Report..."
-msgstr "Выканаць Справаздача."
+msgstr "Выканаць справаздачу..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ImageControl\n"
"Label\n"
"value.text"
msgid "Image..."
-msgstr "Старонка..."
+msgstr "Відарыс..."
#: ReportCommands.xcu
msgctxt ""
@@ -24416,57 +23989,51 @@ msgid "Spreadsheet Document"
msgstr "Разліковы аркуш"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ReportNavigator\n"
"Label\n"
"value.text"
msgid "Report Navigator"
-msgstr "Справаздача Навігатар"
+msgstr "Навігатар справаздач"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SmallestWidth\n"
"Label\n"
"value.text"
msgid "Fit to smallest width"
-msgstr "width"
+msgstr "Дапасаваць да найменшай шырыні"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SmallestHeight\n"
"Label\n"
"value.text"
msgid "Fit to smallest height"
-msgstr "height"
+msgstr "Дапасаваць да найменшай вышыні"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:GreatestWidth\n"
"Label\n"
"value.text"
msgid "Fit to greatest width"
-msgstr "width"
+msgstr "Дапасаваць да найбольшай шырыні"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:GreatestHeight\n"
"Label\n"
"value.text"
msgid "Fit to greatest height"
-msgstr "height"
+msgstr "Дапасаваць да найбольшай вышыні"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ControlProperties\n"
@@ -24476,7 +24043,6 @@ msgid "Properties"
msgstr "Уласцівасці"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:Distribution\n"
@@ -24486,14 +24052,13 @@ msgid "Distribution..."
msgstr "Размеркаванне..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SelectAllInSection\n"
"Label\n"
"value.text"
msgid "~Select Objects in Section"
-msgstr "Выбраць Аб'екты цаль Раздзел"
+msgstr "В~ыбраць аб'екты ў раздзеле"
#: ReportCommands.xcu
#, fuzzy
@@ -24556,24 +24121,22 @@ msgid "Middle on Section"
msgstr "У сярэдзіне (калі) Раздзел"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SelectAllLabels\n"
"Label\n"
"value.text"
msgid "Select all Labels"
-msgstr "Выбраць Меткі"
+msgstr "Выбраць усе меткі"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SelectAllEdits\n"
"Label\n"
"value.text"
msgid "Select all Formatted Fields"
-msgstr "Выбраць Фарматавана Палі"
+msgstr "Выбраць усе фарматаваныя палі"
#: ReportCommands.xcu
msgctxt ""
@@ -24585,7 +24148,6 @@ msgid "Shape Arrange"
msgstr "Абрыс Набліжэнне"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:EditControlMenu\n"
@@ -24595,7 +24157,6 @@ msgid "Control"
msgstr "Кантрольнік"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:AlignmentMenu\n"
@@ -24605,7 +24166,6 @@ msgid "Alignment"
msgstr "Раўнаванне"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ResizeMenu\n"
@@ -24615,17 +24175,15 @@ msgid "Resize"
msgstr "Змяніць памер"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SectionAlignmentMenu\n"
"Label\n"
"value.text"
msgid "Section alignment"
-msgstr "Раздзел"
+msgstr "Раўнаванне раздзела"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ReportControlMenu\n"
@@ -24635,7 +24193,6 @@ msgid "Report Controls"
msgstr "Кантрольнікі справаздачы"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SectionShrinkMenu\n"
@@ -24645,7 +24202,6 @@ msgid "Section"
msgstr "Раздзел"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SectionShrink\n"
@@ -24655,24 +24211,22 @@ msgid "Shrink"
msgstr "Сціснуць"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SectionShrinkTop\n"
"Label\n"
"value.text"
msgid "Shrink from top"
-msgstr "Сціснуць ад"
+msgstr "Сціснуць зверху"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SectionShrinkBottom\n"
"Label\n"
"value.text"
msgid "Shrink from bottom"
-msgstr "Сціснуць ад"
+msgstr "Сціснуць знізу"
#: ReportCommands.xcu
msgctxt ""
@@ -24681,10 +24235,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Background Color..."
-msgstr ""
+msgstr "Колер фону..."
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Popups..uno:ExportReportTo\n"
@@ -24694,7 +24247,6 @@ msgid "Report Output Format"
msgstr "Фармат вываду справаздачы"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Popups..uno:SnapLinesMenu\n"
@@ -24704,17 +24256,15 @@ msgid "~Snap Lines"
msgstr "Лініі прыцягнення"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Popups..uno:ObjectResize\n"
"Label\n"
"value.text"
msgid "Object Resizing"
-msgstr "Аб'ект"
+msgstr "Змяніць памеры аб'екта"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.PropertyDeck\n"
@@ -24742,7 +24292,6 @@ msgid "Shapes"
msgstr "Фігуры"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.GalleryDeck\n"
@@ -24767,10 +24316,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Анімацыя"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdSlideTransitionDeck\n"
@@ -24780,7 +24328,6 @@ msgid "Slide Transition"
msgstr "Пераход слайда"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.NavigatorDeck\n"
@@ -24799,7 +24346,6 @@ msgid "Styles and Formatting"
msgstr "Стылі і фарматаванне"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.ScFunctionsDeck\n"
@@ -24809,17 +24355,15 @@ msgid "Functions"
msgstr "Функцыі"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SwManageChangesDeck\n"
"Title\n"
"value.text"
msgid "Manage Changes"
-msgstr "Вызначыць назвы..."
+msgstr "Распарадзіцца зменамі"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SwDesignDeck\n"
@@ -24829,14 +24373,13 @@ msgid "Design"
msgstr "Распрацоўка"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.ChartDeck\n"
"Title\n"
"value.text"
msgid "Properties"
-msgstr "Properties"
+msgstr "Уласцівасці"
#: Sidebar.xcu
msgctxt ""
@@ -24848,14 +24391,13 @@ msgid "Style"
msgstr "Стыль"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.TextPropertyPanel\n"
"Title\n"
"value.text"
msgid "Character"
-msgstr "Знак."
+msgstr "Знак"
#: Sidebar.xcu
msgctxt ""
@@ -24864,7 +24406,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Media Playback"
-msgstr ""
+msgstr "Прайграванне мультымедыя"
#: Sidebar.xcu
msgctxt ""
@@ -24882,7 +24424,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Format"
-msgstr ""
+msgstr "Фармат"
#: Sidebar.xcu
msgctxt ""
@@ -24891,7 +24433,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Header"
-msgstr ""
+msgstr "Калантытул верхні"
#: Sidebar.xcu
msgctxt ""
@@ -24900,10 +24442,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Footer"
-msgstr ""
+msgstr "Калантытул ніжні"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.AreaPropertyPanel\n"
@@ -24913,7 +24454,6 @@ msgid "Area"
msgstr "Абсяг"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ShadowPropertyPanel\n"
@@ -24923,7 +24463,6 @@ msgid "Shadow"
msgstr "З ценем"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.LinePropertyPanel\n"
@@ -24933,7 +24472,6 @@ msgid "Line"
msgstr "Лінія"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.GalleryPanel\n"
@@ -24943,7 +24481,6 @@ msgid "Gallery"
msgstr "Галерэя"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.PosSizePropertyPanel\n"
@@ -24953,7 +24490,6 @@ msgid "Position and Size"
msgstr "Месца і памер"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.GraphicPropertyPanel\n"
@@ -24969,10 +24505,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Прадвызначана"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SlideBackgroundPanel\n"
@@ -24982,7 +24517,6 @@ msgid "Slide"
msgstr "Слайд"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdLayoutsPanel\n"
@@ -24992,7 +24526,6 @@ msgid "Layouts"
msgstr "Выклады"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdUsedMasterPagesPanel\n"
@@ -25002,7 +24535,6 @@ msgid "Used in This Presentation"
msgstr "Ужытыя ў гэтай прэзентацыі"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdRecentMasterPagesPanel\n"
@@ -25012,7 +24544,6 @@ msgid "Recently Used"
msgstr "Нядаўна ўжываныя"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdAllMasterPagesPanel\n"
@@ -25028,10 +24559,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Анімацыя"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdSlideTransitionPanel\n"
@@ -25041,7 +24571,6 @@ msgid "Slide Transition"
msgstr "Пераход слайда"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdTableDesignPanel\n"
@@ -25051,17 +24580,15 @@ msgid "Table Design"
msgstr "Дызайн табліцы"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.EmptyPanel\n"
"Title\n"
"value.text"
msgid "Empty"
-msgstr "Пустыя"
+msgstr "Пуста"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScAlignmentPropertyPanel\n"
@@ -25071,17 +24598,15 @@ msgid "Alignment"
msgstr "Раўнаванне"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScCellAppearancePropertyPanel\n"
"Title\n"
"value.text"
msgid "Cell Appearance"
-msgstr "Клетка Від"
+msgstr "Від клетак"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScNumberFormatPropertyPanel\n"
@@ -25091,7 +24616,6 @@ msgid "Number Format"
msgstr "Фармат лікаў"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ParaPropertyPanel\n"
@@ -25101,7 +24625,6 @@ msgid "Paragraph"
msgstr "Абзац"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SwWrapPropertyPanel\n"
@@ -25111,7 +24634,6 @@ msgid "Wrap"
msgstr "Абгортванне"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SwNavigatorPanel\n"
@@ -25121,7 +24643,6 @@ msgid "Navigator"
msgstr "Навігатар"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScNavigatorPanel\n"
@@ -25131,7 +24652,6 @@ msgid "Navigator"
msgstr "Навігатар"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdNavigatorPanel\n"
@@ -25160,7 +24680,6 @@ msgid "Styles and Formatting"
msgstr "Стылі і фарматаванне"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScFunctionsPanel\n"
@@ -25185,10 +24704,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Themes"
-msgstr ""
+msgstr "Тэмы"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartElementsPanel\n"
@@ -25204,7 +24722,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Data Series"
-msgstr ""
+msgstr "Выбарка даных"
#: Sidebar.xcu
msgctxt ""
@@ -25213,7 +24731,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Trendline"
-msgstr ""
+msgstr "Лінія трэнда"
#: Sidebar.xcu
msgctxt ""
@@ -25225,7 +24743,6 @@ msgid "Error Bar"
msgstr ""
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartAxisPanel\n"
@@ -25235,7 +24752,6 @@ msgid "Axis"
msgstr "Вось"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartAreaPanel\n"
@@ -25245,34 +24761,31 @@ msgid "Area"
msgstr "Абсяг"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartLinePanel\n"
"Title\n"
"value.text"
msgid "Line"
-msgstr "Line"
+msgstr "Лінія"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartCharacterPanel\n"
"Title\n"
"value.text"
msgid "Character"
-msgstr "Знак."
+msgstr "Знак"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:AddDirect\n"
"Label\n"
"value.text"
msgid "~New"
-msgstr "Дадаць"
+msgstr "Стварыць"
#: StartModuleCommands.xcu
msgctxt ""
@@ -25293,7 +24806,6 @@ msgid "Close Window"
msgstr "Закрыць акно"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:Copy\n"
@@ -25303,7 +24815,6 @@ msgid "~Copy"
msgstr "Капіраваць"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:Cut\n"
@@ -25313,7 +24824,6 @@ msgid "~Cut"
msgstr "Выразаць"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:ExtendedHelp\n"
@@ -25350,7 +24860,6 @@ msgid "~Open..."
msgstr "Адкрыць..."
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:OpenUrl\n"
@@ -25369,7 +24878,6 @@ msgid "~Paste"
msgstr "Уставіць"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:Print\n"
@@ -25379,17 +24887,15 @@ msgid "~Print..."
msgstr "Друкаваць..."
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:PrinterSetup\n"
"Label\n"
"value.text"
msgid "P~rinter Settings..."
-msgstr "Настаўленні прынтэра..."
+msgstr "Настаўленні прынтара..."
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:Quit\n"
@@ -25426,7 +24932,6 @@ msgid "Document as ~E-mail..."
msgstr "Адаслаць праз эл.пошту..."
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:SetDocumentProperties\n"
@@ -25445,7 +24950,6 @@ msgid "Undo"
msgstr "Адкаціць"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:EditMenu\n"
@@ -25464,7 +24968,6 @@ msgid "~Help"
msgstr "~Даведка"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:MacrosMenu\n"
@@ -25492,7 +24995,6 @@ msgid "~Tools"
msgstr "~Прылады"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:ViewMenu\n"
@@ -25526,7 +25028,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Тыповы"
#: ToolbarMode.xcu
msgctxt ""
@@ -25544,7 +25046,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr ""
+msgstr "Бакоўка"
#: ToolbarMode.xcu
msgctxt ""
@@ -25553,7 +25055,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Стужка"
#: ToolbarMode.xcu
msgctxt ""
@@ -25562,7 +25064,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Тыповы"
#: ToolbarMode.xcu
msgctxt ""
@@ -25580,7 +25082,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr ""
+msgstr "Бакоўка"
#: ToolbarMode.xcu
msgctxt ""
@@ -25589,7 +25091,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Стужка"
#: ToolbarMode.xcu
msgctxt ""
@@ -25598,7 +25100,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Тыповы"
#: ToolbarMode.xcu
msgctxt ""
@@ -25616,7 +25118,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Стужка"
#: WriterCommands.xcu
msgctxt ""
@@ -25634,7 +25136,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Text Box"
-msgstr ""
+msgstr "Сцерці тэкставае поле"
#: WriterCommands.xcu
msgctxt ""
@@ -25646,17 +25148,15 @@ msgid "AutoTe~xt..."
msgstr "Аўта-тэкст..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:PrintLayout\n"
"Label\n"
"value.text"
msgid "~Normal View"
-msgstr "Звычайны* пагляд"
+msgstr "Звычайны від"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:PrintLayout\n"
@@ -25738,7 +25238,6 @@ msgid "Page Number"
msgstr "Нумар старонкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertHeaderFooterMenu\n"
@@ -25781,7 +25280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Endnote"
-msgstr ""
+msgstr "Зноска затэкставая"
#: WriterCommands.xcu
msgctxt ""
@@ -25802,7 +25301,6 @@ msgid "Number Recognition"
msgstr "Пазнаванне лічбаў"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertSection\n"
@@ -25818,7 +25316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Змест"
#: WriterCommands.xcu
msgctxt ""
@@ -25875,7 +25373,6 @@ msgid "AutoCorrect"
msgstr "AutoCorrect"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FontColor\n"
@@ -26056,7 +25553,6 @@ msgid "~Links"
msgstr "Спасылкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TrackChanges\n"
@@ -26093,7 +25589,6 @@ msgid "Show Track Changes Functions"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ShowTrackedChanges\n"
@@ -26193,7 +25688,6 @@ msgid "Edit index"
msgstr "Правіць індэкс"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:AuthoritiesEntryDialog\n"
@@ -26212,7 +25706,6 @@ msgid "~Charts"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EditHyperlink\n"
@@ -26222,17 +25715,15 @@ msgid "~Hyperlink"
msgstr "Сеціўная спасылка"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EditHyperlink\n"
"PopupLabel\n"
"value.text"
msgid "Edit Hyperlink..."
-msgstr "Правіць Сеціўная спасылка"
+msgstr "Правіць сеціўную спасылку"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:RemoveHyperlink\n"
@@ -26314,7 +25805,6 @@ msgid "~More Fields..."
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ChangeDatabaseField\n"
@@ -26430,7 +25920,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: WriterCommands.xcu
msgctxt ""
@@ -26439,7 +25929,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Insert ~Table..."
-msgstr "Уставіць табліцу"
+msgstr "Уставіць табліцу..."
#: WriterCommands.xcu
msgctxt ""
@@ -26469,7 +25959,6 @@ msgid "Frame"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertFrame\n"
@@ -26488,7 +25977,6 @@ msgid "Insert Frame"
msgstr "Уставіць рамку"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertIndexesEntry\n"
@@ -26516,7 +26004,6 @@ msgid "Insert single-column frame manually"
msgstr "Уставіць аднакалонкавую рамку інтэрактыўна"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ToggleAnchorType\n"
@@ -26535,7 +26022,6 @@ msgid "Anchor To Page"
msgstr "Мацаваць да старонкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SetAnchorToPage\n"
@@ -26572,7 +26058,6 @@ msgid "Change Position"
msgstr "Змяніць пазіцыю"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MergeDialog\n"
@@ -26699,7 +26184,6 @@ msgid "To ~Frame"
msgstr "Да рамкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertObjectStarMath\n"
@@ -26853,7 +26337,6 @@ msgid "T~itle"
msgstr "Назва"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertAuthorField\n"
@@ -26935,7 +26418,6 @@ msgid "Apply and Edit ~Changes"
msgstr "Ужыць і правіць змены"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SelectionMode\n"
@@ -26954,7 +26436,6 @@ msgid "Hyperlinks Active"
msgstr "Актыўныя сеціўныя спасылкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SuperScript\n"
@@ -26964,7 +26445,6 @@ msgid "Superscript"
msgstr "Верхні індэкс"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SubScript\n"
@@ -27001,7 +26481,6 @@ msgid "Select to Top Line"
msgstr "Пазначыць да верхняга радка"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:LineDownSel\n"
@@ -27119,24 +26598,22 @@ msgid "Outline to ~Clipboard"
msgstr "Перанесці структуру ў абменнік"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:RotateLeft\n"
"Label\n"
"value.text"
msgid "Rotate 90° ~Left"
-msgstr "Павярнуць Злева"
+msgstr "Павярнуць на 90° улева"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:RotateRight\n"
"Label\n"
"value.text"
msgid "Rotate 90° ~Right"
-msgstr "Павярнуць Справа"
+msgstr "Павярнуць на 90° управа"
#: WriterCommands.xcu
msgctxt ""
@@ -27283,14 +26760,13 @@ msgid "AutoAbst~ract to Presentation..."
msgstr "Аўта-анатацыю ў прэзентацыю..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:BorderDialog\n"
"Label\n"
"value.text"
msgid "Borders"
-msgstr "Межы"
+msgstr "Абрамленне"
#: WriterCommands.xcu
msgctxt ""
@@ -27376,7 +26852,6 @@ msgid "Frame or Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
@@ -27388,24 +26863,13 @@ msgstr "Уласцівасці..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
msgid "Image Properties"
-msgstr "Уласцівасці табліцы..."
+msgstr "Уласцівасці відарыса..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
@@ -27415,7 +26879,6 @@ msgid "~Properties..."
msgstr "Уласцівасці..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TableDialog\n"
@@ -27425,7 +26888,6 @@ msgid "Ta~ble Properties..."
msgstr "Уласцівасці табліцы..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TableDialog\n"
@@ -27435,7 +26897,6 @@ msgid "~Properties..."
msgstr "Уласцівасці..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TableDialog\n"
@@ -27470,7 +26931,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Ачысціць"
#: WriterCommands.xcu
msgctxt ""
@@ -27479,7 +26940,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "Зняць дадатковае афармленне"
#: WriterCommands.xcu
msgctxt ""
@@ -27488,7 +26949,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Зняць дадатковае афармленне"
#: WriterCommands.xcu
msgctxt ""
@@ -27554,7 +27015,6 @@ msgid "Print document"
msgstr "Друкаваць дакумент"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:AlignLeft\n"
@@ -27573,7 +27033,6 @@ msgid "Close Preview"
msgstr "Закрыць перадпаказ"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:AlignRight\n"
@@ -27628,7 +27087,6 @@ msgid "Apply Page Style"
msgstr "Ужыць стыль старонкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FieldDialog\n"
@@ -27638,7 +27096,6 @@ msgid "F~ields..."
msgstr "Палі..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
@@ -27684,7 +27141,6 @@ msgid "Header Rows Repeat Across Pages"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TableSort\n"
@@ -27694,7 +27150,6 @@ msgid "So~rt..."
msgstr "Парадкаваць..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertRowDialog\n"
@@ -27749,7 +27204,6 @@ msgid "Rows ~Below"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertColumnDialog\n"
@@ -27831,7 +27285,6 @@ msgid "Delete Rows"
msgstr "Delete Rows"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
@@ -27850,7 +27303,6 @@ msgid "Delete Columns"
msgstr "Сцерці калонкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
@@ -27860,17 +27312,15 @@ msgid "~Columns"
msgstr "Калонкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DeleteTable\n"
"Label\n"
"value.text"
msgid "Delete Table"
-msgstr "Пазначыць табліцу"
+msgstr "Сцерці табліцу"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DeleteTable\n"
@@ -27889,7 +27339,6 @@ msgid "Split Cells..."
msgstr "Падзяліць клеткі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
@@ -27944,7 +27393,6 @@ msgid "To Character Left"
msgstr "На знак улева"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:IndexEntryDialog\n"
@@ -27981,24 +27429,22 @@ msgid "~Row"
msgstr "Радок"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireCell\n"
"Label\n"
"value.text"
msgid "Select Cell"
-msgstr "Пазначыць усё"
+msgstr "Выбраць клетку"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireCell\n"
"ContextLabel\n"
"value.text"
msgid "C~ell"
-msgstr "Клеткі"
+msgstr "Клетка"
#: WriterCommands.xcu
msgctxt ""
@@ -28010,7 +27456,6 @@ msgid "To Top Line"
msgstr "У верхні радок"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireColumn\n"
@@ -28020,7 +27465,6 @@ msgid "Select Column"
msgstr "Пазначыць калонку"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireColumn\n"
@@ -28039,7 +27483,6 @@ msgid "~Fields"
msgstr "Палі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SelectTable\n"
@@ -28049,7 +27492,6 @@ msgid "Select Table"
msgstr "Пазначыць табліцу"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SelectTable\n"
@@ -28131,7 +27573,6 @@ msgid "Calculate Table"
msgstr "Пералічыць табліцу"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:UnsetCellsReadOnly\n"
@@ -28222,7 +27663,6 @@ msgid "To Next Paragraph in Level"
msgstr "Да наступнага абзацу ва ўзроўні"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveUp\n"
@@ -28241,7 +27681,6 @@ msgid "To End of Previous Page"
msgstr "Да заканчэння папярэдняй старонкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveDown\n"
@@ -28404,7 +27843,6 @@ msgid "To Next Sentence"
msgstr "Да наступнага сказу"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberOrNoNumber\n"
@@ -28531,7 +27969,6 @@ msgid "Delete to Start of Paragraph"
msgstr "Сцерці да пачатку абзаца"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DelLine\n"
@@ -28606,7 +28043,6 @@ msgid "~Footnote or Endnote..."
msgstr "Зноскі..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:Escape\n"
@@ -28634,7 +28070,6 @@ msgid "Select Word"
msgstr "Пазначыць слова"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatStandard\n"
@@ -28680,7 +28115,6 @@ msgid "To Next Object"
msgstr "У наступны аб'ект"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatDecimal\n"
@@ -28699,7 +28133,6 @@ msgid "To Previous Object"
msgstr "У папярэдні аб'ект"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatScientific\n"
@@ -28718,7 +28151,6 @@ msgid "To Next Bookmark"
msgstr "Да наступнай закладкі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatDate\n"
@@ -28755,7 +28187,6 @@ msgid "Unprotect sheet"
msgstr "Без засцерагання аркуша"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatTime\n"
@@ -28774,7 +28205,6 @@ msgid "To Table End"
msgstr "Да заканчэння табліцы"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatCurrency\n"
@@ -28793,7 +28223,6 @@ msgid "To Next Table"
msgstr "Да наступнай табліцы"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatPercent\n"
@@ -29109,7 +28538,6 @@ msgid "Increment Indent Value"
msgstr "Павялічыць памер водступу"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DistributeRows\n"
@@ -29152,7 +28580,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Table"
-msgstr "Merge Table"
+msgstr "Аб'яднаць табліцу"
#: WriterCommands.xcu
msgctxt ""
@@ -29215,7 +28643,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table: Fixed"
-msgstr "Table: Fixed"
+msgstr "Табліца: фіксаваная"
#: WriterCommands.xcu
msgctxt ""
@@ -29233,7 +28661,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table: Fixed, Proportional"
-msgstr "Table: Fixed, Proportional"
+msgstr "Табліца: фіксаваная, прапарцыянальная"
#: WriterCommands.xcu
msgctxt ""
@@ -29260,7 +28688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table: Variable"
-msgstr "Table: Variable"
+msgstr "Табліца: зменная"
#: WriterCommands.xcu
msgctxt ""
@@ -29272,7 +28700,6 @@ msgid "Text Wrap..."
msgstr "Згортваць тэкст..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TextWrap\n"
@@ -29300,7 +28727,6 @@ msgid "Go to Previous Index Mark"
msgstr "Да папярэдняга маркера індэкса"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:AutoSum\n"
@@ -29355,14 +28781,13 @@ msgid "Select Text"
msgstr "Пазначыць тэкст"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:Ruler\n"
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr "Лінейка"
+msgstr "Лінейкі"
#: WriterCommands.xcu
msgctxt ""
@@ -29410,7 +28835,6 @@ msgid "Te~xt Boundaries"
msgstr "Межы тэксту"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ThesaurusDialog\n"
@@ -29420,14 +28844,13 @@ msgid "~Thesaurus..."
msgstr "Тэзаўрус..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:BackColor\n"
"Label\n"
"value.text"
msgid "Highlight Color"
-msgstr "Колер"
+msgstr "Колер падсвечвання"
#: WriterCommands.xcu
msgctxt ""
@@ -29457,7 +28880,6 @@ msgid "Vertical Ruler"
msgstr "Вертыкальная лінейка"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:Hyphenate\n"
@@ -29485,7 +28907,6 @@ msgid "Add Unknown Words"
msgstr "Дадаць невядомыя словы"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:HScroll\n"
@@ -29549,7 +28970,6 @@ msgid "Hide Whitespac~e"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SortDialog\n"
@@ -29694,7 +29114,6 @@ msgid "~Insert"
msgstr "Уставіць"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:TableDeleteMenu\n"
@@ -29713,7 +29132,6 @@ msgid "~Select"
msgstr "Пазначыць"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:TableAutoFitMenu\n"
@@ -29723,7 +29141,6 @@ msgid "Si~ze"
msgstr "Памер"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:TableConvertMenu\n"
@@ -29748,10 +29165,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table of Contents and Inde~x"
-msgstr ""
+msgstr "Змест і паказальнікі"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:FormatAllNotes\n"
@@ -29779,7 +29195,6 @@ msgid "~Word Count"
msgstr "Колькасць словаў"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StylesMenu\n"
@@ -29798,7 +29213,6 @@ msgid "~Wrap"
msgstr "Абгортванне"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:AlignFrameMenu\n"
@@ -29826,17 +29240,15 @@ msgid "AutoCorr~ect"
msgstr "Аўта-карэкцыя"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:PageSettingDialog\n"
"Label\n"
"value.text"
msgid "Page Settings - Paper format"
-msgstr "Старонка Настаўленні Папера"
+msgstr "Параметры старонкі - фармат паперы"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:SelectionModeMenu\n"
@@ -29864,24 +29276,22 @@ msgid "Navigate by"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ScrollToPrevious\n"
"Label\n"
"value.text"
msgid "Previous Element"
-msgstr "Папярэдні каментар"
+msgstr "Папярэдні элемент"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ScrollToNext\n"
"Label\n"
"value.text"
msgid "Next Element"
-msgstr "Наступны каментар"
+msgstr "Наступны элемент"
#: WriterCommands.xcu
msgctxt ""
@@ -29902,7 +29312,6 @@ msgid "Forward"
msgstr "Наперад"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Horizontal Line&amp;FamilyName:string=ParagraphStyles\n"
@@ -29921,7 +29330,6 @@ msgid "Default ~Paragraph"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Title&amp;FamilyName:string=ParagraphStyles\n"
@@ -29931,7 +29339,6 @@ msgid "~Title"
msgstr "Загаловак"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Subtitle&amp;FamilyName:string=ParagraphStyles\n"
@@ -30157,14 +29564,13 @@ msgid "Watermark"
msgstr ""
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/annotation\n"
"UIName\n"
"value.text"
msgid "Comment"
-msgstr "Comm~ent"
+msgstr "Каментарый"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30185,14 +29591,13 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/form\n"
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr "Кантрольнікі"
+msgstr "Кантрольнік"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30213,7 +29618,6 @@ msgid "Text Frame"
msgstr "Тэкставая рамка"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -30223,17 +29627,15 @@ msgid "Image"
msgstr "Выява"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Мультымедыя"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -30252,7 +29654,6 @@ msgid "Print Preview"
msgstr ""
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -30271,7 +29672,6 @@ msgid "Text"
msgstr "Тэкст"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -30281,7 +29681,6 @@ msgid "Standard"
msgstr "Стандартна"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n"
@@ -30297,7 +29696,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mail Merge"
-msgstr ""
+msgstr "Памнажэнне пошты"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30309,7 +29708,6 @@ msgid "Tools"
msgstr "Прылады"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -30337,17 +29735,15 @@ msgid "Drawing Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -30357,7 +29753,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -30376,7 +29771,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -30386,7 +29780,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -30396,7 +29789,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -30406,7 +29798,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -30416,7 +29807,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -30426,7 +29816,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/frameobjectbar\n"
@@ -30436,7 +29825,6 @@ msgid "Frame"
msgstr "Рамка"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -30482,7 +29870,6 @@ msgid "Insert Object"
msgstr "Уставіць аб'ект"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/oleobjectbar\n"
@@ -30492,7 +29879,6 @@ msgid "OLE-Object"
msgstr "Аб'ект OLE"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/optimizetablebar\n"
@@ -30520,7 +29906,6 @@ msgid "Text Object"
msgstr "Тэкставы аб'ект"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -30539,7 +29924,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -30549,7 +29933,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -30568,7 +29951,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя фігуры"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -30578,7 +29960,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -30588,7 +29969,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -30607,7 +29987,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -30617,7 +29996,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -30636,14 +30014,13 @@ msgid "Fontwork Shape"
msgstr "Абрыс шрыфтавання"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/annotation\n"
"UIName\n"
"value.text"
msgid "Comment"
-msgstr "Comm~ent"
+msgstr "Каментарый"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -30664,7 +30041,6 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -30692,7 +30068,6 @@ msgid "Text Frame"
msgstr "Тэкставая рамка"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -30702,17 +30077,15 @@ msgid "Image"
msgstr "Выява"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Медыя"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -30731,7 +30104,6 @@ msgid "Print Preview"
msgstr ""
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -30750,7 +30122,6 @@ msgid "Text"
msgstr "Тэкст"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -30760,7 +30131,6 @@ msgid "Standard"
msgstr "Стандартна"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -30770,7 +30140,6 @@ msgid "Find"
msgstr "Знайсці"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n"
@@ -30789,7 +30158,6 @@ msgid "Tools"
msgstr "Прылады"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -30817,17 +30185,15 @@ msgid "Drawing Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -30837,7 +30203,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -30856,7 +30221,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -30866,7 +30230,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -30876,7 +30239,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -30886,7 +30248,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -30896,7 +30257,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -30906,7 +30266,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/frameobjectbar\n"
@@ -30916,7 +30275,6 @@ msgid "Frame"
msgstr "Рамка"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -30953,7 +30311,6 @@ msgid "Insert"
msgstr "Уставіць"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/oleobjectbar\n"
@@ -30963,7 +30320,6 @@ msgid "OLE-Object"
msgstr "Аб'ект OLE"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/optimizetablebar\n"
@@ -30991,7 +30347,6 @@ msgid "Text Object"
msgstr "Тэкставы аб'ект"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -31010,7 +30365,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -31020,7 +30374,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -31039,7 +30392,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя фігуры"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -31049,7 +30401,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -31059,7 +30410,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -31078,7 +30428,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -31088,7 +30437,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -31116,14 +30464,13 @@ msgid "Navigation"
msgstr "Рух"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/annotation\n"
"UIName\n"
"value.text"
msgid "Comment"
-msgstr "Comm~ent"
+msgstr "Каментарый"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -31144,7 +30491,6 @@ msgid "Shape Text"
msgstr "Тэкст фігуры"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -31172,7 +30518,6 @@ msgid "Text Frame"
msgstr "Тэкставая рамка"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -31182,17 +30527,15 @@ msgid "Image"
msgstr "Выява"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Мультымедыя"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -31211,7 +30554,6 @@ msgid "Print Preview"
msgstr ""
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -31230,7 +30572,6 @@ msgid "Text"
msgstr "Тэкст"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -31240,7 +30581,6 @@ msgid "Standard"
msgstr "Стандартна"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n"
@@ -31256,7 +30596,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mail Merge"
-msgstr ""
+msgstr "Памнажэнне пошты"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -31268,7 +30608,6 @@ msgid "Tools"
msgstr "Прылады"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -31296,17 +30635,15 @@ msgid "Drawing Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -31316,7 +30653,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -31335,7 +30671,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -31345,7 +30680,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -31355,7 +30689,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -31365,7 +30698,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -31375,7 +30707,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -31385,7 +30716,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/frameobjectbar\n"
@@ -31395,7 +30725,6 @@ msgid "Frame"
msgstr "Рамка"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -31441,7 +30770,6 @@ msgid "Insert Object"
msgstr "Уставіць аб'ект"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/oleobjectbar\n"
@@ -31451,7 +30779,6 @@ msgid "OLE-Object"
msgstr "Аб'ект OLE"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/optimizetablebar\n"
@@ -31479,7 +30806,6 @@ msgid "Text Object"
msgstr "Тэкставы аб'ект"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -31498,7 +30824,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -31508,7 +30833,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -31527,7 +30851,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя формы"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -31537,7 +30860,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -31547,7 +30869,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -31566,7 +30887,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -31576,7 +30896,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -31595,17 +30914,15 @@ msgid "Fontwork Shape"
msgstr "Абрыс шрыфтавання"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/annotation\n"
"UIName\n"
"value.text"
msgid "Comment"
-msgstr "Comm~ent"
+msgstr "Каментарый"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -31633,7 +30950,6 @@ msgid "Text Frame"
msgstr "Тэкставая рамка"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -31643,7 +30959,6 @@ msgid "Image"
msgstr "Выява"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -31662,17 +30977,15 @@ msgid "Print Preview"
msgstr ""
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/source\n"
"UIName\n"
"value.text"
msgid "HTML Source"
-msgstr "Выточны тэкст HTML"
+msgstr "Зыходны тэкст HTML"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -31691,7 +31004,6 @@ msgid "Text"
msgstr "Тэкст"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -31701,7 +31013,6 @@ msgid "Standard"
msgstr "Стандартна"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -31711,7 +31022,6 @@ msgid "Find"
msgstr "Знайсці"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n"
@@ -31730,7 +31040,6 @@ msgid "Tools"
msgstr "Прылады"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/oleobjectbar\n"
@@ -31740,7 +31049,6 @@ msgid "OLE-Object"
msgstr "Аб'ект OLE"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -31750,7 +31058,6 @@ msgid "Table"
msgstr "Табліца"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/frameobjectbar\n"
@@ -31787,7 +31094,6 @@ msgid "Drawing Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -31797,7 +31103,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -31825,7 +31130,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -31835,7 +31139,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -31845,7 +31148,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -31855,7 +31157,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -31865,7 +31166,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -31875,7 +31175,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -31921,7 +31220,6 @@ msgid "Print Preview"
msgstr ""
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -31931,7 +31229,6 @@ msgid "Standard (Viewing Mode)"
msgstr "Стандартна (рэжым аглядання)"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -31941,7 +31238,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -31960,7 +31256,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя формы"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -31970,7 +31265,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -31980,7 +31274,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -31999,7 +31292,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -32009,14 +31301,13 @@ msgid "Callouts"
msgstr "Вынаскі"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/annotation\n"
"UIName\n"
"value.text"
msgid "Comment"
-msgstr "Comm~ent"
+msgstr "Каментарый"
#: WriterWindowState.xcu
msgctxt ""
@@ -32037,7 +31328,6 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -32065,7 +31355,6 @@ msgid "Text Frame"
msgstr "Тэкставая рамка"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -32075,14 +31364,13 @@ msgid "Image"
msgstr "Выява"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Медыя"
#: WriterWindowState.xcu
msgctxt ""
@@ -32091,10 +31379,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Стужка"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -32113,7 +31400,6 @@ msgid "Print Preview"
msgstr ""
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -32132,7 +31418,6 @@ msgid "Text"
msgstr "Тэкст"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -32151,7 +31436,6 @@ msgid "Notebookbar shortcuts"
msgstr ""
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -32161,7 +31445,6 @@ msgid "Find"
msgstr "Знайсці"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n"
@@ -32177,7 +31460,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mail Merge"
-msgstr ""
+msgstr "Памнажэнне пошты"
#: WriterWindowState.xcu
msgctxt ""
@@ -32189,14 +31472,13 @@ msgid "Tools"
msgstr "Прылады"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/linesbar\n"
"UIName\n"
"value.text"
msgid "Lines"
-msgstr "Радкі"
+msgstr "Лініі"
#: WriterWindowState.xcu
msgctxt ""
@@ -32205,7 +31487,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Arrows"
-msgstr ""
+msgstr "Стрэлкі"
#: WriterWindowState.xcu
msgctxt ""
@@ -32214,10 +31496,9 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "TSCP Classification"
-msgstr ""
+msgstr "Класіфікацыя TSCP"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -32245,17 +31526,15 @@ msgid "Drawing Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -32265,7 +31544,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -32284,7 +31562,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -32294,7 +31571,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -32304,7 +31580,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -32314,7 +31589,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -32324,7 +31598,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -32334,7 +31607,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/frameobjectbar\n"
@@ -32344,7 +31616,6 @@ msgid "Frame"
msgstr "Рамка"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -32381,7 +31652,6 @@ msgid "Insert"
msgstr "Уставіць"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/oleobjectbar\n"
@@ -32418,7 +31688,6 @@ msgid "Text Object"
msgstr "Тэкставы аб'ект"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -32437,7 +31706,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -32447,7 +31715,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -32466,7 +31733,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя формы"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -32476,7 +31742,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -32486,7 +31751,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -32505,7 +31769,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -32515,7 +31778,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
@@ -32534,7 +31796,6 @@ msgid "Fontwork Shape"
msgstr "Абрыс шрыфтавання"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/navigationobjectbar\n"
@@ -32577,17 +31838,16 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting (Styles)"
-msgstr ""
+msgstr "Фарматаванне (стылі)"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/annotation\n"
"UIName\n"
"value.text"
msgid "Comment"
-msgstr "Comm~ent"
+msgstr "Каментарый"
#: XFormsWindowState.xcu
msgctxt ""
@@ -32608,7 +31868,6 @@ msgid "Shape Text"
msgstr "Тэкст абрысу"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/form\n"
@@ -32636,7 +31895,6 @@ msgid "Text Frame"
msgstr "Тэкставая рамка"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -32646,17 +31904,15 @@ msgid "Image"
msgstr "Выява"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/media\n"
"UIName\n"
"value.text"
msgid "Media"
-msgstr "Media"
+msgstr "Мультымедыя"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/oleobject\n"
@@ -32675,7 +31931,6 @@ msgid "Print Preview"
msgstr ""
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/table\n"
@@ -32694,7 +31949,6 @@ msgid "Text"
msgstr "Тэкст"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/standardbar\n"
@@ -32704,7 +31958,6 @@ msgid "Standard"
msgstr "Стандартна"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/findbar\n"
@@ -32714,7 +31967,6 @@ msgid "Find"
msgstr "Знайсці"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/textobjectbar\n"
@@ -32733,7 +31985,6 @@ msgid "Tools"
msgstr "Прылады"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/tableobjectbar\n"
@@ -32761,17 +32012,15 @@ msgid "Drawing Object Properties"
msgstr "Уласцівасці рысаванага аб'екта"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/alignmentbar\n"
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr "Раўнаванне Аб'екты"
+msgstr "Раўнаванне аб'ектаў"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/bezierobjectbar\n"
@@ -32781,7 +32030,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/extrusionobjectbar\n"
@@ -32800,7 +32048,6 @@ msgid "Text Box Formatting"
msgstr "Фарматаванне тэкставага поля"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/formsfilterbar\n"
@@ -32810,7 +32057,6 @@ msgid "Form Filter"
msgstr "Фільтр формы"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/formsnavigationbar\n"
@@ -32820,7 +32066,6 @@ msgid "Form Navigation"
msgstr "Рух у форме"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/formcontrols\n"
@@ -32830,7 +32075,6 @@ msgid "Form Controls"
msgstr "Кантрольнікі"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/moreformcontrols\n"
@@ -32840,7 +32084,6 @@ msgid "More Controls"
msgstr "Больш кантрольнікаў"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/formdesign\n"
@@ -32850,7 +32093,6 @@ msgid "Form Design"
msgstr "Распрацоўка форм"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/frameobjectbar\n"
@@ -32860,7 +32102,6 @@ msgid "Frame"
msgstr "Рамка"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/fullscreenbar\n"
@@ -32906,7 +32147,6 @@ msgid "Insert Object"
msgstr "Уставіць аб'ект"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/oleobjectbar\n"
@@ -32916,7 +32156,6 @@ msgid "OLE-Object"
msgstr "Аб'ект OLE"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/optimizetablebar\n"
@@ -32944,7 +32183,6 @@ msgid "Text Object"
msgstr "Тэкставы аб'ект"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/viewerbar\n"
@@ -32963,7 +32201,6 @@ msgid "Drawing"
msgstr "Рысунак"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/mediaobjectbar\n"
@@ -32973,7 +32210,6 @@ msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/colorbar\n"
@@ -32992,7 +32228,6 @@ msgid "Basic Shapes"
msgstr "Звычайныя формы"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/arrowshapes\n"
@@ -33002,7 +32237,6 @@ msgid "Block Arrows"
msgstr "Блокі і стрэлкі"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/flowchartshapes\n"
@@ -33012,7 +32246,6 @@ msgid "Flowchart"
msgstr "Блок-схема"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/starshapes\n"
@@ -33031,7 +32264,6 @@ msgid "Symbol Shapes"
msgstr "Сімвалы"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/calloutshapes\n"
@@ -33041,7 +32273,6 @@ msgid "Callouts"
msgstr "Вынаскі"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/fontworkobjectbar\n"
diff --git a/source/be/readlicense_oo/docs.po b/source/be/readlicense_oo/docs.po
index 4d1519e2240..d0f3dd2d034 100644
--- a/source/be/readlicense_oo/docs.po
+++ b/source/be/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: docs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-04-26 18:42+0000\n"
+"PO-Revision-Date: 2017-06-18 19:38+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493232172.000000\n"
+"X-POOTLE-MTIME: 1497814716.000000\n"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"Welcome\n"
@@ -96,7 +95,6 @@ msgid "If you appreciate their efforts, and would like to ensure that ${PRODUCTN
msgstr "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see <a href=\"http://www.documentfoundation.org/contribution/\">http://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"rr3fgf42r\n"
@@ -105,7 +103,6 @@ msgid "Notes on Installation"
msgstr "Заўвагі па ўстаноўцы"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"javaneeded\n"
@@ -114,7 +111,6 @@ msgid "${PRODUCTNAME} requires a recent version of Java Runtime Environment (JRE
msgstr "Для поўнай функцыянальнасці ${PRODUCTNAME} патрабуе наяўнасці Java Runtime Environment (JRE) сучаснай версіі. У інсталяцыйны пакет ${PRODUCTNAME} гэтае асяроддзе не ўваходзіць і павінна ставіцца асобна."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"sdfsdfgf42r\n"
@@ -139,7 +135,6 @@ msgid "Microsoft Windows XP SP3, Vista, 7, 8, or 10"
msgstr "Microsoft Windows XP SP3, Vista, 7, 8, or 10"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"edssc3d\n"
@@ -157,7 +152,6 @@ msgid "Registration of ${PRODUCTNAME} as default application for Microsoft Offic
msgstr "Registration of ${PRODUCTNAME} as default application for Microsoft Office formats can be forced or suppressed by using the following command line switches with the installer:"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"MSOReg2\n"
@@ -166,7 +160,6 @@ msgid "<tt>REGISTER_ALL_MSO_TYPES=1</tt> will force registration of ${PRODUCTNAM
msgstr "<tt>REGISTER_ALL_MSO_TYPES=1</tt> прымусіць рэгістрацыю ${PRODUCTNAME} як прадвызначанай праграмы для фарматаў Microsoft Office."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"MSOReg3\n"
@@ -216,16 +209,15 @@ msgctxt ""
"s255we\n"
"readmeitem.text"
msgid "freetype version 2.2.0 or higher;"
-msgstr ""
+msgstr "freetype версіі 2.2.0 ці вышэй;"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"s256we\n"
"readmeitem.text"
msgid "gtk version 2.10.4 or higher;"
-msgstr "or"
+msgstr "gtk версіі 2.10.4 ці вышэй;"
#: readme.xrm
msgctxt ""
@@ -620,7 +612,6 @@ msgid "The Mozilla address book driver requires the <tt>SUNWzlib</tt> package. T
msgstr "<tt></tt> з<tt></tt> ад."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"awe1\n"
@@ -661,7 +652,6 @@ msgid "File locking is enabled by default in ${PRODUCTNAME}. On a network that u
msgstr "Блакаванне файлаў у ${PRODUCTNAME} тыпова ўключана. У сетках з пратаколам Network File System (NFS) мусіць быць актыўным дэман блакавання файлаў для NFS. Каб адключыць блакаванне, адрэдагуйце скрыпт <tt>soffice</tt>, замяніўшы радок \"<tt>export SAL_ENABLE_FILE_LOCKING</tt>\" на \"<tt># export SAL_ENABLE_FILE_LOCKING</tt>\". Калі вы адключаеце блакаванне файлаў, права запісу ў дакумент больш не абмяжоўваецца карыстальнікам, які першым адкрыў гэты дакумент."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"gfh6w0\n"
@@ -695,7 +685,6 @@ msgid "When sending a document via 'File - Send - Document as E-mail' or 'Docume
msgstr "Файл Адаслаць Дакумент E or Дакумент PDF or Праграма цаль уніз number<a href=\"http://www.microsoft.com\">http://www.microsoft.com</a> Base для."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"aw22\n"
@@ -712,7 +701,6 @@ msgid "For more information on the accessibility features in ${PRODUCTNAME}, see
msgstr "Больш падрабязная інфармацыя па магчымасцях даступнасці ў ${PRODUCTNAME} ёсць на старонцы <a href=\"http://www.libreoffice.org/accessibility/\">http://www.libreoffice.org/accessibility/</a>"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"support\n"
@@ -779,7 +767,6 @@ msgid "As a user, you are already a valuable part of the suite's development pro
msgstr "з і падобна на актыўна з і старонак на*<a href=\"http://www.libreoffice.org/contribution/\">http://www.libreoffice.org/contribution/</a>"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"howtostart\n"
@@ -797,7 +784,6 @@ msgid "The best way to start contributing is to subscribe to one or more of the
msgstr "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"http://www.libreoffice.org/develop/\">http://www.libreoffice.org/develop/</a>."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"subscribe\n"
@@ -823,22 +809,20 @@ msgid "News: announce@documentfoundation.org *recommended to all users* (light t
msgstr ""
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"subscribelist2\n"
"readmeitem.text"
msgid "Main user list: users@global.libreoffice.org *easy way to lurk on discussions* (heavy traffic)"
-msgstr "Галоўная рассылка для карыстальнікаў: users@libreoffice.org *сачыць за абмеркаваннямі проста* (вялікі трафік)"
+msgstr "Галоўная рассылка для карыстальнікаў: users@global.libreoffice.org *сачыць за абмеркаваннямі проста* (вялікі трафік)"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"subscribelist3\n"
"readmeitem.text"
msgid "Marketing project: marketing@global.libreoffice.org *beyond development* (getting heavy)"
-msgstr "Праект маркетынга: marketing@libreoffice.org *па-за распрацоўкай* (трафік пачынае рабіцца вялікім)"
+msgstr "Праект маркетынгу: marketing@global.libreoffice.org *па-за распрацоўкай* (трафік пачынае рабіцца вялікім)"
#: readme.xrm
#, fuzzy
@@ -850,7 +834,6 @@ msgid "General developer list: libreoffice@lists.freedesktop.org (heavy traffic)
msgstr "Агульнаеlibreoffice@lists.freedesktop.org"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"joining0\n"
@@ -867,13 +850,12 @@ msgid "You can make major contributions to this important open source project ev
msgstr "Вы можаце зрабіць важны ўклад у гэты праект адкрытага праграмнага забеспячэння, нават калі ваш досвед распрацоўкі ці кадавання праграм малы. Так, вы!"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"credits\n"
"readmeitem.text"
msgid "We hope you enjoy working with the new ${PRODUCTNAME} ${PRODUCTVERSION} and will join us online."
-msgstr "Спадзяемся, што вам спадабаецца праца з новым ${PRODUCTNAME} ${PRODUCTVERSION}, і што вы далучыцеся да нас у Сеціве."
+msgstr "Спадзяёмся, што вам спадабаецца праца з новым ${PRODUCTNAME} ${PRODUCTVERSION}, і што вы далучыцеся да нас у Сеціве."
#: readme.xrm
#, fuzzy
diff --git a/source/be/reportdesign/source/ui/dlg.po b/source/be/reportdesign/source/ui/dlg.po
index c5671a1f1e6..6934c4148a5 100644
--- a/source/be/reportdesign/source/ui/dlg.po
+++ b/source/be/reportdesign/source/ui/dlg.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dlg\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-15 19:37+0000\n"
+"PO-Revision-Date: 2017-06-18 19:38+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492285032.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497814725.000000\n"
#: CondFormat.src
msgctxt ""
@@ -170,7 +170,6 @@ msgid "Functions"
msgstr "Функцыі"
#: Navigator.src
-#, fuzzy
msgctxt ""
"Navigator.src\n"
"RID_STR_GROUPS\n"
diff --git a/source/be/reportdesign/source/ui/inspection.po b/source/be/reportdesign/source/ui/inspection.po
index fc3c0e3be72..32aa146994e 100644
--- a/source/be/reportdesign/source/ui/inspection.po
+++ b/source/be/reportdesign/source/ui/inspection.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: inspection\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-22 17:34+0000\n"
+"PO-Revision-Date: 2017-06-17 17:28+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492882461.000000\n"
+"X-POOTLE-MTIME: 1497720501.000000\n"
#: inspection.src
msgctxt ""
@@ -253,7 +253,7 @@ msgctxt ""
"Per Column\n"
"itemlist.text"
msgid "Per Column"
-msgstr ""
+msgstr "На калонку"
#: inspection.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: inspection.src
msgctxt ""
@@ -271,7 +271,7 @@ msgctxt ""
"Section\n"
"itemlist.text"
msgid "Section"
-msgstr ""
+msgstr "Раздзел"
#: inspection.src
msgctxt ""
@@ -280,7 +280,7 @@ msgctxt ""
"Automatic\n"
"itemlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Аўтаматычна"
#: inspection.src
msgctxt ""
diff --git a/source/be/reportdesign/source/ui/report.po b/source/be/reportdesign/source/ui/report.po
index b1e4ec3e912..c49c2a4c0b4 100644
--- a/source/be/reportdesign/source/ui/report.po
+++ b/source/be/reportdesign/source/ui/report.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: report\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 19:38+0000\n"
+"PO-Revision-Date: 2017-06-18 19:38+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492285117.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497814733.000000\n"
#: report.src
msgctxt ""
@@ -350,7 +350,6 @@ msgid "Delete"
msgstr "Сцерці"
#: report.src
-#, fuzzy
msgctxt ""
"report.src\n"
"RID_STR_FUNCTION\n"
diff --git a/source/be/sc/source/ui/StatisticsDialogs.po b/source/be/sc/source/ui/StatisticsDialogs.po
index a08b6bff2a9..46633ba69c9 100644
--- a/source/be/sc/source/ui/StatisticsDialogs.po
+++ b/source/be/sc/source/ui/StatisticsDialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-11-11 00:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 17:29+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447203541.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497720549.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_ANOVA_LABEL_WITHIN_GROUPS\n"
"string.text"
msgid "Within Groups"
-msgstr ""
+msgstr "Унутры груп"
#: StatisticsDialogs.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_ANOVA_LABEL_SOURCE_OF_VARIATION\n"
"string.text"
msgid "Source of Variation"
-msgstr ""
+msgstr "Крыніца дысперсіі"
#: StatisticsDialogs.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_ANOVA_LABEL_SS\n"
"string.text"
msgid "SS"
-msgstr ""
+msgstr "SS"
#: StatisticsDialogs.src
msgctxt ""
diff --git a/source/be/sc/source/ui/miscdlgs.po b/source/be/sc/source/ui/miscdlgs.po
index e20646fc846..3fadf9bb105 100644
--- a/source/be/sc/source/ui/miscdlgs.po
+++ b/source/be/sc/source/ui/miscdlgs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: miscdlgs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 19:00+0000\n"
+"PO-Revision-Date: 2017-06-14 16:07+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492282816.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497456468.000000\n"
#: acredlin.src
msgctxt ""
@@ -41,7 +41,6 @@ msgid "Sheet inserted "
msgstr "Аркуш устаўлены "
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_DELETE_COLS\n"
@@ -50,7 +49,6 @@ msgid "Column deleted"
msgstr "Калонка сцёрта"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_DELETE_ROWS\n"
@@ -59,7 +57,6 @@ msgid "Row deleted"
msgstr "Радок сцёрты"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_DELETE_TABS\n"
@@ -68,7 +65,6 @@ msgid "Sheet deleted"
msgstr "Аркуш сцёрты"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_MOVE\n"
@@ -77,7 +73,6 @@ msgid "Range moved"
msgstr "Дыяпазон перамешчаны"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_CONTENT\n"
@@ -86,7 +81,6 @@ msgid "Changed contents"
msgstr "Змененае змесціва"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_CONTENT_WITH_CHILD\n"
@@ -95,7 +89,6 @@ msgid "Changed contents"
msgstr "Змененае змесціва"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_CHILD_CONTENT\n"
@@ -104,7 +97,6 @@ msgid "Changed to "
msgstr "Зменена на"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_CHILD_ORGCONTENT\n"
@@ -113,7 +105,6 @@ msgid "Original"
msgstr "Пачатковыя"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_REJECT\n"
@@ -122,7 +113,6 @@ msgid "Changes rejected"
msgstr "Папраўкі адхіленыя"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_ACCEPTED\n"
@@ -131,7 +121,6 @@ msgid "Accepted"
msgstr "Прынята"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_REJECTED\n"
@@ -140,7 +129,6 @@ msgid "Rejected"
msgstr "Адхілена"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_NO_ENTRY\n"
@@ -149,7 +137,6 @@ msgid "No Entry"
msgstr "Няма ўводу"
#: acredlin.src
-#, fuzzy
msgctxt ""
"acredlin.src\n"
"STR_CHG_EMPTY\n"
diff --git a/source/be/sc/source/ui/navipi.po b/source/be/sc/source/ui/navipi.po
index 87f4ea438a6..a32e1414820 100644
--- a/source/be/sc/source/ui/navipi.po
+++ b/source/be/sc/source/ui/navipi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: navipi\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 16:14+0000\n"
+"PO-Revision-Date: 2017-06-14 16:08+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,11 +13,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492272851.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497456526.000000\n"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"SCSTR_CONTENT_ROOT\n"
@@ -55,7 +54,7 @@ msgctxt ""
"SCSTR_CONTENT_GRAPHIC\n"
"string.text"
msgid "Images"
-msgstr ""
+msgstr "Відарысы"
#: navipi.src
msgctxt ""
@@ -95,7 +94,7 @@ msgctxt ""
"SCSTR_DRAGMODE\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Лад \"перацягвання\""
#: navipi.src
msgctxt ""
@@ -103,7 +102,7 @@ msgctxt ""
"SCSTR_DISPLAY\n"
"string.text"
msgid "Display"
-msgstr ""
+msgstr "Паказаць"
#: navipi.src
msgctxt ""
@@ -111,7 +110,7 @@ msgctxt ""
"SCSTR_ACTIVE\n"
"string.text"
msgid "active"
-msgstr ""
+msgstr "актыўны"
#: navipi.src
msgctxt ""
@@ -119,7 +118,7 @@ msgctxt ""
"SCSTR_NOTACTIVE\n"
"string.text"
msgid "inactive"
-msgstr ""
+msgstr "неактыўны"
#: navipi.src
msgctxt ""
@@ -127,7 +126,7 @@ msgctxt ""
"SCSTR_HIDDEN\n"
"string.text"
msgid "hidden"
-msgstr ""
+msgstr "скрыты"
#: navipi.src
msgctxt ""
@@ -143,7 +142,7 @@ msgctxt ""
"SCSTR_QHLP_SCEN_LISTBOX\n"
"string.text"
msgid "Scenario Name"
-msgstr ""
+msgstr "Назва сцэнарыя"
#: navipi.src
msgctxt ""
@@ -151,4 +150,4 @@ msgctxt ""
"SCSTR_QHLP_SCEN_COMMENT\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Каментарый"
diff --git a/source/be/sc/source/ui/src.po b/source/be/sc/source/ui/src.po
index dbb01d290cb..89f7d48130b 100644
--- a/source/be/sc/source/ui/src.po
+++ b/source/be/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 09:23+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-18 19:50+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495790598.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497815440.000000\n"
#: globstr.src
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"STR_UNDO_SHOWALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Show All Comments"
-msgstr ""
+msgstr "Паказаць усе каментарыі"
#: globstr.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"STR_UNDO_HIDEALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Hide All Comments"
-msgstr ""
+msgstr "Скрыць усе каментарыі"
#: globstr.src
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"STR_UNDO_UNPROTECT_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Unprotect sheet"
-msgstr ""
+msgstr "Без засцерагання аркуша"
#: globstr.src
msgctxt ""
@@ -925,7 +925,7 @@ msgctxt ""
"STR_TABLE_DEF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sheet"
-msgstr ""
+msgstr "Аркуш"
#: globstr.src
msgctxt ""
@@ -997,7 +997,7 @@ msgctxt ""
"STR_PIVOT_TOTAL+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Total"
-msgstr ""
+msgstr "Разам"
#: globstr.src
msgctxt ""
@@ -1211,7 +1211,7 @@ msgctxt ""
"STR_FUN_TEXT_SUM+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Сума"
#: globstr.src
msgctxt ""
@@ -1251,25 +1251,23 @@ msgctxt ""
"STR_FUN_TEXT_MEDIAN+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Median"
-msgstr ""
+msgstr "Медыяна"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_FUN_TEXT_MAX+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Max"
-msgstr "Максімальна"
+msgstr "Максімум"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_FUN_TEXT_MIN+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Min"
-msgstr "Мінімальна"
+msgstr "Мінімум"
#: globstr.src
msgctxt ""
@@ -1360,7 +1358,6 @@ msgid "Text Attributes"
msgstr "Атрыбуты тэксту"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_HFCMD_DELIMITER+RID_GLOBSTR_OFFSET\n"
@@ -1441,7 +1438,6 @@ msgid "You cannot change only part of an array."
msgstr "Немагчыма мяняць толькі частку матрыцы."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_PAGEHEADER+RID_GLOBSTR_OFFSET\n"
@@ -1450,7 +1446,6 @@ msgid "Header"
msgstr "Калантытул верхні"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_PAGEFOOTER+RID_GLOBSTR_OFFSET\n"
@@ -1659,7 +1654,6 @@ msgid "Grid color"
msgstr "Колер рашоткі"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_CELL_FILTER+RID_GLOBSTR_OFFSET\n"
@@ -1706,7 +1700,6 @@ msgstr ""
"Паспрабуйце з іншай назвай."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_AREA+RID_GLOBSTR_OFFSET\n"
@@ -1870,10 +1863,9 @@ msgctxt ""
"STR_STYLENAME_STANDARD+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Тыпова"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_STYLENAME_RESULT+RID_GLOBSTR_OFFSET\n"
@@ -1973,7 +1965,7 @@ msgctxt ""
"STR_UNDO_RENAME_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Перайменаваць аркуш"
#: globstr.src
msgctxt ""
@@ -2016,22 +2008,20 @@ msgid "Append sheet"
msgstr "Прылучыць аркуш"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_UNDO_SHOWTAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Show Sheet"
-msgstr "Паказваць аркуш"
+msgstr "Паказаць аркуш"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_UNDO_SHOWTABS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Show Sheets"
-msgstr "Паказваць Аркушы"
+msgstr "Паказаць аркушы"
#: globstr.src
msgctxt ""
@@ -2042,7 +2032,6 @@ msgid "Hide sheet"
msgstr "Не паказваць аркуш"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_UNDO_HIDETABS+RID_GLOBSTR_OFFSET\n"
@@ -2128,7 +2117,7 @@ msgctxt ""
"STR_VOBJ_OBJECT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Аб'екты/відарысы"
#: globstr.src
msgctxt ""
@@ -2155,7 +2144,6 @@ msgid "Show"
msgstr "Паказваць"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_VOBJ_MODE_HIDE+RID_GLOBSTR_OFFSET\n"
@@ -2180,13 +2168,12 @@ msgid "Left-to-right"
msgstr "Злева направа"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_SCATTR_PAGE_NOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Comments"
-msgstr "Каментары"
+msgstr "Каментарыі"
#: globstr.src
msgctxt ""
@@ -2205,7 +2192,6 @@ msgid "Row & Column Headers"
msgstr "Загалоўкі радкоў і калонак"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_SCATTR_PAGE_FORMULAS+RID_GLOBSTR_OFFSET\n"
@@ -2262,7 +2248,6 @@ msgid "Fit print range(s) to width/height"
msgstr "Дапасоўваць абсяг(і) друку да шырыні/вышыні"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_SCATTR_PAGE_SCALE_WIDTH+RID_GLOBSTR_OFFSET\n"
@@ -2271,7 +2256,6 @@ msgid "Width"
msgstr "Шырыня"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_SCATTR_PAGE_SCALE_HEIGHT+RID_GLOBSTR_OFFSET\n"
@@ -2461,7 +2445,7 @@ msgctxt ""
"STR_GRAPHICNAME+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: globstr.src
msgctxt ""
@@ -2556,7 +2540,6 @@ msgid "More..."
msgstr "Яшчэ..."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_ERR_INVALID_AREA+RID_GLOBSTR_OFFSET\n"
@@ -2613,7 +2596,6 @@ msgid "Pivot Table Corner"
msgstr "Вугал зводкавай табліцы"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_OPERATION_FILTER+RID_GLOBSTR_OFFSET\n"
@@ -2622,7 +2604,6 @@ msgid "Filter"
msgstr "Фільтр"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_OPERATION_SORT+RID_GLOBSTR_OFFSET\n"
@@ -2631,7 +2612,6 @@ msgid "Sort"
msgstr "Парадкаваць"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_OPERATION_SUBTOTAL+RID_GLOBSTR_OFFSET\n"
@@ -2640,7 +2620,6 @@ msgid "Subtotals"
msgstr "Прамежкавыя вынікі"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_OPERATION_NONE+RID_GLOBSTR_OFFSET\n"
@@ -2673,7 +2652,6 @@ msgid "Height:"
msgstr "Вышыня:"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_TIP_HIDE+RID_GLOBSTR_OFFSET\n"
@@ -2706,7 +2684,6 @@ msgid "#1 inserted"
msgstr "#1 устаўлена"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_CHANGED_DELETE+RID_GLOBSTR_OFFSET\n"
@@ -2725,7 +2702,7 @@ msgstr "Абсяг перамешчаны з #1 у #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2734,11 +2711,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Гэта дзеянне спыніць занатоўванне змяненняў.\n"
-"Таксама, будзе страчана ўся інфармацыя пра змяненні.\n"
-"\n"
-"Дык ці трэба спыняць занатоўванне?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2877,7 +2849,6 @@ msgid "Manual"
msgstr "Па-свойму"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_RECALC_AUTO+RID_GLOBSTR_OFFSET\n"
@@ -2896,10 +2867,10 @@ msgstr "Не падтрымліваюцца ўкладзеныя масівы."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Тэкст у калонкі"
+msgstr ""
#: globstr.src
msgctxt ""
@@ -3185,7 +3156,7 @@ msgctxt ""
"STR_HEADER_NAME+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Name"
-msgstr ""
+msgstr "Назва"
#: globstr.src
msgctxt ""
@@ -3193,7 +3164,7 @@ msgctxt ""
"STR_HEADER_RANGE_OR_EXPR+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Дыяпазон або формульны выраз"
#: globstr.src
msgctxt ""
@@ -3201,7 +3172,7 @@ msgctxt ""
"STR_HEADER_SCOPE+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Scope"
-msgstr ""
+msgstr "Абсяг бачнасці"
#: globstr.src
msgctxt ""
@@ -3220,13 +3191,12 @@ msgid "Document (Global)"
msgstr "Дакумент (глабальна)"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_ERR_NAME_EXISTS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid name. Already in use for the selected scope."
-msgstr "цаль для."
+msgstr "Недапушчальная назва. Ужо выкарыстана ў выбраным абсягу бачнасці."
#: globstr.src
msgctxt ""
@@ -3259,13 +3229,12 @@ msgid "This Document is referenced by another document and not yet saved. Closin
msgstr "На гэты незапісаны дакумент спасылаюцца іншыя дакументы. Закрыўшы яго без запісу, можна страціць даныя."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_HEADER_RANGE+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Range"
-msgstr "У інтэрвале"
+msgstr "Дыяпазон"
#: globstr.src
msgctxt ""
@@ -3276,7 +3245,6 @@ msgid "First Condition"
msgstr "Першая ўмова"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_COND_CONDITION+RID_GLOBSTR_OFFSET\n"
@@ -3682,7 +3650,6 @@ msgid "You cannot insert or delete cells when the affected range intersects with
msgstr "or range з."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_SECONDS+RID_GLOBSTR_OFFSET\n"
@@ -3691,16 +3658,14 @@ msgid "Seconds"
msgstr "Секунды"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_MINUTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Minutes"
-msgstr "мінуты"
+msgstr "Мінуты"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_HOURS+RID_GLOBSTR_OFFSET\n"
@@ -3709,7 +3674,6 @@ msgid "Hours"
msgstr "Гадзіны"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_DAYS+RID_GLOBSTR_OFFSET\n"
@@ -3718,7 +3682,6 @@ msgid "Days"
msgstr "Дні"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_MONTHS+RID_GLOBSTR_OFFSET\n"
@@ -3727,7 +3690,6 @@ msgid "Months"
msgstr "Месяцы"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_QUARTERS+RID_GLOBSTR_OFFSET\n"
@@ -3736,7 +3698,6 @@ msgid "Quarters"
msgstr "Кварталы"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_DPFIELD_GROUP_BY_YEARS+RID_GLOBSTR_OFFSET\n"
@@ -3745,7 +3706,6 @@ msgid "Years"
msgstr "Гады"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_INVALIDVAL+RID_GLOBSTR_OFFSET\n"
@@ -3754,22 +3714,20 @@ msgid "Invalid target value."
msgstr "Недапушчальнае мэтавае значэнне."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_INVALIDVAR+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Undefined name for variable cell."
-msgstr "Невызначаная назва клеткі з зменнай."
+msgstr "Нявызначаная назва клеткі з зменнай."
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_INVALIDFORM+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Undefined name as formula cell."
-msgstr "Невызначаная назва клеткі з формулай."
+msgstr "Нявызначаная назва клеткі з формулай."
#: globstr.src
msgctxt ""
@@ -3780,13 +3738,12 @@ msgid "Formula cell must contain a formula."
msgstr ""
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_INVALIDINPUT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid input."
-msgstr "Invalid input."
+msgstr "Недапушчальны ўвод."
#: globstr.src
#, fuzzy
@@ -4641,7 +4598,6 @@ msgid "Adds all the cells of a data range where the contents match the search cr
msgstr "Складвае ўсе клеткі ў абсягу даных, змесціва якіх адпавядае ўмове пошуку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4651,7 +4607,6 @@ msgid "Database"
msgstr "База даных"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4661,7 +4616,6 @@ msgid "The range of cells containing data."
msgstr "Абсяг клетак з данымі."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4671,7 +4625,6 @@ msgid "Database field"
msgstr "Поле базы даных"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4681,7 +4634,6 @@ msgid "Indicates which database field (column) is to be used for the search crit
msgstr "Паказвае, якое поле (калонка) базы даных будзе ўжыта для ўмовы пошуку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4691,7 +4643,6 @@ msgid "Search criteria"
msgstr "Умовы пошуку"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4710,7 +4661,6 @@ msgid "Determines the variance of all the cells in a data range where the conten
msgstr "Вылічвае дысперсію ўсіх клетак ў абсягу даных, змесціва якіх адпавядае ўмове пошуку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4720,7 +4670,6 @@ msgid "Database"
msgstr "База даных"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4730,7 +4679,6 @@ msgid "The range of cells containing data."
msgstr "Абсяг клетак з данымі."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4740,7 +4688,6 @@ msgid "Database field"
msgstr "Поле базы даных"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4750,7 +4697,6 @@ msgid "Indicates which database field (column) is to be used for the search crit
msgstr "Паказвае, якое поле (калонка) базы даных будзе ўжыта для ўмовы пошуку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4760,7 +4706,6 @@ msgid "Search criteria"
msgstr "Умовы пошуку"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4779,7 +4724,6 @@ msgid "Determines variance of a population based on all cells in a data range wh
msgstr "Вылічвае дысперсію генеральнай сукупнасці ўсіх клетак ў абсягу даных, змесціва якіх адпавядае ўмове пошуку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4789,7 +4733,6 @@ msgid "Database"
msgstr "База даных"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4799,7 +4742,6 @@ msgid "The range of cells containing data."
msgstr "Абсяг клетак з данымі."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4809,7 +4751,6 @@ msgid "Database field"
msgstr "Поле базы даных"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4819,7 +4760,6 @@ msgid "Indicates which database field (column) is to be used for the search crit
msgstr "Паказвае, якое поле (калонка) базы даных будзе ўжыта для ўмовы пошуку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -4829,7 +4769,6 @@ msgid "Search criteria"
msgstr "Умовы пошуку"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -5028,7 +4967,6 @@ msgid "Returns the number of workdays between two dates using arguments to indic
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -5047,7 +4985,6 @@ msgid "Start date for calculation."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -7036,24 +6973,22 @@ msgid "Life"
msgstr "Life"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Useful life. The number of periods in the useful life of the asset.\n"
"itemlist.text"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Перыяд выкарыстання (эксплуатацыі) актыву."
+msgstr "Тэрмін выкарыстання. Колькасць перыядаў выкарыстання (эксплуатацыі) актыву."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Period\n"
"itemlist.text"
msgid "Period"
-msgstr "Period"
+msgstr "Перыяд"
#: scfuncs.src
msgctxt ""
@@ -7065,14 +7000,13 @@ msgid "Period. The depreciation period in the same time unit as the average usef
msgstr "Перыяд амартызацыі, лічаны ў тых жа часавых адзінках, што і сярэдні жыццёвы цыкл аб'екта."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Factor\n"
"itemlist.text"
msgid "Factor"
-msgstr "Factor"
+msgstr "Каэфіцыент"
#: scfuncs.src
msgctxt ""
@@ -7093,14 +7027,13 @@ msgid "Returns the real depreciation of an asset for a specified period using th
msgstr "Вяртае амартызацыю аб'екта за пэўны перыяд, з выкарыстаннем метада сталага зніжэння баланса."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Cost\n"
"itemlist.text"
msgid "Cost"
-msgstr "Cost"
+msgstr "Кошт"
#: scfuncs.src
msgctxt ""
@@ -7131,34 +7064,31 @@ msgid "Salvage: The remaining value of the asset at the end of its life."
msgstr "Ліквідацыйная вартасць актыву ў канцы перыяду выкарыстання."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Life\n"
"itemlist.text"
msgid "Life"
-msgstr "Life"
+msgstr "Тэрмін эксплуатацыі"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Useful life. The number of periods in the useful life of the asset.\n"
"itemlist.text"
msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Перыяд выкарыстання (эксплуатацыі) актыву."
+msgstr "Тэрмін выкарыстання. Колькасць перыядаў выкарыстання (эксплуатацыі) актыву."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Period\n"
"itemlist.text"
msgid "Period"
-msgstr "Period"
+msgstr "Перыяд"
#: scfuncs.src
msgctxt ""
@@ -7197,14 +7127,13 @@ msgid "Variable declining balance. Returns the declining balance depreciation fo
msgstr "Зменна-зніжаны баланс. Вяртае значэнне амартызацыі за пэўны перыяд."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Cost\n"
"itemlist.text"
msgid "Cost"
-msgstr "Cost"
+msgstr "Кошт"
#: scfuncs.src
msgctxt ""
@@ -7974,7 +7903,6 @@ msgid "value"
msgstr "value"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_IS_NON_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -7993,17 +7921,15 @@ msgid "Returns TRUE if value is text."
msgstr "Вяртае \"сапраўдна\", калі значэнне - тэкст."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_IS_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
"value\n"
"itemlist.text"
msgid "value"
-msgstr "value"
+msgstr "значэнне"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_IS_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -8022,17 +7948,15 @@ msgid "Returns TRUE if value is a number."
msgstr "Вяртае \"сапраўдна\", калі значэнне - лік."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_IS_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
"value\n"
"itemlist.text"
msgid "value"
-msgstr "value"
+msgstr "значэнне"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_IS_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -8105,14 +8029,13 @@ msgid "Converts a value to a number."
msgstr "Ператварае значэнне ў лік."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
"value\n"
"itemlist.text"
msgid "value"
-msgstr "value"
+msgstr "значэнне"
#: scfuncs.src
msgctxt ""
@@ -9988,7 +9911,6 @@ msgid "Calculates the natural logarithm of a number."
msgstr "Вылічвае натуральны лагарыфм ліку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -10016,7 +9938,6 @@ msgid "Calculates the base-10 logarithm of a number."
msgstr "Вылічвае дзесятковы лагарыфм ліку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_LOG10+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -10026,7 +9947,6 @@ msgid "Number"
msgstr "Лік"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_LOG10+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -10045,7 +9965,6 @@ msgid "Calculates the factorial of a number."
msgstr "Вылічвае фактарыял ліку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_FACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -10118,7 +10037,6 @@ msgid "Returns the algebraic sign of a number."
msgstr "Вяртае алгебраічны знак ліку."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_PLUS_MINUS+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -10152,7 +10070,7 @@ msgctxt ""
"Function\n"
"itemlist.text"
msgid "Function"
-msgstr ""
+msgstr "Функцыя"
#: scfuncs.src
msgctxt ""
@@ -10164,14 +10082,13 @@ msgid "Function index. Is an index of the possible functions Total, Max, ..."
msgstr "Індэкс функцыі. Гэта індэкс магчымых функцый Total, Max, ..."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_SUB_TOTAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
"range \n"
"itemlist.text"
msgid "range "
-msgstr "range "
+msgstr "дыяпазон "
#: scfuncs.src
msgctxt ""
@@ -10962,7 +10879,6 @@ msgid "Significance"
msgstr "Significance"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -10972,14 +10888,13 @@ msgid "The number to whose multiple the value is to be rounded down."
msgstr "Лік, да кратнага якога значэнне акругляецца ўніз."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Mode\n"
"itemlist.text"
msgid "Mode"
-msgstr "Mode"
+msgstr "Рэжым"
#: scfuncs.src
msgctxt ""
@@ -10991,27 +10906,24 @@ msgid "For negative numbers; if given and not equal to or less than zero rounds
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Rounds number down (towards -∞) to the nearest multiple of significance.\n"
"itemlist.text"
msgid "Rounds number down (towards -∞) to the nearest multiple of significance."
-msgstr "Акругляе лік уніз да найбліжэйшага кратнага пэўнай значнасці."
+msgstr "Акругляе лік уніз (к -∞) да найбліжэйшага кратнага пэўнай значнасці."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Number\n"
"itemlist.text"
msgid "Number"
-msgstr "лік"
+msgstr "Лік"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -12964,7 +12876,6 @@ msgid "data"
msgstr "data"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_LARGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -13001,17 +12912,15 @@ msgid "Returns the k-th smallest value of a sample."
msgstr "Вяртае k-ае найменшае значэнне выбаркі."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
"data\n"
"itemlist.text"
msgid "data"
-msgstr "data"
+msgstr "даныя"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -14178,14 +14087,13 @@ msgid "The success probability of a trial."
msgstr "Імавернасць \"поспеху\" выпрабавання."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
"alpha\n"
"itemlist.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "альфа"
#: scfuncs.src
msgctxt ""
@@ -15771,7 +15679,6 @@ msgid "Start"
msgstr "Пачатак"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -15781,7 +15688,6 @@ msgid "The starting value for the value interval of the distribution."
msgstr "Пачатковае значэнне ў інтэрвале размеркавання."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -15791,7 +15697,6 @@ msgid "End"
msgstr "Канец"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -15828,14 +15733,13 @@ msgid "The value for which the beta distribution is to be calculated."
msgstr "Значэнне, для якога вылічваецца бета-размеркаванне."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
"alpha\n"
"itemlist.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "альфа"
#: scfuncs.src
msgctxt ""
@@ -18912,7 +18816,7 @@ msgctxt ""
"target\n"
"itemlist.text"
msgid "target"
-msgstr ""
+msgstr "мэта"
#: scfuncs.src
msgctxt ""
@@ -19330,7 +19234,7 @@ msgctxt ""
"The date or numeric array; a consistent step between values is needed.\n"
"itemlist.text"
msgid "The date or numeric array; a consistent step between values is needed."
-msgstr ""
+msgstr "Дата або масіў лікаў; патрэбен адпаведны крок паміж значэннямі."
#: scfuncs.src
msgctxt ""
@@ -19339,7 +19243,7 @@ msgctxt ""
"confidence level\n"
"itemlist.text"
msgid "confidence level"
-msgstr ""
+msgstr "узровень даверу"
#: scfuncs.src
msgctxt ""
@@ -20330,14 +20234,13 @@ msgid "The reference to a (multiple) range."
msgstr "Спасылка на (множны) абсяг."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
"row\n"
"itemlist.text"
msgid "row"
-msgstr "row"
+msgstr "радок"
#: scfuncs.src
msgctxt ""
@@ -20349,14 +20252,13 @@ msgid "The row in the range."
msgstr "Радок у абсягу."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
"column\n"
"itemlist.text"
msgid "column"
-msgstr "column"
+msgstr "калонка"
#: scfuncs.src
msgctxt ""
@@ -20368,14 +20270,13 @@ msgid "The column in the range."
msgstr "Калонка ў абсягу."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
"range\n"
"itemlist.text"
msgid "range"
-msgstr "range"
+msgstr "дыяпазон"
#: scfuncs.src
msgctxt ""
@@ -20414,7 +20315,6 @@ msgid "The cell whose contents are to be evaluated is to be referenced in text f
msgstr "Клетка, змесціва якой выпрабоўваецца, апісваецца ў форме тэксту (напр., \"A1\")."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_INDIRECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
@@ -20769,7 +20669,7 @@ msgctxt ""
"Style2\n"
"itemlist.text"
msgid "Style2"
-msgstr "Style2"
+msgstr "Стыль2"
#: scfuncs.src
msgctxt ""
@@ -20936,14 +20836,13 @@ msgid "The name of the pivot table field to extract."
msgstr "The name of the pivot table field to extract."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
"Pivot Table\n"
"itemlist.text"
msgid "Pivot Table"
-msgstr "Pivot Table"
+msgstr "Зводкавая табліца"
#: scfuncs.src
msgctxt ""
@@ -21528,14 +21427,13 @@ msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given
msgstr "У інтэрвале range (кім) criteria."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
"criteria\n"
"itemlist.text"
msgid "criteria"
-msgstr "criteria"
+msgstr "крытэрый"
#: scfuncs.src
msgctxt ""
@@ -23696,7 +23594,6 @@ msgid "Row %1"
msgstr "Радок %1"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_TABLE\n"
@@ -23705,7 +23602,6 @@ msgid "Sheet"
msgstr "Аркуш"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_NAME\n"
@@ -23722,7 +23618,6 @@ msgid "Append Sheet"
msgstr "Дадаць аркуш у канцы"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_RENAMETAB\n"
@@ -23739,7 +23634,6 @@ msgid "Tab Color"
msgstr "Колер вушка карткі"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_NO_TAB_BG_COLOR\n"
@@ -23780,7 +23674,6 @@ msgid "Unprotect document"
msgstr "Зняць засцераганне дакумента"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_UNPROTECTTAB\n"
@@ -23877,7 +23770,6 @@ msgid "~Source"
msgstr "Крыніца"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_VALID_LIST\n"
@@ -23902,7 +23794,6 @@ msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Стандартна;Тэкст;Дата (ДМГ);Дата (МДГ);Дата (ГМД);Амерыканская;Не паказваць"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_FIELDSEP_TAB\n"
@@ -24632,7 +24523,6 @@ msgid "Cancel"
msgstr "Нічога"
#: toolbox.src
-#, fuzzy
msgctxt ""
"toolbox.src\n"
"SCSTR_QHELP_BTNSUM\n"
@@ -24641,7 +24531,6 @@ msgid "Sum"
msgstr "Сума"
#: toolbox.src
-#, fuzzy
msgctxt ""
"toolbox.src\n"
"SCSTR_QHELP_BTNEQUAL\n"
diff --git a/source/be/sc/uiconfig/scalc/ui.po b/source/be/sc/uiconfig/scalc/ui.po
index 3705e6e2c55..dc4597277a3 100644
--- a/source/be/sc/uiconfig/scalc/ui.po
+++ b/source/be/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 09:29+0000\n"
+"PO-Revision-Date: 2017-06-18 19:51+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495790960.000000\n"
+"X-POOTLE-MTIME: 1497815486.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Advanced Filter"
-msgstr ""
+msgstr "Складаны фільтр"
#: advancedfilterdialog.ui
msgctxt ""
@@ -695,7 +695,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add"
-msgstr ""
+msgstr "Дадаць"
#: condformatmanager.ui
msgctxt ""
@@ -704,10 +704,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit..."
-msgstr ""
+msgstr "Правіць..."
#: condformatmanager.ui
-#, fuzzy
msgctxt ""
"condformatmanager.ui\n"
"remove\n"
@@ -723,7 +722,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Conditional Formats"
-msgstr ""
+msgstr "Умоўныя фарматы"
#: conditionalentry.ui
msgctxt ""
@@ -732,7 +731,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "All Cells"
-msgstr ""
+msgstr "Усе клеткі"
#: conditionalentry.ui
msgctxt ""
@@ -1227,7 +1226,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Yesterday"
-msgstr ""
+msgstr "Учора"
#: conditionalentry.ui
msgctxt ""
@@ -1236,7 +1235,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Tomorrow"
-msgstr ""
+msgstr "Заўтра"
#: conditionalentry.ui
msgctxt ""
@@ -1245,7 +1244,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Last 7 days"
-msgstr ""
+msgstr "Апошнія 7 дзён"
#: conditionalentry.ui
msgctxt ""
@@ -1254,7 +1253,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "This week"
-msgstr ""
+msgstr "Гэты тыдзень"
#: conditionalentry.ui
msgctxt ""
@@ -1263,7 +1262,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Last week"
-msgstr ""
+msgstr "Апошні тыдзень"
#: conditionalentry.ui
msgctxt ""
@@ -1272,7 +1271,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Next week"
-msgstr ""
+msgstr "Наступны тыдзень"
#: conditionalentry.ui
msgctxt ""
@@ -1281,7 +1280,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "This month"
-msgstr ""
+msgstr "Гэты месяц"
#: conditionalentry.ui
msgctxt ""
@@ -1290,7 +1289,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Last month"
-msgstr ""
+msgstr "Апошні месяц"
#: conditionalentry.ui
msgctxt ""
@@ -1299,7 +1298,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Next month"
-msgstr ""
+msgstr "Наступны месяц"
#: conditionalentry.ui
msgctxt ""
@@ -1308,7 +1307,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "This year"
-msgstr ""
+msgstr "Гэты год"
#: conditionalentry.ui
msgctxt ""
@@ -1317,7 +1316,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Last year"
-msgstr ""
+msgstr "Апошні год"
#: conditionalentry.ui
msgctxt ""
@@ -1326,7 +1325,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Next year"
-msgstr ""
+msgstr "Наступны год"
#: conditionalentry.ui
msgctxt ""
@@ -1335,7 +1334,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Color Scale (2 Entries)"
-msgstr ""
+msgstr "Лінейка колераў (2 элементы)"
#: conditionalentry.ui
msgctxt ""
@@ -1344,7 +1343,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Color Scale (3 Entries)"
-msgstr ""
+msgstr "Лінейка колераў (3 элементы)"
#: conditionalentry.ui
msgctxt ""
@@ -1353,7 +1352,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Data Bar"
-msgstr ""
+msgstr "Гістаграма"
#: conditionalentry.ui
msgctxt ""
@@ -1362,7 +1361,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Icon Set"
-msgstr ""
+msgstr "Набор значкоў"
#: conditionalentry.ui
msgctxt ""
@@ -1371,7 +1370,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "3 Arrows"
-msgstr ""
+msgstr "3 стрэлкі"
#: conditionalentry.ui
msgctxt ""
@@ -1380,7 +1379,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "3 Gray Arrows"
-msgstr ""
+msgstr "3 шэрыя стрэлкі"
#: conditionalentry.ui
msgctxt ""
@@ -1389,7 +1388,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "3 Flags"
-msgstr ""
+msgstr "3 сцягі"
#: conditionalentry.ui
msgctxt ""
@@ -1398,7 +1397,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "3 Traffic Lights 1"
-msgstr ""
+msgstr "3 святлафоры 1"
#: conditionalentry.ui
msgctxt ""
@@ -1407,7 +1406,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "3 Traffic Lights 2"
-msgstr ""
+msgstr "3 святлафоры 2"
#: conditionalentry.ui
msgctxt ""
@@ -1416,7 +1415,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "3 Signs"
-msgstr ""
+msgstr "3 знакі"
#: conditionalentry.ui
msgctxt ""
@@ -1425,7 +1424,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "3 Symbols 1"
-msgstr ""
+msgstr "3 сімвалы 1"
#: conditionalentry.ui
msgctxt ""
@@ -1434,7 +1433,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "3 Symbols 2"
-msgstr ""
+msgstr "3 сімвалы 2"
#: conditionalentry.ui
msgctxt ""
@@ -1759,7 +1758,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Максімум"
#: consolidatedialog.ui
msgctxt ""
@@ -1768,7 +1767,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Мінімум"
#: consolidatedialog.ui
msgctxt ""
@@ -1777,7 +1776,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Product"
-msgstr ""
+msgstr "Здабытак"
#: consolidatedialog.ui
msgctxt ""
@@ -2530,7 +2529,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Base field:"
-msgstr ""
+msgstr "Базавае поле:"
#: datafielddialog.ui
msgctxt ""
@@ -2539,7 +2538,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ba_se item:"
-msgstr ""
+msgstr "Базав_ы элемент:"
#: datafielddialog.ui
msgctxt ""
@@ -2548,7 +2547,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Normal"
-msgstr ""
+msgstr "Нармальнае"
#: datafielddialog.ui
msgctxt ""
@@ -2851,7 +2850,6 @@ msgid "Data Form"
msgstr "Даныя Форма"
#: dataform.ui
-#, fuzzy
msgctxt ""
"dataform.ui\n"
"label\n"
@@ -2870,7 +2868,6 @@ msgid "_New"
msgstr "Дадаць"
#: dataform.ui
-#, fuzzy
msgctxt ""
"dataform.ui\n"
"delete\n"
@@ -2880,7 +2877,6 @@ msgid "_Delete"
msgstr "Сцерці"
#: dataform.ui
-#, fuzzy
msgctxt ""
"dataform.ui\n"
"restore\n"
@@ -2890,24 +2886,22 @@ msgid "_Restore"
msgstr "Аднавіць"
#: dataform.ui
-#, fuzzy
msgctxt ""
"dataform.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "_Previous Record"
-msgstr "Папярэдняе Запіс"
+msgstr "Папярэдні запіс"
#: dataform.ui
-#, fuzzy
msgctxt ""
"dataform.ui\n"
"next\n"
"label\n"
"string.text"
msgid "Ne_xt Record"
-msgstr "Запіс"
+msgstr "Наступны запіс"
#: dataform.ui
msgctxt ""
@@ -3749,14 +3743,13 @@ msgid "Enter the URL of the source document in the local file system or Internet
msgstr "URL з цаль or Інтэрнет."
#: externaldata.ui
-#, fuzzy
msgctxt ""
"externaldata.ui\n"
"browse\n"
"label\n"
"string.text"
msgid "_Browse..."
-msgstr "Выбраць..."
+msgstr "Агляд..."
#: externaldata.ui
#, fuzzy
@@ -3789,14 +3782,13 @@ msgid "_seconds"
msgstr "секунд"
#: externaldata.ui
-#, fuzzy
msgctxt ""
"externaldata.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Available Tables/Ranges"
-msgstr "У наяўнасці"
+msgstr "Наяўныя табліцы/абсягі"
#: filldlg.ui
msgctxt ""
@@ -4125,7 +4117,6 @@ msgid "_More Options..."
msgstr ""
#: footerdialog.ui
-#, fuzzy
msgctxt ""
"footerdialog.ui\n"
"FooterDialog\n"
@@ -4135,7 +4126,6 @@ msgid "Footers"
msgstr "Калантытулы ніжнія"
#: footerdialog.ui
-#, fuzzy
msgctxt ""
"footerdialog.ui\n"
"footerright\n"
@@ -4145,7 +4135,6 @@ msgid "Footer (right)"
msgstr "Ніжні калантытул (справа)"
#: footerdialog.ui
-#, fuzzy
msgctxt ""
"footerdialog.ui\n"
"footerleft\n"
@@ -4155,7 +4144,6 @@ msgid "Footer (left)"
msgstr "Ніжні калантытул (злева)"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"FormatCellsDialog\n"
@@ -4165,7 +4153,6 @@ msgid "Format Cells"
msgstr "Фарматаваць клеткі"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"numbers\n"
@@ -4175,7 +4162,6 @@ msgid "Numbers"
msgstr "Лічбы"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"font\n"
@@ -4185,7 +4171,6 @@ msgid "Font"
msgstr "Шрыфт"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"fonteffects\n"
@@ -4195,7 +4180,6 @@ msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"alignment\n"
@@ -4205,7 +4189,6 @@ msgid "Alignment"
msgstr "Раўнаванне"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"asiantypography\n"
@@ -4215,7 +4198,6 @@ msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"borders\n"
@@ -4225,7 +4207,6 @@ msgid "Borders"
msgstr "Межы"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"background\n"
@@ -4235,7 +4216,6 @@ msgid "Background"
msgstr "Фон"
#: formatcellsdialog.ui
-#, fuzzy
msgctxt ""
"formatcellsdialog.ui\n"
"cellprotection\n"
@@ -5021,7 +5001,6 @@ msgid "Headers/Footers"
msgstr "Калантытулы"
#: headerfooterdialog.ui
-#, fuzzy
msgctxt ""
"headerfooterdialog.ui\n"
"header\n"
@@ -5031,7 +5010,6 @@ msgid "Header"
msgstr "Калантытул верхні"
#: headerfooterdialog.ui
-#, fuzzy
msgctxt ""
"headerfooterdialog.ui\n"
"footer\n"
@@ -5056,7 +5034,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "Знаказбор:"
#: imoptdialog.ui
msgctxt ""
@@ -5428,7 +5406,6 @@ msgid "_Print range"
msgstr "Друкаваць range"
#: managenamesdialog.ui
-#, fuzzy
msgctxt ""
"managenamesdialog.ui\n"
"filter\n"
@@ -5456,14 +5433,13 @@ msgid "Repeat _row"
msgstr "Паўтарыць радо_к"
#: managenamesdialog.ui
-#, fuzzy
msgctxt ""
"managenamesdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Range _Options"
-msgstr "У інтэрвале Настаўленні"
+msgstr "Наста_ўленні дыяпазону"
#: managenamesdialog.ui
msgctxt ""
@@ -5472,7 +5448,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "column"
-msgstr ""
+msgstr "калонка"
#: mergecellsdialog.ui
msgctxt ""
@@ -5481,7 +5457,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Merge Cells"
-msgstr ""
+msgstr "Аб'яднаць клеткі"
#: mergecellsdialog.ui
msgctxt ""
@@ -6395,7 +6371,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Улева"
#: notebookbar_groups.ui
msgctxt ""
@@ -6404,7 +6380,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "У цэнтры"
#: notebookbar_groups.ui
msgctxt ""
@@ -6413,7 +6389,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Управа"
#: notebookbar_groups.ui
msgctxt ""
@@ -6431,7 +6407,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge"
-msgstr ""
+msgstr "Аб'яднаць"
#: notebookbar_groups.ui
msgctxt ""
@@ -6440,7 +6416,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Split"
-msgstr ""
+msgstr "Падзяліць"
#: notebookbar_groups.ui
msgctxt ""
@@ -6761,30 +6737,27 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Iterations"
-msgstr ""
+msgstr "Ітэрацыі"
#: optcalculatepage.ui
-#, fuzzy
msgctxt ""
"optcalculatepage.ui\n"
"stepsft\n"
"label\n"
"string.text"
msgid "_Steps:"
-msgstr "Крокі"
+msgstr "Крокі:"
#: optcalculatepage.ui
-#, fuzzy
msgctxt ""
"optcalculatepage.ui\n"
"minchangeft\n"
"label\n"
"string.text"
msgid "_Minimum change:"
-msgstr "Мінімальнае"
+msgstr "Мінімальная змена:"
#: optcalculatepage.ui
-#, fuzzy
msgctxt ""
"optcalculatepage.ui\n"
"label2\n"
@@ -7653,7 +7626,6 @@ msgid "_Formulas"
msgstr "Формулы"
#: pastespecial.ui
-#, fuzzy
msgctxt ""
"pastespecial.ui\n"
"comments\n"
@@ -7669,10 +7641,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "For_mats"
-msgstr ""
+msgstr "Фарматы"
#: pastespecial.ui
-#, fuzzy
msgctxt ""
"pastespecial.ui\n"
"objects\n"
@@ -7682,7 +7653,6 @@ msgid "_Objects"
msgstr "Аб'екты"
#: pastespecial.ui
-#, fuzzy
msgctxt ""
"pastespecial.ui\n"
"label1\n"
@@ -7692,14 +7662,13 @@ msgid "Selection"
msgstr "Пазначанае"
#: pastespecial.ui
-#, fuzzy
msgctxt ""
"pastespecial.ui\n"
"none\n"
"label\n"
"string.text"
msgid "Non_e"
-msgstr "Заўвага"
+msgstr "Няма"
#: pastespecial.ui
msgctxt ""
@@ -7708,7 +7677,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add"
-msgstr ""
+msgstr "Дадаць"
#: pastespecial.ui
msgctxt ""
@@ -7717,7 +7686,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Subtract"
-msgstr ""
+msgstr "Розніца"
#: pastespecial.ui
msgctxt ""
@@ -7726,7 +7695,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Multipl_y"
-msgstr ""
+msgstr "Пам_ножыць"
#: pastespecial.ui
msgctxt ""
@@ -7735,7 +7704,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Di_vide"
-msgstr ""
+msgstr "Падзяліць"
#: pastespecial.ui
msgctxt ""
@@ -7744,7 +7713,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Operations"
-msgstr ""
+msgstr "Аперацыі"
#: pastespecial.ui
msgctxt ""
@@ -7886,17 +7855,15 @@ msgid "Show it_ems without data"
msgstr ""
#: pivotfielddialog.ui
-#, fuzzy
msgctxt ""
"pivotfielddialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Name:"
-msgstr "Назва"
+msgstr "Назва:"
#: pivotfilterdialog.ui
-#, fuzzy
msgctxt ""
"pivotfilterdialog.ui\n"
"PivotFilterDialog\n"
@@ -7912,7 +7879,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "AND"
-msgstr ""
+msgstr "І"
#: pivotfilterdialog.ui
msgctxt ""
@@ -7921,7 +7888,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "OR"
-msgstr ""
+msgstr "АБО"
#: pivotfilterdialog.ui
msgctxt ""
@@ -7930,7 +7897,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "AND"
-msgstr ""
+msgstr "І"
#: pivotfilterdialog.ui
msgctxt ""
@@ -7939,10 +7906,9 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "OR"
-msgstr ""
+msgstr "АБО"
#: pivotfilterdialog.ui
-#, fuzzy
msgctxt ""
"pivotfilterdialog.ui\n"
"label2\n"
@@ -7958,7 +7924,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field name"
-msgstr ""
+msgstr "Назва поля"
#: pivotfilterdialog.ui
msgctxt ""
@@ -7967,7 +7933,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Condition"
-msgstr ""
+msgstr "Умова"
#: pivotfilterdialog.ui
msgctxt ""
@@ -7976,7 +7942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Значэнне"
#: pivotfilterdialog.ui
msgctxt ""
@@ -8049,7 +8015,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Pivot Table Layout"
-msgstr ""
+msgstr "Выклад зводкавай табліцы"
#: pivottablelayoutdialog.ui
msgctxt ""
@@ -8962,7 +8928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Default value"
-msgstr ""
+msgstr "Тыпо_вае значэнне"
#: samplingdialog.ui
msgctxt ""
@@ -9090,7 +9056,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copy _entire sheet"
-msgstr ""
+msgstr "Капіраваць _увесь аркуш"
#: scenariodialog.ui
msgctxt ""
@@ -9099,7 +9065,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Prevent changes"
-msgstr ""
+msgstr "_Забараніць змены"
#: scenariodialog.ui
msgctxt ""
@@ -9424,7 +9390,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: selectdatasource.ui
msgctxt ""
@@ -10180,7 +10146,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the background color of the selected cells."
-msgstr ""
+msgstr "Выберыце колер фону для вылучаных клетак."
#: sidebarcellappearance.ui
msgctxt ""
@@ -10198,7 +10164,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the line style of the borders."
-msgstr ""
+msgstr "Выберыце стыль лініі абрамлення."
#: sidebarcellappearance.ui
msgctxt ""
@@ -10207,7 +10173,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Style"
-msgstr ""
+msgstr "Стыль абрамлення"
#: sidebarcellappearance.ui
msgctxt ""
@@ -10243,7 +10209,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select a category of contents."
-msgstr ""
+msgstr "Выберыце катэгорыю змесціва."
#: sidebarnumberformat.ui
msgctxt ""
@@ -10252,17 +10218,16 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "General"
-msgstr ""
+msgstr "Агульны"
#: sidebarnumberformat.ui
-#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"category\n"
"1\n"
"stringlist.text"
msgid "Number"
-msgstr "Лічбы"
+msgstr "Лічба"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10271,7 +10236,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Працэнт"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10280,20 +10245,18 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Currency"
-msgstr ""
+msgstr "Валюта"
#: sidebarnumberformat.ui
-#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"category\n"
"4\n"
"stringlist.text"
msgid "Date "
-msgstr "Дата"
+msgstr "Дата "
#: sidebarnumberformat.ui
-#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"category\n"
@@ -10309,7 +10272,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Scientific"
-msgstr ""
+msgstr "Навуковы"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10318,7 +10281,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Fraction"
-msgstr ""
+msgstr "Дроб"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10327,7 +10290,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Boolean Value"
-msgstr ""
+msgstr "Булеўскае значэнне"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10345,17 +10308,16 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Category"
-msgstr ""
+msgstr "Катэгорыя"
#: sidebarnumberformat.ui
-#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"decimalplaceslabel\n"
"label\n"
"string.text"
msgid "_Decimal places:"
-msgstr "Дзесятковых пазіцый"
+msgstr "Дзесятковых пазіцый:"
#: sidebarnumberformat.ui
msgctxt ""
@@ -11570,7 +11532,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Contains"
-msgstr ""
+msgstr "Змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11579,7 +11541,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Does not contain"
-msgstr ""
+msgstr "Не змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11588,7 +11550,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Begins with"
-msgstr ""
+msgstr "Пачынаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11597,7 +11559,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Does not begin with"
-msgstr ""
+msgstr "Не пачынаецца з"
#: standardfilterdialog.ui
msgctxt ""
@@ -11606,7 +11568,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "Ends with"
-msgstr ""
+msgstr "Канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11615,7 +11577,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "Does not end with"
-msgstr ""
+msgstr "Не канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11624,7 +11586,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 1"
-msgstr ""
+msgstr "Умова 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11633,7 +11595,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Largest"
-msgstr ""
+msgstr "Найбольшае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11642,7 +11604,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Smallest"
-msgstr ""
+msgstr "Найменшае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11651,7 +11613,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Largest %"
-msgstr ""
+msgstr "Найбольшы %"
#: standardfilterdialog.ui
msgctxt ""
@@ -11660,7 +11622,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Smallest %"
-msgstr ""
+msgstr "Найменшы %"
#: standardfilterdialog.ui
msgctxt ""
@@ -11669,7 +11631,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Contains"
-msgstr ""
+msgstr "Змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11678,7 +11640,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Does not contain"
-msgstr ""
+msgstr "Не змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11687,7 +11649,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Begins with"
-msgstr ""
+msgstr "Пачынаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11696,7 +11658,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Does not begin with"
-msgstr ""
+msgstr "Не пачынаецца з"
#: standardfilterdialog.ui
msgctxt ""
@@ -11705,7 +11667,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "Ends with"
-msgstr ""
+msgstr "Канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11714,7 +11676,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "Does not end with"
-msgstr ""
+msgstr "Не канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11723,7 +11685,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 2"
-msgstr ""
+msgstr "Умова 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11732,7 +11694,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Largest"
-msgstr ""
+msgstr "Найбольшае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11741,7 +11703,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Smallest"
-msgstr ""
+msgstr "Найменшае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11750,7 +11712,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Largest %"
-msgstr ""
+msgstr "Найбольшы %"
#: standardfilterdialog.ui
msgctxt ""
@@ -11759,7 +11721,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Smallest %"
-msgstr ""
+msgstr "Найменшы %"
#: standardfilterdialog.ui
msgctxt ""
@@ -11768,7 +11730,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Contains"
-msgstr ""
+msgstr "Змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11777,7 +11739,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Does not contain"
-msgstr ""
+msgstr "Не змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11786,7 +11748,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Begins with"
-msgstr ""
+msgstr "Пачынаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11795,7 +11757,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Does not begin with"
-msgstr ""
+msgstr "Не пачынаецца з"
#: standardfilterdialog.ui
msgctxt ""
@@ -11804,7 +11766,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "Ends with"
-msgstr ""
+msgstr "Канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11813,7 +11775,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "Does not end with"
-msgstr ""
+msgstr "Не канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11822,7 +11784,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 3"
-msgstr ""
+msgstr "Умова 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11831,7 +11793,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Largest"
-msgstr ""
+msgstr "Найбольшае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11840,7 +11802,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Smallest"
-msgstr ""
+msgstr "Найменшае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11849,7 +11811,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Largest %"
-msgstr ""
+msgstr "Найбольшы %"
#: standardfilterdialog.ui
msgctxt ""
@@ -11858,7 +11820,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Smallest %"
-msgstr ""
+msgstr "Найменшы %"
#: standardfilterdialog.ui
msgctxt ""
@@ -11867,7 +11829,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Contains"
-msgstr ""
+msgstr "Змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11876,7 +11838,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Does not contain"
-msgstr ""
+msgstr "Не змяшчае"
#: standardfilterdialog.ui
msgctxt ""
@@ -11885,7 +11847,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Begins with"
-msgstr ""
+msgstr "Пачынаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11894,7 +11856,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Does not begin with"
-msgstr ""
+msgstr "Не пачынаецца з"
#: standardfilterdialog.ui
msgctxt ""
@@ -11903,7 +11865,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "Ends with"
-msgstr ""
+msgstr "Канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11912,7 +11874,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "Does not end with"
-msgstr ""
+msgstr "Не канчаецца на"
#: standardfilterdialog.ui
msgctxt ""
@@ -11921,7 +11883,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 4"
-msgstr ""
+msgstr "Умова 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11930,7 +11892,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 1"
-msgstr ""
+msgstr "Значэнне 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11939,7 +11901,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 2"
-msgstr ""
+msgstr "Значэнне 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11948,7 +11910,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 3"
-msgstr ""
+msgstr "Значэнне 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11957,7 +11919,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 4"
-msgstr ""
+msgstr "Значэнне 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11966,7 +11928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Filter Criteria"
-msgstr ""
+msgstr "Умовы фільтра"
#: standardfilterdialog.ui
msgctxt ""
@@ -11975,7 +11937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Case sensitive"
-msgstr ""
+msgstr "Улічваць рэгі_стр"
#: standardfilterdialog.ui
msgctxt ""
@@ -11984,7 +11946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Range c_ontains column labels"
-msgstr ""
+msgstr "Абсяг утрымлівае меткі калонак"
#: standardfilterdialog.ui
msgctxt ""
@@ -11993,7 +11955,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Regular _expressions"
-msgstr ""
+msgstr "Рэгулярны выраз"
#: standardfilterdialog.ui
msgctxt ""
@@ -13049,7 +13011,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Deactivate for"
-msgstr ""
+msgstr "Дэактываваць для"
#: validationcriteriapage.ui
msgctxt ""
@@ -13058,7 +13020,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Allow:"
-msgstr ""
+msgstr "Дазволіць:"
#: validationcriteriapage.ui
msgctxt ""
@@ -13067,27 +13029,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Data:"
-msgstr ""
+msgstr "Даныя:"
#: validationcriteriapage.ui
-#, fuzzy
msgctxt ""
"validationcriteriapage.ui\n"
"minft\n"
"label\n"
"string.text"
msgid "_Minimum:"
-msgstr "Максімальнае"
+msgstr "Максімум:"
#: validationcriteriapage.ui
-#, fuzzy
msgctxt ""
"validationcriteriapage.ui\n"
"maxft\n"
"label\n"
"string.text"
msgid "Ma_ximum:"
-msgstr "Максімальнае"
+msgstr "Максімум:"
#: validationcriteriapage.ui
msgctxt ""
@@ -13153,7 +13113,6 @@ msgid "Decimal"
msgstr ""
#: validationcriteriapage.ui
-#, fuzzy
msgctxt ""
"validationcriteriapage.ui\n"
"liststore1\n"
@@ -13163,7 +13122,6 @@ msgid "Date"
msgstr "Дата"
#: validationcriteriapage.ui
-#, fuzzy
msgctxt ""
"validationcriteriapage.ui\n"
"liststore1\n"
@@ -13179,7 +13137,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Cell range"
-msgstr ""
+msgstr "Абсяг клетак"
#: validationcriteriapage.ui
msgctxt ""
@@ -13188,7 +13146,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "List"
-msgstr ""
+msgstr "Спіс"
#: validationcriteriapage.ui
msgctxt ""
diff --git a/source/be/scaddins/source/analysis.po b/source/be/scaddins/source/analysis.po
index 1f8ceef099c..afadaa54d3e 100644
--- a/source/be/scaddins/source/analysis.po
+++ b/source/be/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: analysis\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 17:13+0000\n"
+"PO-Revision-Date: 2017-06-17 17:51+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492276429.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497721917.000000\n"
#: analysis.src
msgctxt ""
@@ -1453,7 +1453,6 @@ msgid "Places"
msgstr "Places"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Hex2Oct\n"
@@ -1562,17 +1561,15 @@ msgid "Returns the complementary error function"
msgstr "Вяртае спалучаную функцыю памылкі"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Erfc\n"
"Lower limit\n"
"itemlist.text"
msgid "Lower limit"
-msgstr "Lower limit"
+msgstr "Ніжняя граніца"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Erfc\n"
@@ -1591,7 +1588,6 @@ msgid "Tests whether a number is greater than a threshold value"
msgstr "Правярае, ці пэўны лік большы за парогавае значэнне"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Gestep\n"
@@ -1625,7 +1621,7 @@ msgctxt ""
"The threshold value\n"
"itemlist.text"
msgid "The threshold value"
-msgstr ""
+msgstr "Парогавае значэнне"
#: analysis.src
msgctxt ""
@@ -1637,7 +1633,6 @@ msgid "Returns the double factorial of Number"
msgstr "Вяртае падвойны фактарыял ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Factdouble\n"
@@ -1647,7 +1642,6 @@ msgid "Number"
msgstr "Лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Factdouble\n"
@@ -1693,17 +1687,15 @@ msgid "Returns the imaginary coefficient of a complex number"
msgstr "Вяртае ўяўны каэфіцыент камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imaginary\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imaginary\n"
@@ -1732,7 +1724,6 @@ msgid "Complex number"
msgstr "Complex number"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Impower\n"
@@ -1742,7 +1733,6 @@ msgid "The complex number"
msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Impower\n"
@@ -1808,7 +1798,6 @@ msgid "Complex number"
msgstr "Complex number"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcos\n"
@@ -1915,7 +1904,6 @@ msgid "Complex number"
msgstr "Complex number"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imconjugate\n"
@@ -1934,17 +1922,15 @@ msgid "Returns the natural logarithm of a complex number"
msgstr "Вяртае натуральны лагарыфм камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imln\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imln\n"
@@ -1963,17 +1949,15 @@ msgid "Returns the base-10 logarithm of a complex number"
msgstr "Вяртае дзесятковы лагарыфм камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imlog10\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imlog10\n"
@@ -1992,17 +1976,15 @@ msgid "Returns the base-2 logarithm of a complex number"
msgstr "Вяртае двайковы лагарыфм камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imlog2\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imlog2\n"
@@ -2027,7 +2009,7 @@ msgctxt ""
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr ""
+msgstr "Камплексны лік"
#: analysis.src
msgctxt ""
@@ -2057,17 +2039,15 @@ msgid "Returns the real coefficient of a complex number"
msgstr "Вяртае рэчаісную частку камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imreal\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imreal\n"
@@ -2086,17 +2066,15 @@ msgid "Returns the sine of a complex number"
msgstr "Вяртае сінус камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsin\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsin\n"
@@ -2121,7 +2099,7 @@ msgctxt ""
"Complex number 1\n"
"itemlist.text"
msgid "Complex number 1"
-msgstr ""
+msgstr "Камплексны лік 1"
#: analysis.src
msgctxt ""
@@ -2130,7 +2108,7 @@ msgctxt ""
"Complex number 2\n"
"itemlist.text"
msgid "Complex number 2"
-msgstr ""
+msgstr "Камплексны лік 2"
#: analysis.src
msgctxt ""
@@ -2142,17 +2120,15 @@ msgid "Returns the square root of a complex number"
msgstr "Вяртае квадратавы корань камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsqrt\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsqrt\n"
@@ -2171,17 +2147,15 @@ msgid "Returns the sum of complex numbers"
msgstr "Вяртае суму камплексных лікаў"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsum\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsum\n"
@@ -2200,17 +2174,15 @@ msgid "Returns the tangent of a complex number"
msgstr "Вяртае тангенс камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imtan\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imtan\n"
@@ -2229,17 +2201,15 @@ msgid "Returns the secant of a complex number"
msgstr "Вяртае секанс камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsec\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsec\n"
@@ -2258,17 +2228,15 @@ msgid "Returns the cosecant of a complex number"
msgstr "Вяртае касеканс камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcsc\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcsc\n"
@@ -2287,17 +2255,15 @@ msgid "Returns the cotangent of a complex number"
msgstr "Вяртае катангенс камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcot\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcot\n"
@@ -2316,17 +2282,15 @@ msgid "Returns the hyperbolic sine of a complex number"
msgstr "Вяртае гіпербалічны сінус камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsinh\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsinh\n"
@@ -2345,17 +2309,15 @@ msgid "Returns the hyperbolic cosine of a complex number"
msgstr "Вяртае гіпербалічны косінус камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcosh\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcosh\n"
@@ -2374,17 +2336,15 @@ msgid "Returns the hyperbolic secant of a complex number"
msgstr "Вяртае гіпербалічны секанс камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsech\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imsech\n"
@@ -2403,17 +2363,15 @@ msgid "Returns the hyperbolic cosecant of a complex number"
msgstr "Вяртае гіпербалічны касеканс камплекснага ліку"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcsch\n"
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "Камплексны лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Imcsch\n"
@@ -2495,7 +2453,6 @@ msgid "Converts a number from one measurement system to another"
msgstr "Ператварае лік з адной сістэмы вымярэння ў іншую"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Convert\n"
@@ -2505,7 +2462,6 @@ msgid "Number"
msgstr "Лік"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Convert\n"
@@ -2668,14 +2624,13 @@ msgid "The rate of depreciation"
msgstr "Працэнтавая стаўка амартызацыі"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amordegrc\n"
"Basis\n"
"itemlist.text"
msgid "Basis"
-msgstr "Basis"
+msgstr "Базіс"
#: analysis.src
msgctxt ""
@@ -2687,7 +2642,6 @@ msgid "The year basis to be used"
msgstr "Метад лічэння гадоў"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
@@ -2697,17 +2651,15 @@ msgid "Returns the prorated linear depreciation of an asset for each accounting
msgstr "Вяртае значэнне лінейнай амартызацыі актыву за пэўны перыяд"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
"Cost\n"
"itemlist.text"
msgid "Cost"
-msgstr "Cost"
+msgstr "Кошт"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
@@ -2727,7 +2679,6 @@ msgid "Date purchased"
msgstr "Date purchased"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
@@ -2737,14 +2688,13 @@ msgid "Purchase date of the asset"
msgstr "Дата набыцця актыву"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
"First period\n"
"itemlist.text"
msgid "First period"
-msgstr "First period"
+msgstr "Першы перыяд"
#: analysis.src
msgctxt ""
@@ -2775,17 +2725,15 @@ msgid "The salvage value of an asset at the end of its life"
msgstr "Ліквідацыйная вартасць актыву ў канцы перыяду выкарыстання"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
"Period\n"
"itemlist.text"
msgid "Period"
-msgstr "Period"
+msgstr "Перыяд"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
@@ -2795,17 +2743,15 @@ msgid "The period"
msgstr "Перыяд"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
"Rate\n"
"itemlist.text"
msgid "Rate"
-msgstr "Rate"
+msgstr "Стаўка"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
@@ -2815,17 +2761,15 @@ msgid "The rate of depreciation"
msgstr "Працэнтавая стаўка амартызацыі"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
"Basis\n"
"itemlist.text"
msgid "Basis"
-msgstr "Basis"
+msgstr "Базіс"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Amorlinc\n"
@@ -2898,14 +2842,13 @@ msgid "The settlement"
msgstr "Дата разліку/атрымання"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Accrint\n"
"Rate\n"
"itemlist.text"
msgid "Rate"
-msgstr "Rate"
+msgstr "Стаўка"
#: analysis.src
msgctxt ""
@@ -2953,14 +2896,13 @@ msgid "The frequency"
msgstr "Перыядычнасць"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Accrint\n"
"Basis\n"
"itemlist.text"
msgid "Basis"
-msgstr "Basis"
+msgstr "Базіс"
#: analysis.src
msgctxt ""
@@ -3803,7 +3745,6 @@ msgid "Redemption"
msgstr "Redemption"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Price\n"
@@ -3813,17 +3754,15 @@ msgid "The redemption value"
msgstr "Кошт выкупу"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Price\n"
"Frequency\n"
"itemlist.text"
msgid "Frequency"
-msgstr "Frequency"
+msgstr "Частата"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Price\n"
@@ -3833,17 +3772,15 @@ msgid "The frequency"
msgstr "Перыядычнасць"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Price\n"
"Basis\n"
"itemlist.text"
msgid "Basis"
-msgstr "Basis"
+msgstr "Базіс"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Price\n"
@@ -3872,7 +3809,6 @@ msgid "Settlement"
msgstr "Settlement"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Pricedisc\n"
@@ -3882,17 +3818,15 @@ msgid "The settlement"
msgstr "Дата разліку/атрымання"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Pricedisc\n"
"Maturity\n"
"itemlist.text"
msgid "Maturity"
-msgstr "Maturity"
+msgstr "Пагашэнне"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Pricedisc\n"
@@ -4638,7 +4572,6 @@ msgid "Settlement"
msgstr "Settlement"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Yieldmat\n"
@@ -4648,17 +4581,15 @@ msgid "The settlement"
msgstr "Дата разліку/атрымання"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Yieldmat\n"
"Maturity\n"
"itemlist.text"
msgid "Maturity"
-msgstr "Maturity"
+msgstr "Пагашэнне"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Yieldmat\n"
@@ -5200,7 +5131,6 @@ msgid "Issue"
msgstr "Issue"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -5210,17 +5140,15 @@ msgid "The issue date"
msgstr "Дата выпуску"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
"First coupon\n"
"itemlist.text"
msgid "First coupon"
-msgstr "First coupon"
+msgstr "Першы купон"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -5230,17 +5158,15 @@ msgid "The first coupon date"
msgstr "Першая дата налічэння працэнта"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
"Rate\n"
"itemlist.text"
msgid "Rate"
-msgstr "Rate"
+msgstr "Стаўка"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -5250,17 +5176,15 @@ msgid "The rate"
msgstr "Працэнтавая стаўка"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
"Price\n"
"itemlist.text"
msgid "Price"
-msgstr "Price"
+msgstr "Цана"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -5270,17 +5194,15 @@ msgid "The price"
msgstr "Кошт"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
"Redemption\n"
"itemlist.text"
msgid "Redemption"
-msgstr "Redemption"
+msgstr "Выкуп"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -5290,17 +5212,15 @@ msgid "The redemption value"
msgstr "Кошт выкупу"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
"Frequency\n"
"itemlist.text"
msgid "Frequency"
-msgstr "Frequency"
+msgstr "Частата"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -5310,17 +5230,15 @@ msgid "The frequency"
msgstr "Перыядычнасць"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
"Basis\n"
"itemlist.text"
msgid "Basis"
-msgstr "Basis"
+msgstr "Базіс"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Oddfyield\n"
@@ -6114,17 +6032,15 @@ msgid "The settlement"
msgstr "Дата разліку/атрымання"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Coupdaysnc\n"
"Maturity\n"
"itemlist.text"
msgid "Maturity"
-msgstr "Maturity"
+msgstr "Пагашэнне"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Coupdaysnc\n"
@@ -6134,17 +6050,15 @@ msgid "The maturity"
msgstr "Пагашэнне"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Coupdaysnc\n"
"Frequency\n"
"itemlist.text"
msgid "Frequency"
-msgstr "Frequency"
+msgstr "Частата"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Coupdaysnc\n"
@@ -6154,17 +6068,15 @@ msgid "The frequency"
msgstr "Перыядычнасць"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Coupdaysnc\n"
"Basis\n"
"itemlist.text"
msgid "Basis"
-msgstr "Basis"
+msgstr "Базіс"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"ANALYSIS_Coupdaysnc\n"
diff --git a/source/be/scaddins/source/pricing.po b/source/be/scaddins/source/pricing.po
index 188d2e911ea..a68968c9409 100644
--- a/source/be/scaddins/source/pricing.po
+++ b/source/be/scaddins/source/pricing.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: pricing\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-05-01 19:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 17:52+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462129960.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497721946.000000\n"
#: pricing.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"Time to maturity of the option in years\n"
"itemlist.text"
msgid "Time to maturity of the option in years"
-msgstr ""
+msgstr "Час да плацяжу па апцыёну у гадах"
#: pricing.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"strike\n"
"itemlist.text"
msgid "strike"
-msgstr ""
+msgstr "цана_выканання"
#: pricing.src
msgctxt ""
@@ -762,7 +762,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptTouch\n"
"string.text"
msgid "OPT_TOUCH"
-msgstr ""
+msgstr "OPT_TOUCH"
#: pricing.src
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbHit\n"
"string.text"
msgid "OPT_PROB_HIT"
-msgstr ""
+msgstr "OPT_PROB_HIT"
#: pricing.src
msgctxt ""
@@ -778,4 +778,4 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbInMoney\n"
"string.text"
msgid "OPT_PROB_INMONEY"
-msgstr ""
+msgstr "OPT_PROB_INMONEY"
diff --git a/source/be/scp2/source/activex.po b/source/be/scp2/source/activex.po
index 6d68d365f7a..2b40c6d0632 100644
--- a/source/be/scp2/source/activex.po
+++ b/source/be/scp2/source/activex.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: activex\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2013-05-23 22:29+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-06-17 17:53+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369348174.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497722015.000000\n"
#: module_activex.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n"
"LngText.text"
msgid "Deprecated Component (see release notes) to enable Microsoft Internet Explorer to display %PRODUCTNAME documents."
-msgstr ""
+msgstr "Састарэлы кампанент (гл. заўвагі пры выпуску), які дазваляе паказваць дакументы %PRODUCTNAME у Microsoft Internet Explorer."
diff --git a/source/be/scp2/source/calc.po b/source/be/scp2/source/calc.po
index d27abc48c2a..1448aefda22 100644
--- a/source/be/scp2/source/calc.po
+++ b/source/be/scp2/source/calc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: calc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 13:18+0000\n"
+"PO-Revision-Date: 2017-06-17 17:54+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492262289.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497722040.000000\n"
#: folderitem_calc.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WEBQUERY\n"
"LngText.text"
msgid "Microsoft Excel Web Query File"
-msgstr ""
+msgstr "Файл вэб-запыту Microsoft Excel"
#: registryitem_calc.ulf
msgctxt ""
diff --git a/source/be/scp2/source/ooo.po b/source/be/scp2/source/ooo.po
index 120648b603a..f06bc0a47cf 100644
--- a/source/be/scp2/source/ooo.po
+++ b/source/be/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ooo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-04-26 18:45+0000\n"
+"PO-Revision-Date: 2017-06-14 16:59+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493232351.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497459575.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2502,7 +2502,6 @@ msgid "Odia"
msgstr ""
#: module_langpack.ulf
-#, fuzzy
msgctxt ""
"module_langpack.ulf\n"
"STR_DESC_MODULE_LANGPACK_OR\n"
@@ -2580,7 +2579,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_CA_VALENCIA\n"
"LngText.text"
msgid "Catalan (Valencian)"
-msgstr ""
+msgstr "Каталонская (Валенсійская)"
#: module_langpack.ulf
msgctxt ""
@@ -2588,7 +2587,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_CA_VALENCIA\n"
"LngText.text"
msgid "Installs the Catalan (Valencian) user interface"
-msgstr ""
+msgstr "Ставіць інтэрфейс на каталанскай (валенсійскай) мове"
#: module_langpack.ulf
msgctxt ""
@@ -2884,16 +2883,15 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_SR_LATN\n"
"LngText.text"
msgid "Serbian (Latin)"
-msgstr ""
+msgstr "Сербская (лацінка)"
#: module_langpack.ulf
-#, fuzzy
msgctxt ""
"module_langpack.ulf\n"
"STR_DESC_MODULE_LANGPACK_SR_LATN\n"
"LngText.text"
msgid "Installs the Serbian (Latin) user interface"
-msgstr "Ставіць інтэрфейс на сербскай мове (кірыліца)"
+msgstr "Ставіць інтэрфейс на сербскай мове (лацінка) "
#: module_langpack.ulf
msgctxt ""
@@ -2981,16 +2979,15 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FA\n"
"LngText.text"
msgid "Persian"
-msgstr ""
+msgstr "Персідская"
#: module_langpack.ulf
-#, fuzzy
msgctxt ""
"module_langpack.ulf\n"
"STR_DESC_MODULE_LANGPACK_FA\n"
"LngText.text"
msgid "Installs the Persian user interface"
-msgstr "Ставіць інтэрфейс на грузінскай мове"
+msgstr "Ставіць інтэрфейс на персідскай мове"
#: module_langpack.ulf
msgctxt ""
@@ -3094,7 +3091,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Venetian"
-msgstr ""
+msgstr "Венецкая"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/be/sd/source/ui/app.po b/source/be/sd/source/ui/app.po
index e8c88a06f03..b4b25793147 100644
--- a/source/be/sd/source/ui/app.po
+++ b/source/be/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: app\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-26 18:46+0000\n"
+"PO-Revision-Date: 2017-06-18 17:50+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493232391.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497808245.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2061,7 +2061,7 @@ msgctxt ""
"STR_GRAPHICS_STYLE_FAMILY\n"
"string.text"
msgid "Drawing Styles"
-msgstr ""
+msgstr "Стылі рысункаў"
#: strings.src
msgctxt ""
diff --git a/source/be/sd/source/ui/view.po b/source/be/sd/source/ui/view.po
index 623fa9270a7..f1d5d99b927 100644
--- a/source/be/sd/source/ui/view.po
+++ b/source/be/sd/source/ui/view.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-22 17:36+0000\n"
+"PO-Revision-Date: 2017-06-14 17:00+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492882566.000000\n"
+"X-POOTLE-MTIME: 1497459655.000000\n"
#: DocumentRenderer.src
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"Notes\n"
"itemlist.text"
msgid "Notes"
-msgstr ""
+msgstr "Заўвагі"
#: DocumentRenderer.src
msgctxt ""
@@ -74,7 +74,7 @@ msgctxt ""
"Outline\n"
"itemlist.text"
msgid "Outline"
-msgstr ""
+msgstr "Контур"
#: DocumentRenderer.src
msgctxt ""
@@ -91,7 +91,7 @@ msgctxt ""
"According to layout\n"
"itemlist.text"
msgid "According to layout"
-msgstr ""
+msgstr "Згодна з выкладам"
#: DocumentRenderer.src
msgctxt ""
@@ -100,7 +100,7 @@ msgctxt ""
"1\n"
"itemlist.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: DocumentRenderer.src
msgctxt ""
@@ -109,7 +109,7 @@ msgctxt ""
"2\n"
"itemlist.text"
msgid "2"
-msgstr ""
+msgstr "2"
#: DocumentRenderer.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"3\n"
"itemlist.text"
msgid "3"
-msgstr ""
+msgstr "3"
#: DocumentRenderer.src
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"4\n"
"itemlist.text"
msgid "4"
-msgstr ""
+msgstr "4"
#: DocumentRenderer.src
msgctxt ""
@@ -136,7 +136,7 @@ msgctxt ""
"6\n"
"itemlist.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: DocumentRenderer.src
msgctxt ""
@@ -145,7 +145,7 @@ msgctxt ""
"9\n"
"itemlist.text"
msgid "9"
-msgstr ""
+msgstr "9"
#: DocumentRenderer.src
msgctxt ""
@@ -153,7 +153,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_ORDER\n"
"string.text"
msgid "Order"
-msgstr ""
+msgstr "Парадак"
#: DocumentRenderer.src
msgctxt ""
diff --git a/source/be/sd/uiconfig/sdraw/ui.po b/source/be/sd/uiconfig/sdraw/ui.po
index 92f55c342d2..5334925172c 100644
--- a/source/be/sd/uiconfig/sdraw/ui.po
+++ b/source/be/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ 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: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-15 19:48+0000\n"
+"PO-Revision-Date: 2017-06-18 19:52+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492285697.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815529.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete unused backg_rounds"
-msgstr ""
+msgstr "Сцерці нявыкарыстаныя фоны"
#: insertslidesdialog.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Link"
-msgstr ""
+msgstr "Спасылка"
#: namedesign.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Name HTML Design"
-msgstr ""
+msgstr "Назва дызайну HTML"
#: paranumberingtab.ui
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_estart at this paragraph"
-msgstr ""
+msgstr "Нанова з гэтага абзацу"
#: paranumberingtab.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_tart with:"
-msgstr ""
+msgstr "Пачаць з:"
#: paranumberingtab.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Paragraph Numbering"
-msgstr ""
+msgstr "Нумараванне абзацаў"
#: printeroptions.ui
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Design"
-msgstr ""
+msgstr "Дызайн табліцы"
#: tabledesigndialog.ui
msgctxt ""
diff --git a/source/be/sd/uiconfig/simpress/ui.po b/source/be/sd/uiconfig/simpress/ui.po
index 70e948b3ac0..97a75c2a00b 100644
--- a/source/be/sd/uiconfig/simpress/ui.po
+++ b/source/be/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-26 09:31+0000\n"
+"PO-Revision-Date: 2017-06-18 19:52+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495791114.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815533.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply to All Slides"
-msgstr ""
+msgstr "Ужыць над усімі слайдамі"
#: currentmastermenu.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply to _Selected Slides"
-msgstr ""
+msgstr "Ужыць над азначанымі слайдамі"
#: currentmastermenu.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit Master..."
-msgstr ""
+msgstr "Правіць майстар..."
#: currentmastermenu.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_elete Master"
-msgstr ""
+msgstr "Сцерці майстар"
#: currentmastermenu.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _Large Preview"
-msgstr ""
+msgstr "Паказваць вялікі перадпаказ"
#: currentmastermenu.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show S_mall Preview"
-msgstr ""
+msgstr "Паказваць малы перадпаказ"
#: customanimationeffecttab.ui
msgctxt ""
@@ -1091,24 +1091,22 @@ msgid "_Name:"
msgstr "Назва:"
#: definecustomslideshow.ui
-#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Existing slides:"
-msgstr "Наяўныя слайды"
+msgstr "Наяўныя слайды:"
#: definecustomslideshow.ui
-#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Selected slides:"
-msgstr "Пазначаныя слайды"
+msgstr "Пазначаныя слайды:"
#: definecustomslideshow.ui
msgctxt ""
@@ -1135,7 +1133,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Field"
-msgstr ""
+msgstr "Змяніць поле"
#: dlgfield.ui
msgctxt ""
@@ -1414,7 +1412,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Apply Objects Individually"
-msgstr ""
+msgstr "Ужыць аб'екты індывідуальна"
#: dockinganimation.ui
msgctxt ""
@@ -1423,7 +1421,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number"
-msgstr ""
+msgstr "Лічба"
#: dockinganimation.ui
msgctxt ""
@@ -1432,7 +1430,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Delete Current Image"
-msgstr ""
+msgstr "Сцерці відарыс"
#: dockinganimation.ui
msgctxt ""
@@ -1441,7 +1439,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Delete All Images"
-msgstr ""
+msgstr "Сцерці ўсе выявы"
#: dockinganimation.ui
msgctxt ""
@@ -1450,7 +1448,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: dockinganimation.ui
msgctxt ""
@@ -1459,7 +1457,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create"
-msgstr ""
+msgstr "Стварыць"
#: effectmenu.ui
msgctxt ""
@@ -2198,7 +2196,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: notebookbar.ui
msgctxt ""
@@ -2360,7 +2358,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 2"
-msgstr ""
+msgstr "Загаловак 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -2378,7 +2376,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Абменнік"
#: notebookbar_groups.ui
msgctxt ""
@@ -2390,7 +2388,6 @@ msgid "Style"
msgstr "Стыль"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -2400,7 +2397,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -2686,7 +2682,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ta_b stops:"
-msgstr ""
+msgstr "Прыпынкі табуляцый:"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -4090,7 +4086,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Counter-clockwise"
-msgstr ""
+msgstr "Супраць гадзінніка"
#: scalemenu.ui
msgctxt ""
@@ -4099,7 +4095,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiny"
-msgstr ""
+msgstr "Дробны"
#: scalemenu.ui
msgctxt ""
@@ -4108,7 +4104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Smaller"
-msgstr ""
+msgstr "Малы"
#: scalemenu.ui
msgctxt ""
@@ -4315,7 +4311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Go to Slide"
-msgstr ""
+msgstr "Перайсці да слайда"
#: slidecontextmenu.ui
msgctxt ""
@@ -4324,7 +4320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_First Slide"
-msgstr ""
+msgstr "Першы слайд"
#: slidecontextmenu.ui
msgctxt ""
@@ -4333,7 +4329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Last Slide"
-msgstr ""
+msgstr "Апошні слайд"
#: slidecontextmenu.ui
msgctxt ""
@@ -4342,7 +4338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "Курсор мышкі як пяро"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/be/sfx2/source/dialog.po b/source/be/sfx2/source/dialog.po
index 6f60ae69b5e..f3d7e70f1bb 100644
--- a/source/be/sfx2/source/dialog.po
+++ b/source/be/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-15 17:19+0000\n"
+"PO-Revision-Date: 2017-06-17 17:57+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492276743.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497722247.000000\n"
#: dialog.src
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"Division\n"
"itemlist.text"
msgid "Division"
-msgstr ""
+msgstr "Аддзел"
#: dinfdlg.src
msgctxt ""
@@ -220,7 +220,7 @@ msgctxt ""
"Editor\n"
"itemlist.text"
msgid "Editor"
-msgstr ""
+msgstr "Рэдактар"
#: dinfdlg.src
msgctxt ""
@@ -229,7 +229,7 @@ msgctxt ""
"E-Mail\n"
"itemlist.text"
msgid "E-Mail"
-msgstr ""
+msgstr "Эл.пошта"
#: dinfdlg.src
msgctxt ""
@@ -391,7 +391,7 @@ msgctxt ""
"Telephone number\n"
"itemlist.text"
msgid "Telephone number"
-msgstr ""
+msgstr "Нумар тэлефона"
#: dinfdlg.src
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"Typist\n"
"itemlist.text"
msgid "Typist"
-msgstr ""
+msgstr "Машыністка"
#: dinfdlg.src
msgctxt ""
@@ -409,7 +409,7 @@ msgctxt ""
"URL\n"
"itemlist.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: dinfdlg.src
msgctxt ""
@@ -427,7 +427,7 @@ msgctxt ""
"DateTime\n"
"itemlist.text"
msgid "DateTime"
-msgstr ""
+msgstr "Дата і час"
#: dinfdlg.src
msgctxt ""
@@ -436,7 +436,7 @@ msgctxt ""
"Date\n"
"itemlist.text"
msgid "Date"
-msgstr ""
+msgstr "Дата"
#: dinfdlg.src
msgctxt ""
@@ -445,7 +445,7 @@ msgctxt ""
"Duration\n"
"itemlist.text"
msgid "Duration"
-msgstr ""
+msgstr "Працягласць"
#: dinfdlg.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"Number\n"
"itemlist.text"
msgid "Number"
-msgstr ""
+msgstr "Нумар"
#: dinfdlg.src
msgctxt ""
@@ -463,7 +463,7 @@ msgctxt ""
"Yes or no\n"
"itemlist.text"
msgid "Yes or no"
-msgstr ""
+msgstr "Так ці не"
#: dinfdlg.src
msgctxt ""
diff --git a/source/be/sfx2/source/view.po b/source/be/sfx2/source/view.po
index c47b8c3697e..80e6ec8bc1e 100644
--- a/source/be/sfx2/source/view.po
+++ b/source/be/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-15 14:30+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -254,6 +254,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/be/sfx2/uiconfig/ui.po b/source/be/sfx2/uiconfig/ui.po
index 5b780816547..8bcefed5738 100644
--- a/source/be/sfx2/uiconfig/ui.po
+++ b/source/be/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-26 18:48+0000\n"
+"PO-Revision-Date: 2017-06-17 17:59+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493232500.000000\n"
+"X-POOTLE-MTIME: 1497722384.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -571,7 +571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Скасаваць"
#: editdurationdialog.ui
msgctxt ""
@@ -580,7 +580,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Duration"
-msgstr ""
+msgstr "Змяніць працягласць"
#: editdurationdialog.ui
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Index"
-msgstr ""
+msgstr "Паказальнік"
#: helpcontrol.ui
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Пошук"
#: helpcontrol.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmarks"
-msgstr ""
+msgstr "Закладкі"
#: helpindexpage.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Display"
-msgstr ""
+msgstr "Паказаць"
#: helpindexpage.ui
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Search term"
-msgstr ""
+msgstr "Пошук тэксту"
#: helpmanual.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME Help Not Installed"
-msgstr ""
+msgstr "Даведка %PRODUCTNAME не ўстаноўлена"
#: helpmanual.ui
msgctxt ""
@@ -2179,7 +2179,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Presentations"
-msgstr ""
+msgstr "Прэзентацыі"
#: templatedlg.ui
msgctxt ""
@@ -2197,7 +2197,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "All Categories"
-msgstr ""
+msgstr "Усе катэгорыі"
#: versioncommentdialog.ui
msgctxt ""
@@ -2215,7 +2215,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date and time: "
-msgstr ""
+msgstr "Дата і час: "
#: versioncommentdialog.ui
msgctxt ""
@@ -2233,7 +2233,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Show..."
-msgstr ""
+msgstr "Паказаць..."
#: versionscmis.ui
msgctxt ""
@@ -2242,7 +2242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Compare"
-msgstr ""
+msgstr "Параўнаць"
#: versionscmis.ui
msgctxt ""
@@ -2251,7 +2251,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date and time"
-msgstr ""
+msgstr "Дата і час"
#: versionscmis.ui
msgctxt ""
@@ -2263,7 +2263,6 @@ msgid "Saved by"
msgstr "Кім запісана"
#: versionscmis.ui
-#, fuzzy
msgctxt ""
"versionscmis.ui\n"
"comments\n"
@@ -2279,7 +2278,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Existing Versions"
-msgstr ""
+msgstr "Наяўныя версіі"
#: versionsofdialog.ui
msgctxt ""
@@ -2288,7 +2287,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Show..."
-msgstr ""
+msgstr "Паказаць..."
#: versionsofdialog.ui
msgctxt ""
@@ -2297,7 +2296,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Compare"
-msgstr ""
+msgstr "Параўнаць"
#: versionsofdialog.ui
msgctxt ""
@@ -2306,7 +2305,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "CMIS"
-msgstr ""
+msgstr "CMIS"
#: versionsofdialog.ui
msgctxt ""
@@ -2333,7 +2332,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Versions"
-msgstr ""
+msgstr "Новыя версіі"
#: versionsofdialog.ui
msgctxt ""
@@ -2342,7 +2341,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date and time"
-msgstr ""
+msgstr "Дата і час"
#: versionsofdialog.ui
msgctxt ""
@@ -2354,7 +2353,6 @@ msgid "Saved by"
msgstr "Кім запісана"
#: versionsofdialog.ui
-#, fuzzy
msgctxt ""
"versionsofdialog.ui\n"
"comments\n"
@@ -2370,4 +2368,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Existing Versions"
-msgstr ""
+msgstr "Наяўныя версіі"
diff --git a/source/be/starmath/source.po b/source/be/starmath/source.po
index 815903d6084..8f7a83ed88a 100644
--- a/source/be/starmath/source.po
+++ b/source/be/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: source\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-15 19:50+0000\n"
+"PO-Revision-Date: 2017-06-17 17:59+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492285853.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497722387.000000\n"
#: commands.src
msgctxt ""
@@ -73,7 +73,6 @@ msgid "Subtraction -"
msgstr "Адыманне -"
#: commands.src
-#, fuzzy
msgctxt ""
"commands.src\n"
"RID_XCDOTY_HELP\n"
@@ -127,7 +126,7 @@ msgctxt ""
"RID_XODIVIDEY_HELP\n"
"string.text"
msgid "Circled Slash"
-msgstr ""
+msgstr "Скос у акружыне"
#: commands.src
msgctxt ""
@@ -135,7 +134,7 @@ msgctxt ""
"RID_XODOTY_HELP\n"
"string.text"
msgid "Circled Dot"
-msgstr ""
+msgstr "Кропка ў акружыне"
#: commands.src
msgctxt ""
@@ -143,7 +142,7 @@ msgctxt ""
"RID_XOMINUSY_HELP\n"
"string.text"
msgid "Circled Minus"
-msgstr ""
+msgstr "Мінус у акружыне"
#: commands.src
msgctxt ""
@@ -151,7 +150,7 @@ msgctxt ""
"RID_XOPLUSY_HELP\n"
"string.text"
msgid "Circled Plus"
-msgstr ""
+msgstr "Плюс у акружыне"
#: commands.src
msgctxt ""
@@ -159,7 +158,7 @@ msgctxt ""
"RID_XOTIMESY_HELP\n"
"string.text"
msgid "Tensor Product"
-msgstr ""
+msgstr "Тэнзарны здабытак"
#: commands.src
msgctxt ""
@@ -247,16 +246,15 @@ msgctxt ""
"RID_XLLY_HELP\n"
"string.text"
msgid "Is Much Less Than"
-msgstr ""
+msgstr "Значна менш за"
#: commands.src
-#, fuzzy
msgctxt ""
"commands.src\n"
"RID_XGGY_HELP\n"
"string.text"
msgid "Is Much Greater Than"
-msgstr "Больш за"
+msgstr "Значна больш за"
#: commands.src
msgctxt ""
@@ -264,7 +262,7 @@ msgctxt ""
"RID_XDEFY_HELP\n"
"string.text"
msgid "Is Defined As"
-msgstr ""
+msgstr "Вызначана як"
#: commands.src
msgctxt ""
@@ -336,7 +334,7 @@ msgctxt ""
"RID_XTRANSLY_HELP\n"
"string.text"
msgid "Corresponds To (Left)"
-msgstr ""
+msgstr "Адпавядае (злева)"
#: commands.src
msgctxt ""
@@ -344,7 +342,7 @@ msgctxt ""
"RID_XTRANSRY_HELP\n"
"string.text"
msgid "Corresponds To (Right)"
-msgstr ""
+msgstr "Адпавядае (справа)"
#: commands.src
msgctxt ""
@@ -667,22 +665,20 @@ msgid "Sum"
msgstr "Сума"
#: commands.src
-#, fuzzy
msgctxt ""
"commands.src\n"
"RID_SUM_FROMX_HELP\n"
"string.text"
msgid "Sum Subscript Bottom"
-msgstr "Ніжні індэкс знізу"
+msgstr "Ніжні індэкс сумы"
#: commands.src
-#, fuzzy
msgctxt ""
"commands.src\n"
"RID_SUM_TOX_HELP\n"
"string.text"
msgid "Sum Superscript Top"
-msgstr "Верхні індэкс зверху"
+msgstr "Верхні індэкс сумы"
#: commands.src
msgctxt ""
@@ -690,7 +686,7 @@ msgctxt ""
"RID_SUM_FROMTOX_HELP\n"
"string.text"
msgid "Sum Sup/Sub script"
-msgstr ""
+msgstr "Індэксы сумы"
#: commands.src
msgctxt ""
@@ -701,13 +697,12 @@ msgid "Product"
msgstr "Вынік"
#: commands.src
-#, fuzzy
msgctxt ""
"commands.src\n"
"RID_PROD_FROMX_HELP\n"
"string.text"
msgid "Product Subscript Bottom"
-msgstr "Ніжні індэкс знізу"
+msgstr "Ніжні індэкс здабытку"
#: commands.src
msgctxt ""
@@ -715,7 +710,7 @@ msgctxt ""
"RID_PROD_TOX_HELP\n"
"string.text"
msgid "Product Superscript Top"
-msgstr ""
+msgstr "Верхні індэкс здабытку"
#: commands.src
msgctxt ""
@@ -723,7 +718,7 @@ msgctxt ""
"RID_PROD_FROMTOX_HELP\n"
"string.text"
msgid "Product Sup/Sub script"
-msgstr ""
+msgstr "Індэксы здабытку"
#: commands.src
msgctxt ""
diff --git a/source/be/starmath/uiconfig/smath/ui.po b/source/be/starmath/uiconfig/smath/ui.po
index 69767363ea2..cfff433c03a 100644
--- a/source/be/starmath/uiconfig/smath/ui.po
+++ b/source/be/starmath/uiconfig/smath/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-15 19:51+0000\n"
+"PO-Revision-Date: 2017-06-18 19:41+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492285862.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497814866.000000\n"
#: alignmentdialog.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Default"
-msgstr ""
+msgstr "Прадвызначана"
#: fontsizedialog.ui
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Base _size:"
-msgstr ""
+msgstr "Асноўны памер:"
#: fontsizedialog.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Operators:"
-msgstr ""
+msgstr "Аператары:"
#: fontsizedialog.ui
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_tyle:"
-msgstr ""
+msgstr "Стыль:"
#: symdefinedialog.ui
msgctxt ""
diff --git a/source/be/svl/source/misc.po b/source/be/svl/source/misc.po
index 02f57615207..604262d0ad0 100644
--- a/source/be/svl/source/misc.po
+++ b/source/be/svl/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-26 18:48+0000\n"
+"PO-Revision-Date: 2017-06-18 17:39+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493232528.000000\n"
+"X-POOTLE-MTIME: 1497807568.000000\n"
#: mediatyp.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_APP_PDF\n"
"string.text"
msgid "PDF file"
-msgstr "PDF file"
+msgstr "Файл PDF"
#: mediatyp.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_APP_RTF\n"
"string.text"
msgid "RTF File"
-msgstr "RTF File"
+msgstr "Файл RTF"
#: mediatyp.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_APP_ZIP\n"
"string.text"
msgid "ZIP file"
-msgstr "ZIP file"
+msgstr "Файл ZIP"
#: mediatyp.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_APP_JAR\n"
"string.text"
msgid "JAR file"
-msgstr "JAR file"
+msgstr "Файл JAR"
#: mediatyp.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_AUDIO_AIFF\n"
"string.text"
msgid "Audio file"
-msgstr "Audio file"
+msgstr "Аўдыяфайл"
#: mediatyp.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_X_VRML\n"
"string.text"
msgid "VRML file"
-msgstr "VRML file"
+msgstr "Файл VRML"
#: mediatyp.src
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_MACRO\n"
"string.text"
msgid "Macro file"
-msgstr "Macro file"
+msgstr "Файл макрасаў"
#: mediatyp.src
msgctxt ""
diff --git a/source/be/svtools/source/control.po b/source/be/svtools/source/control.po
index 3a8c8267669..6ffbeb6cf9d 100644
--- a/source/be/svtools/source/control.po
+++ b/source/be/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: control\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-13 18:03+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -296,6 +296,110 @@ msgstr "Вельмі цёмны курсіў"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/be/svtools/source/dialogs.po b/source/be/svtools/source/dialogs.po
index 5a4ccd5183a..d25fbbcf5e3 100644
--- a/source/be/svtools/source/dialogs.po
+++ b/source/be/svtools/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-25 13:52+0200\n"
-"PO-Revision-Date: 2017-04-15 16:15+0000\n"
+"PO-Revision-Date: 2017-06-14 17:14+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492272938.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497460478.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -848,7 +848,7 @@ msgctxt ""
"General OLE error.\n"
"itemlist.text"
msgid "General OLE error."
-msgstr ""
+msgstr "Агульная памылка OLE."
#: so3res.src
msgctxt ""
diff --git a/source/be/svtools/source/misc.po b/source/be/svtools/source/misc.po
index cddf17ebb20..4cd5c2d9fb6 100644
--- a/source/be/svtools/source/misc.po
+++ b/source/be/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-22 17:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-14 17:16+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492882616.000000\n"
+"X-POOTLE-MTIME: 1497460594.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3188,10 +3188,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3919,6 +3919,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
@@ -3988,7 +3997,7 @@ msgctxt ""
"STR_SVT_ESTIMATED_SIZE_PIX_1\n"
"string.text"
msgid "The image needs about %1 KB of memory."
-msgstr ""
+msgstr "Відарысу трэба каля %1 КБ памяці."
#: svtools.src
msgctxt ""
@@ -4012,7 +4021,7 @@ msgctxt ""
"STR_SVT_HOST\n"
"string.text"
msgid "host"
-msgstr ""
+msgstr "вузел"
#: svtools.src
msgctxt ""
@@ -4020,10 +4029,9 @@ msgctxt ""
"STR_SVT_PORT\n"
"string.text"
msgid "port"
-msgstr ""
+msgstr "порт"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_READY\n"
@@ -4032,7 +4040,6 @@ msgid "Ready"
msgstr "Напагатове"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PAUSED\n"
@@ -4041,7 +4048,6 @@ msgid "Paused"
msgstr "Прыпынена"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PENDING\n"
@@ -4050,7 +4056,6 @@ msgid "Pending deletion"
msgstr "Чакае выдалення"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_BUSY\n"
@@ -4059,7 +4064,6 @@ msgid "Busy"
msgstr "Занята"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_INITIALIZING\n"
@@ -4068,7 +4072,6 @@ msgid "Initializing"
msgstr "Ініцыялізуецца"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_WAITING\n"
@@ -4077,7 +4080,6 @@ msgid "Waiting"
msgstr "Чакаецца"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_WARMING_UP\n"
@@ -4086,7 +4088,6 @@ msgid "Warming up"
msgstr "Разаграваецца"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PROCESSING\n"
@@ -4095,7 +4096,6 @@ msgid "Processing"
msgstr "Апрацоўваецца"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PRINTING\n"
@@ -4104,7 +4104,6 @@ msgid "Printing"
msgstr "Друкаванне"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_OFFLINE\n"
@@ -4113,7 +4112,6 @@ msgid "Offline"
msgstr "Недасягальна"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_ERROR\n"
@@ -4122,7 +4120,6 @@ msgid "Error"
msgstr "Памылка"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_SERVER_UNKNOWN\n"
@@ -4131,7 +4128,6 @@ msgid "Unknown Server"
msgstr "Невядомы сервер"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PAPER_JAM\n"
@@ -4140,7 +4136,6 @@ msgid "Paper jam"
msgstr "Папера зацялася"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PAPER_OUT\n"
@@ -4149,7 +4144,6 @@ msgid "Not enough paper"
msgstr "Не хапае паперы"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_MANUAL_FEED\n"
@@ -4158,7 +4152,6 @@ msgid "Manual feed"
msgstr "Падаецца з рукі"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_PAPER_PROBLEM\n"
@@ -4167,7 +4160,6 @@ msgid "Paper problem"
msgstr "Праблема з паперай"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_IO_ACTIVE\n"
@@ -4176,7 +4168,6 @@ msgid "I/O active"
msgstr "У(вод)/ВЫ(вад) актыўны"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_OUTPUT_BIN_FULL\n"
@@ -4185,7 +4176,6 @@ msgid "Output bin full"
msgstr "Перапоўнены кантэйнер гатовых адбіткаў"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_TONER_LOW\n"
@@ -4194,7 +4184,6 @@ msgid "Toner low"
msgstr "Мала тонеру"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_NO_TONER\n"
@@ -4211,7 +4200,6 @@ msgid "Delete Page"
msgstr "Сцерці старонку"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_USER_INTERVENTION\n"
@@ -4220,7 +4208,6 @@ msgid "User intervention necessary"
msgstr "Патрабуецца ўмяшанне карыстальніка"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_OUT_OF_MEMORY\n"
@@ -4245,7 +4232,6 @@ msgid "Power save mode"
msgstr "Рэжым энергазберагання"
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_PRNDLG_DEFPRINTER\n"
diff --git a/source/be/svtools/uiconfig/ui.po b/source/be/svtools/uiconfig/ui.po
index 03e556061cd..14512593baf 100644
--- a/source/be/svtools/uiconfig/ui.po
+++ b/source/be/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-26 18:49+0000\n"
+"PO-Revision-Date: 2017-06-17 18:00+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493232564.000000\n"
+"X-POOTLE-MTIME: 1497722445.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Image Options"
-msgstr ""
+msgstr "Параметры відарыса"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -95,27 +95,25 @@ msgctxt ""
"title\n"
"string.text"
msgid "Templates: Address Book Assignment"
-msgstr ""
+msgstr "Шаблоны: прызначэнне адраснай кнігі"
#: addresstemplatedialog.ui
-#, fuzzy
msgctxt ""
"addresstemplatedialog.ui\n"
"label33\n"
"label\n"
"string.text"
msgid "Data source:"
-msgstr "Крыніца даных"
+msgstr "Крыніца даных:"
#: addresstemplatedialog.ui
-#, fuzzy
msgctxt ""
"addresstemplatedialog.ui\n"
"label43\n"
"label\n"
"string.text"
msgid "Table:"
-msgstr "Табліца"
+msgstr "Табліца:"
#: addresstemplatedialog.ui
msgctxt ""
@@ -151,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Сцерці"
#: fileviewmenu.ui
msgctxt ""
@@ -160,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr ""
+msgstr "Перайменаваць"
#: graphicexport.ui
msgctxt ""
@@ -235,7 +233,6 @@ msgid "Compression"
msgstr "Сцісканне"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"rlecb\n"
@@ -308,7 +305,6 @@ msgid "Text"
msgstr "Тэкст"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"label16\n"
@@ -318,7 +314,6 @@ msgid "Encoding"
msgstr "Знаказбор"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"tiffpreviewcb\n"
@@ -364,7 +359,6 @@ msgid "Grayscale"
msgstr "Шэрыя адценні"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"label18\n"
@@ -428,7 +422,6 @@ msgid "Compression"
msgstr "Сцісканне"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"label4\n"
@@ -516,7 +509,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Enable JRE?"
-msgstr ""
+msgstr "Дазволіць JRE?"
#: javadisableddialog.ui
msgctxt ""
@@ -525,7 +518,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. However, use of a JRE has been disabled. Do you want to enable the use of a JRE now?"
-msgstr ""
+msgstr "Дзеля выканання гэтай задачы ў %PRODUCTNAME патрабуецца асяроддзе выканання Явы (JRE). Але ўжыванне JRE не дазволена ў настаўленнях. Ці хочаце дазволіць ужыванне JRE?"
#: placeedit.ui
msgctxt ""
@@ -546,14 +539,13 @@ msgid "Type:"
msgstr "Тып:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"hostLabel\n"
"label\n"
"string.text"
msgid "Host:"
-msgstr "Адрас"
+msgstr "Вузел:"
#: placeedit.ui
msgctxt ""
@@ -562,27 +554,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "Root:"
-msgstr ""
+msgstr "Корань:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"shareLabel\n"
"label\n"
"string.text"
msgid "Share:"
-msgstr "Супольны рэсурс"
+msgstr "Супольны рэсурс:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"repositoryLabel\n"
"label\n"
"string.text"
msgid "Repository:"
-msgstr "Рэпазіторый"
+msgstr "Рэпазіторый:"
#: placeedit.ui
msgctxt ""
@@ -591,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secure connection"
-msgstr ""
+msgstr "Бяспечнае далучэнне"
#: placeedit.ui
msgctxt ""
@@ -600,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User:"
-msgstr ""
+msgstr "Карыстальнік:"
#: placeedit.ui
msgctxt ""
@@ -612,14 +602,13 @@ msgid "Label:"
msgstr ""
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"portLabel\n"
"label\n"
"string.text"
msgid "Port:"
-msgstr "Порт"
+msgstr "Порт:"
#: placeedit.ui
msgctxt ""
@@ -628,7 +617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password:"
-msgstr ""
+msgstr "Пароль:"
#: placeedit.ui
msgctxt ""
@@ -637,7 +626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remember password"
-msgstr ""
+msgstr "Памятаць пароль"
#: placeedit.ui
msgctxt ""
@@ -694,24 +683,22 @@ msgid "Options..."
msgstr "Настаўленні..."
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Name:"
-msgstr "Назва"
+msgstr "Назва:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Status:"
-msgstr "Статус"
+msgstr "Статус:"
#: printersetupdialog.ui
msgctxt ""
@@ -723,24 +710,22 @@ msgid "Type:"
msgstr "Тып:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "Location:"
-msgstr "Месца"
+msgstr "Месца:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "Comment:"
-msgstr "Заўвага"
+msgstr "Заўвага:"
#: printersetupdialog.ui
msgctxt ""
@@ -767,7 +752,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Confirm Delete"
-msgstr ""
+msgstr "Пацвердзіце сціранне"
#: querydeletedialog.ui
msgctxt ""
@@ -776,7 +761,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Are you sure you want to delete the selected data?"
-msgstr ""
+msgstr "Сапраўды сцерці абраныя даныя?"
#: querydeletedialog.ui
msgctxt ""
@@ -785,7 +770,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "Entry: %s"
-msgstr ""
+msgstr "Запіс: %s"
#: querydeletedialog.ui
msgctxt ""
@@ -794,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Сцерці"
#: querydeletedialog.ui
msgctxt ""
@@ -803,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete _All"
-msgstr ""
+msgstr "Сцерці ўсе"
#: querydeletedialog.ui
msgctxt ""
@@ -812,7 +797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Do _Not Delete"
-msgstr ""
+msgstr "Не сціраць"
#: restartdialog.ui
msgctxt ""
@@ -824,7 +809,6 @@ msgid "Restart %PRODUCTNAME"
msgstr "Пусціць %PRODUCTNAME нанова"
#: restartdialog.ui
-#, fuzzy
msgctxt ""
"restartdialog.ui\n"
"yes\n"
@@ -834,7 +818,6 @@ msgid "Restart Now"
msgstr "Пусціць нанова"
#: restartdialog.ui
-#, fuzzy
msgctxt ""
"restartdialog.ui\n"
"no\n"
diff --git a/source/be/svx/source/dialog.po b/source/be/svx/source/dialog.po
index 97786b3a376..07a5f5d34ca 100644
--- a/source/be/svx/source/dialog.po
+++ b/source/be/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 09:48+0000\n"
+"PO-Revision-Date: 2017-06-18 17:40+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495792113.000000\n"
+"X-POOTLE-MTIME: 1497807616.000000\n"
#: SafeMode.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_SAFEMODE_ZIP_FAILURE\n"
"string.text"
msgid "The zip file could not be created."
-msgstr ""
+msgstr "Немагчыма стварыць файл ZIP."
#: bmpmask.src
msgctxt ""
@@ -3553,13 +3553,12 @@ msgid "Solid diamond bullets"
msgstr "Solid diamond bullets"
#: svxbmpnumvalueset.src
-#, fuzzy
msgctxt ""
"svxbmpnumvalueset.src\n"
"RID_SVXSTR_BULLET_DESCRIPTION_3\n"
"string.text"
msgid "Solid large square bullets"
-msgstr "Solid large square bullets"
+msgstr "Вялікія суцэльныя квадратныя пункты"
#: svxbmpnumvalueset.src
#, fuzzy
@@ -3571,13 +3570,12 @@ msgid "Right pointing arrow bullets filled out"
msgstr "Right pointing arrow bullets filled out"
#: svxbmpnumvalueset.src
-#, fuzzy
msgctxt ""
"svxbmpnumvalueset.src\n"
"RID_SVXSTR_BULLET_DESCRIPTION_5\n"
"string.text"
msgid "Right pointing arrow bullets"
-msgstr "Right pointing arrow bullets"
+msgstr "Маркёр-стрэлка ўправа"
#: svxbmpnumvalueset.src
#, fuzzy
@@ -4093,7 +4091,6 @@ msgid "Line of text"
msgstr "Радок тэксту"
#: txenctab.src
-#, fuzzy
msgctxt ""
"txenctab.src\n"
"RID_SVXSTR_TEXTENCODING_TABLE\n"
@@ -4751,14 +4748,13 @@ msgid "Korean (Windows-Johab-1361)"
msgstr "Карэйскі (Windows-Johab-1361)"
#: txenctab.src
-#, fuzzy
msgctxt ""
"txenctab.src\n"
"RID_SVXSTR_TEXTENCODING_TABLE\n"
"Unicode (UTF-16)\n"
"itemlist.text"
msgid "Unicode (UTF-16)"
-msgstr "Унікод (UTF-7)"
+msgstr "Унікод (UTF-16)"
#: txenctab.src
msgctxt ""
@@ -4974,7 +4970,7 @@ msgctxt ""
"Odia\n"
"itemlist.text"
msgid "Odia"
-msgstr ""
+msgstr "Орыя"
#: ucsubset.src
msgctxt ""
@@ -5436,7 +5432,6 @@ msgid "Yi Radicals"
msgstr "Радыкалы Йі"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
@@ -5452,7 +5447,7 @@ msgctxt ""
"Gothic\n"
"itemlist.text"
msgid "Gothic"
-msgstr ""
+msgstr "Готыка"
#: ucsubset.src
msgctxt ""
@@ -5461,7 +5456,7 @@ msgctxt ""
"Deseret\n"
"itemlist.text"
msgid "Deseret"
-msgstr ""
+msgstr "Дэзерэт"
#: ucsubset.src
msgctxt ""
@@ -5533,7 +5528,7 @@ msgctxt ""
"Tags\n"
"itemlist.text"
msgid "Tags"
-msgstr ""
+msgstr "Тэгі"
#: ucsubset.src
msgctxt ""
@@ -6819,7 +6814,7 @@ msgctxt ""
"Takri\n"
"itemlist.text"
msgid "Takri"
-msgstr ""
+msgstr "Такры"
#: ucsubset.src
msgctxt ""
@@ -6828,7 +6823,7 @@ msgctxt ""
"Bassa Vah\n"
"itemlist.text"
msgid "Bassa Vah"
-msgstr ""
+msgstr "Баса"
#: ucsubset.src
msgctxt ""
diff --git a/source/be/svx/source/form.po b/source/be/svx/source/form.po
index f1e80ef5b0e..a7e0b93c9ef 100644
--- a/source/be/svx/source/form.po
+++ b/source/be/svx/source/form.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: form\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-15 14:36+0000\n"
+"PO-Revision-Date: 2017-06-18 19:52+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492266991.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815549.000000\n"
#: datanavi.src
#, fuzzy
@@ -409,7 +409,7 @@ msgctxt ""
"Table\n"
"itemlist.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: fmstring.src
msgctxt ""
diff --git a/source/be/svx/source/items.po b/source/be/svx/source/items.po
index d0a376ae60a..5b76adf4d5c 100644
--- a/source/be/svx/source/items.po
+++ b/source/be/svx/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: items\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 18:34+0000\n"
+"PO-Revision-Date: 2017-06-17 18:02+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492281243.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497722521.000000\n"
#: svxerr.src
#, fuzzy
@@ -396,7 +396,6 @@ msgid "Rel. Font size"
msgstr "Адн. памер шрыфту"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_ATTR_NAMES\n"
@@ -448,7 +447,7 @@ msgctxt ""
"Character blinking\n"
"itemlist.text"
msgid "Character blinking"
-msgstr ""
+msgstr "Мігценне сімвалаў"
#: svxitems.src
msgctxt ""
@@ -782,7 +781,7 @@ msgctxt ""
"Character scaling\n"
"itemlist.text"
msgid "Character scaling"
-msgstr ""
+msgstr "Маштаб знакаў"
#: svxitems.src
msgctxt ""
@@ -915,7 +914,6 @@ msgid "Arabic"
msgstr "Арабскія"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PAGE_NUM_NONE\n"
@@ -996,7 +994,6 @@ msgid "Text: "
msgstr "Тэкст: "
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_BRUSH_CHAR\n"
diff --git a/source/be/svx/source/src.po b/source/be/svx/source/src.po
index 25289c58167..2893f9b3560 100644
--- a/source/be/svx/source/src.po
+++ b/source/be/svx/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-26 18:53+0000\n"
+"PO-Revision-Date: 2017-06-18 17:40+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493232784.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497807657.000000\n"
#: errtxt.src
msgctxt ""
@@ -433,14 +433,13 @@ msgid "There are too many files open."
msgstr "Занадта многа файлаў адкрыта."
#: errtxt.src
-#, fuzzy
msgctxt ""
"errtxt.src\n"
"RID_ERRHDL\n"
"Data could not be read from the file.\n"
"itemlist.text"
msgid "Data could not be read from the file."
-msgstr "Data could not be read from the file."
+msgstr "Немагчыма прачытаць даныя з гэтага файла."
#: errtxt.src
msgctxt ""
diff --git a/source/be/svx/source/tbxctrls.po b/source/be/svx/source/tbxctrls.po
index f13cc614f73..1f8496c4454 100644
--- a/source/be/svx/source/tbxctrls.po
+++ b/source/be/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: tbxctrls\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-04-22 17:31+0000\n"
+"PO-Revision-Date: 2017-06-17 18:02+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492882289.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497722534.000000\n"
#: colrctrl.src
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"RID_SVXSTR_NOFILL\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Без запаўнення"
#: tbcontrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_TRANSPARENT\n"
"string.text"
msgid "Transparent"
-msgstr ""
+msgstr "Празрыста"
#: tbcontrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_DEFAULT\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Тыпова"
#: tbcontrl.src
msgctxt ""
@@ -611,7 +611,6 @@ msgid "Find"
msgstr "Знайсці"
#: tbunosearchcontrollers.src
-#, fuzzy
msgctxt ""
"tbunosearchcontrollers.src\n"
"RID_SVXSTR_FINDBAR_MATCHCASE\n"
diff --git a/source/be/svx/uiconfig/ui.po b/source/be/svx/uiconfig/ui.po
index 0e17e6f8534..70ab85f1a42 100644
--- a/source/be/svx/uiconfig/ui.po
+++ b/source/be/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 09:49+0000\n"
+"PO-Revision-Date: 2017-06-18 17:58+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495792184.000000\n"
+"X-POOTLE-MTIME: 1497808717.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -1088,7 +1088,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert _Column"
-msgstr ""
+msgstr "Уставіць калонку"
#: colsmenu.ui
msgctxt ""
@@ -1097,7 +1097,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text Box"
-msgstr ""
+msgstr "Тэкставае поле"
#: colsmenu.ui
msgctxt ""
@@ -1169,7 +1169,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pattern Field"
-msgstr ""
+msgstr "Поле ўзору"
#: colsmenu.ui
msgctxt ""
@@ -1178,7 +1178,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Formatted Field"
-msgstr ""
+msgstr "Фарматаванае поле"
#: colsmenu.ui
msgctxt ""
@@ -1187,7 +1187,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date and Time Field"
-msgstr ""
+msgstr "Поле даты і часу"
#: colsmenu.ui
msgctxt ""
@@ -1196,7 +1196,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Replace with"
-msgstr ""
+msgstr "Замяняць на"
#: colsmenu.ui
msgctxt ""
@@ -1205,7 +1205,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text Box"
-msgstr ""
+msgstr "Тэкставае поле"
#: colsmenu.ui
msgctxt ""
@@ -2542,7 +2542,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Filtering"
-msgstr ""
+msgstr "Фільтраванне"
#: docking3deffects.ui
msgctxt ""
@@ -2551,7 +2551,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Black & White"
-msgstr ""
+msgstr "Чорна-белы"
#: docking3deffects.ui
msgctxt ""
@@ -2560,7 +2560,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Колер"
#: docking3deffects.ui
msgctxt ""
@@ -2587,7 +2587,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Object-Specific"
-msgstr ""
+msgstr "Спецыфічна для аб'екта"
#: docking3deffects.ui
msgctxt ""
@@ -2596,7 +2596,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Паралельна"
#: docking3deffects.ui
msgctxt ""
@@ -2605,7 +2605,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Circular"
-msgstr ""
+msgstr "Кругавы"
#: docking3deffects.ui
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Object-Specific"
-msgstr ""
+msgstr "Спецыфічна для аб'екта"
#: docking3deffects.ui
msgctxt ""
@@ -2623,7 +2623,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Паралельна"
#: docking3deffects.ui
msgctxt ""
@@ -2749,7 +2749,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Дыялог колераў"
#: docking3deffects.ui
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Дыялог колераў"
#: docking3deffects.ui
msgctxt ""
@@ -2767,7 +2767,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Material"
-msgstr ""
+msgstr "Матэрыял"
#: docking3deffects.ui
msgctxt ""
@@ -2776,7 +2776,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Color"
-msgstr ""
+msgstr "Колер"
#: docking3deffects.ui
msgctxt ""
@@ -2785,7 +2785,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_ntensity"
-msgstr ""
+msgstr "Інтэнсіўнасць"
#: docking3deffects.ui
msgctxt ""
@@ -2794,7 +2794,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Дыялог колераў"
#: docking3deffects.ui
msgctxt ""
@@ -3663,14 +3663,13 @@ msgid "_No Format"
msgstr "Не Фармат"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"layout\n"
"label\n"
"string.text"
msgid "Search for st_yles"
-msgstr "Знайсці для"
+msgstr "Шукаць у стылях"
#: findreplacedialog.ui
msgctxt ""
@@ -3796,7 +3795,6 @@ msgid "Values"
msgstr "Значэнні"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"calcsearchin\n"
@@ -3966,7 +3964,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
-msgstr ""
+msgstr "Укажыце вертыкальны зрух ад цэнтру у працэнтах для градыентнага ценю. 50% - гэта цэнтр вертыкалі."
#: floatingcontour.ui
msgctxt ""
@@ -3975,7 +3973,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Contour Editor"
-msgstr ""
+msgstr "Рэдактар контуру"
#: floatingcontour.ui
msgctxt ""
@@ -3984,7 +3982,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Ужыць"
#: floatingcontour.ui
msgctxt ""
@@ -3993,7 +3991,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Workspace"
-msgstr ""
+msgstr "Майстэрня"
#: floatingcontour.ui
msgctxt ""
@@ -4002,7 +4000,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select"
-msgstr ""
+msgstr "Выбраць"
#: floatingcontour.ui
msgctxt ""
@@ -4011,7 +4009,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rectangle"
-msgstr ""
+msgstr "Прамавугольнік"
#: floatingcontour.ui
msgctxt ""
@@ -4020,7 +4018,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ellipse"
-msgstr ""
+msgstr "Эліпс"
#: floatingcontour.ui
msgctxt ""
@@ -4029,7 +4027,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Polygon"
-msgstr ""
+msgstr "Многавугольнік"
#: floatingcontour.ui
msgctxt ""
@@ -4936,7 +4934,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Send to Back"
-msgstr ""
+msgstr "На задні план"
#: imapmenu.ui
msgctxt ""
@@ -4945,7 +4943,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select _All"
-msgstr ""
+msgstr "Вылучыць усе"
#: imapmenu.ui
msgctxt ""
@@ -4954,7 +4952,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Сцерці"
#: linkwarndialog.ui
msgctxt ""
@@ -5190,7 +5188,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizont_al:"
-msgstr ""
+msgstr "Гарызантальна:"
#: optgridpage.ui
msgctxt ""
@@ -5199,7 +5197,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "V_ertical:"
-msgstr ""
+msgstr "Вертыкальна:"
#: optgridpage.ui
msgctxt ""
@@ -6045,7 +6043,6 @@ msgid "Action"
msgstr "Дзеянне"
#: redlineviewpage.ui
-#, fuzzy
msgctxt ""
"redlineviewpage.ui\n"
"position\n"
@@ -6055,7 +6052,6 @@ msgid "Position"
msgstr "Пазіцыя"
#: redlineviewpage.ui
-#, fuzzy
msgctxt ""
"redlineviewpage.ui\n"
"author\n"
@@ -6065,7 +6061,6 @@ msgid "Author"
msgstr "Аўтар"
#: redlineviewpage.ui
-#, fuzzy
msgctxt ""
"redlineviewpage.ui\n"
"date\n"
@@ -6075,17 +6070,15 @@ msgid "Date"
msgstr "Дата"
#: redlineviewpage.ui
-#, fuzzy
msgctxt ""
"redlineviewpage.ui\n"
"comment\n"
"label\n"
"string.text"
msgid "Comment"
-msgstr "Заўвага"
+msgstr "Каментарый"
#: redlineviewpage.ui
-#, fuzzy
msgctxt ""
"redlineviewpage.ui\n"
"changes-atkobject\n"
@@ -6101,7 +6094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Сцерці радкі"
#: rowsmenu.ui
msgctxt ""
@@ -6128,7 +6121,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Millimeter"
-msgstr ""
+msgstr "Міліметр"
#: rulermenu.ui
msgctxt ""
@@ -6137,7 +6130,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centimeter"
-msgstr ""
+msgstr "Сантыметр"
#: rulermenu.ui
msgctxt ""
@@ -6146,7 +6139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Meter"
-msgstr ""
+msgstr "Метр"
#: rulermenu.ui
msgctxt ""
@@ -6155,7 +6148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Kilometer"
-msgstr ""
+msgstr "Кіламетр"
#: rulermenu.ui
msgctxt ""
@@ -6164,7 +6157,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Inch"
-msgstr ""
+msgstr "Цаль"
#: rulermenu.ui
msgctxt ""
@@ -6173,7 +6166,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Foot"
-msgstr ""
+msgstr "Фут"
#: rulermenu.ui
msgctxt ""
@@ -6182,7 +6175,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Miles"
-msgstr ""
+msgstr "Мілі"
#: rulermenu.ui
msgctxt ""
@@ -6191,7 +6184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Point"
-msgstr ""
+msgstr "Пункт"
#: rulermenu.ui
msgctxt ""
@@ -6200,7 +6193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pica"
-msgstr ""
+msgstr "Піка"
#: rulermenu.ui
msgctxt ""
@@ -6209,7 +6202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Char"
-msgstr ""
+msgstr "Знак"
#: rulermenu.ui
msgctxt ""
@@ -6218,7 +6211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Line"
-msgstr ""
+msgstr "Радок"
#: safemodedialog.ui
msgctxt ""
@@ -6227,7 +6220,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Safe Mode"
-msgstr ""
+msgstr "Бяспечны рэжым"
#: safemodedialog.ui
msgctxt ""
@@ -6385,7 +6378,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset entire user profile"
-msgstr ""
+msgstr "Скінуць профіль карыстальніка"
#: safemodedialog.ui
msgctxt ""
@@ -6421,7 +6414,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr ""
+msgstr "Стварыць zip-архіў профілю карыстальніка"
#: safemodedialog.ui
msgctxt ""
@@ -6520,7 +6513,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the color to apply."
-msgstr ""
+msgstr "Выберыце колер."
#: sidebararea.ui
msgctxt ""
@@ -6529,7 +6522,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the effect to apply."
-msgstr ""
+msgstr "Выберыце эфект."
#: sidebararea.ui
msgctxt ""
@@ -6998,7 +6991,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the style of the beginning arrowhead."
-msgstr ""
+msgstr "Выберыце стыль пачатку стрэлкі."
#: sidebarline.ui
msgctxt ""
@@ -7034,7 +7027,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the style of the ending arrowhead."
-msgstr ""
+msgstr "Выберыце стыль вастрыя стрэлкі."
#: sidebarline.ui
msgctxt ""
@@ -7125,7 +7118,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Corner style:"
-msgstr ""
+msgstr "_Стыль вугла:"
#: sidebarline.ui
msgctxt ""
@@ -7134,7 +7127,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the style of the edge connections."
-msgstr ""
+msgstr "Выберыце стыль з'яднання краёў."
#: sidebarline.ui
msgctxt ""
@@ -7179,7 +7172,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Corner Style"
-msgstr ""
+msgstr "Стыль вугла"
#: sidebarline.ui
msgctxt ""
@@ -7188,7 +7181,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ca_p style:"
-msgstr ""
+msgstr "Стыль наканечніка:"
#: sidebarline.ui
msgctxt ""
@@ -7197,7 +7190,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the style of the line caps."
-msgstr ""
+msgstr "Выберыце стыль наканечніка лініі."
#: sidebarline.ui
msgctxt ""
@@ -7233,7 +7226,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cap Style"
-msgstr ""
+msgstr "Стыль наканечніка"
#: sidebarparagraph.ui
msgctxt ""
@@ -7334,7 +7327,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Indent:"
-msgstr ""
+msgstr "Водступ:"
#: sidebarparagraph.ui
msgctxt ""
@@ -7343,7 +7336,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Водступ"
#: sidebarparagraph.ui
msgctxt ""
@@ -7352,7 +7345,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Павялічыць водступ"
#: sidebarparagraph.ui
msgctxt ""
@@ -7361,7 +7354,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Паменшыць водступ"
#: sidebarparagraph.ui
msgctxt ""
@@ -7704,7 +7697,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Звычайна"
#: textcharacterspacingcontrol.ui
msgctxt ""
@@ -7713,7 +7706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Loose"
-msgstr ""
+msgstr "Вольна"
#: textcharacterspacingcontrol.ui
msgctxt ""
@@ -7722,7 +7715,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,0"
-msgstr ""
+msgstr "0,0"
#: textcharacterspacingcontrol.ui
msgctxt ""
diff --git a/source/be/sw/source/core/undo.po b/source/be/sw/source/core/undo.po
index ab86c1e3010..ba58ca0cd5d 100644
--- a/source/be/sw/source/core/undo.po
+++ b/source/be/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: undo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-13 17:55+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-14 17:39+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492106147.000000\n"
+"X-POOTLE-MTIME: 1497461940.000000\n"
#: undo.src
msgctxt ""
@@ -550,16 +550,15 @@ msgctxt ""
"STR_REREAD\n"
"string.text"
msgid "Replace Image"
-msgstr ""
+msgstr "Замяніць відарыс"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
"STR_DELGRF\n"
"string.text"
msgid "Delete Image"
-msgstr "Сцерці рамку"
+msgstr "Сцерці відарыс"
#: undo.src
msgctxt ""
@@ -799,7 +798,7 @@ msgctxt ""
"STR_START_QUOTE\n"
"string.text"
msgid "“"
-msgstr ""
+msgstr "«"
#: undo.src
msgctxt ""
@@ -807,7 +806,7 @@ msgctxt ""
"STR_END_QUOTE\n"
"string.text"
msgid "”"
-msgstr ""
+msgstr "»"
#: undo.src
msgctxt ""
@@ -847,7 +846,7 @@ msgctxt ""
"STR_YIELDS\n"
"string.text"
msgid "→"
-msgstr ""
+msgstr "→"
#: undo.src
msgctxt ""
@@ -892,42 +891,82 @@ msgstr "разрыў калонкі"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Уставіць $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Сцерці $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Атрыбуты зменены"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Табліца зменена"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Стыль зменены"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
@@ -1207,7 +1246,7 @@ msgctxt ""
"STR_GRAPHIC\n"
"string.text"
msgid "image"
-msgstr ""
+msgstr "відарыс"
#: undo.src
msgctxt ""
@@ -1279,4 +1318,4 @@ msgctxt ""
"STR_UNDO_TABLE_DELETE\n"
"string.text"
msgid "Delete table"
-msgstr ""
+msgstr "Сцерці табліцу"
diff --git a/source/be/sw/source/core/unocore.po b/source/be/sw/source/core/unocore.po
index 1e70a616fcf..b76b92c368a 100644
--- a/source/be/sw/source/core/unocore.po
+++ b/source/be/sw/source/core/unocore.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: unocore\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-25 12:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-14 17:39+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464178461.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497461953.000000\n"
#: unocore.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_STYLE_FAMILY_TABLE\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: unocore.src
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"STR_STYLE_FAMILY_CELL\n"
"string.text"
msgid "Cell"
-msgstr ""
+msgstr "Клетка"
diff --git a/source/be/sw/source/ui/app.po b/source/be/sw/source/ui/app.po
index 8334fc0a502..fadb4c37c5f 100644
--- a/source/be/sw/source/ui/app.po
+++ b/source/be/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: app\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-15 18:26+0000\n"
+"PO-Revision-Date: 2017-06-14 17:44+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492280765.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497462254.000000\n"
#: app.src
msgctxt ""
@@ -107,7 +107,7 @@ msgctxt ""
"Automatic\n"
"itemlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Аўтаматычна"
#: app.src
msgctxt ""
@@ -179,7 +179,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Усе"
#: app.src
msgctxt ""
@@ -215,7 +215,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Усе"
#: app.src
msgctxt ""
@@ -251,7 +251,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Усе"
#: app.src
msgctxt ""
@@ -287,7 +287,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Усе"
#: app.src
msgctxt ""
@@ -323,7 +323,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Усе"
#: app.src
msgctxt ""
@@ -446,10 +446,9 @@ msgctxt ""
"STR_BOOKMARK_DEF_NAME\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Закладка"
#: app.src
-#, fuzzy
msgctxt ""
"app.src\n"
"STR_BOOKMARK_NAME\n"
@@ -466,13 +465,12 @@ msgid "Text"
msgstr "Тэкст"
#: app.src
-#, fuzzy
msgctxt ""
"app.src\n"
"SW_STR_NONE\n"
"string.text"
msgid "[None]"
-msgstr "[None]"
+msgstr "[Няма]"
#: app.src
msgctxt ""
@@ -656,7 +654,7 @@ msgctxt ""
"STR_GRAPHIC_DEFNAME\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: app.src
msgctxt ""
@@ -779,7 +777,6 @@ msgid "Unknown Author"
msgstr "Невядомы аўтар"
#: app.src
-#, fuzzy
msgctxt ""
"app.src\n"
"STR_DELETE_NOTE_AUTHOR\n"
@@ -788,13 +785,12 @@ msgid "Delete ~All Comments by $1"
msgstr "Сцерці ўсе заўвагі аўтарства $1"
#: app.src
-#, fuzzy
msgctxt ""
"app.src\n"
"STR_HIDE_NOTE_AUTHOR\n"
"string.text"
msgid "H~ide All Comments by $1"
-msgstr "Сцерці ўсе заўвагі аўтарства $1"
+msgstr "Схаваць ўсе заўвагі аўтарства $1"
#: app.src
msgctxt ""
@@ -810,7 +806,7 @@ msgctxt ""
"STR_STATUSBAR_WORDCOUNT_NO_SELECTION\n"
"string.text"
msgid "%1 words, %2 characters"
-msgstr ""
+msgstr "%1 слоў, %2 знакаў"
#: app.src
msgctxt ""
@@ -818,7 +814,7 @@ msgctxt ""
"STR_STATUSBAR_WORDCOUNT\n"
"string.text"
msgid "%1 words, %2 characters selected"
-msgstr ""
+msgstr "%1 слоў, %2 вылучаных знакаў"
#: app.src
msgctxt ""
@@ -1008,7 +1004,7 @@ msgctxt ""
"STR_CAPTION_TABLE\n"
"string.text"
msgid "%PRODUCTNAME Writer Table"
-msgstr ""
+msgstr "Табліца %PRODUCTNAME Writer"
#: app.src
msgctxt ""
@@ -1016,7 +1012,7 @@ msgctxt ""
"STR_CAPTION_FRAME\n"
"string.text"
msgid "%PRODUCTNAME Writer Frame"
-msgstr ""
+msgstr "Рамка %PRODUCTNAME Writer"
#: app.src
msgctxt ""
@@ -1024,7 +1020,7 @@ msgctxt ""
"STR_CAPTION_GRAPHIC\n"
"string.text"
msgid "%PRODUCTNAME Writer Image"
-msgstr ""
+msgstr "Відарыс %PRODUCTNAME Writer"
#: app.src
msgctxt ""
@@ -1032,7 +1028,7 @@ msgctxt ""
"STR_CAPTION_OLE\n"
"string.text"
msgid "Other OLE Objects"
-msgstr ""
+msgstr "Іншыя аб'екты OLE"
#: app.src
msgctxt ""
@@ -1040,7 +1036,7 @@ msgctxt ""
"STR_WRONG_TABLENAME\n"
"string.text"
msgid "The name of the table must not contain spaces."
-msgstr ""
+msgstr "Назва табліцы не можа ўтрымліваць прабелы."
#: app.src
msgctxt ""
@@ -1048,7 +1044,7 @@ msgctxt ""
"STR_ERR_TABLE_MERGE\n"
"string.text"
msgid "Selected table cells are too complex to merge."
-msgstr ""
+msgstr "Выбраныя клеткі табліцы занадта складаныя для аб'яднання."
#: app.src
msgctxt ""
@@ -1056,7 +1052,7 @@ msgctxt ""
"STR_SRTERR\n"
"string.text"
msgid "Cannot sort selection"
-msgstr ""
+msgstr "Немагчыма парадкаваць пазначанае"
#: error.src
msgctxt ""
@@ -1064,7 +1060,7 @@ msgctxt ""
"STR_COMCORE_READERROR\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Памылка чытання"
#: error.src
msgctxt ""
@@ -1072,7 +1068,7 @@ msgctxt ""
"STR_COMCORE_CANT_SHOW\n"
"string.text"
msgid "Image cannot be displayed."
-msgstr ""
+msgstr "Немагчыма паказаць відарыс."
#: error.src
msgctxt ""
diff --git a/source/be/sw/source/ui/config.po b/source/be/sw/source/ui/config.po
index 47e81ccc8a5..bacae488c90 100644
--- a/source/be/sw/source/ui/config.po
+++ b/source/be/sw/source/ui/config.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: config\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:49+0100\n"
-"PO-Revision-Date: 2017-04-15 19:54+0000\n"
+"PO-Revision-Date: 2017-06-14 17:45+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492286083.000000\n"
+"X-POOTLE-MTIME: 1497462342.000000\n"
#: optdlg.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"ST_SCRIPT_ASIAN\n"
"string.text"
msgid "Asian"
-msgstr ""
+msgstr "Азіяцкае"
#: optdlg.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"ST_SCRIPT_CTL\n"
"string.text"
msgid "CTL"
-msgstr ""
+msgstr "С.Т.В."
#: optdlg.src
msgctxt ""
@@ -38,10 +38,9 @@ msgctxt ""
"ST_SCRIPT_WESTERN\n"
"string.text"
msgid "Western"
-msgstr ""
+msgstr "Заходнія"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_PRODUCTNAME\n"
@@ -50,7 +49,6 @@ msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_CONTENTS\n"
@@ -67,7 +65,6 @@ msgid "Page ba~ckground"
msgstr "Фон ~старонак"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_PICTURES\n"
@@ -76,7 +73,6 @@ msgid "P~ictures and other graphic objects"
msgstr "Рысункі і іншая графіка"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_HIDDEN\n"
@@ -93,7 +89,6 @@ msgid "~Text placeholders"
msgstr "Намеснікі тэксту"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_FORM_CONTROLS\n"
@@ -102,7 +97,6 @@ msgid "Form control~s"
msgstr "Кантрольнікі фармуляра"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_COLOR\n"
@@ -135,7 +129,6 @@ msgid "Print ~automatically inserted blank pages"
msgstr "Друкаваць аўтаматычна ўстаўленыя пустыя старонкі"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_ONLY_PAPER\n"
@@ -144,7 +137,6 @@ msgid "~Use only paper tray from printer preferences"
msgstr "Папера толькі з падачы, запісанай у настаўленнях прынтара"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_PRINT\n"
@@ -161,7 +153,6 @@ msgid "None (document only)"
msgstr "Нічога (толькі дакумент)"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_COMMENTS_ONLY\n"
@@ -186,13 +177,12 @@ msgid "Place at end of page"
msgstr "У канцах старонак"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_COMMENTS\n"
"string.text"
msgid "~Comments"
-msgstr "Заўвагі"
+msgstr "Каментарыі"
#: optdlg.src
msgctxt ""
@@ -227,7 +217,6 @@ msgid "Front sides / right pages"
msgstr "Пярэднія бакі / правыя старонкі"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_INCLUDE\n"
@@ -236,7 +225,6 @@ msgid "Include"
msgstr "Улучаць"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_BROCHURE\n"
@@ -245,7 +233,6 @@ msgid "Broch~ure"
msgstr "Брашура"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_LEFT_SCRIPT\n"
@@ -254,7 +241,6 @@ msgid "Left-to-right script"
msgstr "Пісьмо злева-направа"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_RIGHT_SCRIPT\n"
@@ -263,7 +249,6 @@ msgid "Right-to-left script"
msgstr "Пісьмо справа-налева"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_RANGE_COPIES\n"
@@ -280,7 +265,6 @@ msgid "~All pages"
msgstr "Усе старонкі"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_SOMEPAGES\n"
@@ -289,7 +273,6 @@ msgid "Pa~ges"
msgstr "Старонкі"
#: optdlg.src
-#, fuzzy
msgctxt ""
"optdlg.src\n"
"STR_PRINTOPTUI_SELECTION\n"
@@ -303,7 +286,7 @@ msgctxt ""
"STR_PRINTOPTUI_PLACE_MARGINS\n"
"string.text"
msgid "Place in margins"
-msgstr ""
+msgstr "Змясціць на палях"
#: optload.src
msgctxt ""
diff --git a/source/be/sw/source/ui/dbui.po b/source/be/sw/source/ui/dbui.po
index 42c32db841b..87632d2b3e9 100644
--- a/source/be/sw/source/ui/dbui.po
+++ b/source/be/sw/source/ui/dbui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dbui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-15 17:25+0000\n"
+"PO-Revision-Date: 2017-06-18 18:09+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492277115.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497809380.000000\n"
#: dbui.src
msgctxt ""
@@ -215,22 +215,20 @@ msgid "Text Comma Separated (*.csv)"
msgstr "Тэкст, межаваны коскамі (*.csv)"
#: dbui.src
-#, fuzzy
msgctxt ""
"dbui.src\n"
"STR_FILTER_MDB\n"
"string.text"
msgid "Microsoft Access (*.mdb;*.mde)"
-msgstr "Microsoft Access (*.mdb)"
+msgstr "Microsoft Access (*.mdb;*.mde)"
#: dbui.src
-#, fuzzy
msgctxt ""
"dbui.src\n"
"STR_FILTER_ACCDB\n"
"string.text"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
-msgstr "Microsoft Access 2007 (*.accdb)"
+msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#: dbui.src
msgctxt ""
@@ -308,7 +306,7 @@ msgctxt ""
"ST_EXCLUDE\n"
"string.text"
msgid "Exclude recipient"
-msgstr ""
+msgstr "Выключыць атрымальніка"
#: mailmergewizard.src
msgctxt ""
@@ -324,16 +322,15 @@ msgctxt ""
"ST_MMWTITLE\n"
"string.text"
msgid "Mail Merge Wizard"
-msgstr ""
+msgstr "Майстар памнажэння пошты"
#: mmaddressblockpage.src
-#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"ST_TITLE_EDIT\n"
"string.text"
msgid "Edit Address Block"
-msgstr "Новы адрасны блок"
+msgstr "Рэдагаваць адрасны блок"
#: mmaddressblockpage.src
msgctxt ""
@@ -341,7 +338,7 @@ msgctxt ""
"ST_TITLE_MALE\n"
"string.text"
msgid "Custom Salutation (Male Recipients)"
-msgstr ""
+msgstr "Персаналізаванае прывітанне (для мужчын)"
#: mmaddressblockpage.src
msgctxt ""
@@ -349,10 +346,9 @@ msgctxt ""
"ST_TITLE_FEMALE\n"
"string.text"
msgid "Custom Salutation (Female Recipients)"
-msgstr ""
+msgstr "Персаналізаванае прывітанне (для жанчын)"
#: mmaddressblockpage.src
-#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"ST_SALUTATIONELEMENTS\n"
@@ -366,7 +362,7 @@ msgctxt ""
"ST_INSERTSALUTATIONFIELD\n"
"string.text"
msgid "Add to salutation"
-msgstr ""
+msgstr "Дадаць да прывітання"
#: mmaddressblockpage.src
msgctxt ""
@@ -374,7 +370,7 @@ msgctxt ""
"ST_REMOVESALUTATIONFIELD\n"
"string.text"
msgid "Remove from salutation"
-msgstr ""
+msgstr "Прыбраць з прывітання"
#: mmaddressblockpage.src
msgctxt ""
@@ -382,7 +378,7 @@ msgctxt ""
"ST_DRAGSALUTATION\n"
"string.text"
msgid "1. ~Drag salutation elements into the box below"
-msgstr ""
+msgstr "1. Перацягніце элемент прывітання ў поле ніжэй"
#: mmaddressblockpage.src
msgctxt ""
@@ -390,7 +386,7 @@ msgctxt ""
"ST_SALUTATION\n"
"string.text"
msgid "Salutation"
-msgstr ""
+msgstr "Вітанне"
#: mmaddressblockpage.src
msgctxt ""
@@ -398,7 +394,7 @@ msgctxt ""
"ST_PUNCTUATION\n"
"string.text"
msgid "Punctuation Mark"
-msgstr ""
+msgstr "Знак прыпынку"
#: mmaddressblockpage.src
msgctxt ""
@@ -415,7 +411,7 @@ msgctxt ""
"Dear\n"
"itemlist.text"
msgid "Dear"
-msgstr ""
+msgstr "Шаноўны"
#: mmaddressblockpage.src
msgctxt ""
@@ -424,7 +420,7 @@ msgctxt ""
"Hello\n"
"itemlist.text"
msgid "Hello"
-msgstr ""
+msgstr "Добры дзень"
#: mmaddressblockpage.src
msgctxt ""
@@ -433,7 +429,7 @@ msgctxt ""
"Hi\n"
"itemlist.text"
msgid "Hi"
-msgstr ""
+msgstr "Прывітанне"
#: mmaddressblockpage.src
msgctxt ""
@@ -442,7 +438,7 @@ msgctxt ""
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
msgctxt ""
@@ -451,7 +447,7 @@ msgctxt ""
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
msgctxt ""
@@ -460,7 +456,7 @@ msgctxt ""
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
@@ -469,16 +465,15 @@ msgctxt ""
"(none)\n"
"itemlist.text"
msgid "(none)"
-msgstr ""
+msgstr "(нічога)"
#: mmaddressblockpage.src
-#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"ST_SALUTATIONMATCHING\n"
"string.text"
msgid "Assign the fields from your data source to match the salutation elements."
-msgstr "Пастаўце палі з крыніцы даных у адпаведнасці з элементамі адрасу."
+msgstr "Пастаўце палі з крыніцы даных у адпаведнасці з элементамі формы звароту."
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/be/sw/source/ui/dochdl.po b/source/be/sw/source/ui/dochdl.po
index 8d3faa371fa..80769410677 100644
--- a/source/be/sw/source/ui/dochdl.po
+++ b/source/be/sw/source/ui/dochdl.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: dochdl\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-08-25 18:05+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-06-17 18:48+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440525943.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497725323.000000\n"
#: dochdl.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_NO_TABLE\n"
"string.text"
msgid "A table with no rows or no cells cannot be inserted"
-msgstr ""
+msgstr "Немагчыма ўставіць табліцу без радкоў або калонак"
#: dochdl.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_TABLE_TOO_LARGE\n"
"string.text"
msgid "The table cannot be inserted because it is too large"
-msgstr ""
+msgstr "Немагчыма ўставіць табліцу, занадта вялікая"
#: dochdl.src
msgctxt ""
@@ -65,7 +65,6 @@ msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
#: dochdl.src
-#, fuzzy
msgctxt ""
"dochdl.src\n"
"STR_PRIVATEGRAPHIC\n"
diff --git a/source/be/sw/source/ui/envelp.po b/source/be/sw/source/ui/envelp.po
index ef47aa370be..459875173c3 100644
--- a/source/be/sw/source/ui/envelp.po
+++ b/source/be/sw/source/ui/envelp.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: envelp\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-03-29 13:26+0000\n"
+"PO-Revision-Date: 2017-06-17 18:48+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1490794009.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497725337.000000\n"
#: envelp.src
msgctxt ""
@@ -25,13 +25,12 @@ msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCO
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#: label.src
-#, fuzzy
msgctxt ""
"label.src\n"
"STR_CUSTOM\n"
"string.text"
msgid "[User]"
-msgstr "[User]"
+msgstr "[Карыстальнік]"
#: labfmt.src
msgctxt ""
diff --git a/source/be/sw/source/ui/fldui.po b/source/be/sw/source/ui/fldui.po
index bd51162e992..47b5357817c 100644
--- a/source/be/sw/source/ui/fldui.po
+++ b/source/be/sw/source/ui/fldui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: fldui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-11-26 13:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 18:49+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1385472412.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497725378.000000\n"
#: fldui.src
msgctxt ""
@@ -337,13 +337,12 @@ msgid "Hidden Paragraph"
msgstr "Нябачны абзац"
#: fldui.src
-#, fuzzy
msgctxt ""
"fldui.src\n"
"STR_DOCINFOFLD\n"
"string.text"
msgid "DocInformation"
-msgstr "DocInformation"
+msgstr "Звесткі аб дакуменце"
#: fldui.src
msgctxt ""
@@ -415,7 +414,7 @@ msgctxt ""
"FLD_STAT_GRF\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: fldui.src
msgctxt ""
@@ -778,13 +777,12 @@ msgid "Database"
msgstr "База даных"
#: fldui.src
-#, fuzzy
msgctxt ""
"fldui.src\n"
"FMT_DBFLD_SYS\n"
"string.text"
msgid "System"
-msgstr "Сістэмны"
+msgstr "Сістэма"
#: fldui.src
msgctxt ""
@@ -928,7 +926,7 @@ msgctxt ""
"FMT_MARK_GRAFIC\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: fldui.src
msgctxt ""
diff --git a/source/be/sw/source/ui/index.po b/source/be/sw/source/ui/index.po
index c735150e328..8b7b04770e6 100644
--- a/source/be/sw/source/ui/index.po
+++ b/source/be/sw/source/ui/index.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: index\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-15 19:54+0000\n"
+"PO-Revision-Date: 2017-06-18 18:10+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492286098.000000\n"
+"X-POOTLE-MTIME: 1497809440.000000\n"
#: cnttab.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_USER_DEFINED_INDEX\n"
"string.text"
msgid "User-Defined Index"
-msgstr ""
+msgstr "Паказчык карыстальніка"
#: cnttab.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<Няма>"
#: cnttab.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<Няма>"
#: cnttab.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_DELIM\n"
"string.text"
msgid "S"
-msgstr ""
+msgstr "S"
#: cnttab.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_TOKEN_ENTRY_NO\n"
"string.text"
msgid "E#"
-msgstr ""
+msgstr "E#"
#: cnttab.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_TOKEN_ENTRY\n"
"string.text"
msgid "E"
-msgstr ""
+msgstr "E"
#: cnttab.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_TOKEN_TAB_STOP\n"
"string.text"
msgid "T"
-msgstr ""
+msgstr "T"
#: cnttab.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_TOKEN_CHAPTER_INFO\n"
"string.text"
msgid "CI"
-msgstr ""
+msgstr "CI"
#: cnttab.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_TOKEN_LINK_START\n"
"string.text"
msgid "LS"
-msgstr ""
+msgstr "LS"
#: cnttab.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_TOKEN_LINK_END\n"
"string.text"
msgid "LE"
-msgstr ""
+msgstr "LE"
#: cnttab.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"STR_TOKEN_AUTHORITY\n"
"string.text"
msgid "A"
-msgstr ""
+msgstr "A"
#: cnttab.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"STR_TOKEN_HELP_ENTRY_NO\n"
"string.text"
msgid "Chapter number"
-msgstr ""
+msgstr "Нумар раздзела"
#: cnttab.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_TOKEN_HELP_ENTRY\n"
"string.text"
msgid "Entry"
-msgstr ""
+msgstr "Элемент"
#: cnttab.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"STR_TOKEN_HELP_TAB_STOP\n"
"string.text"
msgid "Tab stop"
-msgstr ""
+msgstr "Крок табуляцыі"
#: cnttab.src
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"STR_TOKEN_HELP_CHAPTER_INFO\n"
"string.text"
msgid "Chapter info"
-msgstr ""
+msgstr "Інфармацыя аб раздзеле"
#: cnttab.src
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"STR_TOKEN_HELP_LINK_START\n"
"string.text"
msgid "Hyperlink start"
-msgstr ""
+msgstr "Пачатак гіперспасылкі"
#: cnttab.src
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"STR_TOKEN_HELP_LINK_END\n"
"string.text"
msgid "Hyperlink end"
-msgstr ""
+msgstr "Канец гіперспасылкі"
#: cnttab.src
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"STR_TOKEN_HELP_AUTHORITY\n"
"string.text"
msgid "Bibliography entry: "
-msgstr ""
+msgstr "Складнік бібліяграфіі: "
#: cnttab.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"%PRODUCTNAME Chart\n"
"itemlist.text"
msgid "%PRODUCTNAME Chart"
-msgstr ""
+msgstr "Дыяграма %PRODUCTNAME"
#: cnttab.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"%PRODUCTNAME Calc\n"
"itemlist.text"
msgid "%PRODUCTNAME Calc"
-msgstr ""
+msgstr "%PRODUCTNAME Calc"
#: cnttab.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"Other OLE Objects\n"
"itemlist.text"
msgid "Other OLE Objects"
-msgstr ""
+msgstr "Іншыя аб'екты OLE"
#: cnttab.src
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"STR_STRUCTURE\n"
"string.text"
msgid "Structure text"
-msgstr ""
+msgstr "Тэкст структуры"
#: cnttab.src
msgctxt ""
@@ -283,7 +283,7 @@ msgctxt ""
"STR_ADDITIONAL_ACCNAME_STRING1\n"
"string.text"
msgid "Press Ctrl+Alt+A to move focus for more operations"
-msgstr ""
+msgstr "Націсніце Ctrl+Alt+A для дадатковых аперацый"
#: cnttab.src
msgctxt ""
@@ -291,7 +291,7 @@ msgctxt ""
"STR_ADDITIONAL_ACCNAME_STRING2\n"
"string.text"
msgid "Press left or right arrow to choose the structure controls"
-msgstr ""
+msgstr "Націсніце левую або правую стрэлку, каб выбраць элемент структуры"
#: cnttab.src
msgctxt ""
@@ -299,7 +299,7 @@ msgctxt ""
"STR_ADDITIONAL_ACCNAME_STRING3\n"
"string.text"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
-msgstr ""
+msgstr "Націсніце Ctrl+Alt+B для вяртання фокуса к цяперашняму кантрольніку структуры"
#: cnttab.src
msgctxt ""
diff --git a/source/be/sw/source/ui/shells.po b/source/be/sw/source/ui/shells.po
index d24e128a5ce..fb84caca888 100644
--- a/source/be/sw/source/ui/shells.po
+++ b/source/be/sw/source/ui/shells.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: shells\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-26 18:54+0000\n"
+"PO-Revision-Date: 2017-06-18 18:11+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493232876.000000\n"
+"X-POOTLE-MTIME: 1497809508.000000\n"
#: shells.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_GRFILTER_FORMATERROR\n"
"string.text"
msgid "Unknown image format"
-msgstr ""
+msgstr "Нявызначаны фармат відарыса"
#: shells.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_GRFILTER_FILTERERROR\n"
"string.text"
msgid "Image filter not found"
-msgstr ""
+msgstr "Фільтр відарысаў не знойдзены"
#: shells.src
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"STR_SWBG_GRAPHIC\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: shells.src
msgctxt ""
diff --git a/source/be/sw/source/ui/sidebar.po b/source/be/sw/source/ui/sidebar.po
index 0418f5eb568..f188e25e74c 100644
--- a/source/be/sw/source/ui/sidebar.po
+++ b/source/be/sw/source/ui/sidebar.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: sidebar\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2013-11-26 13:27+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 18:12+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1385472426.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497809572.000000\n"
#: PagePropertyPanel.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_LEFT\n"
"string.text"
msgid "Left: "
-msgstr ""
+msgstr "Злева: "
#: PagePropertyPanel.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_RIGHT\n"
"string.text"
msgid ". Right: "
-msgstr ""
+msgstr ". Справа: "
#: PagePropertyPanel.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_INNER\n"
"string.text"
msgid "Inner: "
-msgstr ""
+msgstr "Унутры: "
#: PagePropertyPanel.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_OUTER\n"
"string.text"
msgid ". Outer: "
-msgstr ""
+msgstr ". Звонку: "
#: PagePropertyPanel.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_TOP\n"
"string.text"
msgid ". Top: "
-msgstr ""
+msgstr ". Зверху: "
#: PagePropertyPanel.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_BOT\n"
"string.text"
msgid ". Bottom: "
-msgstr ""
+msgstr ". Знізу: "
diff --git a/source/be/sw/source/ui/utlui.po b/source/be/sw/source/ui/utlui.po
index 9d5104f4e9b..b1ea3f59b41 100644
--- a/source/be/sw/source/ui/utlui.po
+++ b/source/be/sw/source/ui/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: utlui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-15 18:35+0000\n"
+"PO-Revision-Date: 2017-06-18 18:15+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492281322.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497809742.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"STR_POOLCOLL_TOX_CITATION\n"
"string.text"
msgid "Citation"
-msgstr ""
+msgstr "Цытата"
#: poolfmt.src
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"STR_TABSTYLE_3D\n"
"string.text"
msgid "3D"
-msgstr ""
+msgstr "3D"
#: poolfmt.src
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK1\n"
"string.text"
msgid "Black 1"
-msgstr ""
+msgstr "Чорны 1"
#: poolfmt.src
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK2\n"
"string.text"
msgid "Black 2"
-msgstr ""
+msgstr "Чорны 2"
#: poolfmt.src
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"STR_TABSTYLE_BLUE\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Сіні"
#: poolfmt.src
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"STR_TABSTYLE_BROWN\n"
"string.text"
msgid "Brown"
-msgstr ""
+msgstr "Карычневы"
#: poolfmt.src
msgctxt ""
@@ -1519,7 +1519,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY\n"
"string.text"
msgid "Currency"
-msgstr ""
+msgstr "Валюта"
#: poolfmt.src
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_3D\n"
"string.text"
msgid "Currency 3D"
-msgstr ""
+msgstr "Грошы ў 3D"
#: poolfmt.src
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_GRAY\n"
"string.text"
msgid "Currency Gray"
-msgstr ""
+msgstr "Грошы ў шэрым"
#: poolfmt.src
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_LAVENDER\n"
"string.text"
msgid "Currency Lavender"
-msgstr ""
+msgstr "Грошы ў лавандавым"
#: poolfmt.src
msgctxt ""
@@ -1551,7 +1551,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_TURQUOISE\n"
"string.text"
msgid "Currency Turquoise"
-msgstr ""
+msgstr "Грошы ў блакітна-зялёным"
#: poolfmt.src
msgctxt ""
@@ -1559,7 +1559,7 @@ msgctxt ""
"STR_TABSTYLE_GRAY\n"
"string.text"
msgid "Gray"
-msgstr ""
+msgstr "Шэры"
#: poolfmt.src
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"STR_TABSTYLE_GREEN\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Зялёны"
#: poolfmt.src
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"STR_TABSTYLE_LAVENDER\n"
"string.text"
msgid "Lavender"
-msgstr ""
+msgstr "Лавандавы"
#: poolfmt.src
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"STR_TABSTYLE_RED\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Чырвоны"
#: poolfmt.src
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"STR_TABSTYLE_TURQUOISE\n"
"string.text"
msgid "Turquoise"
-msgstr ""
+msgstr "Блакітна-зялёны"
#: poolfmt.src
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"STR_TABSTYLE_YELLOW\n"
"string.text"
msgid "Yellow"
-msgstr ""
+msgstr "Жоўты"
#: utlui.src
msgctxt ""
@@ -1608,7 +1608,7 @@ msgctxt ""
"Remove empty paragraphs\n"
"itemlist.text"
msgid "Remove empty paragraphs"
-msgstr ""
+msgstr "Выдаляць пустыя абзацы"
#: utlui.src
msgctxt ""
@@ -1617,7 +1617,7 @@ msgctxt ""
"Use replacement table\n"
"itemlist.text"
msgid "Use replacement table"
-msgstr ""
+msgstr "Ужываць табліцу заменаў"
#: utlui.src
msgctxt ""
@@ -1626,7 +1626,7 @@ msgctxt ""
"Correct TWo INitial CApitals\n"
"itemlist.text"
msgid "Correct TWo INitial CApitals"
-msgstr ""
+msgstr "Папраўляць ДЗве ПАчатковыя ВЯлікія ЛІтары"
#: utlui.src
msgctxt ""
@@ -1635,7 +1635,7 @@ msgctxt ""
"Capitalize first letter of sentences\n"
"itemlist.text"
msgid "Capitalize first letter of sentences"
-msgstr ""
+msgstr "Пачынаць сказы з вялікай літары"
#: utlui.src
msgctxt ""
@@ -1644,7 +1644,7 @@ msgctxt ""
"Replace \"standard\" quotes with %1 \\bcustom%2 quotes\n"
"itemlist.text"
msgid "Replace \"standard\" quotes with %1 \\bcustom%2 quotes"
-msgstr ""
+msgstr "Мяняць \"стандартныя\" двукоссі на %1 \\bадмысловыя%2"
#: utlui.src
msgctxt ""
@@ -1671,7 +1671,7 @@ msgctxt ""
"Automatic _underline_\n"
"itemlist.text"
msgid "Automatic _underline_"
-msgstr ""
+msgstr "Аўтаматычна _падкрэсліваць_"
#: utlui.src
msgctxt ""
@@ -1680,7 +1680,7 @@ msgctxt ""
"Automatic *bold*\n"
"itemlist.text"
msgid "Automatic *bold*"
-msgstr ""
+msgstr "Аўтаматычны *цёмны*"
#: utlui.src
msgctxt ""
@@ -1689,7 +1689,7 @@ msgctxt ""
"Replace 1/2 ... with ½ ...\n"
"itemlist.text"
msgid "Replace 1/2 ... with ½ ..."
-msgstr ""
+msgstr "Замяняць 1/2 ... на ½ ..."
#: utlui.src
msgctxt ""
@@ -1698,7 +1698,7 @@ msgctxt ""
"URL recognition\n"
"itemlist.text"
msgid "URL recognition"
-msgstr ""
+msgstr "Пазнаваць URL-і"
#: utlui.src
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"Replace dashes\n"
"itemlist.text"
msgid "Replace dashes"
-msgstr ""
+msgstr "Замяняць злучкі і працяжнікі"
#: utlui.src
msgctxt ""
@@ -1716,7 +1716,7 @@ msgctxt ""
"Replace 1st... with 1^st...\n"
"itemlist.text"
msgid "Replace 1st... with 1^st..."
-msgstr ""
+msgstr "Замяняць 1st... на 1^st..."
#: utlui.src
msgctxt ""
@@ -1725,7 +1725,7 @@ msgctxt ""
"Combine single line paragraphs\n"
"itemlist.text"
msgid "Combine single line paragraphs"
-msgstr ""
+msgstr "Яднаць аднарадковыя абзацы"
#: utlui.src
msgctxt ""
@@ -1779,7 +1779,7 @@ msgctxt ""
"Combine paragraphs\n"
"itemlist.text"
msgid "Combine paragraphs"
-msgstr ""
+msgstr "Яднаць абзацы"
#: utlui.src
msgctxt ""
@@ -1788,7 +1788,7 @@ msgctxt ""
"Add non breaking space\n"
"itemlist.text"
msgid "Add non breaking space"
-msgstr ""
+msgstr "Дадаць неразрыўны прагал"
#: utlui.src
msgctxt ""
@@ -1844,7 +1844,7 @@ msgctxt ""
"STR_EVENT_IMAGE_LOAD\n"
"string.text"
msgid "Image loaded successfully"
-msgstr ""
+msgstr "Відарыс паспяхова адчытаны"
#: utlui.src
msgctxt ""
@@ -1852,7 +1852,7 @@ msgctxt ""
"STR_EVENT_IMAGE_ABORT\n"
"string.text"
msgid "Image loading terminated"
-msgstr ""
+msgstr "Чытанне відарыса спынена"
#: utlui.src
msgctxt ""
@@ -1860,7 +1860,7 @@ msgctxt ""
"STR_EVENT_IMAGE_ERROR\n"
"string.text"
msgid "Could not load image"
-msgstr ""
+msgstr "Немагчыма адчытаць відарыс"
#: utlui.src
msgctxt ""
@@ -1924,7 +1924,7 @@ msgctxt ""
"STR_CONTENT_TYPE_GRAPHIC\n"
"string.text"
msgid "Images"
-msgstr ""
+msgstr "Відарысы"
#: utlui.src
msgctxt ""
@@ -2052,7 +2052,7 @@ msgctxt ""
"STR_IDXEXAMPLE_IDXTXT_IMAGE1\n"
"string.text"
msgid "Image 1: This is image 1"
-msgstr ""
+msgstr "Відарыс 1: Гэта відарыс 1"
#: utlui.src
msgctxt ""
@@ -2084,7 +2084,7 @@ msgctxt ""
"STR_CONTENT_TYPE_SINGLE_GRAPHIC\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: utlui.src
msgctxt ""
@@ -2159,13 +2159,12 @@ msgid "Additional formats..."
msgstr "Дадатковыя фарматы..."
#: utlui.src
-#, fuzzy
msgctxt ""
"utlui.src\n"
"RID_STR_SYSTEM\n"
"string.text"
msgid "[System]"
-msgstr "[System]"
+msgstr "[Сістэма]"
#: utlui.src
msgctxt ""
diff --git a/source/be/sw/source/uibase/dbui.po b/source/be/sw/source/uibase/dbui.po
index 09d31329fc6..38c5107bdbd 100644
--- a/source/be/sw/source/uibase/dbui.po
+++ b/source/be/sw/source/uibase/dbui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2014-11-18 14:02+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 18:16+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1416319352.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497809819.000000\n"
#: mailmergechildwindow.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"ST_CONTINUE\n"
"string.text"
msgid "~Continue"
-msgstr ""
+msgstr "Працягваць"
#: mailmergechildwindow.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"ST_TASK\n"
"string.text"
msgid "Task"
-msgstr ""
+msgstr "Задача"
#: mailmergechildwindow.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"ST_STATUS\n"
"string.text"
msgid "Status"
-msgstr ""
+msgstr "Статус"
#: mailmergechildwindow.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"ST_SENDINGTO\n"
"string.text"
msgid "Sending to: %1"
-msgstr ""
+msgstr "Адсыланне: %1"
#: mailmergechildwindow.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"ST_COMPLETED\n"
"string.text"
msgid "Successfully sent"
-msgstr ""
+msgstr "Паспяхова адаслана"
#: mailmergechildwindow.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"ST_FAILED\n"
"string.text"
msgid "Sending failed"
-msgstr ""
+msgstr "Не ўдалося адаслаць"
diff --git a/source/be/sw/source/uibase/dialog.po b/source/be/sw/source/uibase/dialog.po
index b97724e15ef..f9f6c96e015 100644
--- a/source/be/sw/source/uibase/dialog.po
+++ b/source/be/sw/source/uibase/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-15 12:39+0000\n"
+"PO-Revision-Date: 2017-06-18 18:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492259971.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497809848.000000\n"
#: regionsw.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_WRONG_PASSWORD\n"
"string.text"
msgid "The password entered is invalid."
-msgstr ""
+msgstr "Уведзены няправільны пароль."
#: regionsw.src
msgctxt ""
@@ -38,4 +38,4 @@ msgctxt ""
"STR_WRONG_PASSWD_REPEAT\n"
"string.text"
msgid "The password has not been set."
-msgstr ""
+msgstr "Пароль не зададзены."
diff --git a/source/be/sw/source/uibase/docvw.po b/source/be/sw/source/uibase/docvw.po
index 4c99786efb7..439c4691167 100644
--- a/source/be/sw/source/uibase/docvw.po
+++ b/source/be/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2017-04-15 19:10+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-18 18:22+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492283450.000000\n"
+"X-POOTLE-MTIME: 1497810128.000000\n"
#: docvw.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_REDLINE_DELETE\n"
"string.text"
msgid "Deleted"
-msgstr ""
+msgstr "Сцёрта"
#: docvw.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_REDLINE_FORMAT\n"
"string.text"
msgid "Formatted"
-msgstr ""
+msgstr "Адфарматавана"
#: docvw.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr ""
+msgstr "Табліца зменена"
#: docvw.src
msgctxt ""
@@ -59,10 +59,50 @@ msgstr "Ужыты стылі абзацаў"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
-msgstr ""
+msgstr "Зноска затэкставая:"
#: docvw.src
msgctxt ""
@@ -70,7 +110,7 @@ msgctxt ""
"STR_FTNNOTE\n"
"string.text"
msgid "Footnote: "
-msgstr ""
+msgstr "Зноска: "
#: docvw.src
msgctxt ""
@@ -78,7 +118,7 @@ msgctxt ""
"STR_TABLE_COL_ADJUST\n"
"string.text"
msgid "Adjust table column"
-msgstr ""
+msgstr "Наставіць калонку табліцы"
#: docvw.src
msgctxt ""
@@ -86,7 +126,7 @@ msgctxt ""
"STR_TABLE_ROW_ADJUST\n"
"string.text"
msgid "Adjust table row"
-msgstr ""
+msgstr "Наставіць радок табліцы"
#: docvw.src
msgctxt ""
@@ -94,7 +134,7 @@ msgctxt ""
"STR_TABLE_SELECT_ALL\n"
"string.text"
msgid "Select whole table"
-msgstr ""
+msgstr "Вылучыць усю табліцу"
#: docvw.src
msgctxt ""
@@ -102,7 +142,7 @@ msgctxt ""
"STR_TABLE_SELECT_ROW\n"
"string.text"
msgid "Select table row"
-msgstr ""
+msgstr "Вылучыць радок табліцы"
#: docvw.src
msgctxt ""
@@ -110,7 +150,7 @@ msgctxt ""
"STR_TABLE_SELECT_COL\n"
"string.text"
msgid "Select table column"
-msgstr ""
+msgstr "Вылучыць калонку табліцы"
#: docvw.src
msgctxt ""
@@ -126,7 +166,7 @@ msgctxt ""
"STR_HEADER_TITLE\n"
"string.text"
msgid "Header (%1)"
-msgstr ""
+msgstr "Верхні калантытул (%1)"
#: docvw.src
msgctxt ""
@@ -134,7 +174,7 @@ msgctxt ""
"STR_FIRST_HEADER_TITLE\n"
"string.text"
msgid "First Page Header (%1)"
-msgstr ""
+msgstr "Верхні калантытул першай старонкі (%1)"
#: docvw.src
msgctxt ""
@@ -142,7 +182,7 @@ msgctxt ""
"STR_LEFT_HEADER_TITLE\n"
"string.text"
msgid "Left Page Header (%1)"
-msgstr ""
+msgstr "Верхні калантытул левай старонкі (%1)"
#: docvw.src
msgctxt ""
@@ -150,7 +190,7 @@ msgctxt ""
"STR_RIGHT_HEADER_TITLE\n"
"string.text"
msgid "Right Page Header (%1)"
-msgstr ""
+msgstr "Верхні калантытул правай старонкі (%1)"
#: docvw.src
msgctxt ""
@@ -158,7 +198,7 @@ msgctxt ""
"STR_FOOTER_TITLE\n"
"string.text"
msgid "Footer (%1)"
-msgstr ""
+msgstr "Ніжні калантытул (%1)"
#: docvw.src
msgctxt ""
@@ -166,7 +206,7 @@ msgctxt ""
"STR_FIRST_FOOTER_TITLE\n"
"string.text"
msgid "First Page Footer (%1)"
-msgstr ""
+msgstr "Ніжні калантытул першай старонкі (%1)"
#: docvw.src
msgctxt ""
@@ -174,7 +214,7 @@ msgctxt ""
"STR_LEFT_FOOTER_TITLE\n"
"string.text"
msgid "Left Page Footer (%1)"
-msgstr ""
+msgstr "Ніжні калантытул левай старонкі (%1)"
#: docvw.src
msgctxt ""
@@ -182,7 +222,7 @@ msgctxt ""
"STR_RIGHT_FOOTER_TITLE\n"
"string.text"
msgid "Right Page Footer (%1)"
-msgstr ""
+msgstr "Ніжні калантытул правай старонкі (%1)"
#: docvw.src
msgctxt ""
@@ -190,7 +230,7 @@ msgctxt ""
"STR_DELETE_HEADER\n"
"string.text"
msgid "Delete Header..."
-msgstr ""
+msgstr "Сцерці верхні калантытул..."
#: docvw.src
msgctxt ""
@@ -198,7 +238,7 @@ msgctxt ""
"STR_FORMAT_HEADER\n"
"string.text"
msgid "Format Header..."
-msgstr ""
+msgstr "Фарматаваць верхні калантытул..."
#: docvw.src
msgctxt ""
@@ -206,7 +246,7 @@ msgctxt ""
"STR_DELETE_FOOTER\n"
"string.text"
msgid "Delete Footer..."
-msgstr ""
+msgstr "Сцерці ніжні калантытул..."
#: docvw.src
msgctxt ""
@@ -214,4 +254,4 @@ msgctxt ""
"STR_FORMAT_FOOTER\n"
"string.text"
msgid "Format Footer..."
-msgstr ""
+msgstr "Фарматаваць ніжні калантытул..."
diff --git a/source/be/sw/source/uibase/lingu.po b/source/be/sw/source/uibase/lingu.po
index c8e93ab35f1..0cd4f5b6909 100644
--- a/source/be/sw/source/uibase/lingu.po
+++ b/source/be/sw/source/uibase/lingu.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-10 19:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 18:23+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457637936.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497810182.000000\n"
#: olmenu.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_HYP_OK\n"
"string.text"
msgid "Hyphenation completed"
-msgstr ""
+msgstr "Расстаноўка пераносаў скончана"
#: olmenu.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_LANGSTATUS_NONE\n"
"string.text"
msgid "None (Do not check spelling)"
-msgstr ""
+msgstr "Няма (без праверкі правапісу)"
#: olmenu.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_RESET_TO_DEFAULT_LANGUAGE\n"
"string.text"
msgid "Reset to Default Language"
-msgstr ""
+msgstr "Да прадвызначанай мовы"
#: olmenu.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_LANGSTATUS_MORE\n"
"string.text"
msgid "More..."
-msgstr ""
+msgstr "Яшчэ..."
#: olmenu.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_IGNORE_SELECTION\n"
"string.text"
msgid "~Ignore"
-msgstr ""
+msgstr "Ігнараваць"
#: olmenu.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"STR_EXPLANATION_LINK\n"
"string.text"
msgid "Explanations..."
-msgstr ""
+msgstr "Тлумачэнні..."
diff --git a/source/be/sw/source/uibase/ribbar.po b/source/be/sw/source/uibase/ribbar.po
index 02568701731..fe455a6644f 100644
--- a/source/be/sw/source/uibase/ribbar.po
+++ b/source/be/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-22 17:37+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-18 18:30+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492882627.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497810634.000000\n"
#: inputwin.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_FORMULA_CALC\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Функцыі"
#: inputwin.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_FORMULA_CANCEL\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Нічога"
#: inputwin.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_FORMULA_APPLY\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Ужыць"
#: inputwin.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_ACCESS_FORMULA_TOOLBAR\n"
"string.text"
msgid "Formula Tool Bar"
-msgstr ""
+msgstr "Стужка формул"
#: inputwin.src
msgctxt ""
@@ -64,13 +64,21 @@ msgctxt ""
msgid "Formula Text"
msgstr "Тэкст формулы"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
"ST_TBL\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: workctrl.src
msgctxt ""
@@ -102,7 +110,7 @@ msgctxt ""
"ST_CTRL\n"
"string.text"
msgid "Control"
-msgstr ""
+msgstr "Кантрольнік"
#: workctrl.src
msgctxt ""
@@ -110,7 +118,7 @@ msgctxt ""
"ST_REG\n"
"string.text"
msgid "Section"
-msgstr ""
+msgstr "Раздзел"
#: workctrl.src
msgctxt ""
@@ -118,7 +126,7 @@ msgctxt ""
"ST_BKM\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Закладка"
#: workctrl.src
msgctxt ""
@@ -126,7 +134,7 @@ msgctxt ""
"ST_GRF\n"
"string.text"
msgid "Graphics"
-msgstr ""
+msgstr "Графіка"
#: workctrl.src
msgctxt ""
@@ -134,7 +142,7 @@ msgctxt ""
"ST_OLE\n"
"string.text"
msgid "OLE object"
-msgstr ""
+msgstr "Аб'ект OLE"
#: workctrl.src
msgctxt ""
@@ -142,7 +150,7 @@ msgctxt ""
"ST_OUTL\n"
"string.text"
msgid "Headings"
-msgstr ""
+msgstr "Загалоўкі"
#: workctrl.src
msgctxt ""
@@ -150,7 +158,7 @@ msgctxt ""
"ST_SEL\n"
"string.text"
msgid "Selection"
-msgstr ""
+msgstr "Пазначанае"
#: workctrl.src
msgctxt ""
@@ -158,7 +166,7 @@ msgctxt ""
"ST_FTN\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Зноска"
#: workctrl.src
msgctxt ""
@@ -166,7 +174,7 @@ msgctxt ""
"ST_MARK\n"
"string.text"
msgid "Reminder"
-msgstr ""
+msgstr "Напамінак"
#: workctrl.src
msgctxt ""
@@ -174,7 +182,7 @@ msgctxt ""
"ST_POSTIT\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Заўвага"
#: workctrl.src
msgctxt ""
@@ -190,7 +198,7 @@ msgctxt ""
"ST_INDEX_ENTRY\n"
"string.text"
msgid "Index entry"
-msgstr ""
+msgstr "Элемент паказальніка"
#: workctrl.src
msgctxt ""
@@ -198,7 +206,7 @@ msgctxt ""
"ST_TABLE_FORMULA\n"
"string.text"
msgid "Table formula"
-msgstr ""
+msgstr "Формула табліцы"
#: workctrl.src
msgctxt ""
@@ -206,7 +214,7 @@ msgctxt ""
"ST_TABLE_FORMULA_ERROR\n"
"string.text"
msgid "Wrong table formula"
-msgstr ""
+msgstr "Няправільная формула табліцы"
#: workctrl.src
msgctxt ""
@@ -214,7 +222,7 @@ msgctxt ""
"STR_IMGBTN_TBL_DOWN\n"
"string.text"
msgid "Next table"
-msgstr ""
+msgstr "Наступная табліца"
#: workctrl.src
msgctxt ""
@@ -246,7 +254,7 @@ msgctxt ""
"STR_IMGBTN_CTRL_DOWN\n"
"string.text"
msgid "Next control"
-msgstr ""
+msgstr "Наступны кантрольнік"
#: workctrl.src
msgctxt ""
@@ -254,7 +262,7 @@ msgctxt ""
"STR_IMGBTN_REG_DOWN\n"
"string.text"
msgid "Next section"
-msgstr ""
+msgstr "Наступны раздзел"
#: workctrl.src
msgctxt ""
@@ -262,7 +270,7 @@ msgctxt ""
"STR_IMGBTN_BKM_DOWN\n"
"string.text"
msgid "Next bookmark"
-msgstr ""
+msgstr "Наступная закладка"
#: workctrl.src
msgctxt ""
@@ -270,7 +278,7 @@ msgctxt ""
"STR_IMGBTN_GRF_DOWN\n"
"string.text"
msgid "Next graphic"
-msgstr ""
+msgstr "Наступны відарыс"
#: workctrl.src
msgctxt ""
@@ -278,7 +286,7 @@ msgctxt ""
"STR_IMGBTN_OLE_DOWN\n"
"string.text"
msgid "Next OLE object"
-msgstr ""
+msgstr "Наступны аб'ект OLE"
#: workctrl.src
msgctxt ""
@@ -286,7 +294,7 @@ msgctxt ""
"STR_IMGBTN_OUTL_DOWN\n"
"string.text"
msgid "Next heading"
-msgstr ""
+msgstr "Наступны загаловак"
#: workctrl.src
msgctxt ""
@@ -294,7 +302,7 @@ msgctxt ""
"STR_IMGBTN_SEL_DOWN\n"
"string.text"
msgid "Next selection"
-msgstr ""
+msgstr "Наступнае пазначэнне"
#: workctrl.src
msgctxt ""
@@ -302,7 +310,7 @@ msgctxt ""
"STR_IMGBTN_FTN_DOWN\n"
"string.text"
msgid "Next footnote"
-msgstr ""
+msgstr "Наступная зноска"
#: workctrl.src
msgctxt ""
@@ -310,7 +318,7 @@ msgctxt ""
"STR_IMGBTN_MARK_DOWN\n"
"string.text"
msgid "Next Reminder"
-msgstr ""
+msgstr "Наступны напамін"
#: workctrl.src
msgctxt ""
@@ -318,7 +326,7 @@ msgctxt ""
"STR_IMGBTN_POSTIT_DOWN\n"
"string.text"
msgid "Next Comment"
-msgstr ""
+msgstr "Наступная заўвага"
#: workctrl.src
msgctxt ""
@@ -326,7 +334,7 @@ msgctxt ""
"STR_IMGBTN_SRCH_REP_DOWN\n"
"string.text"
msgid "Continue search forward"
-msgstr ""
+msgstr "Працягваць пошук наперад"
#: workctrl.src
msgctxt ""
@@ -334,7 +342,7 @@ msgctxt ""
"STR_IMGBTN_INDEX_ENTRY_DOWN\n"
"string.text"
msgid "Next index entry"
-msgstr ""
+msgstr "Наступны элемент паказальніка"
#: workctrl.src
msgctxt ""
@@ -342,7 +350,7 @@ msgctxt ""
"STR_IMGBTN_TBL_UP\n"
"string.text"
msgid "Previous table"
-msgstr ""
+msgstr "Папярэдняя табліца"
#: workctrl.src
msgctxt ""
@@ -374,7 +382,7 @@ msgctxt ""
"STR_IMGBTN_CTRL_UP\n"
"string.text"
msgid "Previous control"
-msgstr ""
+msgstr "Папярэдні кантрольнік"
#: workctrl.src
msgctxt ""
@@ -382,7 +390,7 @@ msgctxt ""
"STR_IMGBTN_REG_UP\n"
"string.text"
msgid "Previous section"
-msgstr ""
+msgstr "Папярэдні раздзел"
#: workctrl.src
msgctxt ""
@@ -390,7 +398,7 @@ msgctxt ""
"STR_IMGBTN_BKM_UP\n"
"string.text"
msgid "Previous bookmark"
-msgstr ""
+msgstr "Папярэдняя закладка"
#: workctrl.src
msgctxt ""
@@ -398,7 +406,7 @@ msgctxt ""
"STR_IMGBTN_GRF_UP\n"
"string.text"
msgid "Previous graphic"
-msgstr ""
+msgstr "Папярэдні відарыс"
#: workctrl.src
msgctxt ""
@@ -406,7 +414,7 @@ msgctxt ""
"STR_IMGBTN_OLE_UP\n"
"string.text"
msgid "Previous OLE object"
-msgstr ""
+msgstr "Папярэдні аб'ект OLE"
#: workctrl.src
msgctxt ""
@@ -414,7 +422,7 @@ msgctxt ""
"STR_IMGBTN_OUTL_UP\n"
"string.text"
msgid "Previous heading"
-msgstr ""
+msgstr "Папярэдні загаловак"
#: workctrl.src
msgctxt ""
@@ -422,7 +430,7 @@ msgctxt ""
"STR_IMGBTN_SEL_UP\n"
"string.text"
msgid "Previous selection"
-msgstr ""
+msgstr "Папярэдняе пазначэнне"
#: workctrl.src
msgctxt ""
@@ -430,7 +438,7 @@ msgctxt ""
"STR_IMGBTN_FTN_UP\n"
"string.text"
msgid "Previous footnote"
-msgstr ""
+msgstr "Папярэдняя зноска"
#: workctrl.src
msgctxt ""
@@ -438,7 +446,7 @@ msgctxt ""
"STR_IMGBTN_MARK_UP\n"
"string.text"
msgid "Previous Reminder"
-msgstr ""
+msgstr "Папярэдні напамін"
#: workctrl.src
msgctxt ""
@@ -446,7 +454,7 @@ msgctxt ""
"STR_IMGBTN_POSTIT_UP\n"
"string.text"
msgid "Previous Comment"
-msgstr ""
+msgstr "Папярэдні каментарый"
#: workctrl.src
msgctxt ""
@@ -454,7 +462,7 @@ msgctxt ""
"STR_IMGBTN_SRCH_REP_UP\n"
"string.text"
msgid "Continue search backwards"
-msgstr ""
+msgstr "Працягваць пошук назад"
#: workctrl.src
msgctxt ""
@@ -462,7 +470,7 @@ msgctxt ""
"STR_IMGBTN_INDEX_ENTRY_UP\n"
"string.text"
msgid "Previous index entry"
-msgstr ""
+msgstr "Папярэдні элемент паказальніка"
#: workctrl.src
msgctxt ""
@@ -470,7 +478,7 @@ msgctxt ""
"STR_IMGBTN_TBLFML_UP\n"
"string.text"
msgid "Previous table formula"
-msgstr ""
+msgstr "Папярэдняя формула табліцы"
#: workctrl.src
msgctxt ""
@@ -478,7 +486,7 @@ msgctxt ""
"STR_IMGBTN_TBLFML_DOWN\n"
"string.text"
msgid "Next table formula"
-msgstr ""
+msgstr "Наступная формула табліцы"
#: workctrl.src
msgctxt ""
@@ -486,7 +494,7 @@ msgctxt ""
"STR_IMGBTN_TBLFML_ERR_UP\n"
"string.text"
msgid "Previous faulty table formula"
-msgstr ""
+msgstr "Папярэдняя хібная формула табліцы"
#: workctrl.src
msgctxt ""
@@ -494,4 +502,4 @@ msgctxt ""
"STR_IMGBTN_TBLFML_ERR_DOWN\n"
"string.text"
msgid "Next faulty table formula"
-msgstr ""
+msgstr "Наступная хібная формула табліцы"
diff --git a/source/be/sw/source/uibase/uiview.po b/source/be/sw/source/uibase/uiview.po
index 236d7ea4d94..7034c3be981 100644
--- a/source/be/sw/source/uibase/uiview.po
+++ b/source/be/sw/source/uibase/uiview.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-15 15:29+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-18 18:35+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492270141.000000\n"
+"X-POOTLE-MTIME: 1497810935.000000\n"
#: view.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_QUERY_SPECIAL_FORCED\n"
"string.text"
msgid "Check special regions is deactivated. Check anyway?"
-msgstr ""
+msgstr "Праверка спецыяльных абсягаў адключана. Праверыць усё роўна?"
#: view.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_ERR_SRCSTREAM\n"
"string.text"
msgid "The source cannot be loaded."
-msgstr ""
+msgstr "Немагчыма адчытаць зыходны тэкст."
#: view.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_SCAN_NOSOURCE\n"
"string.text"
msgid "Source not specified."
-msgstr ""
+msgstr "Крыніца не ўказана."
#: view.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_NUM_LEVEL\n"
"string.text"
msgid "Level "
-msgstr ""
+msgstr "Узровень "
#: view.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_NUM_OUTLINE\n"
"string.text"
msgid "Outline "
-msgstr ""
+msgstr "Схема "
#: view.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_EDIT_FOOTNOTE\n"
"string.text"
msgid "Edit Footnote/Endnote"
-msgstr ""
+msgstr "Правіць зноску ці затэкставую зноску"
#: view.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_NB_REPLACED\n"
"string.text"
msgid "Search key replaced XX times."
-msgstr ""
+msgstr "Шуканае заменена XX разоў."
#: view.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"RID_TOOLS_TOOLBOX\n"
"string.text"
msgid "Main Toolbar"
-msgstr ""
+msgstr "Асноўная стужка прылад"
#: view.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_SRCVIEW_ROW\n"
"string.text"
msgid "Row "
-msgstr ""
+msgstr "Радок "
#: view.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_SRCVIEW_COL\n"
"string.text"
msgid "Column "
-msgstr ""
+msgstr "Калонка "
#: view.src
msgctxt ""
@@ -134,6 +134,14 @@ msgctxt ""
"STR_SAVEAS_SRC\n"
"string.text"
msgid "~Export source..."
+msgstr "Экспартаваць зыходны тэкст..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
msgstr ""
#: view.src
@@ -142,4 +150,4 @@ msgctxt ""
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Перадпрагляд друку"
diff --git a/source/be/sw/source/uibase/utlui.po b/source/be/sw/source/uibase/utlui.po
index 9f4da8e954e..489653b0ff9 100644
--- a/source/be/sw/source/uibase/utlui.po
+++ b/source/be/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2017-04-15 19:57+0000\n"
+"PO-Revision-Date: 2017-06-18 19:53+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492286224.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815598.000000\n"
#: attrdesc.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_DROP_OVER\n"
"string.text"
msgid "Drop Caps over"
-msgstr ""
+msgstr "Буквіца над"
#: attrdesc.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_DROP_LINES\n"
"string.text"
msgid "rows"
-msgstr ""
+msgstr "радкі"
#: attrdesc.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_NO_DROP_LINES\n"
"string.text"
msgid "No Drop Caps"
-msgstr ""
+msgstr "Без буквіцы"
#: attrdesc.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_NO_MIRROR\n"
"string.text"
msgid "Don't mirror"
-msgstr ""
+msgstr "Не адлюстроўваць"
#: attrdesc.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_VERT_MIRROR\n"
"string.text"
msgid "Flip vertically"
-msgstr ""
+msgstr "Адлюстраваць вертыкальна"
#: attrdesc.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_HORI_MIRROR\n"
"string.text"
msgid "Flip horizontal"
-msgstr ""
+msgstr "Адлюстраваць гарызантальна"
#: attrdesc.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_BOTH_MIRROR\n"
"string.text"
msgid "Horizontal and Vertical Flip"
-msgstr ""
+msgstr "Адлюстраваць па гарызанталі і вертыкалі"
#: attrdesc.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_FOOTER\n"
"string.text"
msgid "Footer"
-msgstr ""
+msgstr "Ніжні калантытул"
#: attrdesc.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_NO_FOOTER\n"
"string.text"
msgid "No footer"
-msgstr ""
+msgstr "Без ніжняга калантытула"
#: attrdesc.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_HEADER\n"
"string.text"
msgid "Header"
-msgstr ""
+msgstr "Верхні калантытул"
#: attrdesc.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_NO_HEADER\n"
"string.text"
msgid "No header"
-msgstr ""
+msgstr "Без верхняга калантытула"
#: attrdesc.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STR_POS_Y\n"
"string.text"
msgid "Y Coordinate:"
-msgstr ""
+msgstr "Каардыната Y:"
#: attrdesc.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"STR_VERT_TOP\n"
"string.text"
msgid "at top"
-msgstr ""
+msgstr "уверсе"
#: attrdesc.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STR_VERT_CENTER\n"
"string.text"
msgid "Centered vertically"
-msgstr ""
+msgstr "Раўнаванне да паловы вышыні"
#: attrdesc.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"STR_VERT_BOTTOM\n"
"string.text"
msgid "at bottom"
-msgstr ""
+msgstr "унізе"
#: attrdesc.src
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"STR_TOC\n"
"string.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Змест"
#: initui.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"STR_TOX_TBL\n"
"string.text"
msgid "Index of Tables"
-msgstr ""
+msgstr "Спіс табліц"
#: initui.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"STR_TOX_OBJ\n"
"string.text"
msgid "Table of Objects"
-msgstr ""
+msgstr "Спіс аб'ектаў"
#: initui.src
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"STR_AUTH_FIELD_PUBLISHER\n"
"string.text"
msgid "Publisher"
-msgstr ""
+msgstr "Выдавец"
#: initui.src
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"STR_AUTH_FIELD_SCHOOL\n"
"string.text"
msgid "University"
-msgstr ""
+msgstr "Універсітэт"
#: initui.src
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"STR_AUTH_FIELD_SERIES\n"
"string.text"
msgid "Series"
-msgstr ""
+msgstr "Серыя"
#: initui.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"STR_AUTH_FIELD_TITLE\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Назва"
#: initui.src
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"STR_AUTH_FIELD_VOLUME\n"
"string.text"
msgid "Volume"
-msgstr ""
+msgstr "Том"
#: initui.src
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"STR_AUTH_FIELD_YEAR\n"
"string.text"
msgid "Year"
-msgstr ""
+msgstr "Год"
#: initui.src
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"STR_AUTH_FIELD_URL\n"
"string.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: initui.src
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"STR_AUTH_FIELD_CUSTOM1\n"
"string.text"
msgid "User-defined1"
-msgstr ""
+msgstr "Сваё1"
#: initui.src
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"STR_AUTH_FIELD_CUSTOM2\n"
"string.text"
msgid "User-defined2"
-msgstr ""
+msgstr "Сваё2"
#: initui.src
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"STR_AUTH_FIELD_CUSTOM3\n"
"string.text"
msgid "User-defined3"
-msgstr ""
+msgstr "Сваё3"
#: initui.src
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"STR_AUTH_FIELD_CUSTOM4\n"
"string.text"
msgid "User-defined4"
-msgstr ""
+msgstr "Сваё4"
#: initui.src
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"STR_AUTH_FIELD_CUSTOM5\n"
"string.text"
msgid "User-defined5"
-msgstr ""
+msgstr "Сваё5"
#: initui.src
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"STR_AUTH_FIELD_ISBN\n"
"string.text"
msgid "ISBN"
-msgstr ""
+msgstr "ISBN"
#: navipi.src
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"STR_TMPLCTRL_HINT\n"
"string.text"
msgid "Page Style. Right-click to change style or click to open Style dialog."
-msgstr ""
+msgstr "Стыль старонкі. Правая кнопка мышы - змяніць стыль, націсканне - дыялог Стылі."
#: unotools.src
msgctxt ""
diff --git a/source/be/sw/uiconfig/swriter/ui.po b/source/be/sw/uiconfig/swriter/ui.po
index d22dd508c93..76ae0240550 100644
--- a/source/be/sw/uiconfig/swriter/ui.po
+++ b/source/be/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-26 09:50+0000\n"
+"PO-Revision-Date: 2017-06-18 19:56+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495792209.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815768.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Add Element"
-msgstr ""
+msgstr "Дадаць элемент"
#: addentrydialog.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Element Name"
-msgstr ""
+msgstr "Назва элемента"
#: addressblockdialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "New Address Block"
-msgstr ""
+msgstr "Новы адрасны блок"
#: addressblockdialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Address _elements"
-msgstr ""
+msgstr "Элементы адрасу"
#: addressblockdialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "1. Drag address elements here"
-msgstr ""
+msgstr "1. Перацягніце элементы адрасу сюды"
#: addressblockdialog.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move up"
-msgstr ""
+msgstr "Пасунуць уверх"
#: addressblockdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move left"
-msgstr ""
+msgstr "Пасунуць улева"
#: addressblockdialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move right"
-msgstr ""
+msgstr "Пасунуць управа"
#: addressblockdialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move down"
-msgstr ""
+msgstr "Пасунуць уніз"
#: addressblockdialog.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2. Customi_ze salutation"
-msgstr ""
+msgstr "2. Персаналізаваць прывітанне"
#: addressblockdialog.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Remove from address"
-msgstr ""
+msgstr "Выдаліць з адраса"
#: addressblockdialog.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Add to address"
-msgstr ""
+msgstr "Дадаць да адрасу"
#: alreadyexistsdialog.ui
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reply"
-msgstr ""
+msgstr "Адказаць"
#: annotationmenu.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete _Comment"
-msgstr ""
+msgstr "Сцерці заўвагу"
#: annotationmenu.ui
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete _All Comments by $1"
-msgstr ""
+msgstr "Сцерці ўсе заўвагі аўтарства $1"
#: annotationmenu.ui
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete All Comments"
-msgstr ""
+msgstr "Сцерці ўсе заўвагі"
#: annotationmenu.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Format All Comments..."
-msgstr ""
+msgstr "Фарматаваць усе заўвагі..."
#: asciifilterdialog.ui
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Match Fields"
-msgstr ""
+msgstr "Прызначыць палі"
#: assignfieldsdialog.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Assign the fields from your data source to match the address elements."
-msgstr ""
+msgstr "Пастаўце палі з крыніцы даных у адпаведнасці з элементамі адрасу."
#: assignfieldsdialog.ui
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Address block preview"
-msgstr ""
+msgstr "Перадпаказ адрасавання"
#: assignstylesdialog.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Not applied"
-msgstr ""
+msgstr "Не ўжыта"
#: assignstylesdialog.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "You did not specify a new name for the attachment."
-msgstr ""
+msgstr "Не ўказана новая назва для дадатку."
#: attachnamedialog.ui
msgctxt ""
@@ -446,10 +446,9 @@ msgctxt ""
"title\n"
"string.text"
msgid "No Attachment Name"
-msgstr ""
+msgstr "Няма назвы далучэння"
#: attachnamedialog.ui
-#, fuzzy
msgctxt ""
"attachnamedialog.ui\n"
"label1\n"
@@ -501,7 +500,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User name:"
-msgstr ""
+msgstr "Імя карыстальніка:"
#: authenticationsettingsdialog.ui
msgctxt ""
@@ -510,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Password:"
-msgstr ""
+msgstr "Пароль:"
#: authenticationsettingsdialog.ui
msgctxt ""
@@ -546,7 +545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "P_ort:"
-msgstr ""
+msgstr "Порт:"
#: authenticationsettingsdialog.ui
msgctxt ""
@@ -564,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_POP3"
-msgstr ""
+msgstr "_POP3"
#: authenticationsettingsdialog.ui
msgctxt ""
@@ -573,7 +572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_IMAP"
-msgstr ""
+msgstr "_IMAP"
#: authenticationsettingsdialog.ui
msgctxt ""
@@ -582,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Us_er name:"
-msgstr ""
+msgstr "Імя карыстальніка:"
#: authenticationsettingsdialog.ui
msgctxt ""
@@ -591,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pass_word:"
-msgstr ""
+msgstr "Пароль:"
#: autoformattable.ui
msgctxt ""
@@ -735,7 +734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Inter_net"
-msgstr ""
+msgstr "Інтэрнэт"
#: autotext.ui
msgctxt ""
@@ -756,7 +755,6 @@ msgid "_Display remainder of name as suggestion while typing"
msgstr "Падказка пры ўпісванні - рэшта назвы"
#: autotext.ui
-#, fuzzy
msgctxt ""
"autotext.ui\n"
"nameft\n"
@@ -772,7 +770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shortcut:"
-msgstr ""
+msgstr "Скарот:"
#: autotext.ui
msgctxt ""
@@ -898,7 +896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Ужыць"
#: bibliographyentry.ui
msgctxt ""
@@ -997,7 +995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Нумараванне"
#: bulletsandnumbering.ui
msgctxt ""
@@ -1015,7 +1013,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: bulletsandnumbering.ui
msgctxt ""
@@ -1033,7 +1031,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Customize"
-msgstr ""
+msgstr "Наставіць"
#: businessdatapage.ui
msgctxt ""
@@ -1042,7 +1040,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Company:"
-msgstr ""
+msgstr "Кампанія:"
#: businessdatapage.ui
msgctxt ""
@@ -1051,7 +1049,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slogan:"
-msgstr ""
+msgstr "Дэвіз:"
#: businessdatapage.ui
msgctxt ""
@@ -1060,17 +1058,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Co_untry/state:"
-msgstr ""
+msgstr "Краіна/вобласць:"
#: businessdatapage.ui
-#, fuzzy
msgctxt ""
"businessdatapage.ui\n"
"label8\n"
"label\n"
"string.text"
msgid "Position:"
-msgstr "Месца"
+msgstr "Пасада:"
#: businessdatapage.ui
msgctxt ""
@@ -1079,7 +1076,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fa_x:"
-msgstr ""
+msgstr "Факс:"
#: businessdatapage.ui
msgctxt ""
@@ -1088,7 +1085,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr ""
+msgstr "Тэлефон хатні"
#: businessdatapage.ui
msgctxt ""
@@ -1097,7 +1094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Homepage/e-mail:"
-msgstr ""
+msgstr "Сайт/эл.пошта"
#: businessdatapage.ui
msgctxt ""
@@ -1106,7 +1103,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "First name"
-msgstr ""
+msgstr "Імя"
#: businessdatapage.ui
msgctxt ""
@@ -1124,7 +1121,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr ""
+msgstr "Тэлефон хатні"
#: businessdatapage.ui
msgctxt ""
@@ -1133,7 +1130,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "FAX number"
-msgstr ""
+msgstr "Нумар факса"
#: businessdatapage.ui
msgctxt ""
@@ -1142,7 +1139,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "email address"
-msgstr ""
+msgstr "адрас эл.пошты"
#: businessdatapage.ui
msgctxt ""
@@ -1151,7 +1148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Company 2nd line:"
-msgstr ""
+msgstr "Кампанія (2-і радок):"
#: businessdatapage.ui
msgctxt ""
@@ -1160,7 +1157,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Last name"
-msgstr ""
+msgstr "Прозвішча"
#: businessdatapage.ui
msgctxt ""
@@ -1169,7 +1166,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Zip/city:"
-msgstr ""
+msgstr "Індэкс/горад:"
#: businessdatapage.ui
msgctxt ""
@@ -1178,7 +1175,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "City"
-msgstr ""
+msgstr "Горад"
#: businessdatapage.ui
msgctxt ""
@@ -1187,7 +1184,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Zip code"
-msgstr ""
+msgstr "Паштовы індэкс"
#: businessdatapage.ui
msgctxt ""
@@ -1196,7 +1193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Phone/mobile:"
-msgstr ""
+msgstr "Тэлефон/мабільны:"
#: businessdatapage.ui
msgctxt ""
@@ -1223,7 +1220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Street:"
-msgstr ""
+msgstr "Вуліца:"
#: businessdatapage.ui
msgctxt ""
@@ -1232,7 +1229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Business Data"
-msgstr ""
+msgstr "Службовыя даныя"
#: cannotsavelabeldialog.ui
msgctxt ""
@@ -1271,7 +1268,6 @@ msgid "Caption"
msgstr "Подпіс"
#: captionoptions.ui
-#, fuzzy
msgctxt ""
"captionoptions.ui\n"
"CaptionOptionsDialog\n"
@@ -1281,27 +1277,24 @@ msgid "Caption Options"
msgstr "Настаўленні подпісу"
#: captionoptions.ui
-#, fuzzy
msgctxt ""
"captionoptions.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "_Level:"
-msgstr "Узровень"
+msgstr "Узровень:"
#: captionoptions.ui
-#, fuzzy
msgctxt ""
"captionoptions.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "_Separator:"
-msgstr "Межнік"
+msgstr "Межнік:"
#: captionoptions.ui
-#, fuzzy
msgctxt ""
"captionoptions.ui\n"
"label1\n"
@@ -1329,7 +1322,6 @@ msgid "_Apply border and shadow"
msgstr "Прыкласці мяжу і цень"
#: captionoptions.ui
-#, fuzzy
msgctxt ""
"captionoptions.ui\n"
"label2\n"
@@ -1339,14 +1331,13 @@ msgid "Category and Frame Format"
msgstr "Катэгорыя і фармат рамкі"
#: captionoptions.ui
-#, fuzzy
msgctxt ""
"captionoptions.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "Caption order:"
-msgstr "Парадак у подпісе"
+msgstr "Парадак у подпісе:"
#: captionoptions.ui
msgctxt ""
@@ -1385,7 +1376,6 @@ msgid "AutoText - Section"
msgstr "Аўта-тэкст - раздзел"
#: cardformatpage.ui
-#, fuzzy
msgctxt ""
"cardformatpage.ui\n"
"label1\n"
@@ -1401,7 +1391,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Address"
-msgstr ""
+msgstr "Адрас"
#: cardmediumpage.ui
msgctxt ""
@@ -1419,17 +1409,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Database:"
-msgstr ""
+msgstr "База даных:"
#: cardmediumpage.ui
-#, fuzzy
msgctxt ""
"cardmediumpage.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "Table:"
-msgstr "Табліца"
+msgstr "Табліца:"
#: cardmediumpage.ui
msgctxt ""
@@ -1438,7 +1427,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Database field:"
-msgstr ""
+msgstr "Поле базы даных:"
#: cardmediumpage.ui
msgctxt ""
@@ -1456,7 +1445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Inscription"
-msgstr ""
+msgstr "Надпіс"
#: cardmediumpage.ui
msgctxt ""
@@ -1465,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Continuous"
-msgstr ""
+msgstr "_Працягваючы"
#: cardmediumpage.ui
msgctxt ""
@@ -1474,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Sheet"
-msgstr ""
+msgstr "Аркуш"
#: cardmediumpage.ui
msgctxt ""
@@ -1483,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Brand:"
-msgstr ""
+msgstr "Марка:"
#: cardmediumpage.ui
msgctxt ""
@@ -1510,7 +1499,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Copy To"
-msgstr ""
+msgstr "Капіяваць да"
#: ccdialog.ui
msgctxt ""
@@ -1519,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Cc:"
-msgstr ""
+msgstr "_Cc:"
#: ccdialog.ui
msgctxt ""
@@ -1528,7 +1517,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Bcc:"
-msgstr ""
+msgstr "_Bcc:"
#: ccdialog.ui
msgctxt ""
@@ -1609,7 +1598,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Падсвятленне"
#: characterproperties.ui
msgctxt ""
@@ -1621,17 +1610,15 @@ msgid "Borders"
msgstr "Межы"
#: charurlpage.ui
-#, fuzzy
msgctxt ""
"charurlpage.ui\n"
"label36\n"
"label\n"
"string.text"
msgid "URL:"
-msgstr "URL"
+msgstr "URL:"
#: charurlpage.ui
-#, fuzzy
msgctxt ""
"charurlpage.ui\n"
"label37\n"
@@ -1650,14 +1637,13 @@ msgid "Text:"
msgstr "Тэкст:"
#: charurlpage.ui
-#, fuzzy
msgctxt ""
"charurlpage.ui\n"
"label39\n"
"label\n"
"string.text"
msgid "Target frame:"
-msgstr "Мэтавая рамка"
+msgstr "Мэтавая рамка:"
#: charurlpage.ui
msgctxt ""
@@ -1687,24 +1673,22 @@ msgid "Hyperlink"
msgstr "Спасылка"
#: charurlpage.ui
-#, fuzzy
msgctxt ""
"charurlpage.ui\n"
"label34\n"
"label\n"
"string.text"
msgid "Visited links:"
-msgstr "Наведаныя спасылкі"
+msgstr "Наведаныя спасылкі:"
#: charurlpage.ui
-#, fuzzy
msgctxt ""
"charurlpage.ui\n"
"label10\n"
"label\n"
"string.text"
msgid "Unvisited links:"
-msgstr "Ненаведаныя спасылкі"
+msgstr "Ненаведаныя спасылкі:"
#: charurlpage.ui
msgctxt ""
@@ -1725,34 +1709,31 @@ msgid "Columns"
msgstr "Калонкі"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"columnft\n"
"label\n"
"string.text"
msgid "Column:"
-msgstr "Калонка"
+msgstr "Калонка:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"widthft\n"
"label\n"
"string.text"
msgid "Width:"
-msgstr "Шырыня"
+msgstr "Шырыня:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"distft\n"
"label\n"
"string.text"
msgid "Spacing:"
-msgstr "Інтэрвал"
+msgstr "Інтэрвал:"
#: columnpage.ui
msgctxt ""
@@ -1773,44 +1754,40 @@ msgid "Width and Spacing"
msgstr "Шырыня і інтэрвал"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"linestyleft\n"
"label\n"
"string.text"
msgid "St_yle:"
-msgstr "Стыль"
+msgstr "Стыль:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"linewidthft\n"
"label\n"
"string.text"
msgid "_Width:"
-msgstr "Шырыня"
+msgstr "Шырыня:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"lineheightft\n"
"label\n"
"string.text"
msgid "H_eight:"
-msgstr "Вышыня"
+msgstr "Вышыня:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"lineposft\n"
"label\n"
"string.text"
msgid "_Position:"
-msgstr "Месца"
+msgstr "Месца:"
#: columnpage.ui
msgctxt ""
@@ -1840,27 +1817,24 @@ msgid "Bottom"
msgstr "Знізу"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"linecolorft\n"
"label\n"
"string.text"
msgid "_Color:"
-msgstr "Колер"
+msgstr "Колер:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"label11\n"
"label\n"
"string.text"
msgid "Separator Line"
-msgstr "Межавальная лінія"
+msgstr "Межавальная лінія:"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"label3\n"
@@ -1879,14 +1853,13 @@ msgid "Evenly distribute contents _to all columns"
msgstr "Пароўну на ўсе калонкі"
#: columnpage.ui
-#, fuzzy
msgctxt ""
"columnpage.ui\n"
"applytoft\n"
"label\n"
"string.text"
msgid "_Apply to:"
-msgstr "Замацаваць"
+msgstr "Замацаваць:"
#: columnpage.ui
msgctxt ""
@@ -1988,24 +1961,22 @@ msgid "Column Width"
msgstr "Шырыня калонкі"
#: columnwidth.ui
-#, fuzzy
msgctxt ""
"columnwidth.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Column:"
-msgstr "Калонка"
+msgstr "Калонка:"
#: columnwidth.ui
-#, fuzzy
msgctxt ""
"columnwidth.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Width:"
-msgstr "Шырыня"
+msgstr "Шырыня:"
#: columnwidth.ui
msgctxt ""
@@ -2026,14 +1997,13 @@ msgid "_Conditional Style"
msgstr "Умоўны _стыль"
#: conditionpage.ui
-#, fuzzy
msgctxt ""
"conditionpage.ui\n"
"contextft\n"
"label\n"
"string.text"
msgid "Conte_xt"
-msgstr "Змест"
+msgstr "Кантэкст"
#: conditionpage.ui
msgctxt ""
@@ -2060,7 +2030,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Table Header"
-msgstr ""
+msgstr "Загаловак табліцы"
#: conditionpage.ui
msgctxt ""
@@ -2114,7 +2084,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Header"
-msgstr ""
+msgstr "Верхні калантытул"
#: conditionpage.ui
msgctxt ""
@@ -2123,7 +2093,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Footer"
-msgstr ""
+msgstr "Ніжні калантытул"
#: conditionpage.ui
msgctxt ""
@@ -2132,7 +2102,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid " 1st Outline Level"
-msgstr ""
+msgstr "1-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2141,7 +2111,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid " 2nd Outline Level"
-msgstr ""
+msgstr " 2-і ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2150,7 +2120,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid " 3rd Outline Level"
-msgstr ""
+msgstr " 3-і ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2159,7 +2129,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid " 4th Outline Level"
-msgstr ""
+msgstr " 4-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2168,7 +2138,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid " 5th Outline Level"
-msgstr ""
+msgstr " 5-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2177,7 +2147,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid " 6th Outline Level"
-msgstr ""
+msgstr " 6-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2186,7 +2156,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid " 7th Outline Level"
-msgstr ""
+msgstr " 7-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2195,7 +2165,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid " 8th Outline Level"
-msgstr ""
+msgstr " 8-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2204,7 +2174,7 @@ msgctxt ""
"16\n"
"stringlist.text"
msgid " 9th Outline Level"
-msgstr ""
+msgstr " 9-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2213,7 +2183,7 @@ msgctxt ""
"17\n"
"stringlist.text"
msgid "10th Outline Level"
-msgstr ""
+msgstr "10-ы ўзровень структуры"
#: conditionpage.ui
msgctxt ""
@@ -2222,7 +2192,7 @@ msgctxt ""
"18\n"
"stringlist.text"
msgid " 1st Numbering Level"
-msgstr ""
+msgstr " 1-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2231,7 +2201,7 @@ msgctxt ""
"19\n"
"stringlist.text"
msgid " 2nd Numbering Level"
-msgstr ""
+msgstr " 2-і ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2240,7 +2210,7 @@ msgctxt ""
"20\n"
"stringlist.text"
msgid " 3rd Numbering Level"
-msgstr ""
+msgstr " 3-і ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2249,7 +2219,7 @@ msgctxt ""
"21\n"
"stringlist.text"
msgid " 4th Numbering Level"
-msgstr ""
+msgstr " 4-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2258,7 +2228,7 @@ msgctxt ""
"22\n"
"stringlist.text"
msgid " 5th Numbering Level"
-msgstr ""
+msgstr " 5-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2267,7 +2237,7 @@ msgctxt ""
"23\n"
"stringlist.text"
msgid " 6th Numbering Level"
-msgstr ""
+msgstr " 6-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2276,7 +2246,7 @@ msgctxt ""
"24\n"
"stringlist.text"
msgid " 7th Numbering Level"
-msgstr ""
+msgstr " 7-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2285,7 +2255,7 @@ msgctxt ""
"25\n"
"stringlist.text"
msgid " 8th Numbering Level"
-msgstr ""
+msgstr " 8-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2294,7 +2264,7 @@ msgctxt ""
"26\n"
"stringlist.text"
msgid " 9th Numbering Level"
-msgstr ""
+msgstr " 9-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2303,7 +2273,7 @@ msgctxt ""
"27\n"
"stringlist.text"
msgid "10th Numbering Level"
-msgstr ""
+msgstr "10-ы ўзровень нумаравання"
#: conditionpage.ui
msgctxt ""
@@ -2474,7 +2444,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "New Address List"
-msgstr ""
+msgstr "Новы адрасавы спіс"
#: createaddresslist.ui
msgctxt ""
@@ -2483,7 +2453,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Address Information"
-msgstr ""
+msgstr "Інфармацыя з адрасам"
#: createaddresslist.ui
msgctxt ""
@@ -2492,7 +2462,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sho_w entry number"
-msgstr ""
+msgstr "Паказа_ць нумар запісу"
#: createaddresslist.ui
msgctxt ""
@@ -2501,7 +2471,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "|<"
-msgstr ""
+msgstr "|<"
#: createaddresslist.ui
msgctxt ""
@@ -2510,7 +2480,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2519,7 +2489,7 @@ msgctxt ""
"label\n"
"string.text"
msgid ">|"
-msgstr ""
+msgstr ">|"
#: createaddresslist.ui
msgctxt ""
@@ -2528,7 +2498,7 @@ msgctxt ""
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -2555,7 +2525,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Find..."
-msgstr ""
+msgstr "Зн_айсці..."
#: createaddresslist.ui
msgctxt ""
@@ -2564,7 +2534,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "C_ustomize..."
-msgstr ""
+msgstr "Наставіць..."
#: createauthorentry.ui
msgctxt ""
@@ -2576,7 +2546,6 @@ msgid "Define Bibliography Entry"
msgstr "Вызначыць складнік бібліяграфіі"
#: createauthorentry.ui
-#, fuzzy
msgctxt ""
"createauthorentry.ui\n"
"label1\n"
@@ -2601,7 +2570,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Search term"
-msgstr ""
+msgstr "Пошук тэксту"
#: createautomarkdialog.ui
msgctxt ""
@@ -2610,7 +2579,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alternative entry"
-msgstr ""
+msgstr "Альтэрнатыўны элемент"
#: createautomarkdialog.ui
msgctxt ""
@@ -2631,7 +2600,6 @@ msgid "2nd key"
msgstr "2-і ключ"
#: createautomarkdialog.ui
-#, fuzzy
msgctxt ""
"createautomarkdialog.ui\n"
"comment\n"
@@ -2656,7 +2624,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Word only"
-msgstr ""
+msgstr "Толькі слова"
#: createautomarkdialog.ui
msgctxt ""
@@ -2665,7 +2633,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Yes"
-msgstr ""
+msgstr "Так"
#: createautomarkdialog.ui
msgctxt ""
@@ -2674,7 +2642,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No"
-msgstr ""
+msgstr "Не"
#: createautomarkdialog.ui
msgctxt ""
@@ -2683,7 +2651,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Entries"
-msgstr ""
+msgstr "Элементы"
#: customizeaddrlistdialog.ui
msgctxt ""
@@ -2815,14 +2783,13 @@ msgid "_Text:"
msgstr "Тэкст:"
#: dropcapspage.ui
-#, fuzzy
msgctxt ""
"dropcapspage.ui\n"
"labelTXT_TEMPLATE\n"
"label\n"
"string.text"
msgid "Character st_yle:"
-msgstr "Стыль знакаў"
+msgstr "Стыль з_накаў:"
#: dropcapspage.ui
msgctxt ""
@@ -9847,7 +9814,6 @@ msgid "View"
msgstr ""
#: notebookbar.ui
-#, fuzzy
msgctxt ""
"notebookbar.ui\n"
"formattable\n"
@@ -9857,7 +9823,6 @@ msgid "Indent"
msgstr "Водступ"
#: notebookbar.ui
-#, fuzzy
msgctxt ""
"notebookbar.ui\n"
"formattable1\n"
@@ -9873,7 +9838,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: notebookbar.ui
msgctxt ""
@@ -9882,7 +9847,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Асноўныя"
#: notebookbar.ui
msgctxt ""
@@ -9891,7 +9856,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Уласцівасці"
#: notebookbar.ui
msgctxt ""
@@ -9900,7 +9865,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Асноўныя"
#: notebookbar.ui
msgctxt ""
@@ -9909,7 +9874,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Crop"
-msgstr ""
+msgstr "Кадраваць"
#: notebookbar.ui
msgctxt ""
@@ -9918,7 +9883,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: notebookbar.ui
msgctxt ""
@@ -9990,7 +9955,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Styles"
-msgstr ""
+msgstr "Стылі"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10053,7 +10018,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Styles"
-msgstr ""
+msgstr "Стылі"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10080,7 +10045,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10278,7 +10243,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Styles"
-msgstr ""
+msgstr "Ст_ылі"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10377,7 +10342,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Styles"
-msgstr ""
+msgstr "Ст_ылі"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -11034,7 +10999,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Вышыня радка..."
#: notebookbar_groups.ui
msgctxt ""
@@ -11043,7 +11008,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal Row Height"
-msgstr ""
+msgstr "Аптымальная вышыня радка"
#: notebookbar_groups.ui
msgctxt ""
@@ -11052,7 +11017,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distribute Rows Evenly"
-msgstr ""
+msgstr "Размеркаваць калонкі раўнамерна"
#: notebookbar_groups.ui
msgctxt ""
@@ -11070,7 +11035,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Абменнік"
#: notebookbar_groups.ui
msgctxt ""
@@ -11097,7 +11062,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Спасылкі"
#: notebookbar_groups.ui
msgctxt ""
@@ -11133,7 +11098,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rows"
-msgstr ""
+msgstr "Радкі"
#: notebookbar_groups.ui
msgctxt ""
@@ -11142,7 +11107,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Columns"
-msgstr ""
+msgstr "Калонкі"
#: notebookbar_groups.ui
msgctxt ""
@@ -11151,7 +11116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Табліца"
#: notebookbar_groups.ui
msgctxt ""
@@ -11169,7 +11134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Да пачатковага"
#: notebookbar_groups.ui
msgctxt ""
@@ -11178,7 +11143,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Абгортванне"
#: notebookbar_groups.ui
msgctxt ""
@@ -12815,7 +12780,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Outer margin"
-msgstr ""
+msgstr "На вонкавым полі"
#: optredlinepage.ui
msgctxt ""
@@ -12824,7 +12789,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Inner margin"
-msgstr ""
+msgstr "На ўнутраным полі"
#: optredlinepage.ui
msgctxt ""
@@ -12880,7 +12845,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Table Defaults"
-msgstr ""
+msgstr "Новыя прадвызначэнні табліцы"
#: opttablepage.ui
msgctxt ""
@@ -12917,7 +12882,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Input in Tables"
-msgstr ""
+msgstr "Увод у табліцах"
#: opttablepage.ui
msgctxt ""
@@ -12971,7 +12936,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Changes affect the entire table"
-msgstr ""
+msgstr "Змены ўплываюць на ўсю табліцу"
#: opttablepage.ui
msgctxt ""
@@ -12980,7 +12945,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Changes affect the table size"
-msgstr ""
+msgstr "Змены ўплываюць на памер табліцы"
#: opttablepage.ui
msgctxt ""
@@ -14124,7 +14089,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Only left"
-msgstr ""
+msgstr "Толькі злева"
#: paradialog.ui
msgctxt ""
@@ -14142,7 +14107,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Indents & Spacing"
-msgstr ""
+msgstr "Водступы і інтэрвалы"
#: paradialog.ui
msgctxt ""
@@ -14169,10 +14134,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Asian Typography"
-msgstr ""
+msgstr "Азіяцкі лад друку"
#: paradialog.ui
-#, fuzzy
msgctxt ""
"paradialog.ui\n"
"labelTP_NUMPARA\n"
@@ -14197,7 +14161,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Drop Caps"
-msgstr ""
+msgstr "Буквіцы"
#: paradialog.ui
msgctxt ""
@@ -14215,7 +14179,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Area"
-msgstr ""
+msgstr "Абсяг"
#: paradialog.ui
msgctxt ""
@@ -14224,7 +14188,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Празрыстасць"
#: picturedialog.ui
msgctxt ""
@@ -14233,7 +14197,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: picturedialog.ui
msgctxt ""
@@ -14260,7 +14224,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Абгортванне"
#: picturedialog.ui
msgctxt ""
@@ -14278,7 +14242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Відарыс"
#: picturedialog.ui
msgctxt ""
@@ -14287,7 +14251,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Crop"
-msgstr ""
+msgstr "Кадраваць"
#: picturedialog.ui
msgctxt ""
@@ -14305,7 +14269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Area"
-msgstr ""
+msgstr "Абсяг"
#: picturedialog.ui
msgctxt ""
@@ -14314,7 +14278,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Празрыстасць"
#: picturedialog.ui
msgctxt ""
@@ -14323,7 +14287,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Macro"
-msgstr ""
+msgstr "Макрас"
#: picturepage.ui
msgctxt ""
@@ -14353,7 +14317,6 @@ msgid "Link"
msgstr "Спасылка"
#: picturepage.ui
-#, fuzzy
msgctxt ""
"picturepage.ui\n"
"vert\n"
@@ -14363,7 +14326,6 @@ msgid "_Vertically"
msgstr "Вертыкальна"
#: picturepage.ui
-#, fuzzy
msgctxt ""
"picturepage.ui\n"
"hori\n"
@@ -14406,7 +14368,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Flip"
-msgstr ""
+msgstr "Адлюстраванне"
#: previewzoomdialog.ui
msgctxt ""
@@ -14445,7 +14407,6 @@ msgid "Page background"
msgstr "Фон старонкі"
#: printeroptions.ui
-#, fuzzy
msgctxt ""
"printeroptions.ui\n"
"pictures\n"
@@ -15745,7 +15706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change _Table..."
-msgstr ""
+msgstr "Змяніць табліцу..."
#: selectaddressdialog.ui
msgctxt ""
@@ -15893,14 +15854,13 @@ msgid "Selection"
msgstr "Пазначанае"
#: selecttabledialog.ui
-#, fuzzy
msgctxt ""
"selecttabledialog.ui\n"
"SelectTableDialog\n"
"title\n"
"string.text"
msgid "Select Table"
-msgstr "Падзяліць табліцу"
+msgstr "Выбраць табліцу"
#: selecttabledialog.ui
msgctxt ""
@@ -16110,7 +16070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Змяніць контур"
#: sidebarwrap.ui
msgctxt ""
@@ -16547,14 +16507,13 @@ msgid "Pages:"
msgstr "Старонкі:"
#: statisticsinfopage.ui
-#, fuzzy
msgctxt ""
"statisticsinfopage.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "Tables:"
-msgstr "Табліца"
+msgstr "Табліцы:"
#: statisticsinfopage.ui
msgctxt ""
@@ -16794,7 +16753,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Properties"
-msgstr ""
+msgstr "Уласцівасці табліцы"
#: tableproperties.ui
msgctxt ""
@@ -18505,7 +18464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For:"
-msgstr ""
+msgstr "Для:"
#: tocindexpage.ui
msgctxt ""
@@ -18523,7 +18482,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Chapter"
-msgstr ""
+msgstr "Частка"
#: tocindexpage.ui
msgctxt ""
@@ -18562,7 +18521,6 @@ msgid "Inde_x marks"
msgstr ""
#: tocindexpage.ui
-#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"fromtables\n"
@@ -18908,7 +18866,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Змест"
#: tocindexpage.ui
msgctxt ""
@@ -18935,7 +18893,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Index of Tables"
-msgstr ""
+msgstr "Спіс табліц"
#: tocindexpage.ui
msgctxt ""
@@ -18953,7 +18911,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Table of Objects"
-msgstr ""
+msgstr "Спіс аб'ектаў"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/be/swext/mediawiki/help.po b/source/be/swext/mediawiki/help.po
index 8194cb14d83..fa7a999367a 100644
--- a/source/be/swext/mediawiki/help.po
+++ b/source/be/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: help\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-15 20:02+0000\n"
+"PO-Revision-Date: 2017-06-17 18:14+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492286528.000000\n"
+"X-POOTLE-MTIME: 1497723279.000000\n"
#: help.tree
msgctxt ""
@@ -639,7 +639,6 @@ msgid "Send to MediaWiki"
msgstr "Send to MediaWiki"
#: wikisend.xhp
-#, fuzzy
msgctxt ""
"wikisend.xhp\n"
"hd_id108340\n"
diff --git a/source/be/wizards/source/formwizard.po b/source/be/wizards/source/formwizard.po
index 03c664d96c0..7171aa2fb59 100644
--- a/source/be/wizards/source/formwizard.po
+++ b/source/be/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: formwizard\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-04-22 17:04+0000\n"
+"PO-Revision-Date: 2017-06-18 19:58+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492880651.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497815889.000000\n"
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "Немагчыма адкрыць выбраную табліцу або зварот."
#: dbwizres.src
msgctxt ""
@@ -2515,7 +2515,6 @@ msgid "Set field types and formats"
msgstr "Наставіць тыпы палёў і фарматы"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 10\n"
@@ -2524,7 +2523,6 @@ msgid "Set primary key"
msgstr "Наставіць першасны ключ"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 11\n"
@@ -2573,7 +2571,6 @@ msgid "~Sample tables"
msgstr "Узорныя табліцы"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 19\n"
@@ -2766,7 +2763,6 @@ msgid "The field name '%FIELDNAME' contains a special character ('%SPECIALCHAR')
msgstr "Назва поля '%FIELDNAME' утрымлівае знак ('%SPECIALCHAR'), які, магчыма, не падтрымліваецца гэтай базай даных."
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 43\n"
@@ -2780,7 +2776,7 @@ msgctxt ""
"RID_DB_TABLE_WIZARD_START + 44\n"
"string.text"
msgid "MyTable"
-msgstr "MyTable"
+msgstr "МаяТабліца"
#: dbwizres.src
msgctxt ""
@@ -2923,7 +2919,6 @@ msgid "~Return address in envelope window"
msgstr "Зваротны адрас у акне канверта"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_LETTERWIZARDDIALOG_START + 11\n"
@@ -3140,7 +3135,6 @@ msgid "Width:"
msgstr "Шырыня:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_LETTERWIZARDDIALOG_START + 38\n"
@@ -3149,7 +3143,6 @@ msgid "S~pacing to left margin:"
msgstr "Адлегласць ад левага поля:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_LETTERWIZARDDIALOG_START + 39\n"
@@ -3158,7 +3151,6 @@ msgid "Spacing ~to top margin:"
msgstr "Адлегласць ад верхняга поля:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_LETTERWIZARDDIALOG_START + 40\n"
@@ -3447,7 +3439,6 @@ msgid "Recipient and sender"
msgstr "Атрымальнік і адпраўнік"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_LETTERWIZARDROADMAP_START + 5\n"
@@ -3472,13 +3463,12 @@ msgid "Fax Wizard"
msgstr "Майстар факсаў"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 2\n"
"string.text"
msgid "Label9"
-msgstr "Label9"
+msgstr "Метка9"
#: dbwizres.src
msgctxt ""
@@ -3497,7 +3487,6 @@ msgid "~Personal Fax"
msgstr "Асабісты факс"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 5\n"
@@ -3506,7 +3495,6 @@ msgid "~Logo"
msgstr "Лагатып"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 6\n"
@@ -3531,7 +3519,6 @@ msgid "~Complimentary close"
msgstr "Развітанне"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 9\n"
@@ -3540,7 +3527,6 @@ msgid "~Footer"
msgstr "Калантытул ніжні"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 10\n"
@@ -3605,7 +3591,6 @@ msgid "This wizard helps you to create a fax template. The template can then be
msgstr "Гэты Майстар дапамагае стварыць шаблон факсу. Паводле шаблона, пазней, можна ствараць столькі факсаў, колькі трэба."
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 18\n"
@@ -3614,7 +3599,6 @@ msgid "Return address"
msgstr "Зваротны адрас"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 19\n"
@@ -3623,7 +3607,6 @@ msgid "Name:"
msgstr "Назва:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 20\n"
@@ -3632,7 +3615,6 @@ msgid "Street:"
msgstr "Вуліца:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 21\n"
@@ -3641,7 +3623,6 @@ msgid "ZIP code/State/City:"
msgstr "Паштовы індэкс/Адм.адзінка/Горад:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 22\n"
@@ -3682,7 +3663,6 @@ msgid "Location and file name:"
msgstr "Шлях і назва файла:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 27\n"
@@ -3771,7 +3751,6 @@ msgid "Fax Number:"
msgstr "Нумар факсу:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 38\n"
@@ -3780,7 +3759,6 @@ msgid "Use placeholders for ~recipient's address"
msgstr "Ужываць намеснікі для адрасу атрымальніка"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 39\n"
@@ -3789,7 +3767,6 @@ msgid "Use address database for ~mail merge"
msgstr "Ужываць адрасную базу даных для памнажэння пошты"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 40\n"
@@ -3814,7 +3791,6 @@ msgid "From:"
msgstr "Ад каго:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 43\n"
@@ -3863,7 +3839,6 @@ msgid "Please inform us if transmission errors occur."
msgstr "Паведамце нам, калі ласка, пра памылкі перадачы"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 49\n"
@@ -3880,7 +3855,6 @@ msgid "Lines"
msgstr "Лініі"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 51\n"
@@ -3921,7 +3895,6 @@ msgid "Modern Fax from Private"
msgstr "Сучасны факс, прыватная асоба"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDDIALOG_START + 56\n"
@@ -3986,7 +3959,6 @@ msgid "Hi,"
msgstr "Чалом,"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDGREETING_START + 1\n"
@@ -4043,7 +4015,6 @@ msgid "Sender and Recipient"
msgstr "Адпраўнік і атрымальнік"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDROADMAP_START + 4\n"
@@ -4052,7 +4023,6 @@ msgid "Footer"
msgstr "Калантытул ніжні"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_FAXWIZARDROADMAP_START + 5\n"
@@ -4093,7 +4063,6 @@ msgid "Location and file name:"
msgstr "Шлях і назва файла:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +5\n"
@@ -4174,7 +4143,6 @@ msgid "Time:"
msgstr "Час:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +15\n"
@@ -4199,7 +4167,6 @@ msgid "Placeholders will be used in empty fields. You can replace placeholders w
msgstr "У пустых палях будуць ужыты намеснікі. Іх можна замяніць на тэкст пазней."
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +18\n"
@@ -4352,7 +4319,6 @@ msgid "The agenda template will include placeholders for the selected items."
msgstr "Шаблон парадку дня ўтрымлівае намеснікі для азначаных складнікаў."
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +38\n"
@@ -4481,7 +4447,6 @@ msgid "Agenda items"
msgstr "Пункты парадку дня"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +55\n"
@@ -4506,7 +4471,6 @@ msgid "Type of meeting"
msgstr "Тып сустрэчы"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +58\n"
@@ -4515,7 +4479,6 @@ msgid "Please bring"
msgstr "Трэба мець з сабой"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +59\n"
@@ -4524,7 +4487,6 @@ msgid "Please read"
msgstr "Трэба прачытаць"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +60\n"
@@ -4533,7 +4495,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +61\n"
@@ -4542,7 +4503,6 @@ msgid "Meeting called by"
msgstr "Сустрэча склікана (кім)"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +62\n"
@@ -4551,7 +4511,6 @@ msgid "Chairperson"
msgstr "Старшыня сходу"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +63\n"
@@ -4560,7 +4519,6 @@ msgid "Attendees"
msgstr "Прысутныя"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +64\n"
@@ -4569,7 +4527,6 @@ msgid "Minute keeper"
msgstr "Пратакаліст"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +65\n"
@@ -4578,7 +4535,6 @@ msgid "Moderator"
msgstr "Мадэратар"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +66\n"
@@ -4587,7 +4543,6 @@ msgid "Observers"
msgstr "Назіральнікі"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +67\n"
@@ -4628,7 +4583,6 @@ msgid "Move down"
msgstr "Пасунуць уніз"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +72\n"
@@ -4637,7 +4591,6 @@ msgid "Date:"
msgstr "Дата:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +73\n"
@@ -4646,7 +4599,6 @@ msgid "Time:"
msgstr "Час:"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +74\n"
@@ -4671,7 +4623,6 @@ msgid "Num."
msgstr "Нумар"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +77\n"
@@ -4680,7 +4631,6 @@ msgid "Topic"
msgstr "Тэмы"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +78\n"
@@ -4689,7 +4639,6 @@ msgid "Responsible"
msgstr "Адказны"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +79\n"
@@ -4759,7 +4708,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +87\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Сіні"
#: dbwizres.src
msgctxt ""
@@ -4767,7 +4716,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +88\n"
"string.text"
msgid "Classic"
-msgstr ""
+msgstr "Класіка"
#: dbwizres.src
msgctxt ""
@@ -4775,7 +4724,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +89\n"
"string.text"
msgid "Colorful"
-msgstr ""
+msgstr "Многакаляровы"
#: dbwizres.src
msgctxt ""
@@ -4791,7 +4740,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +91\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Зялёны"
#: dbwizres.src
msgctxt ""
@@ -4799,7 +4748,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +92\n"
"string.text"
msgid "Grey"
-msgstr ""
+msgstr "Шэры"
#: dbwizres.src
msgctxt ""
@@ -4815,7 +4764,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +94\n"
"string.text"
msgid "Orange"
-msgstr ""
+msgstr "Аранжавы"
#: dbwizres.src
msgctxt ""
@@ -4823,7 +4772,7 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +95\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Чырвоны"
#: dbwizres.src
msgctxt ""
@@ -4831,4 +4780,4 @@ msgctxt ""
"RID_AGENDAWIZARDDIALOG_START +96\n"
"string.text"
msgid "Simple"
-msgstr ""
+msgstr "Просты"
diff --git a/source/be/xmlsecurity/source/dialogs.po b/source/be/xmlsecurity/source/dialogs.po
index 044bda82d3f..5a59bb57a75 100644
--- a/source/be/xmlsecurity/source/dialogs.po
+++ b/source/be/xmlsecurity/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 15:46+0000\n"
+"PO-Revision-Date: 2017-06-17 18:18+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492271168.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497723481.000000\n"
#: certificateviewer.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_USE\n"
"string.text"
msgid "Certificate Use"
-msgstr ""
+msgstr "Выкарыстанне сертыфіката"
#: certificateviewer.src
msgctxt ""
diff --git a/source/be/xmlsecurity/uiconfig/ui.po b/source/be/xmlsecurity/uiconfig/ui.po
index cafbf248103..c947164ea49 100644
--- a/source/be/xmlsecurity/uiconfig/ui.po
+++ b/source/be/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ 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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-15 12:45+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-17 19:03+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492260316.000000\n"
+"X-POOTLE-MTIME: 1497726180.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Certificate Information"
-msgstr ""
+msgstr "Інфармацыя аб сертыфікаце"
#: certgeneral.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "This certificate is validated."
-msgstr ""
+msgstr "Сертыфікат дзейсны."
#: certgeneral.ui
msgctxt ""
@@ -41,17 +41,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Issued to: "
-msgstr ""
+msgstr "Дадзены каму: "
#: certgeneral.ui
-#, fuzzy
msgctxt ""
"certgeneral.ui\n"
"issued_by\n"
"label\n"
"string.text"
msgid "Issued by: "
-msgstr "Дадзены кім"
+msgstr "Дадзены кім: "
#: certgeneral.ui
msgctxt ""
@@ -60,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Valid from:"
-msgstr ""
+msgstr "Дзейсны з:"
#: certgeneral.ui
msgctxt ""
@@ -69,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "You have a private key that corresponds to this certificate."
-msgstr ""
+msgstr "Вы маеце прыватны ключ, які адпавядае гэтаму сертыфікату."
#: certgeneral.ui
msgctxt ""
@@ -78,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Valid to:"
-msgstr ""
+msgstr "Сапраўдны да:"
#: certpage.ui
msgctxt ""
@@ -87,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Certification path"
-msgstr ""
+msgstr "Шлях сертыфікацыі"
#: certpage.ui
msgctxt ""
@@ -105,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Certification status"
-msgstr ""
+msgstr "Статус сертыфікацыі"
#: certpage.ui
msgctxt ""
@@ -114,10 +113,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "The certificate is OK."
-msgstr ""
+msgstr "Сертыфікат пацверджаны."
#: certpage.ui
-#, fuzzy
msgctxt ""
"certpage.ui\n"
"certnotok\n"
@@ -174,6 +172,15 @@ msgstr "Сцерці"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
@@ -205,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Description"
-msgstr ""
+msgstr "Апісанне"
#: digitalsignaturesdialog.ui
msgctxt ""
@@ -277,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr ""
+msgstr "Выкарыстоўвайце AdES-сумяшчальны подпіс, калі ёсць магчымасць"
#: macrosecuritydialog.ui
msgctxt ""
@@ -401,14 +408,13 @@ msgid "Expiration date"
msgstr "Дата згасання"
#: securitytrustpage.ui
-#, fuzzy
msgctxt ""
"securitytrustpage.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Trusted Certificates"
-msgstr "Надзейныя сертыфікаты"
+msgstr "Давераныя сертыфікаты"
#: securitytrustpage.ui
msgctxt ""
@@ -471,7 +477,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Certificate usage"
-msgstr ""
+msgstr "Выкарыстанне сертыфіката"
#: selectcertificatedialog.ui
msgctxt ""
@@ -483,14 +489,13 @@ msgid "Expiration date"
msgstr "Дата згасання"
#: selectcertificatedialog.ui
-#, fuzzy
msgctxt ""
"selectcertificatedialog.ui\n"
"STR_DIGITAL_SIGNATURE\n"
"label\n"
"string.text"
msgid "Digital signature"
-msgstr "Лічбавыя подпісы"
+msgstr "Лічбавы подпіс"
#: selectcertificatedialog.ui
msgctxt ""
@@ -499,7 +504,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Non-repudiation"
-msgstr ""
+msgstr "Неадракальны"
#: selectcertificatedialog.ui
msgctxt ""
@@ -508,7 +513,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Key encipherment"
-msgstr ""
+msgstr "Шыфраванне ключа"
#: selectcertificatedialog.ui
msgctxt ""
@@ -517,7 +522,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data encipherment"
-msgstr ""
+msgstr "Шыфраванне даных"
#: selectcertificatedialog.ui
msgctxt ""
@@ -526,7 +531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Key Agreement"
-msgstr ""
+msgstr "Пагадненне ключа"
#: selectcertificatedialog.ui
msgctxt ""
@@ -535,7 +540,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Certificate signature verification"
-msgstr ""
+msgstr "Праверка подпісу сертыфіката"
#: selectcertificatedialog.ui
msgctxt ""
@@ -544,7 +549,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "CRL signature verification"
-msgstr ""
+msgstr "Праверка подпісу CRL"
#: selectcertificatedialog.ui
msgctxt ""
@@ -553,17 +558,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Only for encipherment"
-msgstr ""
+msgstr "Толькі для шыфравання"
#: selectcertificatedialog.ui
-#, fuzzy
msgctxt ""
"selectcertificatedialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Select the certificate you want to use for signing:"
-msgstr "Выберыце сертыфікат, якім жадаеце падпісваць "
+msgstr "Выберыце сертыфікат, якім жадаеце падпісваць:"
#: selectcertificatedialog.ui
msgctxt ""
@@ -581,17 +585,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Description:"
-msgstr ""
+msgstr "Апісанне:"
#: viewcertdialog.ui
-#, fuzzy
msgctxt ""
"viewcertdialog.ui\n"
"ViewCertDialog\n"
"title\n"
"string.text"
msgid "View Certificate"
-msgstr "Паказаць сертыфікат..."
+msgstr "Паказаць сертыфікат"
#: viewcertdialog.ui
msgctxt ""
@@ -600,7 +603,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "General"
-msgstr ""
+msgstr "Агульны"
#: viewcertdialog.ui
msgctxt ""
@@ -609,7 +612,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Details"
-msgstr ""
+msgstr "Падрабязна"
#: viewcertdialog.ui
msgctxt ""
@@ -618,4 +621,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Certification Path"
-msgstr ""
+msgstr "Шлях сертыфікацыі"
diff --git a/source/bg/chart2/uiconfig/ui.po b/source/bg/chart2/uiconfig/ui.po
index c67508c5ae2..9afa8b1e3eb 100644
--- a/source/bg/chart2/uiconfig/ui.po
+++ b/source/bg/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-02 10:21+0000\n"
+"PO-Revision-Date: 2017-06-09 22:12+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493720516.000000\n"
+"X-POOTLE-MTIME: 1497046332.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -3767,7 +3767,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Force _Intercept"
-msgstr "Задължително пресичане"
+msgstr "Фиксиран свободен член"
#: tp_Trendline.ui
msgctxt ""
diff --git a/source/bg/cui/uiconfig/ui.po b/source/bg/cui/uiconfig/ui.po
index 89c2972150b..a4100ec605b 100644
--- a/source/bg/cui/uiconfig/ui.po
+++ b/source/bg/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-03 23:01+0000\n"
+"PO-Revision-Date: 2017-06-08 20:26+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496530874.000000\n"
+"X-POOTLE-MTIME: 1496953619.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -13280,7 +13280,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fixed"
-msgstr "Фиксирани"
+msgstr "Фиксирано"
#: paraindentspacing.ui
msgctxt ""
diff --git a/source/bg/desktop/source/deployment/gui.po b/source/bg/desktop/source/deployment/gui.po
index 48ce57ed904..da5feb07aa3 100644
--- a/source/bg/desktop/source/deployment/gui.po
+++ b/source/bg/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:25+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 20:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467649533.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497989426.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "Инсталирането на разширения в момента е забранено. Моля, свържете се със системния си администратор за повече информация."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "Премахването на разширения в момента е забранено. Моля, свържете се със системния си администратор за повече информация."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/bg/filter/source/config/fragments/filters.po b/source/bg/filter/source/config/fragments/filters.po
index 75468da2e7b..9d4df817d9a 100644
--- a/source/bg/filter/source/config/fragments/filters.po
+++ b/source/bg/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-03 23:05+0000\n"
+"PO-Revision-Date: 2017-06-08 20:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496531145.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496954398.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/bg/filter/source/config/fragments/types.po b/source/bg/filter/source/config/fragments/types.po
index d2e4c3f03df..d869d055890 100644
--- a/source/bg/filter/source/config/fragments/types.po
+++ b/source/bg/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-03 23:05+0000\n"
+"PO-Revision-Date: 2017-06-08 20:40+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496531148.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496954404.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/bg/filter/uiconfig/ui.po b/source/bg/filter/uiconfig/ui.po
index 92ba3957e78..37779888d74 100644
--- a/source/bg/filter/uiconfig/ui.po
+++ b/source/bg/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-03 23:06+0000\n"
+"PO-Revision-Date: 2017-06-08 20:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496531163.000000\n"
+"X-POOTLE-MTIME: 1496954629.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Използване на референтни XObjects"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index 57ec08ee34e..2b75e3ef574 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-24 11:42+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Кодове за грешка</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Тази функция връща подразбирания контекст на компонент, който се използва при създаване на екземпляри на услуги с XmultiServiceFactory. Вижте главата <item type=\"literal\">Professional UNO</item> в <item type=\"literal\">Developer's Guide</item> на адрес <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> за повече информация."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 5390be0abf3..31a6a51986a 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2016-10-13 08:59+0000\n"
+"PO-Revision-Date: 2017-06-09 20:31+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476349170.000000\n"
+"X-POOTLE-MTIME: 1497040279.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -7055,7 +7055,7 @@ msgctxt ""
"par_idN10E621\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link> function."
-msgstr ""
+msgstr "Ако плащанията се извършват през неравномерни интервали, използвайте функцията <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link>."
#: 04060103.xhp
msgctxt ""
@@ -20679,7 +20679,7 @@ msgctxt ""
"par_id3153389\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Връща съдържанието на клетка от област, състояща се от един ред или една колона.</ahelp> Може да бъде върната и съответстваща стойност (със същия индекс) от друга колона и ред. За разлика от <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> и <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link> векторите за претърсване и за резултат може да са на различни позиции – не е необходимо да са съседни. Освен това претърсваният вектор за LOOKUP трябва да бъде сортиран възходящо, иначе търсенето няма да върне използваем резултат."
#: 04060109.xhp
msgctxt ""
@@ -20959,7 +20959,7 @@ msgctxt ""
"par_id3146070\n"
"help.text"
msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)"
-msgstr ""
+msgstr "HLOOKUP(КритерийЗаТърсене; Масив; Индекс; Сортирано)"
#: 04060109.xhp
msgctxt ""
@@ -33607,7 +33607,7 @@ msgctxt ""
"par_idN111381\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link> function."
-msgstr ""
+msgstr "Ако плащанията се извършват през неравномерни интервали, използвайте функцията <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link>."
#: 04060119.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index 035b5546a9b..7c54e62e369 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2016-10-14 08:32+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-08 10:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1476433950.000000\n"
+"X-POOTLE-MTIME: 1496918234.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -11558,7 +11558,7 @@ msgctxt ""
"par_id3150478\n"
"help.text"
msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
-msgstr "Отворете контекстното меню - изберете <emph>Междуредия 1,5</emph>"
+msgstr "Отворете контекстното меню - изберете <emph>Междуредия - 1,5 реда</emph>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 5cd9a12f78c..f69912ec216 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-10 18:33+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-08 20:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1494441207.000000\n"
+"X-POOTLE-MTIME: 1496954616.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Изберете абзацния стил или нивото от плана, чрез което желаете да разделите документа – източник на поддокументи.</ahelp> По подразбиране се създава нов документ за всяка подточка от ниво 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -22303,7 +22303,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "1.5 Lines"
-msgstr "Междуредия 1,5"
+msgstr "1,5 реда"
#: 05120200.xhp
msgctxt ""
@@ -22311,7 +22311,7 @@ msgctxt ""
"hd_id3152459\n"
"help.text"
msgid "<link href=\"text/shared/01/05120200.xhp\" name=\"1.5 Lines\">1.5 Lines</link>"
-msgstr "<link href=\"text/shared/01/05120200.xhp\" name=\"Междуредия 1,5\">Междуредия 1,5</link>"
+msgstr "<link href=\"text/shared/01/05120200.xhp\" name=\"1.5 Lines\">1,5 реда</link>"
#: 05120200.xhp
msgctxt ""
@@ -40470,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Указва експортиране на показалци от документи на Writer като показалци в PDF. Създават се показалци за всички абзаци от плана (Инструменти - Номериране с подточки) и за всички записи от таблицата на съдържанието, на които сте приписали хипервръзки в документа източник.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -40583,7 +40583,7 @@ msgctxt ""
"hd_id3946959\n"
"help.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Използване на референтни XObjects"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 641daaddd86..4a1576e9c88 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-12-02 11:16+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2302,7 +2310,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress/00.po b/source/bg/helpcontent2/source/text/simpress/00.po
index 2a8dd539588..d43794a7377 100644
--- a/source/bg/helpcontent2/source/text/simpress/00.po
+++ b/source/bg/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-09-16 10:33+0000\n"
+"PO-Revision-Date: 2017-06-09 20:24+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1474022038.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497039888.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3150363\n"
"help.text"
msgid "Open context menu of layer tabs - choose <emph>Insert Layer</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr "Отворете помощното меню на перата за слоеве - изберете <emph>Вмъкване на слой</emph> (само в <item type=\"productname\">%PRODUCTNAME</item> Draw)"
+msgstr "Отворете контекстното меню на етикетите на слоеве - изберете <emph>Вмъкване на слой</emph> (само в <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000404.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3154372\n"
"help.text"
msgid "Open a context menu and choose <emph>Insert Snap Point/Line</emph>"
-msgstr "Отворете помощното меню и изберете <emph>Вмъкване на помощна линия/точка</emph>"
+msgstr "Отворете контекстното меню и изберете <emph>Вмъкване на помощна линия/точка</emph>"
#: 00000404.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3145388\n"
"help.text"
msgid "<variable id=\"efglbe\">Select a snap point or line, open the context menu, and choose <emph>Edit Snap Point/Line</emph></variable>"
-msgstr "<variable id=\"efglbe\">Изберете помощна линия или точка, отворете помощното меню и изберете <emph>Редактиране на помощна линия/точка</emph></variable>"
+msgstr "<variable id=\"efglbe\">Изберете помощна линия или точка, отворете контекстното меню и изберете <emph>Редактиране на помощна линия/точка</emph></variable>"
#: 00000404.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/simpress/01.po b/source/bg/helpcontent2/source/text/simpress/01.po
index 7d6f4db0cf7..0aeb0ce3e70 100644
--- a/source/bg/helpcontent2/source/text/simpress/01.po
+++ b/source/bg/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2016-10-13 14:53+0000\n"
+"PO-Revision-Date: 2017-06-09 20:29+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1476370395.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497040182.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -2502,7 +2502,7 @@ msgctxt ""
"par_id3150752\n"
"help.text"
msgid "<variable id=\"fangtext\"><ahelp hid=\".uno:CapturePoint\">Inserts a snap point or snap line (also known as guide) that you can use to quickly align objects.</ahelp></variable> Snap points and snap lines do not appear in printed output."
-msgstr "<variable id=\"fangtext\"><ahelp hid=\".uno:CapturePoint\">Вмъква помощна точка или линия, която ви улеснява в бързото подравняване на бързо.</ahelp></variable> Помощните точки и линии не се виждат в разпечатката."
+msgstr "<variable id=\"fangtext\"><ahelp hid=\".uno:CapturePoint\">Вмъква помощна точка или линия, която улеснява бързото подравняване на обекти.</ahelp></variable> Помощните точки и линии не се виждат в разпечатката."
#: 04030000.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter.po b/source/bg/helpcontent2/source/text/swriter.po
index 4afb4989f6e..5784ee99231 100644
--- a/source/bg/helpcontent2/source/text/swriter.po
+++ b/source/bg/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-09-27 22:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Номериране с подточки</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/00.po b/source/bg/helpcontent2/source/text/swriter/00.po
index 99ce375d6f5..9563ec826fd 100644
--- a/source/bg/helpcontent2/source/text/swriter/00.po
+++ b/source/bg/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-10-07 21:32+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Изберете <emph>Инструменти - Номериране с подточки</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Изберете <emph>Инструменти - Номериране с подточки - раздел Номерация</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Изберете <emph>Инструменти - Номериране на редове</emph> (не за формат HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index e429bdca0e3..b5b7c4662de 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2016-10-13 14:57+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-08 22:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476370654.000000\n"
+"X-POOTLE-MTIME: 1496961463.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Изберете <emph>1</emph>, за да се покажат само заглавията от най-високо ниво в прозореца Навигатор, или <emph>10</emph> за да видите всички заглавия.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Ако изберете \"Номер на глава без разделител\" за полето за глава, разделителят който е определен за номера на глава в <link href=\"text/swriter/01/06060000.xhp\" name=\"Инструменти - Номериране на глави\"><emph>Инструменти - Номериране на глави</emph></link> не се показва."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Вмъква номера на главата. За да припишете номера на глави към заглавен стил, изберете <emph>Инструменти - Номериране с подточки</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Номериране с подточки"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Номериране с подточки"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Номерирането с подточки е свързано със стиловете на абзаците. По подразбиране на съответните нива от плана на документа (1-10) са приписани абзацните стилове от \"Заглавие 1\" до \"Заглавие 10\". Ако желаете, можете да припишете на нивата от плана други абзацни стилове."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ако желаете номерирани заглавия, използвайте командата <emph>Инструменти - Номериране с подточки</emph>, за да зададете номериране за стила на абзаца. Не използвайте бутона Номериране от лентата с инструменти Форматиране."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "За се откроят на екрана номерата на подточките от плана, изберете <emph>Изглед - Фонове на полета</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Запазва или зарежда формат за номериране с подточки. Съхранените формати за номериране с подточки са достъпни във всички текстови документи.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Бутонът <emph>Формат</emph> е наличен само при номериране с подточки. При стиловете за списъци с номера или водачи променяйте стила за номериране на съответните абзаци."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Отваря диалогов прозорец, в който можете да съхраните текущите настройки за избраното ниво от плана. След това можете да заредите тези настройки от друг документ.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Щракнете върху нивото от плана, което желаете да промените, после задайте настройките за номериране за това ниво.</ahelp> За да приложите настройките за номериране - с изключение на абзацния стил - към всички нива, изберете \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Изберете абзацния стил, който желаете да припишете на избраното ниво от плана.</ahelp> Ако изберете \"Няма\", избраното ниво от плана няма да бъде дефинирано."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -22695,7 +22695,7 @@ msgctxt ""
"par_id4136478\n"
"help.text"
msgid "<ahelp hid=\".\">Repeats the first n rows as a header.</ahelp>"
-msgstr "<ahelp hid=\".\">Повтаря първите n редове като заглавие.</ahelp>"
+msgstr "<ahelp hid=\".\">Повтаря първите n реда като заглавие.</ahelp>"
#: 06090000.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Нов адресен блок"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Нов адресен блок"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Елементи на адреса"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Издърпайте тук елементите на адреса"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index e804e69eda5..ab80129b79c 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-10-11 23:58+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Чрез прозореца Навигатор можете да местите заглавия заедно с подчинения им текст нагоре или надолу в текста на документа. Освен това можете да повишавате или понижавате нивото на заглавие. За да ползвате тази възможност, форматирайте заглавията в документа с някой от готовите абзацни стилове за заглавия. За да използвате за заглавие абзацен стил по избор, изберете <emph>Инструменти - Номериране с подточки</emph>, изберете стила в полето <emph>Стил на абзаца</emph> и щракнете двукратно върху число в списъка <emph>Ниво</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Номериране с подточки"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>подточки;номериране</bookmark_value> <bookmark_value>изтриване;номера на заглавия</bookmark_value> <bookmark_value>номериране на глави</bookmark_value> <bookmark_value>заглавия;номериране</bookmark_value> <bookmark_value>номериране;заглавия</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Номериране с подточки\">Номериране с подточки</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Можете да променяте йерархията на заглавията или да приписвате на създаден от вас абзацен стил ниво в йерархията. Също така можете да добавяте номериране на глави и раздели към съответните абзацни стилове. По подразбиране абзацният стил \"Заглавие 1\" е на върха на йерархията в плана."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Изберете <item type=\"menuitem\">Инструменти - Номериране с подточки</item> и отворете раздела <item type=\"menuitem\">Номерация</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "За да премахнете автоматичната номерация от абзац - заглавие"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Изберете <item type=\"menuitem\">Инструменти - Номериране с подточки</item> и отворете раздела <item type=\"menuitem\">Номерация</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Преди да можете да вмъкнете информация за глава в колонтитул, трябва да зададете настройките на йерархичното номериране за абзацния стил, който ползвате за заглавията на главите."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Изберете <emph>Инструменти - Номериране с подточки</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>указатели; дефиниране елементи в</bookmark_value><bookmark_value>таблици на съдържанието; дефиниране елементи в</bookmark_value><bookmark_value>елементи; в указатели/таблици на съдържанието, дефиниране</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Изберете <emph>Вмъкване - Съдържание и указател - Елемент от указател</emph> и направете едно от следните неща:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Изберете <emph>Инструменти - Номериране с подточки</emph> и отворете раздела <emph>Номерация</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Ако желаете да ползвате различен абзацен стил като елемент от съдържанието, отметнете полето <item type=\"menuitem\">Допълнителни стилове</item> в областта <item type=\"menuitem\">Създаване от</item>, след това натиснете бутона <item type=\"menuitem\">Присвояване на стилове</item> до полето за отметка. В диалоговия прозорец <item type=\"menuitem\">Присвояване на стилове</item> щракнете върху стила в списъка, а после върху бутона <item type=\"menuitem\">>></item> или <item type=\"menuitem\"><<</item>, за да определите нивото на избрания стил."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>номериране; премахване/прекъсване</bookmark_value><bookmark_value>списъци с водачи; прекъсване</bookmark_value><bookmark_value>списъци;премахване/прекъсване на номерацията</bookmark_value><bookmark_value>изтриване;номера в списъци</bookmark_value><bookmark_value>прекъсване на номерирани списъци</bookmark_value><bookmark_value>промяна;начални номера в списъци</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ако желаете номерирани заглавия, използвайте командата <emph>Инструменти - Номериране с подточки</emph>, за да зададете номериране за стила на абзаца. Не използвайте бутона Номериране от лентата с инструменти Форматиране."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
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 d5a5661cc8b..45c264a29a8 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-03 23:27+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 20:14+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496532454.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497989659.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Избор на теми"
+msgid "Spreadsheet Theme"
+msgstr "Теми за електронни таблици"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Вмъкване..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "По подразбиране"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Акцент 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Акцент 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Акцент 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Заглавие 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Заглавие 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Лошо"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Грешка"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Добро"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Неутрално"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Предупреждение"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Бележка под линия"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Бележка"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Образец за кадър"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Образец за бележки"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Бележки"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7925,7 +8042,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Views"
-msgstr ""
+msgstr "Изгледи"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Лента с етикети на изгледи"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7943,7 +8060,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Views Tab Bar Visibility"
-msgstr ""
+msgstr "Превключване на лентата с етикети на изгледи"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Образец за листовка"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Панел за кадри"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Оформление на лентите с инструменти"
#: GenericCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Свойства..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Обект..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Повтаряне на заглавката на всяка страница"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Разделяне на реда в края на страница"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Списък с водещи знаци"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Списък с номера"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Списък с римски номера"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bg/sc/source/ui/src.po b/source/bg/sc/source/ui/src.po
index e5e43526ff9..322f344f8cb 100644
--- a/source/bg/sc/source/ui/src.po
+++ b/source/bg/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-05 18:11+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 20:33+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496686306.000000\n"
+"X-POOTLE-MTIME: 1497990798.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Преместена област от #1 към #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2871,10 +2871,10 @@ msgstr "Не се поддържат вложени масиви."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Текст към колони"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/bg/sd/source/ui/app.po b/source/bg/sd/source/ui/app.po
index 73a9991b600..962fce12c1c 100644
--- a/source/bg/sd/source/ui/app.po
+++ b/source/bg/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-06-03 23:40+0000\n"
+"PO-Revision-Date: 2017-06-08 22:54+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496533236.000000\n"
+"X-POOTLE-MTIME: 1496962461.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2058,7 +2058,7 @@ msgctxt ""
"STR_GRAPHICS_STYLE_FAMILY\n"
"string.text"
msgid "Drawing Styles"
-msgstr ""
+msgstr "Стилове за рисунки"
#: strings.src
msgctxt ""
diff --git a/source/bg/sd/uiconfig/simpress/ui.po b/source/bg/sd/uiconfig/simpress/ui.po
index f2a42aaac45..d9c4d6eebf6 100644
--- a/source/bg/sd/uiconfig/simpress/ui.po
+++ b/source/bg/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-06-05 20:44+0000\n"
+"PO-Revision-Date: 2017-06-08 22:58+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695488.000000\n"
+"X-POOTLE-MTIME: 1496962722.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -4298,7 +4298,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Go to Slide"
-msgstr ""
+msgstr "Преминаване към кадър"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/bg/sfx2/source/view.po b/source/bg/sfx2/source/view.po
index ab0a582f6a1..c6e9a81c699 100644
--- a/source/bg/sfx2/source/view.po
+++ b/source/bg/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-10 19:28+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494444493.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Подписът на документа е невалиден."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/bg/starmath/source.po b/source/bg/starmath/source.po
index 728d0963e44..d53a71eeabe 100644
--- a/source/bg/starmath/source.po
+++ b/source/bg/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-10 17:59+0000\n"
+"PO-Revision-Date: 2017-06-08 21:19+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494439176.000000\n"
+"X-POOTLE-MTIME: 1496956789.000000\n"
#: commands.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"RID_XDEFY_HELP\n"
"string.text"
msgid "Is Defined As"
-msgstr ""
+msgstr "Се дефинира като"
#: commands.src
msgctxt ""
diff --git a/source/bg/svtools/source/control.po b/source/bg/svtools/source/control.po
index a1820684f8e..e00a4dea5dd 100644
--- a/source/bg/svtools/source/control.po
+++ b/source/bg/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:25+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Чер курсив"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/bg/svtools/source/misc.po b/source/bg/svtools/source/misc.po
index 7210eaaf24c..42fe6e08dcf 100644
--- a/source/bg/svtools/source/misc.po
+++ b/source/bg/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-09 23:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Беквел"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Китуба"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Сивъ"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bg/svx/source/dialog.po b/source/bg/svx/source/dialog.po
index c7403ffa0ec..7e40c9f5996 100644
--- a/source/bg/svx/source/dialog.po
+++ b/source/bg/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-05 22:07+0000\n"
+"PO-Revision-Date: 2017-06-07 23:49+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496700444.000000\n"
+"X-POOTLE-MTIME: 1496879354.000000\n"
#: SafeMode.src
msgctxt ""
@@ -1219,7 +1219,7 @@ msgctxt ""
"First Page\n"
"itemlist.text"
msgid "First Page"
-msgstr ""
+msgstr "Първа страница"
#: samecontent.src
msgctxt ""
@@ -2597,7 +2597,7 @@ msgctxt ""
"RID_SVXSTR_BMP0\n"
"string.text"
msgid "Empty"
-msgstr ""
+msgstr "Празно"
#: sdstring.src
msgctxt ""
diff --git a/source/bg/svx/source/tbxctrls.po b/source/bg/svx/source/tbxctrls.po
index 439e535252c..9f5f4004334 100644
--- a/source/bg/svx/source/tbxctrls.po
+++ b/source/bg/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-06-05 21:55+0000\n"
+"PO-Revision-Date: 2017-06-07 23:49+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496699702.000000\n"
+"X-POOTLE-MTIME: 1496879387.000000\n"
#: colrctrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_TRANSPARENT\n"
"string.text"
msgid "Transparent"
-msgstr ""
+msgstr "Прозрачен"
#: tbcontrl.src
msgctxt ""
diff --git a/source/bg/svx/uiconfig/ui.po b/source/bg/svx/uiconfig/ui.po
index 98c33a21fe5..a5545db6dbe 100644
--- a/source/bg/svx/uiconfig/ui.po
+++ b/source/bg/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 23:28+0000\n"
+"PO-Revision-Date: 2017-06-08 20:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496791696.000000\n"
+"X-POOTLE-MTIME: 1496954366.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sorting"
-msgstr ""
+msgstr "Сортиране"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Description"
-msgstr ""
+msgstr "Описание"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Редактиране на коментар..."
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Сортиране по"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -4220,7 +4220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hidden Control"
-msgstr ""
+msgstr "Скрита контрола"
#: formnavimenu.ui
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Control Focus"
-msgstr ""
+msgstr "Автоматично фокусиране на контролите"
#: functionmenu.ui
msgctxt ""
@@ -4409,7 +4409,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr ""
+msgstr "Преименуване"
#: gallerymenu1.ui
msgctxt ""
@@ -4418,7 +4418,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Assign _ID"
-msgstr ""
+msgstr "Присвояване на ID"
#: gallerymenu1.ui
msgctxt ""
@@ -4427,7 +4427,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Propert_ies..."
-msgstr ""
+msgstr "Свойства..."
#: gallerymenu2.ui
msgctxt ""
@@ -4436,7 +4436,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Insert"
-msgstr ""
+msgstr "Вмъкване"
#: gallerymenu2.ui
msgctxt ""
@@ -4445,7 +4445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Bac_kground"
-msgstr ""
+msgstr "Вмъкване като фон"
#: gallerymenu2.ui
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Preview"
-msgstr ""
+msgstr "Мостра"
#: gallerymenu2.ui
msgctxt ""
@@ -4463,7 +4463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Title"
-msgstr ""
+msgstr "Заглавие"
#: gallerymenu2.ui
msgctxt ""
@@ -4472,7 +4472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#: gallerymenu2.ui
msgctxt ""
@@ -4481,7 +4481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "Копиране"
#: gallerymenu2.ui
msgctxt ""
@@ -4490,7 +4490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Insert"
-msgstr ""
+msgstr "Вмъкване"
#: headfootformatpage.ui
msgctxt ""
@@ -4517,7 +4517,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same _content on left and right pages"
-msgstr ""
+msgstr "Еднакво съдържание на леви и десни страници"
#: headfootformatpage.ui
msgctxt ""
@@ -4661,7 +4661,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Close"
-msgstr ""
+msgstr "Затваряне"
#: imapdialog.ui
msgctxt ""
@@ -4823,7 +4823,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Description..."
-msgstr ""
+msgstr "Описание..."
#: imapmenu.ui
msgctxt ""
@@ -4832,7 +4832,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Macro..."
-msgstr ""
+msgstr "Макрос..."
#: imapmenu.ui
msgctxt ""
@@ -4841,7 +4841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active"
-msgstr ""
+msgstr "Активна"
#: imapmenu.ui
msgctxt ""
@@ -4850,7 +4850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "Подреждане"
#: imapmenu.ui
msgctxt ""
@@ -4859,7 +4859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bring to Front"
-msgstr ""
+msgstr "Изнасяне отпред"
#: imapmenu.ui
msgctxt ""
@@ -4868,7 +4868,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bring _Forward"
-msgstr ""
+msgstr "Преместване напред"
#: imapmenu.ui
msgctxt ""
@@ -4877,7 +4877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Send Back_ward"
-msgstr ""
+msgstr "Преместване назад"
#: imapmenu.ui
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Send to Back"
-msgstr ""
+msgstr "Изнасяне отзад"
#: imapmenu.ui
msgctxt ""
@@ -4895,7 +4895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select _All"
-msgstr ""
+msgstr "Избор на всички"
#: imapmenu.ui
msgctxt ""
@@ -4904,7 +4904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#: linkwarndialog.ui
msgctxt ""
@@ -4967,7 +4967,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Playback:"
-msgstr ""
+msgstr "Възпроизвеждане:"
#: mediaplayback.ui
msgctxt ""
@@ -4976,7 +4976,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Seek:"
-msgstr ""
+msgstr "Превъртане:"
#: mediaplayback.ui
msgctxt ""
@@ -4985,7 +4985,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Volume:"
-msgstr ""
+msgstr "Сила:"
#: mediaplayback.ui
msgctxt ""
@@ -4994,7 +4994,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Преглед"
#: namespacedialog.ui
msgctxt ""
@@ -5255,7 +5255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Constrain Objects"
-msgstr ""
+msgstr "Ограничаване на обектите"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5264,7 +5264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 1"
-msgstr "Разстояние: 1"
+msgstr "Междуредие: 1"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5273,7 +5273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 1.15"
-msgstr "Разстояние: 1,15"
+msgstr "Междуредие: 1,15"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5282,7 +5282,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 1.5"
-msgstr "Разстояние: 1,5"
+msgstr "Междуредие: 1,5"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5291,7 +5291,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 2"
-msgstr "Разстояние: 2"
+msgstr "Междуредие: 2"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5318,7 +5318,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "1.15 Lines"
-msgstr ""
+msgstr "1,15 реда"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5327,7 +5327,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "1.5 Lines"
-msgstr ""
+msgstr "1,5 реда"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5336,7 +5336,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Double"
-msgstr ""
+msgstr "Двойно"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5345,7 +5345,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Proportional"
-msgstr ""
+msgstr "Пропорционално"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5354,7 +5354,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "At least"
-msgstr ""
+msgstr "Най-малко"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5363,7 +5363,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Просвет"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5372,7 +5372,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Fixed"
-msgstr ""
+msgstr "Фиксирано"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5399,7 +5399,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Отстъп преди текста"
#: paralrspacing.ui
msgctxt ""
@@ -5408,7 +5408,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Отстъп след текста"
#: paralrspacing.ui
msgctxt ""
@@ -5417,7 +5417,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Отстъп на първия ред"
#: paraulspacing.ui
msgctxt ""
@@ -5426,7 +5426,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Разстояние над абзаца"
#: paraulspacing.ui
msgctxt ""
@@ -5435,7 +5435,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Разстояние под абзаца"
#: passwd.ui
msgctxt ""
@@ -5498,7 +5498,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename"
-msgstr ""
+msgstr "Преименуване"
#: presetmenu.ui
msgctxt ""
@@ -5507,7 +5507,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Изтриване"
#: profileexporteddialog.ui
msgctxt ""
@@ -5516,7 +5516,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Profile exported"
-msgstr ""
+msgstr "Профилът е експортиран"
#: profileexporteddialog.ui
msgctxt ""
@@ -5525,7 +5525,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open Containing _Folder"
-msgstr ""
+msgstr "Отваряне на съдържащата папка"
#: profileexporteddialog.ui
msgctxt ""
@@ -5534,7 +5534,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Your user profile has been exported as “libreoffice-profile.zip”."
-msgstr ""
+msgstr "Потребителският ви профил е експортиран като „libreoffice-profile.zip“."
#: querydeletecontourdialog.ui
msgctxt ""
@@ -5781,7 +5781,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Коментар"
#: redlinefilterpage.ui
msgctxt ""
@@ -5817,7 +5817,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Автор"
#: redlinefilterpage.ui
msgctxt ""
@@ -5826,7 +5826,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Range"
-msgstr ""
+msgstr "Диапазон"
#: redlinefilterpage.ui
msgctxt ""
@@ -6024,7 +6024,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Изтриване на редове"
#: rowsmenu.ui
msgctxt ""
@@ -6033,7 +6033,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save Record"
-msgstr ""
+msgstr "Записване на записа"
#: rowsmenu.ui
msgctxt ""
@@ -6042,7 +6042,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Undo: Data entry"
-msgstr ""
+msgstr "Отмяна: въвеждане на данни"
#: rulermenu.ui
msgctxt ""
@@ -6051,7 +6051,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Millimeter"
-msgstr ""
+msgstr "Милиметър"
#: rulermenu.ui
msgctxt ""
@@ -6060,7 +6060,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centimeter"
-msgstr ""
+msgstr "Сантиметър"
#: rulermenu.ui
msgctxt ""
@@ -6069,7 +6069,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Meter"
-msgstr ""
+msgstr "Метър"
#: rulermenu.ui
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Kilometer"
-msgstr ""
+msgstr "Километър"
#: rulermenu.ui
msgctxt ""
@@ -6087,7 +6087,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Inch"
-msgstr ""
+msgstr "Инч"
#: rulermenu.ui
msgctxt ""
@@ -6096,7 +6096,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Foot"
-msgstr ""
+msgstr "Фут"
#: rulermenu.ui
msgctxt ""
@@ -6105,7 +6105,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Miles"
-msgstr ""
+msgstr "Мили"
#: rulermenu.ui
msgctxt ""
@@ -6114,7 +6114,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Point"
-msgstr ""
+msgstr "Пункт"
#: rulermenu.ui
msgctxt ""
@@ -6123,7 +6123,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pica"
-msgstr ""
+msgstr "Пика"
#: rulermenu.ui
msgctxt ""
@@ -6132,7 +6132,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Char"
-msgstr ""
+msgstr "Знак"
#: rulermenu.ui
msgctxt ""
@@ -6141,7 +6141,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Line"
-msgstr ""
+msgstr "Ред"
#: safemodedialog.ui
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Safe Mode"
-msgstr ""
+msgstr "Безопасен режим"
#: safemodedialog.ui
msgctxt ""
@@ -6159,7 +6159,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Continue in Safe Mode"
-msgstr ""
+msgstr "Продължаване в безопасен режим"
#: safemodedialog.ui
msgctxt ""
@@ -6168,7 +6168,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Restart in Normal Mode"
-msgstr ""
+msgstr "Рестартиране в нормален режим"
#: safemodedialog.ui
msgctxt ""
@@ -6177,7 +6177,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr ""
+msgstr "Прилагане на промените и рестартиране"
#: safemodedialog.ui
msgctxt ""
@@ -6192,6 +6192,11 @@ msgid ""
"\n"
"The proposed changes get more radical from top down so it is recommended to try them successively one after another."
msgstr ""
+"В момента %PRODUCTNAME се изпълнява в безопасен режим, който временно изключва потребителската ви конфигурация и разширенията.\n"
+"\n"
+"За да възстановите работоспособността на %PRODUCTNAME, можете да внесете една или повече от следните промени в потребителския си профил.\n"
+"\n"
+"Предложените промени стават все по-радикални в посока към края на списъка, затова се препоръчва да ги изпробвате в показания ред."
#: safemodedialog.ui
msgctxt ""
@@ -6200,7 +6205,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Възстановяване от резервно копие"
#: safemodedialog.ui
msgctxt ""
@@ -6209,7 +6214,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore user configuration to the last known working state"
-msgstr ""
+msgstr "Възстановяване на потребителската конфигурация до последното работещо състояние"
#: safemodedialog.ui
msgctxt ""
@@ -6218,7 +6223,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore state of installed user extensions to the last known working state"
-msgstr ""
+msgstr "Възстановяване на инсталираните от потребителя разширения до последното работещо състояние"
#: safemodedialog.ui
msgctxt ""
@@ -6227,7 +6232,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Configure"
-msgstr ""
+msgstr "Конфигуриране"
#: safemodedialog.ui
msgctxt ""
@@ -6236,7 +6241,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Изключване на всички потребителски разширения"
#: safemodedialog.ui
msgctxt ""
@@ -6245,7 +6250,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable hardware acceleration (OpenGL, OpenCL)"
-msgstr ""
+msgstr "Изключване на хардуерното ускорение (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
@@ -6254,7 +6259,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extensions"
-msgstr ""
+msgstr "Разширения"
#: safemodedialog.ui
msgctxt ""
@@ -6263,7 +6268,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Uninstall all user extensions"
-msgstr ""
+msgstr "Деинсталиране на всички потребителски разширения"
#: safemodedialog.ui
msgctxt ""
@@ -6272,7 +6277,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset state of shared extensions"
-msgstr ""
+msgstr "Нулиране състоянието на споделените разширения"
#: safemodedialog.ui
msgctxt ""
@@ -6281,7 +6286,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset state of bundled extensions"
-msgstr ""
+msgstr "Нулиране състоянието на вградените разширения"
#: safemodedialog.ui
msgctxt ""
@@ -6290,7 +6295,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Връщане към фабричните настройки"
#: safemodedialog.ui
msgctxt ""
@@ -6299,7 +6304,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset settings and user interface modifications"
-msgstr ""
+msgstr "Нулиране на настройките и промените в потребителския интерфейс"
#: safemodedialog.ui
msgctxt ""
@@ -6308,7 +6313,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset entire user profile"
-msgstr ""
+msgstr "Нулиране на целия потребителски профил"
#: safemodedialog.ui
msgctxt ""
@@ -6317,7 +6322,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug."
-msgstr ""
+msgstr "Ако срещнете проблеми, които не се разрешават с помощта на безопасния режим, посетете следния адрес, за да получите помощ или да съобщите за дефект."
#: safemodedialog.ui
msgctxt ""
@@ -6326,7 +6331,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get Help"
-msgstr ""
+msgstr "Помощ"
#: safemodedialog.ui
msgctxt ""
@@ -6335,7 +6340,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)."
-msgstr ""
+msgstr "Можете да включите в доклада за грешка уместни части от потребителския профил (възможно е да съдържа лични данни)."
#: safemodedialog.ui
msgctxt ""
@@ -6344,7 +6349,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr ""
+msgstr "Архивиране на потребителския профил (Zip)"
#: safemodedialog.ui
msgctxt ""
@@ -6353,7 +6358,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show User Profile"
-msgstr ""
+msgstr "Показване на потребителския профил"
#: safemodedialog.ui
msgctxt ""
@@ -6362,7 +6367,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Advanced"
-msgstr ""
+msgstr "Разширени"
#: savemodifieddialog.ui
msgctxt ""
@@ -6389,7 +6394,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Standard selection"
-msgstr ""
+msgstr "Стандартна селекция"
#: selectionmenu.ui
msgctxt ""
@@ -6398,7 +6403,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extending selection"
-msgstr ""
+msgstr "Разширяване на селекцията"
#: selectionmenu.ui
msgctxt ""
@@ -6407,7 +6412,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Adding selection"
-msgstr ""
+msgstr "Добавяне на селекция"
#: selectionmenu.ui
msgctxt ""
@@ -6416,7 +6421,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Block selection"
-msgstr ""
+msgstr "Блокова селекция"
#: sidebararea.ui
msgctxt ""
@@ -6578,7 +6583,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Import"
-msgstr ""
+msgstr "Импортиране"
#: sidebararea.ui
msgctxt ""
@@ -6812,7 +6817,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color mode"
-msgstr ""
+msgstr "Цветови режим"
#: sidebargraphic.ui
msgctxt ""
@@ -6857,7 +6862,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Червено"
#: sidebargraphic.ui
msgctxt ""
@@ -6875,7 +6880,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Зелено"
#: sidebargraphic.ui
msgctxt ""
@@ -6893,7 +6898,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Синьо"
#: sidebargraphic.ui
msgctxt ""
@@ -7217,7 +7222,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Разстояние над абзаца"
#: sidebarparagraph.ui
msgctxt ""
@@ -7235,7 +7240,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Разстояние под абзаца"
#: sidebarparagraph.ui
msgctxt ""
@@ -7307,7 +7312,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Отстъп преди текста"
#: sidebarparagraph.ui
msgctxt ""
@@ -7325,7 +7330,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Отстъп след текста"
#: sidebarparagraph.ui
msgctxt ""
@@ -7343,7 +7348,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Отстъп на първия ред"
#: sidebarparagraph.ui
msgctxt ""
@@ -7361,7 +7366,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _X:"
-msgstr ""
+msgstr "Позиция по Х:"
#: sidebarpossize.ui
msgctxt ""
@@ -7388,7 +7393,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr ""
+msgstr "Позиция по Y:"
#: sidebarpossize.ui
msgctxt ""
@@ -7586,7 +7591,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Update to Match Selection"
-msgstr ""
+msgstr "Обновяване според селекцията"
#: stylemenu.ui
msgctxt ""
@@ -7595,7 +7600,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Style..."
-msgstr ""
+msgstr "Редактиране на стил..."
#: textcharacterspacingcontrol.ui
msgctxt ""
@@ -7910,7 +7915,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Digital Signatures..."
-msgstr ""
+msgstr "Цифрови подписи..."
#: zoommenu.ui
msgctxt ""
@@ -7919,7 +7924,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Entire Page"
-msgstr ""
+msgstr "Цялата страница"
#: zoommenu.ui
msgctxt ""
@@ -7928,7 +7933,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Width"
-msgstr ""
+msgstr "Ширина на страницата"
#: zoommenu.ui
msgctxt ""
@@ -7937,7 +7942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal View"
-msgstr ""
+msgstr "Оптимален изглед"
#: zoommenu.ui
msgctxt ""
@@ -7946,7 +7951,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "50%"
-msgstr ""
+msgstr "50%"
#: zoommenu.ui
msgctxt ""
@@ -7955,7 +7960,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "75%"
-msgstr ""
+msgstr "75%"
#: zoommenu.ui
msgctxt ""
@@ -7964,7 +7969,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "100%"
-msgstr ""
+msgstr "100%"
#: zoommenu.ui
msgctxt ""
@@ -7973,7 +7978,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "150%"
-msgstr ""
+msgstr "150%"
#: zoommenu.ui
msgctxt ""
@@ -7982,4 +7987,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "200%"
-msgstr ""
+msgstr "200%"
diff --git a/source/bg/sw/source/core/undo.po b/source/bg/sw/source/core/undo.po
index d4f2337222c..ac8ba204c8d 100644
--- a/source/bg/sw/source/core/undo.po
+++ b/source/bg/sw/source/core/undo.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-06-05 20:46+0000\n"
-"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 12:17+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695569.000000\n"
+"X-POOTLE-MTIME: 1497961078.000000\n"
#: undo.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"STR_END_QUOTE\n"
"string.text"
msgid "”"
-msgstr ""
+msgstr "“"
#: undo.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"STR_YIELDS\n"
"string.text"
msgid "→"
-msgstr ""
+msgstr "→"
#: undo.src
msgctxt ""
@@ -891,42 +891,82 @@ msgstr "разделител на колони"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Вмъкване на $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Изтриване на $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Променени свойства"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Променена таблица"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Променен стил"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
@@ -1206,7 +1246,7 @@ msgctxt ""
"STR_GRAPHIC\n"
"string.text"
msgid "image"
-msgstr ""
+msgstr "изображение"
#: undo.src
msgctxt ""
diff --git a/source/bg/sw/source/uibase/docvw.po b/source/bg/sw/source/uibase/docvw.po
index 98433009944..4a0b1eb824d 100644
--- a/source/bg/sw/source/uibase/docvw.po
+++ b/source/bg/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-23 01:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Приложени абзацни стилове"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/bg/sw/source/uibase/ribbar.po b/source/bg/sw/source/uibase/ribbar.po
index 025edfb0b5a..5553809ae4b 100644
--- a/source/bg/sw/source/uibase/ribbar.po
+++ b/source/bg/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-25 23:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Текст на формула"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/bg/sw/source/uibase/uiview.po b/source/bg/sw/source/uibase/uiview.po
index 1504ef11f50..a1d9ebb3c18 100644
--- a/source/bg/sw/source/uibase/uiview.po
+++ b/source/bg/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 19:27+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Експортиране на изходен код..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/bg/sw/uiconfig/swriter/ui.po b/source/bg/sw/uiconfig/swriter/ui.po
index f3509c2f428..41f143cf19a 100644
--- a/source/bg/sw/uiconfig/swriter/ui.po
+++ b/source/bg/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-05 21:50+0000\n"
+"PO-Revision-Date: 2017-06-08 23:15+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496699438.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496963721.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "Описание:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Редактиране на коментар..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Сортиране по"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Действие"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Автор"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Дата"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Коментар"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Позиция в документа"
#: mergeconnectdialog.ui
msgctxt ""
@@ -10404,7 +10404,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_raw"
-msgstr ""
+msgstr "Рисуване"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Ред на закотвянето като в LibreOffice 4.3 (в текущия документ)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Потребителски настройки>"
#: optcompatpage.ui
msgctxt ""
@@ -16289,7 +16289,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accept Change"
-msgstr ""
+msgstr "Приемане на промяната"
#: spellmenu.ui
msgctxt ""
@@ -16298,7 +16298,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reject Change"
-msgstr ""
+msgstr "Отхвърляне на промяната"
#: spellmenu.ui
msgctxt ""
@@ -16307,7 +16307,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Next Change"
-msgstr ""
+msgstr "Следваща промяна"
#: spellmenu.ui
msgctxt ""
@@ -16316,7 +16316,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Previous Change"
-msgstr ""
+msgstr "Предишна промяна"
#: splittable.ui
msgctxt ""
@@ -16622,7 +16622,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Properties"
-msgstr ""
+msgstr "Свойства на таблица"
#: tableproperties.ui
msgctxt ""
diff --git a/source/bg/xmlsecurity/uiconfig/ui.po b/source/bg/xmlsecurity/uiconfig/ui.po
index d0e5261578b..adb69c17a76 100644
--- a/source/bg/xmlsecurity/uiconfig/ui.po
+++ b/source/bg/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-06 15:56+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494086216.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Премахване"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/bn-IN/desktop/source/deployment/gui.po b/source/bn-IN/desktop/source/deployment/gui.po
index 56ce648d351..ffc5bf6c784 100644
--- a/source/bn-IN/desktop/source/deployment/gui.po
+++ b/source/bn-IN/desktop/source/deployment/gui.po
@@ -3,19 +3,19 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:46+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-08 08:19+0000\n"
+"Last-Translator: Saibal Ray <sray@redhat.com>\n"
"Language-Team: Bengali <anubad@lists.ankur.org.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"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467650799.000000\n"
+"X-POOTLE-MTIME: 1418026746.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -176,6 +176,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -190,6 +198,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index ed880316e9b..2cc55c28763 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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">ত্রুটি কোড </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "XmultiServiceFactory এর মাধ্যমে সার্ভিস তাৎক্ষনিকভাবে থাকলে ব্যবহারের জন্য রান-টাইম ফাংশনটি পূর্বনির্ধারিত উপাদানের বিষয়বস্তু প্রদান করে। আরও তথ্যের জন্য<link href=\"http://api.openoffice.org\">api.openoffice.org</link> এ <item type=\"literal\">ডেভেলপারের গাইড</item> এর <item type=\"literal\">পেশাদারী UNO</item> অধ্যায়ে দেখুন।"
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index 4c039e4d7fd..9af2095101f 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 02:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 06fc742a223..2c217e8a775 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-10-18 20:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 97d9c546ec0..1d05dbfc668 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/swriter.po b/source/bn-IN/helpcontent2/source/text/swriter.po
index 3227bf31227..918b5c1a15c 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 03:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">রূপরেখা ক্রমায়ন</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/00.po b/source/bn-IN/helpcontent2/source/text/swriter/00.po
index 0741a5db23a..511158d42d6 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/00.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 03:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>টুল - রূপরেখা সংখ্যায়ন</emph>নির্বাচন করুন</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>টুল - রূপরেখা সংখ্যায়ন - সংখ্যায়ন</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>টুল - লাইন সংখ্যায়ন</emph> (HTML বিন্যাসের জন্য) নির্বাচন করুন</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po
index 9ec97614653..44c9131e90c 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/01.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 17:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">ন্যাভিগেটর উইন্ডোতে শুধু উচ্চ পর্যায়ের শিরোনাম দেখতে <emph>1 </emph> ক্লিক করুন এবং সব শিরোনাম দেখতে <emph>10</emph> ক্লিক করুন।</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "সীমারেখা সংখ্যায়ন"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "সীমারেখা সংখ্যায়ন"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "বহি:রেখা সংখ্যায়ন অনুচ্ছেদ শৈলীর সাথে সংযোগকৃত। পূর্বনির্ধারণক্রমে, \"শিরোনাম\" অনুচ্ছেদ শৈলী (১-১০) সংশ্লিষ্ট বহি:রেখা সংখ্যা স্তর (১-১০) তে বরাদ্দ করা হবে। যদি আপনি চান, আপনি বহি:রেখা সংখ্যা স্তরের জন্য ভিন্ন্য অনুচ্ছেদ শৈলী বরাদ্দ করতে পারেন।"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "যদি আপনি সংখ্যায়িত শিরোনাম চান, অনুচ্ছেদ শৈলীতে সংখ্যায়ন বরাদ্দ করতে <emph>টুল - বহি:রেখা সংখ্যায়ন </emph> তালিকা কমান্ড ব্যবহার করুন। বিন্যাস টুলবারে সংখ্যায়ন আইকন ব্যবহার করবেন না।"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "বহি:রেখা সংখ্যার স্ক্রীন প্রদর্শন করতে,<emph>দর্শন -</emph><emph>ক্ষেত্র ছায়াকরণ</emph> নির্বাচন করুন।"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">একটি বহি:রেখা সংখ্যা বিন্যাস সংরক্ষণ অথবা লোড করুন। একটি সংরক্ষিত বহি:রেখা বিন্যাস সব পাঠ্য নথিতে বিদ্যমান।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>বিন্যাস</emph>বোতামটি কেবল বহি:রেখা ক্রমিকায়নের জন্য বিদ্যমান। সংখ্যায়িত অথবা বুলেটকৃত তালিকা শৈলীর জন্য, অনুচ্ছেদের সংখ্যায়ন শৈলী পরিবর্তন করুন।"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">একটি ডায়ালগ খুলুন যেখানে আপনি নির্বাচিত বহি:রেখা স্তরের বর্তমান বিন্যাস সংরক্ষণ করতে পারবেন। আপনি এরপর অন্য নথি থেকে এই বিন্যাস লোড করতে পারবেন।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">বহই:রেকা স্তরে ক্লিক করুন যা আপনি পরিবর্তন করতে চান, এবং এরপর স্তরের জন্য সংখ্যায়ন পছন্দ সুনির্দিষ্ট ভাবে উল্লেখ করুন।</ahelp>অণুচ্ছেদ শৈলী ব্যতীত, সব স্তরে, সংখ্যায়ন পছন্দ প্রয়োগ করতে, \"১-১০\" এ ক্লিক করুন।"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">অনুচ্ছেদ শৈলী নির্বাচন করুন যা আপনি নির্বাচিত বহি:রেকা স্তরে বরাদ্দ করতে চান।</ahelp> যদি আপনি \"একটিও না\" তে ক্লিক করেন, তবে নির্বাচিত বহি:রেখা স্তর নির্ধারণ করা হয়নি।"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "নতুন ঠিকানা ব্লক"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "নতুন ঠিকানা ব্লক"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "ঠিকানার উপাদান"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "ক্ষেত্রের নিচে ঠিকানা উপাদান টানুন"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index 9b3f45bef6f..d2c95ad0d94 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 17:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "ন্যাভিগেটর ব্যবহার করে"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "রূপরেখা সংখ্যায়ন"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">রূপরেখা সংখ্যায়ন</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "একটি পছন্দসই অনুচ্ছেদ শৈলীর জন্য আপনি শিরোনাম ক্রমোচ্চ শ্রেণীবিভাগ পরিবর্তন করতে অথবা ক্রমোচ্চ শ্রেণীবিভাগে একটি স্তর বরাদ্দ করতে পারবেন। আপনি শিরোনাম অনুচ্ছেদ শৈলীতে অধ্যায় এবং শাখা সংখ্যায়নও যুক্ত করতে পারবেন। পূর্ব নির্ধারণক্রমে, \"শিরোনাম ১\" অনুচ্ছেদ শৈলী বহি:রেখা ক্রমোচ্চ শ্রেণীবিভাগের শীর্ষে থাকে।"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">টুল - রূপরেখা সংখ্যায়ন</item>, অতঃপর <item type=\"menuitem\">সংখ্যায়ন</item> ট্যাবে ক্লিক করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "একটি শিরোনাম অনুচ্ছেদ হতে স্বয়ংক্রিয় রূপরেখা সংখ্যায়ন সরিয়ে ফেলতে"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">টুল - রূপরেখা সংখ্যায়ন</item>, অতঃপর <item type=\"menuitem\">সংখ্যায়ন</item> ট্যাবে ক্লিক করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "একটি শীর্ষচরণ অথবা পাদটীকায় অধ্যায় তথ্য সন্নিবেশ করানোর আগে, আপনাকে প্রথমে অবশ্যই অনুচ্ছেদ শৈলীর জন্য বহি:রেখা সংখ্যায়ন নির্ধারণ করতে হবে যা আপনি অধ্যায় শিরোনামের জন্য ব্যবহার করতে চান।"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>টুল - বহি:রেখা সংখ্যায়ন</emph>পছন্দ করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>সন্নিবেশ করান - সূচী এবং সারণি - ভুক্তি</emph>পছন্দ করুন, এবং নিম্নের যেকোনো একটি করুন"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>টুল - বহি:রেখা সংখ্যায়ন পছন্দ করুন</emph> এবং <emph>সংখ্যায়ন</emph> ট্যাব এ ক্লিক করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the (<item type=\"menuitem\">...</item>) button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "যদি আপনি সংখ্যায়িত শিরোনাম চান, একটি অনুচ্ছেদ শৈলীতে সংখ্যায়ন নিযুক্ত করতে <emph>টুল - রূপরেখা সংখ্যায়ন</emph> মেনু কমান্ড ব্যবহার করুন। বিন্যাস বারে সংখ্যায়ন আইকন ব্যবহার করবেন না।"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
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 182354ca3c1..326e6ed59db 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "থীম বাছাই করা"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4066,6 +4066,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26984,15 +27101,6 @@ msgid "~Properties..."
msgstr "বৈশিষ্ট্য..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/bn-IN/sc/source/ui/src.po b/source/bn-IN/sc/source/ui/src.po
index 32147e2892d..9b726bbc6fb 100644
--- a/source/bn-IN/sc/source/ui/src.po
+++ b/source/bn-IN/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -2702,7 +2702,7 @@ msgstr "পরিসর #1 থেকে #2 এ সরানো হয়েছ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "নেস্টেড অ্যারেসমূহ সমর্থি
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/bn-IN/sfx2/source/view.po b/source/bn-IN/sfx2/source/view.po
index cfa2fa920bd..ea250ea73a7 100644
--- a/source/bn-IN/sfx2/source/view.po
+++ b/source/bn-IN/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -250,6 +250,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/bn-IN/svtools/source/control.po b/source/bn-IN/svtools/source/control.po
index 3547a66a296..e20b0782a37 100644
--- a/source/bn-IN/svtools/source/control.po
+++ b/source/bn-IN/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 22:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
@@ -292,6 +292,110 @@ msgstr "কালো তির্যক"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/bn-IN/svtools/source/misc.po b/source/bn-IN/svtools/source/misc.po
index d396c34f700..9ed22425f2c 100644
--- a/source/bn-IN/svtools/source/misc.po
+++ b/source/bn-IN/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-12 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
@@ -3182,10 +3182,10 @@ msgstr "বিকওয়েল"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "কিটুবা"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bn-IN/sw/source/core/undo.po b/source/bn-IN/sw/source/core/undo.po
index 28a10b46197..748be4eafff 100644
--- a/source/bn-IN/sw/source/core/undo.po
+++ b/source/bn-IN/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -892,42 +892,82 @@ msgstr "কলাম বিভাজক"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 সন্নিবেশ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 মুছে ফেলুন"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "বৈশিষ্ট্য পরিবর্তিত"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "সারণি পরিবর্তিত"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "শৈলী পরিবর্তিত"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/bn-IN/sw/source/uibase/docvw.po b/source/bn-IN/sw/source/uibase/docvw.po
index 6f5ee499b1f..21dd87b44ba 100644
--- a/source/bn-IN/sw/source/uibase/docvw.po
+++ b/source/bn-IN/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 15:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/bn-IN/sw/source/uibase/ribbar.po b/source/bn-IN/sw/source/uibase/ribbar.po
index 0c7fad81ed7..624c15d1fae 100644
--- a/source/bn-IN/sw/source/uibase/ribbar.po
+++ b/source/bn-IN/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 12:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/bn-IN/sw/source/uibase/uiview.po b/source/bn-IN/sw/source/uibase/uiview.po
index 6ee6a0cc9c0..f9141055b9f 100644
--- a/source/bn-IN/sw/source/uibase/uiview.po
+++ b/source/bn-IN/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 15:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/bn-IN/xmlsecurity/uiconfig/ui.po b/source/bn-IN/xmlsecurity/uiconfig/ui.po
index 5274c848e2f..00e41ec7d7e 100644
--- a/source/bn-IN/xmlsecurity/uiconfig/ui.po
+++ b/source/bn-IN/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "সরিয়ে ফেলুন"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/bn/desktop/source/deployment/gui.po b/source/bn/desktop/source/deployment/gui.po
index 1c850736acc..9a481a317a6 100644
--- a/source/bn/desktop/source/deployment/gui.po
+++ b/source/bn/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:27+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-25 15:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467649677.000000\n"
+"X-POOTLE-MTIME: 1440517895.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
"ইনস্টলেশন বন্ধ করার জন্য \\\\'বাতিল\\\\' ক্লিক করুন।"
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -190,6 +198,14 @@ msgstr ""
"অপসারণ বন্ধ করতে \\\\'বাতিল\\\\' ক্লিক করুন।"
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared.po b/source/bn/helpcontent2/source/text/sbasic/shared.po
index 9ecd64aa6fd..ade908a32aa 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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">ত্রুটি কোড </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "XmultiServiceFactory এর মাধ্যমে সার্ভিস তাৎক্ষনিকভাবে থাকলে ব্যবহারের জন্য রান-টাইম ফাংশনটি পূর্বনির্ধারিত উপাদানের বিষয়বস্তু প্রদান করে। আরও তথ্যের জন্য<link href=\"http://api.openoffice.org\">api.openoffice.org</link> এ <item type=\"literal\">ডেভেলপারের গাইড</item> এর <item type=\"literal\">পেশাদারী UNO</item> অধ্যায়ে দেখুন।"
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index b5b2d0f1125..ed305aa1f82 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 02:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 0ee687bbfb5..958eeb14fe1 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-24 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 327f6a34bbe..93874a794af 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/bn/helpcontent2/source/text/swriter.po b/source/bn/helpcontent2/source/text/swriter.po
index 651c362ad29..54d593faa4e 100644
--- a/source/bn/helpcontent2/source/text/swriter.po
+++ b/source/bn/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 03:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">রূপরেখা ক্রমায়ন</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/00.po b/source/bn/helpcontent2/source/text/swriter/00.po
index 511f0c98eeb..ea880b3c02f 100644
--- a/source/bn/helpcontent2/source/text/swriter/00.po
+++ b/source/bn/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 03:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>টুল - রূপরেখা সংখ্যায়ন</emph>নির্বাচন করুন</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>টুল - রূপরেখা সংখ্যায়ন - সংখ্যায়ন</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>টুল - লাইন সংখ্যায়ন</emph> (HTML বিন্যাসের জন্য) নির্বাচন করুন</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/01.po b/source/bn/helpcontent2/source/text/swriter/01.po
index 97e736ab952..6e8e0979707 100644
--- a/source/bn/helpcontent2/source/text/swriter/01.po
+++ b/source/bn/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 17:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">ন্যাভিগেটর উইন্ডোতে শুধু উচ্চ পর্যায়ের শিরোনাম দেখতে <emph>1 </emph> ক্লিক করুন এবং সব শিরোনাম দেখতে <emph>10</emph> ক্লিক করুন।</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "সীমারেখা সংখ্যায়ন"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "সীমারেখা সংখ্যায়ন"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "বহি:রেখা সংখ্যায়ন অনুচ্ছেদ শৈলীর সাথে সংযোগকৃত। পূর্বনির্ধারণক্রমে, \"শিরোনাম\" অনুচ্ছেদ শৈলী (১-১০) সংশ্লিষ্ট বহি:রেখা সংখ্যা স্তর (১-১০) তে বরাদ্দ করা হবে। যদি আপনি চান, আপনি বহি:রেখা সংখ্যা স্তরের জন্য ভিন্ন্য অনুচ্ছেদ শৈলী বরাদ্দ করতে পারেন।"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "যদি আপনি সংখ্যায়িত শিরোনাম চান, অনুচ্ছেদ শৈলীতে সংখ্যায়ন বরাদ্দ করতে <emph>টুল - বহি:রেখা সংখ্যায়ন </emph> তালিকা কমান্ড ব্যবহার করুন। বিন্যাস টুলবারে সংখ্যায়ন আইকন ব্যবহার করবেন না।"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "বহি:রেখা সংখ্যার স্ক্রীন প্রদর্শন করতে,<emph>দর্শন -</emph><emph>ক্ষেত্র ছায়াকরণ</emph> নির্বাচন করুন।"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">একটি বহি:রেখা সংখ্যা বিন্যাস সংরক্ষণ অথবা লোড করুন। একটি সংরক্ষিত বহি:রেখা বিন্যাস সব পাঠ্য নথিতে বিদ্যমান।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>বিন্যাস</emph>বোতামটি কেবল বহি:রেখা ক্রমিকায়নের জন্য বিদ্যমান। সংখ্যায়িত অথবা বুলেটকৃত তালিকা শৈলীর জন্য, অনুচ্ছেদের সংখ্যায়ন শৈলী পরিবর্তন করুন।"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">একটি ডায়ালগ খুলুন যেখানে আপনি নির্বাচিত বহি:রেখা স্তরের বর্তমান বিন্যাস সংরক্ষণ করতে পারবেন। আপনি এরপর অন্য নথি থেকে এই বিন্যাস লোড করতে পারবেন।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">বহই:রেকা স্তরে ক্লিক করুন যা আপনি পরিবর্তন করতে চান, এবং এরপর স্তরের জন্য সংখ্যায়ন পছন্দ সুনির্দিষ্ট ভাবে উল্লেখ করুন।</ahelp>অণুচ্ছেদ শৈলী ব্যতীত, সব স্তরে, সংখ্যায়ন পছন্দ প্রয়োগ করতে, \"১-১০\" এ ক্লিক করুন।"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">অনুচ্ছেদ শৈলী নির্বাচন করুন যা আপনি নির্বাচিত বহি:রেকা স্তরে বরাদ্দ করতে চান।</ahelp> যদি আপনি \"একটিও না\" তে ক্লিক করেন, তবে নির্বাচিত বহি:রেখা স্তর নির্ধারণ করা হয়নি।"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "নতুন ঠিকানা ব্লক"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "নতুন ঠিকানা ব্লক"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "ঠিকানার উপাদান"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "ক্ষেত্রের নিচে ঠিকানা উপাদান টানুন"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index cda8e55ff68..78772c8dac5 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 17:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "ন্যাভিগেটর ব্যবহার করে"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "রূপরেখা সংখ্যায়ন"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">রূপরেখা সংখ্যায়ন</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "একটি পছন্দসই অনুচ্ছেদ শৈলীর জন্য আপনি শিরোনাম ক্রমোচ্চ শ্রেণীবিভাগ পরিবর্তন করতে অথবা ক্রমোচ্চ শ্রেণীবিভাগে একটি স্তর বরাদ্দ করতে পারবেন। আপনি শিরোনাম অনুচ্ছেদ শৈলীতে অধ্যায় এবং শাখা সংখ্যায়নও যুক্ত করতে পারবেন। পূর্ব নির্ধারণক্রমে, \"শিরোনাম ১\" অনুচ্ছেদ শৈলী বহি:রেখা ক্রমোচ্চ শ্রেণীবিভাগের শীর্ষে থাকে।"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">টুল - রূপরেখা সংখ্যায়ন</item>, অতঃপর <item type=\"menuitem\">সংখ্যায়ন</item> ট্যাবে ক্লিক করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "একটি শিরোনাম অনুচ্ছেদ হতে স্বয়ংক্রিয় রূপরেখা সংখ্যায়ন সরিয়ে ফেলতে"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">টুল - রূপরেখা সংখ্যায়ন</item>, অতঃপর <item type=\"menuitem\">সংখ্যায়ন</item> ট্যাবে ক্লিক করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "একটি শীর্ষচরণ অথবা পাদটীকায় অধ্যায় তথ্য সন্নিবেশ করানোর আগে, আপনাকে প্রথমে অবশ্যই অনুচ্ছেদ শৈলীর জন্য বহি:রেখা সংখ্যায়ন নির্ধারণ করতে হবে যা আপনি অধ্যায় শিরোনামের জন্য ব্যবহার করতে চান।"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>টুল - বহি:রেখা সংখ্যায়ন</emph>পছন্দ করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>সন্নিবেশ করান - সূচী এবং সারণি - ভুক্তি</emph>পছন্দ করুন, এবং নিম্নের যেকোনো একটি করুন"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>টুল - বহি:রেখা সংখ্যায়ন পছন্দ করুন</emph> এবং <emph>সংখ্যায়ন</emph> ট্যাব এ ক্লিক করুন।"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the (<item type=\"menuitem\">...</item>) button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "যদি আপনি সংখ্যায়িত শিরোনাম চান, একটি অনুচ্ছেদ শৈলীতে সংখ্যায়ন নিযুক্ত করতে <emph>টুল - রূপরেখা সংখ্যায়ন</emph> মেনু কমান্ড ব্যবহার করুন। বিন্যাস বারে সংখ্যায়ন আইকন ব্যবহার করবেন না।"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
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 46603fcf67a..e778e1602d7 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -627,8 +627,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "থীম বাছাই করা"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4086,6 +4086,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27035,15 +27152,6 @@ msgid "~Properties..."
msgstr "বৈশিষ্ট্য..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/bn/sc/source/ui/src.po b/source/bn/sc/source/ui/src.po
index 0be4b84561d..c0a2279c1e2 100644
--- a/source/bn/sc/source/ui/src.po
+++ b/source/bn/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:28+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2715,7 +2715,7 @@ msgstr "পরিসর #1 থেকে #2 এ সরানো হয়েছ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2883,7 +2883,7 @@ msgstr "নেস্টেড অ্যারেসমূহ সমর্থি
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/bn/sfx2/source/view.po b/source/bn/sfx2/source/view.po
index 14e21f8199a..684c5b19e37 100644
--- a/source/bn/sfx2/source/view.po
+++ b/source/bn/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/bn/svtools/source/control.po b/source/bn/svtools/source/control.po
index b142cd69522..346080a22b2 100644
--- a/source/bn/svtools/source/control.po
+++ b/source/bn/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 22:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
@@ -292,6 +292,110 @@ msgstr "কালো তির্যক"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/bn/svtools/source/misc.po b/source/bn/svtools/source/misc.po
index ccf278645c4..bc233ff6d04 100644
--- a/source/bn/svtools/source/misc.po
+++ b/source/bn/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-12 08:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
@@ -3186,10 +3186,10 @@ msgstr "বিকওয়েল"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "কিটুবা"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3917,6 +3917,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/bn/sw/source/core/undo.po b/source/bn/sw/source/core/undo.po
index 6f1506c437f..976439d155a 100644
--- a/source/bn/sw/source/core/undo.po
+++ b/source/bn/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 09:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "কলাম বিভাজক"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 সন্নিবেশ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 মুছে ফেলুন"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "বৈশিষ্ট্য পরিবর্তিত"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "সারণি পরিবর্তিত"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "শৈলী পরিবর্তিত"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/bn/sw/source/uibase/docvw.po b/source/bn/sw/source/uibase/docvw.po
index 69499eacb4f..2172f58f51c 100644
--- a/source/bn/sw/source/uibase/docvw.po
+++ b/source/bn/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/bn/sw/source/uibase/ribbar.po b/source/bn/sw/source/uibase/ribbar.po
index 497c601accb..58d6f440921 100644
--- a/source/bn/sw/source/uibase/ribbar.po
+++ b/source/bn/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 09:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/bn/sw/source/uibase/uiview.po b/source/bn/sw/source/uibase/uiview.po
index 14b0f63f8a8..d3b70a56d26 100644
--- a/source/bn/sw/source/uibase/uiview.po
+++ b/source/bn/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/bn/xmlsecurity/uiconfig/ui.po b/source/bn/xmlsecurity/uiconfig/ui.po
index f529b1320fd..56e836714bc 100644
--- a/source/bn/xmlsecurity/uiconfig/ui.po
+++ b/source/bn/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/bo/desktop/source/deployment/gui.po b/source/bo/desktop/source/deployment/gui.po
index ff636c585ba..0e6757c6707 100644
--- a/source/bo/desktop/source/deployment/gui.po
+++ b/source/bo/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:06+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-25 15:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651982.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1440517958.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr "ཁྱེད་ཀྱིས་\\'%NAME\\'སྒྲིག་སྦྱོ
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgid ""
msgstr ""
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared.po b/source/bo/helpcontent2/source/text/sbasic/shared.po
index 87aed35a404..9fa4fa9c679 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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">ནོར་བའི་ཚབ་ཨང་</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index 468ec0c9fd2..2e6f2ceda13 100644
--- a/source/bo/helpcontent2/source/text/shared/00.po
+++ b/source/bo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index f74ff26b430..d1908a59e32 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index bf19df58024..7fe34785bb8 100644
--- a/source/bo/helpcontent2/source/text/shared/optionen.po
+++ b/source/bo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 16:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/bo/helpcontent2/source/text/swriter.po b/source/bo/helpcontent2/source/text/swriter.po
index 3b01ca5e62e..af7367941af 100644
--- a/source/bo/helpcontent2/source/text/swriter.po
+++ b/source/bo/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 03:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"ལེ་ཚན་ཨང་སྒྲིག་\">ལེ་ཚན་ཨང་སྒྲིག་</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/00.po b/source/bo/helpcontent2/source/text/swriter/00.po
index 3f7a363a6c8..1555784140e 100644
--- a/source/bo/helpcontent2/source/text/swriter/00.po
+++ b/source/bo/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 03:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">ཚལ་ཐོ་:<emph>[ཡོ་བྱད་] - [ལེ་ཚན་ཨང་འགོད...]</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">ཚལ་ཐོ་:<emph>[ཡོ་བྱད་] - [ ལེ་ཚན་ཨང་འགོད་...] - \"ཨང་འགོད་\"</emph>འདེམས་གཞི་ཁ་</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">ཚལ་ཐོ་:<emph>[ཡོ་བྱད་] - [ཕྲེང་ཨང་འགོད་...]</emph></variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/01.po b/source/bo/helpcontent2/source/text/swriter/01.po
index 5329e551ba0..a7499362738 100644
--- a/source/bo/helpcontent2/source/text/swriter/01.po
+++ b/source/bo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 17:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\"> <emph>1</emph> རྐྱང་རྡེབ་\"ལག་རོགས་\"སྒེའུ་ཁུང་ནང་རིམ་པ་དང་པོའི་ཁ་བྱང་ལ་ལྟ་ཞིབ་བྱེད་པ་དང་ <emph>10</emph> ལྟ་ཞིབ་ཕྱོགས་པའི་ཁ་བྱང་ཡོད་ཚད་ལ་རྐྱང་རྡེབ་བྱེད།</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "གལ་ཏེ་\"ལེའུ་\"ཁོངས་ལ་\"ལེ་ཚན་ཨང་བྲིས་བར་གཅོད་རྟགས་མེད་པ་\" འདེམས་ན་ ཚལ་ཐོ་<link href=\"text/swriter/01/06060000.xhp\" name=\"ཡོ་བྱད་ - ལེ་ཚན་ཨང་བྲིས་\"><emph>[ཡོ་བྱད་] - [ལེ་ཚན་ཨང་བྲིས་...]</emph></link> བརྒྱུད་བཀོད་སྒྲིག་ཀྱི་བར་གཅོད་རྟགས་མངོན་མི་ཐུབ།"
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">ལེ་ཚན་ཁ་བྱང་ཆ་ཚང་བསྒརའཛུད་བྱེད་དགོས་པ་ ལེ་ཚན་ཨང་བྲིས་ཚུད་པ་(གལ་ཏེ་ཡོད་ན་) ཁ་བྱང་བཟོ་ལྟ་ལེ་ཚན་ཨང་བྲིས་གཏན་འཁེལ་བྱེད་ <emph>ཡོ་བྱད་ - རིམ་མང་རྟགས་</emph>འདེམས་དགོས།</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "ལེ་ཚན་ཨང་འགོད།"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "ལེ་ཚན་ཨང་འགོད།"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "ལེ་ཚན་ཨང་འགོད་དང་དུམ་མཚམས་རྣམ་པ་འབྲེལ་བ་ཡོད། ཁས་ལེན་པའི་གནས་ཚུལ་འོག་དུམ་མཚམས་བཟོ་ལྟའི་ཁ་བྱང་(1-10)དེ་དེ་དང་མཐུན་པའི་ལེ་ཚན་ཨང་འགོད་རིམ་པར་གཏན་འཁེལ་(1-10)"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "མངོན་གསལ་དོད་པོས་ལེ་ཚན་ཨང་འགོད་མངོན་པ་དགོས་ན་<emph>[མཐོང་སྒྲོམ་] - [མངོན་སའི་རྒྱབ་ལྗོངས་]</emph>"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">ཉར་ཚགས་གམ་ལེ་ཚན་ཨང་འགོད་རྣམ་བཞག་ཁུར་སྣོན་ཉར་ཚག་བྱས་ཟིན་ལེ་ཚན་གྱི་ཨང་འགོད་རྣམ་བཞག་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ཚང་མར་སྤྱད་ཆོག་</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>\"རྣམ་བཞག་\"</emph>གནོན་མཐེབ་ལེ་ཚན་ཨང་འགོད་ཁོ་ནར་སྤྱོད་ཨང་འགོད་དམ་རྣམ་གྲངས་རྟགས་ཀྱི་རིའུ་འགོད་བཟོ་ལྟ་བཀོད་སྒྲིག་བྱས་ན་དུམ་མཚམས་ཨང་འགོད་བཟོ་ལྟ་བཟོ་བཅོས་བྱ་དགོས།"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">གླེང་སྒྲོམ་གཅིག་ཁ་ཕྱེ་དེའི་ནང་འདེམས་ངེས་ཨང་འགོད་རིམ་པའི་མིག་སྔའི་བཀོད་སྒྲིག་ཉར་ཚགས་བྱས་ཆོག་ དེ་རྗེས་ཡིག་ཚགས་གཞན་ནས་བཀོད་སྒྲིག་དེ་དག་ཁུར་སྣོན་བྱས་ཆོག་</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">བཟོ་བཅོས་བྱེད་དགོད་པའི་རྩ་འཛིན་རིམ་པ་རྐྱང་རྡེབ་རྗེས་རིམ་པ་འདིའི་ཡང་འགོད་འདེམས་གཞི་གཏན་འཁེལ་བྱ་</ahelp>དུམ་མཚམས་བཟོ་ལྟ་ཕུད་པའི་ཡང་འགོད་འདེམས་གཞི་མ་གཏོགས་རིམ་པ་ཚང་མར་སྤྱོད་སྐབས་\"1-10\"རྐྱང་རྡེབ་བྱ།"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">འདེམས་ངེས་རྩ་འཛིན་རིམ་པའི་དུམ་མཚམས་བཟོ་ལྟ་འདེམས་དགོས་</ahelp>གལ་ཏེ་\"མེད་\"རྐྱང་རྡེབ་བྱས་ན་འདེམས་ངེས་རྩ་འཛིན་རིམ་པར་མཚན་མི་འཇོག"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "གནས་ཡུལ་ལིང་གསར་བཟོ།"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "གནས་ཡུལ་ལིང་གསར་བཟོ།"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "གནའ་ཡུལ་གཞི་རྒྱུ།"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "གནས་ཡུལ་གཞི་རྒྱུ་འོན་ཕྱོགས་ཀྱི་ཡིག་དུམ་ནང་དུ་འདྲུད་དགོས།"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index cb4e4bda6f2..cbf22f7fa04 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 17:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "ལག་རོགས་སྤྱད་དེ་ཡིག་ཚགས་ནང་ཁ་བྱང་འོག་རིམ་ཡི་གེ་སྟེང་འོག་ཏུ་སྤོ་འགུལ་བྱ་ཆོག་ ཁ་བྱང་གི་རིམ་པ་འཕར་བའམ་ཆག་ཆོག་ བྱེད་ནུས་འདི་སྤྱོད་ན་ཁྱེད་ཀྱིས་སྔོན་ལ་སྔོན་བཀོད་ཀྱི་ཁ་བྱང་དུམ་བུའི་བཟོ་ལྟའི་རྣམ་གཞག་ཅན་གྱི་ཡིག་ཚགས་ནང་གི་ཁ་བྱང་སྤྱོད། ཁ་བྱང་ལ་རང་མཚན་འཇོག་གི་དུམ་བུའི་བཟོ་ལྟ་སྤྱོད་ན་ ཁྱེད་ཀྱིས་<emph>ཡོ་བྱད་ - ཚོན་རྟགས་རིགས་མང་པོ་</emph>འདེམས་དགོས། <emph>དུམ་མཚམས་བཟོ་ལྟའི་</emph>སྒྲོམ་ནང་བཟོ་ལྟ་བདམས་རྗེས་<emph>རིམ་པ་</emph>རེའུ་འགོད་ནང་གི་གྲངས་ཀར་རྐྱང་རྡེབ་བྱ།"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "རིམ་མང་མཚོན་རྟགས་"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,16 +2917,16 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"རིམ་མང་མཚོན་རྟགས་\">རིམ་མང་མཚོན་རྟགས་</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "ཁྱེད་ཀྱིས་ཁ་བྱང་གི་བང་རིམ་སྒྲིག་གཞི་བཟོ་བཅོས་བྱ་ཆོག་ ཡང་ན་བང་རིམ་སྒྲིག་གཞི་ནང་གི་རིམ་པ་ནི་རང་མཚན་འཇོག་གི་དུམ་བུའི་བཟོ་ལྟར་གཏན་འཁེལ་བྱ། ཡང་ལེའུ་དང་ས་བཅད་ཨང་སྒྲིག་ཁ་བྱང་དུམ་བུའི་བཟོ་ལྟའི་ནང་གསབ་སྣོན་བྱ། ཁས་ལེན་གནས་ཚུལ་འོག་ \"ཁ་བྱང་ 1\"དུམ་བུའི་བཟོ་ལྟ་རྩ་འཛིན་སྒྲིག་གཞིའི་རྩེ་ཁུམ་དུ་གནས་པར་བྱེད།"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "ཁ་བྱང་དུམ་བུའི་ནང་རང་འགུལ་རྩ་འཛིན་ཨང་སྒྲིག་སུབ་པ་"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "ལེའུ་ས་བཅད་ཀྱི་ཆ་འཕྲིན་ནི་ཤོག་ངོས་སམ་ཤོག་ཞབས་ཀྱི་མདུན་དུ་བསྒར་འཛུད་བྱེད་ ངེས་པར་དུ་ལེའུ་ས་བཅད་ཀྱིས་སྤྱད་པའི་དུམ་བུའི་བཟོ་ལྟ་ཡི་རིམ་མང་མཚོན་རྟགས་འདེམས་གཞི་བཀོད་སྒྲིག་བྱེད།"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>ཡོ་བྱད་ - རིམ་མང་མཚོན་རྟགས་</emph>འདེམས།"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>བཤེར་འདྲེན་; གཤར་བྱང་མཚན་འཇོག་</bookmark_value><bookmark_value>དཀར་ཆག་; གཤར་བྱང་མཚན་འཇོག་</bookmark_value><bookmark_value>གཤར་བྱང་; བཤེར་འདྲེན་/དཀར་ཆག་ལ་མཚན་འཇོག་བྱེད།</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>[བསྒར་འཛུད་] - [དཀར་ཆག་] - [གཤར་བྱང་...]</emph>འདེམས་པ་མ་ཟད་ གཤམ་གྱི་བཀོལ་སྤྱོད་ཅིག་ལག་བསྟར་བྱེད།"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>ཡོ་བྱད་ - རིམ་མང་མཚོན་རྟགས་</emph>བདམས་རྗེས་<emph>ཨང་སྒྲིག་</emph>འདེམས་གཞིའི་ཁྭ་ལ་རྐྱང་རྡེབ་བྱེད།"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>ཨང་སྒྲིག་; སུབ་པ་/བར་ཆད་</bookmark_value><bookmark_value>རྣམ་གྲངས་མཚོན་རྟགས་རེའུ་འགོད་; བར་ཆད་</bookmark_value><bookmark_value>རེའུ་འགོད་; སུབ་པ་/བར་ཆད་</bookmark_value><bookmark_value>སུབ་པ་; རེའུ་འགོད་ནང་གི་ཨང་སྒྲིག་</bookmark_value><bookmark_value>ཨང་སྒྲིག་རེའུ་འགོད་བར་ཆད་</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
index 327fdc69ea2..3c4678eae4a 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ཉམས་འགྱུར་འདེམས་པ།"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4093,6 +4093,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27046,15 +27163,6 @@ msgid "~Properties..."
msgstr "གཏོགས་གཤིས།..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/bo/sc/source/ui/src.po b/source/bo/sc/source/ui/src.po
index ff9370f50e9..da7b589f322 100644
--- a/source/bo/sc/source/ui/src.po
+++ b/source/bo/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "ས་ཁོངས་ #1 ནས་ #2ལ་སྤོ་སྒུལ།"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2884,7 +2884,7 @@ msgstr "གྲངས་ཚོ་བསྒར་འཛུད་བྱེད་མ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/bo/sfx2/source/view.po b/source/bo/sfx2/source/view.po
index 672b2d9407a..786cf8960e5 100644
--- a/source/bo/sfx2/source/view.po
+++ b/source/bo/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -250,6 +250,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/bo/svtools/source/control.po b/source/bo/svtools/source/control.po
index cd2e1b35987..dfb8d0c9029 100644
--- a/source/bo/svtools/source/control.po
+++ b/source/bo/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 22:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "ཡིག་ནག་འཁྱོག་པོ།"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/bo/svtools/source/misc.po b/source/bo/svtools/source/misc.po
index debd45a6e47..c79b10adb83 100644
--- a/source/bo/svtools/source/misc.po
+++ b/source/bo/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-12 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3193,9 +3193,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3923,6 +3923,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/bo/sw/source/core/undo.po b/source/bo/sw/source/core/undo.po
index db802e4223e..3203dd769d1 100644
--- a/source/bo/sw/source/core/undo.po
+++ b/source/bo/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 10:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -896,42 +896,82 @@ msgstr "ཚན་བྱང་དབྱེ་རྟགས།"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1བར་འཇུག"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 སུབ་རྒྱུ།"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "གཏོགས་གཤིས་ལ་བཟོ་བཅོས་བརྒྱབ་ཟིན།"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "རེའུ་མིག་བཟོ་བཅོས་བྱས་ཟིན།"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "བཟོ་དབྱིབས་བཟོ་བཅོས་བརྒྱབ་ཟིན་པ།"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/bo/sw/source/uibase/docvw.po b/source/bo/sw/source/uibase/docvw.po
index 7595d0fb2d4..2c80b63cd29 100644
--- a/source/bo/sw/source/uibase/docvw.po
+++ b/source/bo/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 15:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/bo/sw/source/uibase/ribbar.po b/source/bo/sw/source/uibase/ribbar.po
index 23cf05c947e..6dada943687 100644
--- a/source/bo/sw/source/uibase/ribbar.po
+++ b/source/bo/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 10:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/bo/sw/source/uibase/uiview.po b/source/bo/sw/source/uibase/uiview.po
index 147902937d5..88499c0b70b 100644
--- a/source/bo/sw/source/uibase/uiview.po
+++ b/source/bo/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 15:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/bo/xmlsecurity/uiconfig/ui.po b/source/bo/xmlsecurity/uiconfig/ui.po
index 71fa7c76442..4c1fadf8c71 100644
--- a/source/bo/xmlsecurity/uiconfig/ui.po
+++ b/source/bo/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/br/desktop/source/deployment/gui.po b/source/br/desktop/source/deployment/gui.po
index 8bc59f6e83f..2585eb7b10a 100644
--- a/source/br/desktop/source/deployment/gui.po
+++ b/source/br/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:13+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-11-27 20:41+0000\n"
+"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652428.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1417120885.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
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 97023caae83..879b5fd8737 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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Diuz dodenn"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Perzhioù..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Ergorenn..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/br/sc/source/ui/src.po b/source/br/sc/source/ui/src.po
index 82bdfbff385..bb233896cba 100644
--- a/source/br/sc/source/ui/src.po
+++ b/source/br/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Lijorenn dilec'hiet eus #1 da #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "N'eo ket skoret an ogedoù kenweet."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/br/sfx2/source/view.po b/source/br/sfx2/source/view.po
index 078def290ff..92cc5e7da13 100644
--- a/source/br/sfx2/source/view.po
+++ b/source/br/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/br/svtools/source/control.po b/source/br/svtools/source/control.po
index c6e598421ca..8016abfc607 100644
--- a/source/br/svtools/source/control.po
+++ b/source/br/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-18 14:10+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Stouet gourtev"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/br/svtools/source/misc.po b/source/br/svtools/source/misc.po
index 7d9e23a3617..2eda58b030d 100644
--- a/source/br/svtools/source/misc.po
+++ b/source/br/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-12 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/br/sw/source/core/undo.po b/source/br/sw/source/core/undo.po
index 38026d8c4e7..d32494baf7e 100644
--- a/source/br/sw/source/core/undo.po
+++ b/source/br/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 14:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "lamm bann"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Enlakaat $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Dilemel $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Doareennoù daskemmet"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Taolenn daskemmet"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil daskemmet"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/br/sw/source/uibase/docvw.po b/source/br/sw/source/uibase/docvw.po
index 6c73fc894bb..e95fa95bb9f 100644
--- a/source/br/sw/source/uibase/docvw.po
+++ b/source/br/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-25 19:50+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Arloet eo bet ar stiloù rannbennad"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/br/sw/source/uibase/ribbar.po b/source/br/sw/source/uibase/ribbar.po
index 2415557f7ac..14c3fb920c7 100644
--- a/source/br/sw/source/uibase/ribbar.po
+++ b/source/br/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 15:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Testenn ar reollun"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/br/sw/source/uibase/uiview.po b/source/br/sw/source/uibase/uiview.po
index ea91beecd1a..2f5dc38d8a9 100644
--- a/source/br/sw/source/uibase/uiview.po
+++ b/source/br/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-10 19:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Ezporzh an destenn orin..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/br/xmlsecurity/uiconfig/ui.po b/source/br/xmlsecurity/uiconfig/ui.po
index fbfa2ce9962..c0eba9643b0 100644
--- a/source/br/xmlsecurity/uiconfig/ui.po
+++ b/source/br/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-23 10:11+0000\n"
"Last-Translator: Tornoz <tornoz@laposte.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Dilemel"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/brx/desktop/source/deployment/gui.po b/source/brx/desktop/source/deployment/gui.po
index d7f622c04b8..850e241c35d 100644
--- a/source/brx/desktop/source/deployment/gui.po
+++ b/source/brx/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:10+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-05-12 01:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652200.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1431395713.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -169,6 +169,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
index a51c3fe8874..e30b1833ef6 100644
--- a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "आयदाफोर सायख"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4113,6 +4113,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27086,15 +27203,6 @@ msgid "~Properties..."
msgstr "आखुथायफोर..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/brx/sc/source/ui/src.po b/source/brx/sc/source/ui/src.po
index 8c3e9ac9cc8..24464b42c98 100644
--- a/source/brx/sc/source/ui/src.po
+++ b/source/brx/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2714,7 +2714,7 @@ msgstr " #1 निफ्राय #2 सिम सारि लोरिहो
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2881,7 +2881,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/brx/sfx2/source/view.po b/source/brx/sfx2/source/view.po
index 6fa55da7dd2..e79d6275ec7 100644
--- a/source/brx/sfx2/source/view.po
+++ b/source/brx/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -252,6 +252,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/brx/svtools/source/control.po b/source/brx/svtools/source/control.po
index 275375f7e22..c7387354ea0 100644
--- a/source/brx/svtools/source/control.po
+++ b/source/brx/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "गोसोम फारसे खेंख्रा हांखो"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/brx/svtools/source/misc.po b/source/brx/svtools/source/misc.po
index 3e371975218..6cc94be2543 100644
--- a/source/brx/svtools/source/misc.po
+++ b/source/brx/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-12 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3193,9 +3193,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3918,6 +3918,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/brx/sw/source/core/undo.po b/source/brx/sw/source/core/undo.po
index 2b4c9d942be..c197311212d 100644
--- a/source/brx/sw/source/core/undo.po
+++ b/source/brx/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "खाम्फा बायनाय"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 सोसन"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 हुखुमोर"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "गुणफोर सोलायबाय"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "फारिलाइ सोलायबाय"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "आदब सोलायबाय"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/brx/sw/source/uibase/docvw.po b/source/brx/sw/source/uibase/docvw.po
index bce6f0f7e4b..7030dedf4e0 100644
--- a/source/brx/sw/source/uibase/docvw.po
+++ b/source/brx/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/brx/sw/source/uibase/ribbar.po b/source/brx/sw/source/uibase/ribbar.po
index 98d2563d347..94e7974aee7 100644
--- a/source/brx/sw/source/uibase/ribbar.po
+++ b/source/brx/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/brx/sw/source/uibase/uiview.po b/source/brx/sw/source/uibase/uiview.po
index 0bc4529b4bb..62a9bea71b7 100644
--- a/source/brx/sw/source/uibase/uiview.po
+++ b/source/brx/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/brx/xmlsecurity/uiconfig/ui.po b/source/brx/xmlsecurity/uiconfig/ui.po
index 750200e4858..46b98382696 100644
--- a/source/brx/xmlsecurity/uiconfig/ui.po
+++ b/source/brx/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/bs/desktop/source/deployment/gui.po b/source/bs/desktop/source/deployment/gui.po
index ac2ac78a2f2..28b06164a3a 100644
--- a/source/bs/desktop/source/deployment/gui.po
+++ b/source/bs/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:15+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-25 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652532.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1440530338.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -174,6 +174,14 @@ msgstr ""
"Pritisnite 'Otkaži' da zaustavite instalaciju."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -189,6 +197,14 @@ msgstr ""
"Kliknite 'Cancel' da zaustavite otklanjanje produžetka."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/bs/helpcontent2/source/text/sbasic/shared.po b/source/bs/helpcontent2/source/text/sbasic/shared.po
index 47504ad7540..d20f6a5b053 100644
--- a/source/bs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Greške u kodu</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Ova run-time funkcija vraca osnovne komponenete konteksta koji se koristi,preko XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> poglavlje u <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.openoffice.org\">api.openoffice.org</link> fza vise informacija."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index d77e2834710..da604fda9e0 100644
--- a/source/bs/helpcontent2/source/text/shared/00.po
+++ b/source/bs/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 02:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index b472198cda9..8040f96e6ca 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-05 16:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Izaberite stil pasusa ili okvir koji želite da odvojite u pod dokumente.</ahelp> Po defaultu svaki novi dokument je kreiran za svaki okvir nivoa 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 3f324afe39d..b803eb3c5f2 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 16:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/bs/helpcontent2/source/text/swriter.po b/source/bs/helpcontent2/source/text/swriter.po
index ca25f19213d..0c2b0b28378 100644
--- a/source/bs/helpcontent2/source/text/swriter.po
+++ b/source/bs/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 03:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,7 +1053,7 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
msgstr ""
#: main0106.xhp
diff --git a/source/bs/helpcontent2/source/text/swriter/00.po b/source/bs/helpcontent2/source/text/swriter/00.po
index 7abde92d52b..89c5688da36 100644
--- a/source/bs/helpcontent2/source/text/swriter/00.po
+++ b/source/bs/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 03:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,23 +2253,23 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numerisanje - Numerisanje</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numerisanje - Numerisanje</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/bs/helpcontent2/source/text/swriter/01.po b/source/bs/helpcontent2/source/text/swriter/01.po
index 6445e0b6f47..9aba7a147bc 100644
--- a/source/bs/helpcontent2/source/text/swriter/01.po
+++ b/source/bs/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1</emph> to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Ako odaberete \"Broj poglavlja bez odvajaèa\" za polje poglavlja, odvajaèi koji su dodijeljeni za broj poglavlja u <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Pomagala - Numeracija poglavlja</emph></link> neæe biti prikazani."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numerisanje"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numerisanje"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Odabir adresne liste"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Odabir adresne liste"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index 23c075fd237..ac3e7a954e8 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 17:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: chapter_numbering.xhp
@@ -2909,7 +2909,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Izaberite <emph> Format - Stilovi i formatiranje</emph>, a zatim kliknite <emph> Stranica Stilovi</emph> ikonu."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Izaberite <emph> Format - Stilovi i formatiranje</emph>, a zatim kliknite <emph> Stranica Stilovi</emph> ikonu."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
index cf3de03f67b..ce9da6911db 100644
--- a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 12:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Izaberite teme"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26997,15 +27114,6 @@ msgid "~Properties..."
msgstr "Osobine..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/bs/sc/source/ui/src.po b/source/bs/sc/source/ui/src.po
index 9601b1bb104..be34eb1141e 100644
--- a/source/bs/sc/source/ui/src.po
+++ b/source/bs/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 12:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2703,7 +2703,7 @@ msgstr "Područje je pomjereno iz #1 na #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "Ugnježđeni nizovi nisu podržani."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/bs/sfx2/source/view.po b/source/bs/sfx2/source/view.po
index 09f3316d95c..e93c8ee6fc3 100644
--- a/source/bs/sfx2/source/view.po
+++ b/source/bs/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/bs/svtools/source/control.po b/source/bs/svtools/source/control.po
index 088399484ed..05f4f913ab1 100644
--- a/source/bs/svtools/source/control.po
+++ b/source/bs/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Crna kurziv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/bs/svtools/source/misc.po b/source/bs/svtools/source/misc.po
index b188fb35dc5..91ff1df9939 100644
--- a/source/bs/svtools/source/misc.po
+++ b/source/bs/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-12 22:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3181,10 +3181,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bs/sw/source/core/undo.po b/source/bs/sw/source/core/undo.po
index 66d9485d235..62800674a93 100644
--- a/source/bs/sw/source/core/undo.po
+++ b/source/bs/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-13 00:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "prijelom kolone"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Ubaci $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Obriši $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Svojstva su promijenjena"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabela promijenjena"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil je promijenjen"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/bs/sw/source/uibase/docvw.po b/source/bs/sw/source/uibase/docvw.po
index 088c94387bd..f26990a7d3c 100644
--- a/source/bs/sw/source/uibase/docvw.po
+++ b/source/bs/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 16:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/bs/sw/source/uibase/ribbar.po b/source/bs/sw/source/uibase/ribbar.po
index f2d950f587f..4e720f5d813 100644
--- a/source/bs/sw/source/uibase/ribbar.po
+++ b/source/bs/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-13 00:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/bs/sw/source/uibase/uiview.po b/source/bs/sw/source/uibase/uiview.po
index 5934d801c62..bc526f9853b 100644
--- a/source/bs/sw/source/uibase/uiview.po
+++ b/source/bs/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 16:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/bs/xmlsecurity/uiconfig/ui.po b/source/bs/xmlsecurity/uiconfig/ui.po
index ae3fbb14b6b..eb4802313aa 100644
--- a/source/bs/xmlsecurity/uiconfig/ui.po
+++ b/source/bs/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -174,6 +174,15 @@ msgstr "Ukloni"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ca-valencia/desktop/source/deployment/gui.po b/source/ca-valencia/desktop/source/deployment/gui.po
index b42d66d1afb..c543cc5528a 100644
--- a/source/ca-valencia/desktop/source/deployment/gui.po
+++ b/source/ca-valencia/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:23+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-04-29 07:12+0000\n"
+"Last-Translator: Pau Iranzo <paugnu@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467653016.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1461913935.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
index 873b2abfe9a..e283af17250 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-22 16:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -484,10 +484,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Codis d'error</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33041,6 +33073,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Esta funció d'execució torna el context per defecte del component que cal utilitzar, si s'instancien els serveis via XmultiServiceFactory. Vegeu el capítol <item type=\"literal\">Professional UNO</item> al document <item type=\"literal\">Developer's Guide</item> (en anglés) a <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> per obtindre més informació."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/00.po b/source/ca-valencia/helpcontent2/source/text/shared/00.po
index 535f092dcfa..139dd5989ff 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-23 14:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9726,7 +9726,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9750,7 +9750,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index d9a367e3298..06098e55db1 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-05 20:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Seleccioneu l'estil de paràgraf o nivell d'esquema que voleu utilitzar per separar el document fon en subdocuments.</ahelp> Per defecte, es crea un document nou per a cada nivell d'esquema 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40470,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Activeu esta opció per exportar els marcadors del Writer com a marcadors PDF. Els marcadors es crearan per a tots els paràgrafs d'un esquema (Eines - Numeració d'esquemes) i per a totes les entrades d'una taula de continguts a les quals hàgeu assignat enllaços en el document font.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index 02bd0d78e5d..ffd4af8a12d 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 20:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2302,7 +2310,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter.po b/source/ca-valencia/helpcontent2/source/text/swriter.po
index 143e7138f1d..b3c88dc77df 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 06:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1054,8 +1054,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeració d'esquemes\">Numeració d'esquemes</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/00.po b/source/ca-valencia/helpcontent2/source/text/swriter/00.po
index c2ae2dbc436..e3c6943781c 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 06:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2254,24 +2254,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Trieu <emph>Eines - Numeració d'esquemes</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Trieu la pestanya <emph>Eines - Numeració d'esquemes - Numeració</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Trieu <emph>Eines - Numeració de línies</emph> (menys per al format HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/01.po b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
index 0db2a22eae2..dc0f9578919 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 21:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Feu clic a l'<emph>1</emph> per visualitzar només els encapçalaments dels nivells superiors a la finestra Navegador, i al <emph>10</emph> per visualitzar tots els encapçalaments.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Si trieu \"Número de capítol sense separador\" per a un camp del capítol, els separadors que s'especifiquen per a un número de capítol a <link href=\"text/swriter/01/06060000.xhp\" name=\"Eines - Numeració del capítol\"><emph>Eines - Numeració del capítol</emph></link> no es mostren."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Insereix el número de capítol. Per assignar una numeració de capítol a un estil d'encapçalament, trieu <emph>Eines - Numeració d'esquemes</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeració d'esquemes"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeració d'esquemes"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "La numeració d'esquema està enllaçada amb els estils de paràgraf. Per defecte, els estils de paràgraf d'\"Encapçalament\" de l'(1-10) estan assignats als nombres de nivell d'esquema corresponents. Si ho voleu, podeu assignar estils de paràgraf diferents al nivell de nombre d'esquema."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Si voleu encapçalaments numerats, utilitzeu l'orde del menú <emph>Eines - Numeració d'esquemes</emph> per assignar una numeració a un estil de paràgraf. No utilitzeu la icona Numeració de la barra d'eines Formatació."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Per realçar la visualització en pantalla dels nombres d'esquema, trieu <emph>Visualitza -</emph> <emph>Ombreigs dels camps</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Guarda o carrega un format numèric d'esquema. Hi ha un format numèric d'esquema disponible guardat per a tots els documents de text.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "El botó <emph>Format</emph> només està disponible per a la numeració d'esquemes. Per als estils de la llista de numeració o amb pics, modifiqueu els estils de numeració dels paràgrafs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Obri un diàleg on podeu guardar els paràmetres actuals per al nivell d'esquema seleccionat. A continuació, podreu carregar estos paràmetres des d'un altre document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Feu clic en el nivell d'esquema que voleu modificar i, a continuació, especifiqueu les opcions de numeració per al nivell.</ahelp> Per aplicar les opcions de numeració a tots els nivells, excepte a l'estil de paràgraf, feu clic a \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Seleccioneu l'estil de paràgraf que voleu assignar al nivell d'esquema seleccionat.</ahelp> Si feu clic a \"Cap\", el nivell d'esquema seleccionat no es defineix."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bloc d'adreça nou"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bloc d'adreça nou"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elements de l'adreça"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arrossegueu els elements de l'adreça al camp de sota"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index 61992399c52..7eb1b542bbf 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 21:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Podeu moure els encapçalaments i subordinar el text cap amunt i cap avall en un document mitjançant el Navegador. També podeu pujar i baixar de categoria els nivells dels encapçalaments. Per utilitzar esta característica, formateu els encapçalaments del document amb un dels estils de paràgraf d'encapçalament predefinits. Per utilitzar un estil de paràgraf personalitzat per a un encapçalament, trieu <emph>Eines - Numeració d'esquemes</emph>, seleccioneu l'estil en el quadre <emph>Estil de paràgraf</emph> i feu doble clic a un nombre de la llista <emph>Nivells</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2902,32 +2902,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeració d'esquemes"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>esquemes;numeració</bookmark_value><bookmark_value>supressió; números d'encapçalament</bookmark_value><bookmark_value>numeració de capítols</bookmark_value><bookmark_value>encapçalaments; numeració/estils de paràgraf</bookmark_value><bookmark_value>numeració;encapçalaments</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeració d'esquemes\">Numeració d'esquemes</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Podeu modificar la jerarquia dels encapçalaments o assignar un nivell en la jerarquia a un estil de paràgraf personalitzat. També podeu afegir numeració de capítols i de seccions als estils de paràgraf d'encapçalament. Per defecte, l'estil de paràgraf \"Encapçalament 1\" és el primer de la jerarquia de l'esquema."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2942,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Trieu <item type=\"menuitem\">Eines - Numeració d'esquemes</item> i feu clic a la pestanya <item type=\"menuitem\">Numeració</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2966,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Per suprimir la numeració d'esquema automàtica d'un paràgraf d'encapçalament"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2998,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Trieu <item type=\"menuitem\">Eines - Numeració d'esquemes</item> i feu clic a la pestanya <item type=\"menuitem\">Numeració</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6110,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Abans de poder inserir la informació de capítol en una capçalera o en un peu, heu de definir les opcions de numeració d'esquemes per a l'estil de paràgraf que vulgueu utilitzar per als títols dels capítols."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6126,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Trieu <emph>Eines - Numeració d'esquemes</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7126,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>índexs; definició d'entrades en</bookmark_value> <bookmark_value>taules de continguts; definició d'entrades en</bookmark_value> <bookmark_value>entrades; definició en índexs/taules de continguts</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7158,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Trieu <emph>Insereix - Índexs i taules - Entrada</emph> i realitzeu una de les accions següents:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7214,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Trieu <emph>Eines - Numeració d'esquemes</emph> i feu clic a la pestanya <emph>Numeració</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7838,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Si voleu utilitzar un estil de paràgraf diferent com a entrada de la taula de continguts, activeu la casella de selecció <item type=\"menuitem\">Estils addicionals</item> de l'àrea <item type=\"menuitem\">Crea a partir de</item> i, a continuació, feu clic al botó (<item type=\"menuitem\">...</item>) del costat de la casella. En el diàleg <item type=\"menuitem\">Assigna estils</item>, feu clic a l'estil de la llista i, a continuació, feu clic als botons <item type=\"menuitem\">>></item> o <item type=\"menuitem\"><<</item> per definir el nivell d'esquema per a l'estil de paràgraf."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9486,8 +9486,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numeració; supressió/interrupció</bookmark_value><bookmark_value>llistes amb pics; interrupció</bookmark_value><bookmark_value>llistes;supressió/interrupció de la numeració</bookmark_value><bookmark_value>supressió;números en llistes</bookmark_value><bookmark_value>interrupció de llistes numerades</bookmark_value><bookmark_value>canvi;números inicials en llistes</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9510,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Si voleu numerar encapçalaments, utilitzeu l'orde de menú <emph>Eines - Numeració d'esquemes</emph> per assignar una numeració a un estil de paràgraf. No utilitzeu la icona Numeració de la barra d'eines Formatació."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
index 0c6328c1a05..ca16cbe252c 100644
--- a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -620,8 +620,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Seleccioneu els temes"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4046,6 +4046,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26875,15 +26992,6 @@ msgstr "~Propietats..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objecte..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/ca-valencia/sc/source/ui/src.po b/source/ca-valencia/sc/source/ui/src.po
index 52abc825fef..eaa419be20a 100644
--- a/source/ca-valencia/sc/source/ui/src.po
+++ b/source/ca-valencia/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 13:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "L'interval s'ha mogut de #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "No es permet l'ús de vectors imbricats."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ca-valencia/sfx2/source/view.po b/source/ca-valencia/sfx2/source/view.po
index 47cc0278293..ef49501ed55 100644
--- a/source/ca-valencia/sfx2/source/view.po
+++ b/source/ca-valencia/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -254,6 +254,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ca-valencia/svtools/source/control.po b/source/ca-valencia/svtools/source/control.po
index ab09bd24571..eb4689e1a7b 100644
--- a/source/ca-valencia/svtools/source/control.po
+++ b/source/ca-valencia/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-04-29 07:17+0000\n"
"Last-Translator: Pau Iranzo <paugnu@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Negra cursiva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ca-valencia/svtools/source/misc.po b/source/ca-valencia/svtools/source/misc.po
index 03b52c53427..ff167eb7733 100644
--- a/source/ca-valencia/svtools/source/misc.po
+++ b/source/ca-valencia/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-13 02:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3181,10 +3181,10 @@ msgstr "bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3906,6 +3906,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ca-valencia/sw/source/core/undo.po b/source/ca-valencia/sw/source/core/undo.po
index 13b31e21da5..a264a02d1ca 100644
--- a/source/ca-valencia/sw/source/core/undo.po
+++ b/source/ca-valencia/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-13 03:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "salt de columna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Insereix $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Suprimeix $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "S'han canviat els atributs"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "S'ha canviat la taula"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "S'ha canviat l'estil"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ca-valencia/sw/source/uibase/docvw.po b/source/ca-valencia/sw/source/uibase/docvw.po
index f493ca56c5c..7920da35b62 100644
--- a/source/ca-valencia/sw/source/uibase/docvw.po
+++ b/source/ca-valencia/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-01-12 05:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "S'han aplicat els estils de paràgraf"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ca-valencia/sw/source/uibase/ribbar.po b/source/ca-valencia/sw/source/uibase/ribbar.po
index c1baa489225..98f9c24b6a7 100644
--- a/source/ca-valencia/sw/source/uibase/ribbar.po
+++ b/source/ca-valencia/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-13 04:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Text de la fórmula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ca-valencia/sw/source/uibase/uiview.po b/source/ca-valencia/sw/source/uibase/uiview.po
index eae55ec44be..92cea664764 100644
--- a/source/ca-valencia/sw/source/uibase/uiview.po
+++ b/source/ca-valencia/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-04-29 07:19+0000\n"
"Last-Translator: Pau Iranzo <paugnu@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exporta la font..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ca-valencia/xmlsecurity/uiconfig/ui.po b/source/ca-valencia/xmlsecurity/uiconfig/ui.po
index 300bdc7c634..9a4957b32c4 100644
--- a/source/ca-valencia/xmlsecurity/uiconfig/ui.po
+++ b/source/ca-valencia/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Suprimeix"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ca/desktop/source/deployment/gui.po b/source/ca/desktop/source/deployment/gui.po
index c62582b236d..0b26a57e081 100644
--- a/source/ca/desktop/source/deployment/gui.po
+++ b/source/ca/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:19+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-13 09:36+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652749.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1463132168.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ca/filter/source/config/fragments/filters.po b/source/ca/filter/source/config/fragments/filters.po
index 42184bed75a..e4087420a8b 100644
--- a/source/ca/filter/source/config/fragments/filters.po
+++ b/source/ca/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: Libreoffice42\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-19 12:17+0000\n"
+"PO-Revision-Date: 2017-06-09 12:48+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Softcatalà\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492604237.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497012523.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/ca/filter/source/config/fragments/types.po b/source/ca/filter/source/config/fragments/types.po
index a959b707db9..4221a18183b 100644
--- a/source/ca/filter/source/config/fragments/types.po
+++ b/source/ca/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-19 12:17+0000\n"
+"PO-Revision-Date: 2017-06-09 12:48+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492604240.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497012528.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index f1ba69df12d..2cc256f15a3 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 13:19+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -484,10 +484,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Codis d'error</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33041,6 +33073,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Aquesta funció d'execució torna el context per defecte del component que cal utilitzar, si s'instancien els serveis via XmultiServiceFactory. Vegeu el capítol <item type=\"literal\">Professional UNO</item> al document <item type=\"literal\">Developer's Guide</item> (en anglès) a <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> per obtenir més informació."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index bf9304bb670..e2b17d76974 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-15 08:07+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9726,7 +9726,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9750,7 +9750,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 925382ce2f5..ac858dfb341 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-27 11:54+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 06:38+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1493294057.000000\n"
+"X-POOTLE-MTIME: 1498027132.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"par_id3154946\n"
"help.text"
msgid "Creates a new presentation document ($[officename] Impress)."
-msgstr ""
+msgstr "Crea una presentació nova ($[officename] Impress)."
#: 01010000.xhp
msgctxt ""
@@ -407,7 +407,7 @@ msgctxt ""
"par_idN10A15\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea una presentació nova ($[officename] Impress).</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -1847,7 +1847,7 @@ msgctxt ""
"hd_id3154280\n"
"help.text"
msgid "File name"
-msgstr ""
+msgstr "Nom del fitxer"
#: 01020000.xhp
msgctxt ""
@@ -1855,7 +1855,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Introduïu el nom o el camí del fitxer. També podeu introduir un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> que comenci pel nom de protocol ftp, http o https.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1863,7 +1863,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
-msgstr ""
+msgstr "Podeu utilitzar comodins en el quadre <emph>Nom de fitxer</emph> per a filtrar la llista de fitxers que es mostra."
#: 01020000.xhp
msgctxt ""
@@ -1871,7 +1871,7 @@ msgctxt ""
"par_id3153779\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"> </caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Per exemple, per a veure una llista de tots els fitxers de text d'una carpeta, escriviu el comodí asterisc amb l'extensió dels fitxers de text (*.txt) i, tot seguit, feu clic a <emph>Obre</emph>. Feu servir el comodí signe d'interrogació (?) per a representar qualsevol caràcter, com a (??3*.txt), que només mostra fitxers amb un «3» com a tercer caràcter del nom de fitxer.</defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -1879,7 +1879,7 @@ msgctxt ""
"hd_id3145117\n"
"help.text"
msgid "Version"
-msgstr ""
+msgstr "Versió"
#: 01020000.xhp
msgctxt ""
@@ -1887,7 +1887,7 @@ msgctxt ""
"par_id3149291\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEOPEN_VERSION\">Si hi ha diverses versions del fitxer seleccionat, seleccioneu la versió que vulgueu obrir.</ahelp> Podeu desar diferents versions d'un document i gestionar-les triant <emph>Fitxer ▸ Versions</emph>. Les diferents versions d'un document s'obren en mode només de lectura."
#: 01020000.xhp
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "File type"
-msgstr ""
+msgstr "Tipus de fitxer"
#: 01020000.xhp
msgctxt ""
@@ -1903,7 +1903,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Seleccioneu el tipus de fitxer que voleu obrir, o seleccioneu <emph>Tots els fitxers (*)</emph> per a mostrar tots els fitxers de la carpeta.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1911,7 +1911,7 @@ msgctxt ""
"hd_id3154125\n"
"help.text"
msgid "Open"
-msgstr ""
+msgstr "Obre"
#: 01020000.xhp
msgctxt ""
@@ -1919,7 +1919,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Opens the selected document(s).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Obre els documents seleccionats.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1927,7 +1927,7 @@ msgctxt ""
"hd_id3147085\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Insereix"
#: 01020000.xhp
msgctxt ""
@@ -1935,7 +1935,7 @@ msgctxt ""
"par_id3156293\n"
"help.text"
msgid "If you opened the dialog by choosing <emph>Insert - Document</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
-msgstr ""
+msgstr "Si heu obert el diàleg mitjançant <emph>Insereix ▸ Fitxer</emph>, el botó <emph>Obre</emph> es reemplaça pel botó <emph>Insereix</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Insereix el fitxer seleccionat a la posició del cursor en el document actual.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1943,7 +1943,7 @@ msgctxt ""
"hd_id3144762\n"
"help.text"
msgid "Read-only"
-msgstr ""
+msgstr "Només lectura"
#: 01020000.xhp
msgctxt ""
@@ -1951,7 +1951,7 @@ msgctxt ""
"par_id3145785\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Obre el fitxer en mode només de lectura.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1959,7 +1959,7 @@ msgctxt ""
"hd_id3149984\n"
"help.text"
msgid "Play"
-msgstr ""
+msgstr "Reprodueix"
#: 01020000.xhp
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"par_id3147289\n"
"help.text"
msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Reprodueix el fitxer de so seleccionat. Torneu a fer clic per a aturar la reproducció del fitxer de so.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1975,7 +1975,7 @@ msgctxt ""
"hd_id3149260\n"
"help.text"
msgid "Opening Documents With Templates"
-msgstr ""
+msgstr "Obertura de documents amb plantilles"
#: 01020000.xhp
msgctxt ""
@@ -1983,7 +1983,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
-msgstr ""
+msgstr "El <item type=\"productname\">%PRODUCTNAME</item> reconeix les plantilles ubicades en qualsevol de les carpetes següents:"
#: 01020000.xhp
msgctxt ""
@@ -1991,7 +1991,7 @@ msgctxt ""
"par_id3151292\n"
"help.text"
msgid "the shared template folder"
-msgstr ""
+msgstr "la carpeta de plantilles compartida"
#: 01020000.xhp
msgctxt ""
@@ -1999,7 +1999,7 @@ msgctxt ""
"par_id3144442\n"
"help.text"
msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory </caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
-msgstr ""
+msgstr "la carpeta de plantilles de l'usuari <switchinline select=\"sys\"><caseinline select=\"UNIX\">al directori de l'usuari</caseinline><defaultinline>a la carpeta «Documents and Settings» o «Users»</defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Seleccioneu l'estil de paràgraf o nivell d'esquema que voleu utilitzar per separar el document fon en subdocuments.</ahelp> Per defecte, es crea un document nou per a cada nivell d'esquema 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40470,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Activeu aquesta opció per exportar els marcadors del Writer com a marcadors PDF. Els marcadors es crearan per a tots els paràgrafs d'un esquema (Eines - Numeració d'esquemes) i per a totes les entrades d'una taula de continguts a les quals hàgiu assignat enllaços en el document font.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index d4c29c4e606..77c1d0c306a 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-04-27 11:54+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2302,7 +2310,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter.po b/source/ca/helpcontent2/source/text/swriter.po
index b52997b263f..e9c2941d6eb 100644
--- a/source/ca/helpcontent2/source/text/swriter.po
+++ b/source/ca/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-16 12:28+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1494937725.000000\n"
@@ -1054,8 +1054,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeració d'esquemes\">Numeració d'esquemes</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/00.po b/source/ca/helpcontent2/source/text/swriter/00.po
index 07d15dfb3b1..35997d58db0 100644
--- a/source/ca/helpcontent2/source/text/swriter/00.po
+++ b/source/ca/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-11-16 12:53+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2254,24 +2254,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Trieu <emph>Eines - Numeració d'esquemes</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Trieu la pestanya <emph>Eines - Numeració d'esquemes - Numeració</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Trieu <emph>Eines - Numeració de línies</emph> (menys per al format HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index 107be300826..980fc071489 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-04-27 11:56+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Feu clic a l'<emph>1</emph> per visualitzar només els encapçalaments dels nivells superiors a la finestra Navegador, i al <emph>10</emph> per visualitzar tots els encapçalaments.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Si trieu \"Número de capítol sense separador\" per a un camp del capítol, els separadors que s'especifiquen per a un número de capítol a <link href=\"text/swriter/01/06060000.xhp\" name=\"Eines - Numeració del capítol\"><emph>Eines - Numeració del capítol</emph></link> no es mostren."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Insereix el número de capítol. Per assignar una numeració de capítol a un estil d'encapçalament, trieu <emph>Eines - Numeració d'esquemes</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeració d'esquemes"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeració d'esquemes"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "La numeració d'esquema està enllaçada amb els estils de paràgraf. Per defecte, els estils de paràgraf d'\"Encapçalament\" de l'(1-10) estan assignats als nombres de nivell d'esquema corresponents. Si ho voleu, podeu assignar estils de paràgraf diferents al nivell de nombre d'esquema."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Si voleu encapçalaments numerats, utilitzeu l'ordre del menú <emph>Eines - Numeració d'esquemes</emph> per assignar una numeració a un estil de paràgraf. No utilitzeu la icona Numeració de la barra d'eines Formatació."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Per realçar la visualització en pantalla dels nombres d'esquema, trieu <emph>Visualitza -</emph> <emph>Ombreigs dels camps</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Desa o carrega un format numèric d'esquema. Hi ha un format numèric d'esquema disponible desat per a tots els documents de text.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "El botó <emph>Format</emph> només està disponible per a la numeració d'esquemes. Per als estils de la llista de numeració o amb pics, modifiqueu els estils de numeració dels paràgrafs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Obre un diàleg on podeu desar els paràmetres actuals per al nivell d'esquema seleccionat. A continuació, podreu carregar aquests paràmetres des d'un altre document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Feu clic en el nivell d'esquema que voleu modificar i, a continuació, especifiqueu les opcions de numeració per al nivell.</ahelp> Per aplicar les opcions de numeració a tots els nivells, excepte a l'estil de paràgraf, feu clic a \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Seleccioneu l'estil de paràgraf que voleu assignar al nivell d'esquema seleccionat.</ahelp> Si feu clic a \"Cap\", el nivell d'esquema seleccionat no es defineix."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bloc d'adreça nou"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bloc d'adreça nou"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elements de l'adreça"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arrossegueu els elements de l'adreça al camp de sota"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index 70ccf66abf6..8a12df9b90e 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-04-27 11:59+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Podeu moure els encapçalaments i subordinar el text cap amunt i cap avall en un document mitjançant el Navegador. També podeu pujar i baixar de categoria els nivells dels encapçalaments. Per a utilitzar aquesta característica, formateu els encapçalaments del document amb un dels estils de paràgraf d'encapçalament predefinits. Per a utilitzar un estil de paràgraf personalitzat per a un encapçalament, trieu <emph>Eines - Numeració d'esquemes</emph>, seleccioneu l'estil en el quadre <emph>Estil de paràgraf</emph> i feu doble clic a un nombre de la llista <emph>Nivells</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2902,32 +2902,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeració d'esquemes"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>esquemes;numeració</bookmark_value><bookmark_value>supressió; números d'encapçalament</bookmark_value><bookmark_value>numeració de capítols</bookmark_value><bookmark_value>encapçalaments; numeració/estils de paràgraf</bookmark_value><bookmark_value>numeració;encapçalaments</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeració d'esquemes\">Numeració d'esquemes</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Podeu modificar la jerarquia dels encapçalaments o assignar un nivell en la jerarquia a un estil de paràgraf personalitzat. També podeu afegir numeració de capítols i de seccions als estils de paràgraf d'encapçalament. Per defecte, l'estil de paràgraf \"Encapçalament 1\" és el primer de la jerarquia de l'esquema."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2942,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Trieu <item type=\"menuitem\">Eines - Numeració d'esquemes</item> i feu clic a la pestanya <item type=\"menuitem\">Numeració</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2966,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Per suprimir la numeració d'esquema automàtica d'un paràgraf d'encapçalament"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2998,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Trieu <item type=\"menuitem\">Eines - Numeració d'esquemes</item> i feu clic a la pestanya <item type=\"menuitem\">Numeració</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6110,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Abans de poder inserir la informació de capítol en una capçalera o en un peu, heu de definir les opcions de numeració d'esquemes per a l'estil de paràgraf que vulgueu utilitzar per als títols dels capítols."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6126,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Trieu <emph>Eines - Numeració d'esquemes</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7126,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>índexs; definició d'entrades en</bookmark_value> <bookmark_value>taules de continguts; definició d'entrades en</bookmark_value> <bookmark_value>entrades; definició en índexs/taules de continguts</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7158,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Trieu <emph>Insereix - Índexs i taules - Entrada</emph> i realitzeu una de les accions següents:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7214,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Trieu <emph>Eines - Numeració d'esquemes</emph> i feu clic a la pestanya <emph>Numeració</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7838,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Si voleu utilitzar un estil de paràgraf diferent com a entrada de la taula de continguts, activeu la casella de selecció <item type=\"menuitem\">Estils addicionals</item> de l'àrea <item type=\"menuitem\">Crea a partir de</item> i, a continuació, feu clic al botó (<item type=\"menuitem\">...</item>) del costat de la casella. En el diàleg <item type=\"menuitem\">Assigna estils</item>, feu clic a l'estil de la llista i, a continuació, feu clic als botons <item type=\"menuitem\">>></item> o <item type=\"menuitem\"><<</item> per definir el nivell d'esquema per a l'estil de paràgraf."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9486,8 +9486,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numeració; supressió/interrupció</bookmark_value><bookmark_value>llistes amb pics; interrupció</bookmark_value><bookmark_value>llistes;supressió/interrupció de la numeració</bookmark_value><bookmark_value>supressió;números en llistes</bookmark_value><bookmark_value>interrupció de llistes numerades</bookmark_value><bookmark_value>canvi;números inicials en llistes</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9510,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Si voleu numerar encapçalaments, utilitzeu l'ordre de menú <emph>Eines - Numeració d'esquemes</emph> per assignar una numeració a un estil de paràgraf. No utilitzeu la icona Numeració de la barra d'eines Formatació."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index 774795e79fc..b6365de537c 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-29 07:42+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-16 07:29+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496043732.000000\n"
+"X-POOTLE-MTIME: 1497598144.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Seleccioneu els temes"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Insereix..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Not~es"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7928,13 +8045,14 @@ msgid "Display Views"
msgstr "Modes visualització"
#: DrawImpressCommands.xcu
+#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ToggleTabBarVisibility\n"
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "~Barra de les pestanyes de visualització"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8970,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Subfinestra de ~diapositives"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "~Disposició de la barra d'eines"
#: GenericCommands.xcu
msgctxt ""
@@ -23497,7 +23615,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Brackets"
-msgstr ""
+msgstr "~Parèntesis"
#: MathCommands.xcu
msgctxt ""
@@ -23524,7 +23642,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "Tauler d'edició"
#: MathWindowState.xcu
msgctxt ""
@@ -23533,7 +23651,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "Tauler de visualització"
#: MathWindowState.xcu
msgctxt ""
@@ -26697,15 +26815,6 @@ msgstr "~Propietats..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objecte..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27089,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Les files de capçalera es repeteixen en totes les pàgines"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29429,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Llista de pics"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29438,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Llista numerada"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29447,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Llista en xifres romanes"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ca/sc/source/ui/src.po b/source/ca/sc/source/ui/src.po
index 8a1368fcc9d..e829e203500 100644
--- a/source/ca/sc/source/ui/src.po
+++ b/source/ca/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-11 06:38+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "L'interval s'ha mogut de #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Aquesta acció abandonarà el mode d'enregistrament de canvis.\n"
-"Es perdrà tota la informació sobre els canvis.\n"
-"\n"
-"Voleu sortir del mode d'enregistrament de canvis?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "No es permet l'ús de vectors imbricats."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Text a columnes"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/ca/scp2/source/ooo.po b/source/ca/scp2/source/ooo.po
index 6ad7a65df72..fd431e9005a 100644
--- a/source/ca/scp2/source/ooo.po
+++ b/source/ca/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-09 08:51+0000\n"
+"PO-Revision-Date: 2017-06-16 07:19+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483951883.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497597547.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "alt sòrab"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Instal·la la interfície d'usuari en alt sòrab"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/ca/sd/source/ui/app.po b/source/ca/sd/source/ui/app.po
index 0193eaaed63..c530e0f8f42 100644
--- a/source/ca/sd/source/ui/app.po
+++ b/source/ca/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-27 08:24+0000\n"
+"PO-Revision-Date: 2017-06-09 12:49+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493281482.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497012562.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "El destí local del directori «%FILENAME» no és buit. Es poden sobreescriure alguns fitxers. Voleu continuar?"
#: toolbox.src
msgctxt ""
diff --git a/source/ca/sd/uiconfig/simpress/ui.po b/source/ca/sd/uiconfig/simpress/ui.po
index 831a5ad7923..bf972f8e73e 100644
--- a/source/ca/sd/uiconfig/simpress/ui.po
+++ b/source/ca/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-29 07:42+0000\n"
+"PO-Revision-Date: 2017-06-09 12:49+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496043742.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497012593.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "Busca del ratolí com a ~ploma"
#: slidecontextmenu.ui
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thin"
-msgstr ""
+msgstr "_Molt fina"
#: slidecontextmenu.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "_Canvia el color de la ploma..."
#: slidecontextmenu.ui
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "_Esborra tota la tinta de la diapositiva"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/ca/sfx2/source/view.po b/source/ca/sfx2/source/view.po
index 6eed41c16ff..2f7c9e8266b 100644
--- a/source/ca/sfx2/source/view.po
+++ b/source/ca/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-11 06:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494484449.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Aquest document té una signatura no vàlida."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ca/svtools/source/control.po b/source/ca/svtools/source/control.po
index 3c60c5e119f..a354c57ca40 100644
--- a/source/ca/svtools/source/control.po
+++ b/source/ca/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 08:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Negra cursiva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ca/svtools/source/misc.po b/source/ca/svtools/source/misc.po
index 6497945de68..0ed3f7ac0d8 100644
--- a/source/ca/svtools/source/misc.po
+++ b/source/ca/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-03 07:14+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ca/sw/source/core/undo.po b/source/ca/sw/source/core/undo.po
index b67a0da609f..e6404b33c57 100644
--- a/source/ca/sw/source/core/undo.po
+++ b/source/ca/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-25 08:09+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493107742.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "salt de columna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Insereix $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Suprimeix $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "S'han canviat els atributs"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "S'ha canviat la taula"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "S'ha canviat l'estil"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ca/sw/source/uibase/docvw.po b/source/ca/sw/source/uibase/docvw.po
index ef7bb2eb749..dbb19ecc7fe 100644
--- a/source/ca/sw/source/uibase/docvw.po
+++ b/source/ca/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 07:07+0000\n"
"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "S'han aplicat els estils de paràgraf"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ca/sw/source/uibase/ribbar.po b/source/ca/sw/source/uibase/ribbar.po
index f7554aa6c55..c5d3ffbd300 100644
--- a/source/ca/sw/source/uibase/ribbar.po
+++ b/source/ca/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-09 08:42+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Text de la fórmula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ca/sw/source/uibase/uiview.po b/source/ca/sw/source/uibase/uiview.po
index 2f890b2d21d..f4a9becebd8 100644
--- a/source/ca/sw/source/uibase/uiview.po
+++ b/source/ca/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-10 20:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exporta la font..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ca/sw/uiconfig/swriter/ui.po b/source/ca/sw/uiconfig/swriter/ui.po
index 8d226680ac3..93687a362e4 100644
--- a/source/ca/sw/uiconfig/swriter/ui.po
+++ b/source/ca/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-29 07:50+0000\n"
+"PO-Revision-Date: 2017-06-16 07:28+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496044254.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497598102.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Descripció:"
#: frmaddpage.ui
msgctxt ""
@@ -6201,7 +6201,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Less"
-msgstr ""
+msgstr "Menor que"
#: inputwinmenu.ui
msgctxt ""
@@ -6210,7 +6210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Greater"
-msgstr ""
+msgstr "Més que"
#: inputwinmenu.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Edita el comentari..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Ordena per"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Acció"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Data"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Comentari"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Posició en el document"
#: mergeconnectdialog.ui
msgctxt ""
@@ -9837,7 +9837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shape / Textbox"
-msgstr ""
+msgstr "Forma o caixa de text"
#: notebookbar.ui
msgctxt ""
@@ -10512,7 +10512,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Media"
-msgstr ""
+msgstr "_Multimèdia"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -11938,7 +11938,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "MS Word-compatible trailing blanks"
-msgstr ""
+msgstr "Espais en blanc compatibles amb el MS Word"
#: optcompatpage.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Usa l'ordre d'ancoratge de pintura del LibreOffice 4.3 (en el document actiu)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Configuració d'usuari>"
#: optcompatpage.ui
msgctxt ""
@@ -15920,7 +15920,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Per darrere"
#: sidebarwrap.ui
msgctxt ""
@@ -19043,7 +19043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Tipus de lletra"
#: watermarkdialog.ui
msgctxt ""
@@ -19052,7 +19052,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Angle"
#: watermarkdialog.ui
msgctxt ""
@@ -19061,7 +19061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparència"
#: watermarkdialog.ui
msgctxt ""
@@ -19070,7 +19070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Color"
#: wordcount.ui
msgctxt ""
diff --git a/source/ca/wizards/source/formwizard.po b/source/ca/wizards/source/formwizard.po
index e3b739ef98c..aed0964a662 100644
--- a/source/ca/wizards/source/formwizard.po
+++ b/source/ca/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-02-15 13:24+0000\n"
+"PO-Revision-Date: 2017-06-09 13:06+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487165098.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497013586.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "No s'ha instal·lat cap base de dades. Cal almenys una base de dades per a poder iniciar l'assistent de formularis."
#: dbwizres.src
msgctxt ""
@@ -268,7 +268,7 @@ msgctxt ""
"RID_DB_COMMON_START + 9\n"
"string.text"
msgid "The database does not contain any tables."
-msgstr ""
+msgstr "La base de dades no conté cap taula."
#: dbwizres.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"RID_DB_COMMON_START + 10\n"
"string.text"
msgid "This title already exists in the database. Please enter another name."
-msgstr ""
+msgstr "Aquest títol ja existeix a la base de dades. Introduïu-ne un altre."
#: dbwizres.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"RID_DB_COMMON_START + 11\n"
"string.text"
msgid "The title must not contain any spaces or special characters."
-msgstr ""
+msgstr "El títol no pot contenir cap espai ni caràcters especials."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "El servei de base de dades (com.sun.data.DatabaseEngine) no s'ha pogut iniciar."
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "La taula o la consulta seleccionada no s'ha pogut obrir."
#: dbwizres.src
msgctxt ""
diff --git a/source/ca/xmlsecurity/uiconfig/ui.po b/source/ca/xmlsecurity/uiconfig/ui.po
index e6c8e0540b6..4d70b778425 100644
--- a/source/ca/xmlsecurity/uiconfig/ui.po
+++ b/source/ca/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-27 12:19+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493295575.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Suprimeix"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/cs/desktop/source/deployment/gui.po b/source/cs/desktop/source/deployment/gui.po
index 5c2b1b5b816..6a930047ded 100644
--- a/source/cs/desktop/source/deployment/gui.po
+++ b/source/cs/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-28 16:21+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467654689.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1419783675.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared.po b/source/cs/helpcontent2/source/text/sbasic/shared.po
index 43fdae34af3..79c5f1df3e4 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-19 21:38+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Chybové kódy</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Tato funkce vrátí výchozí kontext komponenty pro použití při vytváření instancí služeb pomocí XmultiServiceFactory. Více informací získáte v kapitole <item type=\"literal\">Professional UNO</item> průvodce <item type=\"literal\">Developer's Guide</item> na adrese <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index 6119a84069d..b985efbd3f0 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-17 09:02+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index ad6b8030258..444d8aec945 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-09-28 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Vyberte styl odstavce nebo úroveň osnovy, který chcete použít pro rozdělení zdrojového dokumentu na poddokumenty.</ahelp> Ve výchozím nastavení se vytvoří nový dokument pro každou úroveň osnovy 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Vyberte, pokud chcete záložky dokumentů Writeru exportovat jako PDF záložky. Záložky se vytvoří pro všechny odstavce osnovy (Nástroje - Číslování osnovy) a pro všechny položky obsahu, kterým byly ve zdrojovém dokumentu přiřazeny hypertextové odkazy.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index 75f7bbc981e..ecdf261ac40 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-09-16 17:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: NONE\n"
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2302,7 +2310,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter.po b/source/cs/helpcontent2/source/text/swriter.po
index 9920e33adad..7e7fcf91c41 100644
--- a/source/cs/helpcontent2/source/text/swriter.po
+++ b/source/cs/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-31 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Číslování osnovy\">Číslování osnovy</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/swriter/00.po b/source/cs/helpcontent2/source/text/swriter/00.po
index 876803705c0..4254538a080 100644
--- a/source/cs/helpcontent2/source/text/swriter/00.po
+++ b/source/cs/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-02-21 21:59+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Zvolte <emph>Nástroje - Číslování osnovy</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Zvolte kartu <emph>Nástroje - Číslování osnovy - Číslování</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Zvolte <emph>Nástroje - Číslování řádků</emph> (ne pro formát HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/swriter/01.po b/source/cs/helpcontent2/source/text/swriter/01.po
index 95512b91241..0640b5a02c5 100644
--- a/source/cs/helpcontent2/source/text/swriter/01.po
+++ b/source/cs/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-30 20:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Klepněte na <emph>1</emph> pro zobrazení pouze nadpisů nejvyšší úrovně v Navigátoru, klepněte na <emph>10</emph> pro zobrazení všech úrovní nadpisů.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Když vyberete \"Číslo kapitoly bez oddělovače\" pro pole čísla kapitoly, oddělovač čísla kapitoly určený v nabídce <link href=\"text/swriter/01/06060000.xhp\" name=\"Nástroje - Číslování osnovy\"><emph>Nástroje - Číslování osnovy</emph></link> nebude zobrazen."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Vloží číslo kapitoly. Pro přiřazení číslování kapitol ke stylům nadpisů vyberte <emph>Nástroje - Číslování osnovy</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Číslování osnovy"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Číslování osnovy"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Číslování osnovy je spojeno se styly odstavce. Implicitně jsou styly \"Nadpis (1-10)\" přiřazeny k odpovídajícím úrovním číslování (1-10). Pokud chcete, můžete přiřadit úrovním osnovy různé styly odstavce."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Pokud chcete číslované nadpisy, použijte příkaz <emph>Nástroje - Číslování osnovy</emph> pro přiřazení číslování ke stylům odstavce. Nepoužívejte ikonu Číslování na nástrojové liště Formátování."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Chcete-li zvýraznit zobrazení číslování osnovy, zvolte <emph>Zobrazit - Stínování polí</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Uložení či načtení formátu číslování osnovy. Uložené formáty číslování osnovy jsou přístupné pro všechny textové dokumenty.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Tlačítko <emph>Formát</emph> je dostupné pouze pro číslování osnovy. Pro číslované či odrážkové seznamy upravte odpovídající styl číslování."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Otevře dialog, ve kterém můžete uložit aktuální nastavení pro vybranou úroveň osnovy. Poté můžete toto nastavení načíst v jiném dokumentu.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Klepněte na úroveň osnovy, kterou chcete upravit, a poté nastavte číslování pro tuto úroveň.</ahelp> Chcete-li nastavit číslování, kromě stylu odstavce, všem úrovním, klepněte na \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Vyberte styl odstavce, který chcete přiřadit vybrané úrovni osnovy.</ahelp> Pokud klepnete na \"Žádný\", vybraná úroveň osnovy nebude určena."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nový blok s adresou"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nový blok s adresou"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Prvky adresy"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Přetáhněte sem prvky adresy"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/swriter/guide.po b/source/cs/helpcontent2/source/text/swriter/guide.po
index 41b83deb0c3..d0bcf784f36 100644
--- a/source/cs/helpcontent2/source/text/swriter/guide.po
+++ b/source/cs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-22 16:16+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Nadpisy a podřízeným textem můžete v dokumentu pohybovat pomocí Navigátoru. Zároveň můžete měnit i velikost nadpisu. Abyste mohli tuto vlastnost využít, změňte formát nadpisů ve vašem dokumentu na jeden z předdefinovaných stylů odstavce pro nadpisy. Chcete-li použít vlastní styl odstavce nadpisu, zvolte <emph>Nástroje - Číslování osnovy</emph>, vyberte styl v poli <emph>Styl odstavce</emph> a potom poklepejte na číslo v seznamu <emph>Úrovně</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Číslování osnovy"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>osnova;číslování</bookmark_value><bookmark_value>mazání;čísla nadpisů</bookmark_value><bookmark_value>číslování kapitol</bookmark_value><bookmark_value>nadpisy; číslování/styly odstavce</bookmark_value><bookmark_value>číslování;nadpisy</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Číslování osnovy\">Číslování osnovy</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Je možné měnit hierarchii nadpisů nebo přiřadit úroveň v hierarchii vlastnímu stylu odstavce. Také je možné ke stylu odstavce pro nadpis přidat číslování kapitol a podkapitol. Ve výchozím stavu je na nejvyšší úrovni v hierarchii stylů styl odstavce \"Nadpis 1\"."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Zvolte <item type=\"menuitem\">Nástroje - Číslování osnovy</item> a klepněte na kartu <item type=\"menuitem\">Číslování</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Odstranění automatického číslování osnovy z nadpisu"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Zvolte <item type=\"menuitem\">Nástroje - Číslování osnovy</item> a klepněte na kartu <item type=\"menuitem\">Číslování</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Před vložením informací o kapitole do záhlaví nebo zápatí je nutné nejdříve nastavit volby číslování osnovy pro styl odstavce, který chcete použít pro nadpisy kapitoly."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Zvolte <emph>Nástroje - Číslování osnovy</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>rejstříky; definování položek</bookmark_value> <bookmark_value>obsahy; definování položek</bookmark_value> <bookmark_value>položky; definování v rejstříku/obsahu</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Zvolte <emph>Vložit - Obsah a rejstřík - Položka rejstříku</emph> a proveďte jedno z následujících:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Zvolte <emph>Nástroje - Číslování osnovy</emph> a klepněte na kartu <emph>Číslování</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Chcete-li pro položky obsahu použít jiné styly odstavce, zaškrtněte pole <item type=\"menuitem\">Další styly</item> v oblasti <item type=\"menuitem\">Vytvořit z</item> a poté klepněte na tlačítko <item type=\"menuitem\">Přiřadit styly</item> umístěné vedle. V dialogovém okně <item type=\"menuitem\">Přiřadit styly</item> klepněte na styl ze seznamu a poté klepněte na tlačítko <item type=\"menuitem\">>></item> nebo <item type=\"menuitem\"><<</item>, tím určíte úroveň osnovy pro daný styl odstavce."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>číslování; odstranění/přerušení</bookmark_value> <bookmark_value>odrážkové seznamy; přerušení</bookmark_value> <bookmark_value>seznamy;odstranění/přerušení číslování</bookmark_value> <bookmark_value>mazání;čísla v seznamech</bookmark_value> <bookmark_value>přerušení číslovaných seznamů</bookmark_value> <bookmark_value>změna;počáteční čísla v seznamech</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Pokud chcete číslované nadpisy, použijte příkaz <emph>Nástroje - Číslování osnovy</emph> pro přiřazení číslování ke stylům odstavce. Nepoužívejte ikonu Číslování na nástrojové liště Formátování."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index 9b1868905e3..5ed63bc6e21 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-06-02 21:14+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Zvolit motiv vzhledu"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "V~ložit"
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26698,15 +26815,6 @@ msgstr "~Vlastnosti..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "O~bjekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/cs/sc/source/ui/src.po b/source/cs/sc/source/ui/src.po
index 1c03de0d50f..e5ea1fe39af 100644
--- a/source/cs/sc/source/ui/src.po
+++ b/source/cs/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-18 14:58+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Oblast přesunuta z #1 na #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Vnořené matice nejsou podporovány."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/cs/sfx2/source/view.po b/source/cs/sfx2/source/view.po
index 3ebf8261525..2f5e06771a5 100644
--- a/source/cs/sfx2/source/view.po
+++ b/source/cs/sfx2/source/view.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-05 21:00+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 12:20+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496696411.000000\n"
+"X-POOTLE-MTIME: 1497961229.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "Tento dokument má neplatný podpis."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
@@ -272,7 +280,7 @@ msgctxt ""
"STR_SIGNATURE_OK\n"
"string.text"
msgid "This document is digitally signed and the signature is valid."
-msgstr ""
+msgstr "Tento dokument je elektronicky podepsán platným podpisem."
#: view.src
msgctxt ""
@@ -280,4 +288,4 @@ msgctxt ""
"STR_SIGNATURE_SHOW\n"
"string.text"
msgid "Show Signatures"
-msgstr ""
+msgstr "Zobrazit podpisy"
diff --git a/source/cs/svtools/source/control.po b/source/cs/svtools/source/control.po
index 4f001f6cc0c..fa7985e17f6 100644
--- a/source/cs/svtools/source/control.po
+++ b/source/cs/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-09 16:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Černá kurzíva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/cs/svtools/source/misc.po b/source/cs/svtools/source/misc.po
index a7d9408ed27..76b3852c3bc 100644
--- a/source/cs/svtools/source/misc.po
+++ b/source/cs/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-06 20:03+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496779397.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Šive"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/cs/sw/source/core/undo.po b/source/cs/sw/source/core/undo.po
index 28cff73634a..f7e6e58d976 100644
--- a/source/cs/sw/source/core/undo.po
+++ b/source/cs/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-01 21:50+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "zalomení sloupce"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Vložit $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Smazat $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributy byly změněny"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabulka byla změněna"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Styl byl změněn"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/cs/sw/source/uibase/docvw.po b/source/cs/sw/source/uibase/docvw.po
index e6f1d420c7d..b4c001e2206 100644
--- a/source/cs/sw/source/uibase/docvw.po
+++ b/source/cs/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-29 20:31+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Použity styly odstavce"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/cs/sw/source/uibase/ribbar.po b/source/cs/sw/source/uibase/ribbar.po
index c35260ae43d..d2ae870aece 100644
--- a/source/cs/sw/source/uibase/ribbar.po
+++ b/source/cs/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-02 21:12+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Text vzorce"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/cs/sw/source/uibase/uiview.po b/source/cs/sw/source/uibase/uiview.po
index c130ec3b3ab..d423bf0d8c4 100644
--- a/source/cs/sw/source/uibase/uiview.po
+++ b/source/cs/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-10 19:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exportovat zdroj..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/cs/xmlsecurity/uiconfig/ui.po b/source/cs/xmlsecurity/uiconfig/ui.po
index 737a395e835..4627330c910 100644
--- a/source/cs/xmlsecurity/uiconfig/ui.po
+++ b/source/cs/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-25 20:47+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495745247.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Odstranit"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/cy/desktop/source/deployment/gui.po b/source/cy/desktop/source/deployment/gui.po
index dcb22832d35..217abba0d25 100644
--- a/source/cy/desktop/source/deployment/gui.po
+++ b/source/cy/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:13+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-06-13 08:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467655997.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1465807000.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/cy/editeng/uiconfig/ui.po b/source/cy/editeng/uiconfig/ui.po
index 6daa3972bc8..c7754dd4fc5 100644
--- a/source/cy/editeng/uiconfig/ui.po
+++ b/source/cy/editeng/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-26 08:45+0000\n"
+"PO-Revision-Date: 2017-06-13 10:14+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493196313.000000\n"
+"X-POOTLE-MTIME: 1497348856.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -68,4 +68,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Correct Options..."
-msgstr "Dewisiadau Awto_Gywiro"
+msgstr "Dewisiadau Awto_Gywiro..."
diff --git a/source/cy/filter/source/config/fragments/filters.po b/source/cy/filter/source/config/fragments/filters.po
index 625698b280b..0da1299a63f 100644
--- a/source/cy/filter/source/config/fragments/filters.po
+++ b/source/cy/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-26 08:51+0000\n"
+"PO-Revision-Date: 2017-06-12 15:18+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493196693.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280686.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/cy/filter/source/config/fragments/types.po b/source/cy/filter/source/config/fragments/types.po
index 7e7af5f4b21..82911f81939 100644
--- a/source/cy/filter/source/config/fragments/types.po
+++ b/source/cy/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-26 08:51+0000\n"
+"PO-Revision-Date: 2017-06-12 15:18+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493196699.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280690.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index 6a933fb92eb..2c960691a7f 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-23 13:55+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-13 10:17+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495547756.000000\n"
+"X-POOTLE-MTIME: 1497349047.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Dewis Themâu"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Mewnosod..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Prif Sleid"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "~Prif Nodiadau"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7601,7 +7718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Slide"
-msgstr "_Sleid Newydd"
+msgstr "~Sleid Newydd"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "N~odiadau"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Golwg ~Bar Tab"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Prif ~Daflen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "~Paen Sleid"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "~Cynllun Bar Offer"
#: GenericCommands.xcu
msgctxt ""
@@ -23470,7 +23587,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Functions"
-msgstr "~Swyddogaethau:"
+msgstr "~Swyddogaethau"
#: MathCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Priodweddau..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Gwrthrych..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Penynnau Rhesi'n Ailadrodd ar Draws Tudalennau"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Rhes hyd at ~Toriad ar Draws Tudalennau"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Rhestr Bwled"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Rhestr Rhifau"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Rhestr Rhufeinig"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/cy/sc/source/ui/src.po b/source/cy/sc/source/ui/src.po
index 52b87b069e6..72661f226a3 100644
--- a/source/cy/sc/source/ui/src.po
+++ b/source/cy/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-26 10:12+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-13 10:19+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493201554.000000\n"
+"X-POOTLE-MTIME: 1497349175.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Ystod wedi symud o #1 i #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Bydd y weithred yn gadael y newid ym modd recordio.\n"
-"Bydd unrhyw wybodaeth am newidiadau yn cael eu colli.\n"
-"\n"
-"Gadael modd recordio newid?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Nid yw arae nythog yn cael eu cynnal bob tro."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Testun i Golofnau"
+msgstr ""
#: globstr.src
msgctxt ""
@@ -3778,7 +3773,7 @@ msgctxt ""
"STR_PRINT_PREVIEW_NODATA+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "No Data"
-msgstr "Dim Data ["
+msgstr "Dim Data"
#: globstr.src
msgctxt ""
@@ -10567,7 +10562,7 @@ msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
-"Talgrynnu rhif tuag at sero i'r lluosog gwerth absoliwt agosaf arwyddocaol\n"
+"Talgrynnu rhif tuag at sero i'r lluosog gwerth absoliwt agosaf arwyddocaol.\n"
"Mae'r swyddogaeth yn bodoli er mwyn rhyngweithredu gyda Microsoft Excel 2007 neu fersiynau hŷn."
#: scfuncs.src
@@ -22871,7 +22866,7 @@ msgctxt ""
"Rounds a number to predefined significant digits.\n"
"itemlist.text"
msgid "Rounds a number to predefined significant digits."
-msgstr "Talgrynnu rhif i ddigidau arwyddocaol rh.agddiffiniedig"
+msgstr "Talgrynnu rhif i ddigidau arwyddocaol rhagddiffiniedig."
#: scfuncs.src
msgctxt ""
diff --git a/source/cy/scp2/source/ooo.po b/source/cy/scp2/source/ooo.po
index 2a6b48cc3ab..a71c2100bfa 100644
--- a/source/cy/scp2/source/ooo.po
+++ b/source/cy/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-12 11:32+0000\n"
+"PO-Revision-Date: 2017-06-13 10:11+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484220745.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497348708.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Sorbieg Uchaf"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Gosod rhyngwyneb defnyddiwr Sorbieg Uchaf"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/cy/sd/source/ui/app.po b/source/cy/sd/source/ui/app.po
index 0ce248f720f..d0563798d19 100644
--- a/source/cy/sd/source/ui/app.po
+++ b/source/cy/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-26 10:15+0000\n"
+"PO-Revision-Date: 2017-06-13 09:42+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493201709.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497346935.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "Nid yw cyfeiriadur targed lleol '%FILENAME' yn wag. Bydd rhai ffeiliau yn cael eu hysgrifennu trostynt. Parhau?"
#: toolbox.src
msgctxt ""
diff --git a/source/cy/sd/uiconfig/simpress/ui.po b/source/cy/sd/uiconfig/simpress/ui.po
index 4fc0ba6c85b..51b17840d53 100644
--- a/source/cy/sd/uiconfig/simpress/ui.po
+++ b/source/cy/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-28 09:12+0000\n"
+"PO-Revision-Date: 2017-06-13 10:14+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493370750.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497348882.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "Pwyntiwr llygoden fel ~Ysgrifbin"
#: slidecontextmenu.ui
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thin"
-msgstr ""
+msgstr "_Tenau Iawn"
#: slidecontextmenu.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "Newid _Lliw'r Ysgrifbin..."
#: slidecontextmenu.ui
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "_Dileu'r Holl Inc ar y Sleid"
#: slidecontextmenu.ui
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Black"
-msgstr "D_u:"
+msgstr "D_u"
#: slidecontextmenu.ui
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_White"
-msgstr "G_wyn:"
+msgstr "G_wyn"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/cy/sfx2/source/view.po b/source/cy/sfx2/source/view.po
index c6b5b48e6f3..16bfdd1c55f 100644
--- a/source/cy/sfx2/source/view.po
+++ b/source/cy/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-28 08:29+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493368148.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Mae gan y ddogfen hon lofnod annilys."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/cy/sfx2/uiconfig/ui.po b/source/cy/sfx2/uiconfig/ui.po
index 1bf7507c698..1b490ea4b5c 100644
--- a/source/cy/sfx2/uiconfig/ui.po
+++ b/source/cy/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-28 08:33+0000\n"
+"PO-Revision-Date: 2017-06-13 10:14+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493368428.000000\n"
+"X-POOTLE-MTIME: 1497348889.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -1877,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New..."
-msgstr "Newydd ..."
+msgstr "Newydd..."
#: stylecontextmenu.ui
msgctxt ""
diff --git a/source/cy/svtools/source/control.po b/source/cy/svtools/source/control.po
index 6ea4ae369ef..a5fa223ad63 100644
--- a/source/cy/svtools/source/control.po
+++ b/source/cy/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-07 08:50+0000\n"
"Last-Translator: Aled Powell <aled@aledpowell.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Italig Du"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/cy/svtools/source/misc.po b/source/cy/svtools/source/misc.po
index 43d80b7428f..f2fc239aced 100644
--- a/source/cy/svtools/source/misc.po
+++ b/source/cy/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-28 08:53+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/cy/svx/source/src.po b/source/cy/svx/source/src.po
index 9db04b8dcd1..612916c2f4f 100644
--- a/source/cy/svx/source/src.po
+++ b/source/cy/svx/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-23 13:56+0000\n"
+"PO-Revision-Date: 2017-06-13 10:14+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495547794.000000\n"
+"X-POOTLE-MTIME: 1497348893.000000\n"
#: errtxt.src
msgctxt ""
@@ -884,7 +884,7 @@ msgctxt ""
"Wrong checksum.\n"
"itemlist.text"
msgid "Wrong checksum."
-msgstr "Checksum anghywir"
+msgstr "Checksum anghywir."
#: errtxt.src
msgctxt ""
diff --git a/source/cy/svx/source/tbxctrls.po b/source/cy/svx/source/tbxctrls.po
index bdbffd91ceb..f48e99a3ac7 100644
--- a/source/cy/svx/source/tbxctrls.po
+++ b/source/cy/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-12-01 15:42+0000\n"
+"PO-Revision-Date: 2017-06-13 10:01+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480606977.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497348072.000000\n"
#: colrctrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_DEFAULT\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Rhagosodedig"
#: tbcontrl.src
msgctxt ""
diff --git a/source/cy/sw/source/core/undo.po b/source/cy/sw/source/core/undo.po
index 175726bc37b..9f1d3c3f956 100644
--- a/source/cy/sw/source/core/undo.po
+++ b/source/cy/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-27 12:01+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493294488.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "toriad colofn"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Mewnosod $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Dileu $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Priodoleddau wedi newid"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabl wedi newid"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Arddull wedi newid"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/cy/sw/source/uibase/docvw.po b/source/cy/sw/source/uibase/docvw.po
index c617b316097..500b0a21bc7 100644
--- a/source/cy/sw/source/uibase/docvw.po
+++ b/source/cy/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-19 11:06+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Arddulliau Paragraff Gosodedig"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/cy/sw/source/uibase/ribbar.po b/source/cy/sw/source/uibase/ribbar.po
index 2d0aacedf25..6e698c48454 100644
--- a/source/cy/sw/source/uibase/ribbar.po
+++ b/source/cy/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-06 10:07+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Testun Fformiwla"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/cy/sw/source/uibase/uiview.po b/source/cy/sw/source/uibase/uiview.po
index bf476da02ac..3f125def36d 100644
--- a/source/cy/sw/source/uibase/uiview.po
+++ b/source/cy/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-10 20:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Allforio ffynhonnell..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/cy/sw/uiconfig/swriter/ui.po b/source/cy/sw/uiconfig/swriter/ui.po
index c3197aaee16..cdc276c0b17 100644
--- a/source/cy/sw/uiconfig/swriter/ui.po
+++ b/source/cy/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-23 13:58+0000\n"
+"PO-Revision-Date: 2017-06-13 10:14+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: none\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495547885.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497348898.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Format All Comments..."
-msgstr "Fformatio Pob Sylw"
+msgstr "Fformatio Pob Sylw..."
#: asciifilterdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Disgrifiad:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Golygu Sylw..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Trefnu yn Ôl"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Gweithred"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Awdur"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Dyddiad"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Sylw"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Safle'r Ddogfen"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Defnyddio trefn angori paentio LibreOffice 4.3 (yn y ddogfen gyfredol)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Gosodiadau defnyddiwr>"
#: optcompatpage.ui
msgctxt ""
@@ -19043,7 +19043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Ffont"
#: watermarkdialog.ui
msgctxt ""
@@ -19052,7 +19052,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Ongl"
#: watermarkdialog.ui
msgctxt ""
@@ -19061,7 +19061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Tryloywder"
#: watermarkdialog.ui
msgctxt ""
@@ -19070,7 +19070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Lliw"
#: wordcount.ui
msgctxt ""
diff --git a/source/cy/uui/source.po b/source/cy/uui/source.po
index cc1643d8ff1..bc8c898a4f6 100644
--- a/source/cy/uui/source.po
+++ b/source/cy/uui/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-27 12:19+0000\n"
+"PO-Revision-Date: 2017-06-13 10:16+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493295550.000000\n"
+"X-POOTLE-MTIME: 1497349011.000000\n"
#: alreadyopen.src
msgctxt ""
@@ -882,7 +882,7 @@ msgstr ""
"Nid oes modd llwytho'r gydran, efallai ei fod wedi torri neu fod y gosodiad yn anghyflawn.\n"
"Neges gwall llawn:\n"
"\n"
-" $(ARG1)."
+" $(ARG1)."
#: lockfailed.src
msgctxt ""
diff --git a/source/cy/wizards/source/formwizard.po b/source/cy/wizards/source/formwizard.po
index e271a58e603..fdd0e1a201f 100644
--- a/source/cy/wizards/source/formwizard.po
+++ b/source/cy/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-02-10 13:34+0000\n"
+"PO-Revision-Date: 2017-06-13 10:15+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1455111244.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497348903.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "Nid oes cronfa ddata wedi ei osod. Mae angen o leiaf un cronfa ddata cyn bod y dewin ar gyfer ffurflenni'n gallu cael ei gychwyn."
#: dbwizres.src
msgctxt ""
@@ -268,7 +268,7 @@ msgctxt ""
"RID_DB_COMMON_START + 9\n"
"string.text"
msgid "The database does not contain any tables."
-msgstr ""
+msgstr "Nid yw'r gronfa ddata'n cynnwys unrhyw dablau."
#: dbwizres.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"RID_DB_COMMON_START + 10\n"
"string.text"
msgid "This title already exists in the database. Please enter another name."
-msgstr ""
+msgstr "Mae'r teitl yma'n bodoli eisoes yn y gronfa ddata. Rhowch enw arall."
#: dbwizres.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"RID_DB_COMMON_START + 11\n"
"string.text"
msgid "The title must not contain any spaces or special characters."
-msgstr ""
+msgstr "Rhaid i'r teitl beidio â chynnwys unrhyw fylchau neu nodau arbennig."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Nid oedd modd sefydlu'r gwasanaeth cronfa ddata (com.sun.data.DatabaseEngine)."
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "Nid oedd modd agor y tabl neu'r ymholiad yma."
#: dbwizres.src
msgctxt ""
diff --git a/source/cy/xmlsecurity/uiconfig/ui.po b/source/cy/xmlsecurity/uiconfig/ui.po
index 0d40a142aa3..fbdb6210482 100644
--- a/source/cy/xmlsecurity/uiconfig/ui.po
+++ b/source/cy/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-27 12:20+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493295628.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Tynnu"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/da/desktop/source/deployment/gui.po b/source/da/desktop/source/deployment/gui.po
index 173ec213d0a..97b92534a70 100644
--- a/source/da/desktop/source/deployment/gui.po
+++ b/source/da/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-19 09:43+0000\n"
"Last-Translator: laugesen <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492595039.000000\n"
#: dp_gui_dialog.src
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/da/filter/source/config/fragments/filters.po b/source/da/filter/source/config/fragments/filters.po
index 1f1881a2a92..0e624a9de21 100644
--- a/source/da/filter/source/config/fragments/filters.po
+++ b/source/da/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-17 18:32+0000\n"
+"PO-Revision-Date: 2017-06-18 05:17+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495045955.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497763075.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/da/filter/source/config/fragments/types.po b/source/da/filter/source/config/fragments/types.po
index f901cd57831..63a3c46f309 100644
--- a/source/da/filter/source/config/fragments/types.po
+++ b/source/da/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-17 18:32+0000\n"
+"PO-Revision-Date: 2017-06-18 05:18+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495045959.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497763083.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/shared.po b/source/da/helpcontent2/source/text/sbasic/shared.po
index 8b016921276..1f41c234267 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 18:06+0000\n"
-"Last-Translator: Jesper <jesper@laugesen.org>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-18 05:25+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496685991.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497763510.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -478,6 +478,38 @@ msgctxt ""
"par_id051920171018124524\n"
"help.text"
msgid "This function is enabled with the statement <item type=\"literal\">Option VBASupport 1</item> placed before the executable program code in a module."
+msgstr "Denne funktion aktiveres med erklæringen <item type=\"literal\">Option VBASupport 1</item> placeret før den eksekverbare kode i et modul."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
#: 00000003.xhp
@@ -485,8 +517,8 @@ msgctxt ""
"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Fejlkoder</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -7078,7 +7110,7 @@ msgctxt ""
"par_id051220170242005479\n"
"help.text"
msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Dialog title\")"
-msgstr ""
+msgstr "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Dialogtitel\")"
#: 03010103.xhp
msgctxt ""
@@ -12502,7 +12534,7 @@ msgctxt ""
"par_id3151097\n"
"help.text"
msgid "Returns the date in ISO format without separators (YYYYMMDD) from a serial date number that is generated by the DateSerial or the DateValue or the CDateFromIso function."
-msgstr ""
+msgstr "Returnerer datoen i ISO-format uden separatorer (DDMMÅÅÅÅ) fra et serielt datotal, som genereres af DateSerial- eller DateValue- eller CDataFromIso-funktionen."
#: 03030107.xhp
msgctxt ""
@@ -12510,7 +12542,7 @@ msgctxt ""
"par_id3151098\n"
"help.text"
msgid "The year part consists of at least four digits, with leading zeros if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string returned can be in the range \"-327680101\" to \"327671231\"."
-msgstr ""
+msgstr "Årsdelen består af mindst fire cifre, med foranstillede nuller hvis absolutværdien er mindre end 1000. Kan den være negativ med et foranstillet minustegn, hvis datoen er før vores tidsalder (f.Kr), og det kan have flere end fire cifre, hvis absolutværdien er større end 9999. Den formaterede streng, der returneres, kan ligge i området \"-327680101\" til \"327671231\"."
#: 03030107.xhp
msgctxt ""
@@ -12622,7 +12654,7 @@ msgctxt ""
"par_id3148551\n"
"help.text"
msgid "The year part must consist of either two (supported only in YYMMDD format without separators for compatibility) or at least four digits. With four digits leading zeros must be given if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string can be in the range \"-327680101\" to \"327671231\", or \"-32768-01-01\" to \"32767-12-31\"."
-msgstr ""
+msgstr "Årsdelen skal bestå af enten to (kun understøttet i YYMMDD-formatet uden separatorer) eller mindst fire cifre. Med fire cifre skal der foranstilles nuller, hvis absolutværdien er mindre end 1000. Kan være negativ med et foranstående minustegn, hvis datoen er før den vor tidsalder (f.Kr.), og den kan have mere end fire cifre, hvis den absolutte værdi er større end 9999. Den formaterede streng kan ligge i området \"-327680101\" til \"327671231\" eller \"-32768-01-01\" til \"32767-12-31\"."
#: 03030108.xhp
msgctxt ""
@@ -12630,7 +12662,7 @@ msgctxt ""
"par_id3148552\n"
"help.text"
msgid "An invalid date results in an error. Year 0 is not accepted, the last day BCE is -0001-12-31 and the next day CE is 0001-01-01. Dates before 1582-10-15 are in the proleptic Gregorian calendar."
-msgstr ""
+msgstr "En ugyldig dato resulterer i en fejl. År 0 accepteres ikke, den sidste dag f.Kr er -0001-12-31 og den næste dag er e.Kr 0001-01-01. Datoer før 1582-10-15 er i den proleptiske gregorianske kalender."
#: 03030108.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Kørselstidsfunktionen returnerer standardkomponentkonteksten, der skal bruges, hvis services instantieres via XmultiServiceFactory. Se kapitlet <item type=\"literal\">Professional UNO</item> i <item type=\"literal\">Developer's Guide</item> på <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for mere information."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index f43e77e5dd2..cbc98b9e1f7 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 18:07+0000\n"
-"Last-Translator: Jesper <jesper@laugesen.org>\n"
+"PO-Revision-Date: 2017-06-18 05:25+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496686023.000000\n"
+"X-POOTLE-MTIME: 1497763525.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3155849\n"
"help.text"
msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
-msgstr "<item type=\"input\">=TFORDELING(12;5;1)</item>"
+msgstr "<item type=\"input\">=TFORDELING($A$2;$B$2;$C$2;D2)</item>"
#: 04060103.xhp
msgctxt ""
@@ -49398,7 +49398,7 @@ msgctxt ""
"par_idN109C2\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Viser listen af typografierne fra den valgte typografikategori.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Viser listen af typografierne fra den valgte typografikategori.</ahelp>"
#: 05100000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index 9b747bf5210..67e1b368a2b 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-25 20:41+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 7c7744fb407..1e7ec7d5a1f 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-05 18:07+0000\n"
-"Last-Translator: Jesper <jesper@laugesen.org>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-19 20:23+0000\n"
+"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496686072.000000\n"
+"X-POOTLE-MTIME: 1497903835.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\" >Vælg afsnitstypografien eller dispositionsniveau, som du vil bruge til at opdele kildedokumentet i underdokumenter.</ahelp> Standard er oprettelse af et nyt dokument for hvert \"dispositionsniveau 1\"."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -16990,7 +16990,7 @@ msgctxt ""
"par_id231020161510088509\n"
"help.text"
msgid "404 (Chinese - Taiwan)"
-msgstr ""
+msgstr "404 (Kinesisk - Taiwan)"
#: 05020400.xhp
msgctxt ""
@@ -20766,7 +20766,7 @@ msgctxt ""
"par_id3125865\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_SPINHEIGHT\">Enter the height you want for the footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_SPINHEIGHT\">Indtast højden som du ønsker for sidefoden.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -22670,7 +22670,7 @@ msgctxt ""
"par_id3147143\n"
"help.text"
msgid "<variable id=\"stiltext\"><ahelp hid=\".\">Select the line style that you want to use.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"stiltext\"><ahelp hid=\".\">Vælg linjetypografien som du ønsker at bruge.</ahelp></variable>"
#: 05200100.xhp
msgctxt ""
@@ -22686,7 +22686,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<variable id=\"farbetext\"><ahelp hid=\".\">Select a color for the line.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"farbetext\"><ahelp hid=\".\">Vælg en farve til linjen.</ahelp></variable>"
#: 05200100.xhp
msgctxt ""
@@ -23350,7 +23350,7 @@ msgctxt ""
"par_id3149751\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Do not fill the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Udfyld ikke det valgte objekt.</ahelp>"
#: 05210100.xhp
msgctxt ""
@@ -23358,7 +23358,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">Color</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">Farve</link>"
#: 05210100.xhp
msgctxt ""
@@ -23406,7 +23406,7 @@ msgctxt ""
"hd_id3150504\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Mønster"
#: 05210100.xhp
msgctxt ""
@@ -35390,7 +35390,7 @@ msgctxt ""
"par_idN106A9\n"
"help.text"
msgid "Add Separator"
-msgstr ""
+msgstr "Tilføj skilletegn"
#: 06140400.xhp
msgctxt ""
@@ -35502,7 +35502,7 @@ msgctxt ""
"par_idN1068B\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Fjern"
#: 06140400.xhp
msgctxt ""
@@ -39534,7 +39534,7 @@ msgctxt ""
"par_idN106BA\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/addbtn\">Click Add to add an extension.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/addbtn\">Klik Tilføj for at tilføje en udvidelse.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39566,7 +39566,7 @@ msgctxt ""
"par_idN106D1\n"
"help.text"
msgid "<ahelp hid=\".\">Select the extension that you want to remove, and then click Remove.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker den udvidelse du vil fjerne, og klik derefter på Fjern.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39638,7 +39638,7 @@ msgctxt ""
"hd_id4921415\n"
"help.text"
msgid "Display Extensions"
-msgstr ""
+msgstr "Vis udvidelser"
#: packagemanager.xhp
msgctxt ""
@@ -39654,7 +39654,7 @@ msgctxt ""
"par_id0103201110331828\n"
"help.text"
msgid "Bundled with %PRODUCTNAME"
-msgstr ""
+msgstr "Pakket sammen med %PRODUCTNAME"
#: packagemanager.xhp
msgctxt ""
@@ -39670,7 +39670,7 @@ msgctxt ""
"par_id0103201110331829\n"
"help.text"
msgid "Installed for all users"
-msgstr ""
+msgstr "Installeret for alle brugere"
#: packagemanager.xhp
msgctxt ""
@@ -39686,7 +39686,7 @@ msgctxt ""
"par_id0103201110331830\n"
"help.text"
msgid "Installed for current user"
-msgstr ""
+msgstr "Installeret for den aktuelle bruger"
#: packagemanager.xhp
msgctxt ""
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id3150502\n"
"help.text"
msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv en adgangskode. En adgangskode er versalfølsom.</ahelp>"
#: password_dlg.xhp
msgctxt ""
@@ -40006,7 +40006,7 @@ msgctxt ""
"hd_id281120163149552\n"
"help.text"
msgid "Restart in Normal Mode"
-msgstr ""
+msgstr "Genstart i Normal Tilstand"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Vælger at eksportere bogmærker fra Writer-dokumenter som PDF-bogmærker. Bogmærker dannes på baggrund af overskriftsniveauer (Funktioner - Dispositionsnummerering) og for alle elementer i indholdsfortegnelsen, som du har tildelt hyperlinks i kildedokumentet.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/02.po b/source/da/helpcontent2/source/text/shared/02.po
index 56bc2787e58..e0c1b4f713c 100644
--- a/source/da/helpcontent2/source/text/shared/02.po
+++ b/source/da/helpcontent2/source/text/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-20 16:05+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:14+0000\n"
+"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495296314.000000\n"
+"X-POOTLE-MTIME: 1497374077.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Ikon</alt></image>"
#: 01171400.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_internet\">Creates an http hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_internet\">Opretter et http-hypelink.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11470,7 +11470,7 @@ msgctxt ""
"par_id3150693\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_ftp\">Creates an FTP hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_ftp\">Opretter et FTP-hyperlink.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -13254,7 +13254,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "<ahelp hid=\".\">For the following arguments, you can choose between the logical operators AND / OR.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">For de følgende argumenter, kan du vælge imellem de logiske operatorer OG / ELLER.</ahelp>"
#: 12090100.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/04.po b/source/da/helpcontent2/source/text/shared/04.po
index c833c9245ef..2caa33a0d3f 100644
--- a/source/da/helpcontent2/source/text/shared/04.po
+++ b/source/da/helpcontent2/source/text/shared/04.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-05-24 17:37+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:14+0000\n"
+"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464111445.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497374087.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3148408\n"
"help.text"
msgid "Opens the <emph>Templates</emph> dialog."
-msgstr ""
+msgstr "Åbner dialogen <emph>Skabeloner</emph>."
#: 01010000.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_idN10BC0\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌃M</caseinline><defaultinline>Ctrl+M</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">^M</caseinline><defaultinline>Ctrl-M</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/05.po b/source/da/helpcontent2/source/text/shared/05.po
index 837dd8a88a7..8bddc4d65ef 100644
--- a/source/da/helpcontent2/source/text/shared/05.po
+++ b/source/da/helpcontent2/source/text/shared/05.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2016-05-21 19:33+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:14+0000\n"
+"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463859208.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497374091.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"hd_id3146873\n"
"help.text"
msgid "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Getting Support</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Få brugerhjælp</link></variable>"
#: 00000001.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/autopi.po b/source/da/helpcontent2/source/text/shared/autopi.po
index 6264f5f1126..c8f49ffd367 100644
--- a/source/da/helpcontent2/source/text/shared/autopi.po
+++ b/source/da/helpcontent2/source/text/shared/autopi.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-12-30 14:15+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:15+0000\n"
+"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483107337.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497374108.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_DATE\">Specifies the date of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_DATE\">Angiver dato for mødet.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_TIME\">Specifies the time of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_TIME\">Angiver tidspunkt for mødet.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_id3159400\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Specifies the location of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Angiver sted for mødet.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -6758,7 +6758,7 @@ msgctxt ""
"hd_id4791405\n"
"help.text"
msgid "macOS Address book"
-msgstr ""
+msgstr "macOS adressebog"
#: 01170000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/explorer/database.po b/source/da/helpcontent2/source/text/shared/explorer/database.po
index 328fa0cbc8a..0c3e5e75f81 100644
--- a/source/da/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/da/helpcontent2/source/text/shared/explorer/database.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-20 16:06+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:15+0000\n"
+"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495296407.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497374120.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -7158,7 +7158,7 @@ msgctxt ""
"par_idN1054D\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/dabawiz01.xhp\">Select Database</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/explorer/database/dabawiz01.xhp\">Vælg database</link>"
#: dabawiz01.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_idN10596\n"
"help.text"
msgid "A user name can have a maximum of 18 characters."
-msgstr ""
+msgstr "Et brugernavn kan højst have 18 tegn."
#: dabawiz02ado.xhp
msgctxt ""
@@ -8814,7 +8814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Set up user authentication"
-msgstr ""
+msgstr "Opsæt brugergodkendelse"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8822,7 +8822,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "Set up user authentication"
-msgstr ""
+msgstr "Opsæt brugergodkendelse"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8830,7 +8830,7 @@ msgctxt ""
"par_idN1053E\n"
"help.text"
msgid "Some databases require a user name and password."
-msgstr ""
+msgstr "Nogle databaser kræver et brugernavn og en adgangskode."
#: dabawiz03auth.xhp
msgctxt ""
@@ -8870,7 +8870,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "Test Connection"
-msgstr ""
+msgstr "Test forbindelse"
#: dabawiz03auth.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index 8aa5993c09f..3fe56fe77e9 100644
--- a/source/da/helpcontent2/source/text/shared/guide.po
+++ b/source/da/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-07 09:06+0000\n"
+"PO-Revision-Date: 2017-06-18 05:25+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483780017.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497763546.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -14134,7 +14134,7 @@ msgctxt ""
"par_id3146986\n"
"help.text"
msgid "The <emph>Document Converter Wizard</emph> will copy and convert all Microsoft Office files in a folder into $[officename] documents in the OpenDocument file format. You can specify the folder to be read, and the folder where the converted files are to be saved."
-msgstr "Guiden <emph>Dokumentkonvertering</emph> vil kopiere og konvertere alle Microsoft Office-filer i en mappe til OpenDocument-dokumenter. Du kan angive mappen, der skal læses, og mappen hvor de konverterede filer skal gemmes."
+msgstr "Guiden <emph>Dokumentkonvertering</emph> vil kopiere og konvertere alle Microsoft Office-filer i en mappe til $[officename]-dokumenter. Du kan angive mappen, der skal læses, og mappen hvor de konverterede filer skal gemmes."
#: ms_user.xhp
msgctxt ""
@@ -17950,7 +17950,7 @@ msgctxt ""
"par_id1022200911011855\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">The Templates icon opens the Templates dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Skabelon-ikonet åbner Skabelon-dialogboksen.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17958,7 +17958,7 @@ msgctxt ""
"par_id0820200803105045\n"
"help.text"
msgid "The <emph>Templates</emph> icon opens the <link href=\"text/shared/guide/aaa_start.xhp\">Templates</link> dialog."
-msgstr ""
+msgstr "Ikonet <emph>Skabeloner</emph> åbner dialogboksen <link href=\"text/shared/guide/aaa_start.xhp\">Skabeloner</link>."
#: startcenter.xhp
msgctxt ""
@@ -18278,7 +18278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Template Manager"
-msgstr ""
+msgstr "Skabelon-håndtering"
#: template_manager.xhp
msgctxt ""
@@ -18294,7 +18294,7 @@ msgctxt ""
"hd_id041620170649101471\n"
"help.text"
msgid "<link href=\"text/shared/guide/template_manager.xhp\">Manage Templates</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/template_manager.xhp\">Håndtere Skabeloner</link>"
#: template_manager.xhp
msgctxt ""
@@ -18310,7 +18310,7 @@ msgctxt ""
"par_id04162017072349624\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">File - New – Templates.</item>"
-msgstr ""
+msgstr "Vælg menu <item type=\"menuitem\">Filer - Ny(t) – Skabeloner.</item>"
#: template_manager.xhp
msgctxt ""
@@ -18318,7 +18318,7 @@ msgctxt ""
"par_id041620170723496526\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">File – Template – Manage Templates.</item>"
-msgstr ""
+msgstr "Vælg menu <item type=\"menuitem\">Filer – Skabeloner – Håndter Skabeloner.</item>"
#: template_manager.xhp
msgctxt ""
@@ -18390,7 +18390,7 @@ msgctxt ""
"hd_id041620170723501731\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Søg"
#: template_manager.xhp
msgctxt ""
@@ -18422,7 +18422,7 @@ msgctxt ""
"hd_id041620170723509321\n"
"help.text"
msgid "Categories"
-msgstr ""
+msgstr "Kategorier"
#: template_manager.xhp
msgctxt ""
@@ -18454,7 +18454,7 @@ msgctxt ""
"hd_id041620170723509814\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Indstillinger"
#: template_manager.xhp
msgctxt ""
@@ -18470,7 +18470,7 @@ msgctxt ""
"hd_id041620170723501627\n"
"help.text"
msgid "Browse Online Templates"
-msgstr ""
+msgstr "Gennemse Online-skabeloner"
#: template_manager.xhp
msgctxt ""
@@ -18502,7 +18502,7 @@ msgctxt ""
"hd_id041620170723504268\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Redigere"
#: template_manager.xhp
msgctxt ""
@@ -18518,7 +18518,7 @@ msgctxt ""
"hd_id041620170723509251\n"
"help.text"
msgid "Set as Default"
-msgstr ""
+msgstr "Indstil som Standard"
#: template_manager.xhp
msgctxt ""
@@ -18542,7 +18542,7 @@ msgctxt ""
"hd_id041620170723508003\n"
"help.text"
msgid "Rename"
-msgstr ""
+msgstr "Omdøb"
#: template_manager.xhp
msgctxt ""
@@ -18558,7 +18558,7 @@ msgctxt ""
"hd_id041620170723508658\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Slet"
#: template_manager.xhp
msgctxt ""
@@ -18574,7 +18574,7 @@ msgctxt ""
"hd_id041620170723508845\n"
"help.text"
msgid "Move"
-msgstr ""
+msgstr "Flyt"
#: template_manager.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index 28f9106c903..a5edaccc543 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-05-20 16:14+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/da/helpcontent2/source/text/simpress/guide.po b/source/da/helpcontent2/source/text/simpress/guide.po
index fb9d3ddcc64..70206bd8d0a 100644
--- a/source/da/helpcontent2/source/text/simpress/guide.po
+++ b/source/da/helpcontent2/source/text/simpress/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-01-01 23:15+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:16+0000\n"
+"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483312500.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497374202.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_id221120161524583519\n"
"help.text"
msgid "Open an existing or blank presentation."
-msgstr ""
+msgstr "Åbn en eksisterende eller tom præsentation."
#: photo_album.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_id221120161524581298\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album</item>."
-msgstr ""
+msgstr "Vælg <item type=\"menuitem\">Indsæt – Medier – Fotoalbum</item>."
#: photo_album.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id221120161524593343\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert Slides</item>."
-msgstr ""
+msgstr "Klik på <item type=\"menuitem\">Indsæt dias</item>."
#: photo_album.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_id221120161524501012\n"
"help.text"
msgid "Warning: Clicking Undo will not delete a photo album. Right-click the slides on the slide panel and select Delete to delete the slides."
-msgstr ""
+msgstr "Advarsel: At klikke på Fortryd vil ikke slette et fotoalbum. Højreklik dias på diaspanelet og vælg Slet for at slette diasene."
#: photo_album.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id221120161524598688\n"
"help.text"
msgid "<link href=\"text/simpress/guide/show.xhp\">Slide Shows</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/guide/show.xhp\">Diasshows</link>"
#: photo_album.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id221120161524592232\n"
"help.text"
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/insert_bitmap.xhp\">Indsæt billeder</link>"
#: print_tofit.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter.po b/source/da/helpcontent2/source/text/swriter.po
index 12be490b3bd..bc56cab62c7 100644
--- a/source/da/helpcontent2/source/text/swriter.po
+++ b/source/da/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-31 08:44+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Kapitelnummerering\">Dispositionsnummerering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/00.po b/source/da/helpcontent2/source/text/swriter/00.po
index 930d7f32628..d019796970c 100644
--- a/source/da/helpcontent2/source/text/swriter/00.po
+++ b/source/da/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-12-31 10:19+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Vælg <emph>Funktioner - Dispositionsnummerering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Vælg <emph>Funktioner - Dispositionsnummerering - Nummerering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Vælg <emph>Funktioner - Linjenummerering</emph> (ikke for HTML-format)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/01.po b/source/da/helpcontent2/source/text/swriter/01.po
index 5271ea33e6e..fc57e3364fb 100644
--- a/source/da/helpcontent2/source/text/swriter/01.po
+++ b/source/da/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 18:32+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-13 17:18+0000\n"
"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496773923.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497374280.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Klik <emph>1</emph> for kun at vise øverste overskriftsniveau i Navigator-vinduet, og <emph>10</emph> for at se alle overskrifterne.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Hvis du vælger \"Kapitelnummer uden skilletegn\" til et kapitelfelt, skjules de skilletegn, som er specificeret til kapitelnumre i <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Funktioner - Dispositionsnummerering</emph></link>."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Indsætter hele kapiteloverskriften, inklusiv kapitelnummeret, hvis det er tilgængeligt. For at tildele kapitelnummerering til en overskriftstypografi skal du vælge <emph>Funktioner - Dispositionsnummerering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Dispositionsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Dispositionsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Dispositionsnummerering er forbundet med afsnitstypografier. Som standard bliver afsnitstypografier \"Overskrift\"(1-10) tildelt til den tilsvarende dispositionniveauer (1-10). Hvis du vil, kan du tildele forskellige afsnitstypografier til dispositionsniveauet."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Hvis du ønsker nummererede overskrifter, kan du bruge menukommandoen <emph>Funktioner - Dispositionsnummerering</emph> for at tildele nummerering til en afsnitstypografi. Brug ikke nummereringsikonet på værktøjslinjen Formatering."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "For at fremhæve skærmvisningen af dispositionsnumre kan du vælge <emph>Vis -</emph><emph>Feltskygger</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Gemmer eller indlæser et dispositionstalformat. Et gemt dispositionstalformatet er tilgængeligt for alle tekstdokumenter.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Knappen <emph>Formater</emph> er kun tilgængelig for dispositionsnummerering. For typografier til nummerering eller punktopstilling må du modificere afsnittenes nummereringstypografier."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Åbner en dialog, hvor du kan gemme de nuværende indstillinger for det markerede dispositionsniveau. Du kan så indlæse disse indstillinger fra et andet dokument.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Klik på dispositionsniveauet, som du vil ændre, og angiv så nummereringsindstillingerne for niveauet.</ahelp> For at anvende nummereringsindstillingerne, undtagen for afsnitstypografi, på alle niveauer, klik \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Vælg den afsnitstypografi, som du vil tildele til det markerede dispositionsniveau.</ahelp> Hvis du klikker \"Ingen\", bliver det markerede dispositionsniveau ikke defineret."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25182,7 +25182,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "<ahelp hid=\".\">Searches for a record or recipient in the <link href=\"text/swriter/01/mm_newaddlis.xhp\">mail merge</link> address list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Søger efter en datapost eller modtager i <link href=\"text/swriter/01/mm_newaddlis.xhp\">brevfletningens</link> adresseliste.</ahelp>"
#: mm_finent.xhp
msgctxt ""
@@ -25222,7 +25222,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the data field where you want to search for the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker datafeltet hvor du vil søge efter teksten.</ahelp>"
#: mm_finent.xhp
msgctxt ""
@@ -25278,7 +25278,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field name in your database for each logical address element.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg et feltnavn i din database for hvert logiske adresseelement.</ahelp>"
#: mm_matfie.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Ny adresseblok"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Ny adresseblok"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adresseelementer"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Træk adresseelement til feltet nedenunder"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25542,7 +25542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print merged document"
-msgstr ""
+msgstr "Udskriv flettet dokument"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25550,7 +25550,7 @@ msgctxt ""
"hd_id201703192010597215\n"
"help.text"
msgid "<link href=\"text/swriter/01/mm_printmergeddoc.xhp\">Print merged document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mm_printmergeddoc.xhp\">Udskriv flettet dokument</link>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25574,7 +25574,7 @@ msgctxt ""
"par_idN105B7\n"
"help.text"
msgid "Printer"
-msgstr ""
+msgstr "Printer"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25582,7 +25582,7 @@ msgctxt ""
"par_idN105BB\n"
"help.text"
msgid "<ahelp hid=\".\">Select the printer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg printeren.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25590,7 +25590,7 @@ msgctxt ""
"par_idN105BE\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Egenskaber"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25598,7 +25598,7 @@ msgctxt ""
"par_idN105C2\n"
"help.text"
msgid "<ahelp hid=\".\">Changes the printer properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ændrer printerens egenskaber.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25614,7 +25614,7 @@ msgctxt ""
"par_idN105C5\n"
"help.text"
msgid "Print all documents"
-msgstr ""
+msgstr "Udskriv alle dokumenter"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25630,7 +25630,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Fra"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25646,7 +25646,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Fra"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25678,7 +25678,7 @@ msgctxt ""
"par_idN105DA\n"
"help.text"
msgid "Print Documents"
-msgstr ""
+msgstr "Udskriv dokumenter"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25694,7 +25694,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Save merged document"
-msgstr ""
+msgstr "Gem flettet dokument"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25702,7 +25702,7 @@ msgctxt ""
"hd_id201703191634335977\n"
"help.text"
msgid "<link href=\"text/swriter/01/mm_savemergeddoc.xhp\">Save merged document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mm_savemergeddoc.xhp\">Gem flettet dokument</link>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25726,7 +25726,7 @@ msgctxt ""
"par_idN1058D\n"
"help.text"
msgid "Save as single large document"
-msgstr ""
+msgstr "Gem som enkelt stort dokument"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25734,7 +25734,7 @@ msgctxt ""
"par_idN10591\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the merged document as a single file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer det flettede dokument som en enkelt fil.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25742,7 +25742,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "Save as individual documents"
-msgstr ""
+msgstr "Gem som individuelle dokumenter"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25758,7 +25758,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Fra"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25774,7 +25774,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Fra"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25806,7 +25806,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "Save Documents"
-msgstr ""
+msgstr "Gem dokumenter"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25814,7 +25814,7 @@ msgctxt ""
"par_idN105AD\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer dokumenterne.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -25846,7 +25846,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "Select your preferred address block"
-msgstr ""
+msgstr "Vælg din foretrukne adresseblok"
#: mm_seladdblo.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 2787a6075f6..64f207e1670 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2017-06-06 18:33+0000\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-13 17:18+0000\n"
"Last-Translator: Jesper <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496773997.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497374285.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Du kan flytte overskrifter og underordnet tekst op og ned i en dokumenttekst ved at bruge Navigatoren. Du kan også flytte overskrifter et niveau op eller ned. For at bruge denne mulighed, skal du formatere overskrifterne i dit dokument med en af de foruddefinerede afsnitstypografier for overskrifter. For at anvende en brugerdefineret afsnitstypografi til en overskrift, vælg <emph>Funktioner - Dispositionsnummerering</emph> vælg typografien i feltet <emph>Afsnitstypografi</emph>, og dobbeltklik så på et tal i listen <emph>Niveauer</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Dispositionsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>dispositioner;nummerering</bookmark_value><bookmark_value>slette;overskriftsnumre</bookmark_value><bookmark_value>kapitelnummerering</bookmark_value><bookmark_value>overskrifter; nummerering</bookmark_value><bookmark_value>nummerering;overskrifter</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Dispositionsnummerering\">Dispositionsnummerering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Du kan ændre overskriftshierarkiet eller tildele et niveau i hierarkiet til en brugerdefineret afsnitstypografi. Du kan også tilføje kapitel- og sektionsnummerering til typografier for afsnitsoverskrifter. Som standard er afsnitstypografien \"Overskrift 1\" øverst i dispositionshierarkiet."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vælg <item type=\"menuitem\">Funktioner - Dispositionsnummerering</item>, og klik så på fanebladet <item type=\"menuitem\">Nummerering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "For at fjerne automatisk dispositionsnummerering fra et overskriftsafsnit"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vælg <item type=\"menuitem\">Funktioner - Dispositionsnummerering</item>, og klik så på fanebladet <item type=\"menuitem\">Nummerering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Før du kan indsætte information om kapitlet i et sidehoved eller en sidefod, skal du lave dispositionsnummereringsindstillinger for den afsnitstypografi, som du vil bruge til kapiteloverskrifter."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Vælg <emph>Funktioner - Dispositionsnummerering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indekser; angive punkter i</bookmark_value> <bookmark_value>indholdsfortegnelser; angiver punkter i</bookmark_value> <bookmark_value>elementer; angiver i indekser/indholdsfortegnelser</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Vælg <emph>Indsæt - Indekser og oversigter - Indekselement</emph>, og gør et af følgende:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Vælg <emph>Funktioner - Dispositionsnummerering</emph> og klik på fanebladet <emph>Nummerering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Hvis du vil bruge en anden afsnitstypografi som indholdsfortegnelseelement, skal du vælge afkrydsningsfeltet <item type=\"menuitem\">Yderligere typografier</item> i området <item type=\"menuitem\">Opret ud fra</item> og så klikke på knappen (<item type=\"menuitem\">...</item>) ved siden af afkrydsningsfeltet. I dialogen <item type=\"menuitem\">Tildel typografier</item> skal du klikke på typografien på listen og så klikke på knappen <item type=\"menuitem\">>></item> eller <item type=\"menuitem\"><<</item> for at definere dispositionsniveauet for afsnitstypografien."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Hvis du vil bruge en anden afsnitstypografi for et element i indholdsfortegnelsen, skal du vælge <item type=\"menuitem\">Yderligere typografier</item> og så klikke på knappen <item type=\"menuitem\">Tilknyt typografier</item> ved siden af feltet. Vælg typografien på listen, og klik så på knappen <item type=\"menuitem\">>></item> eller <item type=\"menuitem\"><<</item> for at definere dispositionsniveauet for afsnitstypografien."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>nummerering; fjerne/afbryde</bookmark_value> <bookmark_value>punktopstillinger; afbryde</bookmark_value> <bookmark_value>lister;fjerne/afbryde nummerering</bookmark_value> <bookmark_value>fjerne;tal i lister</bookmark_value> <bookmark_value>afbryde nummererede lister</bookmark_value> <bookmark_value>ændre;starttal i lister</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Hvis du ønsker nummererede overskrifter, kan du bruge menukommandoen <emph>Funktioner - Dispositionsnummerering</emph> til at tildele en nummerering til en afsnitstypografi. Undlad at bruge ikonet Nummerering på værktøjslinjen Formatering."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -11350,7 +11350,7 @@ msgctxt ""
"hd_id1811201610295\n"
"help.text"
msgid "<variable id=\"turnoff\">Turning off protection</variable>"
-msgstr ""
+msgstr "<variable id=\"turnoff\">Slå beskyttelse fra</variable>"
#: protection.xhp
msgctxt ""
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
index 37882bb8ce5..06bc281e81b 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 13:14+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-18 05:19+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496150067.000000\n"
+"X-POOTLE-MTIME: 1497763184.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Vælg temaer"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Indsæt..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -5684,7 +5801,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Explorer"
-msgstr ""
+msgstr "Oversigt"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Dias ~Master"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Noter M~aster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Not~er"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Fanepanelet Vis"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Uddelingsk~opi Master"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Dias ~Panel"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Værktøjslinjen ~Layout"
#: GenericCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Egenskaber..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Overskriftsrækker gentages på tværs af sider"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Række til ~Opdeling på tværs af sider"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Punkttegn"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Nummereret liste"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Romertalsliste"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/da/sc/source/ui/src.po b/source/da/sc/source/ui/src.po
index 902ad929c3a..c0436832eae 100644
--- a/source/da/sc/source/ui/src.po
+++ b/source/da/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-20 13:28+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495286910.000000\n"
#: globstr.src
@@ -2701,7 +2701,7 @@ msgstr "Område flyttet fra #1 til #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Denne handling vil afslutte registreringen af ændringer.\n"
-"Alle oplysninger om ændringer vil mistes.\n"
-"\n"
-"Afslut registrering af ændringer?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Indlejrede matricer er ikke understøttet."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Tekst til kolonner"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/da/scp2/source/ooo.po b/source/da/scp2/source/ooo.po
index e9a48a674ab..1c6eaea30e9 100644
--- a/source/da/scp2/source/ooo.po
+++ b/source/da/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-12-06 18:42+0000\n"
+"PO-Revision-Date: 2017-06-18 05:19+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481049737.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497763197.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Øvre sorbisk"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Installerer øvre sorbisk brugergrænseflade"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/da/sfx2/source/view.po b/source/da/sfx2/source/view.po
index bcbea832d9c..394a5e9e522 100644
--- a/source/da/sfx2/source/view.po
+++ b/source/da/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-19 06:46+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495176367.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Dette dokument har en ugyldig signatur."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/da/svtools/source/control.po b/source/da/svtools/source/control.po
index fb35f44280c..79ab966b28a 100644
--- a/source/da/svtools/source/control.po
+++ b/source/da/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-15 13:20+0000\n"
"Last-Translator: laugesen <jesper@laugesen.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Black kursiv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/da/svtools/source/misc.po b/source/da/svtools/source/misc.po
index 1b804cce3cf..5a0b83cb1de 100644
--- a/source/da/svtools/source/misc.po
+++ b/source/da/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-30 13:16+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496150165.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/da/sw/source/core/undo.po b/source/da/sw/source/core/undo.po
index 5b5959cbef0..533117aab45 100644
--- a/source/da/sw/source/core/undo.po
+++ b/source/da/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-20 14:09+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495289387.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "kolonneskift"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Indsæt $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Slet $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attributter ændret"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabel ændret"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Typografi ændret"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/da/sw/source/uibase/docvw.po b/source/da/sw/source/uibase/docvw.po
index 373211af169..23bae1359f2 100644
--- a/source/da/sw/source/uibase/docvw.po
+++ b/source/da/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-06-25 12:55+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Anvendte afsnitstypografier"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/da/sw/source/uibase/ribbar.po b/source/da/sw/source/uibase/ribbar.po
index 64881b1425e..015e4ad15e6 100644
--- a/source/da/sw/source/uibase/ribbar.po
+++ b/source/da/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-29 18:03+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formeltekst"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/da/sw/source/uibase/uiview.po b/source/da/sw/source/uibase/uiview.po
index db521b93054..ce15da435b8 100644
--- a/source/da/sw/source/uibase/uiview.po
+++ b/source/da/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-10 21:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Eksporter kilde..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/da/sw/uiconfig/swriter/ui.po b/source/da/sw/uiconfig/swriter/ui.po
index 2609634d0b9..69890f46e13 100644
--- a/source/da/sw/uiconfig/swriter/ui.po
+++ b/source/da/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-01 20:39+0000\n"
-"Last-Translator: Jesper <jesper@laugesen.org>\n"
+"PO-Revision-Date: 2017-06-18 05:20+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: none\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496349583.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497763258.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Beskrivelse:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Rediger kommentarer..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Sortér efter"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Handling"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Forfatter"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Kommentar"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Dokumentplacering"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Brug LibreOffice 4.3 forankring med malerækkefølge (i det aktuelle dokument)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<User settings>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/da/wizards/source/formwizard.po b/source/da/wizards/source/formwizard.po
index d1cc7d7d4c1..217438336a7 100644
--- a/source/da/wizards/source/formwizard.po
+++ b/source/da/wizards/source/formwizard.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-06-01 20:40+0000\n"
-"Last-Translator: Jesper <jesper@laugesen.org>\n"
+"PO-Revision-Date: 2017-06-18 05:21+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496349611.000000\n"
+"X-POOTLE-MTIME: 1497763266.000000\n"
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Databaseservicen (com.sun.data.DatabaseEngine) kunne ikke startes."
#: dbwizres.src
msgctxt ""
diff --git a/source/da/xmlsecurity/uiconfig/ui.po b/source/da/xmlsecurity/uiconfig/ui.po
index 4f696b25fa8..d17678c3844 100644
--- a/source/da/xmlsecurity/uiconfig/ui.po
+++ b/source/da/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-20 14:07+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495289262.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Fjern"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/de/basic/source/classes.po b/source/de/basic/source/classes.po
index 85c93568ea8..f58b0572d35 100644
--- a/source/de/basic/source/classes.po
+++ b/source/de/basic/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-03 03:48+0000\n"
+"PO-Revision-Date: 2017-06-09 04:42+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493783283.000000\n"
+"X-POOTLE-MTIME: 1496983345.000000\n"
#: sb.src
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"Sub-procedure or function procedure not defined.\n"
"itemlist.text"
msgid "Sub-procedure or function procedure not defined."
-msgstr "Sub- oder Function-Prozedur nicht definiert."
+msgstr "Prozedur Sub oder Function nicht definiert."
#: sb.src
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"Invalid string pattern.\n"
"itemlist.text"
msgid "Invalid string pattern."
-msgstr "Zeichenfolgenmuster unzulässig."
+msgstr "Zeichenkettenmuster unzulässig."
#: sb.src
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"Invalid clipboard format.\n"
"itemlist.text"
msgid "Invalid clipboard format."
-msgstr "Ungültiges Zwischenablagen-Format."
+msgstr "Ungültiges Zwischenablageformat."
#: sb.src
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"Sub procedure or function procedure $(ARG1) already defined.\n"
"itemlist.text"
msgid "Sub procedure or function procedure $(ARG1) already defined."
-msgstr "Sub- oder Function-Prozedur $(ARG1) bereits definiert."
+msgstr "Prozedur Sub oder Function $(ARG1) bereits definiert."
#: sb.src
msgctxt ""
diff --git a/source/de/connectivity/source/resource.po b/source/de/connectivity/source/resource.po
index 03983f4cd66..0864713c5b5 100644
--- a/source/de/connectivity/source/resource.po
+++ b/source/de/connectivity/source/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-03 03:48+0000\n"
+"PO-Revision-Date: 2017-06-09 04:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493783297.000000\n"
+"X-POOTLE-MTIME: 1496983521.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"256 + 2*100 + 0\n"
"string.text"
msgid "The record operation has been vetoed."
-msgstr "Die Datensatz-Operation wurde abgelehnt."
+msgstr "Die Datensatzoperation wurde abgelehnt."
#: conn_error_message.src
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"STR_INVALID_BOOKMARK\n"
"string.text"
msgid "Invalid bookmark value"
-msgstr "Ungültiger Lesezeichen-Wert."
+msgstr "Ungültiger Lesezeichenwert."
#: conn_shared_res.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STR_STRING_LENGTH_EXCEEDED\n"
"string.text"
msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
-msgstr "Die Zeichenfolge '$string$' überschreitet die Höchstlänge von $maxlen$ Zeichen, wenn sie in den Zielzeichensatz '$charset$' umgewandelt wird."
+msgstr "Die Zeichenkette '$string$' überschreitet die Höchstlänge von $maxlen$ Zeichen, wenn sie in den Zielzeichensatz '$charset$' umgewandelt wird."
#: conn_shared_res.src
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"STR_QUERY_INVALID_LIKE_STRING\n"
"string.text"
msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
-msgstr "Die Abfrage kann nicht ausgeführt werden. 'WIE' kann nur mit einem Zeichenfolgen-Argument benutzt werden."
+msgstr "Die Abfrage kann nicht ausgeführt werden. 'WIE' kann nur mit einem Zeichenkettenargument benutzt werden."
#: conn_shared_res.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"STR_QUERY_NOT_LIKE_TOO_COMPLEX\n"
"string.text"
msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die 'NICHT WIE'-Bedingung ist zu komplex."
+msgstr "Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'NICHT WIE' ist zu komplex."
#: conn_shared_res.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_QUERY_LIKE_WILDCARD\n"
"string.text"
msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die 'WIE'-Bedingung enthält Platzhalter in der Mitte."
+msgstr "Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'WIE' enthält Platzhalter in der Mitte."
#: conn_shared_res.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_QUERY_LIKE_WILDCARD_MANY\n"
"string.text"
msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die 'WIE'-Bedingung enthält zu viele Platzhalter."
+msgstr "Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'WIE' enthält zu viele Platzhalter."
#: conn_shared_res.src
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"STR_NO_TABLE_CONTAINER\n"
"string.text"
msgid "An error occurred while obtaining the connection's table container."
-msgstr "Es ist ein Fehler beim Beschaffen des Tabellen-Behälters der Verbindung aufgetreten."
+msgstr "Es ist ein Fehler beim Beschaffen des Tabellenbehälters der Verbindung aufgetreten."
#: conn_shared_res.src
msgctxt ""
diff --git a/source/de/cui/source/dialogs.po b/source/de/cui/source/dialogs.po
index 5c6df5473b5..9b770bcb5b2 100644
--- a/source/de/cui/source/dialogs.po
+++ b/source/de/cui/source/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-14 07:39+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2017-06-09 04:45+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492155573.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496983535.000000\n"
#: cuires.src
msgctxt ""
@@ -503,7 +503,7 @@ msgctxt ""
"RID_SVXSTR_TWO_PASSWORDS_MISMATCH\n"
"string.text"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
-msgstr "Die Bestätigung stimmt nicht mit dem Original-Kennwort überein. Setzen Sie das Kennwort erneut."
+msgstr "Die Bestätigung stimmt nicht mit dem Originalkennwort überein. Setzen Sie das Kennwort erneut."
#: passwdomdlg.src
msgctxt ""
diff --git a/source/de/cui/uiconfig/ui.po b/source/de/cui/uiconfig/ui.po
index a845df6162d..5fb0a11251e 100644
--- a/source/de/cui/uiconfig/ui.po
+++ b/source/de/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 04:14+0000\n"
+"PO-Revision-Date: 2017-06-09 04:47+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496722445.000000\n"
+"X-POOTLE-MTIME: 1496983673.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Component method name:"
-msgstr "Name der Komponenten-Methode:"
+msgstr "Komponentenmethode-Name:"
#: autocorrectdialog.ui
msgctxt ""
@@ -3443,7 +3443,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Pick a Color"
-msgstr "Wählen Sie eine Farbe"
+msgstr "Farbauswahl"
#: colorpickerdialog.ui
msgctxt ""
@@ -5144,7 +5144,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Record Search"
-msgstr "Datensatz-Suche"
+msgstr "Datensatzsuche"
#: fmsearchdialog.ui
msgctxt ""
diff --git a/source/de/desktop/source/deployment/gui.po b/source/de/desktop/source/deployment/gui.po
index 50a2998e53f..8751bdfa988 100644
--- a/source/de/desktop/source/deployment/gui.po
+++ b/source/de/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:33+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-02-04 18:55+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657199.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1423076122.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/de/extensions/source/propctrlr.po b/source/de/extensions/source/propctrlr.po
index dc3463d49f1..43b33f9028d 100644
--- a/source/de/extensions/source/propctrlr.po
+++ b/source/de/extensions/source/propctrlr.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-14 10:36+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"PO-Revision-Date: 2017-06-09 04:38+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484390166.000000\n"
+"X-POOTLE-MTIME: 1496983108.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -199,7 +199,7 @@ msgctxt ""
"RID_STR_EMPTY_IS_NULL\n"
"string.text"
msgid "Empty string is NULL"
-msgstr "Leere Zeichenfolge ist NULL"
+msgstr "Leere Zeichenkette ist NULL"
#: formres.src
msgctxt ""
diff --git a/source/de/filter/source/config/fragments/filters.po b/source/de/filter/source/config/fragments/filters.po
index fe9c7e63904..9504970621a 100644
--- a/source/de/filter/source/config/fragments/filters.po
+++ b/source/de/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-15 04:54+0000\n"
+"PO-Revision-Date: 2017-06-07 03:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492232075.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496806500.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/de/filter/source/config/fragments/types.po b/source/de/filter/source/config/fragments/types.po
index 6ba933bb7cb..aaf2b9261e8 100644
--- a/source/de/filter/source/config/fragments/types.po
+++ b/source/de/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-15 04:54+0000\n"
+"PO-Revision-Date: 2017-06-07 03:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492232079.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496806505.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/guide.po b/source/de/helpcontent2/source/text/sbasic/guide.po
index 7bc44812ef7..51cf0e199c6 100644
--- a/source/de/helpcontent2/source/text/sbasic/guide.po
+++ b/source/de/helpcontent2/source/text/sbasic/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-03-24 20:11+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-06-18 02:06+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1490386282.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497751591.000000\n"
#: access2base.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3145749\n"
"help.text"
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
-msgstr "Um die Eigenschaften von Kontrollfeldern im Designmodus zu ändern, rechtsklicken Sie auf ein Kontrollelement und wählen Sie im sich öffnenden Kontextmenü <emph>Eigenschaften</emph>."
+msgstr "Um die Eigenschaften von Kontrollfeldern im Entwurfsmodus zu ändern, rechtsklicken Sie auf ein Kontrollelement und wählen Sie im sich öffnenden Kontextmenü <emph>Eigenschaften</emph>."
#: create_dialog.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index 1b2ecb87074..5a4b5ec763f 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 08:05+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-17 12:59+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496649903.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497704381.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3154013\n"
"help.text"
msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - (Document Type) - General</emph>."
-msgstr "In $[officename] Basic kann ein <emph>Methodenparameter</emph> oder eine <emph>Eigenschaft</emph>, der/die eine Maßeinheit erwartet, entweder als Integer- bzw. Longinteger-Ausdruck ohne Maßeinheit oder als eine Zeichenkette, die eine Maßeinheit enthält, festgelegt werden. Falls einer Methode keine Maßeinheit mitgegeben wird, wird die Standardmaßeinheit, die für die aktive Dokumentart definiert ist, benutzt. Falls dem Parameter eine Zeichenkette mitgegeben wird, die eine Maßeinheit enthält, wird die Standardeinstellung ignoriert. Die Standardmaßeinheit für eine Dokumentart kann im Menü unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - (LibreOffice-Modul) - Allgemein</emph> eingestellt werden."
+msgstr "In $[officename] Basic kann ein <emph>Methodenparameter</emph> oder eine <emph>Eigenschaft</emph>, der/die eine Maßeinheit erwartet, entweder als Integer- bzw. Longinteger-Ausdruck ohne Maßeinheit oder als eine Zeichenkette, die eine Maßeinheit enthält, festgelegt werden. Falls einer Methode keine Maßeinheit mitgegeben wird, wird die Standardmaßeinheit, die für die aktive Dokumentart definiert ist, benutzt. Falls dem Parameter eine Zeichenkette mitgegeben wird, die eine Maßeinheit enthält, wird die Standardeinstellung ignoriert. Die Standardmaßeinheit für eine Dokumentart kann unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - (LibreOffice-Modul) - Allgemein</emph> eingestellt werden."
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr "Diese Funktion ist aktiviert, wenn die Anweisung <item type=\"literal\">
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Fehler-Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -814,7 +846,7 @@ msgctxt ""
"par_id3149890\n"
"help.text"
msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
-msgstr "<variable id=\"err93\">93 Zeichenfolgenmuster unzulässig</variable>"
+msgstr "<variable id=\"err93\">93 Zeichenkettenmuster unzulässig</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1814,7 +1846,7 @@ msgctxt ""
"par_id3155507\n"
"help.text"
msgid "Declares one variable as a String and one as an Integer"
-msgstr "Deklariert eine Variable als Zeichenkette (String) und eine weitere als Integer (Ganzzahl)"
+msgstr "Legt eine Variable String und eine weitere als Integer fest"
#: 01020100.xhp
msgctxt ""
@@ -1910,7 +1942,7 @@ msgctxt ""
"par_id3159226\n"
"help.text"
msgid "<emph>String</emph> variables contain character strings."
-msgstr "<emph>Zeichenketten</emph>-Variablen enthalten Zeichenketten."
+msgstr "<emph>String</emph>-Variablen enthalten Zeichenketten."
#: 01020100.xhp
msgctxt ""
@@ -1918,7 +1950,7 @@ msgctxt ""
"par_id3145217\n"
"help.text"
msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
-msgstr "<emph>Boolesche</emph> Variablen enthalten entweder den Wert WAHR (TRUE) oder FALSCH (FALSE)."
+msgstr "<emph>Boolean</emph>-Variablen enthalten entweder den Wert TRUE oder FALSE."
#: 01020100.xhp
msgctxt ""
@@ -1966,7 +1998,7 @@ msgctxt ""
"hd_id7596972\n"
"help.text"
msgid "Decimal Variables"
-msgstr "Dezimalvariablen"
+msgstr "Dezimal-Variablen"
#: 01020100.xhp
msgctxt ""
@@ -1974,7 +2006,7 @@ msgctxt ""
"par_id2649311\n"
"help.text"
msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
-msgstr "Dezimalvariablen können positive oder negative Zahlen oder Null aufnehmen. Die Genauigkeit beträgt maximal 29 Stellen."
+msgstr "Dezimal-Variablen können positive oder negative Zahlen oder Null aufnehmen. Die Genauigkeit beträgt maximal 29 Stellen."
#: 01020100.xhp
msgctxt ""
@@ -2046,7 +2078,7 @@ msgctxt ""
"hd_id3148742\n"
"help.text"
msgid "String Variables"
-msgstr "String-Variablen (Zeichenkettenvariablen)"
+msgstr "String-Variablen"
#: 01020100.xhp
msgctxt ""
@@ -2054,7 +2086,7 @@ msgctxt ""
"par_id3151393\n"
"help.text"
msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
-msgstr "Zeichenkettenvariablen (String-Variablen) können Zeichenketten mit bis zu 65.535 Zeichen Länge aufnehmen. Jedes Zeichen wird mit seinem Unicode-Wert gespeichert. Zeichenkettenvariablen eignen sich für die Textverarbeitung innerhalb von Programmen sowie für die temporäre Speicherung von Sonderzeichen bis zu einer maximalen Länge von 64 KByte. Der benötigte Speicher für eine Zeichenkettenvariable richtet sich danach, wie viele Zeichen sie enthält. Das Typ-Deklarationszeichen ist \"$\"."
+msgstr "String-Variablen können Zeichenketten mit bis zu 65.535 Zeichen Länge aufnehmen. Jedes Zeichen wird mit seinem Unicode-Wert gespeichert. String-Variablen eignen sich für die Textverarbeitung innerhalb von Programmen sowie für die temporäre Speicherung von Sonderzeichen bis zu einer maximalen Länge von 64 KByte. Der benötigte Speicher für eine String-Variable richtet sich danach, wie viele Zeichen sie enthält. Das Typ-Deklarationszeichen ist \"$\"."
#: 01020100.xhp
msgctxt ""
@@ -2126,7 +2158,7 @@ msgctxt ""
"par_id3154807\n"
"help.text"
msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
-msgstr "<emph>String-Variablen</emph> wird direkt bei der Deklaration eine leere Zeichenfolge (\"\") zugewiesen."
+msgstr "<emph>String-Variablen</emph> wird direkt bei der Deklaration eine leere Zeichenkette (\"\") zugewiesen."
#: 01020100.xhp
msgctxt ""
@@ -7110,7 +7142,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
-msgstr "Gibt die angegebenen Zeichenfolgen oder numerischen Ausdrücke in einem Dialog oder eine Datei aus."
+msgstr "Gibt die angegebenen Zeichenketten oder numerischen Ausdrücke in einen Dialog oder eine Datei aus."
#: 03010103.xhp
msgctxt ""
@@ -7262,7 +7294,7 @@ msgctxt ""
"par_id3151262\n"
"help.text"
msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
-msgstr "Zeigt einen Dialog mit einem Eingabefeld und erlaubt dem Benutzer die Eingabe einer Zeichenfolge bis zur Bestätigung von OK. Die Eingabe wird in einer Variablen aufgenommen."
+msgstr "Zeigt einen Dialog mit einem Eingabefeld und erlaubt dem Benutzer die Eingabe einer Zeichenkette bis zur Bestätigung von OK. Die Eingabe wird in einer Variablen aufgenommen."
#: 03010201.xhp
msgctxt ""
@@ -7270,7 +7302,7 @@ msgctxt ""
"par_id3151100\n"
"help.text"
msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
-msgstr "Die <emph>InputBox</emph>-Anweisung bietet eine komfortable Möglichkeit der Eingabe über einen Dialog. Die Eingabeebene kann durch die Eingabetaste oder die Schaltfläche OK verlassen werden; die vom Anwender bis dahin eingegebene Zeichenfolge wird als Funktionsergebnis zurückgegeben. Wird der Dialog hingegen mit Abbrechen verlassen, liefert <emph>InputBox</emph> eine Nullzeichenfolge (\"\") zurück."
+msgstr "Die Anweisung <emph>InputBox</emph> bietet eine komfortable Möglichkeit der Eingabe über einen Dialog. Die Eingabeebene kann durch die Eingabetaste oder die Schaltfläche OK verlassen werden; die vom Anwender bis dahin eingegebene Zeichenkette wird als Funktionsergebnis zurückgegeben. Wird der Dialog hingegen mit Abbrechen verlassen, liefert <emph>InputBox</emph> eine Nullzeichenkette (\"\") zurück."
#: 03010201.xhp
msgctxt ""
@@ -8950,7 +8982,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
-msgstr "Mit Hilfe der <emph>Line Input#</emph>-Anweisung können Sie Zeichenfolgen aus einer geöffneten Datei in eine Variable einlesen. Zeichenfolgevariablen werden bis zum ersten Carriage-Return (Asc=13) oder Line Feed (Asc=10), also zeilenweise gelesen, wobei die Zeilenendenmarken selbst nicht mit in die Zeichenfolge übernommen werden."
+msgstr "Mit Hilfe der Anweisung <emph>Line Input#</emph> können Sie Zeichenketten aus einer geöffneten Datei in eine Variable einlesen. String-Variablen werden bis zum ersten Carriage-Return (Asc=13) oder Line Feed (Asc=10), also zeilenweise gelesen, wobei die Zeilenendenmarken selbst nicht mit in die Zeichenkette übernommen werden."
#: 03020203.xhp
msgctxt ""
@@ -9246,7 +9278,7 @@ msgctxt ""
"par_id3147428\n"
"help.text"
msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
-msgstr "Von Ihnen eingegebene Zeichenfolgen werden in Anführungszeichen eingeschlossen und durch Kommata getrennt. Sie brauchen diese Trennzeichen also nicht in die Ausdrucksliste einzugeben."
+msgstr "Von Ihnen eingegebenen Zeichenketten werden in Anführungszeichen eingeschlossen und durch Kommata getrennt. Sie brauchen diese Trennzeichen also nicht in die Ausdrucksliste einzugeben."
#: 03020205.xhp
msgctxt ""
@@ -10118,7 +10150,7 @@ msgctxt ""
"par_id3155133\n"
"help.text"
msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
-msgstr "Falls kein Laufwerk angegeben wurde oder das Laufwerk eine Zeichenfolge ohne Länge (\"\") ist, gibt CurDir den Pfad für das aktuelle Laufwerk zurück. $[officename] Basic meldet einen Fehler, wenn die Syntax der Laufwerkbeschreibung falsch ist, das Laufwerk nicht existiert oder dem Laufwerk ein Buchstabe zugeordnet wurde, der im Alphabet hinter dem folgt, der in der Datei CONFIG.SYS mit der Lastdrive-Anweisung festgelegt ist."
+msgstr "Falls kein Laufwerk angegeben wurde oder das Laufwerk eine Zeichenkette ohne Länge (\"\") ist, gibt CurDir den Pfad für das aktuelle Laufwerk zurück. $[officename] Basic meldet einen Fehler, wenn die Syntax der Laufwerkbeschreibung falsch ist, das Laufwerk nicht existiert oder dem Laufwerk ein Buchstabe zugeordnet wurde, der im Alphabet hinter dem folgt, der in der Datei CONFIG.SYS mit der Anweisung Lastdrive festgelegt ist."
#: 03020403.xhp
msgctxt ""
@@ -10662,7 +10694,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
-msgstr "Mit Hilfe dieser Funktion ermitteln Sie den genauen Zeitpunkt der Erstellung oder Modifikation einer Datei. Übergeben Sie den eindeutigen Dateinamen, und Sie erhalten Datum und Uhrzeit in einer Zeichenfolge im Format \"TT.MM.JJJJ HH.MM.SS\" zurück."
+msgstr "Mit Hilfe dieser Funktion ermitteln Sie den genauen Zeitpunkt der Erstellung oder Modifikation einer Datei. Übergeben Sie den eindeutigen Dateinamen, und Sie erhalten Datum und Uhrzeit in einer Zeichenkette im Format \"TT.MM.JJJJ HH.MM.SS\" zurück."
#: 03020407.xhp
msgctxt ""
@@ -12638,7 +12670,7 @@ msgctxt ""
"par_id3148553\n"
"help.text"
msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
-msgstr ""
+msgstr "Wenn eine serielle Datumsangabe in eine druckbare Zeichenkette konvertiert wird, beispielsweise für die Befehle Print oder MsgBox, wird der Standardkalender des Gebietsschemas verwendet und das zusammengesetzte Datum 15.10.1582 kann in den Julianischen Kalender wechseln, woduch ein anderes Datum als erwartet angezeigt wird. Verwenden Sie die <link href=\"text/sbasic/shared/03030107.xhp\" name=\"Funktion CDateToIso [Laufzeit]\">Funktion CDateToIso [Laufzeit]</link>, um solch eine Datumsangabe in eine Zeichenkette zu konvertieren, die dem Gregorianischen Kalender entspricht."
#: 03030108.xhp
msgctxt ""
@@ -12686,7 +12718,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<emph>String:</emph> A string that contains a date in ISO format."
-msgstr ""
+msgstr "<emph>String:</emph> Eine Zeichenkette, die einem Datum im ISO-Format entspricht."
#: 03030108.xhp
msgctxt ""
@@ -12750,7 +12782,7 @@ msgctxt ""
"par_idN1055F\n"
"help.text"
msgid "DateAdd (Add, Count, Date)"
-msgstr "DateAdd (Interv, Anzahl, Datum)"
+msgstr "DateAdd (Intervall, Anzahl, Datum)"
#: 03030110.xhp
msgctxt ""
@@ -12782,7 +12814,7 @@ msgctxt ""
"par_idN10629\n"
"help.text"
msgid "Add - A string expression from the following table, specifying the date interval."
-msgstr "Interv - Ein Zeichenfolgenausdruck aus der folgenden Tabelle, der das Datumsintervall angibt."
+msgstr "Intervall - Ein Zeichenkettenausdruck aus der folgenden Tabelle, der das Datumsintervall angibt."
#: 03030110.xhp
msgctxt ""
@@ -12790,7 +12822,7 @@ msgctxt ""
"par_idN10636\n"
"help.text"
msgid "Add (string value)"
-msgstr "Interv (Zeichenfolgenwert)"
+msgstr "Intervall (Zeichenkette)"
#: 03030110.xhp
msgctxt ""
@@ -13558,7 +13590,7 @@ msgctxt ""
"par_idN10648\n"
"help.text"
msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-msgstr "DateDiff (Interv, Datum1, Datum2 [, Woche_Start [, Jahr_Start]])"
+msgstr "DateDiff (Intervall, Datum1, Datum2 [, Wochenstart [, Jahresstart]])"
#: 03030120.xhp
msgctxt ""
@@ -13590,7 +13622,7 @@ msgctxt ""
"par_idN10656\n"
"help.text"
msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr "<emph>Interv</emph> - Ein Zeichenfolgenausdruck aus der folgenden Tabelle, der das Datumsintervall angibt."
+msgstr "<emph>Intervall</emph> - Ein Zeichenkettenausdruck aus der folgenden Tabelle, der das Datumsintervall angibt."
#: 03030120.xhp
msgctxt ""
@@ -13606,7 +13638,7 @@ msgctxt ""
"par_idN1066A\n"
"help.text"
msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
-msgstr "<emph>Woche_Start</emph> - Ein optionaler Parameter, der den ersten Tag der Woche festlegt."
+msgstr "<emph>Wochenstart</emph> - Ein optionaler Parameter, der den ersten Tag der Woche festlegt."
#: 03030120.xhp
msgctxt ""
@@ -13614,7 +13646,7 @@ msgctxt ""
"par_idN1067A\n"
"help.text"
msgid "Week_start value"
-msgstr "Wert von Woche_Start"
+msgstr "Wert von Wochenstart"
#: 03030120.xhp
msgctxt ""
@@ -13758,7 +13790,7 @@ msgctxt ""
"par_idN106EB\n"
"help.text"
msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
-msgstr "<emph>Jahr_Start</emph> - Ein optionaler Parameter, der die erste Woche im Jahr festlegt."
+msgstr "<emph>Jahresstart</emph> - Ein optionaler Parameter, der die erste Woche im Jahr festlegt."
#: 03030120.xhp
msgctxt ""
@@ -13766,7 +13798,7 @@ msgctxt ""
"par_idN106FB\n"
"help.text"
msgid "Year_start value"
-msgstr "Wert von Jahr_Start"
+msgstr "Wert von Jahresstart"
#: 03030120.xhp
msgctxt ""
@@ -13894,7 +13926,7 @@ msgctxt ""
"par_idN105E8\n"
"help.text"
msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
-msgstr "DatePart (Interv, Datum [, Woche_Start [, Jahr_Start]])"
+msgstr "DatePart (Intervall, Datum [, Wochenstart [, Jahresstart]])"
#: 03030130.xhp
msgctxt ""
@@ -13926,7 +13958,7 @@ msgctxt ""
"par_idN105F6\n"
"help.text"
msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr "<emph>Interv</emph> - Ein Zeichenfolgenausdruck aus der folgenden Tabelle, der das Datumsintervall angibt."
+msgstr "<emph>Intervall</emph> - Ein Zeichenkettenausdruck aus der folgenden Tabelle, der das Datumsintervall angibt."
#: 03030130.xhp
msgctxt ""
@@ -14574,7 +14606,7 @@ msgctxt ""
"par_id3149482\n"
"help.text"
msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
-msgstr "Der Unterschied zur TimeValue-Funktion ist, dass Sie dort eine Zeichenfolge als Funktionsargument übergeben, die die Uhrzeit beinhaltet. Hingegen übergeben Sie der TimeSerial-Funktion die einzelnen Parameter (Stunde, Minute, Sekunde) getrennt als numerische Ausdrücke."
+msgstr "Der Unterschied zur Funktion TimeValue ist, dass Sie dort eine Zeichenkette als Funktionsargument übergeben, die die Uhrzeit beinhaltet. Hingegen übergeben Sie der Funktion TimeSerial die einzelnen Parameter (Stunde, Minute, Sekunde) getrennt als numerische Ausdrücke."
#: 03030205.xhp
msgctxt ""
@@ -14630,7 +14662,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
-msgstr "Erzeugt aus der Angabe von Stunde, Minute und Sekunde - Parameter, die als Zeichenfolge übergeben werden - eine fortlaufende Nummer, die in einem einzigen numerischen Wert eine komplette Uhrzeit darstellt. Mit Hilfe dieser fortlaufenden Nummer können Sie Differenzen zwischen Uhrzeiten berechnen."
+msgstr "Erzeugt aus der Angabe von Stunde, Minute und Sekunde - Parameter, die als Zeichenketten übergeben werden - eine fortlaufende Nummer, die in einem einzigen numerischen Wert eine komplette Uhrzeit darstellt. Mit Hilfe dieser fortlaufenden Nummer können Sie Differenzen zwischen Uhrzeiten berechnen."
#: 03030206.xhp
msgctxt ""
@@ -14878,7 +14910,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
-msgstr "Diese Funktion liefert die aktuelle Systemzeit als Zeichenfolge im Format \"HH:MM:SS\" zurück."
+msgstr "Diese Funktion liefert die aktuelle Systemzeit als Zeichenkette im Format \"HH:MM:SS\" zurück."
#: 03030302.xhp
msgctxt ""
@@ -14902,7 +14934,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
-msgstr "<emph>Text:</emph> Beliebiger Zeichenfolgeausdruck, der die neue Uhrzeit im Format \"HH:MM:SS\" beschreibt."
+msgstr "<emph>Text:</emph> Beliebiger Zeichenkettenausdruck, der die neue Uhrzeit im Format \"HH:MM:SS\" beschreibt."
#: 03030302.xhp
msgctxt ""
@@ -15126,7 +15158,7 @@ msgctxt ""
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
-msgstr ""
+msgstr "Objektkonstanten"
#: 03040000.xhp
msgctxt ""
@@ -20230,7 +20262,7 @@ msgctxt ""
"par_id3151074\n"
"help.text"
msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
-msgstr "Das folgende Beispiel nutzt zwei ineinander verschachtelte Schleifen, um ein Zeichenfolgen-Array mit 10 Elementen ( sEntry() ), die zunächst mit verschiedenen Namen vorbelegt werden, zu sortieren:"
+msgstr "Das folgende Beispiel nutzt zwei ineinander verschachtelte Schleifen, um ein Zeichenketten-Array mit 10 Elementen ( sEntry() ), die zunächst mit verschiedenen Namen vorbelegt werden, zu sortieren:"
#: 03090202.xhp
msgctxt ""
@@ -21518,7 +21550,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
-msgstr "<emph>LibName:</emph> Zeichenfolgenausdruck, der den Namen der DLL angibt."
+msgstr "<emph>LibName:</emph> Zeichenkettenausdruck, der den Namen der DLL angibt."
#: 03090405.xhp
msgctxt ""
@@ -22350,7 +22382,7 @@ msgctxt ""
"par_idN10545\n"
"help.text"
msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
-msgstr "Konvertiert einen Zeichenfolgen- oder numerischen Ausdruck in einen currency-Ausdruck. Dezimaltrenner und Währungssymbole werden aus dem Gebietsschema entnommen."
+msgstr "Konvertiert einen Zeichenketten- oder numerischen Ausdruck in einen currency-Ausdruck. Dezimaltrenner und Währungssymbole werden aus dem Gebietsschema entnommen."
#: 03100050.xhp
msgctxt ""
@@ -22398,7 +22430,7 @@ msgctxt ""
"par_idN105F6\n"
"help.text"
msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenfolgen- oder numerischer Ausdruck."
+msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenketten- oder numerischer Ausdruck."
#: 03100060.xhp
msgctxt ""
@@ -22430,7 +22462,7 @@ msgctxt ""
"par_idN10558\n"
"help.text"
msgid "Converts a string expression or numeric expression to a decimal expression."
-msgstr "Konvertiert einen Zeichenfolgen- oder numerischen Ausdruck in einen decimal-Ausdruck."
+msgstr "Konvertiert einen Zeichenketten- oder numerischen Ausdruck in einen decimal-Ausdruck."
#: 03100060.xhp
msgctxt ""
@@ -22478,7 +22510,7 @@ msgctxt ""
"par_idN105F8\n"
"help.text"
msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenfolgen- oder numerischer Ausdruck."
+msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenketten- oder numerischer Ausdruck."
#: 03100070.xhp
msgctxt ""
@@ -22510,7 +22542,7 @@ msgctxt ""
"par_idN1055B\n"
"help.text"
msgid "Converts a string expression or numeric expression to a variant expression."
-msgstr "Konvertiert einen Zeichenfolgen- oder numerischen Ausdruck in einen Variantenausdruck."
+msgstr "Konvertiert einen Zeichenketten- oder numerischen Ausdruck in einen Variantenausdruck."
#: 03100070.xhp
msgctxt ""
@@ -22558,7 +22590,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenfolgen- oder numerischer Ausdruck."
+msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenketten- oder numerischer Ausdruck."
#: 03100080.xhp
msgctxt ""
@@ -22590,7 +22622,7 @@ msgctxt ""
"par_idN1055B\n"
"help.text"
msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
-msgstr "Konvertiert einen Zeichenfolgen- oder numerischen Ausdruck in einen Variantenausdruck des Untertyps \"Error\"."
+msgstr "Konvertiert einen Zeichenketten- oder numerischen Ausdruck in einen Variantenausdruck des Untertyps \"Error\"."
#: 03100080.xhp
msgctxt ""
@@ -22638,7 +22670,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenfolgen- oder numerischer Ausdruck."
+msgstr "Ausdruck: Ein beliebiger zu konvertierender Zeichenketten- oder numerischer Ausdruck."
#: 03100100.xhp
msgctxt ""
@@ -22670,7 +22702,7 @@ msgctxt ""
"par_id3145136\n"
"help.text"
msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
-msgstr "Konvertiert einen Zeichenfolgenvergleich, respektive einen Vergleich numerischer Werte in einen boolschen Ausdruck oder wandelt einen einzelnen numerischen Ausdruck in einen boolschen Ausdruck um."
+msgstr "Konvertiert einen Zeichenkettenvergleich oder einen Vergleich numerischer Werte in einen boolschen Ausdruck oder wandelt einen einzelnen numerischen Ausdruck in einen boolschen Ausdruck um."
#: 03100100.xhp
msgctxt ""
@@ -22830,7 +22862,7 @@ msgctxt ""
"par_id3150986\n"
"help.text"
msgid "Converts any string or numeric expression to a date value."
-msgstr "Konvertiert Zeichenfolgen- oder numerische Ausdrücke in Datumswerte."
+msgstr "Konvertiert Zeichenketten- oder numerische Ausdrücke in Datumswerte."
#: 03100300.xhp
msgctxt ""
@@ -23502,7 +23534,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "String without any characters."
-msgstr "Leere Zeichenfolge (enthält keine Zeichen)."
+msgstr "Leere Zeichenkette ohne Zeichen."
#: 03101000.xhp
msgctxt ""
@@ -23526,7 +23558,7 @@ msgctxt ""
"par_id3155738\n"
"help.text"
msgid "Zeros at the end of a floating-point number are not included in the returned string."
-msgstr "Nullen am Ende der Nachkommazahl einer Gleitkommazahl werden nicht in die Zeichenfolge übernommen, die an den Aufrufer zurückgegeben wird."
+msgstr "Nullen am Ende der Nachkommazahl einer Gleitkommazahl werden nicht in die Zeichenkette übernommen, die an den Aufrufer zurückgegeben wird."
#: 03101000.xhp
msgctxt ""
@@ -27566,7 +27598,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Strings"
-msgstr "Zeichenfolgen"
+msgstr "Zeichenketten"
#: 03120000.xhp
msgctxt ""
@@ -27574,7 +27606,7 @@ msgctxt ""
"hd_id3156153\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Zeichenfolgen\">Zeichenfolgen</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Zeichenketten\">Zeichenketten</link>"
#: 03120000.xhp
msgctxt ""
@@ -27598,7 +27630,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ASCII/ANSI Conversion in Strings"
-msgstr "ASCII/ANSI-Umwandlungen in Zeichenfolgen"
+msgstr "ASCII/ANSI-Umwandlungen in Zeichenketten"
#: 03120100.xhp
msgctxt ""
@@ -27606,7 +27638,7 @@ msgctxt ""
"hd_id3147443\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI in Zeichenfolgen\">ASCII/ANSI in Zeichenfolgen</link>"
+msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI in Zeichenketten\">ASCII/ANSI in Zeichenketten</link>"
#: 03120100.xhp
msgctxt ""
@@ -27614,7 +27646,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "The following functions convert strings to and from ASCII or ANSI code."
-msgstr "Hier finden Sie alle Funktionen, die Zeichenfolgen in ASCII/ANSI umwandeln und umgekehrt."
+msgstr "Hier finden Sie alle Funktionen, die Zeichenketten in ASCII/ANSI umwandeln und umgekehrt."
#: 03120101.xhp
msgctxt ""
@@ -27646,7 +27678,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
-msgstr "Gibt den ASCII-Wert (American Standard Code for Information Interchange) eines Zeichenfolgeausdrucks zurück."
+msgstr "Gibt den ASCII-Wert (American Standard Code for Information Interchange) eines Zeichenkettenausdrucks zurück."
#: 03120101.xhp
msgctxt ""
@@ -27846,7 +27878,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "' This example inserts quotation marks (ASCII value 34) in a string."
-msgstr "' Dieses Beispiel fügt ein Anführungszeichen (ASCII-Wert 34) in eine Zeichenfolge ein."
+msgstr "' Dieses Beispiel fügt Anführungszeichen (ASCII-Wert 34) in eine Zeichenkette ein."
#: 03120102.xhp
msgctxt ""
@@ -28094,7 +28126,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "Converts a string or a numeric expression to the type Byte."
-msgstr "Wandelt eine Zeichenfolge oder einen numerischen Ausdruck in den Typ Byte um."
+msgstr "Wandelt eine Zeichenkette oder einen numerischen Ausdruck in den Typ Byte um."
#: 03120105.xhp
msgctxt ""
@@ -28174,7 +28206,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the Unicode value of the first character in a string expression."
-msgstr "Gibt den Unicodewert des ersten Zeichens eines Zeichenfolgenausdrucks zurück. "
+msgstr "Gibt den Unicodewert des ersten Zeichens eines Zeichenkettenausdrucks zurück. "
#: 03120111.xhp
msgctxt ""
@@ -28350,7 +28382,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "String"
-msgstr "Zeichenfolge"
+msgstr "Zeichenkette"
#: 03120112.xhp
msgctxt ""
@@ -28382,7 +28414,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "' This example inserts the greek letter Alpha and Omega in a string."
-msgstr "' Dieses Beispiel fügt die griechischen Buchstaben Alpha und Omega in eine Zeichenfolge ein."
+msgstr "' Dieses Beispiel fügt die griechischen Buchstaben Alpha und Omega in eine Zeichenkette ein."
#: 03120112.xhp
msgctxt ""
@@ -28446,7 +28478,7 @@ msgctxt ""
"par_id3150178\n"
"help.text"
msgid "The following functions repeat the contents of strings."
-msgstr "Hier finden Sie alle Funktionen, die Zeichenfolgeninhalte vervielfachen."
+msgstr "Hier finden Sie alle Funktionen, die Zeichenketteninhalte vervielfachen."
#: 03120201.xhp
msgctxt ""
@@ -28478,7 +28510,7 @@ msgctxt ""
"par_id3154927\n"
"help.text"
msgid "Returns a string that consists of a specified amount of spaces."
-msgstr "Ergibt eine Zeichenfolge, bestehend aus Leerzeichen."
+msgstr "Ergibt eine Zeichenkette, bestehend aus der angegebenen Anzahl an Leerzeichen."
#: 03120201.xhp
msgctxt ""
@@ -28518,7 +28550,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
-msgstr "<emph>n:</emph> Numerischer Ausdruck, der die Anzahl der Leerzeichen in der Zeichenfolge festlegt. Der maximal erlaubte Wert für n ist 65535."
+msgstr "<emph>n:</emph> Numerischer Ausdruck, der die Anzahl der Leerzeichen in der Zeichenkette festlegt. Der maximal erlaubte Wert für n ist 65535."
#: 03120201.xhp
msgctxt ""
@@ -28646,7 +28678,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing String Contents"
-msgstr "Bearbeiten von Zeichenfolgeninhalten"
+msgstr "Bearbeiten von Zeichenketteninhalten"
#: 03120300.xhp
msgctxt ""
@@ -28670,7 +28702,7 @@ msgctxt ""
"par_id3149178\n"
"help.text"
msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
-msgstr "Hier finden Sie Funktionen zum Bearbeiten, Formatieren und Ausrichten von Zeichenfolgeninhalten. Mit dem \"&\"-Operator können Sie Zeichenfolgen zusammenfügen."
+msgstr "Hier finden Sie Funktionen zum Bearbeiten, Formatieren und Ausrichten von Zeichenketteninhalten. Mit dem Operator & können Sie Zeichenketten zusammenfügen."
#: 03120301.xhp
msgctxt ""
@@ -28878,7 +28910,7 @@ msgctxt ""
"par_id3152887\n"
"help.text"
msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
-msgstr "<emph>- + $ ( ) Leerzeichen:</emph> Die Zeichen Plus (+), Minus (-), Dollar ($), Leerzeichen und Klammern können Sie zur Formatierung der Zahl in der Zeichenfolge \"Format\" direkt eingeben."
+msgstr "<emph>- + $ ( ) Leerzeichen:</emph> Die Zeichen Plus (+), Minus (-), Dollar ($), Leerzeichen und Klammern können Sie zur Formatierung der Zahl in der Zeichenkette \"Format\" direkt eingeben."
#: 03120301.xhp
msgctxt ""
@@ -28894,7 +28926,7 @@ msgctxt ""
"par_id3153139\n"
"help.text"
msgid "\\ : The backslash displays the next character in the format code."
-msgstr "\\: Der umgekehrte Schrägstrich bewirkt, dass ein darauf folgendes Zeichen in der Formatzeichenfolge angezeigt wird. Er entspricht dem Einschließen des nächsten Zeichens in Anführungsstriche."
+msgstr "\\: Der umgekehrte Schrägstrich bewirkt, dass ein darauf folgendes Zeichen in der Formatzeichenkette angezeigt wird. Er entspricht dem Einschließen des nächsten Zeichens in Anführungszeichen."
#: 03120301.xhp
msgctxt ""
@@ -29270,7 +29302,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
-msgstr "Ordnet eine Zeichenkette linksbündig innerhalb einer Zeichenfolgenvariablen an oder kopiert eine Variable eines benutzerdefinierten Datentyps in eine andere Variable eines benutzerdefinierten Datentyps."
+msgstr "Ordnet eine Zeichenkette linksbündig innerhalb einer Zeichenkettenvariablen an oder kopiert eine Variable eines benutzerdefinierten Datentyps in eine andere Variable eines benutzerdefinierten Datentyps."
#: 03120304.xhp
msgctxt ""
@@ -29334,7 +29366,7 @@ msgctxt ""
"par_id3154686\n"
"help.text"
msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
-msgstr "Ist die Zeichenkette kürzer als die Zeichenfolgevariable, ordnet die <emph>LSet</emph>-Anweisung die Zeichenkette linksbündig in der Zeichenfolgevariable an. Die freien Stellen der Zeichenfolgevariable werden mit Leerzeichen aufgefüllt. Ist die Zeichenkette länger, werden nur soviele Zeichen der Zeichenkette linksbündig in der Zeichenfolgevariable angeordnet, wie diese aufnehmen kann. Mit der <emph>LSet</emph>-Anweisung ist es außerdem möglich, die Variable eines benutzerdefinierten Datentyps in eine andere des selben Datentyps zu kopieren."
+msgstr "Ist die Zeichenkette kürzer als die Zeichenkettenvariable, ordnet die Anweisung <emph>LSet</emph> die Zeichenkette linksbündig in der Zeichenkettenvariablen an. Die freien Stellen der Zeichenkettenvariablen werden mit Leerzeichen aufgefüllt. Ist die Zeichenkette länger, werden nur soviele Zeichen der Zeichenkette linksbündig in der Zeichenkettenvariablen angeordnet, wie diese aufnehmen kann. Mit der Anweisung <emph>LSet</emph> ist es außerdem möglich, die Variable eines benutzerdefinierten Datentyps in eine andere des selben Datentyps zu kopieren."
#: 03120304.xhp
msgctxt ""
@@ -29510,7 +29542,7 @@ msgctxt ""
"par_id3147530\n"
"help.text"
msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
-msgstr "Mid (Text As String, Anfang As Integer [, Laenge As Integer]) oder Mid (Text As String, Anfang As Integer , Laenge As Integer, Text As String)"
+msgstr "Mid (Text As String, Anfang As Integer [, Länge As Integer]) oder Mid (Text As String, Anfang As Integer , Länge As Integer, Text As String)"
#: 03120306.xhp
msgctxt ""
@@ -29558,7 +29590,7 @@ msgctxt ""
"par_id3148451\n"
"help.text"
msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
-msgstr "<emph>Laenge:</emph> Integer-Ausdruck, der die Anzahl der Zeichen angibt, die Sie ersetzen oder zurückgeben möchten."
+msgstr "<emph>Länge:</emph> Integer-Ausdruck, der die Anzahl der Zeichen angibt, die Sie ersetzen oder zurückgeben möchten."
#: 03120306.xhp
msgctxt ""
@@ -29566,7 +29598,7 @@ msgctxt ""
"par_id3125864\n"
"help.text"
msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
-msgstr "Entfällt bei der <emph>Mid-Funktion</emph> die Angabe zu length, werden alle Zeichen ab der angegebenen Position bis zum letzten Zeichen der Zeichenfolge ermittelt."
+msgstr "Entfällt bei der Funktion <emph>Mid</emph> die Angabe zu Länge, werden alle Zeichen ab der angegebenen Position bis zum letzten Zeichen der Zeichenkette ermittelt."
#: 03120306.xhp
msgctxt ""
@@ -29574,7 +29606,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
-msgstr "Ist der Längenparameter der <emph>Mid-Anweisung</emph> kleiner als die Länge des zu ersetzenden Textes, so wird der Text auf die angegebene Länge gekürzt."
+msgstr "Ist der Längenparameter der Anweisung <emph>Mid</emph> kleiner als die Länge des zu ersetzenden Textes, so wird der Text auf die angegebene Länge gekürzt."
#: 03120306.xhp
msgctxt ""
@@ -29630,7 +29662,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "Returns the rightmost \"n\" characters of a string expression."
-msgstr "Kürzt einen Zeichenfolgeausdruck auf eine angegebene Anzahl von Zeichen. Den Ausgangspunkt hierfür bildet das erste rechte Zeichen der Folge."
+msgstr "Gibt den auf \"n\" Zeichen von rechts gekürzten Zeichenkettenausdruck zurück."
#: 03120307.xhp
msgctxt ""
@@ -29750,7 +29782,7 @@ msgctxt ""
"par_id3150503\n"
"help.text"
msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
-msgstr "Ordnet eine Zeichenkette rechtsbündig innerhalb einer Zeichenfolgevariablen an oder kopiert einen benutzerdefinierten Variablentyp in einen anderen."
+msgstr "Ordnet eine Zeichenkette rechtsbündig innerhalb einer Zeichenkettenvariablen an oder kopiert einen benutzerdefinierten Variablentyp in einen anderen."
#: 03120308.xhp
msgctxt ""
@@ -29814,7 +29846,7 @@ msgctxt ""
"par_id3154140\n"
"help.text"
msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
-msgstr "Ist die Zeichenkette kürzer als die Zeichenfolgevariable, ordnet die <emph>RSet-Anweisung</emph> die Zeichenkette rechtsbündig in der Zeichenfolgevariable an. Die freien Stellen der Zeichenfolgevariable werden mit Leerzeichen aufgefüllt. Ist die Zeichenkette länger, werden nur so viele Zeichen der Zeichenkette rechtsbündig in der Zeichenfolgevariable angeordnet wie diese aufnehmen kann."
+msgstr "Ist die Zeichenkette kürzer als die Zeichenkettenvariable, ordnet die Anweisung <emph>RSet</emph> die Zeichenkette rechtsbündig in der Zeichenkettenvariablen an. Die freien Stellen der Zeichenkettenvariablen werden mit Leerzeichen aufgefüllt. Ist die Zeichenkette länger, werden nur so viele Zeichen der Zeichenkette rechtsbündig in der Zeichenkettenvariablen angeordnet, wie diese aufnehmen kann."
#: 03120308.xhp
msgctxt ""
@@ -29950,7 +29982,7 @@ msgctxt ""
"par_id3151380\n"
"help.text"
msgid "<emph>Text: </emph>Any string expression."
-msgstr "<emph>Text:</emph> Beliebiger Zeichenfolgenausdruck."
+msgstr "<emph>Text:</emph> Ein beliebiger Zeichenkettenausdruck."
#: 03120309.xhp
msgctxt ""
@@ -30542,7 +30574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing String Length"
-msgstr "Bearbeiten von Zeichenfolgelängen"
+msgstr "Bearbeiten von Zeichenkettenlängen"
#: 03120400.xhp
msgctxt ""
@@ -30550,7 +30582,7 @@ msgctxt ""
"hd_id3155150\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
-msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Zeichenfolgelängen bearbeiten\">Zeichenfolgelängen bearbeiten</link>"
+msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Bearbeiten von Zeichenkettenlängen\">Bearbeiten von Zeichenkettenlängen</link>"
#: 03120400.xhp
msgctxt ""
@@ -30558,7 +30590,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "The following functions determine string lengths and compare strings."
-msgstr "Hier finden Sie alle Funktionen, die Zeichenfolgenlängen ermitteln und Zeichenfolgen vergleichen."
+msgstr "Hier finden Sie alle Funktionen, die Zeichenkettenlängen ermitteln und Zeichenketten vergleichen."
#: 03120401.xhp
msgctxt ""
@@ -30590,7 +30622,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the position of a string within another string."
-msgstr "Gibt die Position einer in einem Zeichenfolgenausdruck vorhandenen Zeichenfolge zurück."
+msgstr "Gibt die Position einer vorhandenen Zeichenkette in einem anderen Zeichenkettenausdruck zurück."
#: 03120401.xhp
msgctxt ""
@@ -30598,7 +30630,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
-msgstr "Die InStr-Funktion gibt die Position des Zeichens zurück, ab dem die gesuchte Zeichenfolge in der zu durchsuchenden Zeichenfolge enthalten ist. Ist die gesuchte Zeichenfolge dort nicht enthalten, wird der Wert 0 zurückgegeben."
+msgstr "Die Funktion InStr gibt die Position des Zeichens zurück, ab dem die gesuchte Zeichenkette in der zu durchsuchenden Zeichenkette enthalten ist. Ist die gesuchte Zeichenkette dort nicht enthalten, wird der Wert 0 zurückgegeben."
#: 03120401.xhp
msgctxt ""
@@ -30670,7 +30702,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr "<emph>Vergleich:</emph> Optionaler, numerischer Ausdruck, der die Art des Zeichenfolgenvergleichs bestimmt. Dem Parameter kann der Wert 0 oder 1 zugewiesen werden. Die Voreinstellung 0 führt zu einem binären Vergleich, der Wert 1 zu einem Textvergleich ohne Berücksichtigung der Groß-/Kleinschreibung."
+msgstr "<emph>Vergleich:</emph> Optionaler, numerischer Ausdruck, der die Art des Zeichenkettenvergleichs bestimmt. Dem Parameter kann der Wert 0 oder 1 zugewiesen werden. Die Voreinstellung 0 führt zu einem binären Vergleich, der Wert 1 zu einem Textvergleich ohne Berücksichtigung der Groß-/Kleinschreibung."
#: 03120401.xhp
msgctxt ""
@@ -30782,7 +30814,7 @@ msgctxt ""
"par_id3147265\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression or a variable of another type."
-msgstr "<emph>Text:</emph> Ein beliebiger Zeichenfolgeausdruck oder eine Variable eines anderen Typs."
+msgstr "<emph>Text:</emph> Ein beliebiger Zeichenkettenausdruck oder eine Variable eines anderen Typs."
#: 03120402.xhp
msgctxt ""
@@ -30966,7 +30998,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the position of a string within another string, starting from the right side of the string."
-msgstr "Gibt die Position einer Zeichenfolge innerhalb einer anderen Zeichenfolge zurück, beginnend mit der rechten Seite der Zeichenfolge."
+msgstr "Gibt die Position einer Zeichenkette innerhalb einer anderen Zeichenkette zurück, beginnend mit der rechten Seite der Zeichenkette."
#: 03120411.xhp
msgctxt ""
@@ -30974,7 +31006,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0."
-msgstr "Die InStrRev-Funktion gibt die Position des Zeichens von rechts zurück, an der die gesuchte Zeichenfolge in der zu durchsuchenden Zeichenfolge enthalten ist. Ist die gesuchte Zeichenfolge dort nicht enthalten, wird der Wert 0 zurückgegeben."
+msgstr "Die Funktion InStrRev gibt die Position des Zeichens von rechts zurück, an der die gesuchte Zeichenkette in der zu durchsuchenden Zeichenkette enthalten ist. Ist die gesuchte Zeichenkette dort nicht enthalten, wird der Wert 0 zurückgegeben."
#: 03120411.xhp
msgctxt ""
@@ -31038,7 +31070,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
-msgstr "<emph>Anfang:</emph> Ein optionaler numerischer Ausdruck, der die Position <emph>von links</emph> innerhalb der Zeichenfolge festlegt, an der die Suche nach der angegebenen Teilzeichenfolge begonnen werden soll. Wird dieser Parameter übergangen, so beginnt die Suche beim letzten Zeichen der Zeichenkette. Der größte erlaubte Wert ist 65535."
+msgstr "<emph>Anfang:</emph> Ein optionaler numerischer Ausdruck, der die Position <emph>von links</emph> innerhalb der Zeichenkette festlegt, an der die Suche nach der angegebenen Teilzeichenkette begonnen werden soll. Wird dieser Parameter übergangen, so beginnt die Suche beim letzten Zeichen der Zeichenkette. Der größte erlaubte Wert ist 65535."
#: 03120411.xhp
msgctxt ""
@@ -31086,7 +31118,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
-msgstr ""
+msgstr "sInput = \"Eine Tanne ist eine Pflanze\""
#: 03120411.xhp
msgctxt ""
@@ -31094,7 +31126,7 @@ msgctxt ""
"par_id3154125\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"eine\",13,1) ' Ergibt 1, da Groß-/Kleinschreibung bei der Suche nicht berücksichtig wird"
#: 03120411.xhp
msgctxt ""
@@ -31102,7 +31134,7 @@ msgctxt ""
"par_id051920170322141162\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"eine\",13,0) ' Ergibt 0, da Groß-/Kleinschreibung bei der Suche berücksichtig wird"
#: 03120411.xhp
msgctxt ""
@@ -31142,7 +31174,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the string with the character order reversed."
-msgstr "Gibt die Zeichenfolge in umgekehrter Reihenfolge zurück."
+msgstr "Gibt die Zeichenkette in umgekehrter Reihenfolge zurück."
#: 03120412.xhp
msgctxt ""
@@ -31190,7 +31222,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
-msgstr "<emph>Text1:</emph> Der Zeichenfolgenausdruck, dessen Reihenfolge Sie umkehren möchten."
+msgstr "<emph>Text1:</emph> Der Zeichenkettenausdruck, dessen Reihenfolge Sie umkehren möchten."
#: 03120412.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Wenn Dienste mit Hilfe von XmultiServiceFactory instanziiert werden, gibt diese Laufzeitfunktion den zu verwendenden Standardkomponentenkontext zurück. Weitere Informationen finden Sie im Kapitel <item type=\"literal\">Professional UNO</item> im <item type=\"literal\">Developer's Guide</item> unter <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> (englisch)."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -34110,7 +34934,7 @@ msgctxt ""
"par_id051720170332428854\n"
"help.text"
msgid "Support for VBA is not complete, but it covers a large portion of the common usage patterns. Most macros use a manageable subset of objects in the Excel API (such as the Range, Worksheet, Workbook, etc.) and the support include those objects, and the most commonly used method/properties of those objects."
-msgstr ""
+msgstr "Die Unterstützung für VBA ist nicht komplett, sie umfasst aber einen großen Teil der allgemein gebräuchlichen Muster. Die meisten Makros nutzen eine überschaubare Untermenge von Objekten in der Excel-API (wie beispielsweise Bereich, Tabelle, Arbeitsmappe und so weiter) und die Unterstützung beinhalten diese Objekte und die meisten allgemein üblichen Methoden und Eigenschaften dieser Objekte."
#: vbasupport.xhp
msgctxt ""
@@ -34126,7 +34950,7 @@ msgctxt ""
"par_id051720170350147298\n"
"help.text"
msgid "Go to <item type=\"menuitem\">Tools – Options – Load / Save – VBA Properties</item> and mark the <emph>Excutable code</emph> checkbox. Then load or open your document."
-msgstr ""
+msgstr "Wählen Sie <item type=\"menuitem\">Extras - Optionen... - Laden/Speichern - VBA-Eigenschaften</item> und aktivieren Sie das Markierfeld <emph>Ausführbarer Code</emph>. Anschließend laden oder öffnen Sie Ihr Dokument."
#: vbasupport.xhp
msgctxt ""
@@ -34150,7 +34974,7 @@ msgctxt ""
"par_id051720170407404013\n"
"help.text"
msgid "Since support for VBA is not complete, you may have to edit the VBA code and complete the missing support with %PRODUCTNAME Basic objects, statements and functions."
-msgstr ""
+msgstr "Da die Unterstützung für VBA nicht komplett ist, müssen Sie möglicherweise den VBA-Code bearbeiten und die fehlende Unterstützung mit %PRODUCTNAME Basic-Objekten, -Anweisungen und -Funktionen vervollständigen."
#: vbasupport.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index ab448563dd8..a22ca14ddeb 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 07:32+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2017-06-18 02:08+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496647960.000000\n"
+"X-POOTLE-MTIME: 1497751693.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/back\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/back\">Springt um eine Formelkomponente zurück. Dabei wird die jeweilige Komponente hervorgehoben.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -16126,7 +16126,7 @@ msgctxt ""
"par_id3149798\n"
"help.text"
msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
-msgstr "Da Matrixformeln den Arbeitsspeicher nicht sonderlich belasten, können sie auch als Platz sparende Alternative eingesetzt werden, wenn mehrere Werte zu berechnen sind. Darüber hinaus stellen Matrizen ein unverzichtbares Hilfsmittel für komplexe Berechnungen dar, denn sie erlauben es, mehrere Zellbereiche einzubeziehen. $[officename] bietet verschiedene mathematische Funktionen für Matrizen wie beispielsweise MMULT zur Multiplikation zweier Matrizen oder SUMMENPRODUKT zur Ermittlung des skalaren Produkts zweier Matrizen."
+msgstr "Da Matrixformeln den Arbeitsspeicher nicht sonderlich belasten, können sie auch als platzsparende Alternative eingesetzt werden, wenn mehrere Werte zu berechnen sind. Darüber hinaus stellen Matrizen ein unverzichtbares Hilfsmittel für komplexe Berechnungen dar, denn sie erlauben es, mehrere Zellbereiche einzubeziehen. $[officename] bietet verschiedene mathematische Funktionen für Matrizen wie beispielsweise MMULT zur Multiplikation zweier Matrizen oder SUMMENPRODUKT zur Ermittlung des skalaren Produkts zweier Matrizen."
#: 04060107.xhp
msgctxt ""
@@ -16382,7 +16382,7 @@ msgctxt ""
"par_id3154419\n"
"help.text"
msgid "Paste the formula by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V in the selected space and confirm it by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The selected range now contains the array formula."
-msgstr "Fügen Sie die Formel mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+V in den markierten Bereich ein und schließen Sie mit Umschalt+<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Eingabetaste dei EIngabe ab. Der ausgewählte Bereich enthält nun die Matrixformel."
+msgstr "Fügen Sie die Formel mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+V in den markierten Bereich ein und schließen Sie mit Umschalt+<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Eingabetaste die Eingabe ab. Der ausgewählte Bereich enthält nun die Matrixformel."
#: 04060107.xhp
msgctxt ""
@@ -17262,7 +17262,7 @@ msgctxt ""
"par_id3154073\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MDET\">Returns the array determinant of an array.</ahelp> This function returns a value in the current cell; it is not necessary to define a range for the results."
-msgstr "<ahelp hid=\"HID_FUNC_MDET\">Ergibt die Determinante einer Matrix.</ahelp> Diese Funktion ergibt als Ergebnis einen Wert in der aktuellen Zelle. Sie müssen keinen Bereich für die Ausgabe des Ergebnisses definieren."
+msgstr "<ahelp hid=\"HID_FUNC_MDET\">Ergibt die Determinante einer Matrix.</ahelp> Diese Funktion gibt als Ergebnis einen Wert in der aktuellen Zelle zurück. Sie müssen keinen Bereich für die Ausgabe des Ergebnisses definieren."
#: 04060107.xhp
msgctxt ""
@@ -17502,7 +17502,7 @@ msgctxt ""
"par_id3159366\n"
"help.text"
msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
-msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens dieselbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus, und drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Umschalt+Befehl+Eingabetaste</caseinline><defaultinline>Umschalt+Strg+Eingabetaste</defaultinline></switchinline>. Anderenfalls, wenn Sie mit dem <emph>Funktions-Assistenten</emph> arbeiten, aktivieren Sie das Markierfeld<emph>Matrix</emph>. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt."
+msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens dieselbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus, und drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Umschalt+Befehl+Eingabetaste</caseinline><defaultinline>Umschalt+Strg+Eingabetaste</defaultinline></switchinline>. Anderenfalls, wenn Sie mit dem <emph>Funktions-Assistenten</emph> arbeiten, aktivieren Sie das Markierfeld <emph>Matrix</emph>. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt."
#: 04060107.xhp
msgctxt ""
@@ -17582,7 +17582,7 @@ msgctxt ""
"par_id3154428\n"
"help.text"
msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
-msgstr "<emph>DatenX</emph> ist eine Zeile oder Spalte, die die X-Koordinaten bestimmt. Wenn <emph>DatenX</emph> fehlt, ist es standardmäßig <item type=\"literal\">1, 2, 3, ..., n</item> Wenn es mehr als eine Menge von Variablen gibt, kann <emph>DatenX</emph> ein Bereich von mehreren Zeilen oder Spalten sein."
+msgstr "<emph>DatenX</emph> ist eine Zeile oder Spalte, die die X-Koordinaten bestimmt. Wenn <emph>DatenX</emph> fehlt, ist es standardmäßig <item type=\"literal\">1, 2, 3, ..., n</item>. Wenn es mehr als eine Menge von Variablen gibt, kann <emph>DatenX</emph> ein Bereich von mehreren Zeilen oder Spalten sein."
#: 04060107.xhp
msgctxt ""
@@ -19902,7 +19902,7 @@ msgctxt ""
"par_id3147169\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
-msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Ergibt den durch eine Zeichenfolge angegebenen <emph>Bezug</emph>.</ahelp> Diese Funktion kann auch einen Bereich aus einer entsprechenden Zeichenfolge erzeugen."
+msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Gibt den durch eine Zeichenkette angegebenen <emph>Bezug</emph> zurück.</ahelp> Diese Funktion kann auch einen Bereich aus einer entsprechenden Zeichenkette zurückgeben."
#: 04060109.xhp
msgctxt ""
@@ -20294,7 +20294,7 @@ msgctxt ""
"par_id3150309\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
-msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Ergibt die Tabellennummer eines Bezugs oder einer Zeichenfolge, die einen Tabellennamen darstellt.</ahelp> Ist kein Parameter angegeben, ist das Ergebnis die Tabellennummer der Tabelle, in der die Formel steht."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Ergibt die Tabellennummer eines Bezugs oder einer Zeichenkette, die einen Tabellennamen darstellt.</ahelp> Ist kein Parameter angegeben, ist das Ergebnis die Tabellennummer der Tabelle, in der die Formel steht."
#: 04060109.xhp
msgctxt ""
@@ -21262,7 +21262,7 @@ msgctxt ""
"par_id0907200912224534\n"
"help.text"
msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
-msgstr "=HYPERLINK(\"http://www.example.org\";12345) zeigt die Zahl 12345 an, und führt den Hyperlink http://www.example.org aus, wenn darauf geklickt wird."
+msgstr "=HYPERLINK(\"http://www.beispiel.org\";12345) zeigt die Zahl 12345 an, und führt den Hyperlink http://www.beispiel.org aus, wenn auf diesen geklickt wird."
#: 04060109.xhp
msgctxt ""
@@ -21278,7 +21278,7 @@ msgctxt ""
"par_idN11830\n"
"help.text"
msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Klicken Sie auf \") & \"beispiel.org\"</item> zeigt in der Zelle den Text \"Klicken Sie auf example.org\" an und führt den Hyperlink http://www.beispiel.org aus, wenn auf diesen geklickt wird."
+msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Klicken Sie auf \") & \"beispiel.org\"</item> zeigt in der Zelle den Text \"Klicken Sie auf beispiel.org\" an und führt den Hyperlink http://www.beispiel.org aus, wenn auf diesen geklickt wird."
#: 04060109.xhp
msgctxt ""
@@ -21414,7 +21414,7 @@ msgctxt ""
"par_id7928708\n"
"help.text"
msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr "Falls keine Bedingung mittels Seitenfeld angegeben ist, wird der für das Feld auswählte Eintrag stillschweigend benutzt. Wenn eine Bedingung mittels Seitenfeld angegeben ist, muss sie zu dem ausgewählten Wert des Seitenfeldes passen, sonst wird ein Fehler zurückgegeben. Seitenfelder sind die Felder oben links in einer Pivot-Tabelle, erstellt durch den Bereich \"Seitenfelder\" im Dialog Pivot-Tabelle. Aus jedem Seitenfeld kann ein Element (Wert) ausgewählt werden, sodass nur dieses Element in die Berechnung einbezogen wird."
+msgstr "Falls keine Bedingung mittels Seitenfeld angegeben ist, wird der für das Feld ausgewählte Eintrag stillschweigend benutzt. Wenn eine Bedingung mittels Seitenfeld angegeben ist, muss sie zu dem ausgewählten Wert des Seitenfeldes passen, sonst wird ein Fehler zurückgegeben. Seitenfelder sind die Felder oben links in einer Pivot-Tabelle, erstellt durch den Bereich \"Seitenfelder\" im Dialog Pivot-Tabelle. Aus jedem Seitenfeld kann ein Element (Wert) ausgewählt werden, sodass nur dieses Element in die Berechnung einbezogen wird."
#: 04060109.xhp
msgctxt ""
@@ -21422,7 +21422,7 @@ msgctxt ""
"par_id3864253\n"
"help.text"
msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
-msgstr "Teilergebnisse aus der Pivot-Tabelle sind nur erreichbar, wenn als Funktion \"Automatisch\" eingestellt ist (außer wenn die Funktion in der Bedingung angegeben ist, siehe unten<item type=\"literal\">Zweite Syntaxvariante</item>)."
+msgstr "Teilergebnisse aus der Pivot-Tabelle sind nur erreichbar, wenn als Funktion \"Automatisch\" eingestellt ist (außer wenn die Funktion in der Bedingung angegeben ist, siehe unten <item type=\"literal\">Zweite Syntaxvariante</item>)."
#: 04060109.xhp
msgctxt ""
@@ -21470,7 +21470,7 @@ msgctxt ""
"par_id3168736\n"
"help.text"
msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
-msgstr "Ein Funktionsname kann in Form von <emph>Feld[Element;Funktion]</emph> hinzugefügt werden, wodurch nur Teilergebnisse abgeglichen werden, die diese Funktion verwenden. Mögliche Funktionsnamen sind Summe, Count, Durchschnitt, Max, Min, Produkt, Count (nur Zahlen), StAbw (Stichprobe), StAbwN (Gesamtheit), Varianz (Stichprobe) und Varianzen (Gesamtheit), Groß-/Kleinbuchstaben-unabhängig."
+msgstr "Ein Funktionsname kann in Form von <emph>Feld[Element;Funktion]</emph> hinzugefügt werden, wodurch nur Teilergebnisse abgeglichen werden, die diese Funktion verwenden. Mögliche Funktionsnamen sind Summe, Count, Durchschnitt, Max, Min, Produkt, Count (nur Zahlen), StAbw (Stichprobe), StAbwN (Gesamtheit), Varianz (Stichprobe) und Varianzen (Gesamtheit), ohne Berücksichtigung der Groß- und Kleinschreibung."
#: 04060110.xhp
msgctxt ""
@@ -21766,7 +21766,7 @@ msgctxt ""
"par_id3148746\n"
"help.text"
msgid "<emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
-msgstr "<emph>Mindestlänge</emph> (optional) bestimmt die Mindestlänge der erstellten Zeichenfolge. Wenn der Text kürzer als die angegebene Mindestlänge ist, werden links neben der Zeichenfolge Nullen hinzugefügt."
+msgstr "<emph>Mindestlänge</emph> (optional) bestimmt die Mindestlänge der erstellten Zeichenkette. Wenn der Text kürzer als die angegebene Mindestlänge ist, werden links neben der Zeichenkette Nullen hinzugefügt."
#: 04060110.xhp
msgctxt ""
@@ -21966,7 +21966,7 @@ msgctxt ""
"par_id3152770\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_CODE\">Ergibt den numerischen Code des ersten Zeichen eines Textes bzw. einer Zeichenfolge.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CODE\">Ergibt den numerischen Code des ersten Zeichen eines Textes bzw. einer Zeichenkette.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -22102,7 +22102,7 @@ msgctxt ""
"par_id3156361\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Wandelt Text mit Zeichen aus einem <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"Zahlensystem\">Zahlensystem</link> in eine positive Ganzzahl in der gegebenen Zahlenbasis um.</ahelp> Die Zahlenbasis muss im Bereich von 2 bis 36 liegen. Leer- und Tabulatorzeichen und werden ignoriert. Das Feld <emph>Text</emph> unterscheidet nicht zwischen Groß- und Kleinschreibung."
+msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Wandelt Text mit Zeichen aus einem <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"Zahlensystem\">Zahlensystem</link> in eine positive Ganzzahl in der gegebenen Zahlenbasis um.</ahelp> Die Zahlenbasis muss im Bereich von 2 bis 36 liegen. Leer- und Tabulatorzeichen werden ignoriert. Das Feld <emph>Text</emph> unterscheidet nicht zwischen Groß- und Kleinschreibung."
#: 04060110.xhp
msgctxt ""
@@ -22494,7 +22494,7 @@ msgctxt ""
"par_id3145208\n"
"help.text"
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
-msgstr "<item type=\"input\">=FEST(1234567,89;3)</item> ergibt 1.234.567,890 als Zeichenfolge."
+msgstr "<item type=\"input\">=FEST(1234567,89;3)</item> ergibt 1.234.567,890 als Zeichenkette."
#: 04060110.xhp
msgctxt ""
@@ -22502,7 +22502,7 @@ msgctxt ""
"par_id5282143\n"
"help.text"
msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FEST(1234567,89;3;1)</item> ergibt 1234567,890 als Zeichenfolge."
+msgstr "<item type=\"input\">=FEST(1234567,89;3;1)</item> ergibt 1234567,890 als Zeichenkette."
#: 04060110.xhp
msgctxt ""
@@ -22526,7 +22526,7 @@ msgctxt ""
"par_id964384\n"
"help.text"
msgid "<ahelp hid=\".\">The JIS function converts half-width to full-width ASCII and katakana characters. Returns a text string.</ahelp>"
-msgstr "<ahelp hid=\".\">Die Funktion JIS wandelt ASCII- und Katakana-Zeichen halber Breite in normale Breite um. Ergibt eine Zeichenfolge.</ahelp>"
+msgstr "<ahelp hid=\".\">Die Funktion JIS wandelt ASCII- und Katakana-Zeichen halber Breite in normale Breite um. Ergibt eine Zeichenkette.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id2950147\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LENB\">For double-byte character set (DBCS) languages, returns the number of bytes used to represent the characters in a text string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LENB\">Ergibt die Anzahl der Bytes für Double-Byte-Zeichensatz-Sprachen (DBCS), die zur Darstellung der Zeichen in einer Zeichenfolge benutzt werden.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LENB\">Ergibt die Anzahl der Bytes für Double-Byte-Zeichensatz-Sprachen (DBCS), die zur Darstellung der Zeichen in einer Zeichenkette benutzt werden.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -22998,7 +22998,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TEIL\">Ergibt eine Zeichenfolge des Textes. Die Parameter geben die Ausgangsposition und die Zeichenanzahl an.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TEIL\">Ergibt eine Zeichenkette des Textes. Die Parameter geben die Ausgangsposition und die Zeichenanzahl an.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -23078,7 +23078,7 @@ msgctxt ""
"par_id2954938\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MIDB\">Returns a text string of a DBCS text. The parameters specify the starting position and the number of characters.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_MIDB\">Ergibt eine Zeichenfolge des DBCS-Textes. Die Parameter geben die Ausgangsposition und die Zeichenanzahl an.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MIDB\">Ergibt eine Zeichenkette des DBCS-Textes. Die Parameter geben die Ausgangsposition und die Zeichenanzahl an.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -23134,7 +23134,7 @@ msgctxt ""
"par_id2958417\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";1;0)</item> returns \"\" (0 bytes is always an empty string)."
-msgstr "<item type=\"input\">TEILB(\"中国\";1;0)</item> ergibt \"\" (0 Bytes entsprechen immer einer leeren Zeichenfolge)."
+msgstr "<item type=\"input\">TEILB(\"中国\";1;0)</item> ergibt \"\" (0 Bytes entsprechen immer einer leeren Zeichenkette)."
#: 04060110.xhp
msgctxt ""
@@ -23174,7 +23174,7 @@ msgctxt ""
"par_id2958467\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";2;1)</item> returns \" \" (byte position 2 is not at the beginning of a character in a DBCS string; 1 space character is returned)."
-msgstr "<item type=\"input\">TEILB(\"中国\";2;1)</item> ergibt \" \" (die 2. Byteposition ist nicht am Anfang eines Zeichens einer DBCS-Zeichenfolge; deshalb wird ersatzweise ein Leerzeichen zurückgegeben)."
+msgstr "<item type=\"input\">TEILB(\"中国\";2;1)</item> ergibt \" \" (die 2. Byteposition ist nicht am Anfang eines Zeichens einer DBCS-Zeichenkette; deshalb wird ersatzweise ein Leerzeichen zurückgegeben)."
#: 04060110.xhp
msgctxt ""
@@ -23182,7 +23182,7 @@ msgctxt ""
"par_id2958477\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";2;2)</item> returns \" \" (byte position 2 points to the last half of the first character in the DBCS string; the 2 bytes asked for therefore constitutes the last half of the first character and the first half of the second character in the string; 2 space characters are therefore returned)."
-msgstr "<item type=\"input\">TEILB(\"中国\";2;2)</item> ergibt \" \" (die 2. Byteposition ist nicht am Anfang eines Zeichens einer DBCS-Zeichenfolge; die 2 Bytes, die zurückgegeben werden sollen, bilden stattdessen die zweite Hälfte des ersten Zeichens und die erste Hälfte des zweiten Zeichens in der Zeichenfolge; deshalb werden ersatzweise zwei Leerzeichen zurückgegeben)."
+msgstr "<item type=\"input\">TEILB(\"中国\";2;2)</item> ergibt \" \" (die 2. Byteposition ist nicht am Anfang eines Zeichens einer DBCS-Zeichenkette; die 2 Bytes, die zurückgegeben werden sollen, bilden stattdessen die zweite Hälfte des ersten Zeichens und die erste Hälfte des zweiten Zeichens in der Zeichenkette; deshalb werden ersatzweise zwei Leerzeichen zurückgegeben)."
#: 04060110.xhp
msgctxt ""
@@ -23190,7 +23190,7 @@ msgctxt ""
"par_id2958487\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";2;3)</item> returns \" 国\" (byte position 2 is not at the beginning of a character in a DBCS string; a space character is returned for byte position 2)."
-msgstr "<item type=\"input\">TEILB(\"中国\";2;3)</item> ergibt \" 国\" (die 2. Byteposition ist nicht am Anfang eines Zeichens einer DBCS-Zeichenfolge; deshalb wird ersatzweise ein Leerzeichen für die 2. Byteposition zurückgegeben)."
+msgstr "<item type=\"input\">TEILB(\"中国\";2;3)</item> ergibt \" 国\" (die 2. Byteposition ist nicht am Anfang eines Zeichens einer DBCS-Zeichenkette; deshalb wird ersatzweise ein Leerzeichen für die 2. Byteposition zurückgegeben)."
#: 04060110.xhp
msgctxt ""
@@ -23198,7 +23198,7 @@ msgctxt ""
"par_id2958497\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";3;1)</item> returns \" \" (byte position 3 is at the beginning of a character in a DBCS string, but 1 byte is only half a DBCS character and a space character is therefore returned instead)."
-msgstr "<item type=\"input\">TEILB(\"中国\";3;1)</item> ergibt \" \" (die 3. Byteposition am Anfang eines Zeichens einer DBCS-Zeichenfolge, aber 1 Byte ist lediglich ein halbes DBCS-Zeichen, deshalb wird ersatzweise ein Leerzeichen zurückgegeben)."
+msgstr "<item type=\"input\">TEILB(\"中国\";3;1)</item> ergibt \" \" (die 3. Byteposition am Anfang eines Zeichens einer DBCS-Zeichenkette, aber 1 Byte ist lediglich ein halbes DBCS-Zeichen, deshalb wird ersatzweise ein Leerzeichen zurückgegeben)."
#: 04060110.xhp
msgctxt ""
@@ -23206,7 +23206,7 @@ msgctxt ""
"par_id2958507\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";3;2)</item> returns \"国\" (byte position 3 is at the beginning of a character in a DBCS string, and 2 bytes constitute one DBCS character)."
-msgstr "<item type=\"input\">TEILB(\"中国\";3;2)</item> ergibt \"国\" (die 3. Byteposition ist am Anfang eines Zeichens einer DBCS-Zeichenfolge und 2 Bytes bilden ein DBCS-Zeichen)."
+msgstr "<item type=\"input\">TEILB(\"中国\";3;2)</item> ergibt \"国\" (die 3. Byteposition ist am Anfang eines Zeichens einer DBCS-Zeichenkette und 2 Bytes bilden ein DBCS-Zeichen)."
#: 04060110.xhp
msgctxt ""
@@ -23214,7 +23214,7 @@ msgctxt ""
"par_id2958517\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"office\";2;3)</item> returns \"ffi\" (byte position 2 is at the beginning of a character in a non-DBCS string, and 3 bytes of a non-DBCS string constitute 3 characters)."
-msgstr "<item type=\"input\">TEILB(\"Büro\";2;3)</item> ergibt \"üro\" (die 2. Byteposition ist am Anfang eines Zeichens einer nicht-DBCS-Zeichenfolge und 3 Bytes einer nicht-DBCS-Zeichenfolge bilden 3 Zeichen)."
+msgstr "<item type=\"input\">TEILB(\"Büro\";2;3)</item> ergibt \"üro\" (die 2. Byteposition ist am Anfang eines Zeichens einer nicht-DBCS-Zeichenkette und 3 Bytes einer nicht-DBCS-Zeichenkette bilden 3 Zeichen)."
#: 04060110.xhp
msgctxt ""
@@ -23942,7 +23942,7 @@ msgctxt ""
"par_id3154359\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_T\">Diese Funktion ergibt den Zieltext oder eine leere Zeichenfolge, wenn das Ziel kein Text ist.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_T\">Diese Funktion ergibt den Zieltext oder eine leere Zeichenkette, wenn das Ziel kein Text ist.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -23966,7 +23966,7 @@ msgctxt ""
"par_id3154726\n"
"help.text"
msgid "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
-msgstr "Wenn <emph>Wert</emph> eine Zeichenfolge ist oder sich auf eine Zeichenfolge bezieht, ergibt T die Zeichenfolge; anderenfalls ergibt T eine leere Zeichenfolge."
+msgstr "Wenn <emph>Wert</emph> eine Zeichenkette ist oder sich auf eine Zeichenkette bezieht, ergibt T die Zeichenkette; anderenfalls ergibt T eine leere Zeichenkette."
#: 04060110.xhp
msgctxt ""
@@ -24094,7 +24094,7 @@ msgctxt ""
"par_id3157888\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">Entfernt Leerstellen aus einer Zeichenfolge und lässt nur einzelne Leerzeichen zwischen Worten stehen.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">Entfernt Leerstellen aus einer Zeichenkette und lässt nur einzelne Leerzeichen zwischen Worten stehen.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -24222,7 +24222,7 @@ msgctxt ""
"par_id0907200904022594\n"
"help.text"
msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
-msgstr "<ahelp hid=\".\" >Ergibt den Code des ersten Unicode-Zeichens einer Zeichenfolge.</ahelp>"
+msgstr "<ahelp hid=\".\" >Ergibt den Code des ersten Unicode-Zeichens einer Zeichenkette.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -26326,7 +26326,7 @@ msgctxt ""
"par_id3154474\n"
"help.text"
msgid "String with closing zero byte"
-msgstr "Zeichenfolge mit abschließendem Null-Byte"
+msgstr "Zeichenkette mit abschließendem Null-Byte"
#: 04060112.xhp
msgctxt ""
@@ -26734,7 +26734,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "If type == 1: String with closing zero byte"
-msgstr "Wenn Type == 1: Zeichenfolge mit abschließendem Null-Byte"
+msgstr "Wenn Type == 1: Zeichenkette mit abschließendem Null-Byte"
#: 04060112.xhp
msgctxt ""
@@ -26838,7 +26838,7 @@ msgctxt ""
"par_id3151392\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function In(x)"
-msgstr ""
+msgstr "<emph>N</emph> ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion In(x) angibt."
#: 04060115.xhp
msgctxt ""
@@ -26918,7 +26918,7 @@ msgctxt ""
"par_id3145638\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Jn(x)"
-msgstr ""
+msgstr "<emph>N</emph> ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion Jn(x) angibt."
#: 04060115.xhp
msgctxt ""
@@ -26998,7 +26998,7 @@ msgctxt ""
"par_id3150024\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Kn(x)"
-msgstr ""
+msgstr "<emph>N</emph> ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion Kn(x) angibt."
#: 04060115.xhp
msgctxt ""
@@ -27078,7 +27078,7 @@ msgctxt ""
"par_id3147421\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Yn(x)"
-msgstr ""
+msgstr "<emph>N</emph> ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion Yn(x) angibt."
#: 04060115.xhp
msgctxt ""
@@ -27958,7 +27958,7 @@ msgctxt ""
"par_id3152810\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Zahl</emph> ist eine Hexadezimalzahl oder eine Zeichenfolge, die eine Hexadezimalzahl darstellt. Die Zahl kann aus maximal 10 Stellen bestehen. Das höchstwertige Bit ist das Vorzeichenbit, die folgenden Bits geben den Wert zurück. Negative Zahlen werden als Zweierkomplement eingegeben."
+msgstr "<emph>Zahl</emph> ist eine Hexadezimalzahl oder eine Zeichenkette, die eine Hexadezimalzahl darstellt. Die Zahl kann aus maximal 10 Stellen bestehen. Das höchstwertige Bit ist das Vorzeichenbit, die folgenden Bits geben den Wert zurück. Negative Zahlen werden als Zweierkomplement eingegeben."
#: 04060115.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id3159176\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Zahl</emph> ist eine Hexadezimalzahl oder eine Zeichenfolge, die eine Hexadezimalzahl darstellt. Die Zahl kann aus maximal 10 Stellen bestehen. Das höchstwertige Bit ist das Vorzeichenbit, die folgenden Bits geben den Wert zurück. Negative Zahlen werden als Zweierkomplement eingegeben."
+msgstr "<emph>Zahl</emph> ist eine Hexadezimalzahl oder eine Zeichenkette, die eine Hexadezimalzahl darstellt. Die Zahl kann aus maximal 10 Stellen bestehen. Das höchstwertige Bit ist das Vorzeichenbit, die folgenden Bits geben den Wert zurück. Negative Zahlen werden als Zweierkomplement eingegeben."
#: 04060115.xhp
msgctxt ""
@@ -28094,7 +28094,7 @@ msgctxt ""
"par_id3152795\n"
"help.text"
msgid "<emph>Number</emph> is a hexadecimal number or a string that represents a hexadecimal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
-msgstr "<emph>Zahl</emph> ist eine Hexadezimalzahl oder eine Zeichenfolge, die eine Hexadezimalzahl darstellt. Sie kann aus maximal 10 Stellen bestehen. Das höchstwertige Bit ist das Vorzeichenbit, die folgenden Bits geben den Wert zurück. Negative Zahlen werden als Zweierkomplement eingegeben."
+msgstr "<emph>Zahl</emph> ist eine Hexadezimalzahl oder eine Zeichenkette, die eine Hexadezimalzahl darstellt. Sie kann aus maximal 10 Stellen bestehen. Das höchstwertige Bit ist das Vorzeichenbit, die folgenden Bits geben den Wert zurück. Negative Zahlen werden als Zweierkomplement eingegeben."
#: 04060115.xhp
msgctxt ""
@@ -35326,7 +35326,7 @@ msgctxt ""
"par_id3150142\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
-msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Die Werte in der Argumentliste werden gezählt.</ahelp> Dabei werden selbst Texteinträge berücksichtigt, die eine leere Zeichenfolge der Länge 0 enthalten. Leere Zellen bleiben unberücksichtigt, wenn es sich bei dem Argument um eine Matrix oder einen Bezug handelt."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Die Werte in der Argumentliste werden gezählt.</ahelp> Dabei werden selbst Texteinträge berücksichtigt, die eine leere Zeichenkette der Länge 0 enthalten. Leere Zellen bleiben unberücksichtigt, wenn es sich bei dem Argument um eine Matrix oder einen Bezug handelt."
#: 04060181.xhp
msgctxt ""
@@ -35494,7 +35494,7 @@ msgctxt ""
"par_id3165000\n"
"help.text"
msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. If regular expressions are enabled in calculation options you may also enter a search text in the form of a regular expression, e.g. b.* for all cells that begin with b. If wildcards are enabled in calculation options you may enter a search text with wildcards, e.g. b* for all cells that begin with b. You may also indicate a cell address that contains the search criterion. If you search for literal text, enclose the text in double quotes."
-msgstr "<emph>Bedingungen</emph> legt die Bedingungen in Form einer Zahl, eines Ausdrucks oder einer Zeichenfolge fest. Diese Bedingungen legen fest, welche Zellen gezählt werden. Wenn reguläre Ausdrücke in den Optionen aktiviert sind, können Sie sogar einen Suchtext mit regulären Ausdrücken verwenden, beispielsweise b.* für alle Zellen, die mit b beginnen. Wenn Platzhalter in den Optionen aktiviert sind, können Sie auch einen Suchtext mit Platzhaltern verwenden, wie beispielsweise b* für alle Zellen, die mit b beginnen. Sie können auch einen Bezug zu einer Zelle angeben, die das Suchkriterium enthält. Wenn Sie nach Zeichenfolgen suchen, müssen Sie diese in doppelte Anführungszeichen einschließen."
+msgstr "<emph>Bedingungen</emph> legt die Bedingungen in Form einer Zahl, eines Ausdrucks oder einer Zeichenkette fest. Diese Bedingungen legen fest, welche Zellen gezählt werden. Wenn reguläre Ausdrücke in den Optionen aktiviert sind, können Sie sogar einen Suchtext mit regulären Ausdrücken verwenden, beispielsweise b.* für alle Zellen, die mit b beginnen. Wenn Platzhalter in den Optionen aktiviert sind, können Sie auch einen Suchtext mit Platzhaltern verwenden, wie beispielsweise b* für alle Zellen, die mit b beginnen. Sie können auch einen Bezug zu einer Zelle angeben, die das Suchkriterium enthält. Wenn Sie nach Zeichenketten suchen, müssen Sie diese in doppelte Anführungszeichen einschließen."
#: 04060181.xhp
msgctxt ""
@@ -49990,7 +49990,7 @@ msgctxt ""
"par_id3145228\n"
"help.text"
msgid "This option will apply a defined style depending on a date that you choose in the drop down box: Today - Yesterday - Tomorrow - Last 7 days - This week - Last week."
-msgstr "Diese Option weist eine Formatvorlage abhängig von einem Datum zu, das Sie im Aufklappmenü ausgewähen: Heute - Gestern - Morgen - Letzte 7 Tage - Diese Woche - Letzte Woche."
+msgstr "Diese Option weist eine Formatvorlage abhängig von einem Datum zu, welches Sie im Aufklappfeld auswählen können: Heute - Gestern - Morgen - Letzte 7 Tage - Diese Woche - Letzte Woche."
#: 05120000.xhp
msgctxt ""
@@ -49998,7 +49998,7 @@ msgctxt ""
"par_id31494157\n"
"help.text"
msgid "In front of <emph>Apply Styles</emph>, select the desired style in the list or chose <emph>New Style</emph> to create one."
-msgstr "Wählen Sie in der Liste vor der <emph>Beispiel-Vorschau</emph> die gewünschte Vorlage aus oder wählen Sie <emph>Neue Vorlage...</emph>, um eine neue zu erstellen."
+msgstr "Wählen Sie in der Liste vor der <emph>Beispiel-Vorschau</emph> die gewünschte Vorlage aus oder wählen Sie <emph>Neue Vorlage...</emph>, um eine neue Vorlage zu erstellen."
#: 05120000.xhp
msgctxt ""
@@ -51886,7 +51886,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natürliche Sortierung ist ein Sortieralgorithmus, der mit einer Zeichenfolge vorangestellte Zahlen sortiert, die auf den Wert des Zahlenelements in jeder sortierten Zahl basiert, anstatt auf der traditionellen Art sie als gewöhnliche Zeichenfolgen zu sortieren.</ahelp> Lassen Sie uns zum Beispiel annehmen, Sie haben eine Wertereihe wie A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. Wenn Sie diese Werte in einen Zellenbereich bringen und sie sortieren lassen, wird A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9 herauskommen. Während dieses Sortierverhalten vielleicht für die Sinn macht, die den zugrunde liegenden Sortiermechanismus verstehen, scheint er für den Rest der Bevölkerung verwirrend oder zumindest unpraktisch. Mit der aktivierten Funktion Natürliche Sortierung werden die die im obigen Beispiel angegebenen Werte „richtig“ sortiert, was den Komfort der Sortieroperationen im Allgemeinen verbessert."
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natürliche Sortierung ist ein Sortieralgorithmus, der mit einer Zeichenkette vorangestellte Zahlen sortiert, die auf den Wert des Zahlenelements in jeder sortierten Zahl basiert, anstatt auf der traditionellen Art sie als gewöhnliche Zeichenketten zu sortieren.</ahelp> Nehmen Sie beispielsweise eine Wertereihe wie A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. Wenn Sie diese Werte in einen Zellenbereich bringen und sie sortieren lassen, wird A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9 herauskommen. Während dieses Sortierverhalten vielleicht für die Sinn macht, die den zugrunde liegenden Sortiermechanismus verstehen, scheint er für den Rest der Bevölkerung verwirrend oder zumindest unpraktisch. Mit der aktivierten Funktion Natürliche Sortierung werden die die im obigen Beispiel angegebenen Werte „richtig“ sortiert, was den Komfort der Sortieroperationen im Allgemeinen verbessert."
#: 12030200.xhp
msgctxt ""
@@ -55638,7 +55638,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
-msgstr "Gestatten Sie nur Werte oder Zeichenfolgen gemäß einer Liste. Zeichenfolgen und Werte können gemischt werden. Zahlen werden entsprechend ihres Wertes ausgewertet, wenn Sie also die Zahl 1 in die Liste eingeben, ist auch der Eintrag 100% gültig."
+msgstr "Gestatten Sie nur Werte oder Zeichenkette gemäß einer Liste. Zeichenketten und Werte können gemischt werden. Zahlen werden entsprechend ihres Wertes ausgewertet, wenn Sie also die Zahl 1 in die Liste eingeben, ist auch der Eintrag 100% gültig."
#: 12120100.xhp
msgctxt ""
@@ -55686,7 +55686,7 @@ msgctxt ""
"par_idN1070D\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/showlist\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/showlist\">Zeigt eine Liste aller gültigen Zeichenfolgen oder Werte an, unter denen ausgewählt werden kann. Die Liste kann auch durch Auswählen der Zelle und Drücken von <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+D geöffnet werden.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/showlist\">Zeigt eine Liste aller gültigen Zeichenketten oder Werte an, unter denen ausgewählt werden kann. Die Liste kann auch durch Auswählen der Zelle und Drücken von <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+D geöffnet werden.</ahelp>"
#: 12120100.xhp
msgctxt ""
@@ -55734,7 +55734,7 @@ msgctxt ""
"par_idN1075E\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/minlist\">Enter the entries that will be valid values or text strings.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/minlist\">Geben Sie die Einträge ein, die gültige Werte oder Textzeichenfolgen sein werden.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/validationcriteriapage/minlist\">Geben Sie die Einträge ein, die gültige Werte oder Textzeichenketten sind.</ahelp>"
#: 12120100.xhp
msgctxt ""
@@ -56054,7 +56054,7 @@ msgctxt ""
"par_id231020162249541102\n"
"help.text"
msgid "<emph>Weekend</emph> is an optional parameter – a number or a string used to specify the days of the week that are weekend days and are not considered working days. Weekend is a weekend number or string that specifies when weekends occur. Weekend number values indicate the following weekend days:"
-msgstr "<emph>Wochenende</emph> ist ein optionaler Parameter – eine Zahl oder eine Zeichenfolge, um die Tage der Woche festzulegen, welche Wochenende sind und nicht als Arbeitstage berücksichtigt werden. Wochenende ist eine Zahl oder Zeichenfolge, die festlegt, welce Tage Wochenende sind. Zahlwerte für Wochenende legen folgende Tage als Wochenende fest:"
+msgstr "<emph>Wochenende</emph> ist ein optionaler Parameter – eine Zahl oder eine Zeichenkette, um die Tage der Woche festzulegen, welche Wochenende sind und nicht als Arbeitstage berücksichtigt werden. Wochenende ist eine Zahl oder Zeichenkette, die festlegt, welche Tage Wochenende sind. Zahlwerte für Wochenende legen folgende Tage als Wochenende fest:"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56206,7 +56206,7 @@ msgctxt ""
"par_id231020162249555313\n"
"help.text"
msgid "Weekend string provides another way to define the weekly non-working days. It must have seven (7) characters – zeros (0) for working day and ones (1) for non-working day. Each character represents a day of the week, starting with Monday. Only 1 and 0 are valid. “1111111” is an invalid string and should not be used. For example, the weekend string “0000011” defines Saturday and Sunday as non-working days."
-msgstr "Zeichenfolgen für Wochenende stellen eine andere Art dar, um die wöchentlichen Nichtarbeitstage festzulegen. Sie muss sieben (7) Zeichen haben – Nullen (0) für Arbeitstage und Einsen (1) für Nichtarbeitstage. Jedes Zeichen stellt einen Tag der Woche dar, beginnend mit Montag. Nur 1 und 0 sind zulässig. \"1111111\" ist eine ungültige Zeichenfolge und sollte nicht verwendet werden. Beispielsweise legt \"0000011\" Samstag und Sonntag als Nichtarbeitstage fest."
+msgstr "Zeichenketten für Wochenende stellen eine andere Art dar, um die wöchentlichen Nichtarbeitstage festzulegen. Sie muss sieben (7) Zeichen haben – Nullen (0) für Arbeitstage und Einsen (1) für Nichtarbeitstage. Jedes Zeichen stellt einen Tag der Woche dar, beginnend mit Montag. Nur 1 und 0 sind zulässig. \"1111111\" ist eine ungültige Zeichenkette und sollte nicht verwendet werden. Beispielsweise legt \"0000011\" Samstag und Sonntag als Nichtarbeitstage fest."
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56750,7 +56750,7 @@ msgctxt ""
"par_id2595283314097\n"
"help.text"
msgid "<variable id=\"func_im_comp_numb\">A <emph>complex number</emph> is a string expression resulting in the form \"a+bi\" or \"a+bj\", where a and b are numbers.</variable>"
-msgstr "<variable id=\"func_im_comp_numb\">Eine <emph>Komplexe Zahl</emph> ist eine Zeichenfolge der Form \"a+bi\" oder \"a+bj\", wobei a und b Zahlen sind.</variable>"
+msgstr "<variable id=\"func_im_comp_numb\">Eine <emph>Komplexe Zahl</emph> ist eine Zeichenkette der Form \"a+bi\" oder \"a+bj\", wobei a und b Zahlen sind.</variable>"
#: ful_func.xhp
msgctxt ""
@@ -56758,7 +56758,7 @@ msgctxt ""
"par_id26516178768369\n"
"help.text"
msgid "<variable id=\"func_im_real_numb\">If the <emph>complex number</emph> is actually a real number (b=0), then it can be either a string expression or a number value.</variable>"
-msgstr "<variable id=\"func_im_real_numb\">Wenn <emph>Komplexe_Zahl</emph> eine reelle Zahl (b=0) ist, dann kann sie entweder eine Zeichenfolge oder ein Zahlwert sein.</variable>"
+msgstr "<variable id=\"func_im_real_numb\">Wenn <emph>Komplexe_Zahl</emph> eine reelle Zahl (b=0) ist, dann kann sie entweder eine Zeichenkette oder ein Zahlwert sein.</variable>"
#: ful_func.xhp
msgctxt ""
@@ -56766,7 +56766,7 @@ msgctxt ""
"par_id1566939488738\n"
"help.text"
msgid "<variable id=\"func_im_return_text\">The function always returns a string representing a complex number.</variable>"
-msgstr "<variable id=\"func_im_return_text\">Die Funktion ergibt immer eine Zeichenfolge, die eine komplexe Zahl darstellt.</variable>"
+msgstr "<variable id=\"func_im_return_text\">Die Funktion ergibt immer eine Zeichenkette, die eine komplexe Zahl darstellt.</variable>"
#: ful_func.xhp
msgctxt ""
@@ -56790,7 +56790,7 @@ msgctxt ""
"par_id29750345314640\n"
"help.text"
msgid "The result is presented in the string format and has the character \"i\" or \"j\" as an imaginary unit."
-msgstr "Das Ergebnis wird als Zeichenfolge ausgegeben, deren Anteil \"i\" bzw \"j\" den imaginären Anteil beschreibt."
+msgstr "Das Ergebnis wird als Zeichenkette ausgegeben, deren Anteil \"i\" bzw \"j\" den imaginären Anteil beschreibt."
#: func_aggregate.xhp
msgctxt ""
@@ -60238,7 +60238,7 @@ msgctxt ""
"par_id25412646522614\n"
"help.text"
msgid "<item type=\"input\">=IMCOS(2)</item><br/>returns -0.416146836547142 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMCOS(2)</item><br/>Ergibt -0,416146836547142 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMCOS(2)</item><br/>Ergibt -0,416146836547142 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imcosh.xhp
msgctxt ""
@@ -60302,7 +60302,7 @@ msgctxt ""
"par_id152561887112896\n"
"help.text"
msgid "<item type=\"input\">=IMCOSH(2)</item><br/>returns 3.76219569108363 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMCOSHYP(2)</item><br/>Ergibt 3,76219569108363 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMCOSHYP(2)</item><br/>Ergibt 3,76219569108363 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imcot.xhp
msgctxt ""
@@ -60374,7 +60374,7 @@ msgctxt ""
"par_id18472284929530\n"
"help.text"
msgid "<item type=\"input\">=IMCOT(2)</item><br/>returns -0.457657554360286 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMCOT(2)</item><br/>Ergibt -0,457657554360286 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMCOT(2)</item><br/>Ergibt -0,457657554360286 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imcsc.xhp
msgctxt ""
@@ -60446,7 +60446,7 @@ msgctxt ""
"par_id32572967420710\n"
"help.text"
msgid "<item type=\"input\">=IMCSC(2)</item><br/>returns 1.09975017029462 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMCOSEC(2)</item><br/>Ergibt 1,09975017029462 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMCOSEC(2)</item><br/>Ergibt 1,09975017029462 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imcsch.xhp
msgctxt ""
@@ -60518,7 +60518,7 @@ msgctxt ""
"par_id2395211576789\n"
"help.text"
msgid "<item type=\"input\">=IMCSCH(2)</item><br/>returns 0.275720564771783 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMCOSECHYP(2)</item><br/>Ergibt 0,275720564771783 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMCOSECHYP(2)</item><br/>Ergibt 0,275720564771783 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imsec.xhp
msgctxt ""
@@ -60590,7 +60590,7 @@ msgctxt ""
"par_id2395211576789\n"
"help.text"
msgid "<item type=\"input\">=IMSEC(2)</item><br/>returns -2.40299796172238 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMSEC(2)</item><br/>Ergibt -2,40299796172238 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMSEC(2)</item><br/>Ergibt -2,40299796172238 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imsech.xhp
msgctxt ""
@@ -60662,7 +60662,7 @@ msgctxt ""
"par_id247492030016627\n"
"help.text"
msgid "<item type=\"input\">=IMSECH(2)</item><br/>returns 0.26580222883408 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMSECHYP(2)</item><br/>Ergibt 0,26580222883408 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMSECHYP(2)</item><br/>Ergibt 0,26580222883408 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imsin.xhp
msgctxt ""
@@ -60734,7 +60734,7 @@ msgctxt ""
"par_id1527387141125\n"
"help.text"
msgid "<item type=\"input\">=IMSIN(2)</item><br/>returns 0.909297426825682 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMSIN(2)</item><br/>Ergibt 0,909297426825682 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMSIN(2)</item><br/>Ergibt 0,909297426825682 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imsinh.xhp
msgctxt ""
@@ -60806,7 +60806,7 @@ msgctxt ""
"par_id1527387141125\n"
"help.text"
msgid "<item type=\"input\">=IMSINH(2)</item><br/>returns 3.62686040784702 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMSINH(2)</item><br/>Ergibt 3,62686040784702 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMSINH(2)</item><br/>Ergibt 3,62686040784702 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imsinh.xhp
msgctxt ""
@@ -60886,7 +60886,7 @@ msgctxt ""
"par_id1527387141125\n"
"help.text"
msgid "<item type=\"input\">=IMTAN(2)</item><br/>returns -2.18503986326152 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=IMTAN(2)</item><br/>Ergibt -2,18503986326152 als Zeichenfolge. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=IMTAN(2)</item><br/>Ergibt -2,18503986326152 als Zeichenkette. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_isoweeknum.xhp
msgctxt ""
@@ -61174,7 +61174,7 @@ msgctxt ""
"par_id231020162213393086\n"
"help.text"
msgid "<ahelp hid=\".\">Returns the number of workdays between a start date and an end date. There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr "<ahelp hid=\".\">Ergibt die Anzahl von Arbeitstagen zwischen Startdatum und Enddatum. Es existieren Optionen, um Wochenenden und freie Tage festzulegen. Der optionale Parameter für Wochenende (eine Zeichenfolge) kann verwendet werden, um die Tage des Wochenendes (oder die Nichtarbeitstage jeder Woche) festzulegen. Außerdem können Sie optional eine Liste mit freien Tagen festlegen. Die Tage an Wochenenden und freie Tage werden nicht als Arbeitstage gezählt.</ahelp>"
+msgstr "<ahelp hid=\".\">Ergibt die Anzahl von Arbeitstagen zwischen Startdatum und Enddatum. Es existieren Optionen, um Wochenenden und freie Tage festzulegen. Der optionale Parameter für Wochenende (eine Zeichenkette) kann verwendet werden, um die Tage des Wochenendes (oder die Nichtarbeitstage jeder Woche) festzulegen. Außerdem können Sie optional eine Liste mit freien Tagen festlegen. Die Tage an Wochenenden und freie Tage werden nicht als Arbeitstage gezählt.</ahelp>"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61246,7 +61246,7 @@ msgctxt ""
"par_id231020162249557786\n"
"help.text"
msgid "Alternatively, use the weekend string “0000001” to define Sunday as the non-working day of every week."
-msgstr "Alternativ können Sie die Zeichenfolge \"0000001\" verwenden, um nur Sonntag als Nichtarbeitstag jeder Woche festzulegen."
+msgstr "Alternativ können Sie die Zeichenkette \"0000001\" verwenden, um nur Sonntag als Nichtarbeitstag jeder Woche festzulegen."
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61654,7 +61654,7 @@ msgctxt ""
"par_2016112109232\n"
"help.text"
msgid "<ahelp hid=\".\">Subtracts a set of numbers and gives the result without eliminating small roundoff errors. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Subtrahiert mehrere Zahlen und gibt das Ergebnis zurück, ohne kleine Rundungsfehler zu beseitigen.</ahelp>"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61670,7 +61670,7 @@ msgctxt ""
"par_2016112109234\n"
"help.text"
msgid "Subtracts the subtrahend(s) from the minuend without eliminating roundoff errors. The function should be called with at least two parameters."
-msgstr ""
+msgstr "Subtrahiert den/die Subtrahend(en) vom Minuend, ohne Rundungsfehler zu beseitigen. Die Funktion muss mit mindestens zwei Parametern aufgerufen werden."
#: func_rawsubtract.xhp
msgctxt ""
@@ -62494,7 +62494,7 @@ msgctxt ""
"par_id2947469\n"
"help.text"
msgid "<emph>XML Document (required):</emph> String containing a valid XML stream."
-msgstr "<emph>XML-Dokument (erforderlich):</emph> Zeichenfolge eines gültigen XML-Streams."
+msgstr "<emph>XML-Dokument (erforderlich):</emph> Zeichenkette eines gültigen XML-Streams."
#: func_webservice.xhp
msgctxt ""
@@ -62502,7 +62502,7 @@ msgctxt ""
"par_id2847469\n"
"help.text"
msgid "<emph>XPath expression (required):</emph> String containing a valid XPath expression."
-msgstr "<emph>XPath-Ausdruck (erforderlich):</emph> Zeichenfolge eines gültigen XPath-Asdrucks."
+msgstr "<emph>XPath-Ausdruck (erforderlich):</emph> Zeichenkette eines gültigen XPath-Asdrucks."
#: func_webservice.xhp
msgctxt ""
@@ -62590,7 +62590,7 @@ msgctxt ""
"par_id3154394\n"
"help.text"
msgid "<emph>Type</emph> is optional and determines the type of calculation."
-msgstr ""
+msgstr "<emph>Art</emph> ist optional und bestimmt die Art der Berechnung."
#: func_weekday.xhp
msgctxt ""
@@ -62598,7 +62598,7 @@ msgctxt ""
"par_id050220170615596613\n"
"help.text"
msgid "Type"
-msgstr "Typ"
+msgstr "Art"
#: func_weekday.xhp
msgctxt ""
@@ -62606,7 +62606,7 @@ msgctxt ""
"par_id05022017061559141\n"
"help.text"
msgid "Weekday number returned"
-msgstr ""
+msgstr "Zurückgegebene Nummer des Wochentags"
#: func_weekday.xhp
msgctxt ""
@@ -62742,7 +62742,7 @@ msgctxt ""
"par_id050220170616006699\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"2017-05-02\";14)</item> returns 6 (the Type parameter is 14, therefore Thursday is day number 1. May 2, 2017 was a Tuesday and therefore day number 6)"
-msgstr ""
+msgstr "<item type=\"literal\">=WOCHENTAG(\"02.05.2017\";14)</item> ergibt 6 (Art ist 14, also ist Donnerstag Tag Nummer 1. Der 2. Mai 2017 war ein Dienstag und ist deshalb Tag Nummer 6)"
#: func_weekday.xhp
msgctxt ""
@@ -63222,7 +63222,7 @@ msgctxt ""
"par_id23102016234837285\n"
"help.text"
msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr "<ahelp hid=\".\">Das Ergebnis ist eine Datumszahl, welche als Datum formatiert werden kann. Sie bekommen das Datum des Tages, welcher eine bestimmte Anzahl an Arbeitstagen vom Startdatum entfernt (vorher oder später) liegt, angezeigt. Es existieren Optionen, um Tage fürs Wochenende und freie Tage festzulegen. Der optionale Parameter (oder eine Zeichenfolge) Wochenende kann verwendet werden, um die Tage des Wochenendes festzulegen (bzw. die Nichtarbeitstage einer Woche). Sie können außerdem, ebenfalls optional, eine Liste mit freien Tagen festlegen. Die Tage fürs Wochenende und die freien Tage werden nicht als Arbeitstage gezählt.</ahelp>"
+msgstr "<ahelp hid=\".\">Das Ergebnis ist eine Datumszahl, welche als Datum formatiert werden kann. Sie bekommen das Datum des Tages, welcher eine bestimmte Anzahl an Arbeitstagen vom Startdatum entfernt (vorher oder später) liegt, angezeigt. Es existieren Optionen, um Tage fürs Wochenende und freie Tage festzulegen. Der optionale Parameter (oder eine Zeichenkette) Wochenende kann verwendet werden, um die Tage des Wochenendes festzulegen (bzw. die Nichtarbeitstage einer Woche). Sie können außerdem, ebenfalls optional, eine Liste mit freien Tagen festlegen. Die Tage fürs Wochenende und die freien Tage werden nicht als Arbeitstage gezählt.</ahelp>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63334,7 +63334,7 @@ msgctxt ""
"par_id24102016001218469\n"
"help.text"
msgid "Alternatively, use the weekend string \"0000001\" for Sunday only weekend."
-msgstr "Alternativ verwenden Sie die Zeichenfolge \"0000001\" für Sonntag als einzigen Tag fürs Wochenende."
+msgstr "Alternativ verwenden Sie die Zeichenkette \"0000001\" für Sonntag als einzigen Tag fürs Wochenende."
#: func_workday.intl.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/05.po b/source/de/helpcontent2/source/text/scalc/05.po
index 3c563981bae..4a4cd13ee8f 100644
--- a/source/de/helpcontent2/source/text/scalc/05.po
+++ b/source/de/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-04-14 12:54+0000\n"
+"PO-Revision-Date: 2017-06-09 04:29+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492174493.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496982562.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id9094515\n"
"help.text"
msgid "This option determines how an empty string is treated when used in arithmetic operations. If you have set \"Conversion from text to number\" to either \"Generate #VALUE! error\" or \"Treat as zero\", you cannot choose (here) if conversion of an empty string to a number will generate an error or if it will treat empty strings as zero. Otherwise this option determines how empty strings are treated."
-msgstr "Diese Option legt fest, wie eine leere Zeichenfolge behandelt werden soll, wenn sie in arithmetischen Operationen benutzt wird. Falls Sie die Option „Konvertierung von Text nach Zahl“ auf „Fehler #WERT! generieren“ oder „Als Null behandeln“ gesetzt haben, können Sie (hier) nicht wählen, ob die Konvertierung einer leeren Zeichenfolge in eine Zahl einen Fehler generiert oder leere Zeichenfolgen als Null behandelt werden sollen. Andernfalls legt diese Option fest, wie leere Zeichenfolgen behandelt werden."
+msgstr "Diese Option legt fest, wie eine leere Zeichenkette behandelt werden soll, wenn sie in arithmetischen Operationen benutzt wird. Falls Sie die Option „Konvertierung von Text nach Zahl“ auf „Fehler #WERT! generieren“ oder „Als Null behandeln“ gesetzt haben, können Sie (hier) nicht wählen, ob die Konvertierung einer leeren Zeichenkette in eine Zahl einen Fehler generiert oder leere Zeichenketten als Null behandelt werden sollen. Andernfalls legt diese Option fest, wie leere Zeichenketten behandelt werden."
#: OpenCL_options.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3859675\n"
"help.text"
msgid "Reference syntax for string reference"
-msgstr "Bezüge-Syntax für Zeichenfolge-Bezüge"
+msgstr "Bezügesyntax für Zeichenkettenbezüge"
#: OpenCL_options.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id402233\n"
"help.text"
msgid "Formula syntax to use when parsing references given in string parameters. This affects built-in functions such as INDIRECT that takes a reference as a string value."
-msgstr "Formelsyntax für die Analye von Bezügen, die in Zeichenfolgen-Parametern enthalten sind. Dies hat Auswirkungen auf eingebaute Funktionen wie INDIRECT, welche einen Bezug wie eine Zeichenfolge behandeln."
+msgstr "Formelsyntax für die Analye von Bezügen, die in Zeichenkettenparametern enthalten sind. Dies hat Auswirkungen auf eingebaute Funktionen wie INDIRECT, welche einen Bezug wie eine Zeichenkette behandeln."
#: OpenCL_options.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index d22a3f9a586..dc479fe19b4 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-15 15:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 02:09+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494863978.000000\n"
+"X-POOTLE-MTIME: 1497751756.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "Select the cells to which you want to apply a conditional style."
-msgstr "Wählen Sie die Zellen aus, denen eine bedingte Formatierung zugewisen werden sollen."
+msgstr "Wählen Sie die Zellen aus, denen eine bedingte Formatierung zugewiesen werden sollen."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
-msgstr "Sie können einen Zellbereich in einem Tabellendokumente als eine Datenbank verwenden. Jede Zeile dieses Datenbankbereichs entspricht einem Datensatz und jede Zelle einer Zeile einem Datenbankfeld. Die Datensätze lassen sortieren, gruppieren, nach Schlüsselwörtern durchsuchen und natürlich werden auch Berechnungen unterstützt, wie in einer Datenbank eben."
+msgstr "Sie können einen Zellbereich in einem Tabellendokumente als eine Datenbank verwenden. Jede Zeile dieses Datenbankbereichs entspricht einem Datensatz und jede Zelle einer Zeile einem Datenbankfeld. Die Datensätze lassen sich sortieren, gruppieren, nach Schlüsselwörtern durchsuchen und natürlich werden auch Berechnungen unterstützt, wie in einer Datenbank üblich."
#: database_define.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "Select the range of cells that you want to define as a database range."
-msgstr "Geben Sie den als Datenbankbereich zu definierenden Bereich an, indem Sie Daten - Bereich festlegen wählen."
+msgstr "Wählen Sie den als Datenbankbereich zu definierenden Bereich aus."
#: database_define.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "Specify the options for the database range."
-msgstr "Aktivieren Sie unbedingt die Option enthält Spaltenbeschriftungen, damit die erste Zeile ordnungsgemäß berücksichtigt wird. Klicken Sie auf OK, um den Dialog zu schließen."
+msgstr "Legen Sie die Optionen für den Datenbankbereich fest."
#: database_define.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
-msgstr "Sie können verschiedene Filter zum Filtern von Zellbereichen in Tabellendokumenten verwenden. Ein Standardfilter verwendet die Optionen, die Sie zum Filtern der Daten eingegeben haben. Ein AutoFilter filtert Daten nach einem bestimmten Wert oder einer Zeichenfolge. Ein erweiterter Filter verwendet Filterkriterien aus bestimmten Zellen."
+msgstr "Sie können verschiedene Filter zum Filtern von Zellbereichen in Tabellendokumenten verwenden. Ein Standardfilter verwendet die Optionen, die Sie zum Filtern der Daten eingegeben haben. Ein AutoFilter filtert Daten nach einem bestimmten Wert oder einer Zeichenkette. Ein erweiterter Filter verwendet Filterkriterien aus bestimmten Zellen."
#: database_filter.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_idN10749\n"
"help.text"
msgid "Select the value or string that you want to use as the filter criteria."
-msgstr "Wählen Sie den Wert bzw. die Zeichenfolge, die Sie als Filterkriterien verwenden möchten."
+msgstr "Wählen Sie den Wert bzw. die Zeichenkette, die Sie als Filterkriterien verwenden möchten."
#: database_filter.xhp
msgctxt ""
@@ -6614,7 +6614,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
-msgstr "Drücken Sie so oft <item type=\"keycode\">(F6)</item>, bis die Symbolleiste <emph>Zeichnnung</emph> ausgewählt ist."
+msgstr "Drücken Sie so oft <item type=\"keycode\">F6</item>, bis die Symbolleiste <emph>Zeichnung</emph> ausgewählt ist."
#: keyboard.xhp
msgctxt ""
@@ -10622,7 +10622,7 @@ msgctxt ""
"par_id3150327\n"
"help.text"
msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
-msgstr "Geben Sie den Funktionscode. Im Beispiel wird eine Funktion <item type=\"literal\">VOL(a; b; c)</item> definiert, die das Volumen eines Quaders aus den Seitenlängen <item type=\"literal\">a</item>, <item type=\"literal\">b</item> und <item type=\"literal\">c</item> berechnet:"
+msgstr "Geben Sie den Funktionscode ein. Im Beispiel wird eine Funktion <item type=\"literal\">VOL(a; b; c)</item> definiert, die das Volumen eines Quaders aus den Seitenlängen <item type=\"literal\">a</item>, <item type=\"literal\">b</item> und <item type=\"literal\">c</item> berechnet:"
#: userdefined_function.xhp
msgctxt ""
@@ -10686,7 +10686,7 @@ msgctxt ""
"par_id3166430\n"
"help.text"
msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
-msgstr "Wählen Sie im Basic-IDE-Fenster die Quelle der benutzerdefinierten Funktion aus und kopieren Sie sie in die Zwischenablage. Schließen Sie das Basic-IDE-Fenster."
+msgstr "Wählen Sie im Fenster Basic-IDE die Quelle der benutzerdefinierten Funktion aus und kopieren Sie sie in die Zwischenablage."
#: userdefined_function.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/schart/01.po b/source/de/helpcontent2/source/text/schart/01.po
index 6b1900a0dd0..33fb2a5df56 100644
--- a/source/de/helpcontent2/source/text/schart/01.po
+++ b/source/de/helpcontent2/source/text/schart/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 17:26+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2017-06-18 02:09+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496770011.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497751792.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3154684\n"
"help.text"
msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
-msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Öffnet den Dialog<emph>Datenbeschriftung</emph>, indem Sie das Aussehen der Datenbeschriftung festlegen.</ahelp></variable>"
+msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Öffnet den Dialog <emph>Datenbeschriftung</emph>, in welchem Sie das Aussehen der Datenbeschriftung festlegen.</ahelp></variable>"
#: 04030000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "Die folgenden Regressionstypen sind verfügbar:"
#: 04050100.xhp
msgctxt ""
@@ -6334,7 +6334,7 @@ msgctxt ""
"par_id9759514\n"
"help.text"
msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
-msgstr "Ein Beispiel für einen Datenbereich in Calc ist \"$Tabelle1.$B$3:$B$14\". Ein Datenbereich kann aus mehreren Abschnitten eines Tabellendokuments bestehen und daher ist beispielsweise \"$Tabelle1.A1:A5;$Tabelle1.D1:D5\" ebenfalls ein zulässiger Datenbereich. Ein Beispiel für einen Datenbereich in Writer ist \"Tabelle1.A1:E4\"."
+msgstr "Ein Beispiel für einen Datenbereich in Calc ist \"$Tabelle1.$B$3:$B$14\". Ein Datenbereich kann aus mehreren Abschnitten eines Tabellendokuments bestehen, daher ist beispielsweise \"$Tabelle1.A1:A5;$Tabelle1.D1:D5\" ebenfalls ein zulässiger Datenbereich. Ein Beispiel für einen Datenbereich in Writer ist \"Tabelle1.A1:E4\"."
#: type_stock.xhp
msgctxt ""
@@ -7486,7 +7486,7 @@ msgctxt ""
"par_id5626392\n"
"help.text"
msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
-msgstr "Ein Beispiel für einen Datenbereich in Calc ist \"$Tabelle1.$B$3:$B$14\". Ein Datenbereich kann aus mehreren Abschnitten eines Tabellendokuments bestehen und daher ist beispielsweise \"$Tabelle1.A1:A5;$Tabelle1.D1:D5\" ebenfalls ein zulässiger Datenbereich. Ein Beispiel für einen Datenbereich in Writer ist \"Tabelle1.A1:E4\"."
+msgstr "Ein Beispiel für einen Datenbereich in Calc ist \"$Tabelle1.$B$3:$B$14\". Ein Datenbereich kann aus mehreren Abschnitten eines Tabellendokuments bestehen, daher ist beispielsweise \"$Tabelle1.A1:A5;$Tabelle1.D1:D5\" ebenfalls ein zulässiger Datenbereich. Ein Beispiel für einen Datenbereich in Writer ist \"Tabelle1.A1:E4\"."
#: wiz_data_range.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sdraw.po b/source/de/helpcontent2/source/text/sdraw.po
index 9e3790c83c9..7edb8a92f36 100644
--- a/source/de/helpcontent2/source/text/sdraw.po
+++ b/source/de/helpcontent2/source/text/sdraw.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-30 10:38+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2017-06-07 04:45+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496140715.000000\n"
+"X-POOTLE-MTIME: 1496810706.000000\n"
#: main0000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr "Hier finden Sie Befehle zum Bearbeiten von Draw Dokumenten, z.B. zum Widerrufen der letzten Aktion, zum Kopieren und Einfügen über die Zwischenablage."
+msgstr "Hier finden Sie Befehle zum Bearbeiten von Draw Dokumenten, beispielsweise zum Widerrufen der letzten Aktion, zum Kopieren und Einfügen über die Zwischenablage."
#: main0102.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr "In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie z.B. Fanglinien, Grafiken, Objekte, Symbole und andere Dateien."
+msgstr "In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie beispielsweise Fanglinien, Grafiken, Objekte, Symbole und andere Dateien."
#: main0104.xhp
msgctxt ""
@@ -1062,4 +1062,4 @@ msgctxt ""
"par_id3155112\n"
"help.text"
msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
-msgstr "$[officename] Draw exportiert Daten in zahlreiche verbreitete Grafikdateiformate, z.B. BMP, GIF, JPG und PNG."
+msgstr "$[officename] Draw exportiert Daten in zahlreiche verbreitete Grafikdateiformate, beispielsweise BMP, GIF, JPG und PNG."
diff --git a/source/de/helpcontent2/source/text/sdraw/guide.po b/source/de/helpcontent2/source/text/sdraw/guide.po
index 763d406b067..8a920fc6332 100644
--- a/source/de/helpcontent2/source/text/sdraw/guide.po
+++ b/source/de/helpcontent2/source/text/sdraw/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 17:27+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2017-06-12 03:15+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496770023.000000\n"
+"X-POOTLE-MTIME: 1497237302.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
-msgstr "Stellen Sie sicher, dass Sie eine Bitmap (beispielsweise BMP, GIF, JPG oder PNG) oder ein Metafile (zum Beispiel WMF) verwenden."
+msgstr "Stellen Sie sicher, dass Sie eine Bitmap (beispielsweise BMP, GIF, JPG oder PNG) oder ein Metafile (beispielsweise WMF) verwenden."
#: eyedropper.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"par_id3147366\n"
"help.text"
msgid "For example, click the arrow next to the <emph>Callouts</emph> icon <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Icon</alt></image> to open the Callouts toolbar."
-msgstr "Klicken Sie z.B. auf den Pfeil neben dem Symbol <emph>Legenden</emph> <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Symbol</alt></image>, um die Symbolleiste Legenden zu öffnen."
+msgstr "Klicken Sie beispielsweise auf den Pfeil neben dem Symbol <emph>Legenden</emph> <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Symbol</alt></image>, um die Symbolleiste Legenden zu öffnen."
#: text_enter.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared.po b/source/de/helpcontent2/source/text/shared.po
index 82650ac614c..6b670bad4a7 100644
--- a/source/de/helpcontent2/source/text/shared.po
+++ b/source/de/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-14 04:47+0000\n"
+"PO-Revision-Date: 2017-06-12 03:16+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494737264.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497237384.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Wählen Sie eine Extrusionstiefe."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Wählen Sie eine perspektivische oder parallele Extrusionsmethode."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Wählen Sie eine Beleuchtungsrichtung."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Wählen Sie eine Beleuchtungsintensität."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Wählen Sie ein Oberflächenmaterial oder eine Drahtgittermodellanzeige."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Klicken Sie hier, um die Ausrichtung auf die gewählten Fontwork-Objekte anzuwenden."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Klicken Sie hier, um den Zeichenabstand auf die gewählten Fontwork-Objekte anzuwenden."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Öffnet den Dialog Fontwork-Zeichenabstand, in dem Sie einen neuen Wert für den Zeichenabstand eingeben können."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Schaltet das <link href=\"text/shared/00/00000005.xhp#kerning\">Kerning</link> bei Zeichenpaaren ein bzw. aus."
#: main0108.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"hd_id2752763\n"
"help.text"
msgid "Send Feedback"
-msgstr "Fehler melden (englisch)"
+msgstr "Rückmeldung geben..."
#: main0108.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3144510\n"
"help.text"
msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
-msgstr "<ahelp hid=\".uno:About\">Zeigt allgemeine Programminformationen wie z.B. Versionsnummer und Hinweise zum Copyright an.</ahelp>"
+msgstr "<ahelp hid=\".uno:About\">Zeigt allgemeine Programminformationen wie beispielsweise Versionsnummer und Hinweise zum Copyright an.</ahelp>"
#: main0201.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 8e873546fb2..3024440aa45 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 17:27+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 02:10+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496770035.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497751842.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3156360\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>-Seiten enthalten bestimmte Struktur- und Formatanweisungen, die Tags genannt werden. Tags sind in spitzen Klammern eingeschlossene Schlüsselworte der Dokumentbeschreibungssprache HTML. Viele Tags umfassen einen Text oder eine Hyperlinkreferenz zwischen der öffnenden und der schließenden Klammer. So werden z.B. Überschriften durch die Tags <h1> am Anfang und </h1> am Ende des Überschriftentexts gekennzeichnet. Einige Tags kommen nur einzeln vor, z.B. <br> als Zeichen für einen Zeilenumbruch oder <img ...> zum Einbinden einer Grafik."
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>-Seiten enthalten bestimmte Struktur- und Formatanweisungen, die Tags genannt werden. Tags sind in spitzen Klammern eingeschlossene Schlüsselworte der Dokumentbeschreibungssprache HTML. Viele Tags umfassen einen Text oder eine Hyperlinkreferenz zwischen der öffnenden und der schließenden Klammer. So werden beispielsweise Überschriften durch die Tags <h1> am Anfang und </h1> am Ende des Überschriftentexts gekennzeichnet. Einige Tags kommen nur einzeln vor, beispielsweise <br> als Zeichen für einen Zeilenumbruch oder <img ...> zum Einbinden einer Grafik."
#: 00000002.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "In various dialogs (for example, <emph>Tools - AutoText</emph>) you can select whether you want to save files relatively or absolutely."
-msgstr "In einigen Dialogen (z.B. <emph>Extras - AutoText...</emph>) können Sie wählen, ob eine Datei relativ oder absolut gespeichert werden soll."
+msgstr "In einigen Dialogen (beispielsweise unter <emph>Extras - AutoText...</emph>) können Sie wählen, ob eine Datei relativ oder absolut gespeichert werden soll."
#: 00000005.xhp
msgctxt ""
@@ -2870,7 +2870,7 @@ msgctxt ""
"par_id3149800\n"
"help.text"
msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
-msgstr "Kommentare werden benutzt, um unbekannte Zeichen in einem HTML-Dokument einzubeziehen. Jede Notiz, die mit \"HTML:...\" beginnt und mit \">\" endet, wird als HTML-Kode behandelt, aber ohne diese Bezeichnungen exportiert. Verschiedene Markierungen um den Text kann nach dem \"HTML:...\" einbezogen werden. Akzentuierte Zeichen werden in den ANSI-Zeichensatz konvertiert. Kommentare werden während des Imports (für z.B. MetaTags, die keinen Platz in den Dateieigenschaften oder unbekannten Bezeichnungen hat) erzeugt."
+msgstr "Kommentare werden benutzt, um unbekannte Zeichen in einem HTML-Dokument einzubeziehen. Jede Notiz, die mit \"HTML:...\" beginnt und mit \">\" endet, wird als HTML-Kode behandelt, aber ohne diese Bezeichnungen exportiert. Verschiedene Markierungen um den Text kann nach dem \"HTML:...\" einbezogen werden. Akzentuierte Zeichen werden in den ANSI-Zeichensatz konvertiert. Kommentare werden während des Imports (beispielsweise MetaTags, die keinen Platz in den Dateieigenschaften haben, oder unbekannte Bezeichnungen) erzeugt."
#: 00000020.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"par_id3153365\n"
"help.text"
msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
-msgstr "$[officename] importiert und exportiert Bezüge zu gelöschten Abschnitten wie z.B. auf eine verwiesene Spalte. Beim Exportieren wird die Formel vollständig angezeigt, der gelöschte Bezug enthält den Hinweis (#BEZUG!) auf den Bezug. Entsprechend wird beim Import der Hinweis #BEZUG! für den Bezug erzeugt."
+msgstr "$[officename] importiert und exportiert Bezüge zu gelöschten Abschnitten wie beispielsweise auf eine verwiesene Spalte. Beim Exportieren wird die Formel vollständig angezeigt, der gelöschte Bezug enthält den Hinweis (#BEZUG!) auf den Bezug. Entsprechend wird beim Import der Hinweis #BEZUG! für den Bezug erzeugt."
#: 00000020.xhp
msgctxt ""
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Wählen Sie <emph>Extras - Kapitelnummerierung... - Register: Position</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Symbol in der Symbolleiste <emph>Bild</emph>:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -10014,7 +10014,7 @@ msgctxt ""
"par_id3159198\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>General</emph> tab"
-msgstr "Öffnen Sie eine der Symbolleisten Formular-Steuerelemente oder Formular Entwurf, klicken Sie auf das Symbol <emph>Kontrollfeld-Eigenschaften</emph> und dann auf das Register <emph>Allgemein</emph>"
+msgstr "Öffnen Sie eine der Symbolleisten Formular-Steuerelemente oder Formular-Entwurf, klicken Sie auf das Symbol <emph>Kontrollfeld-Eigenschaften</emph> und dann auf das Register <emph>Allgemein</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10046,7 +10046,7 @@ msgctxt ""
"par_id3153744\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Control</emph> icon - <emph>Events</emph> tab"
-msgstr "Öffnen Sie eine der Symbolleisten Formular-Steuerelemente oder Formular Entwurf, klicken Sie auf das Symbol <emph>Kontrollfeld-Eigenschaften</emph> und dort auf das Register <emph>Ereignisse</emph>"
+msgstr "Öffnen Sie eine der Symbolleisten Formular-Steuerelemente oder Formular-Entwurf, klicken Sie auf das Symbol <emph>Kontrollfeld-Eigenschaften</emph> und dort auf das Register <emph>Ereignisse</emph>"
#: 00040501.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 69b6210d724..46efa165c56 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 17:27+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 02:40+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496770065.000000\n"
+"X-POOTLE-MTIME: 1497753620.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Wenn Sie <item type=\"menuitem\">Datei - Vorlagen - Als Vorlage speichern...</item> nutzen, um eine Vorlage zu speichern, wird die Vorlage in Ihrem Vorlagenverzeichnis gespeichert. Wenn Sie ein Dokument öffnen, dass auf einer solchen Vorlage basiert, wird das Dokument geprüft, ob die Vorlage geändert wurde, wie nachstehend beschrieben. Die Vorlage wird mit dem Dokument verbunden, die Vorlage kann in diesem Fall als \"verknüpfte Vorlage\" bezeichnet werden."
#: 01020000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Wählen Sie eine Absatzvorlage für die Unterteilung des Quelldokuments in mehrere Teildokumente aus.</ahelp> Standard ist hier die Absatzvorlage \"Überschrift 1\"."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
-msgstr "Es wird immer die längstmögliche Zeichenfolge gefunden, die dem Suchmuster in einem Absatz entspricht. Wenn der Absatz die Zeichenfolge \"AX 4 AX4\" enthält, wird der gesamte Ausdruck hervorgehoben."
+msgstr "Es wird immer die längstmögliche Zeichenkette gefunden, die dem Suchmuster in einem Absatz entspricht. Wenn der Absatz die Zeichenkette \"AX 4 AX4\" enthält, wird der gesamte Ausdruck hervorgehoben."
#: 02100001.xhp
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"par_id3153961\n"
"help.text"
msgid "Adds the string that was found by the search criteria in the <emph>Find</emph> box to the term in the <emph>Replace</emph> box when you make a replacement."
-msgstr "Fügt die Zeichenfolge, die durch die Suchkriterien im Textfeld <emph>Suchen</emph> gefunden wurde, zu dem Begriff im Feld <emph>Ersetzen</emph> hinzu, wenn Sie die Ersetzung durchführen."
+msgstr "Fügt die Zeichenkette, die durch die Suchkriterien im Textfeld <emph>Suchen</emph> gefunden wurde, zu dem Begriff im Feld <emph>Ersetzen</emph> hinzu, wenn Sie die Ersetzung durchführen."
#: 02100001.xhp
msgctxt ""
@@ -8622,7 +8622,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Lists the file type, such as graphic, of the source file."
-msgstr "Gibt den Dateityp, z.B. Grafik, der Quelldatei an."
+msgstr "Gibt den Dateityp der Quelldatei an, beispielsweise Grafik."
#: 02180000.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Applies the default horizontal spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Wendet den Standard-Horizontalabstand an.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9222,7 +9222,7 @@ msgctxt ""
"par_id3150401\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultheight\">Applies the default vertical spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultheight\">Wendet den Standard-Vertikalabstand an.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -12174,7 +12174,7 @@ msgctxt ""
"par_id8336741\n"
"help.text"
msgid "To change the object properties of a comment, for example the background color, choose <emph>Show Comment</emph> as above, then right-click the comment (do not double-click the text)."
-msgstr "Um die Objekteigenschaften eines Kommentars, z.B. die Hintergrundfarbe, zu ändern, wählen Sie <emph>Kommentar anzeigen</emph> wie oben beschrieben, klicken dann mit rechts auf den Kommentar (kein Doppelklick in den Text)."
+msgstr "Um die Objekteigenschaften eines Kommentars, beispielsweise die Hintergrundfarbe, zu ändern, wählen Sie <emph>Kommentar anzeigen</emph> wie oben beschrieben, klicken dann mit rechts auf den Kommentar (kein Doppelklick in den Text)."
#: 04050000.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"bm_id3153514\n"
"help.text"
msgid "<bookmark_value>format codes; numbers</bookmark_value> <bookmark_value>conditions; in number formats</bookmark_value> <bookmark_value>number formats; codes</bookmark_value> <bookmark_value>currency formats</bookmark_value> <bookmark_value>formats;of currencies/date/time</bookmark_value> <bookmark_value>numbers; date, time and currency formats</bookmark_value> <bookmark_value>Euro; currency formats</bookmark_value> <bookmark_value>date formats</bookmark_value> <bookmark_value>times, formats</bookmark_value> <bookmark_value>percentages, formats</bookmark_value> <bookmark_value>scientific notation, formats</bookmark_value> <bookmark_value>engineering notation, formats</bookmark_value> <bookmark_value>fraction, formats</bookmark_value> <bookmark_value>native numeral</bookmark_value> <bookmark_value>LCID, extended</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Formatcodes;Zahlen</bookmark_value> <bookmark_value>Bedingungen;in Zahlenformaten</bookmark_value> <bookmark_value>Zahlenformate;Codes</bookmark_value> <bookmark_value>Währungsformate</bookmark_value> <bookmark_value>Formate;Währungen/Daten/Zeiten</bookmark_value> <bookmark_value>Zahlen;Datums-/Zeit-/Währungsformate</bookmark_value> <bookmark_value>Euro;Währungsformate</bookmark_value> <bookmark_value>Datum;Formate</bookmark_value> <bookmark_value>Zeiten;Formate</bookmark_value> <bookmark_value>Prozente;Formate</bookmark_value> <bookmark_value>Wissenschaftliche Schreibweise;Formate</bookmark_value> <bookmark_value>Technische Schreibweise;Formate</bookmark_value> <bookmark_value>Brüche;Formate</bookmark_value> <bookmark_value>Zahlsysteme</bookmark_value> <bookmark_value>LCID, erweitert</bookmark_value>"
#: 05020301.xhp
msgctxt ""
@@ -14022,7 +14022,7 @@ msgctxt ""
"par_id3153624\n"
"help.text"
msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero."
-msgstr "Benutzen Sie die Null (0), die Raute (#) oder das Fragezeichen (?) als Platzhalter in Ihrem Zahlenformatcode, um Zahlen darzustellen. Die (#) zeigt nur signifikante Stellen an, während die (0) Nullen anzeigt, falls es weniger Stellen in der Zahl als im Zahlenformat gibt. Das (?) funktioniert wie die (#), aber fügt ein Leerzeichen hinzu, um die Kommaausrichtung beizubehalten, falls es eine versteckte, nicht-signifikante Null gibt."
+msgstr "Benutzen Sie die Null (0), die Raute (#) oder das Fragezeichen (?) als Platzhalter in Ihrem Zahlenformatcode, um Zahlen darzustellen. Die (#) zeigt nur signifikante Stellen an, während die (0) Nullen anzeigt, falls es weniger Stellen in der Zahl als im Zahlenformat gibt. Das (?) funktioniert wie die (#), fügt aber ein Leerzeichen hinzu, um die Kommaausrichtung beizubehalten, falls es eine versteckte, nicht-signifikante Null gibt."
#: 05020301.xhp
msgctxt ""
@@ -14230,7 +14230,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\". If you use space as thousands separator, you need to insert spaces between quotes in the previous examples: <emph>#.#\" meters\"</emph> or <emph>#.#\\ \\m</emph> to get the correct result."
-msgstr ""
+msgstr "Um Text in ein Zahlformat einzuschließen, das auf eine Zelle angewendet wird, die Zahlen enthält, schließen Sie den Text in doppelte Anführungszeichen (\") ein oder fügen einen Rückstrich (\\) vor jedem einzelnen Zeichen ein. Geben Sie beispielsweise <emph>#,# \"Meter\"</emph> ein, um \"3,5 Meter\" angezeigt zu bekommen, oder <emph>#,# \\m</emph> für \"3,5 m\". Wenn Sie Leerzeichen als Tausendertrennzeichen verwenden, müssen Sie die Leerzeichen in den vorherigen Beispielen in die Formatierung mit einschließen: <emph>#,#\" Meter\"</emph> bzw. <emph>#,#\\ \\m</emph>, um das richtige Ergebnis zu erzielen."
#: 05020301.xhp
msgctxt ""
@@ -14342,7 +14342,7 @@ msgctxt ""
"par_id3157870\n"
"help.text"
msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
-msgstr "Alle Temperaturen unter Null werden blau dargestellt, Temperaturen zwischen 0 und 30 °C schwarz und Temperaturen über 30° C rot."
+msgstr "Alle Temperaturen unter Null werden blau dargestellt, Temperaturen zwischen 0 und 30 °C schwarz und Temperaturen über 30 °C rot."
#: 05020301.xhp
msgctxt ""
@@ -14438,7 +14438,7 @@ msgctxt ""
"par_id3146927\n"
"help.text"
msgid "Denominator value can also be forced to the value replacing placeholders. For example, to get PI value as a multiple of 1/16th (i.e. 50/16), use format:"
-msgstr "Der Nenner kann auf den Wert festgelegt werden, durch den der Platzhalter ersetzt wird. Zum Beispiel wird der Wert von Pi als ein Vielfaches von 1/16 (z.B. 50/16) dargestellt, mit dem Format:"
+msgstr "Der Nenner kann auf den Wert festgelegt werden, durch den der Platzhalter ersetzt wird. Beispielsweise wird der Wert von Pi als ein Vielfaches von 1/16 (also 50/16) dargestellt, mit dem Format:"
#: 05020301.xhp
msgctxt ""
@@ -14894,7 +14894,7 @@ msgctxt ""
"par_id231020161240096930\n"
"help.text"
msgid "The specified calendar is exported to MS-Excel using extended LCID. Extended LCID can also be used in the format string. It will be converted to a calendar modifier if it is supported. See <link href=\"text/shared/01/05020301.xhp#ExtendedLCID\">Extended LCID</link> section below."
-msgstr ""
+msgstr "Der angegebene Kalender wird in MS Excel unter Verwendung von LCID exportiert. Erweitertes LCID kann ebenfalls in der Formatierungszeichenkette verwendet werden. Es wird in eine Kalender-Zeichenkette konvertiert, falls unterstützt. Vergleichen Sie <link href=\"text/shared/01/05020301.xhp#ExtendedLCID\">Erweitertes LCID</link> weiter unten."
#: 05020301.xhp
msgctxt ""
@@ -15310,7 +15310,7 @@ msgctxt ""
"hd_id3158404\n"
"help.text"
msgid "Displaying Numbers Using Native Characters"
-msgstr "Zahlen in landesspezifischen Zeichen anzeigen"
+msgstr "Länderspezifische Zahlzeichen anzeigen"
#: 05020301.xhp
msgctxt ""
@@ -15318,7 +15318,7 @@ msgctxt ""
"hd_id231020161309289931\n"
"help.text"
msgid "NatNum modifiers"
-msgstr ""
+msgstr "NatNum Modifikatoren"
#: 05020301.xhp
msgctxt ""
@@ -15326,7 +15326,7 @@ msgctxt ""
"par_id3149998\n"
"help.text"
msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
-msgstr "Sie können Zahlen in landesspezifischen Zeichen darstellen. Hierzu setzen Sie an den Anfang des Zahlenformatcodes einen der Modifikatoren [NatNum1], [NatNum2], ... [NatNum11]."
+msgstr "Um länderspezifische Zahlzeichen darstellen zu können, setzen Sie an den Anfang des Zahlenformatcodes einen der Modifikatoren [NatNum1], [NatNum2], ... [NatNum11]."
#: 05020301.xhp
msgctxt ""
@@ -15334,7 +15334,7 @@ msgctxt ""
"par_id3154600\n"
"help.text"
msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
-msgstr "Der Modifikator [NatNum1] konvertiert eine Zahl stets nach einer 1:1-Zuordnung in eine Zeichenkette, die dem länderspezifischen Zahlenformat des entsprechenden Gebietsschemas entspricht. Die übrigen Modifizierer liefern je nach Gebietsschema unterschiedliche Ergebnisse. Das Gebietsschema ergibt sich entweder aus der Kombination aus Sprache und Land, für die der Formatcode definiert ist, oder es wird mit dem Modifizierer (z.B. [$-yyy]) hinter dem Modifizierer für die landesspezifische Zahl angegeben. yyy steht hier für die Hexadezimalzahl MS-LCID, die auch in Währungsformat-Codes zum Einsatz kommt. Mit dem folgenden Zahlenformat-Code lassen sich beispielsweise japanische Kanji-Kurzzeichen im englischen US-Gebietsschema darstellen:"
+msgstr "Der Modifikator [NatNum1] konvertiert eine Zahl stets nach einer 1:1-Zuordnung in eine Zeichenkette, die dem länderspezifischen Zahlenformat des entsprechenden Gebietsschemas entspricht. Die übrigen Modifizierer liefern je nach Gebietsschema unterschiedliche Ergebnisse. Das Gebietsschema ergibt sich entweder aus der Kombination aus Sprache und Land, für die der Formatcode definiert ist, oder es wird mit einem Modifizierer wie [$-yyy] hinter dem Modifizierer für die landesspezifische Zahl angegeben. yyy steht hier für die Hexadezimalzahl MS-LCID, die auch in Währungsformat-Codes zum Einsatz kommt. Mit dem folgenden Zahlenformat-Code lassen sich beispielsweise japanische Kanji-Kurzzeichen im englischen US-Gebietsschema darstellen:"
#: 05020301.xhp
msgctxt ""
@@ -16022,7 +16022,7 @@ msgctxt ""
"par_id130820161753343499\n"
"help.text"
msgid "[<emph>NatNum5</emph>]"
-msgstr ""
+msgstr "[<emph>NatNum5</emph>]"
#: 05020301.xhp
msgctxt ""
@@ -16438,7 +16438,7 @@ msgctxt ""
"hd_id231020161309281519\n"
"help.text"
msgid "Extended LCID"
-msgstr ""
+msgstr "Erweitertes LCID"
#: 05020301.xhp
msgctxt ""
@@ -16446,7 +16446,7 @@ msgctxt ""
"par_id23102016124541451\n"
"help.text"
msgid "If compatible, native numbering and calendar are exported to MS-Excel using extended LCID. Extended LCID can also be used in string format instead of NatNum modifier."
-msgstr ""
+msgstr "Länderspezifische Zahlen und Kalender werden, falls kompatibel, nach MS Excel unter Verwendung von erweitertem LCID exportiert. Erweitertes LCID kann auch in Zeichenketten anstatt NatNum Modifikatoren verwendet werden."
#: 05020301.xhp
msgctxt ""
@@ -16454,7 +16454,7 @@ msgctxt ""
"par_id23102016130928602\n"
"help.text"
msgid "Extended LCID consists of 8 hexadecimal digits: <emph>[$-NNCCLLLL]</emph>, with 2 first digits NN for native numerals, CC for calendar and LLLL for LCID code. For instance, <emph>[$-0D0741E]</emph> will be converted to <emph>[NatNum1][$-41E][~buddhist]</emph>: Thai numerals (0D) with Buddhist calendar (07) in Thai locale (041E)."
-msgstr ""
+msgstr "Erweitertes LCID besteht aus 8 hexadezimalen Zeichen: <emph>[$-NNCCLLLL]</emph> mit 2 führenden Zeichen NN für länderspezifische Zahlen, CC für Kalender und LLLL für den LCID-Code. Beispielsweise wird <emph>[$-0D0741E]</emph> in <emph>[NatNum1][$-41E][~buddhist]</emph> konvertiert: Thailändische Zahlen (0D) mit buddhistischem Kalender (07) in Thailändischem Gebietsschema (041E)"
#: 05020301.xhp
msgctxt ""
@@ -16462,7 +16462,7 @@ msgctxt ""
"par_id231020161309295474\n"
"help.text"
msgid "<emph>Native Numerals</emph>"
-msgstr ""
+msgstr "<emph>Länderspezifische Zahlen</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16470,7 +16470,7 @@ msgctxt ""
"par_id231020161309291913\n"
"help.text"
msgid "Two first digits NN represents native numerals:"
-msgstr ""
+msgstr "Die 2 führenden Zeichen NN für länderspezifische Zahlen:"
#: 05020301.xhp
msgctxt ""
@@ -16478,7 +16478,7 @@ msgctxt ""
"par_id231020161309383870\n"
"help.text"
msgid "<emph>Numeral</emph>"
-msgstr ""
+msgstr "<emph>Zahl</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16486,7 +16486,7 @@ msgctxt ""
"par_id231020161309384878\n"
"help.text"
msgid "<emph>Representation</emph>"
-msgstr ""
+msgstr "<emph>Darstellung</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16494,7 +16494,7 @@ msgctxt ""
"par_id231020161309389959\n"
"help.text"
msgid "<emph>Compatible LCID</emph>"
-msgstr ""
+msgstr "<emph>Kompatibles LCID</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16766,7 +16766,7 @@ msgctxt ""
"par_id231020161510022383\n"
"help.text"
msgid "<emph>Calendar</emph>"
-msgstr ""
+msgstr "<emph>Kalender</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16774,7 +16774,7 @@ msgctxt ""
"par_id231020161510021223\n"
"help.text"
msgid "Two next digits CC are for calendar code. Each calendar is only valid for some LCID."
-msgstr ""
+msgstr "Die zwei folgendne Zeichen CC für den Kalender-Code. Jeder Kalender ist nur für einige LCIDs gültig."
#: 05020301.xhp
msgctxt ""
@@ -16782,7 +16782,7 @@ msgctxt ""
"par_id231020161510022813\n"
"help.text"
msgid "<emph>Calendar</emph>"
-msgstr ""
+msgstr "<emph>Kalender</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16790,7 +16790,7 @@ msgctxt ""
"par_id231020161510028097\n"
"help.text"
msgid "<emph>Example (YYYY-MM-DD)</emph>"
-msgstr ""
+msgstr "<emph>Beispielsweise (JJJJ-MM-DD)</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16798,7 +16798,7 @@ msgctxt ""
"par_id231020161510025567\n"
"help.text"
msgid "<emph>Supported LCID</emph>"
-msgstr ""
+msgstr "<emph>Unterstütztes LCID</emph>"
#: 05020301.xhp
msgctxt ""
@@ -23334,7 +23334,7 @@ msgctxt ""
"par_id3154863\n"
"help.text"
msgid "You can add custom colors, gradients, hatchings, two color patterns and bitmap patterns to the default lists for later use."
-msgstr ""
+msgstr "Sie können benutzerdefinierte Farben, Farbverläufe, Schraffuren, Muster und Bilder für spätere Verwendung zur Standardliste hinzufügen."
#: 05210100.xhp
msgctxt ""
@@ -23350,7 +23350,7 @@ msgctxt ""
"par_id3149751\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Do not fill the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Füllt das ausgewählte Objekt nicht.</ahelp>"
#: 05210100.xhp
msgctxt ""
@@ -23438,7 +23438,7 @@ msgctxt ""
"par_id3148548\n"
"help.text"
msgid "You can quickly select fill options from the list boxes on the <emph>Drawing Object Properties</emph> toolbar."
-msgstr ""
+msgstr "Sie können Fülloptionen schnell aus den Listenfeldern in der Symbolleiste <emph>Zeichenobjekteigenschaften</emph> auswählen."
#: 05210100.xhp
msgctxt ""
@@ -25206,7 +25206,7 @@ msgctxt ""
"par_id3147210\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/calloutpage/optimal\">Click here to display a single-angled line in an optimal way.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/calloutpage/optimal\">Klicken Sie hier, um eine einfach abgewinkelte Linie optimal darstellen.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/calloutpage/optimal\">Klicken Sie hier, um eine einfach abgewinkelte Linie optimal darzustellen.</ahelp>"
#: 05240000.xhp
msgctxt ""
@@ -30206,7 +30206,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Conversion Direction"
-msgstr ""
+msgstr "Konvertierungsrichtung"
#: 06010600.xhp
msgctxt ""
@@ -30214,7 +30214,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Select the conversion direction."
-msgstr ""
+msgstr "Legt die Konvertierrichtung fest."
#: 06010600.xhp
msgctxt ""
@@ -30222,7 +30222,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "Traditionelles in vereinfachtes Chinesisch"
#: 06010600.xhp
msgctxt ""
@@ -30238,7 +30238,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "Vereinfachtes in traditionelles Chinesisch"
#: 06010600.xhp
msgctxt ""
@@ -30254,7 +30254,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "Common Terms"
-msgstr ""
+msgstr "Allgemeine Begriffe"
#: 06010600.xhp
msgctxt ""
@@ -30262,7 +30262,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
-msgstr ""
+msgstr "Allgemeine Begriffe sind Wörter, die im traditionellen und vereinfachten Chinesisch dieselbe Bedeutung haben, aber mit unterschiedlichen Zeichen geschrieben werden."
#: 06010600.xhp
msgctxt ""
@@ -30270,7 +30270,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Translate common terms"
-msgstr ""
+msgstr "Allgemeine Begriffe übersetzen"
#: 06010600.xhp
msgctxt ""
@@ -30910,7 +30910,7 @@ msgctxt ""
"par_id3151234\n"
"help.text"
msgid "If you type a letter combination that matches a shortcut in the <link href=\"text/shared/01/06040200.xhp\" name=\"replacement table\">replacement table</link>, the letter combination is replaced with the replacement text."
-msgstr "Wenn Sie eine Zeichenfolge eingeben, die mit einem Kürzel in der <link href=\"text/shared/01/06040200.xhp\" name=\"Ersetzungstabelle\">Ersetzungstabelle</link> übereinstimmt, wird die Zeichenfolge durch den Ersetzungstext ausgetauscht."
+msgstr "Wenn Sie eine Zeichenkette eingeben, die mit einem Kürzel in der <link href=\"text/shared/01/06040200.xhp\" name=\"Ersetzungstabelle\">Ersetzungstabelle</link> übereinstimmt, wird die Zeichenkette durch den Ersetzungstext ausgetauscht."
#: 06040100.xhp
msgctxt ""
@@ -31814,7 +31814,7 @@ msgctxt ""
"par_id3154173\n"
"help.text"
msgid "Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1<sup>st</sup>."
-msgstr "Formatiert die Textzeichen der Ordinale wie 1st, 2nd oder 3rd als Exponenten. Im englischen Text wird z.B. 1st in 1<sup>st</sup> konvertiert."
+msgstr "Formatiert die Textzeichen der Ordinale wie 1st, 2nd oder 3rd als Exponenten. In englischem Text wird beispielsweise 1st in 1<sup>st</sup> konvertiert."
#: 06040400.xhp
msgctxt ""
@@ -32982,7 +32982,7 @@ msgctxt ""
"par_id3152881\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Geben Sie an, wie viele vorige Ebenen in der Nummerierung berücksichtigt werden sollen. Wenn Sie z.B. \"2\" eingeben und die vorherige Ebene in der Art \"A, B, C...\" nummeriert ist, so wird das Nummerierungsschema für die aktuelle Ebene zu \"A.1\".</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Geben Sie an, wie viele vorige Ebenen in der Nummerierung berücksichtigt werden sollen. Wenn Sie beispielsweise \"2\" eingeben und die vorherige Ebene in der Art \"A, B, C...\" nummeriert ist, so wird das Nummerierungsschema für die aktuelle Ebene zu \"A.1\".</ahelp></caseinline></switchinline>"
#: 06050500.xhp
msgctxt ""
@@ -35102,7 +35102,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/save\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/accelconfigpage/save\">Speichert die aktuelle Tastenkombination, damit sie künftig wieder eingeladen werden kann.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/save\">Speichert die aktuelle Tastenkombination, damit sie künftig geladen werden kann.</ahelp>"
#: 06140200.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"par_idN106D56\n"
"help.text"
msgid "For this feature to work the help content package for the currently used language must be installed."
-msgstr ""
+msgstr "Damit dies funktioniert, muss die Offline-Hilfe für die aktuell verwendete Sprache installiert sein."
#: 06140402.xhp
msgctxt ""
@@ -37590,7 +37590,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<ahelp hid=\".\">Prefers creating XAdES signatures for ODF and OOXML, PAdES signatures for PDF.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">XAdES-Signaturen werden für ODF und OOXML, PAdES-Signaturen für PDF bevorzugt.</ahelp>"
#: digitalsignatures.xhp
msgctxt ""
@@ -37638,7 +37638,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Entfernt die ausgewählte Signatur aus der Liste. Im Fall von PDF werden alle abhängigen Signaturen ebenfalls entfernt.</ahelp>"
#: extensionupdate.xhp
msgctxt ""
@@ -38262,7 +38262,7 @@ msgctxt ""
"par_idN10582\n"
"help.text"
msgid "Displays or hides grid lines that you can use to align objects such as graphics on a page."
-msgstr "Schaltet die Anzeige von Rasterlinien zum Ausrichten von Objekten wie z.B. Bildern auf einer Seite ein bzw. aus."
+msgstr "Schaltet die Anzeige von Rasterlinien zum Ausrichten von Objekten, wie beispielsweise Bildern auf einer Seite, ein bzw. aus."
#: grid.xhp
msgctxt ""
@@ -38326,7 +38326,7 @@ msgctxt ""
"par_id033020170257116434\n"
"help.text"
msgid "<ahelp hid=\".\">Toggle the visibility of grid points and guide lines to help object moving and precise position in the current sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Schaltet die Sichtbarkeit von Gitterpunkten und Hilfslinien zum Verschieben und präzisen Positionieren von Objekten in der aktuellen Tabelle um.</ahelp>"
#: guides.xhp
msgctxt ""
@@ -39646,7 +39646,7 @@ msgctxt ""
"par_id1439559\n"
"help.text"
msgid "You can filter the list of displayed extensions by their <link href=\"text/shared/01/packagemanager.xhp#extscope\">scope</link>."
-msgstr ""
+msgstr "Sie können die Liste der angezeigten Extensions nach ihrem <link href=\"text/shared/01/packagemanager.xhp#extscope\">Geltungsbereich</link> filtern."
#: packagemanager.xhp
msgctxt ""
@@ -39662,7 +39662,7 @@ msgctxt ""
"par_id1439560\n"
"help.text"
msgid "<ahelp hid=\".\">Bundled extensions are installed by the system administrator using the operating system specific installer packages. These can not be installed, updated or removed here.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mitgelieferte Extensions werden vom Systemadministrator über die betriebssystemspezifischen Installationspakete installiert. Diese können hier nicht installiert, aktualisiert oder entfernt werden.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39678,7 +39678,7 @@ msgctxt ""
"par_id1439561\n"
"help.text"
msgid "<ahelp hid=\".\">Filter extensions available for all users of this computer.</ahelp> These can be updated or removed only with administrator or root privileges."
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtert die für alle Benutzer dieses Computers verfügbaren Extensions heraus.</ahelp> Diese können nur mit Administrator- oder Root-Rechten aktualisiert oder entfernt werden."
#: packagemanager.xhp
msgctxt ""
@@ -39694,7 +39694,7 @@ msgctxt ""
"par_id1439562\n"
"help.text"
msgid "<ahelp hid=\".\">Filter extensions only available for the currently logged in user.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtert die nur für den aktuell eingeloggten Benutzer verfügbaren Extensions heraus.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39878,7 +39878,7 @@ msgctxt ""
"par_id0608200910550049\n"
"help.text"
msgid "Has no direct relation to your personal data, e.g., date of birth or car plate."
-msgstr "Hat keinen direkten Bezug zu Ihren persönlichen Daten, z.B. das Geburtsdatum oder Autokennzeichen."
+msgstr "Hat keinen direkten Bezug zu Ihren persönlichen Daten, beispielsweise das Geburtsdatum oder Autokennzeichen."
#: password_main.xhp
msgctxt ""
@@ -40014,7 +40014,7 @@ msgctxt ""
"par_id281120160944279161\n"
"help.text"
msgid "Choosing <emph>Restart in Normal Mode</emph> will discard all changes, terminate safe mode and start %PRODUCTNAME again in normal mode. Use this option if you got here by accident."
-msgstr ""
+msgstr "Die Wahl von <emph>Im normalen Modus neu starten</emph> verwirft alle Änderungen, beendet den abgesicherten Modus und startet %PRODUCTNAME im normalen Modus neu. Verwenden Sie diese Option, falls Sie hier ungewollt gelandet sind."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Gibt an, dass Writer-Lesezeichen als PDF-Lesezeichen exportiert werden. Lesezeichen werden für Kapitelüberschriften (Extras - Kapitelnummerierung) und alle Einträge des Inhaltsverzeichnisses, für die Sie Hyperlinks hinterlegt haben, erstellt.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -40590,7 +40590,7 @@ msgctxt ""
"par_id8551897\n"
"help.text"
msgid "<ahelp hid=\".\">This option affects how PDF images are exported back to PDF. When this option is disabled, then the first page of the PDF data is included in the output. The PDF export merges the used images, fonts and other resources during export. This is a complex operation, but the result can be viewed in various viewers. When the option is enabled, then the reference XObject markup is used: this is a simple operation, but viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Diese Option beeinflusst, wie PDF-Bilder erneut in PDF exportiert werden. Wenn diese Option deaktiviert ist, wird die erste Seite der PDF-Daten in die Ausgabe eingeschlossen. Der PDF-Export verschmilzt die verwendeten Bilder, Schriftarten und anderen Ressourcen während des Exports. Dies ist eine komplexe Operation, aber das Ergebnis kann mit verschiedenen Betrachtern angesehen werden. Wenn die Option aktiviert ist, wird die XObject-Referenz verwendet: Dies ist eine simple Operation, aber Betrachter müssen dies unterstützen, um Vektorgrafiken darzustellen. Andernfalls wird ein Rückfallbild im Betrachter angezeigt.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41406,7 +41406,7 @@ msgctxt ""
"par_id22107304\n"
"help.text"
msgid "Digital signatures are used to ensure that the PDF was really created by the original author (i.e. you), and that the document has not been modified since it was signed."
-msgstr "Digitale Signaturen stellen sicher, dass ein PDF-Dokument vom tatsächlichen Autor (z.B. Ihnen) erstellt und nicht verändert wurde, seit es digital signiert wurde."
+msgstr "Digitale Signaturen stellen sicher, dass ein PDF-Dokument vom tatsächlichen Autor (beispielsweise Ihnen) erstellt und nicht verändert wurde, seit es digital signiert wurde."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41518,7 +41518,7 @@ msgctxt ""
"par_id13933634\n"
"help.text"
msgid "When using a smartcard, enter the PIN here. Some smartcard software will prompt you for the PIN again before signing. This is cumbersome, but that's how smartcards work."
-msgstr "Wenn Sie eine Chipkarte verwenden, geben Sie die PIN hier ein. Einige Chipkarten-Softwares fordern Sie vorm Signieren ggf. erneut zur Eingabe auf. Dies ist zwar umständlich, aber einige Chipkarten-Softwares arbeiten so."
+msgstr "Wenn Sie eine Chipkarte verwenden, geben Sie die PIN hier ein. Einige Chipkarten-Softwares fordern Sie vor dem Signieren gegebenenfalls erneut zur Eingabe auf. Dies ist zwar umständlich, aber einige Chipkarten-Softwares arbeiten so."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42910,7 +42910,7 @@ msgctxt ""
"par_id2318796\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elseswhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiermit legen Sie ein Muster für einen regulären Ausdruck fest. Zeichenfolgen, die gegen den Datentyp ausgewertet werden, müssen diesem Muster entsprechen, anderenfalls sind sie ungültig. Die Syntax des XSD-Datentyps für reguläre Ausdrücke unterscheidet sich von der Syntax für reguläre Ausdrücke, die an anderen Stellen in %PRODUCTNAME verwendet wird, beispielsweise im Dialog \"Suchen und Ersetzen\".</ahelp>"
+msgstr "<ahelp hid=\".\">Hiermit legen Sie ein Muster für einen regulären Ausdruck fest. Zeichenketten, die gegen den Datentyp ausgewertet werden, müssen diesem Muster entsprechen, anderenfalls sind sie ungültig. Die Syntax des XSD-Datentyps für reguläre Ausdrücke unterscheidet sich von der Syntax für reguläre Ausdrücke, die an anderen Stellen in %PRODUCTNAME verwendet wird, beispielsweise im Dialog \"Suchen & Ersetzen\".</ahelp>"
#: xformsdatatab.xhp
msgctxt ""
@@ -43022,7 +43022,7 @@ msgctxt ""
"par_id1589098\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the number of characters for a string.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiermit legen Sie die Anzahl der Zeichen für eine Zeichenfolge fest.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiermit legen Sie die Anzahl der Zeichen für eine Zeichenkette fest.</ahelp>"
#: xformsdatatab.xhp
msgctxt ""
@@ -43038,7 +43038,7 @@ msgctxt ""
"par_id8746910\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the minimum number of characters for a string.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiermit legen Sie die Mindestanzahl der Zeichen für eine Zeichenfolge fest.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiermit legen Sie die Mindestanzahl der Zeichen für eine Zeichenkette fest.</ahelp>"
#: xformsdatatab.xhp
msgctxt ""
@@ -43054,4 +43054,4 @@ msgctxt ""
"par_id5675527\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
-msgstr "<ahelp hid=\".\">Hiermit legen Sie die Höchstzahl der Zeichen für eine Zeichenfolge fest.</ahelp>"
+msgstr "<ahelp hid=\".\">Hiermit legen Sie die Höchstzahl der Zeichen für eine Zeichenkette fest.</ahelp>"
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index 474c9c372be..13d737aaeb2 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 17:28+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-06-18 02:13+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496770086.000000\n"
+"X-POOTLE-MTIME: 1497752013.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3147336\n"
"help.text"
msgid "Icon on the <emph>Insert</emph> toolbar (you may need to enable this initially invisible icon):"
-msgstr "Symbol in der <emph>Einfügen</emph> Symbolleiste (Sie müssen evtl. das ursprünglich unsichtbaren Symbol einblenden)."
+msgstr "Symbol in der Symbolleiste <emph>Einfügen</emph> (Sie müssen eventuell das ursprünglich unsichtbare Symbol einblenden):"
#: 01170000.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_idN10CF7\n"
"help.text"
msgid "Form Design"
-msgstr "Formular Entwurf"
+msgstr "Formular-Entwurf"
#: 01170000.xhp
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"par_id3148566\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_WIDTH\" visibility=\"hidden\">Sets the column width in the table control field.</ahelp> Sets the column width in the table control field in the units that are specified in the %PRODUCTNAME module options. If you want, you can enter a value followed by a valid measurement unit, for example, 2 cm."
-msgstr "<ahelp hid=\"HID_PROP_WIDTH\" visibility=\"hidden\">Hier legen Sie die Spaltenbreite für Tabellen-Kontrollfelder fest.</ahelp> Hier legen Sie die Spaltenbreite für Tabellen-Kontrollfelder in der Einheit, die in %PRODUCTNAME voreingestellt ist, fest. Sie können auch einen Wert, gefolgt von einer anderen gültigen Einheit, festlegen, z.B. 2cm."
+msgstr "<ahelp hid=\"HID_PROP_WIDTH\" visibility=\"hidden\">Hier legen Sie die Spaltenbreite für Tabellen-Kontrollfelder fest.</ahelp> Hier legen Sie die Spaltenbreite für Tabellen-Kontrollfelder in der Einheit, die in %PRODUCTNAME voreingestellt ist, fest. Sie können auch einen Wert, gefolgt von einer anderen gültigen Einheit, festlegen, beispielsweise 2 cm."
#: 01170101.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_id3148750\n"
"help.text"
msgid "You can have a format check with control fields that accept formatted contents (date, time, and so on). <ahelp hid=\"HID_PROP_STRICTFORMAT\">If the strict format function is activated (Yes), only the allowed characters are accepted.</ahelp> For example, in a date field, only numbers or date delimiters are accepted; all alphabet entries typed with your keyboard are ignored."
-msgstr "In Kontrollfeldern, die formatierte Inhalte akzeptieren (z.B. Datums- oder Uhrzeitwerte), können Sie eine Formatkontrolle ausführen lassen. <ahelp hid=\"HID_PROP_STRICTFORMAT\">Ist diese Funktion aktiviert (Ja), werden nur die zugelassenen Zeichen übernommen.</ahelp> So werden beispielsweise in einem Datumsfeld nur Zahlen oder Datumstrennzeichen akzeptiert und alle Buchstabeneingaben ignoriert."
+msgstr "In Kontrollfeldern, die formatierte Inhalte akzeptieren (beispielsweise Datums- oder Uhrzeitwerte), können Sie eine Formatkontrolle ausführen lassen. <ahelp hid=\"HID_PROP_STRICTFORMAT\">Ist diese Funktion aktiviert (Ja), werden nur die zugelassenen Zeichen übernommen.</ahelp> So werden beispielsweise in einem Datumsfeld nur Zahlen oder Datumstrennzeichen akzeptiert und alle Buchstabeneingaben ignoriert."
#: 01170101.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"hd_id3148901\n"
"help.text"
msgid "Empty string is NULL"
-msgstr "Leere Zeichenfolge ist NULL"
+msgstr "Leere Zeichenkette ist NULL"
#: 01170102.xhp
msgctxt ""
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_idN11008\n"
"help.text"
msgid "An empty string is copied to the cell."
-msgstr "Eine leere Zeichenfolge wird in die Zelle kopiert."
+msgstr "Eine leere Zeichenkette wird in die Zelle kopiert."
#: 01170102.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"par_idN110EA\n"
"help.text"
msgid "An empty string is copied to the cell."
-msgstr "Eine leere Zeichenfolge wird in die Zelle kopiert."
+msgstr "Eine leere Zeichenkette wird in die Zelle kopiert."
#: 01170102.xhp
msgctxt ""
@@ -8270,7 +8270,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Design Mode On/Off"
-msgstr "Designmodus"
+msgstr "Entwurfsmodus An/Aus"
#: 01170500.xhp
msgctxt ""
@@ -9238,7 +9238,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "You cannot activate the controls of the form or edit contents of database records in Design Mode. However, you can change the position and size of the controls, edit other properties, and add or delete controls in Design Mode."
-msgstr "Im Entwurfsmodus können Sie keine Kontrollelemente im Formular bedienen oder Datenbankeinträge ändern. Sie können in diesem Modus jedoch Position und Größe der Kontrollelemente verändern und andere Elementeigenschaften anpassen, sowie Elemente zum hinzufügen löschen."
+msgstr "Im Entwurfsmodus können Sie keine Kontrollelemente im Formular bedienen oder Datenbankeinträge ändern. Sie können in diesem Modus jedoch Position und Größe der Kontrollelemente verändern und andere Elementeigenschaften anpassen, sowie Elemente hinzufügen oder löschen."
#: 01171000.xhp
msgctxt ""
@@ -9622,7 +9622,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "In $[officename] you see the available fonts only if a printer is installed as the default printer in your system. In order to install a printer as the default printer please refer to your operating system documentation."
-msgstr ""
+msgstr "In $[officename] sehen Sie die vorhandenen Schriftarten nur, wenn in Ihrem System ein Drucker als Standarddrucker installiert ist. Zum Installieren eines Druckers als Standarddrucker schauen Sie bitte in die Dokumentation Ihres Betriebssystems."
#: 02020000.xhp
msgctxt ""
@@ -12790,7 +12790,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/numformat\">Specifies a format from the list, if the format information of certain data fields is not accepted.</ahelp> The formats supplied here are only available for certain database fields, such as numeric or Boolean fields. If you select a database field in text format, you will not be able to select any format from the selection list, since the text format will be automatically maintained."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/numformat\">Hier wählen Sie ein Format für Datenfelder, deren eigene Formatinformationen nicht akzeptiert werden.</ahelp> Die hier angebotenen Formate sind nur für bestimmte Datenbankfelder, z.B. numerische oder Boolesche Felder, verfügbar. Für Datenbankfelder in Textformat kann keines der Formate in der Liste gewählt werden. In diesem Fall wird das Textformat automatisch beibehalten."
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/numformat\">Hier wählen Sie ein Format für Datenfelder, deren eigene Formatinformationen nicht akzeptiert werden.</ahelp> Die hier angebotenen Formate sind nur für bestimmte Datenbankfelder, beispielsweise numerische oder Boolesche Felder, verfügbar. Für Datenbankfelder in Textformat kann keines der Formate in der Liste gewählt werden. In diesem Fall wird das Textformat automatisch beibehalten."
#: 12070100.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/04.po b/source/de/helpcontent2/source/text/shared/04.po
index cf32d760878..4c6938c1e2f 100644
--- a/source/de/helpcontent2/source/text/shared/04.po
+++ b/source/de/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-26 06:00+0000\n"
+"PO-Revision-Date: 2017-06-15 03:30+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495778425.000000\n"
+"X-POOTLE-MTIME: 1497497458.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "$[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a </caseinline><defaultinline>~/a</defaultinline></switchinline> into the URL field and the AutoComplete function displays the first file or first directory found <switchinline select=\"sys\"><caseinline select=\"WIN\">on the C: drive </caseinline><defaultinline>in your home folder</defaultinline></switchinline> that starts with the letter \"a\"."
-msgstr "$[officename] hat eine Autovervollständigungs-Funktion, welche sich in einigen Text- und Listen-Feldern selbst aktiviert. Geben Sie z.B. <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline><defaultinline>~/a</defaultinline></switchinline> in das Feld URL ein und die Autovervollständigungs-Funktion zeigt die erste Datei oder das erste Verzeichnis an, das <switchinline select=\"sys\"><caseinline select=\"WIN\">auf dem C: Laufwerk</caseinline><defaultinline>in Ihrem Home-Verzeichnis</defaultinline></switchinline> gefunden wurde, das mit dem Buchstaben \"a\" beginnt."
+msgstr "$[officename] hat eine Autovervollständigungs-Funktion, welche sich in einigen Text- und Listen-Feldern selbst aktiviert. Geben Sie beispielsweise <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline><defaultinline>~/a</defaultinline></switchinline> in das Feld URL ein und die Autovervollständigungs-Funktion zeigt die erste Datei oder das erste Verzeichnis an, das <switchinline select=\"sys\"><caseinline select=\"WIN\">auf dem C: Laufwerk</caseinline><defaultinline>in Ihrem Home-Verzeichnis</defaultinline></switchinline> gefunden wurde, das mit dem Buchstaben \"a\" beginnt."
#: 01010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/05.po b/source/de/helpcontent2/source/text/shared/05.po
index c396bb44e71..40833afdeff 100644
--- a/source/de/helpcontent2/source/text/shared/05.po
+++ b/source/de/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 04:34+0000\n"
+"PO-Revision-Date: 2017-06-15 03:31+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496637243.000000\n"
+"X-POOTLE-MTIME: 1497497491.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "The \"Note\" icon points out extra information: for example, alternative ways to reach a certain goal."
-msgstr "Das \"Hinweis!\"-Symbol weist auf zusätzliche Informationen hin, z.B. eine Alternative, um ein bestimmtes Ziel zu erreichen."
+msgstr "Das Symbol \"Hinweis!\" weist auf zusätzliche Informationen hin, beispielsweise Alternativen, um ein bestimmtes Ziel zu erreichen."
#: 00000002.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/autokorr.po b/source/de/helpcontent2/source/text/shared/autokorr.po
index ca9aa95d721..b9be2978f04 100644
--- a/source/de/helpcontent2/source/text/shared/autokorr.po
+++ b/source/de/helpcontent2/source/text/shared/autokorr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2013-11-23 07:12+0000\n"
+"PO-Revision-Date: 2017-06-09 04:32+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1385190745.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496982724.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3150278\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text. A string has been detected as an URL and is now shown as a hyperlink."
-msgstr "Ihr Text wurde durch die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> so korrigiert, dass eine Zeichenfolge als URL erkannt und als Hyperlink dargestellt wurde."
+msgstr "Ihr Text wurde durch die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> so korrigiert, dass eine Zeichenkette als URL erkannt und als Hyperlink dargestellt wurde."
#: 09000000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/autopi.po b/source/de/helpcontent2/source/text/shared/autopi.po
index 18df9e57186..ae59382ca86 100644
--- a/source/de/helpcontent2/source/text/shared/autopi.po
+++ b/source/de/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-30 09:20+0000\n"
+"PO-Revision-Date: 2017-06-15 03:31+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496136044.000000\n"
+"X-POOTLE-MTIME: 1497497513.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "You have saved the files that have been created during the Export process in the c:\\Inet\\wwwroot\\presentation\\ directory. In this directory, the Export creates an HTML file that can be named, for example, as \"secret.htm\". You entered this name in the Save dialog (see above). The presenter can now browse to the HTML Export files by entering the http://myserver.com/presentation/secret.htm URL in any HTTP Browser having JavaScript support. The presenter is now able to modify the page using some form controls."
-msgstr "Die vom Export erstellten Dateien haben Sie im Verzeichnis c:\\Inet\\wwwroot\\vortrag\\ gespeichert. In diesem Verzeichnis erstellt der Export eine HTML-Datei, die z.B. den Dateinamen geheim.htm erhalten kann. Sie haben diesen Namen im Dialog Speichern (vergleichen Sie oben) eingegeben. Der Vortragende kann jetzt durch Eingabe der URL http://meinserver.com/vortrag/geheim.htm in einen beliebigen HTTP-Browser mit JavaScript-Unterstützung den HTML Export laden. Über eine Reihe von Formularfeldern kann er die angezeigte Seite ändern."
+msgstr "Die vom Export erstellten Dateien haben Sie im Verzeichnis c:\\Inet\\wwwroot\\vortrag\\ gespeichert. In diesem Verzeichnis erstellt der Export eine HTML-Datei, die beispielsweise den Dateinamen \"geheim.htm\" erhalten kann. Sie haben diesen Namen im Dialog Speichern (vergleichen Sie oben) eingegeben. Der Vortragende kann jetzt durch Eingabe der URL http://meinserver.com/vortrag/geheim.htm in einen beliebigen HTTP-Browser mit JavaScript-Unterstützung den HTML-Export laden. Über eine Reihe von Formularfeldern kann er die angezeigte Seite ändern."
#: 01110200.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/explorer/database.po b/source/de/helpcontent2/source/text/shared/explorer/database.po
index d8226c7e03b..2f7e40e7928 100644
--- a/source/de/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/de/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 04:35+0000\n"
+"PO-Revision-Date: 2017-06-18 02:15+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496637357.000000\n"
+"X-POOTLE-MTIME: 1497752116.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3155302\n"
"help.text"
msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields in the two windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query."
-msgstr "Klicken Sie dazu ein Datenfeld einer Tabelle an (z.B. das Datenfeld \"Artikel-Nummer\" aus der Kunden-Tabelle) und ziehen Sie dann bei gedrückt gehaltener Maustaste auf das Datenfeld der anderen Tabelle (\"Artikel-Nummer\" aus der Artikel-Tabelle). Wenn Sie nun die Maustaste loslassen, sehen Sie eine Linie, die die beiden Felder in den beiden Fenstern verbindet. In der resultierenden SQL-Abfrage wird die entsprechende Bedingung eingetragen, dass der Inhalt beider Datenfelder gleich sein muss."
+msgstr "Klicken Sie dazu ein Datenfeld einer Tabelle an (beispielsweise das Datenfeld \"Artikel-Nummer\" aus der Kunden-Tabelle) und ziehen Sie dann bei gedrückt gehaltener Maustaste auf das Datenfeld der anderen Tabelle (\"Artikel-Nummer\" aus der Artikel-Tabelle). Wenn Sie nun die Maustaste loslassen, sehen Sie eine Linie, die die beiden Felder in den beiden Fenstern verbindet. In der resultierenden SQL-Abfrage wird die entsprechende Bedingung eingetragen, dass der Inhalt beider Datenfelder gleich sein muss."
#: 02010100.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3145316\n"
"help.text"
msgid "This function is only available if you are working with a relational database."
-msgstr "Diese Funktion steht nicht bei allen Datenbanken zur Verfügung. Sie erhalten ggf. die Meldung \"Die Datenbank unterstützt keine Relationen.\" Eine ähnliche Funktionalität ist dann eventuell im Abfrageentwurf durch Verbundeigenschaften möglich."
+msgstr "Diese Funktion steht nicht bei allen Datenbanken zur Verfügung. Sie erhalten gegebenfalls die Meldung \"Die Datenbank unterstützt keine Relationen.\" Eine ähnliche Funktionalität ist dann eventuell im Abfrageentwurf durch Verbundeigenschaften möglich."
#: 05020000.xhp
msgctxt ""
@@ -8070,7 +8070,7 @@ msgctxt ""
"par_idN10598\n"
"help.text"
msgid "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Enter the starting point to search the LDAP database, for example, \"dc=com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Geben Sie den Ausgangspunkt für die Suche in der LDAP-Datenbank an, z.B. \"dc=com\".</ahelp>"
+msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Geben Sie den Ausgangspunkt für die Suche in der LDAP-Datenbank an, beispielsweise \"dc=com\".</ahelp>"
#: dabawiz02ldap.xhp
msgctxt ""
@@ -8926,7 +8926,7 @@ msgctxt ""
"par_idN107BD\n"
"help.text"
msgid "In %PRODUCTNAME Base, you can access data that is stored in a wide variety of database file formats. %PRODUCTNAME Base natively supports some flat file database formats, such as the dBASE format. You can also use %PRODUCTNAME Base to connect to external relational databases, such as databases from MySQL or Oracle."
-msgstr "In %PRODUCTNAME Base können Sie auf Daten zugreifen, die in einer großen Vielfalt von Datenbankdateiformaten gespeichert sind. %PRODUCTNAME Base unterstützt intern einige Flat-File-Datenbankformate, wie zum Beispiel das dBase-Format. Sie können auch %PRODUCTNAME Base zur Verbindung mit externen relationalen Datenbanken wie z.B. MySQL oder Oracle benutzen."
+msgstr "In %PRODUCTNAME Base können Sie auf Daten zugreifen, die in einer großen Vielfalt von Datenbankdateiformaten gespeichert sind. %PRODUCTNAME Base unterstützt intern einige Flat-File-Datenbankformate, wie zum Beispiel das dBase-Format. Sie können auch %PRODUCTNAME Base zur Verbindung mit externen relationalen Datenbanken wie beispielsweise MySQL oder Oracle benutzen."
#: main.xhp
msgctxt ""
@@ -9150,7 +9150,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "<ahelp hid=\".\">Renames the selected object. Depending on the database, some names, characters, and name length might be invalid.</ahelp>"
-msgstr "<ahelp hid=\".\">Dient zum Umbenennen des ausgewählten Objekts. Je nach Datenbank kann es vorkommen, dass einige Namen, Zeichen und Zeichenfolgenlängen ungültig sind.</ahelp>"
+msgstr "<ahelp hid=\".\">Dient zum Umbenennen des ausgewählten Objekts. Je nach Datenbank kann es vorkommen, dass einige Namen, Zeichen und Zeichenkettenlängen ungültig sind.</ahelp>"
#: menuedit.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id7599108\n"
"help.text"
msgid "If you like to sort and group, open the Report Builder view, then open the Sorting and Grouping dialog. Select to show a Group Header for the fields that you want to group, and select to hide the Group Header for the fields that you want to be sorted. Close the Sorting and Grouping window and execute the report."
-msgstr "Wenn Sie sortieren und gruppieren möchten, öffnen Sie die Berichtsentwurfsansicht und dann den Dialog Sortierung und Gruppierung. Für die Felder, die Sie gruppieren möchten, zeigen Sie den Gruppenkopf an. Für die Felder, nach denen Sie sortieren möchten, blenden Sie, den Gruppenkopf aus. Schließen Sie das Fenster Sortierung und Gruppierung und führen dann den Bericht aus."
+msgstr "Wenn Sie sortieren und gruppieren möchten, öffnen Sie die Berichtsentwurfsansicht und dann den Dialog Sortierung und Gruppierung. Für die Felder, die Sie gruppieren möchten, zeigen Sie den Gruppenkopf an. Für die Felder, nach denen Sie sortieren möchten, blenden Sie den Gruppenkopf aus. Schließen Sie das Fenster Sortierung und Gruppierung und führen dann den Bericht aus."
#: rep_main.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index b3f4f44bc0b..41a907b64de 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 17:29+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2017-06-18 02:21+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496770157.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497752503.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3149669\n"
"help.text"
msgid "In Internet Explorer, browse to a web page that contains a link to a $[officename] Writer document, for example."
-msgstr "Rufen Sie in Internet Explorer eine Webseite auf, die beispielsweise eine Verknüpfung zu einem $[officename] Writer-Dokument, also einem Dokument mit der Dateinamenserweiterung .sxw, enthält."
+msgstr "Rufen Sie im Internet Explorer eine Webseite auf, die beispielsweise eine Verknüpfung zu einem $[officename] Writer-Dokument enthält."
#: activex.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "$[officename] provides the ability to use alternative input devices for access to all functions of $[officename]."
-msgstr "$[officename] bietet die Möglichkeit, alternative Eingabegeräte zum Zugriff auf alle Funktionen von $[officename] zu benutzen."
+msgstr "$[officename] bietet die Möglichkeit, alternative Eingabegeräte zum Zugriff auf alle Funktionen von $[officename] zu verwenden."
#: assistive.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id190820161707153804\n"
"help.text"
msgid "%PRODUCTNAME creates a working copy of the file in the server (and inserts the string <item type=\"literal\">(Working Copy)</item> in the file name) when a file is checked-out. Every edition and save operation is done in the working copy. You can save your file as many times you want. When you finished your changes, check-in the file."
-msgstr "%PRODUCTNAME erstellt eine Arbeitskopie der Datei auf den Server (und fügt die Zeichenfolge <item type=\"literal\">(Web)</item> im Dateinamen ein), wenn eine Datei gesperrt wird. Jede Bearbeitungs- und Speicheroperation erfolgt in der Arbeitskopie. Sie können Ihre Datei so oft speichern, wie Sie wollen. Wenn Sie Ihre Änderungen fertiggestellt haben, führen Sie die Arbeitsversion der Datei mit dem Original zusammen."
+msgstr "%PRODUCTNAME erstellt eine Arbeitskopie der Datei auf den Server (und fügt die Zeichenkette <item type=\"literal\">(Web)</item> im Dateinamen ein), wenn eine Datei gesperrt wird. Jede Bearbeitungs- und Speicheroperation erfolgt in der Arbeitskopie. Sie können Ihre Datei so oft speichern, wie Sie wollen. Wenn Sie Ihre Änderungen fertiggestellt haben, führen Sie die Arbeitsversion der Datei mit dem Original zusammen."
#: cmis-remote-files.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "You can insert text into other document types, such as spreadsheets and presentations. Note that there is a difference between whether the text is inserted into a text frame, a spreadsheet cell, or into the outline view of a presentation."
-msgstr "Texte können Sie z.B. in Tabellendokumente und Präsentationen kopieren. Dabei ist zu unterscheiden, ob der Text in einen eigenen Textrahmen gesetzt werden soll oder ob er in eine Tabellenzelle oder in die Gliederung einer Präsentation kopiert werden soll."
+msgstr "Texte können Sie beispielsweise in Tabellendokumente und Präsentationen kopieren. Dabei ist zu unterscheiden, ob der Text in einen eigenen Textrahmen gesetzt werden soll oder ob er in eine Tabellenzelle oder in die Gliederung einer Präsentation kopiert werden soll."
#: copytext2application.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "With the help of SQL commands you can control the database directly, and can also create and edit tables and queries."
-msgstr "Sie können eine Datenbank auch direkt mit Hilfe von SQL-Befehlen steuern, Tabellen erzeugen, editieren, Abfragen erstellen usw."
+msgstr "Sie können eine Datenbank auch direkt mithilfe von SQL-Befehlen steuern, sowie Tabellen erzeugen und bearbeiten, Abfragen erstellen usw."
#: data_enter_sql.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"par_id3155431\n"
"help.text"
msgid "You can edit the page styles for the first page and the following pages of the report as well as the paragraph styles, the number formats, the printed field labels, and more."
-msgstr "Ganz nach Belieben können Sie die Seitenvorlagen für die erste Seite oder die Folgeseiten, Absatzvorlagen, Zahlenformate, die im Ausdruck enthaltenen Feldbeschriftungen und viele andere Berichtelemente bearbeiten. Von der Bearbeitung des SQL-Ausdrucks, des Datenbanknamens, der verborgenen Formularkontrollfelder und den dazugehörigen Informationen sollten Sie jedoch absehen, sofern Sie nicht über gründliche Kenntnisse in der jeweiligen Datenbanktechnologie verfügen."
+msgstr "Ganz nach Belieben können Sie die Seitenvorlagen für die erste Seite oder die Folgeseiten, Absatzvorlagen, Zahlenformate, die im Ausdruck enthaltenen Feldbeschriftungen und viele andere Berichtelemente bearbeiten."
#: data_report.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Wenn Sie ein Dokument mit OpenOffice.org 3.2 bzw. StarOffice 9.2 oder neuer signieren und Sie das Dokument in einer älteren Version der Software öffnen, wird die Unterschrift als \"ungültig\" angezeigt. Signaturen, die mit älteren Softwareversionen erzeugt wurden, werden beim Öffnen in einer neueren Version mit \"Nicht alle Teile des Dokuments sind signiert\" gekennzeichnet."
#: digital_signatures.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "Wenn Sie ein OOXML Dokument signieren, wird die Signatur immer mit \"Nicht alle Teile des Dokuments sind signiert\" gekennzeichnet. Um die Kompatibilität mit Microsoft Office zu gewährleisten, werden Metadaten von OOXML Dateien nie signiert."
#: digital_signatures.xhp
msgctxt ""
@@ -7486,7 +7486,7 @@ msgctxt ""
"par_id3152922\n"
"help.text"
msgid "If you want, you can rearrange the <emph>Commands </emph>list by selecting a command name and clicking <emph>Move Up</emph> and <emph>Move Down</emph>."
-msgstr "Auf Wunsch können Sie die ausgewählten Befehle neu arrangieren. Wählen Sie dort eine Schaltfläche aus und klicken Sie auf <emph>Nach oben</emph> oder <emph>Nach unten</emph>. Sollte für den Befehl noch kein Symbol mitgeliefert werden, so können Sie dies durch Klicken auf <emph>Ändern</emph> hinzufügen oder austauschen."
+msgstr "Auf Wunsch können Sie die <emph>Befehle</emph> in der Liste neu anordnen, indem Sie eine Schaltfläche auswählen und auf <emph>Nach oben</emph> oder <emph>Nach unten</emph> klicken."
#: edit_symbolbar.xhp
msgctxt ""
@@ -7662,7 +7662,7 @@ msgctxt ""
"par_id3153526\n"
"help.text"
msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by e-mail, should additional information be required. By default this box is not marked, so you will not get any e-mail."
-msgstr "Über Ihre Antwort auf Rückfragen, die unsere Programmierer möglicherweise bezüglich des Fehlerberichts an Sie richten, würden wir uns freuen. Wenn Sie damit einverstanden sind, dass wir uns ggf. mit Fragen mittels E-Mail an Sie wenden, markieren Sie das entsprechende Feld. Dieses Markierfeld ist standardmäßig leer, und Sie erhalten keine E-Mails von uns."
+msgstr "Über Ihre Antwort auf Rückfragen, die unsere Programmierer möglicherweise bezüglich des Fehlerberichts an Sie richten, würden wir uns freuen. Wenn Sie damit einverstanden sind, dass wir uns gegebenenfalls mit Fragen mittels E-Mail an Sie wenden, markieren Sie das entsprechende Feld. Dieses Markierfeld ist standardmäßig leer, und Sie erhalten keine E-Mails von uns."
#: error_report.xhp
msgctxt ""
@@ -8606,7 +8606,7 @@ msgctxt ""
"par_idN10731\n"
"help.text"
msgid "You can use the Form Controls toolbar to add checkboxes, buttons, tables showing data records, and other controls to a document."
-msgstr "Sie können mit der Symbolleiste \"Formular-Steuerlemente\" einem Dokument Markierfelder, Schaltflächen, Tabellen, die Datensätze anzeigen, und andere Kontrollfelder hinzufügen."
+msgstr "Sie können mit der Symbolleiste Formular-Steuerlemente in einem Dokument Markierfelder, Schaltflächen, Tabellen mit Datensätzen und andere Kontrollfelder anzeigen oder hinzufügen."
#: formfields.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_idN106A0\n"
"help.text"
msgid "Use the icons in the ImageMap Editor to draw a hotspot shape, for example a rectangle, over the image at the background."
-msgstr "Ziehen Sie mit den Symbolen im Verweissensitive Grafik-Editor eine Hotspot-Form (z.B. ein Rechteck) über dem Bild im Hintergrund auf."
+msgstr "Ziehen Sie mit den Symbolen im Verweissensitive Grafik-Editor eine Hotspot-Form (beispielsweise ein Rechteck) über dem Bild im Hintergrund auf."
#: imagemap.xhp
msgctxt ""
@@ -9870,7 +9870,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "Some of the filters open a dialog, which you can use to select, for example, the intensity of the filter. Most filters can be applied multiple times to increase the filter effect."
-msgstr "Für einige dieser Filter wird ein Dialog angezeigt, in dem Sie Parameter wie z. B. die Filterstärke einstellen können. Die meisten Filter können mehrmals angewendet werden, um den Filtereffekt zu verstärken."
+msgstr "Für einige dieser Filter wird ein Dialog angezeigt, in dem Sie Parameter, beispielsweise die Filterstärke, einstellen können. Die meisten Filter können mehrmals angewendet werden, um den Filtereffekt zu verstärken."
#: insert_bitmap.xhp
msgctxt ""
@@ -9934,7 +9934,7 @@ msgctxt ""
"par_id3155414\n"
"help.text"
msgid "Select the bitmap image. You can also select additional objects, such as text, to be exported with the image by pressing the shift key while selecting or by opening a selection frame around all objects."
-msgstr "Wählen Sie das Bitmap-Bild aus. Sie können auch zusätzliche Objekte wie z. B. einen Text, der mit dem Bild exportiert werden soll, auswählen. Hierzu halten Sie beim Auswählen die Umschalttaste gedrückt oder ziehen einen Auswahlrahmen um alle gewünschten Objekte."
+msgstr "Wählen Sie das Bitmap-Bild aus. Sie können auch zusätzliche Objekte auswählen, beispielsweise Text, der mit dem Bild exportiert werden soll. Hierzu halten Sie beim Auswählen die Umschalttaste gedrückt oder ziehen einen Auswahlrahmen um alle gewünschten Objekte."
#: insert_bitmap.xhp
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"par_id3083443\n"
"help.text"
msgid "In the <emph>File format</emph> field, select the file format you want, for example GIF or JPEG."
-msgstr "Wählen Sie im Feld <emph>Dateiformat</emph> das gewünschte Dateiformat, z. B. GIF oder JPEG."
+msgstr "Wählen Sie im Feld <emph>Dateiformat</emph> das gewünschte Dateiformat, beispielsweise GIF oder JPEG."
#: insert_bitmap.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id3149164\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">To draw multiple objects of the same type, double-click the icon.</caseinline><caseinline select=\"IMPRESS\">To draw multiple objects of the same type, double-click the icon.</caseinline><defaultinline>Draw multiple objects of the same type. Click the document without moving the mouse to stop drawing objects.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Doppelklicken Sie auf das Symbol, um mehrere Objekte des gleichen Typs zu zeichnen.</caseinline><caseinline select=\"IMPRESS\">Doppelklicken Sie auf das Symbol, um mehrere Objekte des gleichen Typs zu zeichnen.</caseinline><defaultinline>Zeichen Sie mehrere Objekte des gleichen Typs. Klicken Sie in das Dokument, ohne die Maus zu bewegen, um das Zeichnen von Objekten zu beenden.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Doppelklicken Sie auf das Symbol, um mehrere Objekte des gleichen Typs zu zeichnen.</caseinline><caseinline select=\"IMPRESS\">Doppelklicken Sie auf das Symbol, um mehrere Objekte des gleichen Typs zu zeichnen.</caseinline><defaultinline>Zeichnen Sie mehrere Objekte des gleichen Typs. Klicken Sie in das Dokument, ohne die Maus zu bewegen, um das Zeichnen von Objekten zu beenden.</defaultinline></switchinline>"
#: insert_graphic_drawit.xhp
msgctxt ""
@@ -10158,7 +10158,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "This function allows you to insert special characters, such as check marks, boxes, and telephone symbols, into your text."
-msgstr "Diese Funktion ermöglicht es, Sonderzeichen wie z. B. Häkchen, Kästchen und Telefonsymbole in den Text einzufügen."
+msgstr "Diese Funktion ermöglicht es, Sonderzeichen, beispielsweise Häkchen, Kästchen und Telefonsymbole, in den Text einzufügen."
#: insert_specialchar.xhp
msgctxt ""
@@ -10206,7 +10206,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>Linux / NetBSD:</emph> Using the dead-keys. In an xterm window first press the (´) or (`) key. The character should not appear on the screen. Now press a letter, such as \"e\". The e is given an accent, é or è. If not, then check in the XF86Config file if a \"nodeadkeys\" XkbdVariant has been loaded there and replace it. You may also have set the environment variable SAL_NO_DEADKEYS, which deactivates the dead-keys.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>Linux / NetBSD:</emph> Arbeiten mit den dead-keys. Drücken Sie in einem xterm-Fenster zuerst eine der Tasten (´) oder (`). Das Zeichen darf nicht auf dem Bildschirm erscheinen. Drücken Sie nun einen Buchstaben z. B. \"e\". Das \"e\" erhält einen Akzent und wird zu \"é\" oder \"è\". Sollte dies nicht der Fall sein, kontrollieren Sie, ob in der Datei XF86Config eine \"nodeadkeys\" XkbdVariant geladen ist und ersetzen Sie sie gegebenenfalls. Möglicherweise wurde auch die Umgebungsvariable SAL_NO_DEADKEYS gesetzt, die dead-keys deaktiviert. </caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>Linux / NetBSD:</emph> Arbeiten mit den dead-keys. Drücken Sie in einem xterm-Fenster zuerst eine der Tasten (´) oder (`). Das Zeichen darf nicht auf dem Bildschirm erscheinen. Drücken Sie nun einen Buchstaben, beispielsweise \"e\". Das \"e\" erhält einen Akzent und wird zu \"é\" oder \"è\". Sollte dies nicht der Fall sein, kontrollieren Sie, ob in der Datei XF86Config eine \"nodeadkeys\" XkbdVariant geladen ist und ersetzen Sie sie gegebenenfalls. Möglicherweise wurde auch die Umgebungsvariable SAL_NO_DEADKEYS gesetzt, die dead-keys deaktiviert. </caseinline></switchinline>"
#: insert_specialchar.xhp
msgctxt ""
@@ -10214,7 +10214,7 @@ msgctxt ""
"par_id3148943\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>All Unix systems:</emph> (Alt Graph) as additional compose key. The (Alt Graph) key can work in $[officename] like the Compose key, if you set the environment variable SAL_ALTGR_COMPOSE. The (Alt Graph) key must trigger a mode_switch, so, for example, xmodmap -e \"keysym Alt_R = Mode_switch\" must be set. First press (Alt Graph), then the first modifier, then the second modifier. The characters are combined as described on a Solaris system in the file /usr/openwin/include/X11/Suncompose.h.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>Alle Unix-Systeme:</emph> (Alt Gr) als zusätzliche Compose-Taste. Die Taste (Alt Gr) kann in $[officename] wie die Compose-Taste arbeiten, wenn Sie die Umgebungsvariable SAL_ALTGR_COMPOSE setzen. Die Taste Alt Gr muss einen Mode_switch auslösen, es muss also z. B. xmodmap -e \"keysym Alt_R = Mode_switch\" gesetzt sein. Drücken Sie zuerst (Alt Gr), dann den ersten Modifier, dann den zweiten Modifier. Die Zeichen werden so zusammengefügt, wie es auf einem Solaris-System in der Datei /usr/openwin/include/X11/Suncompose.h beschrieben wird.</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>Alle Unix-Systeme:</emph> (Alt Gr) als zusätzliche Compose-Taste. Die Taste (Alt Gr) kann in $[officename] wie die Compose-Taste arbeiten, wenn Sie die Umgebungsvariable SAL_ALTGR_COMPOSE setzen. Die Taste (Alt Gr) muss einen Mode_switch auslösen, so muss beispielsweise xmodmap -e \"keysym Alt_R = Mode_switch\" gesetzt sein. Drücken Sie zuerst (Alt Gr), dann den ersten Modifier, dann den zweiten Modifier. Die Zeichen werden so zusammengefügt, wie es auf einem Solaris-System in der Datei /usr/openwin/include/X11/Suncompose.h beschrieben wird.</caseinline></switchinline>"
#: insert_specialchar.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "On each module's main help page (for example, the <item type=\"productname\">%PRODUCTNAME</item> Writer or <item type=\"productname\">%PRODUCTNAME</item> Calc main help page) there is a link to access the keyboard shortcuts' help for that module."
-msgstr "Die Eingangsseite der Hilfe zu jedem Modul (z. B. für <item type=\"productname\">%PRODUCTNAME</item> Writer oder <item type=\"productname\">%PRODUCTNAME</item> Calc) enthält einen Hyperlink, der Sie zur Hilfe über die Tastatursteuerung des jeweiligen Moduls führt."
+msgstr "Die Eingangsseite der Hilfe zu jedem Modul (beispielsweise für <item type=\"productname\">%PRODUCTNAME</item> Writer oder <item type=\"productname\">%PRODUCTNAME</item> Calc) enthält einen Hyperlink, der Sie zur Hilfe über die Tastatursteuerung des jeweiligen Moduls führt."
#: keyboard.xhp
msgctxt ""
@@ -10494,7 +10494,7 @@ msgctxt ""
"par_id3144433\n"
"help.text"
msgid "Press Enter to execute the selected icon. If the selected icon normally demands a consecutive mouse action, such as inserting a rectangle, then pressing the Enter key is not sufficient: in these cases press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "Drücken Sie die Eingabetaste, um das gewählte Symbol auszuführen. Wenn das gewählte Symbol im Normalfall zu einer Mausaktion führt, wie z. B. das Einfügen eines Rechtecks, dann genügt die Eingabetaste nicht. Drücken Sie in diesen Fällen <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Eingabetaste."
+msgstr "Drücken Sie die Eingabetaste, um das gewählte Symbol auszuführen. Wenn das gewählte Symbol im Normalfall zu einer Mausaktion führt, beispielsweise das Einfügen eines Rechtecks, dann genügt die Eingabetaste nicht. Drücken Sie in diesen Fällen <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Eingabetaste."
#: keyboard.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3154320\n"
"help.text"
msgid "In several windows, dialogs, and in the table control field, there are tables to select data, for instance, in the right part of the <link href=\"text/shared/guide/database_main.xhp\" name=\"Data Source View\">Data Source View</link>. The following keys are used for selections in these tables:"
-msgstr "Häufig enthalten Fenster und Dialoge wie Tabellen-Kontrollfelder Tabellen, aus welchen Daten ausgewählt werden müssen. So z. B. die rechte Seite der <link href=\"text/shared/guide/database_main.xhp\" name=\"Datenquellenansicht\">Datenquellenansicht</link>. Die Auswahl in solchen Tabellen erfolgt anhand dieser Tasten:"
+msgstr "Häufig enthalten Fenster und Dialoge wie Tabellen-Kontrollfelder Tabellen, aus welchen Daten ausgewählt werden müssen, beispielsweise in der rechten Seite der <link href=\"text/shared/guide/database_main.xhp\" name=\"Datenquellenansicht\">Datenquellenansicht</link>. Die Auswahl in solchen Tabellen erfolgt anhand dieser Tasten:"
#: keyboard.xhp
msgctxt ""
@@ -10630,7 +10630,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow or <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow: moves the window separator between table and form, for instance in the bibliography database."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Pfeil nach oben oder <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Pfeil nach unten: Verschiebt die Trennlinie zwischen Tabelle und Formular, z. B. in der Literaturdatenbank."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Pfeil nach oben oder <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Pfeil nach unten: Verschiebt die Trennlinie zwischen Tabelle und Formular, beispielsweise in der Literaturdatenbank."
#: keyboard.xhp
msgctxt ""
@@ -10662,7 +10662,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "A system menu opens with menu commands like <emph>Move</emph>, <emph>Resize</emph> and <emph>Close</emph>."
-msgstr "Es öffnet sich ein Systemmenü mit Menübefehlen wie z. B. <emph>Verschieben</emph>, <emph>Größe ändern</emph> und <emph>Schließen</emph>."
+msgstr "Es öffnet sich ein Systemmenü mit Menübefehlen wie <emph>Verschieben</emph>, <emph>Größe ändern</emph> und <emph>Schließen</emph>."
#: keyboard.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3152582\n"
"help.text"
msgid "You can change the anchor of the selected object for example in the object's context menu."
-msgstr "Die Verankerung des ausgewählten Objekts ändern Sie z. B. im Kontextmenü."
+msgstr "Die Verankerung des ausgewählten Objekts ändern Sie beispielsweise im Kontextmenü."
#: keyboard.xhp
msgctxt ""
@@ -14326,7 +14326,7 @@ msgctxt ""
"par_id3153348\n"
"help.text"
msgid "On the <emph>Navigation</emph> toolbar, you first select the category, then click on one of the buttons, <emph>Previous Object</emph> or <emph>Next Object</emph>. The names of the buttons refer to the category, for example, the button \"Next Object\" is named \"Next Page\" or \"Next Bookmark\" according to the category."
-msgstr "In der Abreißleiste <emph>Navigation</emph> wählen Sie zuerst die Kategorie, dann klicken Sie dort auf eine der Schaltflächen rechts, <emph>Voriges Objekt</emph> oder <emph>Nächstes Objekt</emph>. Die Namen der Schaltflächen richten sich nach der Kategorie, z.B. heißt die Schaltfläche zum Weiterblättern je nach Kategorie \"Nächste Seite\" oder \"Nächstes Lesezeichen\"."
+msgstr "In der Abreißleiste <emph>Navigation</emph> wählen Sie zuerst die Kategorie, dann klicken Sie dort auf eine der Schaltflächen rechts, <emph>Voriges Objekt</emph> oder <emph>Nächstes Objekt</emph>. Die Namen der Schaltflächen richten sich nach der Kategorie, beispielsweise heißt die Schaltfläche zum Weiterblättern je nach Kategorie \"Nächste Seite\" oder \"Nächstes Lesezeichen\"."
#: navpane_on.xhp
msgctxt ""
@@ -15718,7 +15718,7 @@ msgctxt ""
"par_id3148474\n"
"help.text"
msgid "If the list of changes is too long, you can switch to the <emph>Filter</emph> tab in the dialog and specify that you only want to see the changes of certain authors, or only the changes of the last day, or that you want the list to be restricted in some other way."
-msgstr "Wenn Ihnen die Liste der Änderungen zu lang ist, können Sie im Dialog in das Register <emph>Filter</emph> wechseln und dort bestimmen, dass Sie z. B. nur die Änderungen eines bestimmten Autoren sehen, oder nur die Änderungen des letzten Tages, oder die Liste auf andere Weise einschränken."
+msgstr "Wenn Ihnen die Liste der Änderungen zu lang ist, können Sie im Dialog in das Register <emph>Filter</emph> wechseln und dort bestimmen, dass Sie beispielsweise nur die Änderungen eines bestimmten Autoren sehen, oder nur die Änderungen des letzten Tages, oder die Liste auf andere Weise einschränken."
#: redlining_accept.xhp
msgctxt ""
@@ -16558,7 +16558,7 @@ msgctxt ""
"par_idN10795\n"
"help.text"
msgid "Select the embedded object, for example a chart, in your document."
-msgstr "Markieren Sie das eingebettete Objekt, z. B. ein Diagramm, in Ihrem Dokument."
+msgstr "Markieren Sie das eingebettete Objekt, beispielsweise ein Diagramm, in Ihrem Dokument."
#: scripting.xhp
msgctxt ""
@@ -17214,7 +17214,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Ersetzen Sie <emph>{install}</emph> durch den Pfad zu Ihrer $[officename] Installation (z.B. <emph>C:\\Programme\\Office</emph> oder <emph>~/office</emph>)"
+msgstr "Ersetzen Sie <emph>{install}</emph> durch den Pfad zu Ihrer $[officename] Installation (beispielsweise <emph>C:\\Programme\\Office</emph> oder <emph>~/office</emph>)"
#: start_parameters.xhp
msgctxt ""
@@ -17526,7 +17526,7 @@ msgctxt ""
"par_id20161204120122917\n"
"help.text"
msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
-msgstr "Startet in einem abgesicherten Modus, z.B. startet vorübergehend mit einem frischen Benutzerprofil und hilft eine kaputte Konfiguration wiederherzustellen."
+msgstr "Startet in einem abgesicherten Modus, beispielsweise vorübergehend mit einem frischen Benutzerprofil, und hilft eine kaputte Konfiguration wiederherzustellen."
#: start_parameters.xhp
msgctxt ""
@@ -17678,7 +17678,7 @@ msgctxt ""
"par_id20161204125411030\n"
"help.text"
msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
-msgstr "Die Argumente geben an, wie die nachfolgend genannten Dateien behandelt werden. Jede Behandlung beginnt nach einem Argument und endet vorm nächsten Argument. Die Standardbehandlung ist, die Dokumente zum Bearbeiten zu öffnen und neue Dokumente aus Dokumentenvorlagen zu erstellen."
+msgstr "Die Argumente geben an, wie die nachfolgend genannten Dateien behandelt werden. Jede Behandlung beginnt nach einem Argument und endet beim nächsten Argument. Die Standardbehandlung ist es, die Dokumente zum Bearbeiten zu öffnen und neue Dokumente aus Dokumentenvorlagen zu erstellen."
#: start_parameters.xhp
msgctxt ""
@@ -17694,7 +17694,7 @@ msgctxt ""
"par_id3150309\n"
"help.text"
msgid "Opens following files for editing, regardless whether they are templates or not."
-msgstr "Öffnet die nachfolgenden Dateien zum Bearbeiten unabhängig davon, ob sie Dokumentvorlagen sind oder nicht."
+msgstr "Öffnet die nachfolgenden Dateien zum Bearbeiten, unabhängig davon, ob sie Dokumentvorlagen sind oder nicht."
#: start_parameters.xhp
msgctxt ""
@@ -18078,7 +18078,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "To set several decimal tabs one after the other, keep clicking the icon to the left of the ruler until the desired tab type is shown, then click on the ruler."
-msgstr "Wollen Sie z. B. mehrere Dezimaltabulatoren nacheinander setzen, können Sie sich die Arbeit vereinfachen: Klicken Sie links neben dem Lineal so oft auf das Tabulatorsymbol, bis der gewünschte Tabulatortyp angezeigt wird, und setzen Sie dann die Tabulatoren durch Klicken in das Lineal."
+msgstr "Möchten Sie mehrere Dezimaltabulatoren nacheinander setzen, können Sie sich die Arbeit vereinfachen: Klicken Sie links neben dem Lineal so oft auf das Tabulatorsymbol, bis der gewünschte Tabulatortyp angezeigt wird, und setzen Sie dann die Tabulatoren durch Klicken in das Lineal."
#: tabs.xhp
msgctxt ""
@@ -18302,7 +18302,7 @@ msgctxt ""
"par_id04162017064929216\n"
"help.text"
msgid "<ahelp hid=\".\">The Template Manager dialog makes it easy to manage templates and allows to start new documents using templates.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Übder den Dialog Vorlagenmanager können Sie auf einfache Art Vorlagen verwalten und neue Dokumente auf Grundlage von Vorlagen erstellen.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18350,7 +18350,7 @@ msgctxt ""
"par_id041620170723502887\n"
"help.text"
msgid "Templates save editing time by starting new documents with pre-filled contents and formatting. The Template Manager allows you to access and organize templates in %PRODUCTNAME."
-msgstr ""
+msgstr "Vorlagen sparen Bearbeitungszeit beim Start mit neuen Dokumenten mit vorausgefüllten Inhalten und Formatierungen. Der Vorlagenmanager ermöglichte es Ihnen, auf Vorlagen zuzugreifen und diese in %PRODUCTNAME zu organisieren."
#: template_manager.xhp
msgctxt ""
@@ -18358,7 +18358,7 @@ msgctxt ""
"par_id041620170753116381\n"
"help.text"
msgid "%PRODUCTNAME comes with a set of built-in templates that can be used to create documents, presentations, spreadsheets or drawings. You may use templates available in the template manager, create your own templates or browse online for additional templates."
-msgstr ""
+msgstr "Mit %PRODUCTNAME wird ein Satz von Vorlagen ausgeliefert, welche Sie verwenden können, um Textdokumente, Präsentationen, Tabellendokumente oder Zeichnungen zu erstellen. Sie können die im Vorlagenmanager vorhandenen Vorlagen verwenden, Ihre eigenen Vorlagen erstellen oder online nach weiteren Vorlagen suchen."
#: template_manager.xhp
msgctxt ""
@@ -18366,7 +18366,7 @@ msgctxt ""
"par_id041620170723504381\n"
"help.text"
msgid "If you have opened the %PRODUCTNAME start center and have not yet opened a document or application, the Template Manager may be accessed differently. <item type=\"menuitem\">Ctrl-Shift-N</item> will still open the Template Manager, but it may also be accessed by choosing Templates from the left sidebar, and then choosing Manage Templates."
-msgstr ""
+msgstr "Wenn Sie das Startcenter von %PRODUCTNAME geöffnet aber noch kein Dokument geöffnet oder eine Anwendung gestartet haben, kann auf den Vorlagenmanager verschiedentlich zugegriffen werden. <item type=\"menuitem\">Strg+Umschalt+N</item> öffnet den Vorlagenmanager, er kann aber auch über Vorlagen in der Seitenleiste und den Eintrag Vorlagen verwalten... geöffnet werden."
#: template_manager.xhp
msgctxt ""
@@ -18374,7 +18374,7 @@ msgctxt ""
"hd_id041620170723509935\n"
"help.text"
msgid "Main Window – Template Choices"
-msgstr ""
+msgstr "Hauptfenster - Vorlagenauswahl"
#: template_manager.xhp
msgctxt ""
@@ -18382,7 +18382,7 @@ msgctxt ""
"par_id041620170723507192\n"
"help.text"
msgid "Previews of available templates show up in the main window based on your search and filtering choices. Double-click on any template icon to open a new document with the contents and formatting of the template."
-msgstr ""
+msgstr "Die Vorschau der verfügbaren Vorlagen im Hauptfenster basiert auf der Vorgabe Ihrer Suche und Filterwahl. Doppelklicken Sie auf eine Vorlage, um ein neues Dokument mit den Inhalten und Formatierungen der Vorlage zu erstellen."
#: template_manager.xhp
msgctxt ""
@@ -18398,7 +18398,7 @@ msgctxt ""
"par_id041620170723505410\n"
"help.text"
msgid "<ahelp hid=\".\">You may search for a template by entering text in the search box at the top left. The Main window show the templates found.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sie können nach Vorlagen suchen, indem Sie Text in das Suchfeld oben links eingeben. Das Hauptfenster zeigt dann die gefundenen Vorlagen.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18414,7 +18414,7 @@ msgctxt ""
"par_id041620170723507575\n"
"help.text"
msgid "<ahelp hid=\".\">You may filter for All Applications, Documents, Spreadsheets or Drawings by choosing an option from the dropdown box at the top-center. The main window displays the filtered templates.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sie können nach Allen Anwendungen, Textdokumenten, Tabellendokumenten, Präsentationen und Zeichnungen filtern, indem Sie eine Option in der Aufklappliste oben in der Mitte wählen. Das Hauptfenster zeigt dann die gefilterten Vorlagen.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18430,7 +18430,7 @@ msgctxt ""
"par_id041620170723507710\n"
"help.text"
msgid "<ahelp hid=\".\">Categories are folders where you place your templates.</ahelp> You may choose from the defaults categories My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations, or Styles. You may create new categories for your personal use. Use the Settings button of the Template Manager to create a new category."
-msgstr ""
+msgstr "<ahelp hid=\".\">Kategorien sind Verzeichnisse, in die Sie Ihre Vorlagen ablegen.</ahelp> Sie können aus den Standardkategorien Meine Vorlagen, Geschäftliche Korrespondenz, MediaWiki, Sonstige geschäftliche Dokumente, Private Korrespondenz und Dokumente, Präsentationen oder Vorlagen wählen. Sie können neue Kategorien für Ihren persönlichen Gebrauch erstellen. Verwenden Sie die Schaltfläche Einstellungen der Vorlagenverwaltung, um eine neuen Kategorie zu erstellen."
#: template_manager.xhp
msgctxt ""
@@ -18462,7 +18462,7 @@ msgctxt ""
"par_id041620170723504497\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the Settings icon at the bottom left to open the Settings menu.</ahelp> The options are create a New Category, Delete Category or Refresh. If a default template for new documents has been changed, an additional option to reset the factory default template is available."
-msgstr ""
+msgstr "<ahelp hid=\".\">Klicken Sie auf das Symbol Einstellungen unten links, um die Auflappliste Einstellungen zu öffnen.</ahelp> Die Optionen sind Neue Kategorie, Kategorie löschen und Aktualisieren. Wenn die Standardvorlage für neue Dokumente geändert wurde, finden Sie hier eine weitere Option, um die mitglieferte Standard-Dokumentvorlage wiederherzustellen."
#: template_manager.xhp
msgctxt ""
@@ -18478,7 +18478,7 @@ msgctxt ""
"par_id041620170723503494\n"
"help.text"
msgid "<ahelp hid=\".\">To browse for more templates online, click on the Browse online templates icon at bottom left to open a browser window and search for templates at <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Um weitere Vorlagen online zu finden, klicken Sie auf die Schaltfläche Online-Vorlagen durchstöbern unten links, um ein Browserfenster zu öffnen und nach Vorlagen auf <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> zu suchen.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18494,7 +18494,7 @@ msgctxt ""
"par_id041620170723503583\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
-msgstr ""
+msgstr "Um ein neues Dokument auf Grundlage einer Dokumentvorlage zu öffnen, doppelklicken Sie im Hauptfenster auf diese oder wählen Sie diese aus, klicken Sie mit rechts auf die Vorlage und wählen dann im Kontextmenü Öffnen."
#: template_manager.xhp
msgctxt ""
@@ -18510,7 +18510,7 @@ msgctxt ""
"par_id041620170723502297\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Edit to edit the template. This function is only available for templates that are not built-in."
-msgstr ""
+msgstr "Um eine Dokumentvorlage zu bearbeiten, wählen Sie diese aus, klicken mit rechts auf die Vorlage und wählen dann im Kontextmenü Bearbeiten. Diese Funktion ist nur für Dokumentvorlagen verfügbar, die nicht vorinstalliert sind."
#: template_manager.xhp
msgctxt ""
@@ -18526,7 +18526,7 @@ msgctxt ""
"par_id041620170723501975\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear over the template and the template will automatically load when a new document is created using the matching application."
-msgstr ""
+msgstr "Um eine Dokumentvorlage als Standardvorlge festzulegen, wählen Sie diese aus, klicken mit rechts auf die Vorlage und wählen dann im Kontextmenü Als Standard setzen. Dies lässt ein grünes Häkchen über der Vorlage erscheinen und die Dokumentvorlage wird automatisch geladen, wenn ein neues Dokument der entsprechenden Anwendung erstellt wird."
#: template_manager.xhp
msgctxt ""
@@ -18534,7 +18534,7 @@ msgctxt ""
"par_id041620171037534321\n"
"help.text"
msgid "Refer to the <link href=\"text/shared/guide/standard_template.xhp\">Standard Template</link>"
-msgstr ""
+msgstr "Mehr unter <link href=\"text/shared/guide/standard_template.xhp\">Standard Dokumentvorlage</link>."
#: template_manager.xhp
msgctxt ""
@@ -18550,7 +18550,7 @@ msgctxt ""
"par_id041620170723509003\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Rename to rename the template. This will cause a dialog box to appear where a new name may be chosen for the template. Type in the name and then choose OK or choose Cancel to revert to the name that is already set."
-msgstr ""
+msgstr "Um eine Dokumentvorlage umzubenennen, wählen Sie diese aus, klicken mit rechts auf die Vorlage und wählen dann im Kontextmenü Umbenennen. Dies öffnet einen Dialog, wo ein neuer Name für die Dokumentvorlage festgelegt werden kann. Geben Sie den neuen Namen ein und klicken Sie dann auf OK oder klicken Sie auf Abbrechen, um die Umbenennung abzubrechen."
#: template_manager.xhp
msgctxt ""
@@ -18566,7 +18566,7 @@ msgctxt ""
"par_id041620170723504317\n"
"help.text"
msgid "Select a template in the main window and press the delete button, or right-click then choose Delete to delete the template. A dialog box will appear requesting confirmation. Choose Yes to delete or No to cancel."
-msgstr ""
+msgstr "Um eine Dokumentvorlage zu löschen, wählen Sie diese aus, klicken mit rechts auf die Vorlage und wählen dann im Kontextmenü Löschen oder drücken die Taste Entf. Dies öffnet einen Dialog zur Bestätigung der Aktion. Klicken Sie auf Ja, um zu Löschen, oder auf Nein, um abzubrechen."
#: template_manager.xhp
msgctxt ""
@@ -18582,7 +18582,7 @@ msgctxt ""
"par_id041620170723518776\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the Move option at the bottom right after selecting a template to move it to a different category. Default templates cannot be moved, but copies can be created in other categories.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Um eine Dokumentvorlage in eine andere Kategorie zu verschieben, wählen Sie diese aus und klicken unten rechts auf Verschieben. Standardvorlagen können nicht verschoben werden, aber Sie können eine Kopie dieser in einer anderen Kategorie erstellen.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18598,7 +18598,7 @@ msgctxt ""
"par_id041620170723513192\n"
"help.text"
msgid "<ahelp hid=\".\">Choose a template in the main window and then press the Export button at the bottom right to export the template to a folder on your computer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Um eine Dokumentvorlage in ein Verzeichnis auf Ihrem Cpmuter zu exportieren, wählen Sie diese aus und klicken unten rechts auf Exportieren.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18614,7 +18614,7 @@ msgctxt ""
"par_id04162017072351776\n"
"help.text"
msgid "<ahelp hid=\".\">Press the Import button at the bottom right, and then choose a Category to import a template from your computer to that category in the Template Manager.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Um eine Dokumentvorlage aus einem Verzeichnis auf Ihrem Cpmuter in die aktuelle Kategorie im Vorlagenmanager zu importieren, klicken Sie unten rechts auf Importieren.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18654,7 +18654,7 @@ msgctxt ""
"par_id041620170723513600\n"
"help.text"
msgid "Type “business letter” into the search box"
-msgstr ""
+msgstr "Geben Sie \"business letter\" in das Suchfeld ein"
#: template_manager.xhp
msgctxt ""
@@ -18662,7 +18662,7 @@ msgctxt ""
"par_id041620170723518765\n"
"help.text"
msgid "Choose one of the templates from the main window by double-clicking on it or pressing tab to select and then Enter"
-msgstr ""
+msgstr "Wählen Sie eine der Vorlagen im Hauptfenster per Doppelklick aus oder wählen Sie eine Vorlage aus und drücken Sie die Eingabetaste."
#: template_manager.xhp
msgctxt ""
@@ -18670,7 +18670,7 @@ msgctxt ""
"par_id041620170723511456\n"
"help.text"
msgid "A new document using that template is created in a new instance of %PRODUCTNAME Writer"
-msgstr ""
+msgstr "Es wird ein neues Dokument auf Grundlage dieser Dokumentvorlage in einer neuen Instanz von %PRODUCTNAME Writer erstellt"
#: template_manager.xhp
msgctxt ""
@@ -18678,7 +18678,7 @@ msgctxt ""
"par_id041620170723516762\n"
"help.text"
msgid "Change text and logo as needed"
-msgstr ""
+msgstr "Ändern Sie den Text und das Logo wie benötigt"
#: template_manager.xhp
msgctxt ""
@@ -18686,7 +18686,7 @@ msgctxt ""
"hd_id041620170723518918\n"
"help.text"
msgid "Example 2 – Import Template – Personal Budget Spreadsheet"
-msgstr ""
+msgstr "Beispiels 2 - Vorlage importieren - Persönliche Budgettabelle"
#: template_manager.xhp
msgctxt ""
@@ -18710,7 +18710,7 @@ msgctxt ""
"par_id041620170723512689\n"
"help.text"
msgid "Click on the world icon to browse for online templates"
-msgstr ""
+msgstr "Klicken Sie auf das Symbol mit der Weltkugel, um nach Online-Vorlagen zu suchen"
#: template_manager.xhp
msgctxt ""
@@ -18718,7 +18718,7 @@ msgctxt ""
"par_id041620170723511300\n"
"help.text"
msgid "Search for the Personal Budget Template, then download it"
-msgstr ""
+msgstr "Suchen Sie nach der Vorlage Personal Budget und laden Sie diese herunter"
#: template_manager.xhp
msgctxt ""
@@ -18726,7 +18726,7 @@ msgctxt ""
"par_id041620170723514055\n"
"help.text"
msgid "Open Template Manager and choose the Import button"
-msgstr ""
+msgstr "Öffnen Sie den Vorlagenmanager und klicken Sie auf die Schaltfläche Importieren"
#: template_manager.xhp
msgctxt ""
@@ -18734,7 +18734,7 @@ msgctxt ""
"par_id041620170723513485\n"
"help.text"
msgid "Select a category to save the new template in (e.g. My Templates) and press OK"
-msgstr ""
+msgstr "Wählen Sie eine Kategorie, in der die Vorlage gespeichert werden soll (beispielsweise Meine Vorlagen) und klicken Sie auf OK"
#: template_manager.xhp
msgctxt ""
@@ -18742,7 +18742,7 @@ msgctxt ""
"par_id041620170723513541\n"
"help.text"
msgid "Browse to the folder where you downloaded the template, select it and press Open"
-msgstr ""
+msgstr "Öffnen Sie den Ordner, in den Sie die Dokumentvorlage heruntergeladen haben, wählen Sie diese aus und klicken Sie auf Öffnen"
#: template_manager.xhp
msgctxt ""
@@ -18750,7 +18750,7 @@ msgctxt ""
"par_id041620170723511411\n"
"help.text"
msgid "The Template is now available in the category you chose."
-msgstr ""
+msgstr "Die Vorlage ist nun in der Kategorie, die Sie ausgewählt haben, verfügbar."
#: template_manager.xhp
msgctxt ""
@@ -18758,7 +18758,7 @@ msgctxt ""
"hd_id041620170723518447\n"
"help.text"
msgid "Example 3 – %PRODUCTNAME Impress – Presentation Template"
-msgstr ""
+msgstr "Beispiel 3 - %PRODUCTNAME Impress - Präsentationsvorlage"
#: template_manager.xhp
msgctxt ""
@@ -18774,7 +18774,7 @@ msgctxt ""
"par_id041620170723523193\n"
"help.text"
msgid "The Template Manager opens automatically when you open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "Der Vorlagenmanager öffnet sich automatisch, wenn Sie %PRODUCTNAME Impress öffnen"
#: template_manager.xhp
msgctxt ""
@@ -18782,7 +18782,7 @@ msgctxt ""
"par_id041620170723525963\n"
"help.text"
msgid "Choose a template for your presentation, filter by categories or search"
-msgstr ""
+msgstr "Wählen Sie eine Vorlage für Ihre Präsentation, filtern Sie die Auswahl ggf. nach Kategorien oder suchen Sie nach einer Vorlage"
#: template_manager.xhp
msgctxt ""
@@ -18790,7 +18790,7 @@ msgctxt ""
"par_id041620170723523510\n"
"help.text"
msgid "Additional features are unavailable, and you may only select a template, filter, or import."
-msgstr ""
+msgstr "Weitere Funktionen sind nicht verfügbar, Sie können nur eine Vorlage auswählen, filtern oder suchen."
#: template_manager.xhp
msgctxt ""
@@ -18798,7 +18798,7 @@ msgctxt ""
"par_id041620170723525323\n"
"help.text"
msgid "After starting %PRODUCTNAME Impress you may run the Template Manager again to access additional features."
-msgstr ""
+msgstr "Nach dem Start von %PRODUCTNAME Impress können Sie den Vorlagenmanager erneut öffnen, um auf zusätzliche Funktionen zuzugreifen."
#: template_manager.xhp
msgctxt ""
@@ -18806,7 +18806,7 @@ msgctxt ""
"par_id041620170723521916\n"
"help.text"
msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
-msgstr ""
+msgstr "Verwenden Sie Kategorien, um Ihre Dokumentvorlagen zu ordnen. Erstellen Sie neue Dokumentvorlagen oder laden Sie Vorlagen heruntern und odrnen Sie diese im Vorlagenmanager. Verwenden Sie Dokumentvorlagen, um Zeit bei sich wiederholenden Dokumenten zu sparen."
#: template_manager.xhp
msgctxt ""
@@ -18830,7 +18830,7 @@ msgctxt ""
"par_id04162017072352674\n"
"help.text"
msgid "See Chapter 3 – Using Styles and Templates in the Getting Started Guide, available from the <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">documentation website</link>."
-msgstr ""
+msgstr "Vergleichen Sie auch Kapitel 3 - Formate und Vorlagen des Handbuchs Erste Schritte, das Sie von der Webseite <link href=\"http://de.libreoffice.org/get-help/documentation/\">Dokumentation</link> herunterladen können."
#: template_manager.xhp
msgctxt ""
@@ -18838,7 +18838,7 @@ msgctxt ""
"par_id041620170723529524\n"
"help.text"
msgid "Refer to <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> for templates to download."
-msgstr ""
+msgstr "Besuchen Sie <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> (Englisch), um Dokumentvorlagen zum Download zu finden."
#: text_color.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 9001ceacbf9..d92ca86f33a 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 07:38+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-20 13:13+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496734722.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497964429.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "User data is used by templates and Wizards in $[officename]. For example, the \"First name\" and \"Last name\" data fields are used to automatically insert your name as the author of a new document. You can see this under <emph>File - Properties</emph>."
-msgstr "Fast alle Daten werden von verschiedenen Vorlagen und Assistenten in $[officename] genutzt, um die dort vorgesehenen Feldbefehle bereits mit Ihren Daten zu belegen. Die Angaben in den Datenfeldern \"Vorname\" und \"Name\" werden unter <emph>Datei - Eigenschaften</emph> verwendet, um Ihren Namen z. B. als Autor eines neuen Dokuments einzutragen."
+msgstr "Fast alle Daten werden von verschiedenen Vorlagen und Assistenten in $[officename] genutzt, um die dort vorgesehenen Feldbefehle bereits mit Ihren Daten zu belegen. Die Angaben in den Datenfeldern \"Vorname\" und \"Name\" werden beispielsweise unter <emph>Datei - Eigenschaften...</emph> verwendet, um Ihren Namen als Autor eines neuen Dokuments einzutragen."
#: 01010100.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"par_id3151252\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editdictionarydialog/word\">You can type a new word for inclusion in the dictionary. In the list below you will see the contents of the current custom dictionary.</ahelp> If you select a word from this list it is displayed in the text field. If you type a word with a trailing = character, such as \"AutoComplete=\", the word is never automatically hyphenated and no hyphenation is suggested. Typing \"Auto=Complete\" results in the word being hyphenated, or a hyphenation suggested, where you insert the = sign."
-msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/word\">Sie können Wörter eingeben, die in das Wörterbuch aufgenommen werden sollen. In der Liste darunter wird der Inhalt des aktuellen Benutzerwörterbuchs angezeigt.</ahelp> Ein Wort, das Sie in der Liste auswählen, wird in das Textfeld übertragen. Wörter, an die Sie ein Gleichheitszeichen (=) anhängen, z.B. \"AutoEingabe=\", werden weder automatisch getrennt noch zur Silbentrennung vorgeschlagen. Wenn Sie \"Auto=Eingabe\" eingeben, wird das Wort an dieser Stelle getrennt oder zur Silbentrennung vorgeschlagen, und zwar nur an der Stelle, an der Sie das Zeichen = eingefügt haben."
+msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/word\">Sie können Wörter eingeben, die in das Wörterbuch aufgenommen werden sollen. In der Liste darunter wird der Inhalt des aktuellen Benutzerwörterbuchs angezeigt.</ahelp> Ein Wort, das Sie in der Liste auswählen, wird in das Textfeld übertragen. Wörter, an die Sie ein Gleichheitszeichen (=) anhängen, beispielsweise \"AutoEingabe=\", werden weder automatisch getrennt noch zur Silbentrennung vorgeschlagen. Wenn Sie \"Auto=Eingabe\" eingeben, wird das Wort an dieser Stelle getrennt oder zur Silbentrennung vorgeschlagen, und zwar nur an der Stelle, an der Sie das Zeichen = eingefügt haben."
#: 01010400.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "Select the language from the <emph>Language</emph> list."
-msgstr "Wählen Sie die Sprache aus der <emph>Sprache</emph> Liste."
+msgstr "Wählen Sie die Sprache aus der Liste <emph>Sprache</emph>."
#: 01010401.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "As long as you have more than one sub-module available for one area, the sub-modules for spelling and the Thesaurus are processed in the sequence in which they are listed. You can change the sequence using the <emph>Move Up</emph> and <emph>Move Down</emph> buttons."
-msgstr "Wenn es mehr als ein Submodul in einem Bereich gibt, werden die Submodule für Rechtschreibung und der Thesaurus in der aufgeführten Reihenfolge bearbeitet. Sie können die Reihenfolge mit <emph>Prio +</emph> und <emph>Prio -</emph> ändern."
+msgstr "Wenn es mehr als ein Submodul in einem Bereich gibt, werden die Submodule für Rechtschreibung und der Thesaurus in der aufgeführten Reihenfolge bearbeitet. Sie können die Reihenfolge mit <emph>Nach oben verschieben</emph> und <emph>Nach unten verschieben</emph> ändern."
#: 01010401.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"hd_id3145419\n"
"help.text"
msgid "Move up"
-msgstr "Prio +"
+msgstr "Nach oben verschieben"
#: 01010401.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"hd_id3158407\n"
"help.text"
msgid "Move down"
-msgstr "Prio -"
+msgstr "Nach unten verschieben"
#: 01010401.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"hd_id3161832\n"
"help.text"
msgid "Back"
-msgstr "Rückseite"
+msgstr "Zurücksetzen"
#: 01010401.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Eine neue Farbe auswählen"
#: 01010501.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Eine neue Farbe auswählen"
#: 01010501.xhp
msgctxt ""
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2294,14 +2302,14 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "Das Fenster Farbauswahl besitzt vier Hauptbereiche."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
@@ -2310,7 +2318,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "The spin buttons are for entering the numerical value of the color component."
-msgstr ""
+msgstr "Die Spinfelder sind für die Eingabe des Zahlwerts der Farbkomponente da."
#: 01010501.xhp
msgctxt ""
@@ -2318,7 +2326,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">Mit der vertikalen Farbauswahl kann der Wert der jeweiligen Farbkomponente verändert werden.</ahelp> Mit dem großen Farbfeld kann näherungsweise die Farbkomponente gewählt werden."
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2334,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "Die horizontale Farbleiste unten zeigt nebeneinander die aktuelle und die neue Farbe."
#: 01010501.xhp
msgctxt ""
@@ -2334,7 +2342,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klicken Sie in das große Farbfeld links, um eine neue Farbe zu wählen. In diesem Farbfeld können Sie zwei der drei Komponenten der Farbe verändern, wie sie im RGB- bzw. HSB-Farbraum dargestellt werden. Dabei werden jeweils die zwei Komponenten dargestellt, die nicht mit dem Optionsfeld rechts im Dialog ausgewählt wurden.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2342,7 +2350,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Im rechten Bereich der Leiste unten sehen Sie die Originalfarbe des vorherigen Registers <emph>Farben</emph>.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2350,7 +2358,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Im linken Bereich der Leiste unten sehen Sie das aktuelle Ergebnis der Farbauswahl in diesem Dialog.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2366,7 +2374,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: 01010501.xhp
msgctxt ""
@@ -2382,7 +2390,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie die rote Komponente in der vertikalen Farbauswahl sowie die grüne und blaue Komponente im zweidimensionalen Farbfeld ändern. Erlaubt sind Werte zwischen 0 und 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2390,7 +2398,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Lässt Sie den Wert der roten Farbe direkt setzen. Erlaubt dien Werte zwischen 0 und 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2406,7 +2414,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie die grüne Komponente in der vertikalen Farbauswahl sowie die rote und blaue Komponente im zweidimensionalen Farbfeld ändern. Erlaubt sind Werte zwischen 0 und 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2414,7 +2422,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Lässt Sie den Wert der grünen Farbe direkt setzen. Erlaubt dien Werte zwischen 0 und 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2430,7 +2438,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie die blaue Komponente in der vertikalen Farbauswahl sowie die rote und grüne Komponente im zweidimensionalen Farbfeld ändern. Erlaubt sind Werte zwischen 0 und 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2438,7 +2446,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Lässt Sie den Wert der blauen Farbe direkt setzen. Erlaubt dien Werte zwischen 0 und 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2446,7 +2454,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "Hex #"
#: 01010501.xhp
msgctxt ""
@@ -2454,7 +2462,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt und lässt Sie den Farbwert im RGB-Farbraum mittels Hexadezimalzahl setzen.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2462,7 +2470,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2470,7 +2478,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Farbton"
#: 01010501.xhp
msgctxt ""
@@ -2478,7 +2486,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie den Farbton in der vertikalen Farbauswahl sowie die Sättigung und Helligkeit im zweidimensionalen Farbfeld ändern. Ausgedrückt in Gradwerten zwischen 0 und 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2486,7 +2494,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Lässt Sie den Farbton im HSB-Farbraum direkt setzen. Ausgedrückt in Gradwerten zwischen 0 und 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2502,7 +2510,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie die Sättigung in der vertikalen Farbauswahl sowie den Farbton und die Helligkeit im zweidimensionalen Farbfeld ändern. Ausgedrückt in Prozentwerten (zwischen 0 und 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2510,7 +2518,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Lässt Sie die Sättigung im HSB-Farbraum direkt setzen. Ausgedrückt in Prozentwerten (zwischen 0 und 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2518,7 +2526,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Helligkeit"
#: 01010501.xhp
msgctxt ""
@@ -2526,7 +2534,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie die Helligkeit in der vertikalen Farbauswahl sowie den Farbton und die Sättigung im zweidimensionalen Farbfeld ändern. Ausgedrückt in Prozentwerten (zwischen 0 und 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2534,7 +2542,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Lässt Sie die Helligkeit im HSB-Farbraum direkt setzen. Ausgedrückt in Prozentwerten (zwischen 0 und 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2542,7 +2550,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2558,7 +2566,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie den Wert der Farbe Cyan im CMYK-Farbraum setzen.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2574,7 +2582,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie den Wert der Farbe Magenta im CMYK-Farbraum setzen.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2590,7 +2598,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie den Wert der Farbe Yellow im CMYK-Farbraum setzen.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2606,7 +2614,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie den Farbwert für Key (schwarz) im CMYK-Farbraum setzen.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -3550,7 +3558,7 @@ msgctxt ""
"par_id3155415\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the <emph>Formatting</emph> bar.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Zeigt die Namen der auswählbaren Schriftarten in der entsprechenden Schriftart an, z.B. im Feld \"Schrift\" in der Symbolleiste <emph>Format</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/showfontpreview\">Zeigt die Namen der auswählbaren Schriftarten in der entsprechenden Schriftart an, beispielsweise im Feld \"Schrift\" in der Symbolleiste <emph>Format</emph>.</ahelp>"
#: 01010900.xhp
msgctxt ""
@@ -4222,7 +4230,7 @@ msgctxt ""
"par_id3149827\n"
"help.text"
msgid "<ahelp hid=\".\">Sets options that make <item type=\"productname\">%PRODUCTNAME</item> programs more accessible for users with reduced sight, limited dexterity or other disabilities.</ahelp>"
-msgstr "<ahelp hid=\".\">Legt Optionen für die Barrierefreiheit der Module von <item type=\"productname\">%PRODUCTNAME</item> fest, z.B. für Personen mit Sehbehinderungen oder für die Steuerung der Module ohne die Maus.</ahelp>"
+msgstr "<ahelp hid=\".\">Legt Optionen für die Barrierefreiheit der Module von <item type=\"productname\">%PRODUCTNAME</item> fest, beispielsweise für Personen mit Sehbehinderungen oder für die Steuerung der Module ohne die Maus.</ahelp>"
#: 01013000.xhp
msgctxt ""
@@ -4494,7 +4502,7 @@ msgctxt ""
"par_id3156155\n"
"help.text"
msgid "Lets you enter the proxy server manually. Specify the proxy servers in accordance with your Internet service. Ask your system administrator for the proxies and ports to enter."
-msgstr "Dient zur manuellen Angabe eines Proxy-Servers. Geben Sie die von Ihrem Internetservice vorgesehenen Proxy-Server ein. Fragen Sie ggf. Ihren Systemadministrator nach den erforderlichen Proxies und Ports."
+msgstr "Dient zur manuellen Angabe eines Proxy-Servers. Geben Sie die von Ihrem Internetservice vorgesehenen Proxy-Server ein. Fragen Sie gegebenenfalls Ihren Systemadministrator nach den erforderlichen Proxies und Ports."
#: 01020100.xhp
msgctxt ""
@@ -5118,7 +5126,7 @@ msgctxt ""
"par_id3145254\n"
"help.text"
msgid "<ahelp hid=\".\">If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well.</ahelp> It can be read by $[officename], Mozilla Firefox, and MS Internet Explorer."
-msgstr "<ahelp hid=\".\">Wenn Sie dieses Feld markieren, wird auch das Drucklayout des aktuellen Dokuments exportiert (z.B. das Inhaltsverzeichnis mit ausgerichteten Seitenzahlen und füllenden Punkten).</ahelp> Es kann von $[officename], Mozilla Firefox und MS Internet Explorer gelesen werden."
+msgstr "<ahelp hid=\".\">Wenn Sie dieses Feld markieren, wird auch das Drucklayout des aktuellen Dokuments exportiert (beispielsweise das Inhaltsverzeichnis mit ausgerichteten Seitenzahlen und füllenden Punkten).</ahelp> Es kann von $[officename], Mozilla Firefox und MS Internet Explorer gelesen werden."
#: 01030500.xhp
msgctxt ""
@@ -6174,7 +6182,7 @@ msgctxt ""
"par_id3159346\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/opttablepage/numfmtformatting\">If<emph> Number format recognition </emph>is not marked, only input in the format that has been set at the cell is accepted. Any other input resets the format to <emph>Text</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/opttablepage/numfmtformatting\">Ist die <emph>Zahlenerkennung</emph> nicht gewählt, wird eine Eingabe nur akzeptiert, wenn sie im festgelegten Zellformat erfolgt. Andere Eingaben setzen das Zellformat auf <emph>Text</emph> zurück.</ahelp> Ist in der Zelle z.B. das Zahlenformat \"-123,45 €\" gesetzt, werden Eingaben in der Form 123 oder 123 € automatisch als Zahl erkannt. Geben Sie aber 1.1 ein, wird dies als Datum interpretiert, was mit dem an der Zelle gesetzten Format nicht übereinstimmt. Die Eingabe wird deshalb als Text formatiert."
+msgstr "<ahelp hid=\"modules/swriter/ui/opttablepage/numfmtformatting\">Ist die <emph>Zahlenerkennung</emph> nicht gewählt, wird eine Eingabe nur akzeptiert, wenn sie im festgelegten Zellformat erfolgt. Andere Eingaben setzen das Zellformat auf <emph>Text</emph> zurück.</ahelp> Ist in der Zelle beispielsweise das Zahlenformat \"-123,45 €\" gesetzt, werden Eingaben in der Form 123 oder 123 € automatisch als Zahl erkannt. Geben Sie aber 1.1 ein, wird dies als Datum interpretiert, was mit dem an der Zelle gesetzten Format nicht übereinstimmt. Die Eingabe wird deshalb als Text formatiert."
#: 01040500.xhp
msgctxt ""
@@ -6774,7 +6782,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optredlinepage/deleted\">Specifies how changes in the document are displayed when text is deleted. If you record text deletions, the text is displayed with the selected attribute (for example, strikethrough) and is not deleted.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/optredlinepage/deleted\">Hier legen Sie fest, wie das Löschen von Text im Dokument dargestellt wird. Wenn Sie das Löschen von Text aufzeichnen lassen, wird der Text mit dem ausgewählten Attribut (z.B. durchgestrichen) dargestellt und nicht gelöscht.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/optredlinepage/deleted\">Hier legen Sie fest, wie das Löschen von Text im Dokument dargestellt wird. Wenn Sie das Löschen von Text aufzeichnen lassen, wird der Text mit dem ausgewählten Attribut (beispielsweise durchgestrichen) dargestellt und nicht gelöscht.</ahelp>"
#: 01040700.xhp
msgctxt ""
@@ -6910,7 +6918,7 @@ msgctxt ""
"hd_id050420171032255464\n"
"help.text"
msgid "Settings for automatic links updates stored in documents are ignored for security reasons. Link updates are always bounded by %PRODUCTNAME Security settings in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME – Security</item>."
-msgstr ""
+msgstr "Einstellungen, die in Dokumenten gespeichert sind, um Verknüpfungen automatisch zu aktualisieren, werden aus Sicherheitsgründen ignoriert. Die Aktualisierung von Verknüpfungen ist immer beschränkt auf die Sicherheitseinstellungen von %PRODUCTNAME, die Sie unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen...</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Sicherheit</item> festlegen."
#: 01040900.xhp
msgctxt ""
@@ -6926,7 +6934,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/always\">Always updates links while loading a document, and only if the document is in a trusted file location or the global security level is Low (Not recommended).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/always\">Aktualisiert Verknüpfungen immer beim Laden eines Dokuments und nur, wenn das Dokument an einem vertrauenswürdigen Speicherort befindet oder das globale Sicherheitslevel auf Niedrig (nicht empfehlenswert) eingestellt ist.</ahelp>"
#: 01040900.xhp
msgctxt ""
@@ -6934,7 +6942,7 @@ msgctxt ""
"par_id050420171020567355\n"
"help.text"
msgid "This setting is treated as <emph>On request</emph> unless either the global macro security level is set to Low in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - Security - Macro Security... - Security Level - Low (not recommended)</item> or the document is located in a trusted place defined by <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - Security - Macro Security... - Trusted Sources - Trusted File Locations</item>."
-msgstr ""
+msgstr "Diese Einstellung wird als <emph>Auf Anfrage</emph> gehandhabt, solange das globale Sicherheitslevel für Makros unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen...</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Sicherheit - Makrosicherheit... - Sicherheitslevel</item> auf Niedrig gesetzt ist oder das Dokument an einem vertrauenswürdigen Ort liegt, wie er unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen...</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Sicherheit - Makrosicherheit... - Vertrauenswürdige Quellen - Vertrauenswürdige Speicherorte</item> festgelegt ist."
#: 01040900.xhp
msgctxt ""
@@ -7238,7 +7246,7 @@ msgctxt ""
"par_id3166985\n"
"help.text"
msgid "Specifies the characters that are considered as word separators when counting words, in addition to spaces, tabs and line and paragraph breaks."
-msgstr "Legt die Zeichen bei der Wortzählung fest, die als Wortrenner zusätzlich zu Leerzeichen, Tabulatoren und Zeilen- und Absatzumbrüche berücksichtigt werden."
+msgstr "Legt die Zeichen bei der Wortzählung fest, die als Wortrenner zusätzlich zu Leerzeichen, Tabulatoren, Zeilen- und Absatzumbrüchen berücksichtigt werden."
#: 01041000.xhp
msgctxt ""
@@ -7670,7 +7678,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the object type for which the AutoCaption settings are to be valid.</ahelp>"
-msgstr "<ahelp hid=\".\">Wählen Sie den Objekttyp, für den die Einstellungen Automatische Bildbeschriftung gelten sollen.</ahelp>"
+msgstr "<ahelp hid=\".\">Wählen Sie den Objekttyp, für den die Einstellungen für Automatische Bildbeschriftung gelten sollen.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -8382,7 +8390,7 @@ msgctxt ""
"par_id3147494\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/anchor\">Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/anchor\">Legt fest, ob beim Auswählen eines eingefügten Objekts, z.B. einer Grafik, das Ankersymbol angezeigt wird.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/anchor\">Legt fest, ob beim Auswählen eines eingefügten Objekts, beispielsweise einer Grafik, das Ankersymbol angezeigt wird.</ahelp>"
#: 01060100.xhp
msgctxt ""
@@ -8734,7 +8742,7 @@ msgctxt ""
"hd_id3148451\n"
"help.text"
msgid "Expand references when new columns/rows are inserted"
-msgstr "Referenzen beim Spalten-/Zeileneinfügen an deren Rändern ausdehnen"
+msgstr "Bezüge beim Einfügen von Spalten/Zeilen an deren Rändern ausdehnen"
#: 01060300.xhp
msgctxt ""
@@ -9086,7 +9094,7 @@ msgctxt ""
"par_id3156155\n"
"help.text"
msgid "Type the text 'Selling price' in cell A5, the text 'Net' in cell A6, and the text 'Value-added tax' in cell A7."
-msgstr "Sie wollen einen Verkaufspreis in den Nettopreis und die enthaltene Mehrwertsteuer aufteilen. Geben Sie dafür z. B. in A5 den Text \"VK\" ein, in A6 den Text \"Netto\" und in A7 den Text \"MwSt\"."
+msgstr "Sie wollen einen Verkaufspreis in den Nettopreis und die enthaltene Mehrwertsteuer aufteilen. Geben Sie dafür beispielsweise in A5 den Text \"VK\" ein, in A6 den Text \"Netto\" und in A7 den Text \"MwSt\"."
#: 01060500.xhp
msgctxt ""
@@ -9094,7 +9102,7 @@ msgctxt ""
"par_id3147530\n"
"help.text"
msgid "Now type a selling price (for example, 100) in cell B5. The net price should be shown in cell B6 and the value-added tax should be shown in cell B7."
-msgstr "Geben Sie nun den Verkaufspreis (z. B. 100) in B5 ein. In Zelle B6 soll der Nettopreis stehen und in B7 die Mehrwertsteuer."
+msgstr "Geben Sie nun den Verkaufspreis (beispielsweise 100) in B5 ein. In Zelle B6 soll der Nettopreis stehen und in B7 die Mehrwertsteuer."
#: 01060500.xhp
msgctxt ""
@@ -9494,7 +9502,7 @@ msgctxt ""
"par_id3155101\n"
"help.text"
msgid "<emph>*</emph> (asterisk) matches any sequence of characters, including an empty string"
-msgstr "<emph>*</emph> (Sternchen) steht für eine Zeichenfolge, einschließelich einer leeren Folge"
+msgstr "<emph>*</emph> (Sternchen) steht für eine Zeichenkette, einschließlich einer leeren Zeichenkette"
#: 01060500.xhp
msgctxt ""
@@ -10038,7 +10046,7 @@ msgctxt ""
"bm_id4249399\n"
"help.text"
msgid "<bookmark_value>formula options;formula syntax</bookmark_value> <bookmark_value>formula options;separators</bookmark_value> <bookmark_value>formula options;reference syntax in string parameters</bookmark_value> <bookmark_value>formula options;recalculating spreadsheets</bookmark_value> <bookmark_value>formula options;large spreadsheet files</bookmark_value> <bookmark_value>formula options;loading spreadsheet files</bookmark_value> <bookmark_value>separators;function</bookmark_value> <bookmark_value>separators;array column</bookmark_value> <bookmark_value>separators;array row</bookmark_value> <bookmark_value>recalculating;formula options</bookmark_value> <bookmark_value>recalculating;large spreadsheet files</bookmark_value> <bookmark_value>loading;large spreadsheet files</bookmark_value>"
-msgstr "<bookmark_value>Formel-Einstellungen;Formel-Syntax</bookmark_value> <bookmark_value>Formel-Einstellungen;Trennzeichen</bookmark_value> <bookmark_value>Formel-Einstellungen;Bezüge-Syntax für Zeichenfolge-Bezüge</bookmark_value> <bookmark_value>Formel-Einstellungen;Neuberechnung von Tabellen</bookmark_value> <bookmark_value>Formel-Einstellungen;große Tabellendokumente</bookmark_value> <bookmark_value>Formel-Einstellungen;Tabellendokumente laden</bookmark_value> <bookmark_value>Trennzeichen;Funktionen</bookmark_value> <bookmark_value>Trennzeichen;Matrix Spalte</bookmark_value> <bookmark_value>Trennzeichen;Matrix Zeile</bookmark_value> <bookmark_value>Neuberechnung;Formel-Einstellungen</bookmark_value> <bookmark_value>Neuberechnung;große Tabellendokumente</bookmark_value> <bookmark_value>Laden;große Tabellendokumente</bookmark_value>"
+msgstr "<bookmark_value>Formeleinstellungen;Formelsyntax</bookmark_value> <bookmark_value>Formeleinstellungen;Trennzeichen</bookmark_value> <bookmark_value>Formeleinstellungen;Bezügesyntax für Zeichenkettenbezüge</bookmark_value> <bookmark_value>Formeleinstellungen;Neuberechnung von Tabellen</bookmark_value> <bookmark_value>Formeleinstellungen;große Tabellendokumente</bookmark_value> <bookmark_value>Formeleinstellungen;Tabellendokumente laden</bookmark_value> <bookmark_value>Trennzeichen;Funktionen</bookmark_value> <bookmark_value>Trennzeichen;Matrix Spalte</bookmark_value> <bookmark_value>Trennzeichen;Matrix Zeile</bookmark_value> <bookmark_value>Neuberechnung;Formeleinstellungen</bookmark_value> <bookmark_value>Neuberechnung;große Tabellendokumente</bookmark_value> <bookmark_value>Laden;große Tabellendokumente</bookmark_value>"
#: 01060900.xhp
msgctxt ""
@@ -10358,7 +10366,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"allgemein\"><ahelp hid=\".uno:SdEditOptions\">Defines various settings for newly created presentation documents, such as the contents to be displayed, the measurement unit used, if and how grid alignment is carried out.</ahelp></variable>"
-msgstr "<variable id=\"allgemein\"><ahelp hid=\".uno:SdEditOptions\">Legt verschiedene Einstellungen für neu erstellte Präsentations-Dokumente fest, z.B. die Inhalte, die angezeigt werden, die verwendeten Maßeinheiten, ob und wie das Gitter ausgerichtet wird.</ahelp></variable>"
+msgstr "<variable id=\"allgemein\"><ahelp hid=\".uno:SdEditOptions\">Legt verschiedene Einstellungen für neu erstellte Präsentations-Dokumente fest, beispielsweise die Inhalte, die angezeigt werden, die verwendeten Maßeinheiten, ob und wie das Gitter ausgerichtet wird.</ahelp></variable>"
#: 01070100.xhp
msgctxt ""
@@ -11774,7 +11782,7 @@ msgctxt ""
"par_id0523200811475733\n"
"help.text"
msgid "<ahelp hid=\".\">The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run.</ahelp>"
-msgstr "<ahelp hid=\".\">Der VBA (Visual Basic for Applications)-Code wird so geladen, dass er direkt ausgeführt werden kann. Falls dieses Markierfeld nicht markiert ist, wird der VBA-Code auskommentiert, so dass er inspiziert werden, aber nicht laufen kann.</ahelp>"
+msgstr "<ahelp hid=\".\">Der VBA (Visual Basic for Applications)-Code wird so geladen, dass er direkt ausgeführt werden kann. Falls dieses Markierfeld nicht markiert ist, wird der VBA-Code auskommentiert, sodass er angesehen werden, aber nicht laufen kann.</ahelp>"
#: 01130100.xhp
msgctxt ""
@@ -11782,7 +11790,7 @@ msgctxt ""
"par_id05172017121531273\n"
"help.text"
msgid "After loading the VBA code, %PRODUCTNAME inserts the statement <item type=\"literal\">Option VBASupport 1</item> in every Basic module to enable a limited support for VBA statements, functions and objects. See <link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport Statement [Runtime]</link> for more information."
-msgstr ""
+msgstr "Nach dem Laden des VBA-Codes fügt %PRODUCTNAME die Anweisung <item type=\"literal\">Option VBASupport 1</item> in jedes Basic-Modul ein, um eine begrenzte Unterstützung für VBA-Anweisungen, -Funktionen und -Objekte zu aktivieren. Vergleichen Sie <link href=\"text/sbasic/shared/03103350.xhp\">Anweisung Option VBASupport [Laufzeit]</link> für weitere Informationen."
#: 01130100.xhp
msgctxt ""
@@ -11950,7 +11958,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "These settings are valid when no Microsoft OLE server exists (for example, in UNIX) or when there is no $[officename] OLE server ready for editing the OLE objects."
-msgstr "Diese Einstellungen gelten für den Fall, dass kein Microsoft OLE-Server existiert (z. B. unter UNIX) oder wenn kein $[officename] OLE-Server zum Bearbeiten der OLE-Objekte bereit steht."
+msgstr "Diese Einstellungen gelten für den Fall, dass kein Microsoft OLE-Server existiert (beispielsweise unter UNIX) oder wenn kein $[officename] OLE-Server zum Bearbeiten der OLE-Objekte bereit steht."
#: 01130200.xhp
msgctxt ""
@@ -13342,7 +13350,7 @@ msgctxt ""
"par_id2507201509433451\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optbasicidepage/autoclose_quotes\">Automatically close open quotes.</ahelp> %PRODUCTNAME Basic IDE will add a closing quote each time you type an opening quote. Handy for inserting strings in the Basic code."
-msgstr "<ahelp hid=\"cui/ui/optbasicidepage/autoclose_quotes\">Anführungszeichen werden automatisch geschlossen.</ahelp> Die %PRODUCTNAME Basic-IDE fügt jedes Mal schließende Anführungszeichen hinzu, wenn öffnende Anführungszeichen eingegeben werden. Dies ist praktisch, wenn Zeichenfolgen in den Basic-Code eingefügt werden."
+msgstr "<ahelp hid=\"cui/ui/optbasicidepage/autoclose_quotes\">Anführungszeichen werden automatisch geschlossen.</ahelp> Die %PRODUCTNAME Basic-IDE fügt jedes Mal schließende Anführungszeichen hinzu, wenn öffnende Anführungszeichen eingegeben werden. Dies ist praktisch, wenn Zeichenketten in den Basic-Code eingefügt werden."
#: BasicIDE.xhp
msgctxt ""
@@ -15014,7 +15022,7 @@ msgctxt ""
"par_id201704161715253349\n"
"help.text"
msgid "<ahelp hid=\".\">Set security related options and warnings about hidden information in documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie sicherheitsrelevante Optionen und Warnungen zu verborgenen Informationen in Dokumenten festlegen.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15158,7 +15166,7 @@ msgctxt ""
"par_id79043\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blocks the use of links pointing to images not in the trusted locations defined on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\">Trusted Sources</link> tab of the Macro Security dialog.</ahelp> This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in documents, only a placeholder frame is visible."
-msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blockiert die Benutzung von Verknüpfungen zu Bildern, die nicht von vertrauten Stellen kommen, welche im Register <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Vertrauenswürdige Quellen\">Vertrauenswürdige Quellen</link> des Dialogs Makrosicherheit festgelegt sind.</ahelp> Dies kann die Sicherheit für den Fall erhöhen, wenn Sie mit Dokumenten aus nicht vertrauenswürdigen Quellen (z.B. dem Internet) arbeiten und über Schwachstellen in Bildbearbeitungskomponenten besorgt sind. Das Blockieren von Verknüpfungen bedeutet, dass Bilder nicht in Dokumente geladen werden, nur ein Platzhalterrahmen ist sichtbar."
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blockiert die Benutzung von Verknüpfungen zu Bildern, die nicht von vertrauten Stellen kommen, welche im Register <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Vertrauenswürdige Quellen\">Vertrauenswürdige Quellen</link> des Dialogs Makrosicherheit festgelegt sind.</ahelp> Dies kann die Sicherheit für den Fall erhöhen, wenn Sie mit Dokumenten aus nicht vertrauenswürdigen Quellen (beispielsweise dem Internet) arbeiten und über Schwachstellen in Bildbearbeitungskomponenten besorgt sind. Das Blockieren von Verknüpfungen bedeutet, dass Bilder nicht in Dokumente geladen werden, nur ein Platzhalterrahmen ist sichtbar."
#: serverauthentication.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress.po b/source/de/helpcontent2/source/text/simpress.po
index 27dc0164896..b09fb9d18af 100644
--- a/source/de/helpcontent2/source/text/simpress.po
+++ b/source/de/helpcontent2/source/text/simpress.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-04-16 04:27+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2017-06-12 03:46+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492316841.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497239182.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"hd_id3150342\n"
"help.text"
msgid "<link href=\"text/simpress/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
-msgstr "<link href=\"text/simpress/main0210.xhp\" name=\"Symbolleiste Zeichnnung\">Symbolleiste Zeichnnung</link>"
+msgstr "<link href=\"text/simpress/main0210.xhp\" name=\"Symbolleiste Zeichnung\">Symbolleiste Zeichnung</link>"
#: main0210.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index 9c1e4931369..314c7d83a66 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-30 10:10+0000\n"
+"PO-Revision-Date: 2017-06-12 08:27+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496139011.000000\n"
+"X-POOTLE-MTIME: 1497256048.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Specifies the properties of the selected table, for example, fonts, font effects, borders, and background.</ahelp></variable>"
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Legt die Eigenschaften der ausgewählten Tabelle fest - zum Beispiel Schriftarten, Schrifteffekte, Umrandungen und Hintergrund.</ahelp></variable>"
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Legt die Eigenschaften der ausgewählten Tabelle fest - beispielsweise Schriftarten, Schrifteffekte, Umrandungen und Hintergrund.</ahelp></variable>"
#: 05090000m.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/02.po b/source/de/helpcontent2/source/text/simpress/02.po
index 4107ff08b7d..671a227d432 100644
--- a/source/de/helpcontent2/source/text/simpress/02.po
+++ b/source/de/helpcontent2/source/text/simpress/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-04-12 12:10+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2017-06-18 02:30+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1491999059.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497753012.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_id3145112\n"
"help.text"
msgid "<ahelp hid=\".uno:RectangleToolbox\">Using Customize Toolbar, you can add the <emph>Legacy Rectangles</emph> toolbar.</ahelp>"
-msgstr "<ahelp hid=\".uno:RectangleToolbox\">Über das Menü <emph>Ansicht - Symbolleisten - Rechtecke (veraltet)</emph> können Sie die Symbolleiste <emph>Rechtecke (veraltet)</emph> einblenden.</ahelp>"
+msgstr "<ahelp hid=\".uno:RectangleToolbox\">Über <emph>Ansicht - Symbolleisten - Rechtecke (veraltet)</emph> können Sie die Symbolleiste Rechtecke (veraltet) einblenden.</ahelp>"
#: 10060000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath/01.po b/source/de/helpcontent2/source/text/smath/01.po
index 22ccef802b3..a62dc293a33 100644
--- a/source/de/helpcontent2/source/text/smath/01.po
+++ b/source/de/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: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 17:29+0000\n"
+"PO-Revision-Date: 2017-06-18 02:36+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496770163.000000\n"
+"X-POOTLE-MTIME: 1497753376.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3147398\n"
"help.text"
msgid "When entering information manually in the Commands window, please note that a number of operators require spaces between the elements for the correct structure. This is especially true if you are using values instead of placeholders in your operators, for example, to construct a division 4 div 3 or a div b."
-msgstr "Beachten Sie bei der manuellen Eingabe in das Kommandofenster, dass bei einer Vielzahl von Operatoren die Leerzeichen für den korrekten Aufbau unerlässlich sind. Besonders gilt dies, wenn Sie Ihre Operatoren statt mit Platzhaltern mit Werten versehen, z. B. eine Division 4 div 3 oder a div b aufbauen."
+msgstr "Beachten Sie bei der manuellen Eingabe in das Kommandofenster, dass bei einer Vielzahl von Operatoren die Leerzeichen für den korrekten Aufbau unerlässlich sind. Besonders gilt dies, wenn Sie Ihre Operatoren statt mit Platzhaltern mit Werten versehen, beispielsweise eine Division 4 div 3 oder a div b aufbauen."
#: 03090200.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"par_id3154243\n"
"help.text"
msgid "Limits can be arranged in ways other than centered above/below the operator. Use the options provided by $[officename] Math for working with superscript and subscript indexes. For example, type <emph>sum_a^b c</emph> in the Commands window to arrange the limits to the right of the sum symbol. If your limit entries contain longer expressions, you must put them in group brackets, for example, sum_{i=1}^{2*n} b. When formulas are imported from older versions this is done automatically. To change the spacing (gaps) between the characters choose <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> or <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Limits\"><emph>Limits</emph></link>. Additional basic information about indexes is given elsewhere in the <link href=\"text/smath/01/03091200.xhp\" name=\"Help\">Help</link>."
-msgstr "Grenzen lassen sich auch anders als zentriert über/unter dem Operator anordnen. Nutzen Sie dazu die Möglichkeiten, die Ihnen $[officename] Math für das Arbeiten mit hoch- und tiefgestellten Indizes bietet. Geben Sie also beispielsweise im Fenster Kommandos <emph>sum_a^b c</emph> ein, um die Grenzen am Summenzeichen rechts auszurichten. Bestehen Ihre Grenzangaben aus längeren Ausdrücken, müssen Sie diese jeweils in Gruppenklammern setzen, z. B. sum_{i=1}^{2*n} b. Beim Import von Formeln älterer Versionen geschieht dies übrigens automatisch. Die Abstände der Zeichen zueinander lassen sich in den Menüs <emph>Format - Abstände - Kategorien - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Indizes\">Indizes</link> und <emph>Format - Abstände - Kategorien - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Grenzen\">Grenzen</link> verändern. Grundsätzliche Informationen zu Indizes erhalten Sie an anderer Stelle in der <link href=\"text/smath/01/03091200.xhp\" name=\"Hilfe\">Hilfe</link>."
+msgstr "Grenzen lassen sich auch anders als zentriert über/unter dem Operator anordnen. Nutzen Sie dazu die Möglichkeiten, die Ihnen $[officename] Math für das Arbeiten mit hoch- und tiefgestellten Indizes bietet. Geben Sie also beispielsweise im Fenster Kommandos <emph>sum_a^b c</emph> ein, um die Grenzen am Summenzeichen rechts auszurichten. Bestehen Ihre Grenzangaben aus längeren Ausdrücken, müssen Sie diese jeweils in Gruppenklammern setzen, beispielsweise sum_{i=1}^{2*n} b. Beim Import von Formeln älterer Versionen geschieht dies übrigens automatisch. Die Abstände der Zeichen zueinander lassen sich unter <emph>Format - Abstände... - Kategorien - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Indizes\"><emph>Indizes</emph></link> und <emph>Format - Abstände... - Kategorien - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Grenzen\"><emph>Grenzen</emph></link> verändern. Grundsätzliche Informationen zu Indizes erhalten Sie an anderer Stelle in der <link href=\"text/smath/01/03091200.xhp\" name=\"Hilfe\">Hilfe</link>."
#: 03090300.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id3155956\n"
"help.text"
msgid "When you type information manually in the Commands window, note that a number of operators require spaces for correct structure. This is especially true when your operators are supplied with values instead of placeholders, for example, lim a_{n}=a."
-msgstr "Beachten Sie bei manueller Eingabe im Kommandofenster, dass bei einer Vielzahl von Operatoren die Leerzeichen für den korrekten Aufbau unerlässlich sind. Besonders gilt dies, wenn Sie Ihre Operatoren statt mit Platzhaltern mit Werten versehen, z. B. lim a_{n}=a."
+msgstr "Beachten Sie bei manueller Eingabe im Kommandofenster, dass bei einer Vielzahl von Operatoren die Leerzeichen für den korrekten Aufbau unerlässlich sind. Besonders gilt dies, wenn Sie Ihre Operatoren statt mit Platzhaltern mit Werten versehen, beispielsweise lim a_{n}=a."
#: 03090400.xhp
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"par_id3147546\n"
"help.text"
msgid "You can also assign an index or an exponent to a function. For example, typing <emph>sin^2x</emph> results in in a function \"sine to the power of 2x\"."
-msgstr "Eine Funktion können Sie auch mit Index oder Exponent versehen. Probieren Sie es aus, indem Sie im Fenster Kommandos die Zeichenfolge <emph>sin^2 x + cos^2 x = 1</emph> eingeben."
+msgstr "Eine Funktion können Sie auch mit Index oder Exponent versehen. Probieren Sie es aus, indem Sie im Fenster Kommandos die Zeichenkette <emph>sin^2 x + cos^2 x = 1</emph> eingeben."
#: 03090400.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3154752\n"
"help.text"
msgid "When typing functions manually in the Commands window, note that spaces are required for some functions (for example, abs 5=5 ; abs -3=3)."
-msgstr "Bei einer manuellen Eingabe im Kommandofenster achten Sie darauf, dass bei einigen Funktionen Leerzeichen für den korrekten Aufbau unerlässlich sind (z.B. abs 5=5 ; abs -3=3)."
+msgstr "Bei einer manuellen Eingabe im Kommandofenster achten Sie darauf, dass bei einigen Funktionen Leerzeichen für den korrekten Aufbau unerlässlich sind (beispielsweise abs 5=5 ; abs -3=3)."
#: 03090500.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_id3149208\n"
"help.text"
msgid "Brackets are automatically sized when you type <emph>left</emph> and <emph>right</emph> in front of the bracket command, for example, <emph>left(a over b right)</emph>. You can also set the size and spacing of brackets by choosing <emph>Format - Spacing - Category - Brackets</emph> and setting the desired percentages. Mark the <emph>Scale all brackets</emph> check box to apply the changes to all brackets in the formula."
-msgstr "Klammern werden automatisch skaliert, wenn Sie <emph>left</emph> und <emph>right</emph> den Klammern voranstellen, z.B. <emph>left ( a over b right )</emph>. Sie können außerdem die Größe und die Abstände für skalierbare Klammern festlegen, indem Sie im Menü unter <emph>Format - Abstände... - Kategorie - Klammern</emph> die entsprechenden Prozentwerte eingeben. Wenn Sie die Option <emph>Alle Klammern skalieren</emph> aktivieren, werden alle Klammern in allen Formeln automatisch skaliert."
+msgstr "Klammern werden automatisch skaliert, wenn Sie <emph>left</emph> und <emph>right</emph> den Klammern voranstellen, beispielsweise <emph>left ( a over b right )</emph>. Sie können außerdem die Größe und die Abstände für skalierbare Klammern festlegen, indem Sie im Menü unter <emph>Format - Abstände... - Kategorie - Klammern</emph> die entsprechenden Prozentwerte eingeben. Wenn Sie die Option <emph>Alle Klammern skalieren</emph> aktivieren, werden alle Klammern in allen Formeln automatisch skaliert."
#: 03090500.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3145107\n"
"help.text"
msgid "Be sure to put spaces (gaps) between elements when entering them directly in the Commands window. This ensures that the correct structure is recognized."
-msgstr "Beachten Sie bei einer direkten Eingabe im Kommandofenster, dass bei einigen Klammerungen Leerzeichen für den korrekten Aufbau unerlässlich sind, z. B. left ldline<?> right rdline."
+msgstr "Beachten Sie bei einer direkten Eingabe im Kommandofenster, dass bei einigen Klammerungen Leerzeichen für den korrekten Aufbau unerlässlich sind. Damit wird sichergestellt, dass die korrekte Struktur erkannt wird."
#: 03090500.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"par_id3153125\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SIZEXY\">Inserts a command for modifying the font size with two placeholders. The first placeholder refers to the font size (for example, 12) and the second one contains the text.</ahelp> For proper structure, insert a space between the values. You can also directly enter <emph>size <?> <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SIZEXY\">Fügt einen Befehl zur Änderung der <emph>Schriftgröße</emph> mit zwei Platzhaltern ein. Der erste Platzhalter bezieht sich auf die Schriftgröße (z.B. 12) und der zweite enthält den Text.</ahelp> Um eine ordentliche Struktur zu erhalten, setzen Sie ein Leerzeichen zwischen die Werte. Sie können auch <emph>size <?> <?></emph> direkt in das Fenster <emph>Kommandos</emph> eingeben."
+msgstr "<ahelp hid=\"HID_SMA_SIZEXY\">Fügt einen Befehl zur Änderung der Schriftgröße mit zwei Platzhaltern ein. Der erste Platzhalter bezieht sich auf die Schriftgröße (beispielsweise 12) und der zweite enthält den Text.</ahelp> Um eine ordentliche Struktur zu erhalten, setzen Sie ein Leerzeichen zwischen die Werte. Sie können auch <emph>size <?> <?></emph> direkt in das Fenster <emph>Kommandos</emph> eingeben."
#: 03090600.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"par_id3149626\n"
"help.text"
msgid "Use the <emph>color</emph> command to change the color of your formula. Type <emph>color</emph>, then type the color name (the available colors are white, black, cyan, magenta, red, blue, green and yellow), then the formula, character or character sequence. The input <emph>color green size 20 a</emph> results in a green letter \"a\" with a font size of 20."
-msgstr "Für eine <emph>farbige Darstellung von Zeichen</emph> Ihrer Formel nutzen Sie den Befehl <emph>color</emph>. Er ist gemeinsam mit den verfügbaren Farben white, black, cyan, magenta, red, blue, green und yellow einzugeben, gefolgt von einem Zeichen oder einer zusammengehörigen Zeichenfolge. Ein Beispiel soll das Prinzip verdeutlichen: <emph>color green size 20 a</emph>. Beachten Sie, das hier zwei Attribute (Farbe und Größe) auf den Buchstaben \"a\" angewendet werden."
+msgstr "Für eine <emph>farbige Darstellung von Zeichen</emph> Ihrer Formel nutzen Sie den Befehl <emph>color</emph>. Er ist gemeinsam mit den verfügbaren Farben white, black, cyan, magenta, red, blue, green und yellow einzugeben, gefolgt von einem Zeichen oder einer zusammengehörigen Zeichenkette. Ein Beispiel soll das Prinzip verdeutlichen: <emph>color green size 20 a</emph>. Beachten Sie, das hier zwei Attribute (Farbe und Größe) auf den Buchstaben \"a\" angewendet werden."
#: 03090600.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3146071\n"
"help.text"
msgid "The <emph>nbold</emph> and <emph>nitalic</emph> commands remove the bold or italic default fonts of formula components. For example, remove italics from the x in the formula 5 x + 3=28 by typing <emph>nitalic</emph> before the x as in <emph>5 nitalic x + 3=28</emph>."
-msgstr "Um programmmäßig fett oder kursiv formatierten Formelbestandteilen diese Attribute zu nehmen, können Sie die Befehle <emph>nbold</emph> und <emph>nitalic</emph> nutzen. Soll z.B. das x in der Formel 5 x + 3=28 nicht mehr kursiv sein, muss vor x <emph>nitalic</emph> gesetzt werden, d.h. Sie müssen dann <emph>5 nitalic x + 3=28</emph> eingeben."
+msgstr "Um programmmäßig fett oder kursiv formatierten Formelbestandteilen diese Attribute zu nehmen, können Sie die Befehle <emph>nbold</emph> und <emph>nitalic</emph> nutzen. Soll beispielsweise das x in der Formel 5 x + 3=28 nicht mehr kursiv sein, muss vor x <emph>nitalic</emph> gesetzt werden, das heißt, Sie müssen dann <emph>5 nitalic x + 3=28</emph> eingeben."
#: 03090600.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3155621\n"
"help.text"
msgid "For size changes you can use <emph>size n</emph>,<emph> +n</emph>,<emph> -n</emph>,<emph> *n</emph> and<emph> /n </emph>, where <emph>n</emph> is a placeholder. This method is useful when the base size of the formula is subject to change. The commands <emph>size +n</emph> and <emph>size -n</emph> change point size, and <emph>size *n</emph> and <emph>size /n</emph> change the size by a percentage. For example, the command <emph>size *1.17</emph> increases the size of a character by exactly 17%."
-msgstr "Zur Größenveränderung lässt sich <emph>size n</emph>,<emph> +n</emph>,<emph> -n</emph>,<emph> *n</emph> und<emph> /n </emph>verwenden, wobei <emph>n</emph> hier als Platzhalter zu sehen ist. Besonders die Formen mit \"Vorzeichen\" sind für eventuelle Änderungen der Basisgröße geeignet. Sie lassen sich kopieren und an anderer Stelle einfügen, ohne ihr Erscheinungsbild zu verändern. Bei <emph>size +n</emph> und <emph>size -n</emph> wird die Größe in Points (pt) verändert. Prozentuelle Veränderungen erzielen Sie mit <emph>size *n</emph> und <emph>size /n</emph>, wobei der Schrägstrich proportionale Verhältnisse erhält. Wollen Sie ein Zeichen z. B. um genau 17 % vergrößern, müssen Sie <emph>size *1.17</emph> eingeben."
+msgstr "Zur Größenveränderung lässt sich <emph>size n</emph>,<emph> +n</emph>,<emph> -n</emph>,<emph> *n</emph> und<emph> /n </emph>verwenden, wobei <emph>n</emph> hier als Platzhalter zu sehen ist. Besonders die Formen mit \"Vorzeichen\" sind für eventuelle Änderungen der Basisgröße geeignet. Sie lassen sich kopieren und an anderer Stelle einfügen, ohne ihr Erscheinungsbild zu verändern. Bei <emph>size +n</emph> und <emph>size -n</emph> wird die Größe in Points (pt) verändert. Prozentuelle Veränderungen erzielen Sie mit <emph>size *n</emph> und <emph>size /n</emph>, wobei der Schrägstrich proportionale Verhältnisse erhält. Wollen Sie ein Zeichen beispielsweise um genau 17 % vergrößern, müssen Sie <emph>size *1.17</emph> eingeben."
#: 03090600.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id3148695\n"
"help.text"
msgid "Note that some entries require spaces for the correct structure. This is especially true when you specify attributes with fixed values instead of placeholders."
-msgstr "Bei einer manuellen Eingabe in das Kommandofenster ist darauf zu achten, dass Leerzeichen teilweise für den korrekten Aufbau unerlässlich sind. Besonders gilt dies, wenn Sie Ihre Attribute statt mit Platzhaltern mit Werten versehen, z. B. font sans 20."
+msgstr "Bei einer manuellen Eingabe in das Kommandofenster ist darauf zu achten, dass Leerzeichen teilweise für den korrekten Aufbau unerlässlich sind. Besonders gilt dies, wenn Sie Ihre Attribute statt mit Platzhaltern mit Werten versehen, beispielsweise font sans 20."
#: 03090600.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_id3151009\n"
"help.text"
msgid "aligning numerators and denominators, for example <emph>{alignl a}over{b+c}</emph>"
-msgstr "Zähler und Nenner ausrichten, z.B. <emph>{alignl a} over {b+c}</emph>,"
+msgstr "Zähler und Nenner ausrichten, beispielsweise <emph>{alignl a} over {b+c}</emph>,"
#: 03090700.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_id3148812\n"
"help.text"
msgid "constructing binomials or stacks, for example <emph>binom{2*n}{alignr k}</emph>"
-msgstr "vertikale Anordnungen aufbauen, z.B. <emph>binom{2*n}{alignr k}</emph>,"
+msgstr "vertikale Anordnungen aufbauen, beispielsweise <emph>binom{2*n}{alignr k}</emph>,"
#: 03090700.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_id3154360\n"
"help.text"
msgid "aligning the elements in a matrix, for example <emph>matrix{alignr a#b+2##c+1/3#alignl d}</emph> and"
-msgstr "die Elemente einer Matrix ausrichten, z.B. <emph>matrix{alignr a # b+2 ## c+1/3 # alignl d}</emph> und"
+msgstr "die Elemente einer Matrix ausrichten, beispielsweise <emph>matrix{alignr a # b+2 ## c+1/3 # alignl d}</emph> und"
#: 03090700.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id3155946\n"
"help.text"
msgid "beginning a new line, for example <emph>a+b-c newline alignr x/y</emph>"
-msgstr "eine neue Zeile beginnen, z.B. <emph>a+b-c newline alignr x/y</emph>."
+msgstr "eine neue Zeile beginnen, beispielsweise <emph>a+b-c newline alignr x/y</emph>."
#: 03090700.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"par_id3154562\n"
"help.text"
msgid "Brackets do not adjust their size to the enclosed expression. For example, if you want \"( a over b )\" with a bracket size adjusted to a and b you must insert \"left\" and \"right\". Entering \"left(a over b right)\" produces appropriate sizing. If, however, the brackets themselves are part of the expression whose size is changed, they are included the size change: \"size 3(a over b)\" and \"size 12(a over b)\". The sizing of the bracket-to-expression ratio does not change in any way."
-msgstr "Eine weitere Gemeinsamkeit all dieser Klammern ist es, dass sie ihre Größe nicht dem umschlossenen Ausdruck anpassen und umgekehrt. Wollen Sie z.B. \"( a over b )\" mit einer a und b angepassten Klammergröße darstellen, müssen Sie \"left\" und \"right\" einfügen. Die Eingabe von size18(\" stellt angemessene Größenverhältnisse her. Dasselbe gilt für die unterschiedliche Eingabe und somit entsprechenden Ergebnisse von \"(size 3{a over b})\" und \"left(size 3{a over b}right)\". Sind die Klammern selbst Teil des Ausdrucks, dessen Größe geändert wird, sind sie von der Größenveränderung auch betroffen: \"size 3(a over b)\" und \"size 12(a over b)\". Dies ändert nichts an dem Größenverhältnis von Klammer zu geklammertem Ausdruck."
+msgstr "Eine weitere Gemeinsamkeit all dieser Klammern ist es, dass sie ihre Größe nicht dem umschlossenen Ausdruck anpassen und umgekehrt. Wollen Sie beispielsweise \"( a over b )\" mit einer a und b angepassten Klammergröße darstellen, müssen Sie \"left\" und \"right\" einfügen. Die Eingabe von \"left ( a over b right )\" stellt angemessene Größenverhältnisse her. Dasselbe gilt für die unterschiedliche Eingabe und somit entsprechenden Ergebnisse von \"(size 3{a over b})\" und \"left(size 3{a over b}right)\". Sind die Klammern selbst Teil des Ausdrucks, dessen Größe geändert wird, sind sie von der Größenveränderung auch betroffen: \"size 3(a over b)\" und \"size 12(a over b)\". Dies ändert nichts an dem Größenverhältnis von Klammer zu geklammertem Ausdruck."
#: 03091100.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"par_id3147526\n"
"help.text"
msgid "This differs slightly for competing or mutually influencing attributes. This is often the case with font attributes. For example, which color does the b have in \"color yellow color red (a + color green b)\", or which size does it have in \"size *4 (a + size /2 b)\"? Given a base size of 12, does it have the size 48, 6 or even 24 (which could be seen as a combination)? The following are basic resolution rules, which will be followed consistently in the future. In general, the rules apply to all group operations. This only has a visible effect on the font attributes, like \"bold\", \"ital\", \"phantom\", \"size\", \"color\" and \"font\":"
-msgstr "Etwas anders liegt die Sache allerdings bei Attributen, die miteinander konkurrieren oder sich zumindest direkt gegenseitig beeinflussen. Dies ist oft bei den Schriftattributen der Fall. Welche Farbe hat z.B. in \"color yellow color red (a + color green b)\" das b oder welche Größe hat es in \"size *4 (a + size /2 b)\"? Eine Basisgröße von 12 vorausgesetzt, hat es dann die Größe 48, 6 oder gar 24 (was als Kombination gelten könnte)? Was gleich beschrieben wird, galt im wesentlichen bereits für $[officename] 4.0, stellt jetzt aber die grundsätzliche Auflösungsregel dar, nach der in Zukunft alles einheitlich funktioniert. Prinzipiell gilt diese Regel für alle Gruppen-Operationen. Einen zu beobachtenden Effekt hat dies jedoch nur bei den Schriftattributen, also \"bold\", \"ital\", \"phantom\", \"size\", \"color\" und \"font\":"
+msgstr "Etwas anders liegt die Sache allerdings bei Attributen, die miteinander konkurrieren oder sich zumindest direkt gegenseitig beeinflussen. Dies ist oft bei den Schriftattributen der Fall. Welche Farbe hat beispielsweise in \"color yellow color red (a + color green b)\" das b oder welche Größe hat es in \"size *4 (a + size /2 b)\"? Eine Basisgröße von 12 vorausgesetzt, hat es dann die Größe 48, 6 oder gar 24 (was als Kombination gelten könnte)? Im folgenden werden die grundsätzlichen Auflösungsregeln beschrieben, nach denen in Zukunft alles einheitlich funktioniert. Prinzipiell gelten diese Regeln für alle Gruppen-Operationen. Einen zu beobachtenden Effekt hat dies jedoch nur bei den Schriftattributen, wie \"bold\", \"ital\", \"phantom\", \"size\", \"color\" und \"font\":"
#: 03091100.xhp
msgctxt ""
@@ -5942,7 +5942,7 @@ msgctxt ""
"par_id3154906\n"
"help.text"
msgid "To change the size of a formula, use \"size +\" or -,*,/. Do not use \"size n\". These can easily be used in any context. This enables you to copy to other areas by using Copy and Paste, and the result remains the same. Furthermore, such expressions survive a change of base size in the menu better than when using \"size n\". If you use only \"size *\" and \"size /\" (for example, \"size *1.24 a or size /0.86 a\") the proportions remain intact."
-msgstr "Zur Größenänderung verwenden Sie \"size +\", oder die Versionen mit -,*,/ statt \"size n\". Diese lassen sich gut in beliebigem Kontext verwenden. So können Sie sie mit Kopieren und Einfügen an andere Stellen kopieren und das Ergebnis ist immer noch ähnlich. Auch überstehen solche Ausdrücke besser eine Änderung der Basisgröße im Menü als bei Verwendung von \"size n\". Benutzen Sie nur \"size *\" und \"size /\" (z. B. \"size *1.24 a oder size /0.86 a\"), bleiben die Proportionen erhalten."
+msgstr "Zur Größenänderung verwenden Sie \"size +\", oder die Versionen mit -,*,/ statt \"size n\". Diese lassen sich gut in beliebigem Kontext verwenden. So können Sie sie mit Kopieren und Einfügen an andere Stellen kopieren und das Ergebnis ist immer noch ähnlich. Auch überstehen solche Ausdrücke besser eine Änderung der Basisgröße im Menü als bei Verwendung von \"size n\". Benutzen Sie nur \"size *\" und \"size /\" (beispielsweise \"size *1.24 a oder size /0.86 a\"), bleiben die Proportionen erhalten."
#: 03091100.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3149884\n"
"help.text"
msgid "The index and exponent for a character are displayed one on top of the other, left-justified to the base character. For example, type <emph>a_2^3</emph> or <emph>a^3_2</emph>. This can be in any order. Instead of <emph>'_'</emph> and <emph>'^'</emph>, you can use <emph>'sub'</emph> and <emph>'sup'</emph>."
-msgstr "Index und Exponent an einem Zeichen werden übereinander dargestellt, und zwar linksbündig am Basiszeichen, z. B. <emph>a_2^3</emph> oder <emph>a^3_2</emph>. Die Reihenfolge ist dabei unerheblich. Statt <emph>'_'</emph> und <emph>'^'</emph> können Sie auch <emph>'sub'</emph> und <emph>'sup'</emph> verwenden."
+msgstr "Index und Exponent an einem Zeichen werden übereinander dargestellt, und zwar linksbündig am Basiszeichen, beispielsweise <emph>a_2^3</emph> oder <emph>a^3_2</emph>. Die Reihenfolge ist dabei unerheblich. Statt <emph>'_'</emph> und <emph>'^'</emph> können Sie auch <emph>'sub'</emph> und <emph>'sup'</emph> verwenden."
#: 03091200.xhp
msgctxt ""
@@ -10902,7 +10902,7 @@ msgctxt ""
"par_id3151108\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fonttypedialog/serifCB\">You can specify the font to be used for the <emph>font serif</emph> format.</ahelp> Serifs are the small \"guides\" that can be seen, for example, at the bottom of a capital A when the Times serif font is used. Using serifs is quite helpful since it guides a reader's eye in a straight line and can speed up reading."
-msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/serifCB\">Wählen Sie hier die Schriftart für die manuelle Formatierung <emph>font serif</emph>.</ahelp> Serifen sind kleine An- und Abstriche, die z.B. unten am Buchstaben A sichtbar sind, wenn Sie die Serifenschriftart Times verwenden. Das Verwenden von Serifen unterstützt und beschleunigt das Lesen, da sie das Auge des Leser in einer geraden Linie führen."
+msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/serifCB\">Wählen Sie hier die Schriftart für die manuelle Formatierung <emph>font serif</emph>.</ahelp> Serifen sind kleine An- und Abstriche, wie sie beispielsweise unten am Buchstaben A sichtbar sind, wenn Sie die Serifenschriftart Times verwenden. Das Verwenden von Serifen unterstützt und beschleunigt das Lesen, da sie das Auge des Leser in einer geraden Linie führen."
#: 05010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter.po b/source/de/helpcontent2/source/text/swriter.po
index 6c9a5fcab72..9b5dd19463e 100644
--- a/source/de/helpcontent2/source/text/swriter.po
+++ b/source/de/helpcontent2/source/text/swriter.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-30 10:24+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 02:40+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496139880.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497753630.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Kapitelnummerierung...\">Kapitelnummerierung...</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "You can insert pictures with <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">different formats</link> into a text document, including graphics with a JPG or GIF format. In addition, the <link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link> provides a collection of clipart graphics, and the <link href=\"text/shared/guide/fontwork.xhp\">Fontwork Gallery</link> creates stunning font effects."
-msgstr "Sie können in ein Textdokument Grafiken <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">unterschiedlicher Formate</link> einfügen, z.B. Grafiken im JPG- oder GIF-Format. Zusätzlich finden Sie in der <link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link> eine Vielzahl von nach Themen geordneten Clip-Arts. Sie können mit <link href=\"text/shared/guide/fontwork.xhp\">Fontwork</link> wirkungsvolle Schrifteffekte erzeugen."
+msgstr "Sie können in ein Textdokument Grafiken <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">unterschiedlicher Formate</link> einfügen, einschließlich Grafiken im JPG- oder GIF-Format. Zusätzlich finden Sie in der <link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link> eine Vielzahl von nach Themen geordneten Clip-Arts. Sie können mit <link href=\"text/shared/guide/fontwork.xhp\">Fontwork</link> wirkungsvolle Schrifteffekte erzeugen."
#: main0503.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/00.po b/source/de/helpcontent2/source/text/swriter/00.po
index 36b1438d91c..0746fefdc94 100644
--- a/source/de/helpcontent2/source/text/swriter/00.po
+++ b/source/de/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-27 05:07+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495861676.000000\n"
#: 00000004.xhp
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Menü <emph>Extras - Kapitelnummerierung...</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Wählen Sie <emph>Extras - Kapitelnummerierung... - Register: Nummerierung</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Menü <emph>Extras - Zeilennummerierung</emph> (nicht beim HTML-Format)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index 3ed60d7dad2..057b8c2a31e 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 17:16+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-18 02:42+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496769415.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497753720.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3149804\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/abstractdialog/outlines\">Enter the extent of the outline levels to be copied to the new document.</ahelp> For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in <emph>Subpoints per Level</emph>."
-msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/outlines\">Geben Sie hier die Anzahl der Stufen der Ebenen an, die in das neue Dokument kopiert werden sollen.</ahelp> Wenn Sie z. B. 4 Ebenen wählen, werden die mit Überschrift 1 bis Überschrift 4 formatierten Absätze übernommen, und nach jedem so formatierten Absatz die im Feld <emph>Absätze je Kapitel</emph> angegebene Anzahl von nachfolgenden Absätzen."
+msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/outlines\">Geben Sie hier die Anzahl der Stufen der Ebenen an, die in das neue Dokument kopiert werden sollen.</ahelp> Wenn Sie beispielsweise 4 Ebenen wählen, werden die mit Überschrift 1 bis Überschrift 4 formatierten Absätze übernommen, und nach jedem so formatierten Absatz die im Feld <emph>Absätze je Kapitel</emph> angegebene Anzahl von nachfolgenden Absätzen."
#: 01160300.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3148784\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jumps to the previous item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, and then click an item category - for example, \"Images\"."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Springt zum vorhergehenden Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <emph>Navigation</emph> und dann auf eine Elementkategorie - z.B. „Bilder“.</ahelp> Springt zum vorhergehenden Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> und dann auf eine Elementkategorie - z.B. „Bilder“."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Springt zum vorhergehenden Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <emph>Navigation</emph> und dann auf eine Elementkategorie - beispielsweise \"Bilder\".</ahelp> Springt zum vorhergehenden Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> und dann auf eine Elementkategorie - beispielsweise \"Bilder\"."
#: 02110000.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3154028\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, and then click an item category - for example, \"Images\"."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Springt zum nächsten Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> und dann auf eine Elementkategorie - z.B. „Bilder“.</ahelp> Springt zum nächsten Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> und dann auf eine Elementkategorie - z.B. „Bilder“."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Springt zum nächsten Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> und dann auf eine Elementkategorie - beispielsweise \"Bilder\".</ahelp> Springt zum nächsten Element im Dokument. Um die Art des betreffenden Elements festzulegen, klicken Sie auf das Symbol <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> und dann auf eine Elementkategorie - beispielsweise \"Bilder\"."
#: 02110000.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id3155828\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Legt die Ziehen-und-Ablegen-Optionen zum Einfügen von Elementen aus dem Navigator in ein Dokument fest, z. B. beim Einfügen als Hyperlink. Klicken Sie auf dieses Symbol und wählen dann die gewünschte Option aus.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Legt die Ziehen-und-Ablegen-Optionen zum Einfügen von Elementen aus dem Navigator in ein Dokument fest, beispielsweise beim Einfügen als Hyperlink. Klicken Sie auf dieses Symbol und wählen dann die gewünschte Option aus.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Klicken Sie auf <emph>1</emph>, um im Navigator-Fenster nur die Überschriften der obersten Ebene anzeigen zu lassen, und auf <emph>10</emph>, um alle Überschriften zu sehen.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3154330\n"
"help.text"
msgid "The entries largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> selection box. You can also select other jump destinations. An example are the reminders, which you can set with the <emph>Set Reminder</emph> icon in the Navigator. You can select an object from among the following options on the <emph>Navigation</emph> toolbar: table, text frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula."
-msgstr "Die Einträge entsprechen weitgehend denen in der Auswahlbox des <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigators\">Navigators</link>. Zusätzlich können Sie auch andere Sprungziele auswählen, z.B. Merker, die Sie mit dem Symbol <emph>Merker setzen</emph> im Navigator setzen können. Als Objekt können Sie in der Abreißleiste <emph>Navigation</emph> unter folgenden Optionen wählen: Tabelle, Textrahmen, Grafik, OLE-Objekt, Seite, Überschrift, Merker, Zeichnungsobjekt, Kontrollfeld, Bereich, Lesezeichen, Markierung, Fußnote, Notiz, Verzeichniseintrag oder (fehlerhafte) Tabellenformel."
+msgstr "Die Einträge entsprechen weitgehend denen in der Auswahlbox des <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigators\">Navigators</link>. Zusätzlich können Sie auch andere Sprungziele auswählen, beispielsweise Merker, die Sie mit dem Symbol <emph>Merker setzen</emph> im Navigator setzen können. Als Objekt können Sie in der Abreißleiste <emph>Navigation</emph> unter folgenden Optionen wählen: Tabelle, Textrahmen, Grafik, OLE-Objekt, Seite, Überschrift, Merker, Zeichnungsobjekt, Kontrollfeld, Bereich, Lesezeichen, Markierung, Fußnote, Notiz, Verzeichniseintrag oder (fehlerhafte) Tabellenformel."
#: 02110100.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3153127\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/autotext\">Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/autotext\">Klicken Sie hier, um weitere AutoText-Befehle anzuzeigen, z. B. zum Erstellen eines neuen Textbausteins aus ausgewähltem Text im aktuellen Dokument.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/autotext\">Klicken Sie hier, um weitere AutoText-Befehle anzuzeigen, beispielsweise zum Erstellen eines neuen Textbausteins aus ausgewähltem Text im aktuellen Dokument.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3150700\n"
"help.text"
msgid "Lists the field options, for example, \"fixed\". If you want, you can click another option for the selected field type."
-msgstr "Zeigt eine Liste der Feldoptionen an, z.B. \"fix\". Falls gewünscht, können Sie eine andere Option für den ausgewählten Feldtyp aktivieren."
+msgstr "Zeigt eine Liste der Feldoptionen an, beispielsweise \"fix\". Falls gewünscht, können Sie eine andere Option für den ausgewählten Feldtyp aktivieren."
#: 02140000.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id3145256\n"
"help.text"
msgid "Displays the offset for the selected field type, for example, for \"Next Page,\" \"Page Numbers\" or \"Previous Page\". You can enter a new offset value which will be added to the displayed page number."
-msgstr "Zeigt die Korrekturmöglichkeiten für den ausgewählten Feldtyp an, z.B. für \"Nächste Seite\", \"Seitenzahlen\" oder \"Vorherige Seite\". Falls gewünscht, können Sie einen neuen Korrekturwert eingeben."
+msgstr "Zeigt die Korrekturmöglichkeiten für den ausgewählten Feldtyp an, beispielsweise für \"Nächste Seite\", \"Seitenzahlen\" oder \"Vorherige Seite\". Falls gewünscht, können Sie einen neuen Korrekturwert eingeben."
#: 02140000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3154646\n"
"help.text"
msgid "<ahelp hid=\".\">Shows hidden formatting symbols in your text, such as paragraph marks, line breaks, tab stops, and spaces.</ahelp>"
-msgstr "<ahelp hid=\".\">Zeigt die in Ihrem Text enthaltenen Steuerzeichen an, so z.B. Absatzmarken, Zeilenwechsel, Tabulatoren und Leerzeichen.</ahelp>"
+msgstr "<ahelp hid=\".\">Zeigt die in Ihrem Text enthaltenen Steuerzeichen an, beispielsweise Absatzmarken, Zeilenwechsel, Tabulatoren und Leerzeichen.</ahelp>"
#: 03100000.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3154343\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the condition that must be met to hide the section.</ahelp> A condition is a <link href=\"text/swriter/01/04090200.xhp\" name=\"logical expression\">logical expression</link>, such as \"SALUTATION EQ Mr.\". For example, if you use the <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"mail merge\">mail merge</link> form letter feature to define a database field called \"Salutation\" that contains \"Mr.\", \"Ms.\", or \"Sir or Madam\", you can then specify that a section will only be printed if the salutation is \"Mr.\"."
-msgstr "<ahelp hid=\".\">Geben Sie die Bedingung ein, die erfüllt werden muss, damit der Bereich versteckt wird.</ahelp> Eine Bedingung ist ein <link href=\"text/swriter/01/04090200.xhp\" name=\"logischer Ausdruck\">logischer Ausdruck</link> wie z.B. \"ANREDE EQ Hr.\". Wenn Sie beispielsweise mit der Funktion <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"Seriendruck\">Seriendruck</link> ein Datenbankfeld namens \"Anrede\" definieren, das die Werte \"Sehr geehrter Herr\", \"Sehr geehrte Frau\" oder \"Sehr geehrte Dame, sehr geehrter Herr\" enthalten kann, so können Sie weiter festlegen, dass ein bestimmter Bereich nur dann gedruckt wird, wenn die Anrede \"Sehr geehrter Herr\" ist."
+msgstr "<ahelp hid=\".\">Geben Sie die Bedingung ein, die erfüllt werden muss, damit der Bereich versteckt wird.</ahelp> Eine Bedingung ist ein <link href=\"text/swriter/01/04090200.xhp\" name=\"logischer Ausdruck\">logischer Ausdruck</link> wie beispielsweise \"ANREDE EQ Hr.\". Wenn Sie beispielsweise mit der Funktion <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"Seriendruck\">Seriendruck</link> ein Datenbankfeld namens \"Anrede\" definieren, das die Werte \"Sehr geehrter Herr\", \"Sehr geehrte Frau\" oder \"Sehr geehrte Dame, sehr geehrter Herr\" enthalten kann, so können Sie weiter festlegen, dass ein bestimmter Bereich nur dann gedruckt wird, wenn die Anrede \"Sehr geehrter Herr\" ist."
#: 04020100.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "Another example would be to create the field variable \"x\" and set its value to 1. Then specify a condition based on this variable for hiding a section, such as: \"x eq 1\". If you want to display the section, set the value of the variable \"x\" to \"0\"."
-msgstr "Ein anderes Beispiel: Sie könnten eine Feldvariable \"x\" erstellen und ihren Wert auf 1 setzen. Anschließend definieren Sie eine Bedingung auf Basis dieser Variable, mit der Sie einen Bereich verstecken, so z. B.: \"x eq 1\". Wenn Sie den Bereich anzeigen möchten, setzen Sie den Wert der Variable \"x\" auf \"0\"."
+msgstr "Ein anderes Beispiel: Sie könnten eine Feldvariable \"x\" erstellen und ihren Wert auf 1 setzen. Anschließend definieren Sie eine Bedingung auf Basis dieser Variable, mit der Sie einen Bereich verstecken, beispielsweise \"x eq 1\". Wenn Sie den Bereich anzeigen möchten, setzen Sie den Wert der Variable \"x\" auf \"0\"."
#: 04020100.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id3147172\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envaddresspage/EnvAddressPage\" visibility=\"visible\">Enter the delivery and return addresses for the envelope. You can also insert address fields from a database, for example from the Addresses database.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/envaddresspage/EnvAddressPage\" visibility=\"visible\">Geben Sie die Empfänger- und Absenderadresse für den Briefumschlag ein. Sie können auch Adressfelder aus einer Datenbank einfügen, so z.B. aus der Datenbank \"Adressen\".</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/envaddresspage/EnvAddressPage\" visibility=\"visible\">Geben Sie die Empfänger- und Absenderadresse für den Briefumschlag ein. Sie können auch Adressfelder aus einer Datenbank einfügen, beispielsweise aus der Datenbank \"Adressen\".</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id3145415\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Enter the delivery address.</ahelp> You can also click in this box, and select a database, a table, and field, and then click the arrow button to insert the field in the address. If you want, you can apply formatting, such as bold and underline, to the address text."
-msgstr "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Geben Sie die Empfängeradresse ein.</ahelp> Sie können auch in dieses Feld klicken, eine Datenbank, eine Tabelle und ein Feld auswählen und dann auf die Pfeilschaltfläche klicken, um das Feld in die Adresse einzufügen. Je nach Wunsch können Sie den Adresstext auch formatieren, indem Sie z.B. Felder fett auszeichnen oder unterstreichen."
+msgstr "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Geben Sie die Empfängeradresse ein.</ahelp> Sie können auch in dieses Feld klicken, eine Datenbank, eine Tabelle und ein Feld auswählen und dann auf die Pfeilschaltfläche klicken, um das Feld in die Adresse einzufügen. Je nach Wunsch können Sie den Adresstext auch formatieren, indem Sie beispielsweise Felder fett auszeichnen oder unterstreichen."
#: 04070100.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "Fields are used to insert information about the current document, for example, file name, template, statistics, user data, date, and time."
-msgstr "Dokumentfelder dienen zum Einfügen von Inhalten, die sich direkt auf das aktuelle Dokument beziehen. Neben spezifischen Merkmalen des Dokuments, wie z. B. Dateiname, Dokumentvorlage und statistische Angaben, nehmen Dokumentfelder auch Benutzerdaten, Datum und Uhrzeit auf."
+msgstr "Dokumentfelder dienen zum Einfügen von Inhalten, die sich direkt auf das aktuelle Dokument beziehen. Neben spezifischen Merkmalen des Dokuments, beispielsweise den Dateinamen, die Dokumentvorlage und statistische Angaben, nehmen Dokumentfelder auch Benutzerdaten, Datum und Uhrzeit auf."
#: 04090001.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Wenn Sie für den Feldtyp \"Kapitel\" die Option \"Kapitelnummer ohne Trennzeichen\" auswählen, werden die unter <link href=\"text/swriter/01/06060000.xhp\" name=\"Extras - Kapitelnummerierung\"><emph>Extras - Kapitelnummerierung</emph></link> festgelegten Trennzeichen weggelassen."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"par_id3149881\n"
"help.text"
msgid "Inserts text if a certain <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link> is met. For example, enter \"sun eq 1\" in the <emph>Condition</emph> box, and then the text that you want to insert when the variable \"sun\" equals \"1\" in the <emph>Then </emph>box. If you want, you can also enter the text that you want to display when this condition is not met in the <emph>Else</emph> box. To define the variable \"sun\", click the <link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\"><emph>Variables</emph></link> tab, select \"Set variable\", type \"sun\" in the<emph> Name</emph> box, and its value in the<emph> Value</emph> box."
-msgstr "Fügt Text ein, wenn eine bestimmte <link href=\"text/swriter/01/04090200.xhp\" name=\"Bedingung\">Bedingung</link> erfüllt ist. Sie können z. B. im Feld <emph>Bedingung</emph> den Ausdruck \"sun eq 1\" und dann in das Feld <emph>Dann</emph> den Text eingeben, der eingefügt werden soll, wenn die Variable \"sun\" gleich \"1\" ist. Wenn Sie wollen, können Sie den Text, der angezeigt werden soll, wenn die Bedingung nicht erfüllt ist, in das Feld <emph>Sonst</emph> eingeben. Zur Definition der Variable \"sun\" klicken Sie auf das Register <link href=\"text/swriter/01/04090005.xhp\" name=\"Variablen\"><emph>Variablen</emph></link> und wählen \"Variable setzen\". Geben Sie in das Feld <emph>Name</emph> \"sun\" und in das Feld <emph>Wert</emph> den Wert ein."
+msgstr "Fügt Text ein, wenn eine bestimmte <link href=\"text/swriter/01/04090200.xhp\" name=\"Bedingung\">Bedingung</link> erfüllt ist. Sie können beispielsweise im Feld <emph>Bedingung</emph> den Ausdruck \"sun eq 1\" und dann in das Feld <emph>Dann</emph> den Text eingeben, der eingefügt werden soll, wenn die Variable \"sun\" gleich \"1\" ist. Wenn Sie wollen, können Sie den Text, der angezeigt werden soll, wenn die Bedingung nicht erfüllt ist, in das Feld <emph>Sonst</emph> eingeben. Zur Definition der Variable \"sun\" klicken Sie auf das Register <link href=\"text/swriter/01/04090005.xhp\" name=\"Variablen\"><emph>Variablen</emph></link> und wählen \"Variable setzen\". Geben Sie in das Feld <emph>Name</emph> \"sun\" und in das Feld <emph>Wert</emph> den Wert ein."
#: 04090003.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <emph>File - Properties</emph>."
-msgstr "Dokumentinfo-Feldbefehle enthalten Informationen zu Dokumenteneigenschaften, so z. B. dem Erstellungsdatum eines Dokuments. Um die Eigenschaften eines Dokuments anzuzeigen, wählen Sie <emph>Datei - Eigenschaften</emph>."
+msgstr "Dokumentinfo-Feldbefehle enthalten Informationen zu Dokumenteneigenschaften, beispielsweise dem Erstellungsdatum eines Dokuments. Um die Eigenschaften eines Dokuments anzuzeigen, wählen Sie <emph>Datei - Eigenschaften</emph>."
#: 04090004.xhp
msgctxt ""
@@ -7750,7 +7750,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "You can insert fields from any database, for example, address fields, into your document."
-msgstr "Sie können Felder aus beliebigen Datenbanken in Ihr Dokument einfügen, so z. B. Adressfelder."
+msgstr "Sie können Felder aus beliebigen Datenbanken in Ihr Dokument einfügen, beispielsweise Adressfelder."
#: 04090006.xhp
msgctxt ""
@@ -8094,7 +8094,7 @@ msgctxt ""
"par_id3149696\n"
"help.text"
msgid "For \"Date\" and \"Time\" fields, the TYPE parameter equals DATETIME. The format of the date or the time is specified by the SDNUM parameter, for example, DD:MM:YY for dates, or HH:MM:SS for time."
-msgstr "Für Felder des Typs \"Datum\" und \"Uhrzeit\" hat der Parameter TYPE den Wert DATETIME. Das Datums- oder Zeitformat wird vom Parameter SDNUM festgelegt, so z. B. TT:MM:JJ für Datumsangaben oder HH:MM:SS für Uhrzeiten."
+msgstr "Für Felder des Typs \"Datum\" und \"Uhrzeit\" hat der Parameter TYPE den Wert DATETIME. Das Datums- oder Zeitformat wird vom Parameter SDNUM festgelegt, beispielsweise TT:MM:JJ für Datumsangaben oder HH:MM:SS für Uhrzeiten."
#: 04090007.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id3147487\n"
"help.text"
msgid "For DocInformation fields, the TYPE parameter equals DOCINFO. The SUBTYPE parameter displays the specific field type, for example, for the \"Created\" DocInformation field, SUBTYPE=CREATE. For date and time DocInformation fields, the FORMAT parameter equals DATE or TIME, and the SDNUM parameter indicates the number format that is used. The SDFIXED parameter indicates if the content of the DocInformation field is fixed or not."
-msgstr "Für Felder des Typs \"Dokumentinfo\" hat der Parameter TYPE den Wert DOCINFO. Der Parameter SUBTYPE zeigt den genauen Feldtyp an, so z. B. SUBTYPE=CREATE für das Dokumentinfo-Feld \"Erzeugung\". Für Dokumentinfo-Felder mit Datums- und Zeitangabe hat der Parameter FORMAT den Wert DATE oder TIME und der Parameter SDNUM gibt das verwendete Zahlenformat an. Der Parameter SDFIXED gibt an, ob der Inhalt des Dokumentinfo-Felds fix ist oder nicht."
+msgstr "Für Felder des Typs \"Dokumentinfo\" hat der Parameter TYPE den Wert DOCINFO. Der Parameter SUBTYPE zeigt den genauen Feldtyp an, beispielsweise SUBTYPE=CREATE für das Dokumentinfo-Feld \"Erzeugung\". Für Dokumentinfo-Felder mit Datums- und Zeitangabe hat der Parameter FORMAT den Wert DATE oder TIME und der Parameter SDNUM gibt das verwendete Zahlenformat an. Der Parameter SDFIXED gibt an, ob der Inhalt des Dokumentinfo-Felds fix ist oder nicht."
#: 04090007.xhp
msgctxt ""
@@ -8542,7 +8542,7 @@ msgctxt ""
"par_id3155916\n"
"help.text"
msgid "You cannot use internal variables, such as page and chapter numbers, in condition expression."
-msgstr "Interne Variablen wie z. B. Seiten- oder Kapitelnummern können Sie in Bedingungsausdrücken nicht verwenden."
+msgstr "Interne Variablen, beispielsweise Seiten- oder Kapitelnummern, können Sie in Bedingungsausdrücken nicht verwenden."
#: 04090200.xhp
msgctxt ""
@@ -8958,7 +8958,7 @@ msgctxt ""
"par_id3150147\n"
"help.text"
msgid "For example, to hide a paragraph, text, or a section from a user with a specific initial, such as \"LM\", enter the condition: user_initials==\"LM\"."
-msgstr "Um beispielsweise einen Absatz, Text oder Bereich vor einem Benutzer mit bestimmten Initialen (z. B. \"LM\") zu verbergen, geben Sie folgende Bedingung ein: user_initials==\"LM\"."
+msgstr "Um beispielsweise einen Absatz, Text oder Bereich vor einem Benutzer mit bestimmten Initialen (beispielsweise \"LM\") zu verbergen, geben Sie folgende Bedingung ein: user_initials==\"LM\"."
#: 04090200.xhp
msgctxt ""
@@ -9118,7 +9118,7 @@ msgctxt ""
"par_id3153876\n"
"help.text"
msgid "When you refer to a database field in a condition, use the form Databasename.Tablename.Fieldname. If one of the names contains a character that is an operator, such as a minus sign (-), enclose the name in square brackets, for example, Databasename.[Table-name].Fieldname. Never use spaces inside field names."
-msgstr "Wenn Sie in einer Bedingung auf ein Datenbankfeld Bezug nehmen, verwenden Sie die Form Datenbankname.Tabellenname.Feldname. Wenn einer der Namen ein Operatorzeichen enthält, z. B. ein Minuszeichen (-), müssen Sie den Namen in eckige Klammern einschließen. Beispiel: Datenbankname.[Tabellen-Name].Feldname. Innerhalb von Feldnamen dürfen keine Leerzeichen verwendet werden."
+msgstr "Wenn Sie in einer Bedingung auf ein Datenbankfeld Bezug nehmen, verwenden Sie die Form Datenbankname.Tabellenname.Feldname. Wenn einer der Namen ein Operatorzeichen enthält, beispielsweise ein Minuszeichen (-), müssen Sie den Namen in eckige Klammern einschließen. Beispiel: Datenbankname.[Tabellen-Name].Feldname. Innerhalb von Feldnamen dürfen keine Leerzeichen verwendet werden."
#: 04090200.xhp
msgctxt ""
@@ -9134,7 +9134,7 @@ msgctxt ""
"par_id3150051\n"
"help.text"
msgid "You may want to create a condition that hides an empty field, for example, if the COMPANY field is empty for some of the data records."
-msgstr "Sie können eine Bedingung erstellen, die leere Felder verbirgt, z. B. wenn das Feld FIRMA für einige Datensätze keine Angaben enthält."
+msgstr "Sie können eine Bedingung erstellen, die leere Felder verbirgt, beispielsweise wenn das Feld FIRMA für einige Datensätze keine Angaben enthält."
#: 04090200.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Fügt die Kapitelnummer ein. Um eine Kapitelnummerierung einer Überschriftenvorlage zuzuweisen, wählen Sie <emph> Extras - Kapitelnummerierung</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -17670,7 +17670,7 @@ msgctxt ""
"par_id3149352\n"
"help.text"
msgid "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Opens a dialog where you can modify the properties of the selected object, for example, its size and name.</ahelp> </variable>"
-msgstr "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Öffnet einen Dialog, in dem Sie die Eigenschaften eines ausgewählten Objekts, z. B. seine Größe oder den Namen, ändern können.</ahelp> </variable>"
+msgstr "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Öffnet einen Dialog, in dem Sie die Eigenschaften eines ausgewählten Objekts, beispielsweise seine Größe oder den Namen, ändern können.</ahelp> </variable>"
#: 05080000.xhp
msgctxt ""
@@ -17702,7 +17702,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:TableDialog\">Specifies the properties of the selected table, for example, name, alignment, spacing, column width, borders, and background.</ahelp></variable>"
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:TableDialog\">Legt die Eigenschaften der ausgewählten Tabelle fest, z. B. Name, Ausrichtung, Abstände, Spaltenbreite, Umrandung und Hintergrund.</ahelp></variable>"
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:TableDialog\">Legt die Eigenschaften der ausgewählten Tabelle fest, beispielsweise Name, Ausrichtung, Abstände, Spaltenbreite, Umrandung und Hintergrund.</ahelp></variable>"
#: 05090100.xhp
msgctxt ""
@@ -19678,7 +19678,7 @@ msgctxt ""
"par_id3154647\n"
"help.text"
msgid "In <emph>Context</emph>, select the header entry and under <emph>Paragraph Styles</emph> select the style for the header in your business letter; for example, the default Paragraph Style \"Header\". You also can select your own style."
-msgstr "Unter <emph>Kontext</emph> wählen Sie nun den Eintrag Kopfzeile und im Listenfeld <emph>Absatzvorlagen</emph> die Vorlage, die für die Kopfzeile in Ihrem Geschäftsbrief gelten soll, also z. B. die vorgegebene Absatzvorlage \"Kopfzeile\". Natürlich können Sie hier auch eine selbstdefinierte Vorlage anwählen."
+msgstr "Unter <emph>Kontext</emph> wählen Sie nun den Eintrag Kopfzeile und im Listenfeld <emph>Absatzvorlagen</emph> die Vorlage, die für die Kopfzeile in Ihrem Geschäftsbrief gelten soll, beispielsweise die vorgegebene Absatzvorlage \"Kopfzeile\". Natürlich können Sie hier auch eine selbstdefinierte Vorlage anwählen."
#: 05130100.xhp
msgctxt ""
@@ -19942,7 +19942,7 @@ msgctxt ""
"par_id3149800\n"
"help.text"
msgid "<ahelp hid=\".\">Displays formatting styles for paragraphs.</ahelp> Use paragraph styles to apply the same <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"formatting\">formatting</link>, such as font, numbering, and layout to the paragraphs in your document."
-msgstr "<ahelp hid=\".\">Zeigt die Formatvorlagen für Absätze an.</ahelp> Verwenden Sie Absatzvorlagen, um den Absätzen in Ihrem Dokument eine einheitliche <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"Formatierung\">Formatierung</link> zu geben; dies umfasst z.B. die Schriftart, die Nummerierung und das Layout."
+msgstr "<ahelp hid=\".\">Zeigt die Formatvorlagen für Absätze an.</ahelp> Verwenden Sie Absatzvorlagen, um den Absätzen in Ihrem Dokument eine einheitliche <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"Formatierung\">Formatierung</link> zu geben; dies umfasst beispielsweise die Schriftart, die Nummerierung und das Layout."
#: 05140000.xhp
msgctxt ""
@@ -20014,7 +20014,7 @@ msgctxt ""
"par_id3147220\n"
"help.text"
msgid "<ahelp hid=\".\">Displays formatting styles for pages.</ahelp> Use page styles to determine page layouts, including the presence of headers and footers."
-msgstr "<ahelp hid=\".\">Zeigt die Formatvorlagen für Seiten an.</ahelp> Verwenden Sie Seitenvorlagen, um die Optionen für das Seitenlayout festzulegen, z.B. das Vorhandensein von Kopf- und Fußzeilen."
+msgstr "<ahelp hid=\".\">Zeigt die Formatvorlagen für Seiten an.</ahelp> Verwenden Sie Seitenvorlagen, um die Optionen für das Seitenlayout festzulegen, einschließlich das Vorhandensein von Kopf- und Fußzeilen."
#: 05140000.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitelnummerierung"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitelnummerierung"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Die Kapitelnummerierung ist mit den Absatzvorlagen verknüpft. Standardmäßig ist den \"Überschrift\"-Absatzvorlagen (1-10) die entsprechende Kapitelnummerierungs-Ebene (1-10) zugewiesen. Falls gewünscht, können Sie der jeweiligen Kapitelnummerierungs-Ebene andere Absatzvorlagen zuweisen."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Um Überschriften zu nummerieren, weisen Sie mit dem Menübefehl <emph>Extras - Kapitelnummerierung</emph> einer Absatzvorlage eine Nummerierung zu. Verwenden Sie nicht das Symbol \"Nummerierung\" auf der Symbolleiste Format."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Um die Anzeige der Kapitelnummern auf dem Bildschirm hervorzuheben, wählen Sie <emph>Ansicht - Feldhinterlegungen</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Speichert oder lädt ein Kapitelnummern-Format. Ein gespeichertes Kapitelnummern-Format ist für alle Textdokumente verfügbar.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Die Schaltfläche <emph>Format</emph> ist ausschließlich für die Kapitelnummerierung verfügbar. Bei Formatvorlagen für nummerierte Listen oder Listen mit Aufzählungszeichen ändern Sie die Listenvorlagen der Absätze."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Öffnet einen Dialog, in dem Sie die aktuellen Einstellungen für die ausgewählte Gliederungsebene speichern können. Sie können diese Einstellungen dann in einem anderen Dokument laden.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Klicken Sie auf die zu bearbeitende Gliederungsebene und geben Sie die für sie gewünschten Nummerierungsoptionen an.</ahelp> Wenn die Nummerierungsoptionen außer der Absatzvorlage auf alle Ebenen angewendet werden sollen, klicken Sie auf \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Wählen Sie die Absatzvorlage, die Sie der ausgewählten Gliederungsebene zuweisen möchten.</ahelp> Wenn Sie auf \"Keine\" klicken, wird die ausgewählte Gliederungsebene nicht definiert."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -22278,7 +22278,7 @@ msgctxt ""
"par_id3151091\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnotepage/conted\">Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". $[officename] Writer automatically inserts the number of the following page. </ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/footnotepage/conted\">Geben Sie den Text ein, der erscheinen soll, wenn die Fußnoten auf der nächsten Seite fortgesetzt werden, so z.B. \"Weiter auf Seite \". $[officename] Writer fügt automatisch die Nummer der nächsten Seite ein.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/footnotepage/conted\">Geben Sie den Text ein, der erscheinen soll, wenn die Fußnoten auf der nächsten Seite fortgesetzt werden, beispielsweise \"Weiter auf Seite \". $[officename] Writer fügt automatisch die Nummer der nächsten Seite ein.</ahelp>"
#: 06080100.xhp
msgctxt ""
@@ -22526,7 +22526,7 @@ msgctxt ""
"par_id3148388\n"
"help.text"
msgid "A separator, such as a tab, marks the column boundaries in the selected text. Each paragraph in the selection is converted into a row in the table. Similarly, when you convert a table into text, the column markers are changed to the character that you specify, and each row is converted into a separate paragraph."
-msgstr "Trennzeichen wie z. B. Tabulatoren legen die Spaltenunterteilung im ausgewählten Text fest. Jeder Absatz innerhalb der Auswahl wird in eine Tabellenzeile umgewandelt. Wenn Sie eine Tabelle in Text umwandeln, werden dementsprechend die Spaltenmarkierungen in das festgelegte Zeichen und jede Zeile in einen eigenen Absatz umgewandelt."
+msgstr "Trennzeichen, wie beispielsweise Tabulatoren, legen die Spaltenunterteilung im ausgewählten Text fest. Jeder Absatz innerhalb der Auswahl wird in eine Tabellenzeile umgewandelt. Wenn Sie eine Tabelle in Text umwandeln, werden dementsprechend die Spaltenmarkierungen in das festgelegte Zeichen und jede Zeile in einen eigenen Absatz umgewandelt."
#: 06090000.xhp
msgctxt ""
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id3154270\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/sortdialog/up3\">Sorts in ascending order, (for example, 1, 2, 3 or a, b, c).</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/sortdialog/up3\">Sortiert in aufsteigender Reihenfolge (z. B. 1, 2, 3 oder a, b, c).</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/sortdialog/up3\">Sortiert in aufsteigender Reihenfolge (beispielsweise 1, 2, 3 oder a, b, c).</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -23534,7 +23534,7 @@ msgctxt ""
"par_id3149501\n"
"help.text"
msgid "Updates items in the current document that have dynamic contents, so as fields and indexes."
-msgstr "Aktualisiert die Elemente im aktuellen Dokument, die dynamische Inhalte haben, so z. B. Feldbefehle und Verzeichnisse."
+msgstr "Aktualisiert die Elemente im aktuellen Dokument, die dynamische Inhalte haben, beispielsweise Feldbefehle und Verzeichnisse."
#: format_object.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Neuer Adressblock"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Neuer Adressblock"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adresselemente"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Adresselemente hierher ziehen"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25910,7 +25910,7 @@ msgctxt ""
"par_idN10651\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the country/region string that shall not be printed.</ahelp>"
-msgstr "<ahelp hid=\".\">Geben Sie die Land/Region-Zeichenfolge ein, die nicht gedruckt werden soll.</ahelp>"
+msgstr "<ahelp hid=\".\">Geben Sie die Land/Region-Zeichenkette ein, die nicht gedruckt werden soll.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index 84eab4d6d41..472b4d9bc0e 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/helpcontent2/source/text/swriter/guide.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2017-06-06 17:37+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-15 03:54+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496770648.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497498868.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Sie können Überschriften und untergeordneten Text mit dem Navigator im Dokument nach oben oder unten verschieben. Ebenso können Sie Überschriftenebenen in der Hierarchie nach oben oder unten bewegen. Um diese Funktion zu nutzen, formatieren Sie die Überschriften in Ihrem Dokument mit einer der vordefinierten Absatzvorlagen für Überschriften. Um eine benutzerdefinierte Absatzvorlage für eine Überschrift zu verwenden, wählen Sie <emph>Extras - Kapitelnummerierung</emph>, wählen die Vorlage im Feld <emph>Absatzvorlage</emph> aus und doppelklicken dann auf eine Nummer in der Liste <emph>Ebene</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3147773\n"
"help.text"
msgid "Type 1., i., or I. to start a numbered list. Type * or - to start a bulleted list. You can also type a right parenthesis after the number instead of a period , for example, 1) or i)."
-msgstr "Um eine nummerierte Liste zu beginnen, geben Sie 1., i. oder I. ein. Um eine Aufzählungsliste zu beginnen, geben Sie * oder - ein. Nach der Zahl können Sie statt dem Punkt auch eine Schlussklammer eingeben, also z. B. 1) oder i)."
+msgstr "Um eine nummerierte Liste zu beginnen, geben Sie 1., i. oder I. ein. Um eine Aufzählungsliste zu beginnen, geben Sie * oder - ein. Nach der Zahl können Sie statt dem Punkt auch eine Schlussklammer eingeben, beispielsweise 1) oder i)."
#: auto_numbering.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3156366\n"
"help.text"
msgid "If your text already contains a formula, for example \"12+24*2\", $[officename] can calculate, and then paste the result of the formula in your document, without using the <emph>Formula Bar</emph>."
-msgstr "Wenn Ihr Text bereits eine Formel wie z. B. \"12+24*2\" enthält, kann $[officename] das Ergebnis berechnen und in Ihr Dokument einfügen, ohne dass Sie hierfür die <emph>Formelleiste</emph> verwenden müssen."
+msgstr "Wenn Ihr Text bereits eine Formel wie beispielsweise \"12+24*2\" enthält, kann $[officename] das Ergebnis berechnen und in Ihr Dokument einfügen, ohne dass Sie hierfür die <emph>Formelleiste</emph> verwenden müssen."
#: calculate_clipboard.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitelnummerierung"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>Gliederungen; Nummerierung</bookmark_value> <bookmark_value>Löschen; Überschriftennummerierungen</bookmark_value> <bookmark_value>Kapitelnummerierung</bookmark_value> <bookmark_value>Überschriften; Nummerierungs-/Absatzvorlagen</bookmark_value> <bookmark_value>Nummerierung; Überschriften</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Kapitelnummerierung\">Kapitelnummerierung</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Sie können die Überschriftenhierarchie ändern oder benutzerdefinierten Absatzvorlagen eine Hierarchieebene zuweisen. Ebenso können Sie Absatzvorlagen für Überschriften mit einer Kapitel- und Bereichsnummerierung versehen. Standardmäßig befindet sich die Absatzvorlage \"Überschrift 1\" in der Gliederungshierarchie ganz oben."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Wählen Sie <item type=\"menuitem\">Extras - Kapitelnummerierung...</item> und klicken Sie auf das Register <item type=\"menuitem\">Nummerierung</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "So entfernen Sie die automatische Kapitelnummerierung von einem Absatz:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Wählen Sie <item type=\"menuitem\">Extras - Kapitelnummerierung...</item> und klicken Sie auf das Register <item type=\"menuitem\">Nummerierung</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -3102,7 +3102,7 @@ msgctxt ""
"par_id3147784\n"
"help.text"
msgid "Type a name for the variable in the <item type=\"menuitem\">Name</item> box, for example <item type=\"literal\">Reminder</item>."
-msgstr "Geben Sie in das Eingabefeld <item type=\"menuitem\">Name</item> den Namen für die Variable ein, z.B. <item type=\"literal\">Erinnerung</item>."
+msgstr "Geben Sie in das Eingabefeld <item type=\"menuitem\">Name</item> den Namen für die Variable ein, beispielsweise <item type=\"literal\">Erinnerung</item>."
#: conditional_text.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3154246\n"
"help.text"
msgid "Fields are used for data that changes in a document, such as the current date or the total number of pages in a document."
-msgstr "Felder (Feldbefehle) werden für Daten in einem Dokument verwendet, die sich ändern können, so z. B. das aktuelle Datum oder die Gesamtseitenzahl."
+msgstr "Felder (Feldbefehle) werden für Daten in einem Dokument verwendet, die sich ändern können, beispielsweise das aktuelle Datum oder die Gesamtseitenzahl."
#: fields.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id8230842\n"
"help.text"
msgid "You can easily insert a page number field in the footer of your document. You can also add a page count to the footer, for example, in the form \"Page 9 of 12\""
-msgstr "Sie können in der Fußzeile Ihres Dokumentes schnell ein Feld für die Seitenzahl einfügen. Sie können auch die Seitenanzahl hinzufügen, z. B. in der Form \"Seite 9 von 12\"."
+msgstr "Sie können in der Fußzeile Ihres Dokumentes schnell ein Feld für die Seitenzahl einfügen. Sie können auch die Seitenanzahl hinzufügen, beispielsweise in der Form \"Seite 9 von 12\"."
#: footer_pagenumber.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id3149806\n"
"help.text"
msgid "A master document lets you manage large documents, such as a book with many chapters. The master document can be seen as a container for individual <item type=\"productname\">%PRODUCTNAME</item> Writer files. The individual files are called subdocuments."
-msgstr "Mit einem Globaldokument können Sie umfangreiche Dokumente verwalten, z. B. ein Buch mit mehreren Kapiteln. Sie können ein Globaldokument als einen Container für einzelne <item type=\"productname\">%PRODUCTNAME</item>-Writer-Dateien betrachten. Die einzelnen Dateien werden als Unterdokumente bezeichnet."
+msgstr "Mit einem Globaldokument können Sie umfangreiche Dokumente verwalten, beispielsweise ein Buch mit mehreren Kapiteln. Sie können ein Globaldokument als einen Container für einzelne <item type=\"productname\">%PRODUCTNAME</item> Writer-Dateien betrachten. Die einzelnen Dateien werden als Unterdokumente bezeichnet."
#: globaldoc.xhp
msgctxt ""
@@ -5558,7 +5558,7 @@ msgctxt ""
"par_id1522873\n"
"help.text"
msgid "A master document lets you manage large documents, such as a book with many chapters. The master document can be seen as a container for individual <item type=\"productname\">%PRODUCTNAME</item> Writer files. The individual files are called subdocuments."
-msgstr "Mit einem Globaldokument können Sie umfangreiche Dokumente verwalten, z. B. ein Buch mit mehreren Kapiteln. Sie können ein Globaldokument als einen Container für einzelne <item type=\"productname\">%PRODUCTNAME</item>-Writer-Dateien betrachten. Die einzelnen Dateien werden als Unterdokumente bezeichnet."
+msgstr "Mit einem Globaldokument können Sie umfangreiche Dokumente verwalten, beispielsweise ein Buch mit mehreren Kapiteln. Sie können ein Globaldokument als einen Container für einzelne <item type=\"productname\">%PRODUCTNAME</item> Writer-Dateien betrachten. Die einzelnen Dateien werden als Unterdokumente bezeichnet."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Bevor Sie Kapitelangaben in eine Kopf- oder Fußzeile einfügen können, müssen Sie die Optionen zur Kapitelnummerierung für die Absatzvorlage festlegen, die Sie für Kapitelüberschriften verwenden möchten."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Wählen Sie <emph>Extras - Kapitelnummerierung...</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6382,7 +6382,7 @@ msgctxt ""
"par_id3149620\n"
"help.text"
msgid "Type a name for the variable in the <item type=\"menuitem\">Name</item> box, for example, <item type=\"literal\">Hide</item>."
-msgstr "Geben Sie einen Namen für die Variable in das Eingabefeld <item type=\"menuitem\">Name</item> ein, z. B. <item type=\"literal\">Versteckt</item>."
+msgstr "Geben Sie einen Namen für die Variable in das Eingabefeld <item type=\"menuitem\">Name</item> ein, beispielsweise <item type=\"literal\">Versteckt</item>."
#: hidden_text.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3149869\n"
"help.text"
msgid "Enter a value for the variable in the <item type=\"menuitem\">Value</item> box, for example, <item type=\"literal\">1</item>."
-msgstr "Geben Sie einen Wert für die Variable in das Eingabefeld <item type=\"menuitem\">Wert</item> ein, z. B. <item type=\"literal\">1</item>."
+msgstr "Geben Sie einen Wert für die Variable in das Eingabefeld <item type=\"menuitem\">Wert</item> ein, beispielsweise <item type=\"literal\">1</item>."
#: hidden_text.xhp
msgctxt ""
@@ -6966,7 +6966,7 @@ msgctxt ""
"par_id2136295\n"
"help.text"
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
-msgstr "Die Einzüge hängen von der Schreibrichtung ab. Beachten Sie z. B. den Einzugswert in <item type=\"menuitem\">Vor Text</item> bei von links nach rechts verlaufenden Sprachen. Der linke Rand des Absatzes wird vom linken Seitenrand aus eingerückt. Bei von rechts nach links verlaufenden Sprachen wird der rechte Rand des Absatzes vom rechten Seitenrand aus eingerückt."
+msgstr "Die Einzüge hängen von der Schreibrichtung ab. Schauen Sie beispielsweise auf den Einzugswert in <item type=\"menuitem\">Vor Text</item> bei von links nach rechts verlaufenden Sprachen. Der linke Rand des Absatzes wird vom linken Seitenrand aus eingerückt. Bei von rechts nach links verlaufenden Sprachen wird der rechte Rand des Absatzes vom rechten Seitenrand aus eingerückt."
#: indenting.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>Verzeichnisse; Einträge definieren</bookmark_value> <bookmark_value>Inhaltsverzeichnisse; Einträge definieren</bookmark_value> <bookmark_value>Einträge; in Verzeichnissen/Inhaltsverzeichnissen definieren</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Wählen Sie <emph>Einfügen - Verzeichnis - Verzeichniseintrag...</emph> und führen Sie einen der folgenden Schritte durch:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7198,7 +7198,7 @@ msgctxt ""
"par_id3147132\n"
"help.text"
msgid "The best way to generate a table of contents is to apply the predefined heading paragraph styles, such as \"Heading 1\", to the paragraphs that you want to include in your table of contents."
-msgstr "Ein Inhaltsverzeichnis erzeugen Sie am besten, indem Sie den Absätzen, die im Inhaltsverzeichnis erscheinen sollen, die vordefinierten Absatzvorlagen für Überschriften (wie z. B. \"Überschrift 1\") zuweisen."
+msgstr "Ein Inhaltsverzeichnis erzeugen Sie am besten, indem Sie den Absätzen, die im Inhaltsverzeichnis erscheinen sollen, die vordefinierten Absatzvorlagen für Überschriften (beispielsweise \"Überschrift 1\") zuweisen."
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Wählen Sie <emph>Extras - Kapitelnummerierung...</emph> und das Register <emph>Nummerierung</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7694,7 +7694,7 @@ msgctxt ""
"par_id6367076\n"
"help.text"
msgid "Some external tools exist that can interact with %PRODUCTNAME. One example is called <link href=\"http://bibus-biblio.sourceforge.net/wiki/index.php/Main_Page\">Bibus</link>."
-msgstr "Es gibt verschiedene externe Programme die in %PRODUCTNAME eingebunden werden können, z. B. <link href=\"http://bibus-biblio.sourceforge.net/wiki/index.php/Main_Page\">Bibus</link>."
+msgstr "Es gibt verschiedene externe Programme die in %PRODUCTNAME eingebunden werden können, beispielsweise <link href=\"http://bibus-biblio.sourceforge.net/wiki/index.php/Main_Page\">Bibus</link>."
#: indices_multidoc.xhp
msgctxt ""
@@ -7782,7 +7782,7 @@ msgctxt ""
"par_id3150942\n"
"help.text"
msgid "The best way to generate a table of contents is to apply the predefined heading paragraph styles, such as \"Heading 1\", to the paragraphs that you want to include in your table of contents. After you apply these styles, you can then create a table of contents."
-msgstr "Ein Inhaltsverzeichnis erzeugen Sie am besten, indem Sie den Absätzen, die im Inhaltsverzeichnis erscheinen sollen, die vordefinierten Absatzvorlagen für Überschriften (wie z.B. \"Überschrift 1\") zuweisen. Nachdem Sie diese Vorlagen zugewiesen haben, können Sie das Inhaltsverzeichnis erzeugen."
+msgstr "Ein Inhaltsverzeichnis erzeugen Sie am besten, indem Sie den Absätzen, die im Inhaltsverzeichnis erscheinen sollen, die vordefinierten Absatzvorlagen für Überschriften (beispielsweise \"Überschrift 1\") zuweisen. Nachdem Sie diese Vorlagen zugewiesen haben, können Sie das Inhaltsverzeichnis erzeugen."
#: indices_toc.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Wenn Sie eine abweichende Absatzvorlage für das Inhaltsverzeichnis verwenden möchten, aktivieren Sie im Bereich <item type=\"menuitem\">Erzeugen aus</item> das Feld <item type=\"menuitem\">Weitere Vorlagen</item> und klicken anschließend auf die Schaltfläche <item type=\"menuitem\">Vorlage zuweisen...</item>. Im Dialog <item type=\"menuitem\">Vorlagen zuweisen</item> klicken Sie auf die Vorlage in der Liste und anschließend auf die Schaltfläche <item type=\"menuitem\">>></item> oder <item type=\"menuitem\"><<</item>, um die Gliederungsebene für die Absatzvorlage festzulegen."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Wenn Sie eine abweichende Absatzvorlage für das Verzeichnis verwenden möchten, aktivieren Sie die Option <item type=\"menuitem\">Weitere Vorlagen</item> und klicken auf die Schaltfläche <item type=\"menuitem\">Vorlagen zuweisen...</item> neben dem Feld. Klicken Sie auf die Vorlage in der Liste und dann auf die Schaltfläche <item type=\"menuitem\">>></item> oder <item type=\"menuitem\"><<</item>, um die Gliederungsebene für die Absatzvorlage festzulegen."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9142,7 +9142,7 @@ msgctxt ""
"par_id3155918\n"
"help.text"
msgid "You can automatically number similar items, such as quotations, in your document."
-msgstr "Gleiche Elemente wie z. B. Zitate können Sie in Ihrem Dokument automatisch nummerieren lassen."
+msgstr "Gleiche Elemente, wie beispielsweise Zitate, können Sie in Ihrem Dokument automatisch nummerieren lassen."
#: number_sequence.xhp
msgctxt ""
@@ -9150,7 +9150,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "Type the text that you want to assign numbering to, for example, \"Quotation Number \"."
-msgstr "Geben Sie den Text ein, den Sie nummerieren lassen möchten, z. B. \"Zitat Nr. \"."
+msgstr "Geben Sie den Text ein, den Sie nummerieren lassen möchten, beispielsweise \"Zitat Nr. \"."
#: number_sequence.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>Nummerierung; entfernen/unterbrechen</bookmark_value> <bookmark_value>Aufzählungslisten; unterbrechen</bookmark_value> <bookmark_value>Listen;Nummerierung entfernen/unterbrechen</bookmark_value> <bookmark_value>Löschen;Nummern in Listen</bookmark_value> <bookmark_value>Unterbrechen nummerierter Listen</bookmark_value> <bookmark_value>Ändern;Anfangsnummern in Listen</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Für nummerierte Überschriften weisen Sie mit dem Menübefehl <emph>Extras - Kapitelnummerierung</emph> einer Absatzvorlage eine Nummerierung zu. Verwenden Sie nicht das Symbol \"Nummerierung an/aus\" auf der Symbolleiste \"Format\"."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -12798,7 +12798,7 @@ msgctxt ""
"par_id3155868\n"
"help.text"
msgid "Apply one of the default $[officename] heading paragraph styles, for example, \"Heading 1\", to the paragraphs where you want to generate a new HTML page."
-msgstr "Weisen Sie den Absätzen, an denen Sie eine neue HTML-Seite beginnen lassen möchten, eine der $[officename]-Standardabsatzvorlagen für Überschriften zu, z. B. \"Überschrift 1\"."
+msgstr "Weisen Sie den Absätzen, an denen Sie eine neue HTML-Seite beginnen lassen möchten, eine der $[officename]-Standardabsatzvorlagen für Überschriften zu, beispielsweise \"Überschrift 1\"."
#: send2html.xhp
msgctxt ""
@@ -13230,7 +13230,7 @@ msgctxt ""
"par_id3155855\n"
"help.text"
msgid "You can quickly apply styles, such as paragraph and character styles, in your document by using the Fill Format Mode in the Styles and Formatting window."
-msgstr "Sie können Vorlagen wie z. B. Absatz- und Zeichenvorlagen in Ihrem Dokument schnell anwenden, indem Sie den Gießkannenmodus in den Formatvorlagen verwenden."
+msgstr "Sie können Vorlagen, wie beispielsweise Absatz- und Zeichenvorlagen, in Ihrem Dokument schnell anwenden, indem Sie den Gießkannenmodus in den Formatvorlagen verwenden."
#: stylist_fillformat.xhp
msgctxt ""
@@ -13334,7 +13334,7 @@ msgctxt ""
"par_id3153119\n"
"help.text"
msgid "Click in the document where you want to copy the style from, for example, in a paragraph that you applied manual formatting to."
-msgstr "Klicken Sie im Dokument an die Stelle, aus der die Vorlage erstellt werden soll, z. B. in einen manuell formatierten Absatz."
+msgstr "Klicken Sie im Dokument an die Stelle, aus der die Vorlage erstellt werden soll, beispielsweise in einen manuell formatierten Absatz."
#: stylist_fromselect.xhp
msgctxt ""
@@ -13470,7 +13470,7 @@ msgctxt ""
"par_id3149283\n"
"help.text"
msgid "In the document, click from where you want to copy the updated style. For example, click a paragraph to which you applied some manual formatting that you want to copy now."
-msgstr "Klicken Sie im Dokument an die Stelle, von der Sie die Formatvorlage aktualisieren wollen. Beispiel: Klicken Sie auf einen Absatz, auf den Sie manuelle Formatierung angewendet haben, die Sie nun in die Absatzvorlage kopieren wollen."
+msgstr "Klicken Sie im Dokument an die Stelle, von der Sie die Formatvorlage aktualisieren wollen. Klicken Sie beislpielsweise auf einen Absatz, auf den Sie manuelle Formatierung angewendet haben, die Sie nun in die Absatzvorlage kopieren wollen."
#: stylist_update.xhp
msgctxt ""
@@ -14758,7 +14758,7 @@ msgctxt ""
"par_id3149974\n"
"help.text"
msgid "$[officename] has a number of <link href=\"text/swriter/01/05130000.xhp\" name=\"predefined templates\">predefined templates</link> that you can use to create different types or text documents, such as business letters."
-msgstr "$[officename] verfügt über eine Reihe <link href=\"text/swriter/01/05130000.xhp\" name=\"vordefinierter Dokumentvorlagen\">vordefinierter Dokumentvorlagen</link>, die Sie für verschiedene Arten von Textdokumenten verwenden können, z. B. für Geschäftsbriefe."
+msgstr "$[officename] verfügt über eine Reihe <link href=\"text/swriter/01/05130000.xhp\" name=\"vordefinierter Dokumentvorlagen\">vordefinierter Dokumentvorlagen</link>, die Sie für verschiedene Arten von Textdokumenten verwenden können, beispielsweise für Geschäftsbriefe."
#: text_animation.xhp
msgctxt ""
@@ -15150,7 +15150,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "Here are a few examples of how to emphasize text in a document:"
-msgstr "Um Text in einem Dokument hervorzuheben, können Sie z. B. wie folgt vorgehen:"
+msgstr "Um Text in einem Dokument hervorzuheben, können Sie beispielsweise wie folgt vorgehen:"
#: text_emphasize.xhp
msgctxt ""
@@ -15158,7 +15158,7 @@ msgctxt ""
"par_id3147412\n"
"help.text"
msgid "Select the text and apply a different font style or effect, such as <emph>bold</emph>."
-msgstr "Wählen Sie den Text aus und weisen Sie ihm einen anderen Schriftstil oder eine andere Auszeichnung zu, z. B. <emph>fett</emph>."
+msgstr "Wählen Sie den Text aus und weisen Sie ihm einen anderen Schriftstil oder eine andere Auszeichnung zu, beispielsweise <emph>fett</emph>."
#: text_emphasize.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/librelogo.po b/source/de/helpcontent2/source/text/swriter/librelogo.po
index f1cdc34e701..199f346cd51 100644
--- a/source/de/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/de/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-07 21:39+0200\n"
-"PO-Revision-Date: 2017-05-28 05:13+0000\n"
+"PO-Revision-Date: 2017-06-18 02:39+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495948417.000000\n"
+"X-POOTLE-MTIME: 1497753598.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_450\n"
"help.text"
msgid "LibreLogo is an easily localizable, Logo-like programming language, localized in several languages by LibreOffice native language communities. It is back-compatible with the older Logo systems in the case of the simple Logo programs used in education, eg."
-msgstr "LibreLogo ist eine leicht zu lokalisierende, Logo-artige Programmiersprache und durch die LibreOffice-Community bereits in diverse Sprachen übersetzt. Es ist abwärtskompatibel zum älteren Logo-System, z.B. um es in der Bildung als einfache Programmiersprache zu verwenden."
+msgstr "LibreLogo ist eine leicht zu lokalisierende, Logo-artige Programmiersprache und durch die LibreOffice-Community bereits in diverse Sprachen übersetzt. Es ist abwärtskompatibel zum älteren Logo-System, beispielsweise um es in der Bildung als einfache Programmiersprache zu verwenden."
#: LibreLogo.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_560\n"
"help.text"
msgid "String notation supports also orthographical and Python syntax."
-msgstr "Zeichenfolgen können auch in Anführungszeichen oder in Python-Schreibweise notiert werden."
+msgstr "Zeichenketten können auch in Anführungszeichen oder in Python-Schreibweise notiert werden."
#: LibreLogo.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_580\n"
"help.text"
msgid "Python list and string handling"
-msgstr "Handhabung von Python-Listen und -Zeichenfolgen"
+msgstr "Handhabung von Python-Listen und -Zeichenketten"
#: LibreLogo.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_1750\n"
"help.text"
msgid "Loop for the characters of a character sequence:"
-msgstr "Schleife für Buchstaben in einer Zeichenfolge:"
+msgstr "Schleife für Buchstaben in einer Zeichenkette:"
#: LibreLogo.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_1970\n"
"help.text"
msgid "TO randomletter<br/> OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”<br/> END<br/> <br/> PRINT randomletter + randomletter + randomletter ; print 3-letter random character sequence<br/>"
-msgstr "ZU Zufallsbuchstabe<br/> RÜCKGABE ZUFÄLLIG „qwertzuiopasdfghjklyxcvbnm“<br/> ENDE<br/> <br/> AUSGABE Zufallsbuchstabe + Zufallsbuchstabe + Zufallsbuchstabe ; Gibt eine Zeichenfolge aus 3 zufälligen Buchstaben zurück<br/>"
+msgstr "ZU Zufallsbuchstabe<br/> RÜCKGABE ZUFÄLLIG „qwertzuiopasdfghjklyxcvbnm“<br/> ENDE<br/> <br/> AUSGABE Zufallsbuchstabe + Zufallsbuchstabe + Zufallsbuchstabe ; Gibt eine Zeichenkette aus 3 zufälligen Buchstaben zurück<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"par_2270\n"
"help.text"
msgid "PRINT RANDOM 100 ; random float number (0 <= x < 100)<br/> PRINT RANDOM “text” ; random letter of the “text”<br/> PRINT RANDOM [1, 2] ; random list element (1 or 2)<br/>"
-msgstr "AUSGABE ZUFÄLLIG 100 ; Zufallszahl (0 <= x <= 100)<br/> AUSGABE ZUFÄLLIG „Text“ ; Gibt zufällig einen Buchstaben aus der Zeichenfolge \"Text\" zurück<br/> AUSGABE ZUFÄLLIG [1, 2] ; Zufälliges Element aus der Liste (1 oder 2)"
+msgstr "AUSGABE ZUFÄLLIG 100 ; Zufallszahl (0 <= x <= 100)<br/> AUSGABE ZUFÄLLIG „Text“ ; Gibt zufällig einen Buchstaben aus der Zeichenkette \"Text\" zurück<br/> AUSGABE ZUFÄLLIG [1, 2] ; Zufälliges Element aus der Liste (1 oder 2)"
#: LibreLogo.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_2330\n"
"help.text"
msgid "; convert the number parameter to string<br/> PRINT “Result: ” + STR 5 ; print “Result: 5”<br/> PRINT 10 * STR 5 ; print 5555555555<br/>"
-msgstr "; Wandelt eine Zahl in eine Zeichenfolge um<br/> AUSGABE „Ergebnis: “ + ZEICHEN 5 ; Gibt \"Ergebnis: 5\" zurück<br/> AUSGABE 10 * ZEICHEN 5 ; Gibt 5555555555 zurück<br/>"
+msgstr "; Wandelt eine Zahl in eine Zeichenkette um<br/> AUSGABE „Ergebnis: “ + ZEICHEN 5 ; Gibt \"Ergebnis: 5\" zurück<br/> AUSGABE 10 * ZEICHEN 5 ; Gibt 5555555555 zurück<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_2590\n"
"help.text"
msgid "Substitute character sequences using regex (regular expression) patterns."
-msgstr "Ersetzt eine Zeichenfolge mittels regex-Mustern (reguläre Ausdrücke)."
+msgstr "Ersetzt eine Zeichenkette mittels regex-Mustern (reguläre Ausdrücke)."
#: LibreLogo.xhp
msgctxt ""
@@ -2126,7 +2126,7 @@ msgctxt ""
"par_2620\n"
"help.text"
msgid "Search character sequences patterns using regex patterns."
-msgstr "Sucht nach einer Zeichenfolge mittels regex-Mustern."
+msgstr "Sucht nach einer Zeichenkette mittels regex-Mustern."
#: LibreLogo.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"par_2650\n"
"help.text"
msgid "Find all character sequences in the input string matching the given regex pattern."
-msgstr "Findet alle Zeichenfolgen innerhalb der Eingabezeichenfolge, die dem angegebenen regex-Muster entsprechen."
+msgstr "Findet alle Zeichenketten innerhalb der Eingabezeichenkette, die dem angegebenen regex-Muster entsprechen."
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index 5b82d5f9c67..ae897914d7f 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-26 06:25+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-18 03:32+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495779932.000000\n"
+"X-POOTLE-MTIME: 1497756738.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Themesauswahl"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show All Comments"
-msgstr "Alle Kommentare anzeigen"
+msgstr "Alle Kommentare einblenden"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Einfügen..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Folienmaster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Noti~zenmaster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Notiz~en"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Symbolleisten~-Ansichten"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "~Handzettelmaster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Folienberei~ch"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -15782,7 +15899,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Search Formatted Display String"
-msgstr "Nach formatierten Zeichenfolgen suchen"
+msgstr "Nach formatierten Zeichenketten suchen"
#: GenericCommands.xcu
msgctxt ""
@@ -20293,7 +20410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Feedback..."
-msgstr "~Fehler melden (Englisch)"
+msgstr "~Rückmeldung geben..."
#: GenericCommands.xcu
msgctxt ""
@@ -20806,7 +20923,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Design Mode"
-msgstr "Designmodus umschalten"
+msgstr "Entwurfsmodus umschalten"
#: GenericCommands.xcu
msgctxt ""
@@ -20815,7 +20932,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Design Mode"
-msgstr "Designmodus ~umschalten"
+msgstr "Entwurfsmodus"
#: GenericCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Registerleiste~ Ansichten"
#: GenericCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Eigenscha~ften..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Ob~jekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Überschriftenzeilen beim Seitenumbruch ~wiederholen"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "~Zeilenumbruch an Seitenenden"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Aufzählung"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Nummerierung"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Römische Nummerierung"
#: WriterCommands.xcu
msgctxt ""
@@ -31678,7 +31786,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting (Styles)"
-msgstr "Formatierung (Vorlagen)"
+msgstr "Formatierungen (Formatvorlagen)"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/de/sc/source/ui/src.po b/source/de/sc/source/ui/src.po
index 919c1d4c1a1..1f929a4e16d 100644
--- a/source/de/sc/source/ui/src.po
+++ b/source/de/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-13 04:04+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-18 03:32+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494648245.000000\n"
+"X-POOTLE-MTIME: 1497756755.000000\n"
#: globstr.src
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"STR_UNDO_SHOWALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Show All Comments"
-msgstr "Alle Kommentare anzeigen"
+msgstr "Alle Kommentare einblenden"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Bereich von #1 nach #2 verschoben"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Mit dieser Aktion wird die Aufzeichnung von Änderungen beendet.\n"
-"Jegliche Information über Änderungen geht hierdurch verloren.\n"
-"\n"
-"Aufzeichnung beenden?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Verschachtelte Matrizen werden nicht unterstützt."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Text in Spalten"
+msgstr ""
#: globstr.src
msgctxt ""
@@ -3818,7 +3813,7 @@ msgctxt ""
"STR_UNQUOTED_STRING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Strings without quotes are interpreted as column/row labels."
-msgstr "Zeichenfolgen ohne Anführungszeichen werden als Spalten-/Zeilenbeschriftungen interpretiert."
+msgstr "Zeichenketten ohne Anführungszeichen werden als Spalten-/Zeilenbeschriftungen interpretiert."
#: globstr.src
msgctxt ""
@@ -5018,7 +5013,7 @@ msgctxt ""
"Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday.\n"
"itemlist.text"
msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."
-msgstr "Optionale Zahl oder Zeichenfolge, die festlegt, wann Wochenendtage liegen. Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
+msgstr "Optionale Zahl oder Zeichenkette, die festlegt, wann Wochenendtage liegen. Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
#: scfuncs.src
msgctxt ""
@@ -5099,7 +5094,7 @@ msgctxt ""
"Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday.\n"
"itemlist.text"
msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."
-msgstr "Optionale Zahl oder Zeichenfolge, die festlegt, wann Wochenendtage liegen. Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
+msgstr "Optionale Zahl oder Zeichenkette, die festlegt, wann Wochenendtage liegen. Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
#: scfuncs.src
msgctxt ""
@@ -22610,7 +22605,7 @@ msgctxt ""
"String containing a valid XML stream\n"
"itemlist.text"
msgid "String containing a valid XML stream"
-msgstr "Zeichenfolge, die einen gültigen XML-Strom enthält"
+msgstr "Zeichenkette, die einen gültigen XML-Strom enthält"
#: scfuncs.src
msgctxt ""
@@ -22628,7 +22623,7 @@ msgctxt ""
"String containing a valid XPath expression\n"
"itemlist.text"
msgid "String containing a valid XPath expression"
-msgstr "Zeichenfolge, die einen gültigen XPath-Ausdruck enthält"
+msgstr "Zeichenkette, die einen gültigen XPath-Ausdruck enthält"
#: scfuncs.src
msgctxt ""
diff --git a/source/de/sc/uiconfig/scalc/ui.po b/source/de/sc/uiconfig/scalc/ui.po
index b32aa73916f..5968b28a38f 100644
--- a/source/de/sc/uiconfig/scalc/ui.po
+++ b/source/de/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-20 12:37+0000\n"
+"PO-Revision-Date: 2017-06-12 03:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495283858.000000\n"
+"X-POOTLE-MTIME: 1497239145.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -4187,7 +4187,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reference syntax for string reference:"
-msgstr "Bezüge-Syntax für Zeichenfolge-Bezüge:"
+msgstr "Bezügesyntax für Zeichenkettenbezug:"
#: formulacalculationoptions.ui
msgctxt ""
@@ -9056,7 +9056,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Expand _references when new columns/rows are inserted"
-msgstr "_Bezüge beim Einfügen von Spalten-/Zeilen an deren Rändern ausdehnen"
+msgstr "_Bezüge beim Einfügen von Spalten/Zeilen an deren Rändern ausdehnen"
#: scgeneralpage.ui
msgctxt ""
diff --git a/source/de/sd/source/ui/app.po b/source/de/sd/source/ui/app.po
index 219a186c47b..a0ee6977756 100644
--- a/source/de/sd/source/ui/app.po
+++ b/source/de/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-30 03:48+0000\n"
+"PO-Revision-Date: 2017-06-18 04:08+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496116126.000000\n"
+"X-POOTLE-MTIME: 1497758888.000000\n"
#: res_bmp.src
msgctxt ""
@@ -576,7 +576,7 @@ msgctxt ""
"STR_UNDO_COPYOBJECTS\n"
"string.text"
msgid "Duplicate"
-msgstr "Duplizieren"
+msgstr "Vervielfältigen"
#: strings.src
msgctxt ""
diff --git a/source/de/sd/uiconfig/sdraw/ui.po b/source/de/sd/uiconfig/sdraw/ui.po
index 2235d509c04..d2c81cb6a95 100644
--- a/source/de/sd/uiconfig/sdraw/ui.po
+++ b/source/de/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-15 03:51+0000\n"
+"PO-Revision-Date: 2017-06-18 04:08+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492228280.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497758897.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Duplicate"
-msgstr "Duplizieren"
+msgstr "Vervielfältigen"
#: copydlg.ui
msgctxt ""
diff --git a/source/de/sfx2/source/view.po b/source/de/sfx2/source/view.po
index 2eda46c4f2e..2dfeefb933f 100644
--- a/source/de/sfx2/source/view.po
+++ b/source/de/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-10 03:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494387915.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Dieses Dokument hat eine ungültige Signatur."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/de/sfx2/uiconfig/ui.po b/source/de/sfx2/uiconfig/ui.po
index d638ac8cd54..79be9393392 100644
--- a/source/de/sfx2/uiconfig/ui.po
+++ b/source/de/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-25 06:15+0000\n"
+"PO-Revision-Date: 2017-06-10 04:01+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493100908.000000\n"
+"X-POOTLE-MTIME: 1497067272.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -1724,7 +1724,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Templates"
-msgstr "Vorlagen verwalten"
+msgstr "Vorlagen verwalten..."
#: startcenter.ui
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Templates"
-msgstr "Vorlagen"
+msgstr "Vorlagenmanager"
#: templatedlg.ui
msgctxt ""
diff --git a/source/de/svtools/source/control.po b/source/de/svtools/source/control.po
index db7b7923bcd..2d51cc9d191 100644
--- a/source/de/svtools/source/control.po
+++ b/source/de/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-29 06:53+0000\n"
"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Black Kursiv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/de/svtools/source/misc.po b/source/de/svtools/source/misc.po
index 04e9e409cec..a28c262487b 100644
--- a/source/de/svtools/source/misc.po
+++ b/source/de/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-20 13:23+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495286590.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibenisch"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/de/sw/source/core/undo.po b/source/de/sw/source/core/undo.po
index d9e90b8c434..c5849648188 100644
--- a/source/de/sw/source/core/undo.po
+++ b/source/de/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-25 06:49+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493102957.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "Spaltenumbruch"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Einfügen: $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Löschen: $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attribute geändert"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabelle geändert"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Formatvorlage geändert"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/de/sw/source/uibase/docvw.po b/source/de/sw/source/uibase/docvw.po
index 0cb1aceb72b..43cc89abe46 100644
--- a/source/de/sw/source/uibase/docvw.po
+++ b/source/de/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-16 12:30+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Absatzvorlage gesetzt"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/de/sw/source/uibase/ribbar.po b/source/de/sw/source/uibase/ribbar.po
index abd934ff910..322cfc5f75a 100644
--- a/source/de/sw/source/uibase/ribbar.po
+++ b/source/de/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-26 04:50+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formeltext"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/de/sw/source/uibase/uiview.po b/source/de/sw/source/uibase/uiview.po
index 9e360fa2975..2cd5d5ea334 100644
--- a/source/de/sw/source/uibase/uiview.po
+++ b/source/de/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-22 08:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Q~uelltext exportieren..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/de/sw/uiconfig/swriter/ui.po b/source/de/sw/uiconfig/swriter/ui.po
index 1570e9e46ee..9a40294b7b5 100644
--- a/source/de/sw/uiconfig/swriter/ui.po
+++ b/source/de/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 03:50+0000\n"
+"PO-Revision-Date: 2017-06-07 03:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496116212.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496807960.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Beschreibung:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Kommentar bearbeiten..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Sortiert nach"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Aktion"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Kommentar"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Dokumentposition"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "LibreOffice 4.3 Darstellungsfolge für Verankerungen verwenden (aktuelles Dokument)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Benutzereinstellungen>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/de/xmlsecurity/uiconfig/ui.po b/source/de/xmlsecurity/uiconfig/ui.po
index f04e69d886a..284836b1e3c 100644
--- a/source/de/xmlsecurity/uiconfig/ui.po
+++ b/source/de/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-15 04:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Löschen"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/dgo/desktop/source/deployment/gui.po b/source/dgo/desktop/source/deployment/gui.po
index 3c1794ee033..9133bccff09 100644
--- a/source/dgo/desktop/source/deployment/gui.po
+++ b/source/dgo/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-08-25 18:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -174,6 +174,14 @@ msgstr ""
" Click 'Cancel' to stop the installation."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -189,6 +197,14 @@ msgstr ""
" Click 'Cancel' to stop removing the extension."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
index 8a5e4b6bffe..a748dcfe777 100644
--- a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 13:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr " विशे-वस्तुआं\t"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4102,6 +4102,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27096,15 +27213,6 @@ msgid "~Properties..."
msgstr " विशेशतां...\t\t"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/dgo/sc/source/ui/src.po b/source/dgo/sc/source/ui/src.po
index 4c962741473..a090e19b7fc 100644
--- a/source/dgo/sc/source/ui/src.po
+++ b/source/dgo/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "फलाऽ#1 शा #2 च लेता गेआ "
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2884,7 +2884,7 @@ msgstr "नेस्टेड तरतीबी-जमातां समर्
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/dgo/sfx2/source/view.po b/source/dgo/sfx2/source/view.po
index 78891d875a9..32e2cefe89e 100644
--- a/source/dgo/sfx2/source/view.po
+++ b/source/dgo/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -252,6 +252,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/dgo/svtools/source/control.po b/source/dgo/svtools/source/control.po
index ab7757ac18f..26a685558ab 100644
--- a/source/dgo/svtools/source/control.po
+++ b/source/dgo/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "काला इटैलिक "
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/dgo/svtools/source/misc.po b/source/dgo/svtools/source/misc.po
index 643f22422cc..03affea733f 100644
--- a/source/dgo/svtools/source/misc.po
+++ b/source/dgo/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-14 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3195,10 +3195,10 @@ msgstr "बेक्वेल"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "कितुबा"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3928,6 +3928,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/dgo/sw/source/core/undo.po b/source/dgo/sw/source/core/undo.po
index 264193da4e9..075780743bb 100644
--- a/source/dgo/sw/source/core/undo.po
+++ b/source/dgo/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-14 10:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "स्तंभ खंडन "
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "समावेश करो 1$ "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "म्हेसो$1 "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "खासियतां बदलोई गेइयां"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "टेबल बदलेआ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "शैली बदलोई गेई"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/dgo/sw/source/uibase/docvw.po b/source/dgo/sw/source/uibase/docvw.po
index c777f406e44..a9328b7ad02 100644
--- a/source/dgo/sw/source/uibase/docvw.po
+++ b/source/dgo/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 18:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/dgo/sw/source/uibase/ribbar.po b/source/dgo/sw/source/uibase/ribbar.po
index 9f3828010a0..509fe43bbed 100644
--- a/source/dgo/sw/source/uibase/ribbar.po
+++ b/source/dgo/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-14 11:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/dgo/sw/source/uibase/uiview.po b/source/dgo/sw/source/uibase/uiview.po
index 4fcd827363c..d69ebaf09ae 100644
--- a/source/dgo/sw/source/uibase/uiview.po
+++ b/source/dgo/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 18:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/dgo/xmlsecurity/uiconfig/ui.po b/source/dgo/xmlsecurity/uiconfig/ui.po
index 295101d70bf..f031936be5a 100644
--- a/source/dgo/xmlsecurity/uiconfig/ui.po
+++ b/source/dgo/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr "हटाओ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/dz/desktop/source/deployment/gui.po b/source/dz/desktop/source/deployment/gui.po
index 09895fedf66..d9297ff2d07 100644
--- a/source/dz/desktop/source/deployment/gui.po
+++ b/source/dz/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:46+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-25 19:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467658005.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1440529403.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -176,6 +176,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -185,6 +193,14 @@ msgid ""
msgstr ""
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared.po b/source/dz/helpcontent2/source/text/sbasic/shared.po
index b45c6b6f9ec..31bf301b57b 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 17:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">ཨང་རྟགས་འཛོལ་བ་ </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "འ་ནི་རཱན་ཊའིམ་ལས་འགན་གྱིས་ལག་ལེན་འཐབ་ནི་ཨིན་མི་སྔོན་སྒྲིག་ཆ་ཤས་སྐབས་དོན་དེ་ འཕྲལ་མྱུར་ཞབས་ཏོག་ཚུ་བརྒྱུད་དེ་ཨེགསི་སྣ་མང་ཞབས་ཏོག་འཁྲུལ་ཁང་ཨིན་པ་ཅིན་སླར་ལོགཔ་ཨིན། ཁྱད་ལས་ ཡུ་ཨེན་ཨོ་ <item type=\"literal\">ལེའུ་</item> བཟོ་མི་ལམ་སྟོན་ནང་ <item type=\"literal\">api.openoffice.org</item> གུ་<link href=\"http://api.openoffice.org\">བརད་དོན་ཧེང་བཀལ་དོན་ལུ་</link> བལྟ།"
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index 068c39d40da..7232d5e8ba6 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 05:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index 4fbac263151..e85026ac766 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-24 11:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index 72b781ccd65..76184dd6f5d 100644
--- a/source/dz/helpcontent2/source/text/shared/optionen.po
+++ b/source/dz/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 21:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/dz/helpcontent2/source/text/swriter.po b/source/dz/helpcontent2/source/text/swriter.po
index 90ed24e3d02..06a718e2bad 100644
--- a/source/dz/helpcontent2/source/text/swriter.po
+++ b/source/dz/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 06:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">མཐའ་ཐིག་ ཨང་རྟགས།</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/00.po b/source/dz/helpcontent2/source/text/swriter/00.po
index 1a73ffd1b0b..c472d4f3d57 100644
--- a/source/dz/helpcontent2/source/text/swriter/00.po
+++ b/source/dz/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 06:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">ལག་ཆས་ཚུ་<emph>གདམ་ཁ་རྐྱབས་-མཐའ་ཐིག ཨང་བཏགས་ནི་</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">ལག་ཆས་ཚུ་ <emph>གདམ་ཁ་རྐྱབས་ -མཐའ་ཐིག་ ཨང་བཏགས་ནི་- ཨང་བཏགས་ནི་</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">ལག་ཆས་ཚུ་ <emph>གདམ་ཁ་རྐྱབས་-གྲལ་ཐིག་ཨང་བཏགས་ནི་</emph></variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/01.po b/source/dz/helpcontent2/source/text/swriter/01.po
index 0bb1eca8aa8..f53eb8c1e05 100644
--- a/source/dz/helpcontent2/source/text/swriter/01.po
+++ b/source/dz/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 21:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">འགྲུལ་བསྐྱོདཔ་གི་སྒོ་སྒྲིག་ནང་ལུ་ གནས་རིམ་སྤྱི་ཏོག་གུར་ཡོད་མི་རྐྱངམ་ཅིག་སྣོན་ནིའི་དོན་ལུ་<emph>༡་ལུ་</emph>ཨེབ་གཏང་འབད་ནི་དང་ <emph>མགོ་ཡིག་ཆ་མཉམ་སྟོན་ནིའི་དོན་ལུ་ </emph> ༡༠ལུ་ཨེབ་གཏང་འབད།</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "ཁྱོད་ཀྱིས་ལེའུའི་ས་སྒོ་ཅིག་གི་དོན་ལུ་ \"Chapter number without separator\" དེ་གདམ་ཁ་རྐྱབས། <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>ལག་ཆས་-ལེའུའི་ཨང་རྟགས་ནི་</emph></link>དེ་ནང་གི་ལེའུགྲངས་ཀྱི་དོན་ལུ་ གསལ་བཀོད་འབད་ཡོད་མི་དབྱེ་བྱེད་ཚུ་ བཀྲམ་སྟོན་མ་འབད་བས།"
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">ལེའུའི་མགོ་མིང་ཆ་ཚང་དེ་ འཐོབ་ཚུགས་པ་ཅིན་ ཡིག་འབྲུའི་ཨང་གྲངས་དེ་ཡང་བཙུགསཔ་ཨིན། མགོང་མིང་གི་བཟོ་རྣམ་ཅིག་ལུ་ ལེའུའི་ཨང་གྲངས་བཏགས་ནི་དེ་འགན་སྤྲོད་འབད་ནིའི་དོན་ལུ་<emph> ལག་ཆས་ - མཐའ་ཐིག་ཨང་གྲངས་བཞགས་ནི་</emph>དེ་གདམ་ཁ་རྐྱབས།.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "མཐའ་ཐིག་ཨང་གྲངས་བཏགས་ནི་"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "མཐའ་ཐིག་ཨང་གྲངས་བཏགས་ནི་"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "མཐའ་ཐིག་ཨང་གྲངས་བཏགས་ནི་དེ་དོན་མཚམས་བཟོ་རྣམ་ལུ་འབྲེལ་མཐུད་འབད་ཡོདཔ་ཨིན། སྔོན་སྒྲིག་གིས་\"Heading\" དོན་མཚས་བཟོ་རྣམ་(༡་-༡༠)ཚུ་ ཆ་མཉམ་པའི་མཐའ་ཐིག་ཨང་གརངས་གནས་རིམ་(༡-༡༠་) དེ་ལུ་འགན་སྤྲོད་འབདཝ་ཨིན། ཁྱོད་ལུ་དགོ་པ་ཅིན་ མཐའ་ཐིག་ཨང་གྲངས་གནས་རིམ་དེ་ལུ་ ཁོད་ཀྱིས་དོན་མཚམས་བཟོ་རྣམ་སོ་སོ་འགན་སྤྲོད་འབད་ཚུགས།"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "མཐའ་ཐིག་ཨང་གྲངས་དེ་གི་གསལ་གཞི་བཀྲམ་སྟོན་དེ་གཙོ་དམིགས་འབད་ནིའི་དོན་ལུ་ <emph>མཐོང་སྣང་-</emph><emph>ས་སྒོ་གྲིབ་ནག་བཟོ་ནི་</emph>དེ་གདམ་ཁ་རྐྱབས།"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">མཐའ་ཐིག་ཨང་གྲངས་རྩ་སྒྲིག་ཅིག་ སྲུངམ་ཨིནམ་དང་ ཡང་ན་ མངོན་གསལ་འབདཝ་ཨིན། སྲུང་བཞག་འབད་ཡོད་པའི་མཐའ་ཐིག་ཨང་གྲངས་རྩ་སྒྲིག་འདི་ ཚིག་ཡིག་ཡིག་ཆ་ཆ་མཉམ་ལུ་འཐོབ་ཚུགས།</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>རྩ་སྒྲིག་</emph>ཨེབ་རྟ་དེ་ མཐའ་ཐིག་ཨང་གྲངས་བཏགས་ནི་གི་དོན་ལུ་རྐྱངམ་ཅིག་འཐོབ་ཚུགས། ཨང་གྲངས་བཏགས་ཡོད་མི་དང་ ཡང་ན་ མགོ་ཚག་ཅན་གྱི་་ཐོ་ཡིག་བཟོ་རྣམ་ཚུ་གི་དོན་ལུ་ དོན་མཚམས་དེ་གི་ཨང་གྲངས་བཏགས་ནིའི་བཟོ་རྣམ་དེ་ཚུ་ལེགས་བཅོས་འབད།"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">དེ་གིས་ སེལ་འཐུ་འབད་ཡོད་པའི་མཐའ་ཐིག་གནས་རིམ་དེ་གི་དོན་ལུ་ ད་ལྟོའི་སྒྲིག་སྟངས་དེ་སྲུང་བཞག་འབད་ཚུགས་པའི་ཌའི་ལོག་དེ་ཁ་ཕྱེཝ་ཨིན།</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">ཁྱོད་ཀྱིས་ལེགས་བཅོས་འབད་དགོ་མནོ་མི་མཐའ་ཐིག་གནས་རིམ་དེ་ལུ་ཨེབ་གཏང་འབད་ཞིནམ་ལས་ དེ་ལས་ གནས་རིམ་དེ་གི་དོན་ལུ་ ཨང་གྲངས་བཏགས་ནིའི་གདམ་ཁ་དེ་གསལ་བཀོད་འབད།</ahelp>དོན་མཚམས་བཟོ་རྣམ་གྱི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ གནས་རིམ་གན་མི་ཆ་མཉམ་གྱི་དོན་ལུ་ ཨང་གྲངས་བཏགས་ནིའི་གདམ་ཁ་ཚུ་འཇུག་སྤྱོད་འབད་ནིའི་དོན་ལུ་\"1-10\"དེ་ལུ་ཨེབ་གཏང་འབད།"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">སེལ་འཐུ་འབད་ཡོད་པའི་མཐའ་ཐིག་གནས་རིམ་དེ་ལུ་འགན་སྤྲོད་འབད་དགོ་མནོ་མི་ དོན་མཚམས་བཟོ་རྣམ་དེ་སེལ་འཐུ་འབད།</ahelp>ཁྱོད་ཀྱིས་\"None\"ལུ་ཨེབ་གཏང་འབད་བ་ཅིན་ སེལ་འཐུ་འབད་ཡོད་པའི་མཐའ་ཐིག་གནས་རིམ་དེ་ངེས་འཛིན་མི་འབད།"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "ཁ་བྱང་གི་སྡེབ་ཚན་གསརཔ་"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "ཁ་བྱང་གི་སྡེབ་ཚན་གསརཔ་"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "ཁ་བྱང་གི་ཆ་ཤས་"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "ཁ་བྱང་གི་ཆ་ཤས་ཚུ་ འོག་གི་ས་སྒོ་དེ་ནང་ལུ་འདྲུད་"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/guide.po b/source/dz/helpcontent2/source/text/swriter/guide.po
index d2cb28dc7e5..1983d8e5547 100644
--- a/source/dz/helpcontent2/source/text/swriter/guide.po
+++ b/source/dz/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 21:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "ཁྱོད་ཀྱིས་འགྲུལ་བསྐྱོད་པ་ལག་ལེན་འཐབ་ཐོག་ ཡིག་ཆ་ཚིག་ཡིག་ནང་ལུ་ མགུ་རྒྱན་ཚུ་དང་དམའ་ཤོས་ཚིག་ཡིག་ཚུ་ ཡར་དང་མར་སྤོ་བཤུད་འབད་ཚུགས། ཁྱོད་ཀྱིས་མགུ་རྒྱན་གྱི་གནས་རིམ་ཚུ་ཡར་བསྐྱེད་དང་མར་ཕབ་ཡང་འབད་ཚུགས། འ་ནི་ཁྱད་རྣམ་འདི་ལག་ལེན་འཐབ་ནིའི་དོན་ལས་ སྔོན་ངེས་འཛིན་འབད་ཡོད་པའི་དོན་མཚམས་ཀྱི་བཟོ་རྣམ་ཚུ་ལས་གཅིག་དང་གཅིག་ཁར་ ཁྱོད་རའི་ཡིག་ཆ་ནང་ལུ་མགུ་རྒྱན་འདི་ཚུ་རྩ་སྒྲིག་བཟོ། མགུ་རྒྱན་གཅིག་གི་དོན་ལུ་སྲོལ་སྒྲིག་དོན་མཚམས་ཀྱི་བཟོ་རྣམ་གཅིག་ལག་ལེན་འཐབ་ནིའི་དོན་ལས་ <emph>ལག་ཆས་ཚུ་ - མཐའ་ཐིག་ཨང་བཏགས་ནི་</emph>གདམ་ཁ་རྐྱབས་ བཟོ་རྣམ་འདི་ <emph>དོན་མཚམས་བཟོ་རྣམ་ </emph>སྒྲོམ་ནང་ལུ་སེལ་འཐུ་འབད་ དེ་ལས་ཨང་གྲངས་གཅིག་<emph>གནས་རིམ་ཀྱི་ </emph>ཐོ་ཡིག་ནང་ལུ་ལོག་བལྟབ་-ཨེབ་གཏང་།"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "མཐའ་ཐིག་ཨང་བཏགས་ནི།"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,16 +2917,16 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">མཐའ་ཐིག་ཨང་བཏགས་ནི།</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "ཁྱོད་ཀྱིས་མགུ་རྒྱན་འདི་ལེགས་བཅོས་འབད་ཚུགས་ ཡང་ན་སྲོལ་སྒྲིག་དོན་མཚམས་ཀྱི་བཟོ་རྣམ་ཅིག་ལུ་ སྡེ་རིམ་ནང་གི་གནས་རིམ་ཅིག་འགན་སྤྲོད་འབད་ཚུགས། ཁྱོད་ཀྱིས་ལེའུ་དང་དབྱེ་ཚན་གྱི་ཨང་བཏགས་ནི་འདི་མགུ་རྒྱན་དོན་མཚམས་ཀྱི་བཟོ་རྣམ་ཚུ་ལུ་ཁ་སྐོང་ཡང་རྐྱབས་ཚུགས། སྔོན་སྒྲིག་གི་སྦེ་ \"Heading 1\" དོན་མཚམས་ཀྱི་བཟོ་རྣམ་འདི་ མཐའ་ཐིག་སྡེ་རིམ་གྱི་མགོ་ལུ་ཡོདཔ་ཨིན།"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "མགུ་རྒྱན་གྱི་དོན་མཚམས་ཅིག་ལས་རང་བཞིན་གྱིས་མཐའ་ཐིག་ཨང་བཏགས་ནི་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལས་:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "ཁྱོད་ཀྱིས་ལེའུ་གི་བརྡ་དོན་འདི་མགོ་ཡིག་ཡང་ན་མཇུག་ཡིག་ཅིག་ནང་ལུ་ མ་བཙུགས་པའི་ཧེ་མ་ ཁྱོད་ཀྱིས་དང་པ་རང་ ལེའུ་གི་མགོ་མིང་ཚུ་གི་དོན་ལུ་ལག་ལེན་འཐབ་ནི་ཨིན་མི་ དོན་མཚམས་བཟོ་རྣམ་འདི་གི་དོན་ལུ་ མཐའ་ཐིག་ཨང་བཏགས་ནིའི་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབད་དགོ།"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>ལག་ཆས་ཚུ་ - མཐའ་ཐིག་ཨང་བཏགས་ནི་</emph>གདམ་ཁ་རྐྱབས།"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>ཟུར་ཐོ་ཚུ་ ཐོ་བཀོད་ཚུ་</bookmark_value>ནང་ངེས་འཛིན་འབད་དོ་<bookmark_value>ནང་དོན་ཚུའི་ཐིག་ཁྲམ་ཚུ་ ཐོ་བཀོད་ཚུ་</bookmark_value>ནང་ངེས་འཛིན་འབད་དོ་<bookmark_value>ཐོ་བཀོད་ཚུ་ ཟུར་ཐོ་ཚུ་/ནང་དོན་ཚུའི་ཐིག་ཁྲམ་ཚུ་</bookmark_value>ནང་ངེས་འཛིན་འབད་དོ།"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>བཙུགས་ - ཟུར་ཐོ་ཚུ་དང་ཐིག་ཁྲམ་ཚུ་ - ཐོ་བཀོད་</emph>གདམ་ཁ་རྐྱབས་ དེ་ལས་འོག་གི་ཚུ་ལས་གཅིག་འབད་:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>ལག་ཆས་ཚུ་ - མཐ་འཐིག་ཨང་བཏགས་ནི་</emph> གདམ་ཁ་རྐྱབས་ དེ་ལས་ <emph>ཨང་བཏགས་ནི་</emph> འདི་ཨེབ་གཏང་།"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>ཨང་བཏགས་ནི་; རྩ་བསྐྲད་གཏང་ནི་/བར་དཀྲོགས་འབད་ནི་</bookmark_value><bookmark_value>འགོ་ཚག་ཐོ་ཡིག་ཚུ་; བར་དཀྲོགས་ནི་</bookmark_value><bookmark_value>ཐོ་ཡིག་ཚུ་;རྩ་བསྐྲད་གཏང་དོ་/ཨང་བཏགས་ནི་ཚུ་བར་དཀྲོགས་འབད་དོ་</bookmark_value><bookmark_value>བཏོན་གཏང་དོ་;ཐོ་ཡིག་ཚུ་ནང་ཨང་གྲངས་ཚུ་</bookmark_value><bookmark_value>བར་དཀྲོགས་འབད་མི་ཨང་གྲངས་ཀྱི་ཐོ་ཡིག་ཚུ་</bookmark_value><bookmark_value>བསྒྱུར་བཅོས་འབད་དོ་;ཐོ་ཡིག་ཚུ་ནང་ཨང་གྲངས་འགོ་བཙུགས་དོ་</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
index 020ba08bdf5..20c17bfa01e 100644
--- a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 14:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -630,8 +630,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "བརྗོད་དོན་ འདམ་ཁ་རྐྱབས།"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4094,6 +4094,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27056,15 +27173,6 @@ msgid "~Properties..."
msgstr "རྒྱུ་དངོས།"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/dz/sc/source/ui/src.po b/source/dz/sc/source/ui/src.po
index c848b28862a..ce28b2726b3 100644
--- a/source/dz/sc/source/ui/src.po
+++ b/source/dz/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2718,7 +2718,7 @@ msgstr "གྱབ་ཚད་#༡་ལས་ #༢་ལུ་སཔོ་བཤ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2886,7 +2886,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/dz/sfx2/source/view.po b/source/dz/sfx2/source/view.po
index 6f7e8ea802e..6497136edb4 100644
--- a/source/dz/sfx2/source/view.po
+++ b/source/dz/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/dz/svtools/source/control.po b/source/dz/svtools/source/control.po
index 6c5410c321f..aee4624d5d5 100644
--- a/source/dz/svtools/source/control.po
+++ b/source/dz/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "གཡས་གཡོ་ གནགཔོ།"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/dz/svtools/source/misc.po b/source/dz/svtools/source/misc.po
index 65ac78d58a0..faa155aa9c7 100644
--- a/source/dz/svtools/source/misc.po
+++ b/source/dz/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-14 12:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3198,9 +3198,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3923,6 +3923,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/dz/sw/source/core/undo.po b/source/dz/sw/source/core/undo.po
index 42f413dde9b..10d95154a34 100644
--- a/source/dz/sw/source/core/undo.po
+++ b/source/dz/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-14 13:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,27 +934,25 @@ msgid "column break"
msgstr "ཀེར་ཐིག་གི་མཚམས།(~C)"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "%O བཙུགས།"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "%O བཏོན་གཏང་།"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr ""
@@ -962,19 +960,58 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ཐིག་ཁྲམ་བསྒྱུར་བཅོས་འབད་ཡོདཔ།"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ཐིག་ཁྲམ་བསྒྱུར་བཅོས་འབད་ཡོདཔ།"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/dz/sw/source/uibase/docvw.po b/source/dz/sw/source/uibase/docvw.po
index 5aad5db0eb0..514cadadd95 100644
--- a/source/dz/sw/source/uibase/docvw.po
+++ b/source/dz/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 18:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/dz/sw/source/uibase/ribbar.po b/source/dz/sw/source/uibase/ribbar.po
index 73d341da7db..53ac5eaef69 100644
--- a/source/dz/sw/source/uibase/ribbar.po
+++ b/source/dz/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-14 13:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/dz/sw/source/uibase/uiview.po b/source/dz/sw/source/uibase/uiview.po
index eaae4658d0b..adea354c1ea 100644
--- a/source/dz/sw/source/uibase/uiview.po
+++ b/source/dz/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 18:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/dz/xmlsecurity/uiconfig/ui.po b/source/dz/xmlsecurity/uiconfig/ui.po
index 79de413f912..04757067f5f 100644
--- a/source/dz/xmlsecurity/uiconfig/ui.po
+++ b/source/dz/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/el/desktop/source/deployment/gui.po b/source/el/desktop/source/deployment/gui.po
index 4463024fd33..60a1f9c2523 100644
--- a/source/el/desktop/source/deployment/gui.po
+++ b/source/el/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:03+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-01 09:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467659031.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1417426440.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/el/filter/source/config/fragments/filters.po b/source/el/filter/source/config/fragments/filters.po
index bc17acef78c..8d6db6a62ad 100644
--- a/source/el/filter/source/config/fragments/filters.po
+++ b/source/el/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 13:20+0000\n"
+"PO-Revision-Date: 2017-06-07 05:26+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492435232.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496813202.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/el/filter/source/config/fragments/types.po b/source/el/filter/source/config/fragments/types.po
index 2b500f43f97..0ac1debb1fc 100644
--- a/source/el/filter/source/config/fragments/types.po
+++ b/source/el/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 13:20+0000\n"
+"PO-Revision-Date: 2017-06-07 05:26+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492435237.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496813212.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/shared.po b/source/el/helpcontent2/source/text/sbasic/shared.po
index cd57f70b714..ca4734f99ce 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-06 03:28+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496719734.000000\n"
#: 00000002.xhp
@@ -483,10 +483,42 @@ msgstr "Αυτή η συνάρτηση ενεργοποιείται με την
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Κωδικοί σφαλμάτων</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Αυτή η συνάρτηση χρόνου εκτέλεσης επιστρέφει το προεπιλεγμένο περιεχόμενο στοιχείου για χρήση, εάν ενεργοποιηθούν οι υπηρεσίες μέσω του XmultiServiceFactory. Δείτε το κεφάλαιο <item type=\"literal\">Επαγγελματικό UNO</item> στο <item type=\"literal\">Οδηγός προγραμματιστή</item> στο <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> για περισσότερες πληροφορίες."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/el/helpcontent2/source/text/schart/01.po b/source/el/helpcontent2/source/text/schart/01.po
index 7b807d9d42d..f23b470491b 100644
--- a/source/el/helpcontent2/source/text/schart/01.po
+++ b/source/el/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-01 05:37+0000\n"
+"PO-Revision-Date: 2017-06-07 05:39+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496295422.000000\n"
+"X-POOTLE-MTIME: 1496813947.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "Οι παρακάτω τύποι παλινδρόμησης είναι διαθέσιμοι:"
#: 04050100.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared.po b/source/el/helpcontent2/source/text/shared.po
index 71a163fb2ab..5a54664d8a9 100644
--- a/source/el/helpcontent2/source/text/shared.po
+++ b/source/el/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-12 04:22+0000\n"
+"PO-Revision-Date: 2017-06-07 05:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494562949.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496814339.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Επιλέξετε βάθος προεξοχής."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Επιλέξτε μέθοδο προοπτικής ή παράλληλης προεξοχής."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Επιλέξτε κατεύθυνση φωτισμού."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Επιλέξτε ένταση φωτισμού."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Επιλέξτε επιφανειακό υλικό ή εμφάνιση δικτυώματος."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Πατήστε για να εφαρμοστεί η στοίχιση στα επιλεγμένα αντικείμενα Fontwork."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Πατήστε για να εφαρμόσετε την απόσταση χαρακτήρων για τα επιλεγμένα αντικείμενα Fontwork."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Ανοίγει ον διάλογο απόστασης χαρακτήρων Fontwork όπου μπορείτε να εισάγετε μια νέα τιμή απόστασης χαρακτήρων."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Ενεργοποιεί και απενεργοποιεί την <link href=\"text/shared/00/00000005.xhp#kerning\">πύκνωση</link> ζευγών χαρακτήρων."
#: main0108.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index 5dc180208af..12a20bd0a23 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-31 05:28+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1496208510.000000\n"
@@ -9726,8 +9726,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Επιλέξτε την καρτέλα <emph>Εργαλεία - Αρίθμηση διάρθρωσης - Θέση</emph> </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9750,8 +9750,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Εικονίδιο στη γραμμή εργαλείων <emph>Εικόνα</emph>:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index dfe9e9b8d84..34c9cc4f646 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 03:17+0000\n"
-"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 13:15+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496719064.000000\n"
+"X-POOTLE-MTIME: 1497964525.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2015,7 +2015,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Όταν χρησιμοποιείτε το <item type=\"menuitem\">Αρχείο - Πρότυπα - Αποθήκευση ως - Πρότυπο</item> για να αποθηκεύσετε ένα πρότυπο, το πρότυπο αποθηκεύεται στον φάκελο προτύπων χρήστη. Όταν ανοίγετε ένα έγγραφο το οποίο είναι βασισμένο σε ένα τέτοιο πρότυπο, το έγγραφο ελέγχεται για αλλαγμένο πρότυπο, όπως περιγράφεται παρακάτω. Το πρότυπο συσχετίζεται με το έγγραφο, μπορεί να αναφερθεί ως ένα \"προσκολλημένο πρότυπο\"."
#: 01020000.xhp
msgctxt ""
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Επιλέξτε την τεχνοτροπία παραγράφου ή το επίπεδο διάρθρωσης που θέλετε να χρησιμοποιήσετε για να διαχωρίσετε το έγγραφο προέλευσης σε υποέγγραφα.</ahelp> Από την προεπιλογή, ένα νέο έγγραφο δημιουργείται για κάθε επίπεδο διάρθρωσης 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -30207,7 +30207,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Conversion Direction"
-msgstr ""
+msgstr "Κατεύθυνση μετατροπής"
#: 06010600.xhp
msgctxt ""
@@ -30215,7 +30215,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Select the conversion direction."
-msgstr ""
+msgstr "Επιλέξτε την κατεύθυνση μετατροπής."
#: 06010600.xhp
msgctxt ""
@@ -30223,7 +30223,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "Παραδοσιακά κινέζικα σε απλουστευμένα κινέζικα"
#: 06010600.xhp
msgctxt ""
@@ -30239,7 +30239,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "Απλοποιημένα κινέζικα σε παραδοσιακά κινέζικα"
#: 06010600.xhp
msgctxt ""
@@ -30255,7 +30255,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "Common Terms"
-msgstr ""
+msgstr "Κοινοί όροι"
#: 06010600.xhp
msgctxt ""
@@ -30263,7 +30263,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
-msgstr ""
+msgstr "Κοινοί όροι είναι λέξεις που έχουν την ίδια έννοια σε παραδοσιακά και απλοποιημένα κινέζικα, αλλά είναι γραμμένες με διαφορετικούς χαρακτήρες."
#: 06010600.xhp
msgctxt ""
@@ -30271,7 +30271,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Translate common terms"
-msgstr ""
+msgstr "Μετάφραση κοινών όρων"
#: 06010600.xhp
msgctxt ""
@@ -40470,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Επιλέγει να εξάγει σελιδοδείκτες από έγγραφα Writer ως σελιδοδείκτες PDF. Οι σελιδοδείκτες δημιουργούνται για όλες τις διαρθρωμένες παραγράφους (Εργαλεία - Αρίθμηση διάρθρωσης) και για όλους τους πίνακες καταχωρίσεων περιεχομένων για τους οποίους αποδώσατε υπερσυνδέσμους στο έγγραφο προέλευσης.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/guide.po b/source/el/helpcontent2/source/text/shared/guide.po
index 2b3426d839a..f66c149f4b1 100644
--- a/source/el/helpcontent2/source/text/shared/guide.po
+++ b/source/el/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 05:49+0000\n"
+"PO-Revision-Date: 2017-06-07 11:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496209770.000000\n"
+"X-POOTLE-MTIME: 1496835461.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5679,7 +5679,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Όταν υπογράφετε ένα έγγραφο με το OpenOffice.org 3.2 ή το StarOffice 9.2 ή μεταγενέστερη έκδοση και ανοίξετε αυτό το έγγραφο σε μια παλαιότερη έκδοση του λογισμικού, η υπογραφή θα εμφανίζεται ως \"άκυρη\". Οι υπογραφές που έχουν δημιουργηθεί σε παλαιότερες εκδόσεις θα σημειώνονται με το \"μόνο μέρη του εγγράφου είναι υπογεγραμμένα\" όταν φορτώνονται σε νεότερες λογισμικά."
#: digital_signatures.xhp
msgctxt ""
@@ -5687,7 +5687,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "Όταν υπογράφετε ένα έγγραφο OOXML, τότε η υπογραφή θα σημειώνεται πάντα ως \"μόνο τμήματα του εγγράφου είναι υπογεγραμμένα\". Τα μεταδεδομένα των αρχείων OOXML δεν είναι ποτέ υπογεγραμμένα, για να είναι συμβατά με το Microsoft Office."
#: digital_signatures.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index 1c9e1adc7f3..de1bc261423 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 05:58+0000\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-10 15:14+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496210330.000000\n"
+"X-POOTLE-MTIME: 1497107662.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Επιλογή νέου χρώματος"
#: 01010501.xhp
msgctxt ""
@@ -2263,7 +2263,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Επιλογή νέου χρώματος"
#: 01010501.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2295,14 +2303,14 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "Η επιλογή παραθύρου διαλόγου χρώματος αποτελείται από τέσσερις κύριες περιοχές."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
@@ -2311,7 +2319,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "The spin buttons are for entering the numerical value of the color component."
-msgstr ""
+msgstr "Τα πλήκτρα αυξομείωσης είναι για εισαγωγή της αριθμητικής τιμής του συστατικού χρώματος."
#: 01010501.xhp
msgctxt ""
@@ -2319,7 +2327,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">Με τον κάθετο ολισθητή συστατικού χρώματος μπορείτε να τροποποιήσετε την τιμή κάθε συστατικού του χρώματος.</ahelp> Με το μεγάλο χρωματιστό τετράγωνο μπορείτε να επιλέξετε περίπου το χρωματικό συστατικό."
#: 01010501.xhp
msgctxt ""
@@ -2327,7 +2335,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "Η οριζόντια γραμμή του κάτω χρώματος δείχνει το τρέχον χρώμα και το νέο χρώμα, δίπλα-δίπλα."
#: 01010501.xhp
msgctxt ""
@@ -2335,7 +2343,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Πατήστε στη μεγάλη χρωματιστή περιοχή στα αριστερά για να επιλέξετε ένα νέο χρώμα. Χρησιμοποιώντας αυτήν την περιοχή επιλογής, μπορείτε να τροποποιήσετε δύο συστατικά του χρώματος όπως αναπαριστάνονται στα χρωματικά πρότυπα RGB ή HSB. Σημειώστε ότι αυτά είναι τα δύο συστατικά που δεν είναι επιλεγμένα με ραδιοπλήκτρα στη δεξιά πλευρά του διαλόγου.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2343,7 +2351,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Στο δεξιό μέρος της κάτω γραμμής, θα δείτε το αρχικό χρώμα από τη γονική καρτέλα, <emph>Χρώματα</emph>.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2351,7 +2359,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Στο αριστερό μέρος της κάτω γραμμής, είναι ορατό το τρέχον αποτέλεσμα της εργασίας σας σε αυτόν τον διάλογο.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2367,7 +2375,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: 01010501.xhp
msgctxt ""
@@ -2383,7 +2391,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει το κόκκινο συστατικό που τροποποιείται στον κάθετο ολισθητή χρώματος και τα συστατικά πράσινο και γαλάζιο στα δύο πεδία επιλογής χρώματος διαστάσεων. Επιτρεπόμενες τιμές είναι 0 έως 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2391,7 +2399,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Ορίζει απευθείας την τιμή του κόκκινου χρώματος. Επιτρεπόμενες τιμές είναι 0 έως 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2407,7 +2415,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει το πράσινο συστατικό που τροποποιείται στον κάθετο ολισθητή χρώματος και τα συστατικά κόκκινο και γαλάζιο στα δύο πεδία επιλογής χρώματος διαστάσεων. Επιτρεπόμενες τιμές είναι 0 έως 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2415,7 +2423,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Ορίζει απευθείας την τιμή του πράσινου χρώματος. Επιτρεπόμενες τιμές είναι 0 έως 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2431,7 +2439,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει το κόκκινο συστατικό που τροποποιείται στον κάθετο ολισθητή χρώματος και τα συστατικά πράσινο και γαλάζιο στα δύο πεδία επιλογής χρώματος διαστάσεων. Επιτρεπόμενες τιμές είναι 0 έως 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2439,7 +2447,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Ορίζει απευθείας την τιμή του γαλάζιου χρώματος. Επιτρεπόμενες τιμές είναι 0 έως 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2447,7 +2455,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "Δεκαεξαδικό #"
#: 01010501.xhp
msgctxt ""
@@ -2455,7 +2463,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εμφανίζει και ορίζει την τιμή χρώματος στο χρωματικό πρότυπο RGB εκφρασμένο ως δεκαεξαδικό αριθμό.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2463,7 +2471,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2471,7 +2479,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Απόχρωση"
#: 01010501.xhp
msgctxt ""
@@ -2479,7 +2487,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει το συστατικό απόχρωση που τροποποιείται στον κάθετο ολισθητή χρώματος και τα συστατικά κορεσμός και φωτεινότητα στα δύο πεδία επιλογής χρώματος διαστάσεων. Επιτρεπόμενες τιμές σε βαθμούς είναι από 0 έως 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2487,7 +2495,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Ορίζει την απόχρωση απευθείας στο χρωματικό πρότυπο HSB. Οι τιμές εκφράζονται σε βαθμούς από 0 έως 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2503,7 +2511,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει το συστατικό κορεσμός που τροποποιείται στον κάθετο ολισθητή χρώματος και τα συστατικά απόχρωση και φωτεινότητα στα δύο πεδία επιλογής χρώματος διαστάσεων. Οι τιμές εκφράζονται σε ποσοστό (0 έως 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2511,7 +2519,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Ορίζει τον κορεσμό απευθείας στο χρωματικό πρότυπο HSB. Οι τιμές εκφράζονται σε ποσοστό (0 έως 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2519,7 +2527,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Φωτεινότητα"
#: 01010501.xhp
msgctxt ""
@@ -2527,7 +2535,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει το συστατικό φωτεινότητα που τροποποιείται στον κάθετο ολισθητή χρώματος και τα συστατικά απόχρωση και κορεσμός στα δύο πεδία επιλογής χρώματος διαστάσεων. Οι τιμές εκφράζονται σε ποσοστό (0 έως 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2535,7 +2543,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Ορίζει τη φωτεινότητα απευθείας στο χρωματικό πρότυπο HSB. Οι τιμές εκφράζονται σε ποσοστό (0 έως 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2543,7 +2551,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2559,7 +2567,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει την τιμή του κυανού χρώματος όπως εκφράζεται στο χρωματικό πρότυπο CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2575,7 +2583,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει την τιμή του χρώματος ματζέντα όπως εκφράζεται στο χρωματικό πρότυπο CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2591,7 +2599,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει την τιμή του κίτρινου χρώματος όπως εκφράζεται στο χρωματικό πρότυπο CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2607,7 +2615,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ορίζει την τιμή του μαύρου χρώματος ή κλειδιού (μαύρο) όπως εκφράζεται στο χρωματικό πρότυπο CMYK.</ahelp>"
#: 01010600.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter.po b/source/el/helpcontent2/source/text/swriter.po
index d90106d3b77..21b470e042f 100644
--- a/source/el/helpcontent2/source/text/swriter.po
+++ b/source/el/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-12 04:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494564628.000000\n"
#: classificationbar.xhp
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Αρίθμηση διάρθρωσης</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/00.po b/source/el/helpcontent2/source/text/swriter/00.po
index a8fb8f05660..8c564b5705b 100644
--- a/source/el/helpcontent2/source/text/swriter/00.po
+++ b/source/el/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-15 05:38+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494826730.000000\n"
#: 00000004.xhp
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Επιλέξτε <emph>Εργαλεία - Αρίθμηση διάρθρωσης</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Επιλέξτε την καρτέλα <emph>Εργαλεία - Αρίθμηση διάρθρωσης - Αρίθμηση</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Επιλέξτε <emph>Εργαλεία - Αρίθμηση γραμμών</emph> (όχι για μορφή HTML) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index 51d05460ca5..962a91650be 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-05-31 05:27+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1496208433.000000\n"
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Πατήστε στο <emph>1 </emph>για να δείτε μόνο το πρώτο επίπεδο των επικεφαλίδων στο παράθυρο του περιηγητή και <emph>10</emph> για να δείτε όλα τα επίπεδα των επικεφαλίδων.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Εάν επιλέξετε \"Αριθμός κεφαλαίου χωρίς διαχωριστικό\" για ένα πεδίο κεφαλαίου, τα διαχωριστικά που ορίζονται για τον αριθμό κεφαλαίου στο <link href=\"text/swriter/01/06060000.xhp\" name=\"Εργαλεία - Αρίθμηση διάρθρωσης\"><emph>Εργαλεία - Αρίθμηση διάρθρωσης</emph></link>δεν εμφανίζονται."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Εισάγει τον αριθμό κεφαλαίου. Για απόδοση της αρίθμησης κεφαλαίου σε τεχνοτροπία επικεφαλίδας, διαλέξτε<emph> Εργαλεία - Αρίθμηση διάρθρωσης</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Αρίθμηση διάρθρωσης"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Αρίθμηση διάρθρωσης"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Η αρίθμηση κεφαλαίων συνδέεται με τις τεχνοτροπίες παραγράφου. Εξ ορισμού, οι τεχνοτροπίες παραγράφου \"Επικεφαλίδα\" (1-10) ανατίθενται στα αντίστοιχα επίπεδα αρίθμησης διαρθρώσεων (1-10). Εάν επιθυμείτε, μπορείτε να αναθέσετε διαφορετικές τεχνοτροπίες παραγράφου στο επίπεδο αρίθμησης διαρθρώσεων."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Εάν θέλετε αριθμημένες επικεφαλίδες, χρησιμοποιείστε την εντολή μενού <emph>Εργαλεία - Αρίθμηση διάρθρωσης</emph> για να προσθέσετε αρίθμηση σε μια τεχνοτροπία παραγράφου. Μη χρησιμοποιήσετε το εικονίδιο αρίθμησης στη γραμμή εργαλείων μορφοποίησης."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Για να επισημάνετε την προβολή οθόνης των αριθμών των κεφαλαίων, επιλέξτε <emph>Προβολή -</emph><emph>Σκιάσεις πεδίων</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Αποθηκεύει ή φορτώνει μία μορφή αρίθμησης διαρθρώσεων. Μία αποθηκευμένη μορφή διάρθρωσης είναι διαθέσιμη σε όλα τα έγγραφα κειμένου.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Το κουμπί <emph>Μορφή</emph> είναι διαθέσιμο μόνο για αρίθμηση διαρθρώσεων. Για αριθμημένους καταλόγους ή καταλόγους με κουκκίδες, τροποποιήστε τις τεχνοτροπίες αρίθμησης των παραγράφων."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Ανοίγει έναν διάλογο, όπου μπορείτε να αποθηκεύσετε τις τρέχουσες ρυθμίσεις για το επιλεγμένο επίπεδο διάρθρωσης. Μπορείτε έπειτα να φορτώσετε αυτές τις ρυθμίσεις από ένα άλλο έγγραφο.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Πατήστε στο επίπεδο διάρθρωσης που επιθυμείτε να τροποποιήσετε και ύστερα καθορίστε τις επιλογές αρίθμησης για το επίπεδο.</ahelp> Για να εφαρμόσετε τις επιλογές αρίθμησης, εκτός από τις τεχνοτροπίες παραγράφου, σε όλα τα επίπεδα, πατήστε στο \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Επιλέξτε την τεχνοτροπία παραγράφου που επιθυμείτε να αναθέσετε στο επιλεγμένο επίπεδο διάρθρωσης.</ahelp> Αν πατήσετε στο \"Κανένα\", δεν ορίζεται το επιλεγμένο επίπεδο διάρθρωσης."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Νέα ομάδα διεύθυνσης"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Νέα ομάδα διεύθυνσης"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Στοιχεία διεύθυνσης"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Μεταφέρετε το στοιχείο της διεύθυνσης στο παρακάτω πεδίο"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 3d8ce2c3e0c..7ed9547b26f 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-05-18 07:20+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1495092021.000000\n"
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Μπορείτε να μετακινήσετε τις επικεφαλίδες και το κατώτερο κείμενό πάνω και κάτω σε ένα έγγραφο κειμένου χρησιμοποιώντας τον περιηγητή. Μπορείτε να προβιβάσετε ή να υποβιβάσετε τα επίπεδα των επικεφαλίδων. Για να χρησιμοποιήσετε αυτή τη δυνατότητα, μορφοποιήστε τις επικεφαλίδες στο έγγραφό σας με μία από τα προκαθορισμένες τεχνοτροπίες επικεφαλίδας παραγράφου. Για να χρησιμοποιήσετε μια προσαρμοσμένη τεχνοτροπία παραγράφου για μια επικεφαλίδα, επιλέξτε <emph>Εργαλεία - Αρίθμηση διάρθρωσης</emph>, επιλέξτε την τεχνοτροπία στο πλαίσιο <emph>Τεχνοτροπία παραγράφου</emph> και ύστερα διπλοπατήστε σε έναν αριθμό στον κατάλογο <emph>Επίπεδα</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2902,32 +2902,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Αρίθμηση κεφαλαίων"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>περιγράμματα;αρίθμηση</bookmark_value> <bookmark_value>διαγραφή;αριθμοί επικεφαλίδων</bookmark_value> <bookmark_value>αρίθμηση κεφαλαίων</bookmark_value> <bookmark_value>επικεφαλίδες; αρίθμηση/τεχνοτροπίες παραγράφων</bookmark_value> <bookmark_value>αρίθμηση;κεφαλίδες</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Αρίθμηση διάρθρωσης\">Αρίθμηση διάρθρωσης</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Μπορείτε να τροποποιήσετε την ιεραρχία των επικεφαλίδων ή να αντιστοιχίσετε ένα επίπεδο της ιεραρχίας σε μια προσαρμοσμένη τεχνοτροπία παραγράφου. Μπορείτε επίσης να προσθέσετε αρίθμηση κεφαλαίων και ενοτήτων σε τεχνοτροπίες παραγράφου επικεφαλίδων. Εξ ορισμού, η τεχνοτροπία παραγράφου \"Επικεφαλίδα1\" είναι στην κορυφή της ιεραρχίας διάρθρωσης."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2942,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Επιλέξτε <item type=\"menuitem\">Εργαλεία - Αρίθμηση διάρθρωσης</item> και ύστερα πατήστε στην καρτέλα <item type=\"menuitem\">Αρίθμηση</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2966,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Για να αφαιρέσετε την αυτόματη αρίθμηση κεφαλαίων από μια παράγραφο επικεφαλίδας"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2998,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Επιλέξτε <item type=\"menuitem\">Εργαλεία - Αρίθμηση διάρθρωσης</item> και ύστερα πατήστε στην καρτέλα <item type=\"menuitem\">Αρίθμηση</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6110,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Πριν μπορέσετε να εισάγετε πληροφορίες κεφαλαίου σε μια κεφαλίδα ή υποσέλιδο, πρέπει πρώτα να ορίσετε τις επιλογές αρίθμησης διάρθρωσης για την τεχνοτροπία παραγράφου που επιθυμείτε να χρησιμοποιήσετε για τους τίτλους των κεφαλαίων."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6126,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Επιλέξτε <emph>Εργαλεία - Αρίθμηση διάρθρωσης</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7126,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>ευρετήρια; καθορισμός καταχωρίσεων σε</bookmark_value><bookmark_value>πίνακες περιεχομένων; καθορισμός καταχωρίσεων σε</bookmark_value><bookmark_value>καταχωρίσεις; καθορισμός σε ευρετήρια/πίνακες περιεχομένων</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7158,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Επιλέξτε <emph>Εισαγωγή - Πίνακας περιεχομένων και ευρετήριο - Καταχώριση ευρετηρίου</emph> και εφαρμόστε κάποιο από τα ακόλουθα:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7214,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Επιλέξτε <emph>Εργαλεία - Αρίθμηση κεφαλαίων</emph> και κάντε κλικ στην καρτέλα <emph>Αρίθμηση</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7838,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Αν επιθυμείτε να χρησιμοποιήσετε μια διαφορετική τεχνοτροπία παραγράφου ως καταχώριση στον πίνακα περιεχομένων, επιλέξτε το πεδίο ελέγχου <item type=\"menuitem\">Πρόσθετες τεχνοτροπίες</item> στην περιοχή <item type=\"menuitem\">Δημιουργία από</item> και πατήστε στο πλήκτρο <item type=\"menuitem\">Ανάθεση τεχνοτροπιών</item> δίπλα στο πεδίο ελέγχου. Στον διάλογο <item type=\"menuitem\">Ανάθεση τεχνοτροπιών</item>, πατήστε στην τεχνοτροπία στον κατάλογο και ύστερα πατήστε στο πλήκτρο <item type=\"menuitem\">>> </item> ή το <item type=\"menuitem\"><< </item> για να καθορίσετε το επίπεδο διάρθρωσης για την τεχνοτροπία παραγράφου."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,8 +8014,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Αν επιθυμείτε να χρησιμοποιήσετε μια διαφορετική τεχνοτροπία παραγράφου ως καταχώρηση στον πίνακα περιεχομένων, επιλέξτε <item type=\"menuitem\">Πρόσθετες τεχνοτροπίες</item> και πατήστε το κουμπί <item type=\"menuitem\">Εκχώρηση τεχνοτροπιών</item> δίπλα στο πλαίσιο. Πατήστε την τεχνοτροπία στον κατάλογο και ύστερα πατήστε στο κουμπί <item type=\"menuitem\">>></item> ή το <item type=\"menuitem\"><<</item> για να καθορίσετε το επίπεδο διάρθρωσης για την τεχνοτροπία παραγράφου."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9486,8 +9486,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>αρίθμηση, αφαίρεση/διακοπή</bookmark_value><bookmark_value>λίστες με κουκίδες; διακοπή</bookmark_value><bookmark_value>λίστες; αφαίρεση/διακοπή αρίθμησης</bookmark_value><bookmark_value>διαγραφή; αριθμοί σε λίστες</bookmark_value><bookmark_value>διακοπή αριθμημένων λιστών</bookmark_value><bookmark_value>αλλαγή; αριθμοί εκκίνησης σε λίστες</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9510,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Αν επιθυμείτε να υπάρχουν αριθμημένες επικεφαλίδες, χρησιμοποιήστε την εντολή από το μενού <emph>Εργαλεία - Αρίθμηση κεφαλαίων</emph> για να ορίσετε αρίθμηση σε τεχνοτροπία παραγράφου. Μην χρησιμοποιήσετε το εικονίδιο Αρίθμηση στη γραμμή εργαλείων Μορφοποίηση."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index b728b2159de..7b466ae5b77 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-23 08:10+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-07 05:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1495527015.000000\n"
+"X-POOTLE-MTIME: 1496813757.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -617,8 +617,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Επιλογή θεμάτων"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4022,6 +4022,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Εισαγωγή..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7224,7 +7341,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Κύρια διαφάνεια"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7233,7 +7350,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Σημειώσεις κύ~ριας διαφάνειας"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7917,7 +8034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "~Σημειώσεις"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7935,7 +8052,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "~Γραμμή καρτελών προβολές"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7953,7 +8070,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Κύριο σ~ημείωμα"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8853,7 +8970,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Πλευρικό ~παράθυρο"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21572,7 +21689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "~Διάταξη γραμμής εργαλείων"
#: GenericCommands.xcu
msgctxt ""
@@ -26698,15 +26815,6 @@ msgstr "~Ιδιότητες..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Α~ντικείμενο..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26981,7 +27089,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Επανάληψη των γραμμών κεφαλίδων σε όλες τις σελίδες"
#: WriterCommands.xcu
msgctxt ""
@@ -28439,7 +28547,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Γραμμή για α~λλαγή σελίδας σε όλες τις σελίδες"
#: WriterCommands.xcu
msgctxt ""
@@ -29321,7 +29429,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Λίστα με κουκκίδες"
#: WriterCommands.xcu
msgctxt ""
@@ -29330,7 +29438,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Κατάλογος αρίθμησης"
#: WriterCommands.xcu
msgctxt ""
@@ -29339,7 +29447,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Κατάλογος ρωμαϊκής αρίθμησης"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/el/sc/source/ui/src.po b/source/el/sc/source/ui/src.po
index 9663ea58152..db422e66d28 100644
--- a/source/el/sc/source/ui/src.po
+++ b/source/el/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-26 12:26+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
@@ -2702,7 +2702,7 @@ msgstr "Μετακίνηση περιοχής από #1 σε #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2711,11 +2711,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Αυτή η ενέργεια θα τερματίσει τη λειτουργία εγγραφής αλλαγής.\n"
-"Όλες οι πληροφορίες για τις αλλαγές θα χαθούν.\n"
-"\n"
-"Να γίνει έξοδος από τη λειτουργία εγγραφής αλλαγής;\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2872,10 +2867,10 @@ msgstr "Δεν υποστηρίζονται ένθετοι πίνακες."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Κείμενο σε στήλες"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/el/sfx2/source/view.po b/source/el/sfx2/source/view.po
index fdec1de55d7..6baded4d8bc 100644
--- a/source/el/sfx2/source/view.po
+++ b/source/el/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-21 18:51+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr "Αυτό το έγγραφο έχει άκυρη υπογραφή."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/el/svtools/source/control.po b/source/el/svtools/source/control.po
index 4522658f8e3..209a12917a1 100644
--- a/source/el/svtools/source/control.po
+++ b/source/el/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-05 15:47+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Πλάγια μαύρα"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/el/svtools/source/misc.po b/source/el/svtools/source/misc.po
index af976aa77d7..d1a5978fc3e 100644
--- a/source/el/svtools/source/misc.po
+++ b/source/el/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-18 07:18+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1495091923.000000\n"
@@ -3181,10 +3181,10 @@ msgstr "Μπέκουελ"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Κιτούμπα"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3906,6 +3906,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Ξίμπε"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/el/sw/source/core/undo.po b/source/el/sw/source/core/undo.po
index f58b6178af2..cc5da46c287 100644
--- a/source/el/sw/source/core/undo.po
+++ b/source/el/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-18 17:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "αλλαγή στήλης"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Εισαγωγή $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Διαγραφή $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Τα γνωρίσματα έχουν αλλάξει"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Αλλαγμένος πίνακας"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Αλλαγμένη τεχνοτροπία"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/el/sw/source/uibase/docvw.po b/source/el/sw/source/uibase/docvw.po
index 7a3d34b1f34..bc2a11cc837 100644
--- a/source/el/sw/source/uibase/docvw.po
+++ b/source/el/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-12-10 13:30+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Εφαρμοσμένες τεχνοτροπίες παραγράφου"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/el/sw/source/uibase/ribbar.po b/source/el/sw/source/uibase/ribbar.po
index 4f364a9deda..9d67a56fd5f 100644
--- a/source/el/sw/source/uibase/ribbar.po
+++ b/source/el/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-13 15:27+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Κείμενο τύπου"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/el/sw/source/uibase/uiview.po b/source/el/sw/source/uibase/uiview.po
index 702bdb96037..aa55b3fc8d0 100644
--- a/source/el/sw/source/uibase/uiview.po
+++ b/source/el/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-21 16:48+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Ε~ξαγωγή προέλευσης..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/el/sw/uiconfig/swriter/ui.po b/source/el/sw/uiconfig/swriter/ui.po
index 6b90f210287..84f7716c889 100644
--- a/source/el/sw/uiconfig/swriter/ui.po
+++ b/source/el/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-29 21:16+0000\n"
+"PO-Revision-Date: 2017-06-07 05:38+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496092617.000000\n"
+"X-POOTLE-MTIME: 1496813930.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5329,7 +5329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Περιγραφή:"
#: frmaddpage.ui
msgctxt ""
@@ -7930,7 +7930,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Επεξεργασία σχολίου..."
#: managechangessidebar.ui
msgctxt ""
@@ -7939,7 +7939,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Ταξινόμηση κατά"
#: managechangessidebar.ui
msgctxt ""
@@ -7948,7 +7948,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Ενέργεια"
#: managechangessidebar.ui
msgctxt ""
@@ -7957,7 +7957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Συντάκτης"
#: managechangessidebar.ui
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Ημερομηνία"
#: managechangessidebar.ui
msgctxt ""
@@ -7975,7 +7975,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Σχόλιο"
#: managechangessidebar.ui
msgctxt ""
@@ -7984,7 +7984,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Θέση εγγράφου"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11948,7 +11948,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Χρήση της σειράς χρώματος αγκύρωσης του LibreOffice 4.3 (στο τρέχον έγγραφο)"
#: optcompatpage.ui
msgctxt ""
@@ -11957,7 +11957,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Ρυθμίσεις χρήστη>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/el/xmlsecurity/uiconfig/ui.po b/source/el/xmlsecurity/uiconfig/ui.po
index f060007dc8b..2ee793d0978 100644
--- a/source/el/xmlsecurity/uiconfig/ui.po
+++ b/source/el/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-17 13:18+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Αφαίρεση"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/en-GB/desktop/source/deployment/gui.po b/source/en-GB/desktop/source/deployment/gui.po
index 84bbfdefb7a..4a76be6c0ec 100644
--- a/source/en-GB/desktop/source/deployment/gui.po
+++ b/source/en-GB/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:11+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-27 20:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467659482.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1419711530.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/en-GB/filter/source/config/fragments/filters.po b/source/en-GB/filter/source/config/fragments/filters.po
index fbde2d6f67b..fe12f878f0c 100644
--- a/source/en-GB/filter/source/config/fragments/filters.po
+++ b/source/en-GB/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-04 11:19+0000\n"
+"PO-Revision-Date: 2017-06-12 15:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493896749.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280590.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/en-GB/filter/source/config/fragments/types.po b/source/en-GB/filter/source/config/fragments/types.po
index 52cd0a84393..8664d588799 100644
--- a/source/en-GB/filter/source/config/fragments/types.po
+++ b/source/en-GB/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-04 11:19+0000\n"
+"PO-Revision-Date: 2017-06-12 15:14+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493896753.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280493.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared.po b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
index e80b497ea47..9185e2247d3 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-GB/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 11:50+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 09:34+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496749840.000000\n"
+"X-POOTLE-MTIME: 1498037673.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr "This function is enabled with the statement <item type=\"literal\">Optio
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr "<variable id=\"functsyntax\">Syntax:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr "<variable id=\"functvalue\">Return value:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr "<variable id=\"functparameters\">Parameters:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr "<variable id=\"functexample\">Example:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr "<variable id=\"errorcode\">Error codes:</variable>"
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "This run-time function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr "DDB Function [Runtime - VBA]"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>DDB function</bookmark_value>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>Cost</emph> fixes the initial cost of an asset."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "<emph>Period</emph> states the period for which the value is to be calculated."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr "Print ddb_yr1 ' returns 1,721.81 currency units."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr "FV Function [Runtime - VBA]"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>FV function</bookmark_value>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph> is the total number of periods (payment period)."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>Pmt</emph> is the annuity paid regularly per period."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr "0 - the payment is due at the end of the period;"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr "1 - the payment is due at the beginning of the period."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr "IPmt Function [Runtime - VBA]"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr "<bookmark_value>IPmt function</bookmark_value>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr "Calculates the periodic amortisement for an investment with regular payments and a constant interest rate."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "<emph>PV</emph> is the present cash value in sequence of payments."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr "<emph>Due</emph> (optional) is the due date for the periodic payments."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr "0 - the payment is due at the end of the period;"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr "1 - the payment is due at the beginning of the period."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr "IRR Function [Runtime - VBA]"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr "<bookmark_value>IRR function</bookmark_value>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr "Calculates the internal rate of return for an investment."
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr "<emph>Guess</emph> An initial estimate at what the IRR will be."
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr "MIRR Function [Runtime - VBA]"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr "<bookmark_value>MIRR function</bookmark_value>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr "Calculates the modified internal rate of return of a series of investments."
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr "NPer Function [Runtime - VBA]"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr "<bookmark_value>NPer function</bookmark_value>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr "Calculates the number of periods for a loan or investment."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>Pmt</emph> is the annuity paid regularly per period."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr "<emph>PV</emph> is the (present) cash value of an investment."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr "<emph>FV</emph> (optional) is the future value of the loan / investment."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr "0 - the payment is due at the end of the period;"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr "1 - the payment is due at the beginning of the period."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr "Print period ' returns -12,02. The payment period covers 12.02 periods."
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/en-GB/helpcontent2/source/text/schart/01.po b/source/en-GB/helpcontent2/source/text/schart/01.po
index 1d742fdf199..3bdd07d6f67 100644
--- a/source/en-GB/helpcontent2/source/text/schart/01.po
+++ b/source/en-GB/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-04 11:49+0000\n"
+"PO-Revision-Date: 2017-06-12 15:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496576996.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280618.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "The following regression types are available:"
#: 04050100.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared.po b/source/en-GB/helpcontent2/source/text/shared.po
index 256752a862e..f757ad8d0f0 100644
--- a/source/en-GB/helpcontent2/source/text/shared.po
+++ b/source/en-GB/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-28 16:29+0000\n"
+"PO-Revision-Date: 2017-06-12 15:24+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495988982.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497281044.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Select an extrusion depth."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Select a perspective or parallel extrusion method."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Select a lighting direction."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Select a lighting intensity."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Select a surface material or a wireframe display."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Click to apply the alignment to the selected Fontwork objects."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Click to apply the character spacing to the selected Fontwork objects."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Opens the Fontwork Character Spacing dialogue box where you can enter a new character spacing value."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
#: main0108.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/00.po b/source/en-GB/helpcontent2/source/text/shared/00.po
index 83ff7b89b37..0cb7e3c8fe1 100644
--- a/source/en-GB/helpcontent2/source/text/shared/00.po
+++ b/source/en-GB/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 11:09+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 09:43+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496747355.000000\n"
+"X-POOTLE-MTIME: 1498038188.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index 42e078b53cb..112f70ecf34 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 20:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 09:35+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496782295.000000\n"
+"X-POOTLE-MTIME: 1498037722.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as described below. The template is associated with the document, it may be called a \"sticky template\"."
#: 01020000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
#: 01160300.xhp
msgctxt ""
@@ -30206,7 +30206,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Conversion Direction"
-msgstr ""
+msgstr "Conversion Direction"
#: 06010600.xhp
msgctxt ""
@@ -30214,7 +30214,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Select the conversion direction."
-msgstr ""
+msgstr "Select the conversion direction."
#: 06010600.xhp
msgctxt ""
@@ -30222,7 +30222,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "Traditional Chinese to simplified Chinese"
#: 06010600.xhp
msgctxt ""
@@ -30238,7 +30238,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "Simplified Chinese to traditional Chinese"
#: 06010600.xhp
msgctxt ""
@@ -30254,7 +30254,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "Common Terms"
-msgstr ""
+msgstr "Common Terms"
#: 06010600.xhp
msgctxt ""
@@ -30262,7 +30262,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
-msgstr ""
+msgstr "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
#: 06010600.xhp
msgctxt ""
@@ -30270,7 +30270,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Translate common terms"
-msgstr ""
+msgstr "Translate common terms"
#: 06010600.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/guide.po b/source/en-GB/helpcontent2/source/text/shared/guide.po
index 08d5cf9c7a6..19c7c89063b 100644
--- a/source/en-GB/helpcontent2/source/text/shared/guide.po
+++ b/source/en-GB/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-04 22:47+0000\n"
+"PO-Revision-Date: 2017-06-12 15:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496616472.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280726.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
#: digital_signatures.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
#: digital_signatures.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 8269b8950cf..2f9dc85d104 100644
--- a/source/en-GB/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-GB/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 12:59+0000\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-21 09:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496753984.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498037810.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Selecting a new colour"
#: 01010501.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Selecting a new colour"
#: 01010501.xhp
msgctxt ""
@@ -2277,16 +2277,24 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
-msgstr ""
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgstr "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colours using a two-dimensional graphic and numerical gradient chart of the Pick a Colour dialogue box.</ahelp></variable> Click <emph>OK</emph> to display the newly defined colour in the <emph>New</emph> preview box of the <emph>Colours</emph> tab, where you can then decide if you want to add or replace the new colour in the current colour palette."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
-msgstr ""
+msgid "The Pick a Color Window"
+msgstr "The Pick a Colour Window"
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Colour window</caption></image>"
#: 01010501.xhp
msgctxt ""
@@ -2294,15 +2302,15 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "The Pick a Colour Dialogue box window consists of four main areas."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
-msgstr ""
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
+msgstr "The radio buttons select the colour component of the colour. This colour component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) colour models. The CMYK colour model is not selectable and is provided only to ease the input of colour values using CMYK notation."
#: 01010501.xhp
msgctxt ""
@@ -2310,7 +2318,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "The spin buttons are for entering the numerical value of the color component."
-msgstr ""
+msgstr "The spin buttons are for entering the numerical value of the colour component."
#: 01010501.xhp
msgctxt ""
@@ -2318,7 +2326,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">With the vertical colour component slider you can modify the value of each component of the colour.</ahelp> With the large coloured square you can select the colour component approximatively."
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2334,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "The horizontal bottom colour bar shows the current colour and the new colour, side by side."
#: 01010501.xhp
msgctxt ""
@@ -2334,7 +2342,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Click in the big colour area on the left to select a new colour. Using this selector area you can modify two components of the colour as represented in the RGB or HSB colour models. Note that these are the two components not selected with the radio buttons on the right side of the dialogue box.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2342,7 +2350,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original colour from the parent tab, <emph>Colours</emph>.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2350,7 +2358,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialogue box is visible.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2366,7 +2374,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: 01010501.xhp
msgctxt ""
@@ -2382,7 +2390,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sets the Red component modifiable on the vertical colour slider, and the Green and Blue components in the two dimensional colour picker field. Allowed values are 0 to 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2390,7 +2398,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red colour value directly. Allowed values are 0 to 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2406,7 +2414,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sets the Green component modifiable on the vertical colour slider, and the Green and Blue components in the two dimensional colour picker field. Allowed values are 0 to 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2414,7 +2422,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green colour value directly. Allowed values are 0 to 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2430,7 +2438,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sets the Red component modifiable on the vertical colour slider, and the Green and Blue components in the two dimensional colour picker field. Allowed values are 0 to 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2438,7 +2446,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue colour value directly. Allowed values are 0 to 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2446,7 +2454,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "Hex #"
#: 01010501.xhp
msgctxt ""
@@ -2454,7 +2462,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Displays and sets the colour value in the RGB colour model expressed as a hexadecimal number.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2462,7 +2470,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2470,7 +2478,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Hue"
#: 01010501.xhp
msgctxt ""
@@ -2478,7 +2486,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical colour slider, and the Saturation and Brightness components in the two dimensional colour picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2486,7 +2494,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB colour model. Values are expressed in degrees from 0 to 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2502,7 +2510,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical colour slider, and the Hue and Brightness components in the two dimensional colour picker field. Values are expressed in percent (0 to 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2510,7 +2518,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB colour model. Values are expressed in percent (0 to 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2518,7 +2526,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Brightness"
#: 01010501.xhp
msgctxt ""
@@ -2526,7 +2534,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical colour slider, and the Hue and Saturation components in the two dimensional colour picker field. Values are expressed in percent (0 to 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2534,7 +2542,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB colour model. Values are expressed in percent (0 to 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2542,7 +2550,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2558,7 +2566,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set the Cyan colour value as expressed in the CMYK colour model.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2574,7 +2582,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set the Magenta colour value as expressed in the CMYK colour model.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2590,7 +2598,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set the Yellow colour value as expressed in the CMYK colour model.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2606,7 +2614,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set the Black colour value or key (black) as expressed in the CMYK colour model.</ahelp>"
#: 01010600.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter.po b/source/en-GB/helpcontent2/source/text/swriter.po
index 6bfdcc99bc0..bbf93576898 100644
--- a/source/en-GB/helpcontent2/source/text/swriter.po
+++ b/source/en-GB/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-04 11:31+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 09:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496575903.000000\n"
+"X-POOTLE-MTIME: 1498037815.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
#: main0106.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter/00.po b/source/en-GB/helpcontent2/source/text/swriter/00.po
index c10b63da99b..41d3c63ef4d 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/00.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 15:32+0000\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
+"PO-Revision-Date: 2017-06-21 09:37+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496503962.000000\n"
+"X-POOTLE-MTIME: 1498037837.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter/01.po b/source/en-GB/helpcontent2/source/text/swriter/01.po
index 404ea2c4baf..bf052ebf3b9 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/01.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 13:04+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-21 09:41+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496754292.000000\n"
+"X-POOTLE-MTIME: 1498038103.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1</emph> to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose <emph>Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr "Chapter Numbering"
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr "Chapter Numbering"
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialogue box with which you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialogue box where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "New Address Block"
+msgid "New Address Block / Edit Address Block"
+msgstr "New Address Block / Edit Address Block"
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "New Address Block"
+msgid "New Address Block or Edit Address Block"
+msgstr "New Address Block or Edit Address Block"
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Address Elements"
+msgid "Address elements"
+msgstr "Address elements"
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Drag address element to the field below"
+msgid "Drag address elements here"
+msgstr "Drag address elements here"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index 5097de3723a..e2316b2db74 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2017-06-06 13:10+0000\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-21 09:41+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496754652.000000\n"
+"X-POOTLE-MTIME: 1498038089.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr "Chapter Numbering"
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr "To Remove Automatic Chapter Numbering From a Heading Paragraph"
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indexes; defining entries in</bookmark_value><bookmark_value>tables of contents; defining entries in</bookmark_value><bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialogue box, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialogue box, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numbering; removing/interrupting</bookmark_value><bookmark_value>bullet lists; interrupting</bookmark_value><bookmark_value>lists;removing/interrupting numbering</bookmark_value><bookmark_value>removing;numbers in lists</bookmark_value><bookmark_value>interrupting numbered lists</bookmark_value><bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index 0fc13c27311..fc699cf1b4a 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-28 09:19+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:30+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495963183.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997830.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Choose Themes"
+msgid "Spreadsheet Theme"
+msgstr "Spreadsheet Theme"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Insert..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Default"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Accent 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Accent 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Accent 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Heading 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Heading 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Bad"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Error"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Good"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutral"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Warning"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Footnote"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Slide ~Master"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Notes M~aster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Not~es"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Views Tab ~Bar"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Hando~ut Master"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Slide ~Pane"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Toolbar ~Layout"
#: GenericCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Properties..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Object..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Header Rows Repeat Across Pages"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Row to ~Break Across Pages"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Bullet List"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Number List"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Roman List"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/en-GB/sc/source/ui/src.po b/source/en-GB/sc/source/ui/src.po
index e3835fda526..103322b5ac4 100644
--- a/source/en-GB/sc/source/ui/src.po
+++ b/source/en-GB/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-06 10:43+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:30+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494067417.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997843.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Range moved from #1 to #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2871,7 +2871,7 @@ msgstr "Nested arrays are not supported."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "Text to Columns"
diff --git a/source/en-GB/sfx2/source/view.po b/source/en-GB/sfx2/source/view.po
index 06c21969f5f..5fd89cdec36 100644
--- a/source/en-GB/sfx2/source/view.po
+++ b/source/en-GB/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-06 10:14+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:30+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494065646.000000\n"
+"X-POOTLE-MTIME: 1497997847.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "This document has an invalid signature."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "The signature was valid, but the document has been modified"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/en-GB/svtools/source/control.po b/source/en-GB/svtools/source/control.po
index 10d4ab78d82..8b836ec6f18 100644
--- a/source/en-GB/svtools/source/control.po
+++ b/source/en-GB/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-06-28 13:27+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:33+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1435498056.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997981.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Black Italic"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Book"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Bold Oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Condensed"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Condensed Bold"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Condensed Bold Italic"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Condensed Bold Oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Condensed Oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "ExtraLight"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "ExtraLight Italic"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Semibold"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Semibold Italic"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/en-GB/svtools/source/misc.po b/source/en-GB/svtools/source/misc.po
index a816cb1d964..61b8ec267e0 100644
--- a/source/en-GB/svtools/source/misc.po
+++ b/source/en-GB/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-28 09:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:31+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495963212.000000\n"
+"X-POOTLE-MTIME: 1497997915.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (Democratic Republic of the Congo)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
@@ -3967,7 +3976,7 @@ msgctxt ""
"STR_SVT_ESTIMATED_SIZE_PIX_1\n"
"string.text"
msgid "The image needs about %1 KB of memory."
-msgstr ""
+msgstr "The image needs about %1 KB of memory."
#: svtools.src
msgctxt ""
@@ -3975,7 +3984,7 @@ msgctxt ""
"STR_SVT_ESTIMATED_SIZE_PIX_2\n"
"string.text"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
-msgstr ""
+msgstr "The image needs about %1 KB of memory, the file size is %2 KB."
#: svtools.src
msgctxt ""
@@ -3991,7 +4000,7 @@ msgctxt ""
"STR_SVT_HOST\n"
"string.text"
msgid "host"
-msgstr ""
+msgstr "host"
#: svtools.src
msgctxt ""
@@ -3999,7 +4008,7 @@ msgctxt ""
"STR_SVT_PORT\n"
"string.text"
msgid "port"
-msgstr ""
+msgstr "port"
#: svtools.src
msgctxt ""
diff --git a/source/en-GB/sw/source/core/undo.po b/source/en-GB/sw/source/core/undo.po
index 39a8aff82d8..a0815aab639 100644
--- a/source/en-GB/sw/source/core/undo.po
+++ b/source/en-GB/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-06 10:32+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:32+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494066728.000000\n"
+"X-POOTLE-MTIME: 1497997948.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "column break"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Insert $1"
@@ -899,7 +899,7 @@ msgstr "Insert $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Delete $1"
@@ -907,7 +907,7 @@ msgstr "Delete $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr "Attributes changed"
@@ -915,7 +915,7 @@ msgstr "Attributes changed"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr "Table changed"
@@ -923,7 +923,7 @@ msgstr "Table changed"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
msgstr "Style changed"
@@ -931,6 +931,46 @@ msgstr "Style changed"
#: undo.src
msgctxt ""
"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Paragraph formatting changed"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Insert Row"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Delete Row"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Insert Cell"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Delete Cell"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
"STR_N_REDLINES\n"
"string.text"
msgid "$1 changes"
diff --git a/source/en-GB/sw/source/uibase/docvw.po b/source/en-GB/sw/source/uibase/docvw.po
index f1ee7b1a202..34fd48d8a3c 100644
--- a/source/en-GB/sw/source/uibase/docvw.po
+++ b/source/en-GB/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-05-01 21:03+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:32+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462136619.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997964.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Applied Paragraph Styles"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Paragraph formatting changed"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Row Inserted"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Row Deleted"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Cell Inserted"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/en-GB/sw/source/uibase/ribbar.po b/source/en-GB/sw/source/uibase/ribbar.po
index 8d68a8ada53..3be49a12f97 100644
--- a/source/en-GB/sw/source/uibase/ribbar.po
+++ b/source/en-GB/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-11-17 15:50+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:32+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479397848.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997967.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formula Text"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Text Formula"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/en-GB/sw/source/uibase/uiview.po b/source/en-GB/sw/source/uibase/uiview.po
index 788ea6eaca6..50367553a03 100644
--- a/source/en-GB/sw/source/uibase/uiview.po
+++ b/source/en-GB/sw/source/uibase/uiview.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 21:04+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:32+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462136661.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997970.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Export source..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Export copy of source..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/en-GB/sw/uiconfig/swriter/ui.po b/source/en-GB/sw/uiconfig/swriter/ui.po
index 9ec179f3663..4d1dfc433c8 100644
--- a/source/en-GB/sw/uiconfig/swriter/ui.po
+++ b/source/en-GB/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-03 15:30+0000\n"
+"PO-Revision-Date: 2017-06-12 15:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: none\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496503842.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497280580.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Description:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Edit Comment..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Sort By"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Action"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Author"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Date"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Comment"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Document Position"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Use LibreOffice 4.3 anchoring paint order (in current document)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<User settings>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/en-GB/xmlsecurity/uiconfig/ui.po b/source/en-GB/xmlsecurity/uiconfig/ui.po
index 986a974bbdf..b239154a276 100644
--- a/source/en-GB/xmlsecurity/uiconfig/ui.po
+++ b/source/en-GB/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-24 14:58+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:32+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493045937.000000\n"
+"X-POOTLE-MTIME: 1497997974.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Remove"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Start Certificate Manager..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/en-ZA/desktop/source/deployment/gui.po b/source/en-ZA/desktop/source/deployment/gui.po
index fde76e23678..7f934537e0a 100644
--- a/source/en-ZA/desktop/source/deployment/gui.po
+++ b/source/en-ZA/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-21 22:01+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
index f1e7999d00d..a789ac69282 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 18:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.openoffice.org\">api.openoffice.org</link> for more information."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index 687c53e26f4..4b0488f4f50 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 08:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 3642bb24cb4..5cb123a6167 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-05 21:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Selects to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index ef5bec2c9e6..bf5c96044ab 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-05 22:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/swriter.po b/source/en-ZA/helpcontent2/source/text/swriter.po
index 76a2567a5f6..b96ac2303c8 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 09:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/00.po b/source/en-ZA/helpcontent2/source/text/swriter/00.po
index 47e57dd2e35..88f23e3deea 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/00.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 09:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/01.po b/source/en-ZA/helpcontent2/source/text/swriter/01.po
index 03e1e0b6035..71557a15f13 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/01.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-05 22:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialogue where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "New Address Block"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "New Address Block"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Address Elements"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Drag address element to the field below"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/guide.po b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
index c7bf276d283..91485aa113e 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-05 22:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style </emph>box, and then double-click a number in the <emph>Levels </emph>list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Choose <emph>Insert - Indexes and Tables - Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the (<item type=\"menuitem\">...</item>) button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialogue, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index 22a64ebc164..c88377fc416 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-21 22:12+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -627,8 +627,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Choose Themes"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4091,6 +4091,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27046,15 +27163,6 @@ msgid "~Properties..."
msgstr "Properties..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/en-ZA/sc/source/ui/src.po b/source/en-ZA/sc/source/ui/src.po
index 49c65dd2ae4..88b0293fa56 100644
--- a/source/en-ZA/sc/source/ui/src.po
+++ b/source/en-ZA/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 15:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Range moved from #1 to #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "Nested arrays are not supported."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/en-ZA/sfx2/source/view.po b/source/en-ZA/sfx2/source/view.po
index 2cb31f80d2a..96e8775e73c 100644
--- a/source/en-ZA/sfx2/source/view.po
+++ b/source/en-ZA/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/en-ZA/svtools/source/control.po b/source/en-ZA/svtools/source/control.po
index b9c79351cd9..24791fc4049 100644
--- a/source/en-ZA/svtools/source/control.po
+++ b/source/en-ZA/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-25 23:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Black Italic"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/en-ZA/svtools/source/misc.po b/source/en-ZA/svtools/source/misc.po
index 3528042870d..35d1e982d2e 100644
--- a/source/en-ZA/svtools/source/misc.po
+++ b/source/en-ZA/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-21 22:13+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3190,9 +3190,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3921,6 +3921,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/en-ZA/sw/source/core/undo.po b/source/en-ZA/sw/source/core/undo.po
index 1351ac9dc0b..2386c8e843c 100644
--- a/source/en-ZA/sw/source/core/undo.po
+++ b/source/en-ZA/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-15 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "column break"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Insert $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Delete $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attributes changed"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Table changed"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Style changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/en-ZA/sw/source/uibase/docvw.po b/source/en-ZA/sw/source/uibase/docvw.po
index 4fd77446afe..9948e51999b 100644
--- a/source/en-ZA/sw/source/uibase/docvw.po
+++ b/source/en-ZA/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 19:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/en-ZA/sw/source/uibase/ribbar.po b/source/en-ZA/sw/source/uibase/ribbar.po
index e938781ce03..1957748590d 100644
--- a/source/en-ZA/sw/source/uibase/ribbar.po
+++ b/source/en-ZA/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-15 14:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/en-ZA/sw/source/uibase/uiview.po b/source/en-ZA/sw/source/uibase/uiview.po
index e4b78eb01c7..5eb575b3863 100644
--- a/source/en-ZA/sw/source/uibase/uiview.po
+++ b/source/en-ZA/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 19:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/en-ZA/xmlsecurity/uiconfig/ui.po b/source/en-ZA/xmlsecurity/uiconfig/ui.po
index bb56a17c9c5..7ab26c05d87 100644
--- a/source/en-ZA/xmlsecurity/uiconfig/ui.po
+++ b/source/en-ZA/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/eo/desktop/source/deployment/gui.po b/source/eo/desktop/source/deployment/gui.po
index ff235d72a55..5cdfb8ba6e0 100644
--- a/source/eo/desktop/source/deployment/gui.po
+++ b/source/eo/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:43+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-06-18 23:08+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661391.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1434668939.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/eo/helpcontent2/source/text/sbasic/shared.po b/source/eo/helpcontent2/source/text/sbasic/shared.po
index 6e1242e3521..6e9b69d21d0 100644
--- a/source/eo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-26 21:38+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Erarkodoj</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Ĉi tiu rultempa funkcio liveras la aprioran komponantan kuntekston uzotan, se generante servojn per XmultiServiceFactory. Vidu la ĉapitron <item type=\"literal\">Profesia UNO</item> en la <item type=\"literal\">Manlibro por programistoj</item> ĉe <link href=\"http://api.openoffice.org\">api.openoffice.org</link> por plia informo."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index 459f4247533..7ea48277c66 100644
--- a/source/eo/helpcontent2/source/text/shared/00.po
+++ b/source/eo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-19 23:38+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index 69e968705cd..e4b79edb997 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-23 14:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index 3887bc2d37f..7c2f5f7a30e 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 01:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/eo/helpcontent2/source/text/swriter.po b/source/eo/helpcontent2/source/text/swriter.po
index dfc965f629a..ff8d78c4d28 100644
--- a/source/eo/helpcontent2/source/text/swriter.po
+++ b/source/eo/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-19 23:05+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Skema numerado</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter/00.po b/source/eo/helpcontent2/source/text/swriter/00.po
index 1d8a62db1da..1422ac73927 100644
--- a/source/eo/helpcontent2/source/text/swriter/00.po
+++ b/source/eo/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-01-19 23:48+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Elektu menueron <emph>Iloj - Skema numerado</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Elektu la langeton <emph>Iloj - Skema numerado - Numerado</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Elektu je <emph>Iloj - Linia numerado</emph> (ne por HTML-formato) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter/01.po b/source/eo/helpcontent2/source/text/swriter/01.po
index 5e743b33fed..ff76993c02c 100644
--- a/source/eo/helpcontent2/source/text/swriter/01.po
+++ b/source/eo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-11-11 22:53+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Alklaku je <emph>1 </emph>por vidi nur la supranivelajn titolojn en la fenestro Navigilo, kaj je <emph>10</emph> por vidi ĉiujn titolojn.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Se vi elektas \"Ĉapitronumeron sen apartigilo\" por ĉapitra kampo, la apartigiloj kiuj estas agorditaj por ĉapitronumerado en <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Iloj - Skema numerado</emph></link> ne estas vidigataj."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Enmetas la tutan ĉapitran titolon, inkluzive, se havebla, de la ĉapitra numero. Por agordi ĉapitran numeron al titola stilo, elektu je <emph>Iloj - Skema numerado</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Skema numerado"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Skema numerado"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Skema numerado ligiĝas al alineaj stiloj. Apriore, la \"Titolaj\" alineaj stiloj (1-10) estas atribuitaj al la rilataj skemnumeraj niveloj (1-10). Se vi deziras, vi povas atribui aliajn alineajn stilojn al la skema numera nivelo."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Por numeradaj titoloj, uzu la menuan komandon <emph>Iloj - Skema numerado</emph> por agordi numeradon al alinea stilo. Ne uzu la bildsimbolon en la ilbreto Formato."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Por emfazi la surekranan vidigon de skemaj numeroj, elektu je <emph>Vido -</emph><emph>Kampoj reliefigitaj</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Konservas aŭ ŝargas skemnumeran formaton. Konservita skemnumera formato disponeblas al ĉiuj tekstaj dokumentoj.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "La butono <emph>Formato</emph> disponeblas nur por skema numerado. Por numeradaj aŭ bulaj listaj stiloj, modifu la Numeradajn Stilojn de alineoj."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Malfermas dialogon kie oni povas konservi la aktualajn agordaĵojn por la elektita skema nivelo. Oni povas ŝargi tiujn agordaĵojn el alia dokumento.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Alklaku la skeman nivelon ŝanĝotan, kaj agordu la numeradon por la nivelo.</ahelp> Por apliki la numeradajn agordaĵojn, krom alineaj stiloj, al ĉiuj niveloj, alklaku je \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Elektu la alinestilon atribuotan al la elektita skema nivelo.</ahelp> Se vi alklakas je \"Neniu\", la elektita skema nivelo ne estas agordita."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nova adresbloko"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nova adresbloko"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adreselementoj"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Ŝovu adresan elementon al la malsupra kampo."
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index 89144a8b79a..a063d0355d9 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-11-12 00:27+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Oni povas movi titolojn kaj subrangan tekston supren kaj malsupren en dokumenta teksto uzante la Navigilon. Oni povas ankaŭ pligravigi kaj malpligravigi titolajn nivelojn. Por uzi tiun eblon, formatu la titolojn en la dokumento per unu el la antaŭe difinitaj titolaj alineaj stiloj. Por uzi propran alinean stilon por titolo, elektu menuerojn <emph>Iloj - Skema numerado</emph>, elektu la stilon en la kadro <emph>Alinea stilo</emph>, kaj tiam duoble alklaku numeron en la listo <emph>Niveloj</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Skema numerado"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>skemoj;numerado</bookmark_value> <bookmark_value>forigi;titolajn numerojn</bookmark_value> <bookmark_value>ĉapitra numerado</bookmark_value> <bookmark_value>titoloj; numerado/alineaj stiloj</bookmark_value> <bookmark_value>numerado;titoloj</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Skema numerado</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Oni povas modifi la titolan hierarkion aŭ agordi nivelon en la hierarkio al propra alinea stilo. Oni ankaŭ povas aldoni ĉapitran kaj sekcian numeradon al la titolaj alineaj stiloj. Apriore, la alinea stilo \"Heading 1\" estas ĉe la supro de la skema hierarkio."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Elektu je <item type=\"menuitem\">Iloj - Skema numerado</item>, kaj alklaku la langeton <item type=\"menuitem\">Numerado</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Por forigi Aŭtomatan skeman numeradon de titola alineo"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Elektu je <item type=\"menuitem\">Iloj - Skema numerado</item>, kaj alklaku la langeton <item type=\"menuitem\">Numerado</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Antaŭ ol oni povas enmeti ĉapitran informon en paĝokapon aŭ paĝopiedon, oni devas agordi la skeman numeradon por la alinea stilo uzota por la ĉapitraj titoloj."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Elektu menuerojn <emph>Iloj - Skema numerado</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indeksoj; difini elementon en</bookmark_value> <bookmark_value>tabelo de enhavo; difini elementon en</bookmark_value> <bookmark_value>elementoj; difini en indeksoj/tabelo de enhavo</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Elektu menuerojn <emph>Enmeti - Indeksoj kaj Tabeloj - Ero</emph>, kaj faru iun el la jenaj:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Elektu menuerojn <emph>Iloj - Skema numerado</emph> kaj alklaku la langeton <emph>Numerado</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Se vi volas uzi alian alinean stilon kiel elementon de tabelo de enhavo elektu la markobutonon <item type=\"menuitem\">Pluaj stiloj</item> en la areo <item type=\"menuitem\">Krei el</item>, kaj tiam alklaku la (<item type=\"menuitem\">...</item>) butonon apud la markobutono en la dialogo <item type=\"menuitem\">Agordi stilojn</item>, alklaku la stilon en la lsto, kaj alklaku la butonon <item type=\"menuitem\">>></item> aŭ <item type=\"menuitem\"><<</item> por agordi la konturan nivelon por la alinea stilo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numerado; forigi/interrompi</bookmark_value> <bookmark_value>bula listo; interrompi</bookmark_value> <bookmark_value>listoj;forigi/interrompi numeradon</bookmark_value> <bookmark_value>forigi;numerojn en listoj</bookmark_value> <bookmark_value>interrompi numeritajn listojn</bookmark_value> <bookmark_value>ŝanĝi;komenci numerojn en listoj</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Por numeradaj titoloj, uzu la menuan komandon <emph>Iloj - Skema numerado</emph> por agordi numeradon al alinea stilo. Ne uzu la bildsimbolon en la ilbreto Formato."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
index fcd349887c8..fd6a105ad77 100644
--- a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-06-04 20:38+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Elekti etosojn"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Enmeti..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "Atributoj..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Objekto..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/eo/sc/source/ui/src.po b/source/eo/sc/source/ui/src.po
index c6c76906a43..252b3cf07a3 100644
--- a/source/eo/sc/source/ui/src.po
+++ b/source/eo/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-18 03:44+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495079044.000000\n"
#: globstr.src
@@ -2701,7 +2701,7 @@ msgstr "Amplekso movis de #1 al #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Ĉi tiu ago finos la ŝanĝregistran reĝimon.\n"
-"Ĉiu informo pri ŝanĝoj perdiĝos.\n"
-"\n"
-"Ĉu fini ŝanĝregistran reĝimon?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Hierarkiaj tabeloj ne estas subtenataj."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Teksto al kolumnoj"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/eo/sfx2/source/view.po b/source/eo/sfx2/source/view.po
index 20bfde0ff32..9b369450d56 100644
--- a/source/eo/sfx2/source/view.po
+++ b/source/eo/sfx2/source/view.po
@@ -3,9 +3,9 @@ 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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-04 21:17+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 12:23+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496611056.000000\n"
+"X-POOTLE-MTIME: 1497961393.000000\n"
#: view.src
msgctxt ""
@@ -251,6 +251,14 @@ msgstr "La dokumento havas nevalidan subskribon."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
@@ -262,7 +270,7 @@ msgctxt ""
"STR_SIGNATURE_PARTIAL_OK\n"
"string.text"
msgid "The signature is OK, but the document is only partially signed."
-msgstr ""
+msgstr "La subskribo estas en ordo, sed la dokumento estas nur parte subskribita."
#: view.src
msgctxt ""
@@ -270,7 +278,7 @@ msgctxt ""
"STR_SIGNATURE_OK\n"
"string.text"
msgid "This document is digitally signed and the signature is valid."
-msgstr ""
+msgstr "La dokumento estas cifere subskribita kaj la subskribo estas valida."
#: view.src
msgctxt ""
@@ -278,4 +286,4 @@ msgctxt ""
"STR_SIGNATURE_SHOW\n"
"string.text"
msgid "Show Signatures"
-msgstr ""
+msgstr "Vidigi subskribojn"
diff --git a/source/eo/svtools/source/control.po b/source/eo/svtools/source/control.po
index a7bc68438da..75e5592bd80 100644
--- a/source/eo/svtools/source/control.po
+++ b/source/eo/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-28 09:30+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Nigra kursiva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/eo/svtools/source/misc.po b/source/eo/svtools/source/misc.po
index 9e4b67137fd..765db52efde 100644
--- a/source/eo/svtools/source/misc.po
+++ b/source/eo/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-04 23:16+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1496618175.000000\n"
@@ -3181,10 +3181,10 @@ msgstr "Bekvela"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3906,6 +3906,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/eo/sw/source/core/undo.po b/source/eo/sw/source/core/undo.po
index f9d0d4c0b9e..abaae0f12dd 100644
--- a/source/eo/sw/source/core/undo.po
+++ b/source/eo/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-12 02:31+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494556263.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "kolumnosalto"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Enmeti $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Forigi $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributoj ŝanĝitaj"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabelo ŝanĝita"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stilo ŝanĝita"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/eo/sw/source/uibase/docvw.po b/source/eo/sw/source/uibase/docvw.po
index 893ca5289fd..2f0f10e3444 100644
--- a/source/eo/sw/source/uibase/docvw.po
+++ b/source/eo/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 21:26+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Aplikitaj alinestiloj"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/eo/sw/source/uibase/ribbar.po b/source/eo/sw/source/uibase/ribbar.po
index 1e38005f1d4..9615a0f14f5 100644
--- a/source/eo/sw/source/uibase/ribbar.po
+++ b/source/eo/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-26 05:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formula teksto"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/eo/sw/source/uibase/uiview.po b/source/eo/sw/source/uibase/uiview.po
index cd3d8e6193d..5daa28f6ee4 100644
--- a/source/eo/sw/source/uibase/uiview.po
+++ b/source/eo/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 21:26+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Eksporti fonton..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/eo/xmlsecurity/uiconfig/ui.po b/source/eo/xmlsecurity/uiconfig/ui.po
index a05556c6e83..50f164d4b35 100644
--- a/source/eo/xmlsecurity/uiconfig/ui.po
+++ b/source/eo/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-04 22:50+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496616625.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Forigi"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index 2bbfe500236..f3bb65e7ce6 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-24 00:04+0000\n"
+"PO-Revision-Date: 2017-06-21 10:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495584292.000000\n"
+"X-POOTLE-MTIME: 1498042719.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -3344,7 +3344,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_B"
-msgstr "_B"
+msgstr "Az."
#: colorpage.ui
msgctxt ""
@@ -3353,7 +3353,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_G"
-msgstr "_G"
+msgstr "Vr."
#: colorpage.ui
msgctxt ""
@@ -3362,7 +3362,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_R"
-msgstr "_R"
+msgstr "Rj."
#: colorpage.ui
msgctxt ""
@@ -13072,7 +13072,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Snap to text grid (if active)"
-msgstr "A_justar a cuadrícula (si está activada)"
+msgstr "A_coplar a cuadrícula de texto (si se activa)"
#: paragalignpage.ui
msgctxt ""
diff --git a/source/es/desktop/source/deployment/gui.po b/source/es/desktop/source/deployment/gui.po
index 21963f4edcc..7ddc6ed8825 100644
--- a/source/es/desktop/source/deployment/gui.po
+++ b/source/es/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:52+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 11:22+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661925.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498044134.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr "¿Quiere instalar la extensión «%NAME»?"
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "Se ha desactivado la instalación de extensiones. Consulte a su administrador de sistemas para obtener más información."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr "¿Quiere desinstalar la extensión «%NAME»?"
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "Se ha desactivado la desinstalación de extensiones. Consulte a su administrador de sistemas para obtener más información."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/es/editeng/source/items.po b/source/es/editeng/source/items.po
index 2b7a45676df..bcd66cb532c 100644
--- a/source/es/editeng/source/items.po
+++ b/source/es/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-13 19:54+0000\n"
+"PO-Revision-Date: 2017-06-07 18:34+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492113289.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496860443.000000\n"
#: page.src
msgctxt ""
@@ -1759,7 +1759,7 @@ msgctxt ""
"RID_SVXITEMS_PARASNAPTOGRID_ON\n"
"string.text"
msgid "Paragraph snaps to text grid (if active)"
-msgstr "El párrafo se adhiere a la grilla de texto (si está activa)"
+msgstr "Acoplar párrafos a la cuadrícula de texto (si se activa)"
#: svxitems.src
msgctxt ""
@@ -1767,7 +1767,7 @@ msgctxt ""
"RID_SVXITEMS_PARASNAPTOGRID_OFF\n"
"string.text"
msgid "Paragraph does not snap to text grid"
-msgstr "El párrafo no se adhiere a la grilla de texto"
+msgstr "No acoplar párrafos a la cuadrícula de texto"
#: svxitems.src
msgctxt ""
diff --git a/source/es/filter/source/config/fragments/filters.po b/source/es/filter/source/config/fragments/filters.po
index c88d9342bc6..c8d4662b52e 100644
--- a/source/es/filter/source/config/fragments/filters.po
+++ b/source/es/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-13 19:56+0000\n"
+"PO-Revision-Date: 2017-06-07 16:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492113409.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496852616.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "VBA XML de Microsoft Word 2007-2013"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 88439ad0ca0..5369823ba5f 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-01 23:37+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 11:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496360229.000000\n"
+"X-POOTLE-MTIME: 1498046188.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr "Esta función se activa por medio de la instrucción <item type=\"litera
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr "<variable id=\"functsyntax\">Sintaxis:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr "<variable id=\"functvalue\">Valor de retorno:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr "<variable id=\"functparameters\">Parámetros:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr "<variable id=\"functexample\">Ejemplo:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Códigos de error</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr "<variable id=\"errorcode\">Códigos de error:</variable>"
#: 00000003.xhp
msgctxt ""
@@ -12702,7 +12734,7 @@ msgctxt ""
"par_id3146921\n"
"help.text"
msgid "return both 12/31/2002 in the date format of your system"
-msgstr ""
+msgstr "ambos devuelven 31/12/2002 en el formato de fecha del sistema"
#: 03030110.xhp
msgctxt ""
@@ -15022,7 +15054,7 @@ msgctxt ""
"bm_id051720170831387233\n"
"help.text"
msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pi;constante de BASIC</bookmark_value> <bookmark_value>Null;constante de BASIC</bookmark_value> <bookmark_value>Empty;constante de BASIC</bookmark_value> <bookmark_value>Nothing;constante de BASIC</bookmark_value> <bookmark_value>constante de BASIC;Nothing</bookmark_value> <bookmark_value>constante de BASIC;Null</bookmark_value> <bookmark_value>constante de BASIC;Empty</bookmark_value> <bookmark_value>constante de BASIC;Pi</bookmark_value> <bookmark_value>constante de BASIC;False</bookmark_value> <bookmark_value>constante de BASIC;True</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -23694,7 +23726,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "cCur=Currency ' cCur is an implicit currency variable"
-msgstr ""
+msgstr "cCur=Currency ' cCur es una variable de moneda implícita"
#: 03101120.xhp
msgctxt ""
@@ -24318,7 +24350,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
-msgstr "<emph>Currency:</emph> Variable de moneda (Moneda con 4 posiciones decimales)"
+msgstr "<emph>Currency:</emph> variable monetaria (moneda con 4 decimales)"
#: 03102100.xhp
msgctxt ""
@@ -25902,7 +25934,7 @@ msgctxt ""
"par_id051720171055367194\n"
"help.text"
msgid "The support for VBA is not complete, but covers a large portion of the common usage patterns."
-msgstr ""
+msgstr "La compatibilidad con VBA no está completa, pero ya cubre un amplio espectro de usos comunes."
#: 03103350.xhp
msgctxt ""
@@ -26310,7 +26342,7 @@ msgctxt ""
"par_id051620170608331416\n"
"help.text"
msgid "Currency variable"
-msgstr "Variable de moneda"
+msgstr "Variable monetaria"
#: 03103600.xhp
msgctxt ""
@@ -26550,7 +26582,7 @@ msgctxt ""
"par_id3153104\n"
"help.text"
msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
-msgstr ""
+msgstr "\"TextEdit1\" to \"TextEdit5\" en un bucle para crear cinco nombres de control."
#: 03103800.xhp
msgctxt ""
@@ -27014,7 +27046,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "a = DimArray( 2, 2, 4 ) ' is the same as DIM a( 2, 2, 4 )"
-msgstr ""
+msgstr "a = DimArray( 2, 2, 4 ) ' equivale a DIM a( 2, 2, 4 )"
#: 03104400.xhp
msgctxt ""
@@ -27318,7 +27350,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "' Copy of objects -> same instance"
-msgstr ""
+msgstr "' Copia de objetos → misma instancia"
#: 03104600.xhp
msgctxt ""
@@ -27326,7 +27358,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "' Copy of structs as value -> new instance"
-msgstr ""
+msgstr "' Copia de estructuras como valor → instancia nueva"
#: 03104700.xhp
msgctxt ""
@@ -28150,7 +28182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AscW Function [Runtime]"
-msgstr ""
+msgstr "Función AscW [Ejecución]"
#: 03120111.xhp
msgctxt ""
@@ -28158,7 +28190,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>AscW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función AscW</bookmark_value>"
#: 03120111.xhp
msgctxt ""
@@ -28166,7 +28198,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"Función AscW [Ejecución - VBA]\">Función AscW [Ejecución - VBA]</link>"
#: 03120111.xhp
msgctxt ""
@@ -28190,7 +28222,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "AscW (Text As String)"
-msgstr ""
+msgstr "AscW (Texto As String)"
#: 03120111.xhp
msgctxt ""
@@ -28230,7 +28262,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "Use the AscW function to replace keys with Unicode values. If the AscW function encounters a blank string, %PRODUCTNAME Basic reports a run-time error. Returned values are between 0 and 65535."
-msgstr ""
+msgstr "Utilice la función AscW para sustituir caracteres con sus valores de Unicode correspondientes. Si la función AscW encuentra una cadena de caracteres vacía, %PRODUCTNAME Basic devolverá un error de tiempo de ejecución. Los valores que pueden devolverse se encuentran entre 0 y 65535."
#: 03120111.xhp
msgctxt ""
@@ -28302,7 +28334,7 @@ msgctxt ""
"bm_id3149205\n"
"help.text"
msgid "<bookmark_value>ChrW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función ChrW</bookmark_value>"
#: 03120112.xhp
msgctxt ""
@@ -30654,7 +30686,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr "<emph>Texto1:</emph> la expresión de cadena en la que se desee buscar."
+msgstr "<emph>Texto1:</emph> la expresión de cadena que se desee buscar."
#: 03120401.xhp
msgctxt ""
@@ -30662,7 +30694,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr "<emph>Texto2:</emph> La expresión de cadena que se desee buscar."
+msgstr "<emph>Texto2:</emph> la expresión de cadena que se desee buscar."
#: 03120401.xhp
msgctxt ""
@@ -30950,7 +30982,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>InStrRev function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función InStrRev</bookmark_value>"
#: 03120411.xhp
msgctxt ""
@@ -30990,7 +31022,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
-msgstr ""
+msgstr "InStrRev (Texto1 As String, Texto2 As String [,Start As Long] [, Compare As Integer])"
#: 03120411.xhp
msgctxt ""
@@ -31006,7 +31038,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "Long"
-msgstr ""
+msgstr "Long"
#: 03120411.xhp
msgctxt ""
@@ -31022,7 +31054,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr "<emph>Texto1:</emph> la expresión de cadena en la que se desee buscar."
+msgstr "<emph>Texto1:</emph> la expresión de cadena que se desee buscar."
#: 03120411.xhp
msgctxt ""
@@ -31030,7 +31062,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr ""
+msgstr "<emph>Texto2:</emph> la expresión de cadena que se desee buscar."
#: 03120411.xhp
msgctxt ""
@@ -31078,7 +31110,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Ejemplo:"
#: 03120411.xhp
msgctxt ""
@@ -31086,7 +31118,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
-msgstr ""
+msgstr "sInput = \"El libro está sobre la mesa\""
#: 03120411.xhp
msgctxt ""
@@ -31094,7 +31126,7 @@ msgctxt ""
"par_id3154125\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"el\",10,1) ' Devuelve 1; la búsqueda no distingue mayúsculas y minúsculas"
#: 03120411.xhp
msgctxt ""
@@ -31102,7 +31134,7 @@ msgctxt ""
"par_id051920170322141162\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"el\",10,0) ' Devuelve 0; la búsqueda distingue mayúsculas y minúsculas"
#: 03120411.xhp
msgctxt ""
@@ -31126,7 +31158,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>StrReverse function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función StrReverse</bookmark_value>"
#: 03120412.xhp
msgctxt ""
@@ -31150,7 +31182,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaxis:"
#: 03120412.xhp
msgctxt ""
@@ -31182,7 +31214,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parámetros:"
#: 03120412.xhp
msgctxt ""
@@ -31198,7 +31230,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Ejemplo:"
#: 03130000.xhp
msgctxt ""
@@ -32158,7 +32190,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "' this is the same as the following statement:"
-msgstr ""
+msgstr "' esto equivale a la instrucción siguiente:"
#: 03131800.xhp
msgctxt ""
@@ -32902,7 +32934,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
-msgstr ""
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' para obtener una secuencia de bytes."
#: 03132300.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Esta función en tiempo de ejecución devuelve el contexto del componente predeterminado a usar, si se crean instancias de servicios a través de XmultiServiceFactory. Consulte el capítulo <item type=\"literal\">Professional UNO</item> en la <item type=\"literal\">Developer's Guide</item> en <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> para más información."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>función DDB</bookmark_value>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>Costo</emph> fija el costo inicial de un activo."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>Salvamento</emph> fija el valor de un activo al final de su vida."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr "<emph>Vida</emph> es el número de períodos (por ejemplo, años o meses) que definen la duración del uso del activo."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "<emph>Período</emph> define el período para el que debe calcularse el valor."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr "<emph>Factor</emph> (opcional) es el factor por el que disminuye la amortización. Si no se indica un valor, el factor predeterminado es 2."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr "Esta forma de depreciación es la adecuada si precisa un valor más alto de depreciación inicial, a diferencia de la depreciación lineal. El valor de depreciación disminuye con cada período; suele utilizarse en aquellos activos que pierden más valor poco después de su adquisición (por ejemplo, automóviles o equipos informáticos). Tenga en cuenta que el valor contable nunca llegará a cero con este tipo de cálculo."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>función FV</bookmark_value>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Tasa</emph> define el tipo de interés periódico."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>Pago</emph> es la renta pagada regularmente por periodo."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr "<emph>VA</emph> (opcional) es el valor en efectivo (actual) de una inversión."
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -33934,7 +34758,7 @@ msgctxt ""
"hd_id05182017030838384\n"
"help.text"
msgid "Working with VBA Macros"
-msgstr ""
+msgstr "Trabajar con macros de VBA"
#: main0601.xhp
msgctxt ""
@@ -33950,7 +34774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Exclusive VBA functions"
-msgstr ""
+msgstr "Funciones exclusivas de VBA"
#: special_vba_func.xhp
msgctxt ""
@@ -33966,7 +34790,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Funciones exclusivas de VBA</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -34094,7 +34918,7 @@ msgctxt ""
"hd_id051720170332046289\n"
"help.text"
msgid "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Working with VBA Macros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Trabajar con macros de VBA</link></variable>"
#: vbasupport.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/02.po b/source/es/helpcontent2/source/text/sbasic/shared/02.po
index 1f18d75f103..5eaecfa2e5c 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-23 20:56+0000\n"
+"PO-Revision-Date: 2017-06-21 11:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495572980.000000\n"
+"X-POOTLE-MTIME: 1498043587.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3150702\n"
"help.text"
msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
-msgstr "<ahelp hid=\".uno:LoadBasic\">Abre el código fuente fuente en Basic en la ventana del EID de Basic.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Abre el código fuente en Basic en la ventana del EID de Basic.</ahelp>"
#: 11140000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index 0d911453b4e..8ccf44b48a2 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/helpcontent2/source/text/scalc/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 06:11+0000\n"
+"PO-Revision-Date: 2017-06-07 16:29+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496643086.000000\n"
+"X-POOTLE-MTIME: 1496852989.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "Choose <emph>Data - Calculate - Recalculate</emph>"
-msgstr ""
+msgstr "Vaya a <emph>Datos ▸ Calcular ▸ Recalcular</emph>"
#: 00000406.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3150941\n"
"help.text"
msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exatmb\">Vaya a <emph>Datos ▸ Calcular ▸ Cálculo automático</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index ad7de22ea42..653c0769e9f 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 06:52+0000\n"
+"PO-Revision-Date: 2017-06-19 00:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496645556.000000\n"
+"X-POOTLE-MTIME: 1497830431.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -17502,7 +17502,7 @@ msgctxt ""
"par_id3159366\n"
"help.text"
msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
-msgstr "Seleccione el área de la hoja en la que debe aparecer la matriz transpuesta. Si la matriz original tiene n filas y m columnas, el área seleccionada deberá tener como mínimo m filas y n columnas. Escriba la fórmula directamente, seleccione la matriz original y pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Intro</caseinline><defaultinline>Shift+Control+Intro</defaultinline></switchinline>. Si utiliza el <emph>Asistente para funciones</emph>, marque la casilla de verificación <emph>Matriz</emph>. La matriz transpuesta aparece en el área de destino seleccionada y queda automáticamente protegida contra cambios."
+msgstr "Seleccione el intervalo de la hoja en el que debe aparecer la matriz transpuesta. Si la matriz original tiene n filas y m columnas, el intervalo seleccionado deberá tener como mínimo m filas y n columnas. Escriba la fórmula directamente, seleccione la matriz original y oprima <switchinline select=\"sys\"><caseinline select=\"MAC\">⇧⌘↵</caseinline><defaultinline>Mayús. + Ctrl. + Intro</defaultinline></switchinline>. Si utiliza el <emph>Asistente de funciones</emph>, marque la casilla de verificación <emph>Matriz</emph>. La matriz transpuesta aparece en el intervalo de destino seleccionado y queda automáticamente protegida contra cambios."
#: 04060107.xhp
msgctxt ""
@@ -17510,7 +17510,7 @@ msgctxt ""
"par_id3168518\n"
"help.text"
msgid "The above table is 2 rows, 4 columns. In order to transpose it, you must select 4 rows, 2 columns. Assuming you want to transpose the above table to the range A7:B10 (4 rows, 2 columns) you must select the entire range and then enter the following:"
-msgstr ""
+msgstr "La tabla anterior posee dos filas y cuatro columnas. Para transponerla, debe seleccionar cuatro filas y dos columnas. Suponiendo que quiere transponer la tabla anterior en el intervalo A7:B10 (cuatro filas y dos columnas), debe seleccionar todo el intervalo y, a continuación, escribir lo siguiente:"
#: 04060107.xhp
msgctxt ""
@@ -17518,7 +17518,7 @@ msgctxt ""
"par_id3166145\n"
"help.text"
msgid "TRANSPOSE(A1:D2)"
-msgstr ""
+msgstr "TRANSPONER(A1:D2)"
#: 04060107.xhp
msgctxt ""
@@ -17526,7 +17526,7 @@ msgctxt ""
"par_id3178518\n"
"help.text"
msgid "Then <emph>make sure to enter it as matrix formula with </emph><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Shift+Command+Enter</emph></caseinline><defaultinline><emph>Shift+Ctrl+Enter</emph></defaultinline></switchinline>. The result will be as follows:"
-msgstr ""
+msgstr "Luego, asegúrese de marcarlo como <emph>fórmula matricial</emph> oprimiendo <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>⇧⌘↵</emph></caseinline><defaultinline><emph>Mayús. + Ctrl. + Intro</emph></defaultinline></switchinline>. El resultado será el siguiente:"
#: 04060107.xhp
msgctxt ""
@@ -17598,7 +17598,7 @@ msgctxt ""
"par_id3154448\n"
"help.text"
msgid "If <emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
-msgstr ""
+msgstr "Si el parámetro <emph>tipo_lineal</emph> es FALSO, la recta encontrada es forzada a pasar por el origen, dado que la constante «a» será cero (y = bx). Si se omite, <emph>tipo_lineal</emph> se predetermina a VERDADERO (la recta no necesariamente pasará por el origen)."
#: 04060107.xhp
msgctxt ""
@@ -17606,7 +17606,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "If <emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
-msgstr ""
+msgstr "Si se omite <emph>estadísticas</emph> o es FALSO, solamente se devuelve la fila superior de la tabla de estadísticas. Si este parámetro es VERDADERO, se devuelve la tabla entera."
#: 04060107.xhp
msgctxt ""
@@ -19662,7 +19662,7 @@ msgctxt ""
"par_id3148734\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.ods\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.ods."
-msgstr ""
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\datos1.ods\";\"hoja1.A1\")</item> lee el contenido de la celda A1 de la hoja1 del libro de <item type=\"productname\">%PRODUCTNAME</item> Calc «datos1.ods»."
#: 04060109.xhp
msgctxt ""
@@ -19670,7 +19670,7 @@ msgctxt ""
"par_id3153081\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr ""
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\máxima.odt\";\"Máxima del día\")</item> devuelve una máxima en la celda que contiene la fórmula. Primero, debe introducir un renglón en el documento «máxima.odt» que contenga el texto de la máxima y definirlo como el primer renglón de una sección que se llame <item type=\"literal\">Máxima del día</item> (en <item type=\"productname\">%PRODUCTNAME</item> Writer vaya a <emph>Insertar ▸ Sección</emph>). Si se modifica la máxima (y se guarda) en el documento de <item type=\"productname\">%PRODUCTNAME</item> Writer, la máxima se actualiza en todas las celdas de <item type=\"productname\">%PRODUCTNAME</item> Calc en las que se defina este enlace DDE."
#: 04060109.xhp
msgctxt ""
@@ -19862,7 +19862,7 @@ msgctxt ""
"par_id3158419\n"
"help.text"
msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr ""
+msgstr "<item type=\"input\">=INDICE((multi);4;1)</item> indica el valor contenido en la fila 4 y columna 1 del intervalo (múltiple) al cual se asignó el nombre <emph>multi</emph> a través de <emph>Insertar ▸ Intervalos y expresiones con nombre ▸ Definir</emph>. El intervalo múltiple puede consistir de varios intervalos rectangulares, cada uno de los cuales con una fila 4 y columna 1. Después, si desea acceder al segundo bloque de este intervalo múltiple, ingrese el número <item type=\"input\">2</item> como parámetro <emph>intervalo</emph>."
#: 04060109.xhp
msgctxt ""
@@ -20182,7 +20182,7 @@ msgctxt ""
"par_id3149984\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Búsqueda vertical con referencia a las celdas adyacentes a la derecha</ahelp>. Esta función comprueba si un valor específico está contenido en la primera columna de una matriz. La función devuelve el valor en la misma fila de la columna llamada por el <item type=\"literal\">Índice</item>. Si el parámetro <item type=\"literal\">Orden</item> se omite o se establece como VERDADERO o uno, se asume que los datos están ordenados de manera ascendente. En este caso, si el <item type=\"literal\">Criterio de búsqueda</item> no se encuentra, se devolverá el último valor que sea más pequeño que el criterio. Si <item type=\"literal\">Orden</item> se establece como FALSO o cero, se debe encontrar una concordancia exacta, o de otro modo el resultado será <emph>Error: valor no disponible</emph>. Así, con el valor cero, los datos no tienen que ordenarse de manera ascendente."
#: 04060109.xhp
msgctxt ""
@@ -20198,7 +20198,7 @@ msgctxt ""
"par_id3150156\n"
"help.text"
msgid "=VLOOKUP(SearchCriterion; Array; Index; Sorted)"
-msgstr ""
+msgstr "=BUSCARV(CriteriodeBúsqueda; Matriz; Índice; Orden)"
#: 04060109.xhp
msgctxt ""
@@ -20230,7 +20230,7 @@ msgctxt ""
"par_id3151208\n"
"help.text"
msgid "<emph>Sorted</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
-msgstr ""
+msgstr "<emph>Orden</emph> es un parámetro opcional que indica si la primera columna de la matriz se ordena en orden ascendente. Especifique el valor booleano FALSO o cero si la primera columna no está ordenada en orden ascendente. Las columnas ordenadas se pueden buscar más deprisa y la función siempre devuelve un valor, incluso si el valor de búsqueda no coincide exactamente, si se encuentra entre el valor más alto y el más bajo de la lista ordenada. En las listas sin ordenar, el valor de búsqueda debe coincidir exactamente. De lo contrario, la función devuelve este mensaje: <emph>Error: valor no disponible</emph>."
#: 04060109.xhp
msgctxt ""
@@ -20958,7 +20958,7 @@ msgctxt ""
"par_id3146070\n"
"help.text"
msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)"
-msgstr ""
+msgstr "BUSCARH(CriteriodeBúsqueda; Matriz; Índice; Orden)"
#: 04060109.xhp
msgctxt ""
@@ -20966,7 +20966,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "See also: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr ""
+msgstr "Consulte también: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"BUSCARV\">BUSCARV</link> (se intercambian filas y columnas)"
#: 04060109.xhp
msgctxt ""
@@ -21486,7 +21486,7 @@ msgctxt ""
"bm_id3145389\n"
"help.text"
msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>texto en celdas; funciones</bookmark_value><bookmark_value>funciones; funciones de texto</bookmark_value><bookmark_value>Asistente de funciones; texto</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -22358,7 +22358,7 @@ msgctxt ""
"par_id3146149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Returns the position of a string of text within another string.</ahelp>You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">Devuelve la posición de una cadena de texto dentro de otra cadena.</ahelp> También puede definirse el punto de inicio de la búsqueda. El término buscado puede ser un número o una cadena de caracteres. La búsqueda distingue entre mayúsculas y minúsculas."
#: 04060110.xhp
msgctxt ""
@@ -26806,7 +26806,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function of the first kind In(x).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calcula la función de Bessel modificada del primer tipo In(x).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -26886,7 +26886,7 @@ msgctxt ""
"par_id3153015\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function of the first kind Jn(x) (cylinder function).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calcula la función de Bessel del primer tipo Jn(x) (función cilíndrica).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -26918,7 +26918,7 @@ msgctxt ""
"par_id3145638\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Jn(x)"
-msgstr ""
+msgstr "<emph>N</emph> es un entero positivo (N >= 0) que representa el orden de la función de Bessel Jn(x)"
#: 04060115.xhp
msgctxt ""
@@ -26934,7 +26934,7 @@ msgctxt ""
"par_id050220171019077179\n"
"help.text"
msgid "=BESSELJ(3.45, 4), returns 0.196772639864984"
-msgstr ""
+msgstr "=BESSELJ(3.45, 4) devuelve 0,196772639864984"
#: 04060115.xhp
msgctxt ""
@@ -26942,7 +26942,7 @@ msgctxt ""
"par_id050220171019078280\n"
"help.text"
msgid "=BESSELJ(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
-msgstr ""
+msgstr "=BESSELJ(3.45, 4.333) devuelve 0,144803466373734, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N."
#: 04060115.xhp
msgctxt ""
@@ -26950,7 +26950,7 @@ msgctxt ""
"par_id050220171019079818\n"
"help.text"
msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
-msgstr ""
+msgstr "=BESSELJ(-1, 3) devuelve −0,019563353982668"
#: 04060115.xhp
msgctxt ""
@@ -26966,7 +26966,7 @@ msgctxt ""
"par_id3159122\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function of the second kind Kn(x).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calcula la función de Bessel modificada del segundo tipo Kn(x).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -26990,7 +26990,7 @@ msgctxt ""
"par_id3150481\n"
"help.text"
msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
-msgstr ""
+msgstr "<emph>X</emph> es el valor estrictamente positivo (X > 0) con el que se calculará la función."
#: 04060115.xhp
msgctxt ""
@@ -26998,7 +26998,7 @@ msgctxt ""
"par_id3150024\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Kn(x)"
-msgstr ""
+msgstr "<emph>N</emph> es un entero positivo (N >= 0) que representa el orden de la función de Bessel Kn(x)"
#: 04060115.xhp
msgctxt ""
@@ -27014,7 +27014,7 @@ msgctxt ""
"par_id050220171019073898\n"
"help.text"
msgid "=BESSELK(3.45, 4), returns 0.144803466373734"
-msgstr ""
+msgstr "=BESSELK(3.45, 4) devuelve 0,144803466373734"
#: 04060115.xhp
msgctxt ""
@@ -27022,7 +27022,7 @@ msgctxt ""
"par_id050220171019079889\n"
"help.text"
msgid "=BESSELK(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
-msgstr ""
+msgstr "=BESSELK(3.45, 4.333) devuelve 0,144803466373734, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N."
#: 04060115.xhp
msgctxt ""
@@ -27030,7 +27030,7 @@ msgctxt ""
"par_id050220171019076471\n"
"help.text"
msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
-msgstr ""
+msgstr "=BESSELK(0, 3) devuelve Err:502: argumento no válido (X=0)"
#: 04060115.xhp
msgctxt ""
@@ -27046,7 +27046,7 @@ msgctxt ""
"par_id3146877\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the Bessel function of the second kind Yn(x).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calcula la función de Bessel del segundo tipo Yn(x).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -27070,7 +27070,7 @@ msgctxt ""
"par_id3147475\n"
"help.text"
msgid "<emph>X</emph> is the strictly positive value (X > 0) on which the function will be calculated."
-msgstr ""
+msgstr "<emph>X</emph> es el valor estrictamente positivo (X > 0) con el que se calculará la función."
#: 04060115.xhp
msgctxt ""
@@ -27078,7 +27078,7 @@ msgctxt ""
"par_id3147421\n"
"help.text"
msgid "<emph>N</emph> is a positive integer (N >= 0) representing the order of the Bessel function Yn(x)"
-msgstr ""
+msgstr "<emph>N</emph> es un entero positivo (N >= 0) que representa el orden de la función de Bessel Yn(x)"
#: 04060115.xhp
msgctxt ""
@@ -27094,7 +27094,7 @@ msgctxt ""
"par_id050220171019081114\n"
"help.text"
msgid "=BESSELY(3.45, 4), returns -0.679848116844476"
-msgstr ""
+msgstr "=BESSELY(3.45, 4) devuelve −0,679848116844476"
#: 04060115.xhp
msgctxt ""
@@ -27102,7 +27102,7 @@ msgctxt ""
"par_id050220171019081288\n"
"help.text"
msgid "=BESSELY(3.45, 4.333), returns -0.679848116844476, same as above because the fractional part of N is ignored."
-msgstr ""
+msgstr "=BESSELY(3.45, 4.333) devuelve −0,679848116844476, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N."
#: 04060115.xhp
msgctxt ""
@@ -27110,7 +27110,7 @@ msgctxt ""
"par_id050220171019082347\n"
"help.text"
msgid "=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)"
-msgstr ""
+msgstr "=BESSELY(0, 3) devuelve Err:502: argumento no válido (X=0)"
#: 04060115.xhp
msgctxt ""
@@ -27118,7 +27118,7 @@ msgctxt ""
"bm_id3153034\n"
"help.text"
msgid "<bookmark_value>BIN2DEC function</bookmark_value> <bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función BIN.A.DEC</bookmark_value><bookmark_value>convertir;números binarios, en números decimales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27182,7 +27182,7 @@ msgctxt ""
"bm_id3149954\n"
"help.text"
msgid "<bookmark_value>BIN2HEX function</bookmark_value> <bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función BIN.A.HEX</bookmark_value><bookmark_value>convertir;números binarios, en números hexadecimales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27254,7 +27254,7 @@ msgctxt ""
"bm_id3153332\n"
"help.text"
msgid "<bookmark_value>BIN2OCT function</bookmark_value> <bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función BIN.A.OCT</bookmark_value><bookmark_value>convertir;números binarios, en números octales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27326,7 +27326,7 @@ msgctxt ""
"bm_id3150014\n"
"help.text"
msgid "<bookmark_value>DELTA function</bookmark_value> <bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función DELTA</bookmark_value><bookmark_value>reconocer;números equivalentes</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27382,7 +27382,7 @@ msgctxt ""
"bm_id3157971\n"
"help.text"
msgid "<bookmark_value>DEC2BIN function</bookmark_value> <bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función DEC.A.BIN</bookmark_value><bookmark_value>convertir;números decimales, en números binarios</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27454,7 +27454,7 @@ msgctxt ""
"bm_id3149388\n"
"help.text"
msgid "<bookmark_value>DEC2HEX function</bookmark_value> <bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función DEC.A.HEX</bookmark_value><bookmark_value>convertir;números decimales, en números hexadecimales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27526,7 +27526,7 @@ msgctxt ""
"bm_id3154948\n"
"help.text"
msgid "<bookmark_value>DEC2OCT function</bookmark_value> <bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función DEC.A.OCT</bookmark_value><bookmark_value>convertir;números decimales, en números octales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27598,7 +27598,7 @@ msgctxt ""
"bm_id3083446\n"
"help.text"
msgid "<bookmark_value>ERF function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función FUN.ERROR</bookmark_value><bookmark_value>integral de error de Gauss</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27670,7 +27670,7 @@ msgctxt ""
"bm_id2983446\n"
"help.text"
msgid "<bookmark_value>ERF.PRECISE function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función FUN.ERROR.EXACTO</bookmark_value><bookmark_value>integral de error de Gauss</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27702,7 +27702,7 @@ msgctxt ""
"par_id2963824\n"
"help.text"
msgid "ERF.PRECISE(LowerLimit)"
-msgstr ""
+msgstr "FUN.ERROR.EXACTO(LímiteInferior)"
#: 04060115.xhp
msgctxt ""
@@ -27710,7 +27710,7 @@ msgctxt ""
"par_id2949715\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the limit of the integral. The calculation takes places between 0 and this limit."
-msgstr ""
+msgstr "<emph>LímiteInferior</emph> es el límite de la integral. El cálculo se efectúa entre 0 y este límite."
#: 04060115.xhp
msgctxt ""
@@ -27726,7 +27726,7 @@ msgctxt ""
"par_id2952974\n"
"help.text"
msgid "<item type=\"input\">=ERF.PRECISE(1)</item> returns 0.842701."
-msgstr ""
+msgstr "<item type=\"input\">=FUN.ERROR.EXACTO(1)</item> devuelve 0,842701."
#: 04060115.xhp
msgctxt ""
@@ -27862,7 +27862,7 @@ msgctxt ""
"bm_id3152927\n"
"help.text"
msgid "<bookmark_value>GESTEP function</bookmark_value> <bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función MAYOR.O.IGUAL</bookmark_value><bookmark_value>números;mayor o igual que</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27918,7 +27918,7 @@ msgctxt ""
"bm_id3147276\n"
"help.text"
msgid "<bookmark_value>HEX2BIN function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función HEX.A.BIN</bookmark_value><bookmark_value>convertir;números hexadecimales, en números binarios</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27990,7 +27990,7 @@ msgctxt ""
"bm_id3154742\n"
"help.text"
msgid "<bookmark_value>HEX2DEC function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función HEX.A.DEC</bookmark_value><bookmark_value>convertir;números hexadecimales, en números decimales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28054,7 +28054,7 @@ msgctxt ""
"bm_id3149750\n"
"help.text"
msgid "<bookmark_value>HEX2OCT function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función HEX.A.OCT</bookmark_value><bookmark_value>convertir;números hexadecimales, en números octales</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -31286,7 +31286,7 @@ msgctxt ""
"par_id3155586\n"
"help.text"
msgid "<item type=\"input\">=RATE(3;-10;900)</item> = -75.63% The interest rate is therefore 75.63%."
-msgstr ""
+msgstr "<item type=\"input\">=TASA(3;-10;900)</item> = −75,63 %. La tasa de interés es, por tanto, del 75,63 %."
#: 04060118.xhp
msgctxt ""
@@ -47078,7 +47078,7 @@ msgctxt ""
"par_id3149958\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Permite especificar el <emph>tipo de área</emph> (opcional) para la referencia.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47118,7 +47118,7 @@ msgctxt ""
"par_id3155766\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define el área seleccionada para su uso en un <link href=\"text/scalc/01/12040300.xhp\" name=\"filtro avanzado\">filtro avanzado</link>.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47134,7 +47134,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the area as a repeating column.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define el área como una columna que se repite.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47150,7 +47150,7 @@ msgctxt ""
"par_id3150300\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the area as a repeating row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define el área como una fila que se repite.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47174,7 +47174,7 @@ msgctxt ""
"par_id3150301\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/names\" visibility=\"hidden\">Select a named range or named formula from the list to modify its properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/managenamesdialog/names\" visibility=\"hidden\">Seleccione un intervalo o una fórmula con nombre de la lista para modificar sus propiedades.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -47190,7 +47190,7 @@ msgctxt ""
"bm_id3153195\n"
"help.text"
msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value> <bookmark_value>pasting; cell ranges</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>intervalos de céldas; insertar intervalos con nombre</bookmark_value><bookmark_value>insertar; intervalos de celdas</bookmark_value><bookmark_value>pegar; intervalos de celdas</bookmark_value>"
#: 04070200.xhp
msgctxt ""
@@ -47230,7 +47230,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertname/ctrl\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/insertname/ctrl\">Muestra todas las áreas de celdas definidas. Pulse dos veces en una entrada para insertar el área indicada en la hoja activa, en la posición actual del cursor.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -47246,7 +47246,7 @@ msgctxt ""
"par_id3155066\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertname/pasteall\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/insertname/pasteall\">Inserta, en la posición actual del cursor, una lista de todas las áreas con nombre y las referencias de celdas correspondientes.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -47574,7 +47574,7 @@ msgctxt ""
"par_id3149412\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Muestra las funciones disponibles.</ahelp> Al seleccionar una función se muestra una breve descripción en el área situada debajo del listado. Para insertar la función seleccionada, pulse dos veces en ella o en el icono <emph>Insertar función en la hoja de cálculo</emph>."
#: 04080000.xhp
msgctxt ""
@@ -47598,7 +47598,7 @@ msgctxt ""
"par_id3147345\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserts the selected function into the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserta la función seleccionada en el documento.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -49238,7 +49238,7 @@ msgctxt ""
"par_id3159100\n"
"help.text"
msgid "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149814\">Icono</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -51078,7 +51078,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_PASSWD_DOC_CONFIRM\" visibility=\"hidden\">Re-enter the password.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_PASSWD_DOC_CONFIRM\" visibility=\"hidden\">Escriba de nuevo la contraseña.</ahelp>"
#: 06060200.xhp
msgctxt ""
@@ -53246,7 +53246,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Groups the selected rows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Agrupa las filas seleccionadas.</ahelp>"
#: 12080300.xhp
msgctxt ""
@@ -53262,7 +53262,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Groups the selected columns.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Agrupa las columnas seleccionadas.</ahelp>"
#: 12080400.xhp
msgctxt ""
@@ -54558,7 +54558,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "<ahelp hid=\".\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pulse en el tipo de subtotal que quiera calcular. Esta opción está disponible solo si se ha seleccionado la opción <emph>Definido por el usuario</emph>.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54574,7 +54574,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<ahelp hid=\".\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Incluye columnas y filas vacías en la tabla de resultados.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54662,7 +54662,7 @@ msgctxt ""
"par_idN10716\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Seleccione el tipo de cálculo del valor mostrado para el campo de datos.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54886,7 +54886,7 @@ msgctxt ""
"par_idN107BE\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Seleccione el campo a partir del cual se obtiene el valor respectivo como base para el cálculo.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54902,7 +54902,7 @@ msgctxt ""
"par_idN107C5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Seleccione el elemento del campo de base a partir del cual se obtiene el valor respectivo como base para el cálculo.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54998,7 +54998,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorts values alphabetically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Ordena alfabéticamente los valores.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55030,7 +55030,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Seleccione la disposición del campo en el cuadro de lista.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55046,7 +55046,7 @@ msgctxt ""
"par_idN10597\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Añade una fila vacía después de los datos por cada elemento de la tabla dinámica.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -58006,7 +58006,7 @@ msgctxt ""
"par_id190621657742\n"
"help.text"
msgid "<emph>Range2</emph> – Optional. Range2 and all the following mean the same as Range1."
-msgstr ""
+msgstr "<emph>Intervalo2</emph>: opcional. Intervalo2 y todos los argumentos siguientes tienen el mismo significado que Intervalo1."
#: func_countifs.xhp
msgctxt ""
@@ -59382,7 +59382,7 @@ msgctxt ""
"par_id312932390024933\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Códigos de error\">Códigos de error</link>"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -61150,7 +61150,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "NETWORKDAYS.INTL"
-msgstr ""
+msgstr "DIAS.LAB.INTL"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61158,7 +61158,7 @@ msgctxt ""
"bm_id231020162321219565\n"
"help.text"
msgid "<bookmark_value>NETWORKDAYS.INTL function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>función DIAS.LAB.INTL</bookmark_value>"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -62590,7 +62590,7 @@ msgctxt ""
"par_id3154394\n"
"help.text"
msgid "<emph>Type</emph> is optional and determines the type of calculation."
-msgstr ""
+msgstr "<emph>Tipo</emph> es opcional y determina el tipo de cálculo."
#: func_weekday.xhp
msgctxt ""
@@ -62598,7 +62598,7 @@ msgctxt ""
"par_id050220170615596613\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: func_weekday.xhp
msgctxt ""
@@ -62606,7 +62606,7 @@ msgctxt ""
"par_id05022017061559141\n"
"help.text"
msgid "Weekday number returned"
-msgstr ""
+msgstr "Número de día de la semana devuelto"
#: func_weekday.xhp
msgctxt ""
@@ -62614,7 +62614,7 @@ msgctxt ""
"par_id050220170615599995\n"
"help.text"
msgid "1 or omitted"
-msgstr ""
+msgstr "1 u omitido"
#: func_weekday.xhp
msgctxt ""
@@ -62622,7 +62622,7 @@ msgctxt ""
"par_id050220170615597231\n"
"help.text"
msgid "1 (Sunday) through 7 (Saturday). For compatibility with Microsoft Excel."
-msgstr ""
+msgstr "Entre 1 (domingo) y 7 (sábado). Para compatibilidad con Microsoft Excel. "
#: func_weekday.xhp
msgctxt ""
@@ -62630,7 +62630,7 @@ msgctxt ""
"par_id050220170615596260\n"
"help.text"
msgid "1 (Monday) through 7 (Sunday)."
-msgstr ""
+msgstr "Entre 1 (lunes) y 7 (domingo)."
#: func_weekday.xhp
msgctxt ""
@@ -62638,7 +62638,7 @@ msgctxt ""
"par_id050220170615597630\n"
"help.text"
msgid "0 (Monday) through 6 (Sunday)"
-msgstr ""
+msgstr "Entre 0 (lunes) y 6 (domingo)"
#: func_weekday.xhp
msgctxt ""
@@ -62646,7 +62646,7 @@ msgctxt ""
"par_id050220170615592023\n"
"help.text"
msgid "1 (Monday) through 7 (Sunday)."
-msgstr ""
+msgstr "Entre 1 (lunes) y 7 (domingo)."
#: func_weekday.xhp
msgctxt ""
@@ -62654,7 +62654,7 @@ msgctxt ""
"par_id050220170615591349\n"
"help.text"
msgid "1 (Tuesday) through 7 (Monday)."
-msgstr ""
+msgstr "Entre 1 (martes) y 7 (lunes)."
#: func_weekday.xhp
msgctxt ""
@@ -62662,7 +62662,7 @@ msgctxt ""
"par_id050220170615593664\n"
"help.text"
msgid "1 (Wednesday) through 7 (Tuesday)."
-msgstr ""
+msgstr "Entre 1 (miércoles) y 7 (martes)."
#: func_weekday.xhp
msgctxt ""
@@ -62670,7 +62670,7 @@ msgctxt ""
"par_id050220170615599110\n"
"help.text"
msgid "1 (Thursday) through 7 (Wednesday)."
-msgstr ""
+msgstr "Entre 1 (jueves) y 7 (miércoles)."
#: func_weekday.xhp
msgctxt ""
@@ -62678,7 +62678,7 @@ msgctxt ""
"par_id05022017061600535\n"
"help.text"
msgid "1 (Friday) through 7 (Thursday)."
-msgstr ""
+msgstr "Entre 1 (viernes) y 7 (jueves)."
#: func_weekday.xhp
msgctxt ""
@@ -62686,7 +62686,7 @@ msgctxt ""
"par_id050220170616003219\n"
"help.text"
msgid "1 (Saturday) through 7 (Friday)."
-msgstr ""
+msgstr "Entre 1 (sábado) y 7 (viernes)."
#: func_weekday.xhp
msgctxt ""
@@ -62694,7 +62694,7 @@ msgctxt ""
"par_id050220170616002095\n"
"help.text"
msgid "1 (Sunday) through 7 (Saturday)."
-msgstr ""
+msgstr "Entre 1 (domingo) y 7 (sábado)."
#: func_weekday.xhp
msgctxt ""
@@ -63230,7 +63230,7 @@ msgctxt ""
"hd_id241020160008306802\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Sintaxis"
#: func_workday.intl.xhp
msgctxt ""
@@ -63262,7 +63262,7 @@ msgctxt ""
"hd_id241020160012172138\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Ejemplo"
#: func_workday.intl.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id241020160012177196\n"
"help.text"
msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
-msgstr ""
+msgstr "¿Cuál es la fecha correspondiente a 20 días después del 13 de diciembre de 2016? Escriba la fecha inicial en C3 y la cantidad de días laborables en D3."
#: func_workday.intl.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/schart/01.po b/source/es/helpcontent2/source/text/schart/01.po
index 41c4d9f2e2c..4a118de9d91 100644
--- a/source/es/helpcontent2/source/text/schart/01.po
+++ b/source/es/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-01 23:52+0000\n"
+"PO-Revision-Date: 2017-06-21 10:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496361174.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498041005.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "Están disponibles los tipos de regresión siguientes:"
#: 04050100.xhp
#, fuzzy
@@ -1839,7 +1839,7 @@ msgctxt ""
"par_id8918729\n"
"help.text"
msgid "For <emph>polynomial regression</emph> curves a transformation to a linear model takes place."
-msgstr ""
+msgstr "Para las curvas de <emph>regresión polinómica</emph>, se produce una transformación en un modelo lineal."
#: 04050100.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sdraw/04.po b/source/es/helpcontent2/source/text/sdraw/04.po
index 132113f7ae6..642baf9997a 100644
--- a/source/es/helpcontent2/source/text/sdraw/04.po
+++ b/source/es/helpcontent2/source/text/sdraw/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-10-24 08:08+0000\n"
+"PO-Revision-Date: 2017-06-21 11:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1477296517.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498044605.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3152346\n"
"help.text"
msgid "Add or edit text."
-msgstr "Agregar o editar texto."
+msgstr "Añadir o editar texto."
#: 01020000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared.po b/source/es/helpcontent2/source/text/shared.po
index 921a823e1e1..8ab25ffd6ba 100644
--- a/source/es/helpcontent2/source/text/shared.po
+++ b/source/es/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-08 19:29+0000\n"
+"PO-Revision-Date: 2017-06-07 18:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494271791.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496860671.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Seleccione una profundidad de extrusión."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Seleccione un método de extrusión en perspectiva o en paralelo."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Seleccione una dirección de iluminación."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Seleccione una intensidad de iluminación."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Seleccione la visualización de material de superficie o en estructura."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Pulse para aplicar la alineación a los objetos de Fontwork seleccionados."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Pulse para aplicar el espacio entre caracteres a los objetos de Fontwork seleccionados."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Abre el cuadro de diálogo Espaciado entre caracteres de Fontwork, que le permite fijar un valor nuevo de espacio entre caracteres."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Activa y desactiva el <link href=\"text/shared/00/00000005.xhp#kerning\">interletraje</link> entre pares de caracteres."
#: main0108.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index fb98210acd9..9bc45aa3c13 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-02 00:03+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 11:43+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496361792.000000\n"
+"X-POOTLE-MTIME: 1498045401.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
-msgstr ""
+msgstr "El lenguaje de programación Java es un lenguaje de programación independiente de las plataformas que es especialmente apropiado para su uso en internet. Las páginas web y las aplicaciones programadas con archivos de clase Java se pueden usar en todos los sistemas operativos modernos. Los programas que usan el lenguaje de programación Java normalmente se desarrollan en un entorno de desarrollo y luego se compilan para obtener el «código de bytes»."
#: 00000002.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3148747\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> es una aplicación especializada de SGML. Ello significa que casi todos los navegadores web admiten solamente una gama limitada de estándares SGML, y que la mayoría de los sistemas preparados para SGML pueden producir páginas HTML de calidad."
#: 00000002.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3156360\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr ""
+msgstr "Las páginas <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> contienen determinadas instrucciones estructurales y de formato denominadas etiquetas. Las etiquetas consisten en palabras codificadas entre corchetes angulares en el lenguaje de descripción de documentos HTML. Muchas etiquetas contienen referencias de texto o hipervínculo entre los corchetes angulares de apertura y cierre. Por ejemplo, los títulos aparecen marcados en ambos extremos con las etiquetas <h1> al comienzo y </h1> al final. Algunas etiquetas aparecen una sola vez, como <br> —para los saltos de línea— o <img …> —para enlazar con gráficos—."
#: 00000002.xhp
msgctxt ""
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Vaya a <emph>Herramientas ▸ Numeración de capítulos ▸</emph> pestaña <emph>Posición</emph></caseinline></switchinline>"
#: 00040500.xhp
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icono en la barra <emph>Imagen</emph>:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icono en la barra <emph>Imagen</emph>:</defaultinline></switchinline>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 7007a88b505..e1c23dd0652 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 08:49+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 10:41+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496220544.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498041696.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3149877\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Las siguientes secciones describen el cuadro de diálogo <emph>Abrir</emph> de <item type=\"productname\">%PRODUCTNAME</item>. Para activar los cuadros de diálogo <emph>Abrir</emph> y <emph>Guardar</emph> de <item type=\"productname\">%PRODUCTNAME</item>, diríjase a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME ▸ General</emph></link> y luego active la casilla <emph>Utilizar los diálogos de %PRODUCTNAME</emph> en el apartado <emph>Cuadros de diálogo para abrir y guardar</emph>."
#: 01020000.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Display area"
-msgstr ""
+msgstr "Área de visualización"
#: 01020000.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Proporcione un nombre de archivo o una ruta hacia el archivo. También puede proporcionar un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> que comience por el nombre de protocolo ftp, http o https.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
-msgstr ""
+msgstr "Si lo desea, puede utilizar comodines en el cuadro <emph>Nombre de archivo</emph> para filtrar la lista de archivos mostrados."
#: 01020000.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3153779\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"> </caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Por ejemplo, para ver una lista de todos los archivos de texto de una carpeta, escriba el comodín asterisco con la extensión de los archivos de texto (*.txt) y luego pulse en <emph>Abrir</emph>. Use el comodín signo de interrogación (?) para representar cualquier carácter, como en (??3*.txt), que únicamente muestra archivos con «3» como tercer carácter del nombre de archivo.</defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3149291\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEOPEN_VERSION\">Si hay varias versiones del archivo seleccionado, seleccione la que prefiera abrir.</ahelp> Para guardar y organizar varias versiones de un documento, seleccione <emph>Archivo ▸ Versiones</emph>. Las versiones de un documento se abren en modo de solo lectura."
#: 01020000.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_id3156293\n"
"help.text"
msgid "If you opened the dialog by choosing <emph>Insert - Document</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
-msgstr ""
+msgstr "Si ha abierto el cuadro de diálogo mediante <emph>Insertar ▸ Documento</emph>, el botón <emph>Abrir</emph> se etiqueta como <emph>Insertar</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserta el archivo seleccionado en la posición del cursor del documento actual.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_id3154988\n"
"help.text"
msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
-msgstr ""
+msgstr "Si se ha creado un documento mediante una plantilla que la aplicación no puede encontrar, aparece un cuadro de diálogo que pregunta cómo continuar la próxima vez que se abra el documento."
#: 01020000.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
-msgstr ""
+msgstr "Para romper el enlace entre el documento y la plantilla que falta, pulse en <emph>No</emph>; en caso contrario, <item type=\"productname\">%PRODUCTNAME</item> buscará de nuevo la plantilla la próxima vez que abra el documento."
#: 01020000.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "Set as default template"
-msgstr ""
+msgstr "Establecer plantilla como predeterminada"
#: 01110300.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"bm_id3147294\n"
"help.text"
msgid "<bookmark_value>printers; properties</bookmark_value> <bookmark_value>settings; printers</bookmark_value> <bookmark_value>properties; printers</bookmark_value> <bookmark_value>default printer; setting up</bookmark_value> <bookmark_value>printers; default printer</bookmark_value> <bookmark_value>page formats; restriction</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>impresoras;propiedades</bookmark_value><bookmark_value>configuración;impresoras</bookmark_value><bookmark_value>propiedades;impresoras</bookmark_value><bookmark_value>impresora predeterminada;configurar</bookmark_value><bookmark_value>impresoras;impresora predeterminada</bookmark_value><bookmark_value>formatos de página;restricción</bookmark_value>"
#: 01140000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Seleccione el estilo de párrafo o nivel de esquema que quiera usar para separar el documento de origen en subdocumentos.</ahelp> De manera predeterminada, se crea un nuevo subdocumento para cada nivel 1 del esquema."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Seleccione el estilo de párrafo o nivel de esquema que quiera usar para separar el documento de origen en subdocumentos.</ahelp> De manera predeterminada, se crea un documento nuevo por cada capítulo de nivel 1."
#: 01160300.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Celdas completas</caseinline><defaultinline>Solo palabras completas</defaultinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3149579\n"
"help.text"
msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Busca todas las palabras o celdas que sean idénticas al texto de la búsqueda.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3150506\n"
"help.text"
msgid "Replacement options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr "Encontrará las opciones de reemplazo bajo el cuadro <emph>Reemplazar</emph> y en la zona <emph>Otras opciones</emph> del cuadro de diálogo."
+msgstr "Encontrará las opciones de reemplazo bajo el cuadro <emph>Reemplazar</emph> y en el apartado <emph>Otras opciones</emph> del cuadro de diálogo."
#: 02100000.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Shows more or fewer search options. Click this label again to hide the extended search options.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Muestra más o menos opciones de búsqueda. Pulse en este botón de nuevo para ocultar las opciones de búsqueda ampliadas.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "Current selection only"
-msgstr ""
+msgstr "Solo selección actual"
#: 02100000.xhp
msgctxt ""
@@ -7366,7 +7366,7 @@ msgctxt ""
"par_id3149551\n"
"help.text"
msgid "For example, a similarity search can find words that differ from the <emph>Find</emph> text by two characters."
-msgstr ""
+msgstr "Por ejemplo, una búsqueda por similitud puede encontrar palabras que difieran del texto indicado en <emph>Buscar</emph> en dos caracteres."
#: 02100100.xhp
msgctxt ""
@@ -7486,7 +7486,7 @@ msgctxt ""
"par_id3153331\n"
"help.text"
msgid "<variable id=\"attributetext\"><ahelp hid=\"cui/ui/searchattrdialog/SearchAttrDialog\">Choose the text attributes that you want to search for. For example, if you search for the <emph>Font</emph> attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found. </ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"attributetext\"><ahelp hid=\"cui/ui/searchattrdialog/SearchAttrDialog\">Elija los atributos del texto que desea buscar. Por ejemplo, si busca por el atributo <emph>Tipo de letra</emph>, se encontrarán todas las ocurrencias de texto que no utilicen el tipo de letra predeterminado. Se encontrará todo el texto que tenga el atributo Tipo de letra aplicado directamente y todo el texto en que el estilo modifique el atributo Tipo de letra.</ahelp></variable>"
#: 02100200.xhp
msgctxt ""
@@ -8038,7 +8038,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<variable id=\"formattext\"><ahelp hid=\"svx/ui/findreplacedialog/format\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"formattext\"><ahelp hid=\"svx/ui/findreplacedialog/format\">Encuentra funciones de formato de texto específicas, por ejemplo: tipos de letra, efectos tipográficos y características de flujo de texto.</ahelp></variable>"
#: 02100300.xhp
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"par_id3155852\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Mueve la selección una posición hacia abajo en la lista del Navegador.</ahelp> Es posible también desplazar entradas arrastrándolas y colocándolas en la lista. Si desplaza una sección de texto junto a otra, ambas se combinan."
#: 02110000.xhp
msgctxt ""
@@ -8478,7 +8478,7 @@ msgctxt ""
"par_id3146927\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Mueve la selección una posición hacia arriba en la lista del Navegador.</ahelp> Es posible también desplazar entradas arrastrándolas y colocándolas en la lista. Si desplaza una sección de texto junto a otra, ambas se combinan."
#: 02110000.xhp
msgctxt ""
@@ -8966,7 +8966,7 @@ msgctxt ""
"par_id3149031\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/InsertFloatingFrameDialog\">Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/InsertFloatingFrameDialog\">Modifica las propiedades del marco flotante seleccionado. Los marcos flotantes funcionan mejor cuando contienen un documento HTML y cuando se insertan en otros documentos HTML.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8982,7 +8982,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore ( _ ).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Escriba un nombre para el marco flotante. El nombre no puede contener espacios, caracteres especiales ni comenzar por un guion bajo ( _ ).</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_id3156414\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edurl\">Enter the path and the name of the file that you want to display in the floating frame. You can also click the <emph>Browse</emph> button and locate the file that you want to display.</ahelp> For example, you can enter:"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edurl\">Proporcione la ruta y el nombre del archivo que quiere que se muestre en el marco flotante. También puede pulsar en el botón <emph>Examinar</emph> y localizar el archivo deseado.</ahelp> Por ejemplo, se puede insertar:"
#: 02210101.xhp
msgctxt ""
@@ -9094,7 +9094,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbarauto\">Mark this option if the currently active floating frame can have a scrollbar when needed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbarauto\">Marque esta opción si el marco flotante activo puede tener una barra de desplazamiento de ser necesaria.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9150,7 +9150,7 @@ msgctxt ""
"hd_id3148563\n"
"help.text"
msgid "Spacing to Contents"
-msgstr ""
+msgstr "Espaciado al contenido"
#: 02210101.xhp
msgctxt ""
@@ -9174,7 +9174,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/width\">Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/width\">Indique la cantidad de espacio horizontal que quiere dejar entre los bordes izquierdo y derecho del marco flotante y el contenido del marco. Los documentos ubicados dentro y fuera del marco flotante deben ser de formato HTML.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Applies the default horizontal spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Aplica el espaciado horizontal predeterminado.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtra la lista de cambios según la fecha y la hora que determine.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10870,7 +10870,7 @@ msgctxt ""
"par_id3143270\n"
"help.text"
msgid "<ahelp hid=\".\">Enters the current date and time into the corresponding boxes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserta la fecha y la hora actuales en los cuadros correspondientes.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtra la lista de cambios según el nombre del autor que seleccione en la lista.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10902,7 +10902,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\".\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\".\">Filtra la lista de cambios según el intervalo de celdas que determine. Para seleccionar un intervalo de celdas en la hoja, pulse en el botón <emph>Establecer referencia</emph> (<emph>…</emph>).</ahelp></caseinline></switchinline>"
#: 02230402.xhp
msgctxt ""
@@ -10974,7 +10974,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\".\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\".\">Filtra la lista de cambios según el tipo de cambio que seleccione en el cuadro <emph>Acción</emph>.</ahelp></caseinline></switchinline>"
#: 02230402.xhp
msgctxt ""
@@ -10990,7 +10990,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtra los comentarios de las modificaciones según las palabras clave especificadas. </ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3148495\n"
"help.text"
msgid "Day as Sun-Sat"
-msgstr ""
+msgstr "Día como «Lun-Dom»"
#: 05020301.xhp
msgctxt ""
@@ -14582,7 +14582,7 @@ msgctxt ""
"par_id3154272\n"
"help.text"
msgid "Day as Sunday to Saturday"
-msgstr ""
+msgstr "Día como lunes a domingo"
#: 05020301.xhp
msgctxt ""
@@ -14590,7 +14590,7 @@ msgctxt ""
"par_id3146791\n"
"help.text"
msgid "Day followed by comma, as in \"Sunday,\""
-msgstr ""
+msgstr "Día seguido por una coma, como «Domingo,»"
#: 05020301.xhp
msgctxt ""
@@ -14598,7 +14598,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "Year as 00-99"
-msgstr ""
+msgstr "Año como 00-99"
#: 05020301.xhp
msgctxt ""
@@ -14606,7 +14606,7 @@ msgctxt ""
"par_id3148408\n"
"help.text"
msgid "Year as 1900-2078"
-msgstr ""
+msgstr "Año como 1900-2078"
#: 05020301.xhp
msgctxt ""
@@ -14702,7 +14702,7 @@ msgctxt ""
"par_id1002200811423518\n"
"help.text"
msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you need to know the formatting codes used in that other locale."
-msgstr ""
+msgstr "El formato de los códigos mencionados funcionan en el idioma de su versión de %PRODUCTNAME. Ahora bien, si necesita modificar la configuración regional de %PRODUCTNAME a otra, tendrá que conocer los códigos de formato correspondientes al idioma nuevo."
#: 05020301.xhp
msgctxt ""
@@ -16486,7 +16486,7 @@ msgctxt ""
"par_id231020161309384878\n"
"help.text"
msgid "<emph>Representation</emph>"
-msgstr ""
+msgstr "<emph>Representación</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16790,7 +16790,7 @@ msgctxt ""
"par_id231020161510028097\n"
"help.text"
msgid "<emph>Example (YYYY-MM-DD)</emph>"
-msgstr ""
+msgstr "<emph>Ejemplo (AAAA-MM-DD)</emph>"
#: 05020301.xhp
msgctxt ""
@@ -23278,7 +23278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Area window"
-msgstr ""
+msgstr "Ventana Área"
#: 05210000.xhp
msgctxt ""
@@ -23302,7 +23302,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Area tab"
-msgstr ""
+msgstr "Pestaña Área"
#: 05210100.xhp
msgctxt ""
@@ -30206,7 +30206,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Conversion Direction"
-msgstr ""
+msgstr "Dirección de la conversión"
#: 06010600.xhp
msgctxt ""
@@ -30214,7 +30214,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Select the conversion direction."
-msgstr ""
+msgstr "Seleccione la dirección de la conversión."
#: 06010600.xhp
msgctxt ""
@@ -30222,7 +30222,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "De chino tradicional a simplificado"
#: 06010600.xhp
msgctxt ""
@@ -30238,7 +30238,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "De chino simplificado a tradicional"
#: 06010600.xhp
msgctxt ""
@@ -30254,7 +30254,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "Common Terms"
-msgstr ""
+msgstr "Términos comunes"
#: 06010600.xhp
msgctxt ""
@@ -30262,7 +30262,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
-msgstr ""
+msgstr "Los términos comunes son palabras que tienen el mismo significado en chino tradicional y en simplificado, pero que se escriben con caracteres distintos."
#: 06010600.xhp
msgctxt ""
@@ -30270,7 +30270,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Translate common terms"
-msgstr ""
+msgstr "Traducir términos comunes"
#: 06010600.xhp
msgctxt ""
@@ -31830,7 +31830,7 @@ msgctxt ""
"hd_id3154682\n"
"help.text"
msgid "Single Quotes / Double Quotes"
-msgstr ""
+msgstr "Comillas sencillas/Comillas dobles"
#: 06040400.xhp
msgctxt ""
@@ -39638,7 +39638,7 @@ msgctxt ""
"hd_id4921415\n"
"help.text"
msgid "Display Extensions"
-msgstr ""
+msgstr "Mostrar extensiones"
#: packagemanager.xhp
msgctxt ""
@@ -40102,7 +40102,7 @@ msgctxt ""
"par_id28112016094427243\n"
"help.text"
msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
-msgstr ""
+msgstr "Si no fue posible solucionar su problema a través del modo seguro, pulse en <emph>Avanzado</emph> y encontrará instrucciones sobre cómo obtener más ayuda."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Permite exportar los marcadores de documentos de Writer como marcadores de PDF. Se crearán marcadores para todos los párrafos de esquema (Herramientas ▸ Numeración de capítulos) y para todas las entradas del sumario a las que asignó enlaces en el documento de origen.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr "<ahelp hid=\".\">Permite exportar los marcadores de documentos de Writer como marcadores de PDF. Se crearán marcadores para todos los párrafos de esquema (<item type=\"menuitem\">Herramientas ▸ Numeración de capítulos</item>) y para todas las entradas del sumario a las que asignó enlaces en el documento de origen.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index d43867f1e36..b8aab3b7f75 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-31 08:51+0000\n"
+"PO-Revision-Date: 2017-06-21 10:41+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496220700.000000\n"
+"X-POOTLE-MTIME: 1498041716.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icono</alt></image>"
#: 01171400.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index b315fc23e8a..2c91af31122 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 10:16+0000\n"
+"PO-Revision-Date: 2017-06-21 10:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496225774.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498042184.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Cuando se firma un documento en OpenOffice.org 3.2/StarOffice 9.2 o una versión posterior y se abre dicho documento en una versión más antigua del programa, la firma se mostrará como «no válida». Las firmas creadas con versiones más antiguas del programa se marcarán con «solo se han firmado partes del documento» cuando se cargan en el programa más reciente."
#: digital_signatures.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "Cuando se firma un documento OOXML, la firma se marcará siempre con «solo se han firmado partes del documento». Los metadatos de los archivos OOXML nunca se firman para que sean compatibles con Microsoft Office."
#: digital_signatures.xhp
msgctxt ""
@@ -9854,7 +9854,7 @@ msgctxt ""
"par_id3154124\n"
"help.text"
msgid "A number of filters are located on the <link href=\"text/shared/02/24010000.xhp\" name=\"Image Filter\"><emph>Image Filter</emph></link> toolbar, which you can open with the icon on the <emph>Image</emph> Bar."
-msgstr ""
+msgstr "La barra de herramientas <link href=\"text/shared/02/24010000.xhp\" name=\"Filtro de imagen\"><emph>Filtro de imagen</emph></link> contiene varios filtros. Dicha barra se puede abrir mediante un icono en la barra <emph>Imagen</emph>."
#: insert_bitmap.xhp
msgctxt ""
@@ -17270,7 +17270,7 @@ msgctxt ""
"par_id40161212063330252\n"
"help.text"
msgid "Opens the file and applies specified macros from the file."
-msgstr ""
+msgstr "Abre el archivo y aplica las macros especificadas contenidas en el archivo."
#: start_parameters.xhp
msgctxt ""
@@ -17694,7 +17694,7 @@ msgctxt ""
"par_id3150309\n"
"help.text"
msgid "Opens following files for editing, regardless whether they are templates or not."
-msgstr ""
+msgstr "Abre los archivos siguientes para su edición, sin importar si son plantillas o no."
#: start_parameters.xhp
msgctxt ""
@@ -18326,7 +18326,7 @@ msgctxt ""
"par_id041620170723493622\n"
"help.text"
msgid "Enter <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">Command</item></caseinline><defaultinline><item type=\"menuitem\">Ctrl</item></defaultinline></switchinline><item type=\"menuitem\">+Shift+N </item>in any %PRODUCTNAME module."
-msgstr ""
+msgstr "Oprima <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">⌘⇧N</item></caseinline><defaultinline><item type=\"menuitem\">Ctrl. + Mayús. + N</item></defaultinline></switchinline><item type=\"menuitem\"></item> en cualquier módulo de %PRODUCTNAME."
#: template_manager.xhp
msgctxt ""
@@ -18334,7 +18334,7 @@ msgctxt ""
"par_id041620170723497279\n"
"help.text"
msgid "Press the <item type=\"menuitem\">Templates </item>button in the Start Center."
-msgstr ""
+msgstr "Pulse en el botón <item type=\"menuitem\">Plantillas</item> del Centro de inicio."
#: template_manager.xhp
msgctxt ""
@@ -18342,7 +18342,7 @@ msgctxt ""
"par_id041620170723509119\n"
"help.text"
msgid "Select any template type from the <item type=\"menuitem\">Templates </item>button of the Start Center."
-msgstr ""
+msgstr "Seleccione cualquier tipo de plantilla desde el botón <item type=\"menuitem\">Plantillas</item> del Centro de inicio."
#: template_manager.xhp
msgctxt ""
@@ -18350,7 +18350,7 @@ msgctxt ""
"par_id041620170723502887\n"
"help.text"
msgid "Templates save editing time by starting new documents with pre-filled contents and formatting. The Template Manager allows you to access and organize templates in %PRODUCTNAME."
-msgstr ""
+msgstr "Las plantillas le ahorran tiempo de edición al permitirle iniciar documentos nuevos con contenido y formato preestablecidos. El Gestor de plantillas permite organizar y utilizar plantillas en %PRODUCTNAME."
#: template_manager.xhp
msgctxt ""
@@ -18446,7 +18446,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "To add the templates in another folder to the <emph>My Templates</emph> category, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
-msgstr ""
+msgstr "Para añadir las plantillas de otra carpeta a la categoría <emph>Mis plantillas</emph>, diríjase a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Rutas\"><emph>$[officename] ▸ Rutas</emph></link> y, a continuación, especifique la ruta de acceso."
#: template_manager.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 7073238655b..7b5f4bd472c 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-05 05:52+0000\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-21 11:01+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496641961.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498042873.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"hd_id3150103\n"
"help.text"
msgid "R"
-msgstr ""
+msgstr "Rj."
#: 01010500.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"hd_id3145366\n"
"help.text"
msgid "G"
-msgstr ""
+msgstr "Vr."
#: 01010500.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"hd_id3153573\n"
"help.text"
msgid "B"
-msgstr ""
+msgstr "Az."
#: 01010500.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Seleccionar un color nuevo"
#: 01010501.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Seleccionar un color nuevo"
#: 01010501.xhp
msgctxt ""
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,8 +2285,16 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
-msgstr ""
+msgid "The Pick a Color Window"
+msgstr "Ventana Elija un color"
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Ventana Elija un color</caption></image>"
#: 01010501.xhp
msgctxt ""
@@ -2294,14 +2302,14 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "La ventana Elija un color consiste de cuatro apartados principales."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
@@ -2446,7 +2454,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "N.º hex."
#: 01010501.xhp
msgctxt ""
@@ -2454,7 +2462,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Muestra y establece el valor de color en el modelo RGB expresado en forma de número hexadecimal.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2462,7 +2470,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2470,7 +2478,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Matiz"
#: 01010501.xhp
msgctxt ""
@@ -14406,7 +14414,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the user information and server settings for when you send form letters as e-mail messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Especifica la información de usuario y la configuración de servidor para el envío de cartas modelo como mensajes de correo electrónico.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -15022,7 +15030,7 @@ msgctxt ""
"par_id5616645\n"
"help.text"
msgid "Press the <emph>Options</emph> button on the <link href=\"text/shared/optionen/01030300.xhp\" name=\"Security\">Security</link> page."
-msgstr ""
+msgstr "Pulse en el botón <emph>Opciones</emph> de la pestaña <link href=\"text/shared/optionen/01030300.xhp\" name=\"Seguridad\">Seguridad</link>."
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15030,7 +15038,7 @@ msgctxt ""
"par_id5616626\n"
"help.text"
msgid "The Security options and warnings dialog contains the following controls:"
-msgstr ""
+msgstr "El cuadro de diálogo Opciones de seguridad y alertas contiene los controles siguientes:"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15038,7 +15046,7 @@ msgctxt ""
"par_idN10647\n"
"help.text"
msgid "When saving or sending"
-msgstr ""
+msgstr "Al guardar o enviar"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15054,7 +15062,7 @@ msgctxt ""
"par_idN1064E\n"
"help.text"
msgid "When printing"
-msgstr ""
+msgstr "Al imprimir"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15070,7 +15078,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "When signing"
-msgstr ""
+msgstr "Al firmar"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15086,7 +15094,7 @@ msgctxt ""
"par_idN1065C\n"
"help.text"
msgid "When creating PDF files"
-msgstr ""
+msgstr "Al crear archivos PDF"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15102,7 +15110,7 @@ msgctxt ""
"par_idN10663\n"
"help.text"
msgid "Remove personal information on saving"
-msgstr ""
+msgstr "Eliminar información personal al guardar"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15118,7 +15126,7 @@ msgctxt ""
"par_idN1067C\n"
"help.text"
msgid "Recommend password protection on saving"
-msgstr ""
+msgstr "Recomendar protección con contraseña al guardar"
#: securityoptionsdialog.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/simpress/guide.po b/source/es/helpcontent2/source/text/simpress/guide.po
index b1353fa9740..0b195d66cef 100644
--- a/source/es/helpcontent2/source/text/simpress/guide.po
+++ b/source/es/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-23 23:40+0000\n"
+"PO-Revision-Date: 2017-06-09 21:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495582814.000000\n"
+"X-POOTLE-MTIME: 1497043492.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id221120161524594919\n"
"help.text"
msgid "Note: If several images are in the same folder, you can select a group of photos using the Shift or Ctrl keys while clicking on their filenames."
-msgstr ""
+msgstr "Nota: si existen varias imágenes en la misma carpeta, puede seleccionar un grupo de fotos si mantiene oprimida la tecla Mayús. o Ctrl. y pulsa en los nombres de los archivos."
#: photo_album.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/00.po b/source/es/helpcontent2/source/text/smath/00.po
index b5203866d1e..008eeebfc76 100644
--- a/source/es/helpcontent2/source/text/smath/00.po
+++ b/source/es/helpcontent2/source/text/smath/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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-01-11 02:11+0000\n"
+"PO-Revision-Date: 2017-06-21 07:08+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484100685.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498028899.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3152942\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Unary/Binary Operators</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Operadores unarios/binarios</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Operadores unarios/binarios</emph>"
#: 00000004.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3150360\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Relations</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Relaciones</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Relaciones</emph>"
#: 00000004.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Operators</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Operadores</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Operadores</emph>"
#: 00000004.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3149297\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Functions</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Funciones</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Funciones</emph>"
#: 00000004.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3147092\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Brackets</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Paréntesis</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Paréntesis</emph>"
#: 00000004.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3153510\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Attributes</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Atributos</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Atributos</emph>"
#: 00000004.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3154114\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Formats</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Formatos</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Formatos</emph>"
#: 00000004.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3149008\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Set Operations</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Operaciones de conjuntos</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Operaciones de conjuntos</emph>"
#: 00000004.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3153291\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Others</emph>"
-msgstr "Abra el menú contextual en la ventana Órdenes y elija <emph>Otros</emph>"
+msgstr "Abra el menú contextual en el cuadro Órdenes y elija <emph>Otros</emph>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/01.po b/source/es/helpcontent2/source/text/smath/01.po
index 92452814bdf..a27682503e5 100644
--- a/source/es/helpcontent2/source/text/smath/01.po
+++ b/source/es/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-23 20:40+0000\n"
+"PO-Revision-Date: 2017-06-21 10:06+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495572018.000000\n"
+"X-POOTLE-MTIME: 1498039573.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3149051\n"
"help.text"
msgid "\"Markers\" are placeholders. They take the form of <?> in the <emph>Commands</emph> window."
-msgstr "Los «marcadores» son espacios reservados que aparecen como <?> en la ventana <emph>Órdenes</emph>."
+msgstr "Las «marcas» son comodines que aparecen como <?> en el cuadro <emph>Órdenes</emph>."
#: 02090000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "\"Markers\" are placeholders. They take the form of <?> in the <emph>Commands</emph> window."
-msgstr "Las «marcas» son comodines que se muestran en la ventana <emph>Órdenes</emph> de la siguiente manera: <?>."
+msgstr "Las «marcas» son comodines que aparecen como <?> en el cuadro <emph>Órdenes</emph>."
#: 02100000.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3145253\n"
"help.text"
msgid "Changes in the <emph>Commands</emph> window are automatically updated if <emph>AutoUpdate Display</emph> is activated."
-msgstr "Los cambios que realice en el cuadro de <emph>Órdenes</emph> se actualizan automáticamente si se activa la opción <emph>Actualizar visualización automáticamente</emph>."
+msgstr "Los cambios que realice en el cuadro <emph>Órdenes</emph> se actualizan automáticamente si se activa la opción <emph>Actualizar visualización automáticamente</emph>."
#: 03080000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3153250\n"
"help.text"
msgid "You can access the same functions in submenus through the context menu of the <emph>Commands</emph> window."
-msgstr "Es posible acceder a las mismas funciones, organizadas en submenús, si pulsa con el botón secundario del ratón en el cuadro de <emph>Órdenes</emph>."
+msgstr "Es posible acceder a las mismas funciones, organizadas en submenús, si pulsa con el botón secundario del ratón en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
-msgstr "Se pueden elegir varios operadores unarios y binarios para construir una fórmula de $[officename] Math. «Unario» se refiere a los operadores que afectan un marcador de posición. «Binario» se refiere a los operadores que conectan dos marcadores de posición. El panel Elementos muestra los operadores individuales. El <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">menú contextual</link> del cuadro <emph>Órdenes</emph> también contiene una lista de estos operadores, así como también una lista de los operadores adicionales. Si necesita un operador que no está incluido en el panel Elementos, use el menú contextual o escríbalo directamente en el cuadro <emph>Órdenes</emph>."
+msgstr "Se pueden elegir varios operadores unarios y binarios para construir una fórmula de $[officename] Math. «Unario» se refiere a los operadores que afectan un comodín. «Binario» se refiere a los operadores que conectan dos comodines. El panel Elementos muestra los operadores individuales. El <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">menú contextual</link> del cuadro <emph>Órdenes</emph> también contiene una lista de estos operadores, así como también una lista de los operadores adicionales. Si necesita un operador que no está incluido en el panel Elementos, use el menú contextual o escríbalo directamente en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3153003\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PLUSX\">Inserts a <emph>plus</emph> with one placeholder.</ahelp> You can also type <emph>+ <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PLUSX\">Inserta un <emph>signo más</emph> con un marcador de posición.</ahelp> También puede escribir <emph>+ <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_PLUSX\">Inserta un <emph>signo de suma</emph> con un comodín.</ahelp> También puede escribir <emph>+ <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3155991\n"
"help.text"
msgid "Minus"
-msgstr "Signo -"
+msgstr "Menos"
#: 03090100.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_MINUSX\">Inserts a <emph>minus</emph> with one placeholder.</ahelp> You can also type <emph>-<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_MINUSX\">Inserta un <emph>signo menos</emph> con un marcador de posición.</ahelp> También puede escribir <emph>-<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_MINUSX\">Inserta un <emph>signo de resta</emph> con un comodín.</ahelp> También puede escribir <emph>-<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3150260\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PLUSMINUSX\">Inserts a <emph>plus/minus</emph> with one placeholder.</ahelp> You can also type <emph>+-<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PLUSMINUSX\">Inserta un <emph>signo más/menos</emph> con un marcador de posición.</ahelp> También puede escribir <emph>+-<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_PLUSMINUSX\">Inserta un <emph>signo más/menos</emph> con un comodín.</ahelp> También puede escribir <emph>+-<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3154281\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_MINUSPLUSX\">Inserts a <emph>minus/plus</emph> with one placeholder.</ahelp> You can also type <emph>-+<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_MINUSPLUSX\">Inserta un <emph>signo menos/más</emph> con un marcador de posición.</ahelp> También puede escribir <emph>-+<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_MINUSPLUSX\">Inserta un <emph>signo menos/más</emph> con un comodín.</ahelp> También puede escribir <emph>-+<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3150351\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XPLUSY\">Inserts a <emph>plus</emph> with two placeholders.</ahelp> You can also type <emph><?>+<?></emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XPLUSY\">Inserta un <emph>signo más</emph> con dos comodines.</ahelp> También puede escribir <emph><?>+<?></emph> en la ventana de Comandos."
+msgstr "<ahelp hid=\"HID_SMA_XPLUSY\">Inserta un <emph>signo de suma</emph> con dos comodines.</ahelp> También puede escribir <emph><?>+<?></emph> en el cuadro Órdenes."
#: 03090100.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id3154196\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XCDOTY\">Inserts a dot operator with two placeholders.</ahelp> You can also type <emph><?>cdot<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XCDOTY\">Inserta un operador de punto con dos comodines.</ahelp> También puede escribir <emph><?>cdot<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XCDOTY\">Inserta un operador de punto con dos comodines.</ahelp> También puede escribir <emph><?>cdot<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3149821\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XTIMESY\">Inserts an 'x' <emph>multiplication</emph> with two placeholders.</ahelp> You can also type <emph><?>times<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XTIMESY\">Inserta una 'x' de <emph>multiplicación</emph> con dos comodines.</ahelp> También puede escribir <emph><?>times<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XTIMESY\">Inserta una «×» de <emph>multiplicación</emph> con dos comodines.</ahelp> También puede escribir <emph><?>times<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3149040\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSYMTIMESY\">Inserts an asterisk multiplication sign with two placeholders. </ahelp> You can also type <emph><?>*<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XSYMTIMESY\">Inserta un signo de multiplicación de asterisco con dos comodines. </ahelp> También puede escribir <emph><?>*<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XSYMTIMESY\">Inserta un signo de multiplicación de asterisco con dos comodines. </ahelp> También puede escribir <emph><?>*<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3147136\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XMINUSY\">Inserts a subtraction sign with two placeholders.</ahelp> You can also type <emph><?>-<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XMINUSY\">Inserta un signo de resta con dos comodines.</ahelp> También puede escribir <emph><?>-<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XMINUSY\">Inserta un signo de resta con dos comodines.</ahelp> También puede escribir <emph><?>-<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3155125\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XOVERY\">Inserts a fraction with two placeholders.</ahelp> You can also type <emph><?>over<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XOVERY\">Inserta una fracción con dos comodines.</ahelp> También puede escribir <emph><?>over<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XOVERY\">Inserta una fracción con dos comodines.</ahelp> También puede escribir <emph><?>over<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3149536\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XDIVY\">Inserts a division sign with two placeholders.</ahelp> You can also type <emph><?>div<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XDIVY\">Inserta un signo de división con dos comodines.</ahelp> También puede escribir <emph><?>div<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XDIVY\">Inserta un signo de división con dos comodines.</ahelp> También puede escribir <emph><?>div<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3147500\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSYMDIVIDEY\">Inserts a slash '/' with two placeholders. </ahelp> You can also type <emph><?>/<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XSYMDIVIDEY\">Inserta una línea oblicua '/' con dos comodines. </ahelp> También puede escribir <emph><?>/<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XSYMDIVIDEY\">Inserta una línea oblicua '/' con dos comodines. </ahelp> También puede escribir <emph><?>/<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3153505\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NEGX\">Inserts a <emph>Boolean NOT</emph> with one placeholder.</ahelp> You can also type <emph>neg<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_NEGX\">Inserta un <emph>NO booleano</emph> con un marcador de posición.</ahelp> También puede escribir <emph>neg<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_NEGX\">Inserta un <emph>NO booleano</emph> con un comodín.</ahelp> También puede escribir <emph>neg<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3147599\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XANDY\">Inserts a <emph>Boolean AND</emph> with two placeholders.</ahelp> You can also type <emph><?>and<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XANDY\">Inserta un <emph>Y booleano</emph> con dos comodines.</ahelp> También puede escribir <emph><?>and<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XANDY\">Inserta un <emph>Y booleano</emph> con dos comodines.</ahelp> También puede escribir <emph><?>and<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id3154076\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XORY\">Inserts a <emph>Boolean OR</emph> with two placeholders.</ahelp> You can also type <emph><?>or<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XORY\">Inserta un <emph>O booleano</emph> con dos comodines.</ahelp> También puede escribir <emph><?>or<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XORY\">Inserta un <emph>O booleano</emph> con dos comodines.</ahelp> También puede escribir <emph><?>or<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id3156102\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XCIRCY\">Inserts a <emph>concatenation sign</emph> with two placeholders. </ahelp> You can also type <emph>circ</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XCIRCY\">Inserta un <emph>signo de concatenación</emph> con dos comodines.</ahelp> También puede escribir <emph>circ</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XCIRCY\">Inserta un <emph>signo de concatenación</emph> con dos comodines.</ahelp> También puede escribir <emph>circ</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3150464\n"
"help.text"
msgid "You can also insert user-defined unary operators by typing <emph>uoper</emph> in the <emph>Commands</emph> window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command <emph>uoper %theta x</emph> produces a small Greek letter theta (a component of the <emph>$[officename] Math</emph> character set). You can also insert characters not in the $[officename] character set by choosing <emph>Tools - Symbols - Edit</emph>."
-msgstr "También puede insertar operadores unarios definidos por el usuario si escribe <emph>uoper</emph> en la ventana <emph>Órdenes</emph> y, a continuación, la sintaxis para el carácter. Esta función resulta útil para incorporar caracteres especiales en una fórmula. Por ejemplo, la orden <emph>uoper %theta x</emph> produce una pequeña letra griega zeta (uno de los caracteres de <emph>$[officename] Math</emph>). También puede insertar caracteres ajenos al conjunto de caracteres de $[officename] si selecciona <emph>Herramientas ▸ Símbolos ▸ Editar</emph>."
+msgstr "También puede insertar operadores unarios definidos por el usuario si escribe <emph>uoper</emph> en el cuadro <emph>Órdenes</emph> y, a continuación, la sintaxis para el carácter. Esta función resulta útil para incorporar caracteres especiales en una fórmula. Por ejemplo, la orden <emph>uoper %theta x</emph> produce una pequeña letra griega zeta (uno de los caracteres de <emph>$[officename] Math</emph>). También puede insertar caracteres ajenos al conjunto de caracteres de $[officename] si selecciona <emph>Herramientas ▸ Símbolos ▸ Editar</emph>."
#: 03090100.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3150906\n"
"help.text"
msgid "By typing <emph><?>oplus<?></emph> in the <emph>Commands</emph> window, you insert a <emph>circled plus operator</emph> in your document."
-msgstr "El comando <emph><?>oplus<?></emph> inserta en el documento un <emph>carácter de adición</emph>, <emph>rodeado por un círculo</emph>."
+msgstr "La orden <emph><?>oplus<?></emph> inserta en el documento un <emph>carácter de adición</emph>, <emph>rodeado por un círculo</emph>."
#: 03090100.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3150089\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XWIDESLASHY\">Type <emph>a wideslash b</emph> in the <emph>Commands</emph> window to produce two characters with a slash (from lower left to upper right) between them.</ahelp> The characters are set such that everything to the left of the slash is up, and everything to the right is down. This command is also available in the context menu of the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XWIDESLASHY\">Escriba <emph>a wideslash b</emph> en la ventana <emph>Comandos</emph> para producir dos caracteres con una barra oblicua (/) entre ambos.</ahelp> El carácter que se encuentre a la izquierda de la barra se posicionará arriba; el que se encuentre a la derecha, abajo. Este comando también está disponible en el menú contextual de la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XWIDESLASHY\">Escriba <emph>a wideslash b</emph> en el cuadro <emph>Órdenes</emph> para producir dos caracteres con una barra oblicua (/) entre ambos.</ahelp> El carácter que se encuentre a la izquierda de la barra se posicionará arriba; el que se encuentre a la derecha, abajo. Esta orden también está disponible en el menú contextual del cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3150024\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XWIDEBSLASHY\">Type <emph>a widebslash b</emph> in the <emph>Commands</emph> window to produce two characters with a slash (from upper left to lower right) between them.</ahelp> The characters are set such that everything to the left of the slash is down, and everything to the right is up. This command is also available in the context menu of the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XWIDEBSLASHY\">Escriba <emph>a widebslash b</emph> en la ventana <emph>Comandos</emph> para producir dos caracteres con una barra oblicua inversa (desde la parte superior izquierda a la parte inferior derecha) entre ambos.</ahelp> El carácter que se encuentre a la izquierda de la barra se posicionará abajo; el que se encuentre a la derecha, arriba. Este comando también está disponible en el menú contextual de la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XWIDEBSLASHY\">Escriba <emph>a widebslash b</emph> en el cuadro <emph>Órdenes</emph> para producir dos caracteres con una barra oblicua inversa (desde la parte superior izquierda a la parte inferior derecha) entre ambos.</ahelp> El carácter que se encuentre a la izquierda de la barra se posicionará abajo; el que se encuentre a la derecha, arriba. Esta orden también está disponible en el menú contextual del cuadro <emph>Órdenes</emph>."
#: 03090100.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3149376\n"
"help.text"
msgid "Type <emph>sub</emph> or <emph>sup</emph> in the Commands window to add indexes and powers to the characters in your formula; for example, a sub 2."
-msgstr "Se puede escribir <emph>sub</emph> y <emph>sup</emph> en la ventana de Comandos y añadir índices y potencias a los caracteres de su fórmula, por ejemplo, a sub 2."
+msgstr "Se puede escribir <emph>sub</emph> y <emph>sup</emph> en el cuadro Órdenes y añadir índices y potencias a los caracteres de su fórmula, por ejemplo, a sub 2."
#: 03090100.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3147398\n"
"help.text"
msgid "When entering information manually in the Commands window, please note that a number of operators require spaces between the elements for the correct structure. This is especially true if you are using values instead of placeholders in your operators, for example, to construct a division 4 div 3 or a div b."
-msgstr "Al introducir datos manualmente en la ventana de comandos, tenga en cuenta que en muchos operadores es imprescindible dejar espacios para que la sintaxis sea correcta. Esto es especialmente importante cuando se utilizan valores en lugar de comodines con los operadores; por ejemplo, cuando se crea una división 4 div 3 o a div b."
+msgstr "Al introducir datos manualmente en el cuadro Órdenes, tenga en cuenta que en muchos operadores es imprescindible dejar espacios para que la sintaxis sea correcta. Esto es especialmente importante cuando se utilizan valores en lugar de comodines con los operadores; por ejemplo, cuando se crea una división 4 div 3 o a div b."
#: 03090200.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3152947\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XEQY\">Inserts an equal sign (=) with two placeholders.</ahelp> You can also directly type <emph><?> = <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XEQY\">Inserta un signo de igual (=) con dos comodines.</ahelp> También puede escribir directamente <emph><?> = <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XEQY\">Inserta un signo de igual (=) con dos comodines.</ahelp> También puede escribir directamente <emph><?> = <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_id3150976\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNEQY\">The <emph>neq</emph> icon or command inserts an <emph>inequality</emph> with two placeholders.</ahelp> You can also type <emph><?> neq <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XNEQY\">El icono o comando <emph>neq</emph> inserta una <emph>desigualdad</emph> con dos comodines.</ahelp> También puede escribir <emph><?> neq <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XNEQY\">El icono o comando <emph>neq</emph> inserta una <emph>desigualdad</emph> con dos comodines.</ahelp> También puede escribir <emph><?> neq <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3155181\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XEQUIVY\">Inserts a character for the <emph>identical to</emph> (congruent) relation with two placeholders.</ahelp> You can also type <emph><?> equiv <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XEQUIVY\">Inserta un carácter para la relación <emph>idéntico a</emph> (congruente) con dos comodines.</ahelp> También puede escribir <emph><?> equiv <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XEQUIVY\">Inserta un carácter para la relación <emph>idéntico a</emph> (congruente) con dos comodines.</ahelp> También puede escribir <emph><?> equiv <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3148976\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XORTHOY\">Inserts a character for an <emph>orthogonal</emph> (right angled) relation with two placeholders.</ahelp> You can also type <emph><?> ortho <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XORTHOY\">Inserta un carácter para una relación <emph>ortogonal</emph> (en ángulo recto) con dos marcadores de posición.</ahelp> También puede escribir <emph><?> ortho <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XORTHOY\">Inserta un carácter para una relación <emph>ortogonal</emph> (en ángulo recto) con dos comodines.</ahelp> También puede escribir <emph><?> ortho <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id3147079\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XDIVIDESY\">Inserts the <emph>divides</emph> character.</ahelp> You can also type <emph><?> divides <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XDIVIDESY\">Inserta el carácter <emph>divide</emph>.</ahelp> También puede escribir <emph><?> divides <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XDIVIDESY\">Inserta el carácter <emph>divide</emph>.</ahelp> También puede escribir <emph><?> divides <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNDIVIDESY\">This icon inserts the <emph>does not divide</emph> character.</ahelp> You can also type <emph><?>ndivides<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XNDIVIDESY\">Este icono inserta el carácter <emph>no divide</emph>.</ahelp> También puede escribir <emph><?>ndivides<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XNDIVIDESY\">Este icono inserta el carácter <emph>no divide</emph>.</ahelp> También puede escribir <emph><?>ndivides<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_id3148889\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XLTY\">Inserts the <emph>less than</emph> relation.</ahelp> You can also type <emph><?>lt<?></emph> or <?> < <?> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XLTY\">Inserta la relación <emph>menor que</emph>.</ahelp> También puede escribir <emph><?>lt<?></emph> o <?> < <?> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XLTY\">Inserta la relación <emph>menor que</emph>.</ahelp> También puede escribir <emph><?>lt<?></emph> o <?> < <?> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id3146904\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XGTY\">Inserts the <emph>greater than </emph>relation.</ahelp> You can also type <emph><?> gt <?></emph> or <?> > <?> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XGTY\">Inserta la relación <emph>mayor que</emph>.</ahelp> También puede escribir <emph><?> gt <?></emph> o <?> > <?> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XGTY\">Inserta la relación <emph>mayor que</emph>.</ahelp> También puede escribir <emph><?> gt <?></emph> o <?> > <?> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3149231\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XAPPROXY\">Inserts the <emph>approximately equal</emph> relation with two placeholders.</ahelp> You can also type <emph><?> approx <?> </emph>in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XAPPROXY\">Inserta la relación <emph>aproximadamente igual</emph> con dos comodines.</ahelp> También puede escribir <emph><?> approx <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XAPPROXY\">Inserta la relación <emph>aproximadamente igual</emph> con dos comodines.</ahelp> También puede escribir <emph><?> approx <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3147449\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XPARALLELY\">Inserts a <emph>parallel </emph>relation with two placeholders.</ahelp> You can also type <emph><?>parallel<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XPARALLELY\">Inserta una relación <emph>paralela</emph> con dos comodines.</ahelp> También puede escribir <emph><?>parallel<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XPARALLELY\">Inserta una relación <emph>paralela</emph> con dos comodines.</ahelp> También puede escribir <emph><?>parallel<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3154078\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XLESLANTY\">Inserts a <emph>less than or equal to</emph> relation with two placeholders.</ahelp> You can also type <emph><?> leslant <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XLESLANTY\">Inserta la relación <emph>menor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> leslant <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XLESLANTY\">Inserta la relación <emph>menor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> leslant <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id3156098\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XGESLANTY\">Inserts the <emph>greater than or equal to</emph> relation with two placeholders.</ahelp> You can also type <emph><?>geslant<?> </emph>in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XGESLANTY\">Inserta la relación <emph>mayor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>geslant<?> </emph>en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XGESLANTY\">Inserta la relación <emph>mayor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>geslant<?> </emph>en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_id3155580\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSIMEQY\">Inserts the <emph>similar or equal to</emph> relation with two placeholders.</ahelp> You can also type <emph><?>simeq<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XSIMEQY\">Inserta la relación <emph>parecido o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>simeq<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XSIMEQY\">Inserta la relación <emph>parecido o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>simeq<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3155088\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XPROPY\">Inserts the <emph>proportional to</emph> relation with two placeholders.</ahelp> You can also type <emph><?> prop <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XPROPY\">Inserta la relación <emph>proporcional a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> prop <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XPROPY\">Inserta la relación <emph>proporcional a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> prop <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3150033\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XLEY\">Inserts the <emph>less than or equal to</emph> relation with two placeholders.</ahelp> You can also type <emph><?> le <?></emph> or <emph><?> <= <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XLEY\">Inserta la relación <emph>menor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> le <?></emph> o <emph><?> <= <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XLEY\">Inserta la relación <emph>menor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> le <?></emph> o <emph><?> <= <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"par_id3155379\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XGEY\">Inserts the <emph>greater than or equal to</emph> relation with two placeholders.</ahelp> You can also type <emph><?> ge <?></emph> or <emph><?> >= <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XGEY\">Inserta la relación <emph>mayor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> ge <?></emph> o <emph><?> >= <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XGEY\">Inserta la relación <emph>mayor que o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?> ge <?></emph> o <emph><?> >= <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id3155947\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSIMY\">This icon inserts the <emph>similar to</emph> relation with two placeholders.</ahelp> You can also type <emph><?>sim<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XSIMY\">Este icono inserta la relación <emph>parecido a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>sim<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XSIMY\">Este icono inserta la relación <emph>parecido a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>sim<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3150670\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XTOWARDY\">Inserts a <emph>toward</emph> relation symbol with two placeholders.</ahelp> You can also type <emph><?> toward <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XTOWARDY\">Inserta un símbolo de relación <emph>hacia</emph> con dos comodines.</ahelp> También puede escribir <emph><?> toward <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XTOWARDY\">Inserta un símbolo de relación <emph>hacia</emph> con dos comodines.</ahelp> También puede escribir <emph><?> toward <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3147279\n"
"help.text"
msgid "double arrow pointing left"
-msgstr "Flecha doble hacia la iquierda"
+msgstr "flecha doble hacia la izquierda"
#: 03090200.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3149599\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DLARROW\">Inserts the logical relation <emph>arrow with double bar pointing left</emph>.</ahelp> You can also type <emph>dlarrow</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DLARROW\">Inserta la relación lógica <emph>flecha con barra doble hacia la izquierda</emph>.</ahelp> También puede escribir <emph>dlarrow</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_DLARROW\">Inserta la relación lógica <emph>flecha con barra doble hacia la izquierda</emph>.</ahelp> También puede escribir <emph>dlarrow</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id3148707\n"
"help.text"
msgid "double arrow pointing left and right"
-msgstr "Flecha doble hacia la izquierda y derecha"
+msgstr "flecha doble hacia la izquierda y derecha"
#: 03090200.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_id3148721\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DLRARROW\">Inserts the logical relation <emph>arrow with double bar pointing left and right</emph> with two operators.</ahelp> You can also type <emph>dlrarrow</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DLRARROW\">Inserta la relación lógica <emph>flecha con barra doble hacia la izquierda y derecha </emph> con dos operadores.</ahelp> También puede escribir <emph>dlrarrow</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_DLRARROW\">Inserta la relación lógica <emph>flecha con barra doble hacia la izquierda y derecha </emph> con dos operadores.</ahelp> También puede escribir <emph>dlrarrow</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3150853\n"
"help.text"
msgid "double arrow pointing right"
-msgstr "Flecha doble hacia la derecha"
+msgstr "flecha doble hacia la derecha"
#: 03090200.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id3150866\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DRARROW\">Inserts the logical operator <emph>arrow with double bar pointing right</emph> with two placeholders.</ahelp> You can also type <emph>drarrow</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DRARROW\">Inserta el operador lógico <emph>flecha con barra doble hacia la derecha </emph> con dos operadores.</ahelp> También puede escribir <emph>drarrow</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_DRARROW\">Inserta el operador lógico <emph>flecha con barra doble hacia la derecha </emph> con dos operadores.</ahelp> También puede escribir <emph>drarrow</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3150867\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRECEDES\">Inserts the logical operator <emph>precedes</emph> with two placeholders.</ahelp> You can also type <emph>prec</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PRECEDES\">Inserta el operador lógico <emph>precedes</emph> con dos marcadores de posición.</ahelp> Usted puede también escribir<emph>prec</emph> en la <emph>Ventana de </emph> comandos."
+msgstr "<ahelp hid=\"HID_SMA_PRECEDES\">Inserta el operador lógico <emph>precedes</emph> con dos comodines.</ahelp> Usted puede también escribir<emph>prec</emph> en la <emph>Ventana de </emph> comandos."
#: 03090200.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3150855\n"
"help.text"
msgid "succeeds"
-msgstr "Exitoso"
+msgstr "sucede"
#: 03090200.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SUCCEEDS\">Inserts the logical operator <emph>succeeds</emph> with two placeholders.</ahelp> You can also type <emph>succ</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SUCCEEDS\">Inserta el operador lógico <emph>succeeds</emph> con dos marcadores de posición.</ahelp> También puede escribir <emph>succ</emph> en la ventana <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SUCCEEDS\">Inserta el operador lógico <emph>succeeds</emph> con dos comodines.</ahelp> También puede escribir <emph>succ</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id3150869\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NOTPRECEDES\">Inserts the logical operator <emph>not precedes</emph> with two placeholders.</ahelp> You can also type <emph>nprec</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_NOTPRECEDES\">Inserta el operador lógico <emph>no precede a</emph> con dos marcadores de posición.</ahelp> También puede escribir <emph>nprec</emph> en el cuadro <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_NOTPRECEDES\">Inserta el operador lógico <emph>no precede a</emph> con dos comodines.</ahelp> También puede escribir <emph>nprec</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NOTSUCCEEDS\">Inserts the logical operator <emph>not succeeds</emph> with two placeholders.</ahelp> You can also type <emph>nsucc</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_NOTSUCCEEDS\">Las inserciones del operador lógico <emph>no se consiguen</emph> con dos comodines.</ahelp> También puede escribir <emph>nsucc</emph> en la ventana <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_NOTSUCCEEDS\">Inserta el operador lógico <emph>no sucede</emph> con dos comodines.</ahelp> También puede escribir <emph>nsucc</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"par_id3150871\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRECEDESEQUAL\">Inserts the logical operator <emph>precedes or equal</emph> with two placeholders.</ahelp> You can also type <emph>preccurlyeq</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUAL\">Inserta el operador lógico <emph>precede o es igual que</emph> con dos marcadores de posición.</ahelp> También puede escribir <emph>preccurlyeq</emph> en la ventana <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUAL\">Inserta el operador lógico <emph>precede o es igual que</emph> con dos comodines.</ahelp> También puede escribir <emph>preccurlyeq</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3150872\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SUCCEEDSEQUAL\">Inserts the logical operator <emph>succeeds or equal</emph> with two placeholders.</ahelp> You can also type <emph>succcurlyeq</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SUCCEEDSEQUAL\">Inserta el operador lógico <emph>sucede o es igual</emph> con dos marcadores de posición.</ahelp> También puede escribir <emph>succcurlyeq</emph> en el cuadro <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SUCCEEDSEQUAL\">Inserta el operador lógico <emph>sucede o es igual</emph> con dos comodines.</ahelp> También puede escribir <emph>succcurlyeq</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id3150873\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Inserts the logical operator <emph>precedes or equivalent</emph> with two placeholders.</ahelp> You can also type <emph>precsim</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Inserta el operador lógico <emph>precede a o es igual que</emph> con dos marcadores de posición.</ahelp> También puede escribir <emph>precsim</emph> en el cuadro <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Inserta el operador lógico <emph>precede a o es igual que</emph> con dos comodines.</ahelp> También puede escribir <emph>precsim</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"par_id3150874\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SUCCEEDSEQUIV\">Inserts the logical operator <emph>succeeds or equivalent</emph> with two placeholders.</ahelp> You can also type <emph>succsim</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SUCCEEDSEQUIV\">Inserta el operador lógico <emph>sucede o es equivalente</emph> con dos marcadores de posición.</ahelp> También puede escribir <emph>succsim</emph> en el cuadro <emph>Órdenes</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SUCCEEDSEQUIV\">Inserta el operador lógico <emph>sucede o es equivalente</emph> con dos comodines.</ahelp> También puede escribir <emph>succsim</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3153545\n"
"help.text"
msgid "To create the <emph>much greater than</emph> relation with two placeholders, type <emph><?> gg <?> </emph>or <emph>>></emph> in the <emph>Commands</emph> window."
-msgstr "Para crear la relación <emph>mucho mayor que</emph> con dos comodines, escriba <emph><?> gg <?> </emph>o <emph>>></emph> en la ventana <emph>Comandos</emph>."
+msgstr "Para crear la relación <emph>mucho mayor que</emph> con dos comodines, escriba <emph><?> gg <?> </emph>o <emph>>></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090200.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"par_id3154735\n"
"help.text"
msgid "When entering information manually in the <emph>Commands</emph> window, note that a number of operators require spaces for the correct structure. This is especially true if you are working with values instead of placeholders. For example, for the \"is considerably greater\" relation, type either <emph>10 gg 1</emph> or <emph>a gg b</emph>."
-msgstr "Al introducir datos manualmente en la ventana de comandos, tenga en cuenta que en muchos operadores es imprescindible dejar espacios para que la sintaxis sea correcta. Esto es especialmente importante al trabajar con valores, en lugar de con comodines; cuando por ejemplo, se introduce <emph>10 gg 1</emph> o <emph>a gg b</emph> para la relación \"es mucho mayor que\"."
+msgstr "Al introducir datos manualmente en el cuadro Órdenes, tenga en cuenta que en muchos operadores es imprescindible dejar espacios para que la sintaxis sea correcta. Esto es especialmente importante al trabajar con valores, en lugar de con comodines; cuando por ejemplo, se introduce <emph>10 gg 1</emph> o <emph>a gg b</emph> para la relación \"es mucho mayor que\"."
#: 03090300.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"hd_id3147516\n"
"help.text"
msgid "Operator Functions"
-msgstr "Lista de todos los operadores:"
+msgstr "Funciones operadoras"
#: 03090300.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3153540\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LIMX\">Inserts the <emph>limit sign</emph> with one placeholder.</ahelp> You can also enter <emph>lim <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LIMX\">Inserta el <emph>signo de límite</emph> con un marcador de posición.</ahelp> También puede escribir <emph>lim <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LIMX\">Inserta el <emph>signo de límite</emph> con un comodín.</ahelp> También puede escribir <emph>lim <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"par_id3147523\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SUMX\">Inserts a <emph>summation sign</emph> with one placeholder.</ahelp> You can also enter <emph>sum <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SUMX\">Inserta un <emph>signo de suma</emph> con un marcador de posición.</ahelp> También puede escribir <emph>sum <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SUMX\">Inserta un <emph>signo de suma</emph> con un comodín.</ahelp> También puede escribir <emph>sum <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3151332\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRODX\">Inserts a <emph>product sign</emph> with one placeholder.</ahelp> You can also type <emph>prod <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PRODX\">Inserta un <emph>signo de producto</emph> con un marcador de posición.</ahelp> También puede escribir <emph>prod <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_PRODX\">Inserta un <emph>signo de producto</emph> con un comodín.</ahelp> También puede escribir <emph>prod <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3147098\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_COPRODX\">Inserts a <emph>coproduct symbol</emph> with one placeholder.</ahelp> You can also enter <emph>coprod <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_COPRODX\">Inserta un <emph>símbolo de coproducto</emph> con un marcador de posición.</ahelp> También puede escribir <emph>coprod <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_COPRODX\">Inserta un <emph>símbolo de coproducto</emph> con un comodín.</ahelp> También puede escribir <emph>coprod <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3153518\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_FROMXTOY\">Inserts a range statement <emph>upper and lower limit</emph> for integral and summation with one placeholder.</ahelp> You can also type <emph>from{<?>} to{<?>} <?></emph> directly in the <emph>Commands</emph> window. Limit statements must be combined with the appropriate operators. The limits will be centered above/below the summation character."
-msgstr "<ahelp hid=\"HID_SMA_FROMXTOY\">Inserta una instrucción de rango <emph>límite superior e inferior</emph> para integral y suma con un marcador de posición.</ahelp> También puede escribir <emph>from{<?>} to{<?>} <?></emph> directamente en la ventana <emph>Comandos</emph>. Las instrucciones de límites deben combinarse con los operadores apropiados. Los límites de centrarán arriba o debajo del carácter de suma."
+msgstr "<ahelp hid=\"HID_SMA_FROMXTOY\">Inserta una instrucción de rango <emph>límite superior e inferior</emph> para integral y suma con un comodín.</ahelp> También puede escribir <emph>from{<?>} to{<?>} <?></emph> directamente en el cuadro <emph>Órdenes</emph>. Las instrucciones de límites deben combinarse con los operadores apropiados. Los límites de centrarán arriba o debajo del carácter de suma."
#: 03090300.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3156272\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_INTX\">Inserts an <emph>integral</emph> sign with one placeholder.</ahelp> You can also type <emph>int <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_INTX\">Inserta un signo de <emph> integral</emph> con un marcador de posición.</ahelp> También puede escribir <emph>int <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_INTX\">Inserta un signo de <emph> integral</emph> con un comodín.</ahelp> También puede escribir <emph>int <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"par_id3148879\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_IINTX\">Inserts a <emph>double integral</emph> symbol with one placeholder.</ahelp> You can also type <emph>iint <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_IINTX\">Inserta un símbolo de <emph>integral doble</emph> con un marcador de posición.</ahelp> También puede escribir <emph>iint <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_IINTX\">Inserta un símbolo de <emph>integral doble</emph> con un comodín.</ahelp> También puede escribir <emph>iint <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_id3147489\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_IIINTX\">Inserts <emph>a triple integral</emph> sign with one placeholder.</ahelp> You can also type <emph>iiint <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_IIINTX\">Inserta un signo de <emph> integral triple</emph> con un marcador de posición. </ahelp> También puede escribir <emph>iiint <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_IIINTX\">Inserta un signo de <emph> integral triple</emph> con un comodín. </ahelp> También puede escribir <emph>iiint <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"par_id3150556\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_FROMX\">Inserts a <emph>lower limit</emph> range statement for integral and sum with placeholders.</ahelp> You can also type <emph>from {<?>}<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_FROMX\">Inserta una instrucción de rango <emph>límite inferior</emph> para integral y suma con comodines.</ahelp> También puede escribir <emph>from {<?>}<?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_FROMX\">Inserta una instrucción de rango <emph>límite inferior</emph> para integral y suma con comodines.</ahelp> También puede escribir <emph>from {<?>}<?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"par_id3147592\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LINTX\">Inserts a <emph>curve integral</emph> symbol with one placeholder.</ahelp> You can also type <emph>lint <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LINTX\">Inserta un símbolo de <emph>integral curvilínea</emph> con un marcador de posición.</ahelp> También puede escribir <emph>lint <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LINTX\">Inserta un símbolo de <emph>integral curvilínea</emph> con un comodín.</ahelp> También puede escribir <emph>lint <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id3154770\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LLINTX\">Inserts a <emph>double curve integral</emph> symbol with one placeholder.</ahelp> You can also type <emph>llint <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LLINTX\">Inserta un símbolo de <emph>integral curvilínea doble</emph> con un marcador de posición.</ahelp> También puede escribir <emph>llint <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LLINTX\">Inserta un símbolo de <emph>integral curvilínea doble</emph> con un comodín.</ahelp> También puede escribir <emph>llint <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_id3150175\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LLLINTX\">Inserts a <emph>triple curve integral</emph> sign with one placeholder.</ahelp> You can also type <emph>lllint <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LLLINTX\">Inserta un signo de <emph> integral curvilínea triple</emph> con un marcador de posición. </ahelp> También puede escribir <emph>lllint <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LLLINTX\">Inserta un signo de <emph> integral curvilínea triple</emph> con un comodín. </ahelp> También puede escribir <emph>lllint <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090300.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_id3154715\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_TOX\">Inserts the range statement <emph>upper limit</emph> for integral and summation with placeholders</ahelp> You can also type <emph>to <?><?></emph> directly in the <emph>Commands</emph> window. Limit statements can only be used if combined with the appropriate operators."
-msgstr "<ahelp hid=\"HID_SMA_TOX\">Inserta la instrucción de rango <emph>límite superior</emph> para integral y suma con comodines</ahelp> También puede escribir <emph>to <?><?></emph> directamente en la ventana <emph>Comandos</emph>. Las instrucciones de límites sólo se pueden usar en combinación con los operadores apropiados."
+msgstr "<ahelp hid=\"HID_SMA_TOX\">Inserta la instrucción de rango <emph>límite superior</emph> para integral y suma con comodines</ahelp> También puede escribir <emph>to <?><?></emph> directamente en el cuadro <emph>Órdenes</emph>. Las instrucciones de límites sólo se pueden usar en combinación con los operadores apropiados."
#: 03090300.xhp
msgctxt ""
@@ -2070,7 +2070,7 @@ msgctxt ""
"par_id3155076\n"
"help.text"
msgid "The command <emph>liminf</emph> inserts the <emph>limit inferior</emph> with one placeholder."
-msgstr "El comando <emph>liminf</emph> inserta el <emph>límite inferior</emph> con un marcador de posición."
+msgstr "La orden <emph>liminf</emph> inserta el <emph>límite inferior</emph> con un comodín."
#: 03090300.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"par_id3154323\n"
"help.text"
msgid "The command <emph>limsup</emph> inserts the <emph>limit superior</emph> with one placeholder."
-msgstr "El comando <emph>limsup</emph> inserta el <emph>límite superior</emph> con un marcador de posición."
+msgstr "La orden <emph>limsup</emph> inserta el <emph>límite superior</emph> con un comodín."
#: 03090300.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"par_id3146956\n"
"help.text"
msgid "By typing <emph>oper</emph> in the Commands window, you can insert <emph>user-defined operators</emph> in $[officename] Math, a feature useful for incorporating special characters into a formula. An example is <emph>oper %theta x</emph>. Using the <emph>oper</emph> command, you can also insert characters not in the default $[officename] character set. <emph>oper</emph> can also be used in connection with limits; for example, <emph>oper %union from {i=1} to n x_{i}</emph>. In this example, the union symbol is indicated by the name <emph>union</emph>. However, this is not one of the predefined symbols. To define it, choose <emph>Tools - Symbols</emph>. select <emph>Special</emph> as the symbol set in the dialog that appears, then click the <emph>Edit</emph> button. In the next dialog, select <emph>Special</emph> as the symbol set again. Enter a meaningful name in the <emph>Symbol</emph> text box, for example, \"union\" and then click the union symbol in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>Close</emph> to close the <emph>Symbols</emph> dialog. You are now finished and can type the union symbol in the Commands window, by entering <emph>oper %union</emph>."
-msgstr "Al escribir <emph>oper</emph> en la ventana Órdenes, pueden insertarse <emph>operadores definidos por el usuario</emph> en $[officename] Math, una función útil para incorporar caracteres especiales en una fórmula. Un ejemplo es <emph>oper %theta x</emph>. Mediante la orden <emph>oper</emph> también pueden insertarse caracteres que no se encuentren en el conjunto de caracteres predeterminado de $[officename]. También es posible combinar <emph>oper</emph> con los límites; por ejemplo, <emph>oper %union from {i=1} to n x_{i}</emph>. En este ejemplo, se indica el símbolo de unión mediante el nombre <emph>union</emph>. No obstante, este no es uno de los símbolos predefinidos. Para definirlo, vaya a <emph>Herramientas ▸ Símbolos</emph>; elija <emph>Especial</emph> como conjunto de símbolos en la ventana que aparece y, a continuación, pulse en el botón <emph>Editar</emph>. En la ventana siguiente, seleccione de nuevo <emph>Especial</emph> como el conjunto de símbolos. Escriba un nombre fácilmente identificable en el cuadro de texto <emph>Símbolo</emph>, por ejemplo «union», y luego pulse sobre el símbolo de unión en el conjunto de símbolos. Pulse en <emph>Añadir</emph> y luego en <emph>Aceptar</emph>. Pulse en <emph>Cerrar</emph> para cerrar la ventana <emph>Símbolos</emph>. Ahora podrá insertar el símbolo de unión al escribir en la ventana Órdenes <emph>oper %union</emph>."
+msgstr "Al escribir <emph>oper</emph> en el cuadro Órdenes pueden insertarse <emph>operadores definidos por el usuario</emph> en $[officename] Math, una función útil para incorporar caracteres especiales en una fórmula. Un ejemplo es <emph>oper %theta x</emph>. Mediante la orden <emph>oper</emph> también pueden insertarse caracteres que no se encuentren en el conjunto de caracteres predeterminado de $[officename]. También es posible combinar <emph>oper</emph> con los límites; por ejemplo, <emph>oper %union from {i=1} to n x_{i}</emph>. En este ejemplo, se indica el símbolo de unión mediante el nombre <emph>union</emph>. No obstante, este no es uno de los símbolos predefinidos. Para definirlo, vaya a <emph>Herramientas ▸ Símbolos</emph>; elija <emph>Especial</emph> como conjunto de símbolos en la ventana que aparece y, a continuación, pulse en el botón <emph>Editar</emph>. En la ventana siguiente, seleccione de nuevo <emph>Especial</emph> como el conjunto de símbolos. Escriba un nombre fácilmente identificable en el cuadro de texto <emph>Símbolo</emph>, por ejemplo «union», y luego pulse sobre el símbolo de unión en el conjunto de símbolos. Pulse en <emph>Añadir</emph> y luego en <emph>Aceptar</emph>. Pulse en <emph>Cerrar</emph> para cerrar la ventana <emph>Símbolos</emph>. Ahora podrá insertar el símbolo de unión al escribir en el cuadro Órdenes <emph>oper %union</emph>."
#: 03090300.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"par_id3154243\n"
"help.text"
msgid "Limits can be arranged in ways other than centered above/below the operator. Use the options provided by $[officename] Math for working with superscript and subscript indexes. For example, type <emph>sum_a^b c</emph> in the Commands window to arrange the limits to the right of the sum symbol. If your limit entries contain longer expressions, you must put them in group brackets, for example, sum_{i=1}^{2*n} b. When formulas are imported from older versions this is done automatically. To change the spacing (gaps) between the characters choose <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> or <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Limits\"><emph>Limits</emph></link>. Additional basic information about indexes is given elsewhere in the <link href=\"text/smath/01/03091200.xhp\" name=\"Help\">Help</link>."
-msgstr "Los pueden colocarse en otras posiciones, además de centrados por encima/por debajo del operador. Para ello, utilice las posibilidades ofrecidas por $[officename] Math para trabajar con subíndices y superíndices. Así, puede introducir por ejemplo en la ventana de comandos la cadena <emph>sum_a^b c</emph> para alinear los límites de los caracteres de suma a la derecha. Si los datos de límites están compuestos por expresiones más largas, es necesario situar éstas entre paréntesis de grupo; por ejemplo, sum_{i=1}^{2*n} b. No obstante, al importar fórmulas de versiones anteriores esta operación es automática. El espacio entre caracteres se puede modificar por medio de los menús <emph>Formato - Espacios - Categoría - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Índices\">Índices</link> y <emph>Formato - Espacios - Categoría - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Límites\">Límites</link>. En otro apartado de la <link href=\"text/smath/01/03091200.xhp\" name=\"Ayuda\">Ayuda</link> encontrará información más detallada sobre los índices."
+msgstr "Los pueden colocarse en otras posiciones, además de centrados por encima/por debajo del operador. Para ello, utilice las posibilidades ofrecidas por $[officename] Math para trabajar con subíndices y superíndices. Así, puede introducir por ejemplo en el cuadro Órdenes la cadena <emph>sum_a^b c</emph> para alinear los límites de los caracteres de suma a la derecha. Si los datos de límites están compuestos por expresiones más largas, es necesario situar éstas entre paréntesis de grupo; por ejemplo, sum_{i=1}^{2*n} b. No obstante, al importar fórmulas de versiones anteriores esta operación es automática. El espacio entre caracteres se puede modificar por medio de los menús <emph>Formato - Espacios - Categoría - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Índices\">Índices</link> y <emph>Formato - Espacios - Categoría - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Límites\">Límites</link>. En otro apartado de la <link href=\"text/smath/01/03091200.xhp\" name=\"Ayuda\">Ayuda</link> encontrará información más detallada sobre los índices."
#: 03090300.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id3155956\n"
"help.text"
msgid "When you type information manually in the Commands window, note that a number of operators require spaces for correct structure. This is especially true when your operators are supplied with values instead of placeholders, for example, lim a_{n}=a."
-msgstr "Al introducir datos manualmente en la ventana de comandos tenga en cuenta que con muchos operadores es imprescindible dejar espacios para que la sintaxis sea correcta. Esto es especialmente importante cuando se asignan valores a los operadores, en lugar de comodines; por ejemplo, lim a_{n}=a."
+msgstr "Al introducir datos manualmente en el cuadro Órdenes tenga en cuenta que con muchos operadores es imprescindible dejar espacios para que la sintaxis sea correcta. Esto es especialmente importante cuando se asignan valores a los operadores, en lugar de comodines; por ejemplo, lim a_{n}=a."
#: 03090400.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the window. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Elija una función en la parte inferior de la ventana. Estas funciones también están enumeradas en el <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> del cuadro <emph>Órdenes</emph>. Cualquier función que no esté contenida en el panel Elementos necesita escribirse manualmente en el cuadro Órdenes."
#: 03090400.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"par_id3150760\n"
"help.text"
msgid "The following is a list of all functions that appear in the <emph>Elements</emph> pane. The icon next to the function indicates that it can be accessed through the Elements pane (menu View - Elements) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "La siguiente es una lista de todas las funciones que aparecen en el panel <emph>Elementos</emph>. El icono ubicado junto a la función indica que puede acceder a ella mediante el panel Elementos (menú Ver ▸ Elementos) o mediante el menú contextual del cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_id3147254\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_EX\">Inserts a natural exponential function.</ahelp> You can also type <emph>func e^<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_EX\">Inserta una función exponencial natural.</ahelp> También puede escribir <emph>func e^<?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_EX\">Inserta una función exponencial natural.</ahelp> También puede escribir <emph>func e^<?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3152947\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LNX\">Inserts a natural (base e) logarithm with one placeholder.</ahelp> You can also type <emph>ln(<?>) </emph>in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LNX\">Inserta un logaritmo natural (base e) con un marcador de posición.</ahelp> También puede escribir <emph>ln(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LNX\">Inserta un logaritmo natural (base e) con un comodín.</ahelp> También puede escribir <emph>ln(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"par_id3151309\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_EXPX\">Inserts an exponential function with one placeholder.</ahelp> You can also type <emph>exp(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_EXPX\">Inserta una función exponencial con un marcador de posición.</ahelp> También puede escribir <emph>exp(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_EXPX\">Inserta una función exponencial con un comodín.</ahelp> También puede escribir <emph>exp(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id3159190\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LOGX\">Inserts a common (base 10) logarithm with one placeholder.</ahelp> You can also type <emph>log(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LOGX\">Inserta un logaritmo común (base 10) con un marcador de posición.</ahelp> También puede escribir <emph>log(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LOGX\">Inserta un logaritmo común (base 10) con un comodín.</ahelp> También puede escribir <emph>log(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id3147325\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SINX\">Inserts a sine function with one placeholder.</ahelp> You can also type <emph>sin(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SINX\">Inserta una función seno con un marcador de posición.</ahelp> También puede escribir <emph>sin(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SINX\">Inserta una función seno con un comodín.</ahelp> También puede escribir <emph>sin(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3151027\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_COSX\">Inserts a cosine function with one placeholder.</ahelp> You can also type <emph>cos(<?>) </emph>in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_COSX\">Inserta una función coseno con un marcador de posición.</ahelp> También puede escribir <emph>cos(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_COSX\">Inserta una función coseno con un comodín.</ahelp> También puede escribir <emph>cos(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"par_id3156379\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_TANX\">Inserts a tangent function with one placeholder.</ahelp> You can also type <emph>tan(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_TANX\">Inserta una función de tangente con un marcador de posición.</ahelp> También puede escribir <emph>tan(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_TANX\">Inserta una función de tangente con un comodín.</ahelp> También puede escribir <emph>tan(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3150691\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_COTX\">Inserts a cotangent symbol with a placeholder.</ahelp> You can also type <emph>cot(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_COTX\">Inserta un signo de cotangente con un marcador de posición.</ahelp> También puede escribir <emph>cot(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_COTX\">Inserta un signo de cotangente con un comodín.</ahelp> También puede escribir <emph>cot(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3145132\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SINHX\">Inserts a hyperbolic sine with one placeholder.</ahelp> You can also type <emph>sinh(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SINHX\">Inserta un seno hiperbólico con un marcador de posición.</ahelp> También puede escribir <emph>sinh(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SINHX\">Inserta un seno hiperbólico con un comodín.</ahelp> También puede escribir <emph>sinh(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"par_id3147746\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SQRTX\">Inserts a square root symbol with one placeholder.</ahelp> You can also type <emph>sqrt(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SQRTX\">Inserta un símbolo de raíz cuadrada con un marcador de posición.</ahelp> También puede escribir <emph>sqrt(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SQRTX\">Inserta un símbolo de raíz cuadrada con un comodín.</ahelp> También puede escribir <emph>sqrt(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"par_id3148857\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_COSHX\">Inserts a hyperbolic cosine symbol with one placeholder.</ahelp> You can also type <emph>cosh(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_COSHX\">Inserta un signo de coseno hiperbólico con un marcador de posición.</ahelp> También puede escribir <emph>cosh(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_COSHX\">Inserta un signo de coseno hiperbólico con un comodín.</ahelp> También puede escribir <emph>cosh(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"par_id3153791\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_TANHX\">Inserts a hyperbolic tangent symbol with one placeholder.</ahelp> You can also type <emph>tanh(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_TANHX\">Inserta un signo de tangente hiperbólica con un marcador de posición.</ahelp> También puede escribir <emph>tanh(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_TANHX\">Inserta un signo de tangente hiperbólica con un comodín.</ahelp> También puede escribir <emph>tanh(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2486,7 +2486,7 @@ msgctxt ""
"par_id3156131\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_COTHX\">Inserts a hyperbolic cotangent symbol with one placeholder.</ahelp> You can directly type <emph>coth(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_COTHX\">Inserta un signo de cotangente hiperbólica con un marcador de posición.</ahelp> Puede escribir <emph>coth(<?>)</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_COTHX\">Inserta un signo de cotangente hiperbólica con un comodín.</ahelp> Puede escribir <emph>coth(<?>)</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2502,7 +2502,7 @@ msgctxt ""
"par_id3149320\n"
"help.text"
msgid "nth Root"
-msgstr "Raíz n"
+msgstr "raíz enésima"
#: 03090400.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id3155578\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NROOTXY\">Inserts an nth root function with two placeholders.</ahelp> You can also type <emph>nroot n x</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_NROOTXY\">Inserta una función raíz n con dos comodines.</ahelp> También puede escribir <emph>nroot n x</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_NROOTXY\">Inserta una función raíz n con dos comodines.</ahelp> También puede escribir <emph>nroot n x</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id3149236\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARCSINX\">Inserts an arc sine function with one placeholder.</ahelp> You can also type <emph>arcsin(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARCSINX\">Inserta una función arcoseno con un marcador de posición.</ahelp> También puede escribir <emph>arcsin(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARCSINX\">Inserta una función arcoseno con un comodín.</ahelp> También puede escribir <emph>arcsin(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2558,7 +2558,7 @@ msgctxt ""
"par_id3149991\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARCCOSX\">Inserts an arc cosine symbol with one placeholder.</ahelp> You can also type <emph>arccos(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARCCOSX\">Inserta una signo de arcocoseno con un marcador de posición.</ahelp> También puede escribir <emph>arccos(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARCCOSX\">Inserta una signo de arcocoseno con un comodín.</ahelp> También puede escribir <emph>arccos(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2582,7 +2582,7 @@ msgctxt ""
"par_id3155790\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARCTANX\">Inserts an arc tangent function with one placeholder.</ahelp> You can also type <emph>arctan(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARCTANX\">Inserta una función arcotangente con un marcador de posición.</ahelp> También puede escribir <emph>arctan(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARCTANX\">Inserta una función arcotangente con un comodín.</ahelp> También puede escribir <emph>arctan(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"par_id3151006\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARCCOTX\">Inserts an arc cotangent function with one placeholder.</ahelp> You can directly type <emph>arccot(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARCCOTX\">Inserta una función arcocotangente con un marcador de posición.</ahelp> Puede escribir <emph>arccot(<?>)</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARCCOTX\">Inserta una función arcocotangente con un comodín.</ahelp> Puede escribir <emph>arccot(<?>)</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"par_id3147395\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ABSX\">Inserts an absolute value sign with one placeholder.</ahelp> You can also type <emph>abs(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ABSX\">Inserta un signo de valor absoluto con un marcador de posición.</ahelp> También puede escribir <emph>abs(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ABSX\">Inserta un signo de valor absoluto con un comodín.</ahelp> También puede escribir <emph>abs(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2654,7 +2654,7 @@ msgctxt ""
"par_id3154671\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARSINHX\">Inserts an area hyperbolic sine function with one placeholder.</ahelp> You can also type <emph>arsinh(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARSINHX\">Inserta una función seno hiperbólico de área con un marcador de posición.</ahelp> También puede escribir <emph>arsinh(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARSINHX\">Inserta una función seno hiperbólico de área con un comodín.</ahelp> También puede escribir <emph>arsinh(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id3145652\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARCOSHX\">Inserts an area hyperbolic cosine function with one placeholder.</ahelp> You can also type <emph>arcosh(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARCOSHX\">Inserta una función coseno hiperbólico de área con un marcador de posición.</ahelp> También puede escribir <emph>arcosh(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARCOSHX\">Inserta una función coseno hiperbólico de área con un comodín.</ahelp> También puede escribir <emph>arcosh(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2702,7 +2702,7 @@ msgctxt ""
"par_id3155536\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARTANHX\">Inserts an area hyperbolic tangent function with one placeholder.</ahelp> You can also type <emph>artanh(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARTANHX\">Inserta una función tangente hiperbólica de área con un marcador de posición.</ahelp> También puede escribir <emph>artanh(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARTANHX\">Inserta una función tangente hiperbólica de área con un comodín.</ahelp> También puede escribir <emph>artanh(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2726,7 +2726,7 @@ msgctxt ""
"par_id3154207\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ARCOTHX\">Inserts an area hyperbolic cotangent function with one placeholder.</ahelp> You can also type <emph>arcoth(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ARCOTHX\">Inserta una función cotangente hiperbólica de área con un marcador de posición.</ahelp> También puede escribir <emph>arcoth(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ARCOTHX\">Inserta una función cotangente hiperbólica de área con un comodín.</ahelp> También puede escribir <emph>arcoth(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2750,7 +2750,7 @@ msgctxt ""
"par_id3156019\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_FACTX\">Inserts the factorial sign with one placeholder.</ahelp> You can directly type <emph>fact <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_FACTX\">Inserta el signo factorial con un marcador de posición.</ahelp> Puede escribir <emph>fact <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_FACTX\">Inserta el signo factorial con un comodín.</ahelp> Puede escribir <emph>fact <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3154752\n"
"help.text"
msgid "When typing functions manually in the Commands window, note that spaces are required for some functions (for example, abs 5=5 ; abs -3=3)."
-msgstr "Al introducir datos manualmente en la ventana de comandos, tenga en cuenta que en algunas funciones no se permiten los espacios para que la sintaxis sea correcta (p.ej. abs 5=5 ; abs -3=3)"
+msgstr "Al introducir datos manualmente en el cuadro Órdenes, observe que en algunas funciones son obligatorios los espacios (p. ej., abs 5=5 ; abs -3=3)."
#: 03090500.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"par_id3147258\n"
"help.text"
msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Puede elegir entre varios tipos de paréntesis para estructurar una fórmula de <emph>$[officename]</emph> Math. Los tipos de paréntesis se muestran en la parte inferior del panel Elementos. Estos paréntesis también aparecen en el <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> del cuadro <emph>Órdenes</emph>. Todos los paréntesis que no aparecen en el panel Elementos o en el menú contextual deben escribirse en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2806,7 +2806,7 @@ msgctxt ""
"par_id3154264\n"
"help.text"
msgid "The following is a complete list of all available bracket types. The icon next to the bracket type indicates that it can be accessed through the Elements pane (menu View - Elements) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "La siguiente es una lista completa de todos los tipos de paréntesis disponibles. El icono ubicado junto a cada tipo de paréntesis indica que puede acceder a él mediante el panel Elementos (menú Ver ▸ Elementos) o mediante el menú contextual del cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2814,7 +2814,7 @@ msgctxt ""
"hd_id3154277\n"
"help.text"
msgid "Bracket types"
-msgstr "Lista de todos los paréntesis:"
+msgstr "Tipos de paréntesis"
#: 03090500.xhp
msgctxt ""
@@ -2838,7 +2838,7 @@ msgctxt ""
"par_id3151102\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRPARENTX\">Inserts a placeholder within normal round brackets (parentheses).</ahelp> You can also type <emph>(<?>)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRPARENTX\">Inserta un marcador de posición dentro de paréntesis curvos normales.</ahelp> También puede escribir <emph>(<?>)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRPARENTX\">Inserta un comodín dentro de paréntesis curvos normales.</ahelp> También puede escribir <emph>(<?>)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2862,7 +2862,7 @@ msgctxt ""
"par_id3150356\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRBRACKETX\">Inserts a placeholder within square brackets.</ahelp> You can also type <emph>[<?>]</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRBRACKETX\">Inserta un marcador de posición dentro de corchetes.</ahelp> También puede escribir <emph>[<?>]</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRBRACKETX\">Inserta un comodín dentro de corchetes.</ahelp> También puede escribir <emph>[<?>]</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"par_id3155175\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRDBRACKETX\">Inserts a placeholder within double square brackets.</ahelp> You can also type <emph>ldbracket <?> rdbracket</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRDBRACKETX\">Inserta un marcador de posición dentro de corchetes dobles.</ahelp> También puede escribir <emph>ldbracket <?> rdbracket</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRDBRACKETX\">Inserta un comodín dentro de corchetes dobles.</ahelp> También puede escribir <emph>ldbracket <?> rdbracket</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "Braces (curly brackets)"
-msgstr "Llaves de conjunto"
+msgstr "Llaves"
#: 03090500.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"par_id3147101\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserts a placeholder withing braces (curly brackets).</ahelp> You can also type <emph>lbrace<?>rbrace</emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserta un marcador de posición entre llaves.</ahelp> También puede escribir <emph>lbrace<?>rbrace</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserta un comodín entre llaves.</ahelp> También puede escribir <emph>lbrace<?>rbrace</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id3155146\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRLINEX\">Inserts a placeholder within vertical bars.</ahelp> You can also type <emph>lline <?> rline</emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRLINEX\">Inserta un marcador de posición dentro de barras verticales.</ahelp> También puede escribir <emph>lline <?> rline</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRLINEX\">Inserta un comodín dentro de barras verticales.</ahelp> También puede escribir <emph>lline <?> rline</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2958,7 +2958,7 @@ msgctxt ""
"par_id3149175\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRDLINEX\">Inserts a placeholder within double vertical bars.</ahelp> You can also type <emph>ldline <?> rdline</emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRDLINEX\">Inserta un marcador de posición dentro de barras verticales dobles.</ahelp> También puede escribir <emph>ldline <?> rdline</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRDLINEX\">Inserta un comodín dentro de barras verticales dobles.</ahelp> También puede escribir <emph>ldline <?> rdline</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"par_id3155913\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRANGLEX\">Inserts a placeholder within angle brackets.</ahelp> You can also type <emph>langle <?> rangle</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRANGLEX\">Inserta un marcador de posición dentro de paréntesis angulares.</ahelp> También puede escribir <emph>langle <?> rangle</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRANGLEX\">Inserta un comodín dentro de paréntesis angulares.</ahelp> También puede escribir <emph>langle <?> rangle</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -3006,7 +3006,7 @@ msgctxt ""
"par_id3147425\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LMRANGLEXY\">Inserts two placeholders within operator brackets.</ahelp> You can also type <emph>langle <?> mline <?> rangle</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LMRANGLEXY\">Inserta un marcador de posición dentro de paréntesis de operador.</ahelp> También puede escribir <emph>langle <?> mline <?> rangle</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LMRANGLEXY\">Inserta un comodín dentro de paréntesis de operador.</ahelp> También puede escribir <emph>langle <?> mline <?> rangle</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"par_id3155976\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRGROUPX\">Inserts group brackets.</ahelp> You can also type <emph>{<?>}</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LRGROUPX\">Inserta paréntesis de agrupamiento.</ahelp> También puede escribir <emph>{<?>}</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LRGROUPX\">Inserta paréntesis de agrupamiento.</ahelp> También puede escribir <emph>{<?>}</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -3054,7 +3054,7 @@ msgctxt ""
"par_id3146345\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRPARENTX\">Inserts <emph>scalable rounded brackets</emph> with one placeholder.</ahelp> You can also type <emph>left(<?> right)</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SLRPARENTX\">Inserta <emph>paréntesis curvos graduables</emph> con un marcador de posición.</ahelp> También puede escribir <emph>left(<?> right)</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SLRPARENTX\">Inserta <emph>paréntesis curvos graduables</emph> con un comodín.</ahelp> También puede escribir <emph>left(<?> right)</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090500.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id3155570\n"
"help.text"
msgid "Square brackets (scalable)"
-msgstr "Corchetes izquierdo y derecho"
+msgstr "Corchetes (redimensionables)"
#: 03090500.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"par_id3148438\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRBRACKETX\">Inserts scalable square brackets with placeholders.</ahelp> You can also type <emph>left[<?> right]</emph> in the <emph>Commands</emph> window. The size of the brackets is adjusted automatically."
-msgstr "<ahelp hid=\"HID_SMA_SLRBRACKETX\">Inserta corchetes graduables con comodines.</ahelp> También puede escribir <emph>left[<?> right]</emph> en la ventana <emph>Comandos</emph>. El tamaño de los paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRBRACKETX\">Inserta corchetes graduables con comodines.</ahelp> También puede escribir <emph>left[<?> right]</emph> en el cuadro <emph>Órdenes</emph>. El tamaño de los paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3102,7 +3102,7 @@ msgctxt ""
"par_id3150161\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRDBRACKETX\">Inserts scalable double square brackets with placeholders.</ahelp> You can also type <emph>left ldbracket <?> right rdbracket</emph> directly in the <emph>Commands</emph> window. The bracket size is adjusted automatically."
-msgstr "<ahelp hid=\"HID_SMA_SLRDBRACKETX\">Inserta corchetes dobles graduables con comodines.</ahelp> También puede escribir <emph>left ldbracket <?> right rdbracket</emph> en la ventana <emph>Comandos</emph>. El tamaño del paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRDBRACKETX\">Inserta corchetes dobles graduables con comodines.</ahelp> También puede escribir <emph>left ldbracket <?> right rdbracket</emph> en el cuadro <emph>Órdenes</emph>. El tamaño del paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_id3154712\n"
"help.text"
msgid "Braces (scalable)"
-msgstr "Llaves izquierda y derecha"
+msgstr "Llaves (redimensionables)"
#: 03090500.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"par_id3154724\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRBRACEX\">Inserts scalable braces with a placeholder.</ahelp> You can also type <emph>left lbrace <?> right rbrace</emph> in the <emph>Commands</emph> window. The size of the braces is automatically adjusted."
-msgstr "<ahelp hid=\"HID_SMA_SLRBRACEX\">Inserta llaves graduables con un marcador de posición.</ahelp> También puede escribir <emph>left lbrace <?> right rbrace</emph> en la ventana <emph>Comandos</emph>. El tamaño de las llaves se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRBRACEX\">Inserta llaves graduables con un comodín.</ahelp> También puede escribir <emph>left lbrace <?> right rbrace</emph> en el cuadro <emph>Órdenes</emph>. El tamaño de las llaves se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"par_id3145634\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRLINEX\">Inserts scalable single vertical bars with a placeholder.</ahelp> You can also type <emph>left lline <?> right rline</emph> in the <emph>Commands</emph> window. The size of the brackets is automatically adjusted."
-msgstr "<ahelp hid=\"HID_SMA_SLRLINEX\">Inserta barras verticales simples graduables con un marcador de posición.</ahelp> También puede escribir <emph>left lline <?> right rline</emph> en la ventana <emph>Comandos</emph>. El tamaño de los paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRLINEX\">Inserta barras verticales simples graduables con un comodín.</ahelp> También puede escribir <emph>left lline <?> right rline</emph> en el cuadro <emph>Órdenes</emph>. El tamaño de los paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_id3146938\n"
"help.text"
msgid "Double vertical bars (scalable)"
-msgstr "\"a\" se refiere al comodín de la fórmula al que usted desea asignar el formato deseado. Por supuesto podrá sustituir este carácter por cualquier otro."
+msgstr "Barras verticales dobles (redimensionables)"
#: 03090500.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"par_id3146950\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRDLINEX\">Inserts scalable double vertical bars with a placeholder.</ahelp> You can also type <emph>left ldline <?> right rdline</emph> in the <emph>Commands</emph> window. The size of the brackets is automatically adjusted."
-msgstr "<ahelp hid=\"HID_SMA_SLRDLINEX\">Inserta barras verticales dobles graduables con un marcador de posición.</ahelp> También puede escribir <emph>left ldline <?> right rdline</emph> en la ventana <emph>Comandos</emph>. El tamaño de los paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRDLINEX\">Inserta barras verticales dobles graduables con un comodín.</ahelp> También puede escribir <emph>left ldline <?> right rdline</emph> en el cuadro <emph>Órdenes</emph>. El tamaño de los paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"par_id3149372\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRANGLEX\">Inserts scalable angle brackets with a placeholder.</ahelp> You can also type <emph>left langle <?> right rangle</emph> in the <emph>Commands</emph> window. The size of the brackets is automatically adjusted."
-msgstr "<ahelp hid=\"HID_SMA_SLRANGLEX\">Inserta paréntesis angulares graduables con un marcador de posición.</ahelp> También puede escribir <emph>left langle <?> right rangle</emph> en la ventana <emph>Comandos</emph>. El tamaño de los paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRANGLEX\">Inserta paréntesis angulares graduables con un comodín.</ahelp> También puede escribir <emph>left langle <?> right rangle</emph> en el cuadro <emph>Órdenes</emph>. El tamaño de los paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_id3155388\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLMRANGLEXY\">Inserts scalable operator brackets with placeholders.</ahelp> You can also type <emph>left langle <?> mline <?> right rangle</emph> in the <emph>Commands</emph> window. The bracket size is adjusted automatically."
-msgstr "<ahelp hid=\"HID_SMA_SLMRANGLEXY\">Inserta paréntesis graduables de operador con comodines.</ahelp> También puede escribir <emph>left langle <?> mline <?> right rangle</emph> en la ventana <emph>Comandos</emph>. El tamaño del paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLMRANGLEXY\">Inserta paréntesis graduables de operador con comodines.</ahelp> También puede escribir <emph>left langle <?> mline <?> right rangle</emph> en el cuadro <emph>Órdenes</emph>. El tamaño del paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id3154621\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XOVERBRACEY\">Inserts a scalable horizontal upper brace with placeholders.</ahelp> You can also enter <emph><?> overbrace <?></emph> directly in the <emph>Commands</emph> window. The bracket size is adjusted automatically."
-msgstr "<ahelp hid=\"HID_SMA_XOVERBRACEY\">Inserta una llave graduable superior horizontal con comodines.</ahelp> También puede escribir <emph><?> overbrace <?></emph> directamente en la ventana <emph>Comandos</emph>.! El tamaño del paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_XOVERBRACEY\">Inserta una llave graduable superior horizontal con comodines.</ahelp> También puede escribir <emph><?> overbrace <?></emph> directamente en el cuadro <emph>Órdenes</emph>.! El tamaño del paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"par_id3154023\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XUNDERBRACEY\">Inserts a scalable horizontal lower brace with placeholders.</ahelp> You can also type <emph><?> underbrace <?></emph> directly in the <emph>Commands</emph> window. The bracket size is adjusted automatically."
-msgstr "<ahelp hid=\"HID_SMA_XUNDERBRACEY\">Inserta una llave graduable inferior horizontal con comodines.</ahelp> También puede escribir <emph><?> underbrace <?></emph> directamente en la ventana <emph>Comandos</emph>.! El tamaño del paréntesis se ajusta automáticamente."
+msgstr "<ahelp hid=\"HID_SMA_XUNDERBRACEY\">Inserta una llave graduable inferior horizontal con comodines.</ahelp> También puede escribir <emph><?> underbrace <?></emph> directamente en el cuadro <emph>Órdenes</emph>.! El tamaño del paréntesis se ajusta automáticamente."
#: 03090500.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_id3149954\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRFLOORX\">To insert floor brackets, type <emph>lfloor<?>rfloor</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_LRFLOORX\">Para insertar paréntesis de múltiplo inferior, escriba <emph>lfloor<?>rfloor</emph> directamente en la ventana <emph>Comandos</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_LRFLOORX\">Para insertar paréntesis de múltiplo inferior, escriba <emph>lfloor<?>rfloor</emph> directamente en el cuadro <emph>Órdenes</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3286,7 +3286,7 @@ msgctxt ""
"par_id3150592\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRCEILX\">To insert ceiling brackets, type <emph>lceil<?>rceil</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_LRCEILX\">Para insertar paréntesis graduables de múltiplo superior, escriba <emph>lceil<?>rceil</emph> directamente en la ventana <emph>Comandos</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_LRCEILX\">Para insertar paréntesis graduables de múltiplo superior, escriba <emph>lceil<?>rceil</emph> directamente en el cuadro <emph>Órdenes</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"par_id3149623\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRFLOORX\">To insert scalable floor brackets, type <emph>left lfloor<?>right rfloor</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_SLRFLOORX\">Para insertar paréntesis graduables de múltiplo inferior, escriba <emph>left lfloor<?>right rfloor</emph> directamente en la ventana <emph>Comandos</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_SLRFLOORX\">Para insertar paréntesis graduables de múltiplo inferior, escriba <emph>left lfloor<?>right rfloor</emph> directamente en el cuadro <emph>Órdenes</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3302,7 +3302,7 @@ msgctxt ""
"par_id3145668\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRCEILX\">To insert scalable ceiling brackets, type <emph>left lceil<?>right rceil</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_SLRCEILX\">Para insertar paréntesis graduables de múltiplo superior, escriba <emph>left lceil<?>right rceil</emph> directamente en la ventana <emph>Comandos</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_SLRCEILX\">Para insertar paréntesis graduables de múltiplo superior, escriba <emph>left lceil<?>right rceil</emph> directamente en el cuadro <emph>Órdenes</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3145107\n"
"help.text"
msgid "Be sure to put spaces (gaps) between elements when entering them directly in the Commands window. This ensures that the correct structure is recognized."
-msgstr "Asegúrese de colocar espacios entre los elementos al escribirlos directamente en la ventana Órdenes. Esto garantiza que se reconozca la estructura correcta."
+msgstr "Asegúrese de colocar espacios entre los elementos al escribirlos directamente en el cuadro Órdenes. Esto garantiza que se reconozca la estructura correcta."
#: 03090500.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3145802\n"
"help.text"
msgid "You can choose from various attributes for <emph>%PRODUCTNAME</emph> <emph>Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Puede elegir entre varios atributos para las fórmulas en <emph>%PRODUCTNAME</emph><emph> Math</emph>. Algunos atributos se muestran en la parte inferior del panel Elementos. Estos atributos también aparecen en el <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> del cuadro <emph>Órdenes</emph>. Todos los atributos que no aparecen en el panel Elementos o en el menú contextual deben escribirse en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "The following is a complete list of all attributes available in <item type=\"productname\">%PRODUCTNAME</item> Math. The symbol next to the attribute indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "A continuación se muestra una lista completa de los atributos disponibles en <item type=\"productname\">%PRODUCTNAME</item> Math. Un icono próximo al nombre del atributo indica que puede accederse a este a través del panel Elementos (vaya a <emph>Ver ▸ Elementos</emph>) o a través del menú contextual del cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "Attribute Functions"
-msgstr "Lista de todos los atributos:"
+msgstr "Funciones de atributos"
#: 03090600.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_id3150533\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ACUTEX\">Inserts a placeholder with an acute accent.</ahelp> You can also type <emph>acute <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ACUTEX\">Inserta un marcador de posición con un acento agudo.</ahelp> También puede escribir <emph>acute <?></emph> en la ventana de <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ACUTEX\">Inserta un comodín con un acento agudo.</ahelp> También puede escribir <emph>acute <?></emph> en la ventana de <emph>Comandos</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3150018\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_GRAVEX\">Inserts a placeholder with a <emph>grave accent</emph> (grave).</ahelp> You can also type <emph>grave <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_GRAVEX\">Inserta un marcador de posición con un <emph>acento grave</emph>.</ahelp> También puede escribir <emph>grave <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_GRAVEX\">Inserta un comodín con un <emph>acento grave</emph>.</ahelp> También puede escribir <emph>grave <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CHECKX\">Inserts a placeholder with a reverse circumflex (\"checkmark\") over it.</ahelp> You can also type <emph>check <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_CHECKX\">Inserta un marcador de posición con un circunflejo inverso (\"marca de verificación\") arriba.</ahelp> También puede escribir <emph>check<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_CHECKX\">Inserta un comodín con un circunflejo inverso (\"marca de verificación\") arriba.</ahelp> También puede escribir <emph>check<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3153619\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BREVEX\">Inserts a placeholder with an accent breve.</ahelp> You can also type <emph>breve <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">Inserta un marcador de posición con un acento breve.</ahelp> También puede escribir <emph>breve<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_BREVEX\">Inserta un comodín con un acento breve.</ahelp> También puede escribir <emph>breve<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_id3153573\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CIRCLEX\">Inserts a placeholder with a circle over it.</ahelp> You can also type <emph>circle <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_CIRCLEX\">Inserta un marcador de posición un círculo arriba.</ahelp> También puede escribir <emph>circle <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_CIRCLEX\">Inserta un comodín un círculo arriba.</ahelp> También puede escribir <emph>circle <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_VECX\">Inserts a placeholder with a vector arrow.</ahelp> You can also type <emph>vec <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_VECX\">Inserta un marcador de posición con una flecha vectorial.</ahelp> También puede escribir <emph>vec <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_VECX\">Inserta un comodín con una flecha vectorial.</ahelp> También puede escribir <emph>vec <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3154570\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_TILDEX\">Inserts a placeholder with a tilde.</ahelp> You can also type <emph>tilde <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_TILDEX\">Inserta un marcador de posición con una virgulilla.</ahelp> También puede escribir <emph>tilde <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_TILDEX\">Inserta un comodín con una virgulilla.</ahelp> También puede escribir <emph>tilde <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3159198\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_HATX\">Inserts a placeholder with a circumflex (\"hat\").</ahelp> You can also directly enter <emph>hat <?></emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_HATX\">Inserta un marcador de posición con un signo circunflejo.</ahelp> También puede escribir directamente <emph>hat <?></emph> en la ventana Comandos."
+msgstr "<ahelp hid=\"HID_SMA_HATX\">Inserta un comodín con un signo circunflejo.</ahelp> También puede escribir directamente <emph>hat <?></emph> en la ventana Comandos."
#: 03090600.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3149815\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BARX\">Inserts a line (\"bar\") above a placeholder .</ahelp> You can also type <emph>bar <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BARX\">Inserta una línea sobre un marcador de posición.</ahelp> También puede escribir <emph>bar <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_BARX\">Inserta una línea sobre un comodín.</ahelp> También puede escribir <emph>bar <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"par_id3154900\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTX\">Inserts a placeholder with a dot over it.</ahelp> You can also type <emph>dot <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DOTX\">Inserta un marcador de posición con un punto arriba.</ahelp> También puede escribir <emph>dot <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_DOTX\">Inserta un comodín con un punto arriba.</ahelp> También puede escribir <emph>dot <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3147126\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WIDEVECX\">Inserts a wide vector arrow with a placeholder.</ahelp> You can also type <emph>widevec</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_WIDEVECX\">Inserta una flecha vectorial ancha con un marcador de posición.</ahelp> También puede escribir <emph>widevec</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_WIDEVECX\">Inserta una flecha vectorial ancha con un comodín.</ahelp> También puede escribir <emph>widevec</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_id3154116\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WIDETILDEX\">Inserts a wide tilde with a placeholder. </ahelp> You can also type <emph>widetilde</emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_WIDETILDEX\">Inserta una virgulilla ancha con un marcador de posición. </ahelp> También puede escribir <emph>widetilde</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_WIDETILDEX\">Inserta una virgulilla ancha con un comodín. </ahelp> También puede escribir <emph>widetilde</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3147311\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WIDEHATX\">Inserts a wide circumflex (\"hat\") with a placeholder. </ahelp> You can also type <emph>widehat</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_WIDEHATX\">Inserta un signo circunflejo con un marcador de posición. </ahelp> También puede escribir <emph>widehat</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_WIDEHATX\">Inserta un signo circunflejo con un comodín. </ahelp> También puede escribir <emph>widehat</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3149541\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DDOTX\">Inserts a placeholder with two dots over it.</ahelp> You can also directly enter <emph>ddot <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DDOTX\">Inserta un marcador de posición con dos puntos arriba.</ahelp> También puede escribir directamente <emph>ddot <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_DDOTX\">Inserta un comodín con dos puntos arriba.</ahelp> También puede escribir directamente <emph>ddot <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id3147492\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_OVERLINEX\">Inserts a line over a placeholder.</ahelp> You can also type <emph>overline <?></emph> in the <emph>Commands</emph> window. The line adjusts itself to correct length."
-msgstr "<ahelp hid=\"HID_SMA_OVERLINEX\">Inserta una línea sobre un marcador de posición.</ahelp> También puede escribir <emph>overline <?></emph> en la ventana <emph>Comandos</emph>. La línea se ajusta automáticamente a la longitud correcta."
+msgstr "<ahelp hid=\"HID_SMA_OVERLINEX\">Inserta una línea sobre un comodín.</ahelp> También puede escribir <emph>overline <?></emph> en el cuadro <emph>Órdenes</emph>. La línea se ajusta automáticamente a la longitud correcta."
#: 03090600.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"par_id3153269\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_UNDERLINEX\">Inserts a line below a placeholder.</ahelp> You can also type <emph>underline <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_UNDERLINEX\">Inserta una línea debajo de un marcador de posición.</ahelp> También puede escribir <emph>underline <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_UNDERLINEX\">Inserta una línea debajo de un comodín.</ahelp> También puede escribir <emph>underline <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3153304\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_OVERSTRIKEX\">Inserts a placeholder with a line (or overstrike) through it.</ahelp> You can also type <emph>overstrike <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_OVERSTRIKEX\">Inserta un marcador de posición con una línea transversal.</ahelp> También puede escribir <emph>overstrike <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_OVERSTRIKEX\">Inserta un comodín con una línea transversal.</ahelp> También puede escribir <emph>overstrike <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_id3154718\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DDDOTX\">Inserts three dots over a placeholder.</ahelp> You can also type <emph>dddot <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DDDOTX\">Inserta tres puntos sobre un marcador de posición.</ahelp> También puede escribir <emph>dddot <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_DDDOTX\">Inserta tres puntos sobre un comodín.</ahelp> También puede escribir <emph>dddot <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id3155074\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PHANTOMX\">Inserts a placeholder for a transparent character. This character takes up the space of \"a\" but does not display it.</ahelp> You can also type <emph>phantom <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PHANTOMX\">Inserta un marcador de posición para un carácter transparente. Este carácter ocupa el espacio de \"a\" pero no la muestra.</ahelp> También puede escribir <emph>phantom <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_PHANTOMX\">Inserta un comodín para un carácter transparente. Este carácter ocupa el espacio de \"a\" pero no la muestra.</ahelp> También puede escribir <emph>phantom <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3934,7 +3934,7 @@ msgctxt ""
"par_id3150101\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BOLDX\">Inserts a placeholder with bold formatting.</ahelp> You can also type <emph>bold <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BOLDX\">Inserta un marcador de posición con formato de negrita.</ahelp> También puede escribir <emph>bold<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_BOLDX\">Inserta un comodín con formato de negrita.</ahelp> También puede escribir <emph>bold<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3958,7 +3958,7 @@ msgctxt ""
"par_id3147355\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ITALX\">Inserts a placeholder with italic formatting.</ahelp> You can also type <emph>ital <?></emph> or <emph>italic <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ITALX\">Inserta un marcador de posición con formato de cursiva.</ahelp> También puede escribir <emph>ital <?></emph> o <emph>italic <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ITALX\">Inserta un comodín con formato de cursiva.</ahelp> También puede escribir <emph>ital <?></emph> o <emph>italic <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"par_id3153125\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SIZEXY\">Inserts a command for modifying the font size with two placeholders. The first placeholder refers to the font size (for example, 12) and the second one contains the text.</ahelp> For proper structure, insert a space between the values. You can also directly enter <emph>size <?> <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SIZEXY\">Inserta un comando para modificar el tamaño de la letra con dos comodines. El primer marcador de posición se refiere al tamaño de la letra (por ejemplo, 12) y el segundo contiene el texto.</ahelp> Con el fin de conseguir una estructura adecuada, inserte un espacio entre los valores. También puede escribir directamente <emph>size <?> <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SIZEXY\">Inserta un comando para modificar el tamaño de la letra con dos comodines. El primer comodín se refiere al tamaño de la letra (por ejemplo, 12) y el segundo contiene el texto.</ahelp> Con el fin de conseguir una estructura adecuada, inserte un espacio entre los valores. También puede escribir directamente <emph>size <?> <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id3154371\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_FONTXY\">Inserts a command for changing the font type, with two placeholders. Replace the first placeholder with the name of one of the <link href=\"text/smath/01/05010000.xhp\" name=\"custom fonts\">custom fonts</link>, <emph>Serif, Sans</emph> or <emph>Fixed</emph>. Replace the second placeholder with the text.</ahelp> You can also type <emph>font <?> <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_FONTXY\">Inserta un comando para modificar el tipo de letra con dos marcadores de posición. Vuelva a colocar el primer marcador de posición con el nombre de uno de las <link href=\"text/smath/01/05010000.xhp\" name=\"tipos de letra personalizados\">, tipos de letra personalizados</link>, <emph>Serif, Sans</emph> o <emph>Fixed</emph>. Sustituya el segundo marcador de posición por el texto.</ahelp> También puede escribir <emph>font <?> <?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_FONTXY\">Inserta un comando para modificar el tipo de letra con dos comodines. Vuelva a colocar el primer comodín con el nombre de uno de las <link href=\"text/smath/01/05010000.xhp\" name=\"tipos de letra personalizados\">, tipos de letra personalizados</link>, <emph>Serif, Sans</emph> o <emph>Fixed</emph>. Sustituya el segundo comodín por el texto.</ahelp> También puede escribir <emph>font <?> <?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090600.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id3148695\n"
"help.text"
msgid "Note that some entries require spaces for the correct structure. This is especially true when you specify attributes with fixed values instead of placeholders."
-msgstr "Al introducir datos manualmente en la ventana de comandos, hay que tener en cuenta que en algunos casos los espacios son imprescindibles para que la sintaxis sea correcta. Esto es especialmente importante cuando se asigna a los atributos valores en lugar de comodines; por ejemplo, font sans 20."
+msgstr "Al introducir datos manualmente en el cuadro Órdenes, hay que tener en cuenta que en algunos casos los espacios son imprescindibles para que la sintaxis sea correcta. Esto es especialmente importante cuando se asigna a los atributos valores en lugar de comodines; por ejemplo, font sans 20."
#: 03090600.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"bm_id3153150\n"
"help.text"
msgid "<bookmark_value>formatting;in $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formatting</bookmark_value><bookmark_value>superscripts</bookmark_value><bookmark_value>binomials</bookmark_value><bookmark_value>vertical elements</bookmark_value><bookmark_value>lines; inserting in formulas</bookmark_value><bookmark_value>subscripts</bookmark_value><bookmark_value>stacks</bookmark_value><bookmark_value>vertical arrangement of elements</bookmark_value><bookmark_value>small gaps</bookmark_value><bookmark_value>alignment; left (Math)</bookmark_value><bookmark_value>left-justified alignment (Math)</bookmark_value><bookmark_value>alignment; horizontally centered (Math)</bookmark_value><bookmark_value>centered horizontally; alignment (Math)</bookmark_value><bookmark_value>alignment; right (Math)</bookmark_value><bookmark_value>right-justified alignment in %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; arranging</bookmark_value><bookmark_value>spaces in formulas</bookmark_value><bookmark_value>gaps in formulas</bookmark_value><bookmark_value>inserting; gaps</bookmark_value><bookmark_value>arranging;matrices</bookmark_value><bookmark_value>formulas;aligning</bookmark_value><bookmark_value>aligning formulas</bookmark_value>"
-msgstr "<bookmark_value>formato;en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formato</bookmark_value><bookmark_value>superíndices</bookmark_value><bookmark_value>binomiales</bookmark_value><bookmark_value>elementos verticales</bookmark_value><bookmark_value>renglones; inserción en fórmulas</bookmark_value><bookmark_value>subíndices</bookmark_value><bookmark_value>pilas</bookmark_value><bookmark_value>disposiciones verticales de elementos</bookmark_value><bookmark_value>separaciones pequeñas</bookmark_value><bookmark_value>alineación; izquierda (Math)</bookmark_value><bookmark_value>alineación justificada a la izquierda (Math)</bookmark_value><bookmark_value>alineación; centrada horizontalmente (Math)</bookmark_value><bookmark_value>centrada horizontalmente; alineación (Math)</bookmark_value><bookmark_value>alineación; derecha (Math)</bookmark_value><bookmark_value>alineación justificada a la derecha en %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; disposición</bookmark_value><bookmark_value>espacios en fórmulas</bookmark_value><bookmark_value>separaciones en fórmulas</bookmark_value><bookmark_value>inserción; separaciones</bookmark_value><bookmark_value>disposición;matrices</bookmark_value><bookmark_value>fórmulas;alineación</bookmark_value><bookmark_value>alineación de fórmulas</bookmark_value>"
+msgstr "<bookmark_value>formato;en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formato</bookmark_value><bookmark_value>superíndices</bookmark_value><bookmark_value>binomiales</bookmark_value><bookmark_value>elementos verticales</bookmark_value><bookmark_value>renglones; inserción en fórmulas</bookmark_value><bookmark_value>subíndices</bookmark_value><bookmark_value>pilas</bookmark_value><bookmark_value>disposiciones verticales delementos</bookmark_value><bookmark_value>separaciones pequeñas</bookmark_value><bookmark_value>alineación; izquierda (Math)</bookmark_value><bookmark_value>alineación justificada a la izquierda (Math)</bookmark_value><bookmark_value>alineación; centrada horizontalmente (Math)</bookmark_value><bookmark_value>centrada horizontalmente; alineación (Math)</bookmark_value><bookmark_value>alineación; derecha (Math)</bookmark_value><bookmark_value>alineación justificada a la derecha en %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; disposición</bookmark_value><bookmark_value>espacios en fórmulas</bookmark_value><bookmark_value>separaciones en fórmulas</bookmark_value><bookmark_value>inserción; separaciones</bookmark_value><bookmark_value>disposición;matrices</bookmark_value><bookmark_value>fórmulas;alineación</bookmark_value><bookmark_value>alineación de fórmulas</bookmark_value>"
#: 03090700.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id3154263\n"
"help.text"
msgid "The following is a complete list of all available formatting options in $[officename] Math. The icon next to the formatting option indicates that it can be accessed through the Elements pane (menu <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "A continuación se muestra una lista completa de las opciones de formato de $[officename] Math. Un icono próximo a la opción de formato indica que puede accederse a esta a través del panel Elementos (vaya a <emph>Ver ▸ Elementos</emph>) o a través del menú contextual del cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"hd_id3151104\n"
"help.text"
msgid "Formatting options"
-msgstr "Lista de todos los formatos:"
+msgstr "Opciones de formato"
#: 03090700.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LSUPX\">Inserts a superscript to the left of a placeholder.</ahelp> You can also type <emph><?>lsup{<?>}</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LSUPX\">Inserta un superíndice a la izquierda de un marcador de posición.</ahelp> También puede escribir <emph><?>lsup{<?>}</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LSUPX\">Inserta un superíndice a la izquierda de un comodín.</ahelp> También puede escribir <emph><?>lsup{<?>}</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id3159195\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CSUPX\">Inserts a superscript directly above a placeholder.</ahelp> You can also type <emph><?>csup<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_CSUPX\">Inserta un superíndice directamente arriba del marcador de posición.</ahelp> También puede escribir <emph><?>csup<?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_CSUPX\">Inserta un superíndice directamente arriba del comodín.</ahelp> También puede escribir <emph><?>csup<?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id3151262\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_RSUPX\">Inserts a superscript to the right of a placeholder.</ahelp> You can also type <emph><?>^{<?>}</emph> directly in the <emph>Commands</emph> window, or you can use <emph>rsup</emph> or <emph>sup</emph>."
-msgstr "<ahelp hid=\"HID_SMA_RSUPX\">Inserta un superíndice a la derecha de un marcador de posición.</ahelp> También puede escribir <emph><?>^{<?>}</emph> directamente en la ventana <emph>Comandos</emph>, o usar <emph>rsup</emph> o <emph>sup</emph>."
+msgstr "<ahelp hid=\"HID_SMA_RSUPX\">Inserta un superíndice a la derecha de un comodín.</ahelp> También puede escribir <emph><?>^{<?>}</emph> directamente en el cuadro <emph>Órdenes</emph>, o usar <emph>rsup</emph> o <emph>sup</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"par_id3147326\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BINOMXY\">Inserts a vertical stack (binomial) with two placeholders.</ahelp> You can also type <emph>binom<?><?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BINOMXY\">Inserta un posicionamiento vertical (binomial) con dos comodines.</ahelp> También puede escribir <emph>binom<?><?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_BINOMXY\">Inserta un posicionamiento vertical (binomial) con dos comodines.</ahelp> También puede escribir <emph>binom<?><?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4238,7 +4238,7 @@ msgctxt ""
"par_id3150587\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NEWLINE\">Inserts a new line in your document.</ahelp> You can also type <emph>newline</emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_NEWLINE\">Inserta una línea nueva en el documento.</ahelp> También puede escribir <emph>newline</emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_NEWLINE\">Inserta una línea nueva en el documento.</ahelp> También puede escribir <emph>newline</emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"par_id3147309\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LSUBX\">Inserts a subscript to the left of a placeholder.</ahelp> You can also type <emph><?>lsub{<?>}</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_LSUBX\">Inserta un subíndice a la izquierda de un marcador de posición.</ahelp> También puede escribir <emph><?>lsub{<?>}</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_LSUBX\">Inserta un subíndice a la izquierda de un comodín.</ahelp> También puede escribir <emph><?>lsub{<?>}</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4286,7 +4286,7 @@ msgctxt ""
"par_id3150699\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CSUBX\">Inserts a subscript directly under a placeholder.</ahelp> You can also type <emph><?>csub<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_CSUBX\">Inserta un subíndice directamente debajo del marcador de posición.</ahelp> También puede escribir <emph><?>csub<?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_CSUBX\">Inserta un subíndice directamente debajo del comodín.</ahelp> También puede escribir <emph><?>csub<?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"par_id3146913\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_RSUBX\">Inserts a subscript to the right of a placeholder.</ahelp> You can also type <emph><?>_{<?>}</emph> in the <emph>Commands</emph> window, and the subscript dash can be replaced by <emph>rsub</emph> or <emph>sub</emph>."
-msgstr "<ahelp hid=\"HID_SMA_RSUBX\">Inserta un subíndice a la derecha de un marcador de posición.</ahelp> También puede escribir <emph><?>_{<?>}</emph> en la ventana <emph>Comandos</emph>, y el guión con subíndice se puede reemplazar por <emph>rsub</emph> o <emph>sub</emph>."
+msgstr "<ahelp hid=\"HID_SMA_RSUBX\">Inserta un subíndice a la derecha de un comodín.</ahelp> También puede escribir <emph><?>_{<?>}</emph> en el cuadro <emph>Órdenes</emph>, y el guión con subíndice se puede reemplazar por <emph>rsub</emph> o <emph>sub</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"par_id3146332\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_STACK\">Inserts a vertical stack with three placeholders.</ahelp> You can also type <emph>stack {<?>#<?>#<?>}</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_STACK\">Inserta un posicionamiento vertical con tres marcadores de posición.</ahelp> También puede escribir <emph>stack {<?>#<?>#<?>}</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_STACK\">Inserta un posicionamiento vertical con tres comodines.</ahelp> También puede escribir <emph>stack {<?>#<?>#<?>}</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"par_id3147056\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SBLANK\">Inserts a small gap between a placeholder and the next element.</ahelp> You can also type <emph>`</emph> directly in the Commands window. The command must appear to the left or right of a symbol, variable, number or complete command."
-msgstr "<ahelp hid=\"HID_SMA_SBLANK\">Inserta una separación pequeña entre un marcador de posición y el elemento siguiente.</ahelp> También puede escribir <emph>`</emph> directamente en el cuadro <emph>Órdenes</emph>. La orden debe aparecer a la derecha o a la izquierda de un símbolo, una variable, un número o una orden completa."
+msgstr "<ahelp hid=\"HID_SMA_SBLANK\">Inserta una separación pequeña entre un comodín y el elemento siguiente.</ahelp> También puede escribir <emph>`</emph> directamente en el cuadro <emph>Órdenes</emph>. La orden debe aparecer a la derecha o a la izquierda de un símbolo, una variable, un número o una orden completa."
#: 03090700.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_id3154592\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ALIGNLX\">This icon assigns left-alignment to \"a\" and inserts a placeholder.</ahelp> You can type <emph>alignl<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ALIGNLX\">Este icono asigna alineación izquierda a \"a\" e inserta un marcador de posición.</ahelp> Puede escribir <emph>alignl<?></emph> directamente en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ALIGNLX\">Este icono asigna alineación izquierda a \"a\" e inserta un comodín.</ahelp> Puede escribir <emph>alignl<?></emph> directamente en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"par_id3149319\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ALIGNCX\">Assigns horizontal central alignment to \"a\" and inserts a placeholder.</ahelp> You can also type <emph>alignc<?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ALIGNCX\">Asigna una alineación central horizontal a \"a\" e inserta un marcador de posición.</ahelp> También puede escribir <emph>alignc<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ALIGNCX\">Asigna una alineación central horizontal a \"a\" e inserta un comodín.</ahelp> También puede escribir <emph>alignc<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"par_id3149780\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ALIGNRX\">Inserts the command for right alignment and a placeholder.</ahelp> You can also type <emph>alignr<?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ALIGNRX\">Inserta el comando para la alineación a la derecha y un marcador de posición.</ahelp> También puede escribir <emph>alignr<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_ALIGNRX\">Inserta el comando para la alineación a la derecha y un comodín.</ahelp> También puede escribir <emph>alignr<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"par_id3146941\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_MATRIX\">This icon inserts a matrix with four placeholders.</ahelp> You can also type <emph>matrix{<?>#<?>##<?>#<?>}</emph> directly in the <emph>Commands</emph> window. The position of an element inside this diagram is indicated by two coordinates; the first specifies the line number and the second the column number. You can expand this matrix in any direction in the <emph>Commands</emph> window by adding characters."
-msgstr "<ahelp hid=\"HID_SMA_MATRIX\">Este icono inserta una matriz con cuatro marcadores de posición.</ahelp> También puede escribir <emph>matrix{<?>#<?>##<?>#<?>}</emph> directamente en la ventana <emph>Comandos</emph>. La posición de un elemento dentro de este esquema se indica mediante dos coordenadas. La primera indica el número de fila; la segunda, el número de columna. Podrá ampliar esta matriz en cualquier dirección en la ventana <emph>Comandos</emph> insertando más caracteres."
+msgstr "<ahelp hid=\"HID_SMA_MATRIX\">Este icono inserta una matriz con cuatro comodines.</ahelp> También puede escribir <emph>matrix{<?>#<?>##<?>#<?>}</emph> directamente en el cuadro <emph>Órdenes</emph>. La posición de un elemento dentro de este esquema se indica mediante dos coordenadas. La primera indica el número de fila; la segunda, el número de columna. Podrá ampliar esta matriz en cualquier dirección en el cuadro <emph>Órdenes</emph> insertando más caracteres."
#: 03090700.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id3149370\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BLANK\">This icon inserts a gap or space between placeholders.</ahelp> You can also type <emph>~</emph> directly in the <emph>Commands</emph> window. The command must appear to the left or right of a symbol, variable, number or complete command."
-msgstr "<ahelp hid=\"HID_SMA_BLANK\">Este icono inserta un espacio entre comodines.</ahelp> También puede escribir <emph>~</emph> directamente en la ventana <emph>Comandos</emph>. El comando debe aparecer a la derecha o a la izquierda de un símbolo, una variable, un número o un comando completo."
+msgstr "<ahelp hid=\"HID_SMA_BLANK\">Este icono inserta un espacio entre dos comodines.</ahelp> También puede escribir <emph>~</emph> directamente en el cuadro <emph>Órdenes</emph>. La orden debe aparecer a la derecha o a la izquierda de un símbolo, una variable, un número o una orden completa."
#: 03090700.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_id3155394\n"
"help.text"
msgid "For alignment, the <emph>alignl, alignc</emph> and <emph>alignr</emph> commands are especially effective, if you are"
-msgstr "Para alineaciones, son especialmente útiles <emph>alignl, alignc</emph> y <emph>alignr</emph>"
+msgstr "Para alineaciones, resultan bastante útiles las órdenes <emph>alignl, alignc</emph> y <emph>alignr</emph>, en especial si Ud."
#: 03090700.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_id3151009\n"
"help.text"
msgid "aligning numerators and denominators, for example <emph>{alignl a}over{b+c}</emph>"
-msgstr "se alinean numeradores y denominadores; por ejemplo, <emph>{alignl a}over{b+c}</emph>"
+msgstr "alinea numeradores y denominadores; por ejemplo: <emph>{alignl a}over{b+c}</emph>"
#: 03090700.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_id3148812\n"
"help.text"
msgid "constructing binomials or stacks, for example <emph>binom{2*n}{alignr k}</emph>"
-msgstr "se crean binomios o pilas, por ejemplo: <emph>binom{2*n}{alignr k}</emph>"
+msgstr "crea binomios o pilas, por ejemplo: <emph>binom{2*n}{alignr k}</emph>"
#: 03090700.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_id3154360\n"
"help.text"
msgid "aligning the elements in a matrix, for example <emph>matrix{alignr a#b+2##c+1/3#alignl d}</emph> and"
-msgstr "se alinean los elementos de una matriz; por ejemplo, matrix{alignr a#b+2##c+1/3#alignl d} y"
+msgstr "alinea los elementos de una matriz; por ejemplo: <emph>matrix{alignr a#b+2##c+1/3#alignl d}</emph> y"
#: 03090700.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id3155946\n"
"help.text"
msgid "beginning a new line, for example <emph>a+b-c newline alignr x/y</emph>"
-msgstr "se comienza una nueva fila; por ejemplo, a+b-c newline alignr x/y."
+msgstr "comienza un renglón nuevo; por ejemplo: <emph>a+b-c newline alignr x/y</emph>"
#: 03090700.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"hd_id8036133\n"
"help.text"
msgid "To align using the \"matrix\" command"
-msgstr "Para alinear usando el comando \"matríz\""
+msgstr "Para alinear mediante la orden «matrix»"
#: 03090700.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_id3145654\n"
"help.text"
msgid "When typing information in the Commands window, note that some formats require spaces for the correct structure. This is especially true when entering values (for example, a lsup{3}) instead of placeholders."
-msgstr "A la hora de escribir información en la ventana de comandos, tenga en cuenta que algunos formatos precisan de espacios para tener la estructura correcta. Esto se cumple especialmente al introducir valores (por ejemplo, lsup{3}) en lugar de marcadores de posición."
+msgstr "A la hora de escribir información en el cuadro Órdenes, tenga en cuenta que algunos formatos precisan de espacios para tener la estructura correcta. Esto se cumple especialmente al introducir valores (por ejemplo, lsup{3}) en lugar de comodines."
#: 03090700.xhp
msgctxt ""
@@ -4630,7 +4630,7 @@ msgctxt ""
"par_id3154641\n"
"help.text"
msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
-msgstr ""
+msgstr "Asigne diferentes conjuntos de operadores a los caracteres en la fórmula de <emph>$[officename] Math</emph>. Los operadores individuales se muestran en la parte inferior del panel Elementos. Vaya al <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menul\">menú contextual</link> en el cuadro <emph>Órdenes</emph> para ver una lista idéntica de las funciones individuales. Los operadores que no se encuentran en el panel Elementos deben escribirse directamente en el cuadro Órdenes. También puede insertar directamente partes de la fórmula aunque ya existan los símbolos para ellas."
#: 03090800.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "After clicking the <emph>Set Operations</emph> icon in the Elements pane additional icons will be shown in the lower part of this window. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window."
-msgstr ""
+msgstr "Tras pulsar en el icono <emph>Operaciones de conjuntos</emph> del panel Elementos, se mostrarán iconos adicionales en la parte inferior de este panel. Pulse en uno de los símbolos para incorporar el operador respectivo en la fórmula que se está editando en el cuadro Órdenes."
#: 03090800.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_id3150997\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNOTINY\">Use this icon to insert the <emph>is not included in</emph> set operator with two placeholders.</ahelp> You can also enter <emph><?> notin <?> </emph>in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XNOTINY\">Use este icono para insertar el operador de conjunto <emph>no está incluido en</emph> con dos comodines.</ahelp> También puede escribir <emph><?> notin <?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XNOTINY\">Use este icono para insertar el operador de conjunto <emph>no está incluido en</emph> con dos comodines.</ahelp> También puede escribir <emph><?> notin <?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090800.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id3149101\n"
"help.text"
msgid "empty set"
-msgstr "Conjunto vacío"
+msgstr "conjunto vacío"
#: 03090800.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id3147460\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSUBSETEQY\">Use this icon to insert the <emph>is a subset or equal to</emph> set operator with two placeholders.</ahelp> You can also enter <emph><?>subseteq<?></emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XSUBSETEQY\">Use este icono para insertar el operador de conjunto <emph>es subconjunto o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>subseteq<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XSUBSETEQY\">Use este icono para insertar el operador de conjunto <emph>es subconjunto o igual a</emph> con dos comodines.</ahelp> También puede escribir <emph><?>subseteq<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090800.xhp
msgctxt ""
@@ -4974,7 +4974,7 @@ msgctxt ""
"par_id3150454\n"
"help.text"
msgid "not subset"
-msgstr "Conjunto no parcial"
+msgstr "conjunto no parcial"
#: 03090800.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"par_id3149236\n"
"help.text"
msgid "not subset or equal to"
-msgstr "Conjunto no parcial o igual"
+msgstr "conjunto no parcial o igual"
#: 03090800.xhp
msgctxt ""
@@ -5006,7 +5006,7 @@ msgctxt ""
"par_id3149249\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNSUBSETEQY\">Use this icon to insert the <emph>not subset or equal</emph> set operator with two placeholders.</ahelp> You can also enter <emph><?>nsubseteq<?> </emph>in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XNSUBSETEQY\">Use este icono para insertar el operador de conjunto <emph>no subconjunto o igual</emph> con dos comodines.</ahelp> También puede escribir <emph><?>nsubseteq<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XNSUBSETEQY\">Use este icono para insertar el operador de conjunto <emph>no subconjunto o igual</emph> con dos comodines.</ahelp> También puede escribir <emph><?>nsubseteq<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090800.xhp
msgctxt ""
@@ -5022,7 +5022,7 @@ msgctxt ""
"par_id3148796\n"
"help.text"
msgid "not superset"
-msgstr "Conjunto no superior"
+msgstr "conjunto no superior"
#: 03090800.xhp
msgctxt ""
@@ -5030,7 +5030,7 @@ msgctxt ""
"par_id3149995\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XNSUPSETY\">Use this icon to insert the <emph>not superset</emph> set operator with two placeholders.</ahelp> You can also enter <emph><?>nsupset<?> </emph>in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_XNSUPSETY\">Use este icono para insertar el operador de conjunto <emph>no conjunto superior</emph> con dos comodines.</ahelp> También puede escribir <emph><?>nsupset<?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XNSUPSETY\">Use este icono para insertar el operador de conjunto <emph>no conjunto superior</emph> con dos comodines.</ahelp> También puede escribir <emph><?>nsupset<?></emph> en el cuadro <emph>Órdenes</emph>."
#: 03090800.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id3155798\n"
"help.text"
msgid "not superset or equal to"
-msgstr "Conjunto no superior o igual"
+msgstr "conjunto no superior o igual"
#: 03090800.xhp
msgctxt ""
@@ -5174,7 +5174,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SETC\">Use this icon to insert a character for the <emph>set of complex numbers</emph>.</ahelp> You can also enter <emph>setc</emph> in the Commands window."
-msgstr "<ahelp hid=\"HID_SMA_SETC\">Use este icono para insertar un carácter para el <emph>conjunto de números complejos</emph>.</ahelp> También puede escribir <emph>setc</emph> en la ventana <emph>Comandos</emph>."
+msgstr "<ahelp hid=\"HID_SMA_SETC\">Use este icono para insertar un carácter para el <emph>conjunto de números complejos</emph>.</ahelp> También puede escribir <emph>setc</emph> en el cuadro <emph>Órdenes</emph>."
#: 03090800.xhp
msgctxt ""
@@ -5182,7 +5182,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "Be sure to leave spaces (gaps) between values and commands when entering them manually in the Commands window. This ensures that the correct structure is achieved."
-msgstr "Asegúrese de que coloca espacios entre los valores y las órdenes cuando los escriba manualmente en la ventana Órdenes. Así se garantiza que se obtiene la estructura adecuada."
+msgstr "Asegúrese de colocar espacios entre los elementos al escribirlos directamente en el cuadro Órdenes. Esto garantiza que se reconozca la estructura correcta."
#: 03090900.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"par_id3150301\n"
"help.text"
msgid "The following example explains how to create symbols with indexes in <emph>$[officename] Math</emph>. You can copy this example to the <emph>Commands</emph> window by using the clipboard and use it in your own formula."
-msgstr "A continuación incluimos un ejemplo sobre cómo crear símbolos con índices en <emph>$[officename] Math</emph>. Para adoptar la sintaxis del ejemplo en un caso práctico, copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación incluimos un ejemplo sobre cómo crear símbolos con índices en <emph>$[officename] Math</emph>. Para adoptar la sintaxis del ejemplo en un caso práctico, copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090901.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"par_id3150300\n"
"help.text"
msgid "Here is another example of creating symbols with indexes in <emph>$[officename] Math</emph>. You can copy this example to the <emph>Commands</emph> window using the clipboard and use it in your own formula."
-msgstr "A continuación verá un segundo ejemplo de la utilización de <emph>$[officename] Math</emph> para crear símbolos con índices. Para adoptar la sintaxis del ejemplo en un caso práctico, copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación verá un segundo ejemplo de la utilización de <emph>$[officename] Math</emph> para crear símbolos con índices. Para adoptar la sintaxis del ejemplo en un caso práctico, copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090902.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3150300\n"
"help.text"
msgid "A third example of how to use <emph>$[officename] Math</emph> to create symbols with indexes is shown below. You can copy the example into the clipboard and use it in your own formula in the <emph>Commands</emph> window."
-msgstr "A continuación se muestra un tercer ejemplo de cómo puede utilizarse <emph>$[officename] Math</emph> para crear símbolos con índices. Puede copiar este ejemplo en el portapapeles y pegarlo en la ventana <emph>Órdenes</emph> y utilizarlo en su fórmula."
+msgstr "A continuación se muestra un tercer ejemplo de cómo puede utilizarse <emph>$[officename] Math</emph> para crear símbolos con índices. Puede copiar este ejemplo en el portapapeles y pegarlo en el cuadro <emph>Órdenes</emph> para utilizarlo en su fórmula."
#: 03090903.xhp
msgctxt ""
@@ -5350,7 +5350,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "Here is an example of how to create a matrix with varying font sizes in <emph>$[officename] Math</emph>. You can copy this example to the <emph>Commands</emph> window using the clipboard and use it in your own formula."
-msgstr "A continuación se incluye un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una matriz con diferentes tamaños de letra. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación se incluye un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una matriz con diferentes tamaños de letra. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090904.xhp
msgctxt ""
@@ -5390,7 +5390,7 @@ msgctxt ""
"par_id3150344\n"
"help.text"
msgid "Here is an example of how to create a matrix with <emph>$[officename] Math</emph>. If you want to use the example in your own formula, you can copy it to the <emph>Commands</emph> window using the clipboard."
-msgstr "A continuación incluimos un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una matriz. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación incluimos un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una matriz. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090905.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id3150342\n"
"help.text"
msgid "Here is an example of how to create a bold font matrix in <emph>$[officename] Math</emph>. You can copy this example to the <emph>Commands</emph> window using the clipboard and use it in your own formula."
-msgstr "A continuación incluimos un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una matriz en negrita. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación incluimos un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una matriz en negrita. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090906.xhp
msgctxt ""
@@ -5462,7 +5462,7 @@ msgctxt ""
"par_id3148489\n"
"help.text"
msgid "Here is an example of how to create functions with <emph>$[officename] Math</emph>. If you want to use the example in your own formula, copy it to the <emph>Commands</emph> window using the clipboard."
-msgstr "A continuación se incluye un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear funciones. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación se incluye un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear funciones. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090907.xhp
msgctxt ""
@@ -5494,7 +5494,7 @@ msgctxt ""
"par_id3145790\n"
"help.text"
msgid "Here is an example of how to create a square root with <emph>$[officename] Math</emph>. If you want to use the example in your own formula, copy it to the <emph>Commands</emph> window using the clipboard."
-msgstr "A continuación se incluye un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una raíz. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido de la ventana <emph>Comandos</emph> mediante el portapapeles."
+msgstr "A continuación se incluye un ejemplo de cómo utilizar <emph>$[officename] Math</emph> para crear una raíz. Para adoptar la sintaxis del ejemplo en un caso práctico copie el contenido del cuadro <emph>Órdenes</emph> mediante el portapapeles."
#: 03090908.xhp
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"par_id3146962\n"
"help.text"
msgid "When typing example formulas into the <emph>Commands</emph> window, note that spaces are often required for correct structure."
-msgstr "Al introducir ejemplos manualmente en la ventana <emph>Órdenes</emph>, no olvide que los espacios son imprescindibles para garantizar una construcción correcta."
+msgstr "Al introducir ejemplos manualmente en el cuadro <emph>Órdenes</emph>, no olvide que los espacios son imprescindibles para garantizar una construcción correcta."
#: 03091100.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_id3151392\n"
"help.text"
msgid "Set brackets were previously inserted in the Elements pane or directly in the Commands window as \"left lbrace <?> right rbrace\". Now, a left and a right set bracket can also be inserted using \"lbrace\" and \"rbrace\", with or without wildcards."
-msgstr ""
+msgstr "Anteriormente, se insertaban paréntesis de conjunto como «left lbrace <?> right rbrace» en el panel Elementos o directamente en el cuadro Órdenes. Ahora, es posible asimismo insertar paréntesis de conjunto por separado con «lbrace» y «rbrace», con o sin comodines."
#: 03091100.xhp
msgctxt ""
@@ -5878,7 +5878,7 @@ msgctxt ""
"par_id3152952\n"
"help.text"
msgid "Group operations in sequence are treated as if every single operation is enclosed by braces. They are nested, and in every level there can be no more than one operation. Here is an example of a formula with many group operations: \"size 12 color red font sans size -5 (a + size 8 b)\" like \"{size 12{color red{font sans{size -5 (a + {size 8 b})}}}}\"."
-msgstr "Las operaciones de grupo entrelazadas se tratan como si cada una de ellas estuviera encerrada entre llaves. Están anidadas y cada nivel contiene como máximo una operación. Ejemplo de una fórmula con muchas operaciones de grupo: \"size 12 color red font sans size -5 (a + size 8 b)\" como \"{size 12{color red{font sans{size -5 (a + {size 8 b})}}}}\"."
+msgstr "Las operaciones de grupo entrelazadas se tratan como si cada una dellas estuviera encerrada entre llaves. Están anidadas y cada nivel contiene como máximo una operación. Ejemplo de una fórmula con muchas operaciones de grupo: \"size 12 color red font sans size -5 (a + size 8 b)\" como \"{size 12{color red{font sans{size -5 (a + {size 8 b})}}}}\"."
#: 03091100.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3149884\n"
"help.text"
msgid "The index and exponent for a character are displayed one on top of the other, left-justified to the base character. For example, type <emph>a_2^3</emph> or <emph>a^3_2</emph>. This can be in any order. Instead of <emph>'_'</emph> and <emph>'^'</emph>, you can use <emph>'sub'</emph> and <emph>'sup'</emph>."
-msgstr "El índice y el exponente de un carácter se muestran uno encima del otro, justificados a la izquierda con el carácter base. Por ejemplo, escriba <emph>a_2^3</emph> o <emph>a^3_2</emph>. Puede ir en cualquier comando. En vez de <emph>'_'</emph> y <emph>'^'</emph>, puede usar <emph>'sub'</emph> y <emph>'sup'</emph>."
+msgstr "El índice y el exponente de un carácter se muestran uno encima del otro, justificados a la izquierda con el carácter de base. Por ejemplo, escriba <emph>a_2^3</emph> o <emph>a^3_2</emph>. Puede ir en cualquier orden. En vez de <emph>_</emph> y <emph>^</emph>, puede emplear <emph>sub</emph> y <emph>sup</emph>."
#: 03091200.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3155904\n"
"help.text"
msgid "Be sure to also enter all spaces between characters when entering these examples into the <emph>Commands</emph> window."
-msgstr "Introduzca también todos los espacios entre caracteres al escribir estos ejemplos en la ventana <emph>Comandos</emph>."
+msgstr "Introduzca también todos los espacios entre caracteres al escribir estos ejemplos en el cuadro <emph>Órdenes</emph>."
#: 03091300.xhp
msgctxt ""
@@ -6342,7 +6342,7 @@ msgctxt ""
"par_id3154694\n"
"help.text"
msgid "The spaces in the examples are required for the correct structure. You may not delete them when making entries in the Commands window."
-msgstr "Los espacios de los ejemplos son imprescindibles para la correcta construcción de la fórmula, por lo que no deben omitirse cuando se introduce ésta en la ventana de comandos."
+msgstr "Los espacios de los ejemplos son imprescindibles para la correcta construcción de la fórmula, por lo que no deben omitirse cuando se introduce ésta en el cuadro Órdenes."
#: 03091500.xhp
msgctxt ""
@@ -6374,7 +6374,7 @@ msgctxt ""
"par_id3149502\n"
"help.text"
msgid "<variable id=\"ref\">This reference section contains lists of many operators, functions, symbols and formatting features available in <emph>$[officename] Math</emph>. Many of the commands displayed can be inserted using the icons in the <emph>Elements</emph> window or the context menu of the <emph>Commands</emph> window.</variable>"
-msgstr "<variable id=\"ref\">Esta sección de referencia contiene listas de numerosos operadores, símbolos, funciones y características de formateo disponibles en <emph>$[officename] Math</emph>. Muchos de los comandos que se muestran pueden insertarse mediante los iconos de la ventana <emph>Elementos de las fórmulas</emph> o desde el menú contextual de la ventana <emph>Comandos</emph>. </variable>"
+msgstr "<variable id=\"ref\">Esta sección de referencia contiene listas de numerosos operadores, símbolos, funciones y características de formateo disponibles en <emph>$[officename] Math</emph>. Muchos de los comandos que se muestran pueden insertarse mediante los iconos de la ventana <emph>Elementos de las fórmulas</emph> o desdel menú contextual del cuadro <emph>Órdenes</emph>. </variable>"
#: 03091501.xhp
msgctxt ""
@@ -8782,7 +8782,7 @@ msgctxt ""
"par_id3161843\n"
"help.text"
msgid "The <emph>color</emph> command changes the character color; first enter the <emph>color</emph> command directly in the <emph>Commands</emph> window. Then enter the color name (black, white, cyan, magenta, red, blue, green, or yellow). Then enter the characters to be changed."
-msgstr "El comando <emph>color</emph> cambia el color de los caracteres; en primer lugar, escriba el comando <emph>color</emph> directamente en la ventana <emph>Comandos</emph>. A continuación, escriba el nombre del color en inglés (black -negro-, white -blanco-, cyan -cian-, magenta, red -rojo-, blue -azul-, green -verde- o yellow -amarillo-). Después, escriba los caracteres que se deben cambiar."
+msgstr "La orden <emph>color</emph> cambia el color de los caracteres; en primer lugar, escriba la orden <emph>color</emph> directamente en el cuadro <emph>Órdenes</emph>. A continuación, escriba el nombre del color en inglés (<i>black, white, cyan, magenta, red, blue, green</i> y <i>yellow</i> son, respectivamente, negro, blanco, cian, magenta, rojo, azul, verde y amarillo). Después, escriba los caracteres que se deben cambiar."
#: 03091506.xhp
msgctxt ""
@@ -9894,7 +9894,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Formatting"
-msgstr "Formateo"
+msgstr "Formato"
#: 03091509.xhp
msgctxt ""
@@ -10142,7 +10142,7 @@ msgctxt ""
"par_id3186012\n"
"help.text"
msgid "Align to horizontal center"
-msgstr "Alineación horizontal centrada"
+msgstr "Alinear al centro horizontal"
#: 03091509.xhp
msgctxt ""
@@ -10214,7 +10214,7 @@ msgctxt ""
"bm_id3149261\n"
"help.text"
msgid "<bookmark_value>mathematical symbols; other</bookmark_value><bookmark_value>real part of complex numbers</bookmark_value><bookmark_value>symbols;for complex numbers</bookmark_value><bookmark_value>partial differentiation symbol</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla operator</bookmark_value><bookmark_value>there exists symbol</bookmark_value><bookmark_value>there does not exist symbol</bookmark_value><bookmark_value>existence quantor symbol</bookmark_value><bookmark_value>for all symbol</bookmark_value><bookmark_value>universal quantifier symbol</bookmark_value><bookmark_value>h-bar symbol</bookmark_value><bookmark_value>lambda-bar symbol</bookmark_value><bookmark_value>imaginary part of a complex number</bookmark_value><bookmark_value>complex numbers; symbols</bookmark_value><bookmark_value>weierstrass p symbol</bookmark_value><bookmark_value>left arrow symbol</bookmark_value><bookmark_value>right arrow symbol</bookmark_value><bookmark_value>up arrow symbol</bookmark_value><bookmark_value>down arrow symbol</bookmark_value><bookmark_value>arrows;symbols in %PRODUCTNAME Math</bookmark_value><bookmark_value>center dots symbol</bookmark_value><bookmark_value>axis-ellipsis</bookmark_value><bookmark_value>vertical dots symbol</bookmark_value><bookmark_value>diagonal upward dots;symbol</bookmark_value><bookmark_value>diagonal downward dots;symbol</bookmark_value><bookmark_value>epsilon; back</bookmark_value><bookmark_value>back epsilon symbol</bookmark_value><bookmark_value>placeholders; inserting in formulas</bookmark_value><bookmark_value>ellipsis symbols</bookmark_value>"
-msgstr "<bookmark_value>símbolos matemáticos;otros</bookmark_value><bookmark_value>parte real de números complejos</bookmark_value><bookmark_value>símbolos;para números complejos</bookmark_value><bookmark_value>símbolo de diferenciación parcial</bookmark_value><bookmark_value>símbolo de infinito</bookmark_value><bookmark_value>operador Nabla</bookmark_value><bookmark_value>símbolo de existe</bookmark_value><bookmark_value>símbolo de quantor de existencia</bookmark_value><bookmark_value>símbolo de para todos</bookmark_value><bookmark_value>símbolo de cuantificador universal</bookmark_value><bookmark_value>símbolo de h-barra</bookmark_value><bookmark_value>símbolo de lambda barra</bookmark_value><bookmark_value>parte imaginaria de número complejo</bookmark_value><bookmark_value>números complejos;símbolos</bookmark_value><bookmark_value>símbolo de p de weierstrass</bookmark_value><bookmark_value>símbolo de flecha izquierda</bookmark_value><bookmark_value>símbolo de flecha derecha</bookmark_value><bookmark_value>símbolo de flecha arriba</bookmark_value><bookmark_value>símbolo de flecha abajo</bookmark_value><bookmark_value>flechas;símbolo en %PRODUCTNAME Math</bookmark_value><bookmark_value>símbolo de puntos centrales</bookmark_value><bookmark_value>elipsis de eje</bookmark_value><bookmark_value>símbolo de puntos verticales</bookmark_value><bookmark_value>puntos en diagonal hacia arriba;símbolo</bookmark_value><bookmark_value>puntos en diagonal hacia abajo;símbolo</bookmark_value><bookmark_value>épsilon;posterior</bookmark_value><bookmark_value>símbolo de épsilon, posterior</bookmark_value><bookmark_value>comodines;insertar en fórmulas</bookmark_value><bookmark_value>símbolos de elipsis</bookmark_value>"
+msgstr "<bookmark_value>símbolos matemáticos;otros</bookmark_value><bookmark_value>parte real de números complejos</bookmark_value><bookmark_value>símbolos;para números complejos</bookmark_value><bookmark_value>símbolo de diferenciación parcial</bookmark_value><bookmark_value>símbolo de infinito</bookmark_value><bookmark_value>operador Nabla</bookmark_value><bookmark_value>símbolo de existe</bookmark_value><bookmark_value>símbolo de quantor de existencia</bookmark_value><bookmark_value>símbolo de para todos</bookmark_value><bookmark_value>símbolo de cuantificador universal</bookmark_value><bookmark_value>símbolo de h-barra</bookmark_value><bookmark_value>símbolo de lambda barra</bookmark_value><bookmark_value>parte imaginaria de número complejo</bookmark_value><bookmark_value>números complejos;símbolos</bookmark_value><bookmark_value>símbolo de p de weierstrass</bookmark_value><bookmark_value>símbolo de flecha izquierda</bookmark_value><bookmark_value>símbolo de flecha derecha</bookmark_value><bookmark_value>símbolo de flecha arriba</bookmark_value><bookmark_value>símbolo de flecha abajo</bookmark_value><bookmark_value>flechas;símbolo en %PRODUCTNAME Math</bookmark_value><bookmark_value>símbolo de puntos centrales</bookmark_value><bookmark_value>elipsis de eje</bookmark_value><bookmark_value>símbolo de puntos verticales</bookmark_value><bookmark_value>puntos en diagonal hacia arriba;símbolo</bookmark_value><bookmark_value>puntos en diagonal hacia abajo;símbolo</bookmark_value><bookmark_value>épsilon;posterior</bookmark_value><bookmark_value>símbolo de épsilon, posterior</bookmark_value><bookmark_value>comodines;insertar en fórmulas</bookmark_value><bookmark_value>símbolos delipsis</bookmark_value>"
#: 03091600.xhp
msgctxt ""
@@ -10238,7 +10238,7 @@ msgctxt ""
"hd_id3156430\n"
"help.text"
msgid "Symbols in detail"
-msgstr "Lista de todos los símbolos"
+msgstr "Símbolos a detalle"
#: 03091600.xhp
msgctxt ""
@@ -10262,7 +10262,7 @@ msgctxt ""
"par_id3156303\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PARTIAL\">Inserts the symbol for a partial differentiation.</ahelp> Command for the <emph>Commands</emph> window: <emph>partial</emph>"
-msgstr "<ahelp hid=\"HID_SMA_PARTIAL\">Inserta el símbolo de una diferenciación parcial.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>partial</emph>"
+msgstr "<ahelp hid=\"HID_SMA_PARTIAL\">Inserta el símbolo de una diferenciación parcial.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>partial</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10286,7 +10286,7 @@ msgctxt ""
"par_id3153648\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_INFINITY\">Inserts the symbol for infinity.</ahelp> Command for the <emph>Commands</emph> window: <emph>infinity</emph> or <emph>infty</emph>"
-msgstr "<ahelp hid=\"HID_SMA_INFINITY\">Inserta el símbolo de infinito.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>infinity</emph> o <emph>infty</emph>"
+msgstr "<ahelp hid=\"HID_SMA_INFINITY\">Inserta el símbolo de infinito.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>infinity</emph> o <emph>infty</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10310,7 +10310,7 @@ msgctxt ""
"par_id3149735\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NABLA\">Inserts the symbol for a Nabla vector operator.</ahelp> Command for the <emph>Commands</emph> window: <emph>nabla</emph>"
-msgstr "<ahelp hid=\"HID_SMA_NABLA\">Inserta el símbolo para un operador vectorial Nabla.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>nabla</emph>"
+msgstr "<ahelp hid=\"HID_SMA_NABLA\">Inserta el símbolo para un operador vectorial Nabla.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>nabla</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10334,7 +10334,7 @@ msgctxt ""
"par_id3156346\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_EXISTS\">Inserts the symbol for an Existence quantor.</ahelp> Command for the <emph>Commands</emph> window: <emph>exists</emph>"
-msgstr "<ahelp hid=\"HID_SMA_EXISTS\">Inserta el símbolo para un quantor de Existencia.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>exists</emph>"
+msgstr "<ahelp hid=\"HID_SMA_EXISTS\">Inserta el símbolo para un quantor de Existencia.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>exists</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10358,7 +10358,7 @@ msgctxt ""
"par_idA3156346\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NOTEXISTS\">Inserts the symbol for an Existence quantor.</ahelp> Command for the <emph>Commands</emph> window: <emph>notexists</emph>"
-msgstr "<ahelp hid=\"HID_SMA_NOTEXISTS\">Inserta el símbolo de una cuantificador de existencia. </ahelp> El comando para la <emph> ventana </emph> de comandos <emph> no existe </emph>"
+msgstr "<ahelp hid=\"HID_SMA_NOTEXISTS\">Inserta el símbolo de una cuantificador de existencia. </ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>notexists</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10382,7 +10382,7 @@ msgctxt ""
"par_id3150478\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_FORALL\">Inserts the symbol for a universal quantifier \"for all\".</ahelp> Command for the <emph>Commands</emph> window: <emph>forall</emph>"
-msgstr "<ahelp hid=\"HID_SMA_FORALL\">Inserta el símbolo para un cuantificador universal \"para todos\". </ahelp>Comando para la ventana <emph>Comandos</emph>: <emph>forall</emph>"
+msgstr "<ahelp hid=\"HID_SMA_FORALL\">Inserta el símbolo para un cuantificador universal «para todo». </ahelp>Orden para el cuadro <emph>Órdenes</emph>: <emph>forall</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10406,7 +10406,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_HBAR\">Inserts the symbol for the h-bar constant.</ahelp> Command for the <emph>Commands</emph> window: <emph>hbar</emph>"
-msgstr "<ahelp hid=\"HID_SMA_HBAR\">Inserta el símbolo para la constante h barra.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>hbar</emph>"
+msgstr "<ahelp hid=\"HID_SMA_HBAR\">Inserta el símbolo para la constante h barra.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>hbar</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10430,7 +10430,7 @@ msgctxt ""
"par_id3150338\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LAMBDABAR\">Inserts the symbol for a lambda-bar.</ahelp> Command for the <emph>Commands</emph> window: <emph>lambdabar</emph>"
-msgstr "<ahelp hid=\"HID_SMA_LAMBDABAR\">Inserta el símbolo de una lambda barra.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>lambdabar</emph>"
+msgstr "<ahelp hid=\"HID_SMA_LAMBDABAR\">Inserta el símbolo de una lambda con barra.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>lambdabar</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10454,7 +10454,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_RE\">Inserts the symbol for the real part of a complex number.</ahelp> Command for the <emph>Commands</emph> window: <emph>re</emph>"
-msgstr "<ahelp hid=\"HID_SMA_RE\">Inserta el símbolo de la parte real de un número complejo. </ahelp>Comando para la ventana <emph>Comandos</emph>: <emph>re</emph>"
+msgstr "<ahelp hid=\"HID_SMA_RE\">Inserta el símbolo de la parte real de un número complejo. </ahelp>Orden para el cuadro <emph>Órdenes</emph>: <emph>re</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10478,7 +10478,7 @@ msgctxt ""
"par_id3147036\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_IM\">Inserts the symbol for the imaginary part of a complex number.</ahelp> Command for the <emph>Commands</emph> window: <emph>im</emph>"
-msgstr "<ahelp hid=\"HID_SMA_IM\">Inserta el símbolo de la parte imaginaria de un número complejo. </ahelp>Comando para la ventana <emph>Comandos</emph>: <emph>im</emph>"
+msgstr "<ahelp hid=\"HID_SMA_IM\">Inserta el símbolo de la parte imaginaria de un número complejo. </ahelp>Orden para el cuadro <emph>Órdenes</emph>: <emph>im</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10502,7 +10502,7 @@ msgctxt ""
"par_id3155435\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WP\">This icon inserts a Weierstrass p-function symbol.</ahelp> Command for the <emph>Commands</emph> window: <emph>wp</emph>"
-msgstr "<ahelp hid=\"HID_SMA_WP\">Este icono inserta el símbolo de una función p de Weierstrass.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>wp</emph>"
+msgstr "<ahelp hid=\"HID_SMA_WP\">Este icono inserta el símbolo de una función p de Weierstrass.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>wp</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10526,7 +10526,7 @@ msgctxt ""
"par_id3146122\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LEFTARROW\">This icon inserts a left arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>leftarrow</emph>"
-msgstr "<ahelp hid=\"HID_SMA_LEFTARROW\">Este icono inserta una flecha hacia la izquierda.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>leftarrow</emph>"
+msgstr "<ahelp hid=\"HID_SMA_LEFTARROW\">Este icono inserta una flecha hacia la izquierda.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>leftarrow</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10550,7 +10550,7 @@ msgctxt ""
"par_id3155472\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_RIGHTARROW\">This icon inserts a right arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>rightarrow</emph>"
-msgstr "<ahelp hid=\"HID_SMA_RIGHTARROW\">Este icono inserta una flecha hacia la derecha.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>rightarrow</emph>"
+msgstr "<ahelp hid=\"HID_SMA_RIGHTARROW\">Este icono inserta una flecha hacia la derecha.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>rightarrow</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10574,7 +10574,7 @@ msgctxt ""
"par_id3152866\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_UPARROW\">This icon inserts an up arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>uparrow</emph>"
-msgstr "<ahelp hid=\"HID_SMA_UPARROW\">Este icono inserta una flecha hacia arriba.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>uparrow</emph>"
+msgstr "<ahelp hid=\"HID_SMA_UPARROW\">Este icono inserta una flecha hacia arriba.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>uparrow</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3145735\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOWNARROW\">This icon inserts a down arrow.</ahelp> Command for the <emph>Commands</emph> window: <emph>downarrow</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOWNARROW\">Este icono inserta una flecha hacia abajo.</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>downarrow</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOWNARROW\">Este icono inserta una flecha hacia abajo.</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>downarrow</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10622,7 +10622,7 @@ msgctxt ""
"par_id3159124\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTSLOW\">This icon inserts an ellipsis (three low horizontal dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotslow</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOTSLOW\">Este icono inserta unos puntos suspensivos (tres puntos horizontales bajos).</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>dotslow</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOTSLOW\">Este icono inserta unos puntos suspensivos (tres puntos horizontales bajos).</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>dotslow</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10646,7 +10646,7 @@ msgctxt ""
"par_id3146757\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTSAXIS\">This icon inserts an axis-ellipsis (three vertically centered horizontal dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsaxis</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOTSAXIS\">Este icono inserta una elipsis de eje (tres puntos horizontales centrados verticalmente).</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>dotsaxis</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOTSAXIS\">Este icono inserta una elipsis de eje (tres puntos horizontales centrados verticalmente).</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>dotsaxis</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10670,7 +10670,7 @@ msgctxt ""
"par_id3152676\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTSVERT\">This icon inserts a vertical ellipsis (three vertical dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsvert</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOTSVERT\">Este icono inserta una elipsis vertical (tres puntos verticales).</ahelp> Comando para la ventana <emph>Comandos</emph>: <emph>dotsvert</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOTSVERT\">Este icono inserta una elipsis vertical (tres puntos verticales).</ahelp> Orden para el cuadro <emph>Órdenes</emph>: <emph>dotsvert</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10694,7 +10694,7 @@ msgctxt ""
"par_id3109794\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTSUP\">This icon inserts an upward diagonal ellipsis (three dots on the diagonal from the bottom left to the top right)</ahelp>Command for the <emph>Commands</emph> window: <emph>dotsup</emph> or <emph>dotsdiag</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOTSUP\">Este icono inserta una elipsis en diagonal hacia arriba (tres puntos en diagonal de la parte inferior izquierda a la parte superior derecha)</ahelp>Comando para la ventana <emph>Comandos</emph>: <emph>dotsup</emph> o <emph>dotsdiag</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOTSUP\">Este icono inserta una elipsis en diagonal hacia arriba (tres puntos en diagonal de la parte inferior izquierda a la parte superior derecha)</ahelp>Orden para el cuadro <emph>Órdenes</emph>: <emph>dotsup</emph> o <emph>dotsdiag</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10718,7 +10718,7 @@ msgctxt ""
"par_id3158353\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTSDOWN\">This icon inserts a downward diagonal ellipsis (three dots on the diagonal from upper left to lower right).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsdown</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOTSDOWN\">Este icono inserta unos puntos suspensivos en diagonal hacia abajo (tres puntos en diagonal de la parte superior izquierda a la parte inferior derecha)</ahelp>Comando para la ventana <emph>Comandos</emph>: <emph>dotsdown</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOTSDOWN\">Este icono inserta unos puntos suspensivos en diagonal hacia abajo (tres puntos en diagonal de la parte superior izquierda a la parte inferior derecha)</ahelp>Orden para el cuadro <emph>Órdenes</emph>: <emph>dotsdown</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10726,7 +10726,7 @@ msgctxt ""
"par_id3158389\n"
"help.text"
msgid "A <emph>back epsilon</emph> can be inserted by typing <emph>backepsilon</emph> in the <emph>Commands</emph> window."
-msgstr "Se puede insertar un <emph>épsilon posterior</emph> escribiendo <emph>backepsilon</emph> en la ventana <emph>Comandos</emph>."
+msgstr "Se puede insertar un <emph>épsilon posterior</emph> escribiendo <emph>backepsilon</emph> en el cuadro <emph>Órdenes</emph>."
#: 03091600.xhp
msgctxt ""
@@ -10734,7 +10734,7 @@ msgctxt ""
"par_id3158042\n"
"help.text"
msgid "To insert a placeholder into your formula, type <emph><?></emph> in the <emph>Commands</emph> window."
-msgstr "Para insertar un marcador de posición de texto en la fórmula, escriba <emph><?></emph> en la ventana <emph>Comandos</emph>."
+msgstr "Para insertar un comodín de texto en la fórmula, escriba <emph><?></emph> en el cuadro <emph>Órdenes</emph>."
#: 05010000.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"par_id3156318\n"
"help.text"
msgid "The list boxes in the <emph>Fonts</emph> dialog display a default font for all elements. To change to a different font, click <emph>Modify</emph>, then select the element type. A new dialog box appears. Select the desired font and check any desired attributes, then click <emph>OK</emph>. To set the changes as the default fonts, click the <emph>Default</emph> button."
-msgstr "Los cuadros de lista del diálogo <emph>Tipos de letra</emph> muestran un tipo de letra predeterminado para todos los elementos. Para cambiar a otro tipo de letra, pulse en <emph>Modificar</emph> y seleccione el tipo de elemento. Aparecerá otro cuadro de diálogo. Seleccione el tipo de letra y active los atributos que prefiera. A continuación, pulse en <emph>Aceptar</emph>. Para establecer como predeterminados los cambios a los tipos de letra, pulse en el botón <emph>Predeterminar</emph>."
+msgstr "Los cuadros de lista del diálogo <emph>Tipos de letra</emph> muestran un tipo de letra predeterminado para todos los elementos. Para cambiar a otro tipo de letra, pulse en <emph>Modificar</emph> y seleccione el tipo delemento. Aparecerá otro cuadro de diálogo. Seleccione el tipo de letra y active los atributos que prefiera. A continuación, pulse en <emph>Aceptar</emph>. Para establecer como predeterminados los cambios a los tipos de letra, pulse en el botón <emph>Predeterminar</emph>."
#: 05010000.xhp
msgctxt ""
@@ -10798,7 +10798,7 @@ msgctxt ""
"par_id3148831\n"
"help.text"
msgid "If you want to mark individual text segments with a font other than that used for the whole text, then enter the <link href=\"text/smath/01/05010000.xhp\" name=\"FONT\">Font</link> command in the <emph>Commands</emph> window."
-msgstr "Si desea marcar segmentos de texto individuales con un tipo de letra diferente de la del texto, elija el comando <link href=\"text/smath/01/05010000.xhp\" name=\"FONT\">Font</link> en la ventana <emph>Comandos</emph>."
+msgstr "Si desea marcar segmentos de texto individuales con un tipo de letra diferente de la del texto, elija el comando <link href=\"text/smath/01/05010000.xhp\" name=\"FONT\">Font</link> en el cuadro <emph>Órdenes</emph>."
#: 05010000.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3151315\n"
"help.text"
msgid "These custom fonts are used if you set a different font with the FONT command in the <emph>Commands</emph> window."
-msgstr "Estos tipos de letra personalizados se utilizan si especifica un tipo de letra distinto en el panel <emph>Órdenes</emph> mediante la orden FONT."
+msgstr "Estos tipos de letra personalizados se utilizan si especifica un tipo de letra distinto en el cuadro <emph>Órdenes</emph> mediante la orden FONT."
#: 05010000.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id3154799\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/spacingdialog/checkbutton\">Scales all types of brackets.</ahelp> If you then enter <emph>( a over b)</emph> in the <emph>Commands</emph> window, the brackets will surround the whole height of the argument. You normally achieve this effect by entering <emph>left ( a over b right )</emph>."
-msgstr "<ahelp hid=\"modules/smath/ui/spacingdialog/checkbutton\">Redimensiona toda clase de paréntesis.</ahelp> Si escribe <emph>( a over b)</emph> en la ventana <emph>Órdenes</emph>, los paréntesis rodearán toda la altura del argumento. Este efecto puede obtenerse normalmente al escribir <emph>left ( a over b right )</emph>."
+msgstr "<ahelp hid=\"modules/smath/ui/spacingdialog/checkbutton\">Redimensiona toda clase de paréntesis.</ahelp> Si escribe <emph>( a over b)</emph> en el cuadro <emph>Órdenes</emph>, los paréntesis rodearán toda la altura del argumento. Este efecto puede obtenerse normalmente al escribir <emph>left ( a over b right )</emph>."
#: 05030000.xhp
msgctxt ""
@@ -12086,7 +12086,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "To insert a symbol, select it from the list and click <emph>Insert</emph>. The corresponding command name appears in the <emph>Commands</emph> window."
-msgstr "Para insertar un símbolo selecciónelo de la lista y pulse en <emph>Insertar</emph>. El nombre de la orden correspondiente aparecerá en la ventana <emph>Órdenes</emph>."
+msgstr "Para insertar un símbolo selecciónelo de la lista y pulse en <emph>Insertar</emph>. El nombre de la orden correspondiente aparecerá en el cuadro <emph>Órdenes</emph>."
#: 06010000.xhp
msgctxt ""
@@ -12366,7 +12366,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "You can also click <emph>Cancel</emph> at any time to close the dialog without saving any of the changes."
-msgstr "También puede hacer clic en <emph>Cancelar</emph> en cualquier momento para cerrar el diálogo sin guardar los cambios."
+msgstr "También puede pulsar en <emph>Cancelar</emph> en cualquier momento para cerrar el cuadro de diálogo sin guardar los cambios."
#: 06020000.xhp
msgctxt ""
@@ -12414,7 +12414,7 @@ msgctxt ""
"par_id3153916\n"
"help.text"
msgid "The <emph>Insert</emph> dialog is set up like the <link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link> dialog under <emph>File</emph>. Use the <emph>Insert</emph> dialog to load, edit and display a formula saved as a file in the <emph>Commands</emph> window."
-msgstr "El cuadro de diálogo <emph>Insertar</emph> se configura como el cuadro <link href=\"text/shared/01/01020000.xhp\" name=\"Abrir\">Abrir</link> en <emph>Archivo</emph>. Use el cuadro <emph>Insertar</emph> para cargar, editar y ver una fórmula guardada como un archivo en la ventana <emph>Órdenes</emph>."
+msgstr "El cuadro de diálogo <emph>Insertar</emph> se configura como el cuadro <link href=\"text/shared/01/01020000.xhp\" name=\"Abrir\">Abrir</link> en <emph>Archivo</emph>. Use el cuadro <emph>Insertar</emph> para cargar, editar y ver una fórmula guardada como un archivo en el cuadro <emph>Órdenes</emph>."
#: 06020000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/02.po b/source/es/helpcontent2/source/text/smath/02.po
index 52414e466b2..dbe6d93616e 100644
--- a/source/es/helpcontent2/source/text/smath/02.po
+++ b/source/es/helpcontent2/source/text/smath/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2013-05-24 08:51+0000\n"
+"PO-Revision-Date: 2017-06-21 07:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369385494.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498029578.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3150048\n"
"help.text"
msgid "You can also click a position in the document to move the cursor to its corresponding position in the <emph>Commands</emph> window."
-msgstr "También puede pulsar sobre un punto del documento para mover el cursor a su posición correspondiente en la ventana <emph>Órdenes</emph>."
+msgstr "También puede pulsar sobre un punto del documento para mover el cursor a su posición correspondiente en el cuadro <emph>Órdenes</emph>."
#: 03010000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/guide.po b/source/es/helpcontent2/source/text/smath/guide.po
index 55af2f9f356..b1a7ec210ef 100644
--- a/source/es/helpcontent2/source/text/smath/guide.po
+++ b/source/es/helpcontent2/source/text/smath/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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-08 02:37+0000\n"
+"PO-Revision-Date: 2017-06-21 07:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494211022.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498029598.000000\n"
#: align.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3150391\n"
"help.text"
msgid "The cursor waits in the Commands window and you can type the formula."
-msgstr "El cursor espera en la ventana Órdenes para que escriba la fórmula."
+msgstr "El cursor espera en el cuadro Órdenes para que escriba la fórmula."
#: keyboard.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter.po b/source/es/helpcontent2/source/text/swriter.po
index d1ae93b3d86..2432d261d37 100644
--- a/source/es/helpcontent2/source/text/swriter.po
+++ b/source/es/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-01 23:32+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 03:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496359936.000000\n"
+"X-POOTLE-MTIME: 1498017308.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the address record number of a recipient to preview the mail merge document for the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indique el número de registro de la dirección de un destinatario para obtener una previsualización de su documento de combinación de correspondencia.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeración de esquema\">Numeración de esquema</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeración de capítulos\">Numeración de capítulos</link>"
#: main0106.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/00.po b/source/es/helpcontent2/source/text/swriter/00.po
index 335eb4d2688..aaef1f9b1dc 100644
--- a/source/es/helpcontent2/source/text/swriter/00.po
+++ b/source/es/helpcontent2/source/text/swriter/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-08 02:40+0000\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
+"PO-Revision-Date: 2017-06-21 10:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494211248.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498040267.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Seleccione <emph>Herramientas - Numeración de esquema</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr "<variable id=\"kapitelnumerierung\">Vaya a <emph>Herramientas ▸ Numeración de capítulos</emph></variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Seleccione en la pestaña <emph>Herramientas - Numeración de esquema - Numeración</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr "<variable id=\"kapitelnumerierung1\">Vaya a <emph>Herramientas ▸ Numeración de capítulos ▸</emph> pestaña <emph>Numeración</emph></variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Seleccione <emph>Herramientas - Numeración de líneas...</emph>(excepto para formato HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr "<variable id=\"zeilennumerierung\">Vaya a <emph>Herramientas ▸ Numeración de renglones</emph> (excepto para el formato HTML)</variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index 82ef28e813f..6a0de016947 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 10:26+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-21 11:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496658367.000000\n"
+"X-POOTLE-MTIME: 1498045693.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Pulse en <emph>1</emph> para ver únicamente los títulos de nivel superior en la ventana del Navegador y <emph>10</emph> para ver todos los títulos.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Pulse en <emph>1</emph> para ver únicamente los títulos de nivel superior (títulos de capítulos) en la ventana del Navegador, o bien, en <emph>10</emph> para ver todos los títulos.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_id3145754\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path and the filename for the file that you want to insert, or click the <emph>Browse</emph> button to locate the file.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> If the <emph>DDE </emph>check box is selected, enter the DDE command that you want to use.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriba la ruta y el nombre del archivo que quiera insertar, o bien, pulse en el botón <emph>Examinar</emph> para encontrar el archivo.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Si la casilla <emph>DDE</emph> está activada, escriba la orden de DDE que desee utilizar.</caseinline></switchinline>"
#: 04020100.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Si selecciona «Número de capítulo sin separador» para un campo de capítulo, no se mostrarán los separadores especificados en <link href=\"text/swriter/01/06060000.xhp\" name=\"Herramientas - Numeración de capítulos\"><emph>Herramientas ▸ Numeración de capítulos</emph></link>."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr "Si selecciona «Número de capítulo sin separador» para un campo de capítulo, no se mostrarán los separadores especificados en <link href=\"text/swriter/01/06060000.xhp\" name=\"Herramientas - Numeración de capítulos\"><emph>Herramientas ▸ Numeración de capítulos</emph></link>."
#: 04090001.xhp
msgctxt ""
@@ -9494,7 +9494,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "Opens a menu to insert an index or bibliography entry, as well as inserting a table of contents, index, and or bibliography."
-msgstr ""
+msgstr "Abre un menú donde insertar entradas de índice o bibliográficas, así como sumarios, índices y bibliografías."
#: 04120000.xhp
msgctxt ""
@@ -11054,7 +11054,7 @@ msgctxt ""
"par_id3154504\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Type</link> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Especifique el formato del índice o las entradas de la tabla. La apariencia de esta pestaña cambia para reflejar el tipo de índice seleccionado en la pestaña <link href=\"text/swriter/01/04120210.xhp\" name=\"Tipo\">Tipo</link>.</ahelp>"
#: 04120220.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserta el número de capítulo. Para asignar una numeración de capítulo a un estilo de encabezado, elija<emph> Herramientas - Esquema de numeración</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserta el número de capítulo. Para aplicar numeración de capítulos a un estilo de título, diríjase a <emph>Herramientas ▸ Numeración de capítulos</emph>.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -13774,7 +13774,7 @@ msgctxt ""
"par_id3154100\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Añade o quita el nivel de esquema, la numeración o las viñetas del párrafo. También puede seleccionar el estilo de la numeración que desee usar y restablecer la numeración en una lista numerada.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -13782,7 +13782,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "To change the numbering options for paragraphs that use the same paragraph style, choose <emph>View - Styles and Formatting</emph>, and then click the <emph>Paragraph Styles</emph> icon. Right-click the style in the list, choose <emph>Modify</emph>, and then click the <emph>Outline & Numbering</emph> tab."
-msgstr ""
+msgstr "Para cambiar las opciones de numeración de los párrafos que usen el mismo estilo de párrafo, seleccione <emph>Ver ▸ Estilos y formato</emph> y, a continuación, pulse en el icono <emph>Estilos de párrafo</emph>. Con el botón secundario del ratón pulse en la lista, elija <emph>Modificar</emph> y, a continuación, pulse en la pestaña <emph>Esquema y numeración</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13790,7 +13790,7 @@ msgctxt ""
"par_id3154470\n"
"help.text"
msgid "To change the numbering options for selected paragraphs, choose <emph>Format - </emph><link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\"><emph>Paragraph</emph></link>, and then click the <emph>Outline & Numbering</emph> tab."
-msgstr ""
+msgstr "Para cambiar las opciones de numeración de los párrafos seleccionados, elija <emph>Formato ▸ </emph><link href=\"text/shared/01/05030000.xhp\" name=\"Párrafo\"><emph>Párrafo</emph></link> y, a continuación, pulse en la pestaña <emph>Esquema y numeración</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13806,7 +13806,7 @@ msgctxt ""
"par_id1209200804371097\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_OUTLINE_LEVEL\">Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style.</ahelp> Select <emph>Body text</emph> to reset the outline level."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_OUTLINE_LEVEL\">Asigna un nivel de esquema de 1 a 10 a los párrafos o el estilo de párrafo que seleccione.</ahelp> Seleccione <emph>Cuerpo de texto</emph> para restablecer el nivel de esquema."
#: 05030800.xhp
msgctxt ""
@@ -13830,7 +13830,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link> window if you click the <emph>Numbering Style</emph> icon."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Seleccione el <link href=\"text/swriter/01/05130004.xhp\" name=\"Estilo de numeración\">estilo de numeración</link> que desee aplicar al párrafo.</ahelp> Estos estilos también se encuentran en <link href=\"text/swriter/01/05140000.xhp\" name=\"Estilos y formato\">Estilos y formato</link> si se pulsa en el icono <emph>Estilo de numeración</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13846,7 +13846,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected numbering style.</ahelp> These properties will apply to all paragraphs formatted with the given numbering style."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edite las propiedades del estilo de numeración seleccionado.</ahelp> Estas propiedades se aplicarán a todos los párrafos formateados con el estilo de numeración dado."
#: 05030800.xhp
msgctxt ""
@@ -13886,7 +13886,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_NUMBER_NEW_START\">Select this check box, and then enter the number that you want to assign to the paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_NUMBER_NEW_START\">Seleccione esta casilla de verificación y escriba el número que desee asignar al párrafo.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -13902,7 +13902,7 @@ msgctxt ""
"par_id3153632\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_NEW_START\">Enter the number that you want to assign to the paragraph.</ahelp> The following paragraphs are numbered consecutively from the number that you enter here."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_NEW_START\">Escriba el número que desee asignar al párrafo.</ahelp> Los párrafos siguientes se numeran consecutivamente a partir del número que escriba aquí."
#: 05030800.xhp
msgctxt ""
@@ -13966,7 +13966,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_RESTART_PARA\">Enter the number at which to restart the line numbering</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_RESTART_PARA\">Digite el número a partir del cual debe reiniciarse la numeración de renglones</ahelp>"
#: 05040000.xhp
msgctxt ""
@@ -14374,7 +14374,7 @@ msgctxt ""
"hd_id3154767\n"
"help.text"
msgid "<link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\">Footnote</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05040600.xhp\" name=\"Nota al pie\">Nota al pie</link>"
#: 05040600.xhp
msgctxt ""
@@ -14382,7 +14382,7 @@ msgctxt ""
"par_id3149351\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/FootnoteAreaPage\">Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/FootnoteAreaPage\">Especifica las opciones de disposición de las notas al pie, incluida la línea que separa la nota del cuerpo principal del documento.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14414,7 +14414,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightpage\">Automatically adjusts the height of the footnote area depending on the number of footnotes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightpage\">Ajusta automáticamente la altura del área de notas al pie en función de la cantidad de notas al pie.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14454,7 +14454,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/spacetotext\">Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/spacetotext\">Escriba la cantidad de espacio que se debe dejar entre el margen inferior de la página y el primer renglón de texto en el área de notas al pie.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14518,7 +14518,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/thickness\">Select the thickness of the separator line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/thickness\">Seleccione el grosor de la línea de separación.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -19198,7 +19198,7 @@ msgctxt ""
"par_id3149052\n"
"help.text"
msgid "The following information concerns Writer styles that you can apply using the <link href=\"text/swriter/01/05140000.xhp\">Styles and Formatting</link> deck of the Sidebar."
-msgstr ""
+msgstr "La información siguiente se refiere a los estilos de Writer que puede aplicar a través de la sección <link href=\"text/swriter/01/05140000.xhp\">Estilo y formato</link> de la barra lateral."
#: 05130000.xhp
msgctxt ""
@@ -19206,7 +19206,7 @@ msgctxt ""
"par_id3150015\n"
"help.text"
msgid "If you want, you can edit the styles of the current document, and then save the document as a template. To save the document as template, choose <emph>File - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save as Template\"><emph>Templates - Save as Template</emph></link>."
-msgstr ""
+msgstr "Si lo desea, puede editar los estilos del documento actual y guardarlo como plantilla. Para guardar el documento como una plantilla, vaya a <emph>Archivo ▸ </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Plantillas - Guardar como plantilla\"><emph>Plantillas ▸ Guardar como plantilla</emph></link>."
#: 05130000.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeración de capítulos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeración de capítulos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "La numeración de capítulos está enlazada con los estilos de los párrafos. De forma predeterminada, los estilos del párrafo «Título» (1-10) se asignan a los niveles correspondientes de números de capítulos (1-10). Si lo desea, puede asignar estilos de párrafos diferentes del nivel del número del capítulo."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Para numerar los encabezados, utilice la orden <emph>Herramientas ▸ Numeración de capítulos</emph> para asignar una numeración a un estilo de párrafo. No utilice el icono «Numeración» de la barra de herramientas Formato para este fin."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Para destacar la visualización en la pantalla de los números de capítulos, vaya a <emph>Ver ▸</emph><emph> Marcar campos</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Guarda o carga un formato de número de capítulos. Un formato guardado de número de capítulos está disponible para todos los documentos.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "El botón <emph>Formato</emph> sólo está disponible en la numeración de capítulos. En los estilos de lista con números o con viñetas, modifique los estilos de numeración de los párrafos."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Abre un diálogo donde puede guardar los valores del nivel de numeración seleccionado. A continuación puede cargar estos valores a partir de otro documento.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Pulse en el nivel de esquema que quiera modificar y, a continuación, especifique las opciones de numeración del nivel.</ahelp> Para aplicar las opciones de numeración a todos los niveles (excepto el estilo de párrafo), pulse en «1-10»."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\" visibility=\"visible\">Seleccione el estilo de párrafo que desee asignar al nivel de esquema seleccionado.</ahelp> Si pulsa \"Ninguno\", el nivel de esquema seleccionado no se define."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bloque de dirección nuevo"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bloque de dirección nuevo"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementos de la dirección"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arrastrar el elemento de dirección al campo de abajo"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index 7af8b1e4ff0..6d74defa442 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2017-06-05 10:53+0000\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-21 11:40+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496659991.000000\n"
+"X-POOTLE-MTIME: 1498045231.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr "Mediante el Navegador es posible mover encabezados y el texto supeditado a estos arriba y abajo. También puede aumentar o disminuir el nivel de los encabezados. Para usar esta función, formatee los encabezados del documento con uno de los estilos de encabezado predefinidos. Si quiere usar un estilo personalizado en un encabezado, vaya a <emph>Herramientas ▸ Numeración de capítulos</emph>, seleccione el estilo en el cuadro <emph>Estilo de párrafo</emph> y pulse dos veces en un número de la lista <emph>Niveles</emph>."
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr "Numeración de capítulos"
#: chapter_numbering.xhp
@@ -2909,15 +2909,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>esquemas;numeración</bookmark_value> <bookmark_value>eliminar;números de títulos</bookmark_value> <bookmark_value>numeración de capítulos</bookmark_value> <bookmark_value>títulos; numeración / estilos de párrafo</bookmark_value> <bookmark_value>numeración;títulos</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeración de capítulos\">Numeración de capítulos</link></variable>"
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr "Puede modificar la jerarquía de los títulos o asignar un nivel de la jerarquía a un estilo de párrafo personalizado. También puede añadir numeración de capítulos y de secciones a los estilos de los títulos. De forma predeterminada, el estilo de párrafo «Título 1» ocupa la parte superior de la jerarquía de numeración."
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vaya a <item type=\"menuitem\">Herramientas ▸ Numeración de capítulos</item> y pulse en la ficha <item type=\"menuitem\">Numeración</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "Vaya a <item type=\"menuitem\">Herramientas ▸ Numeración de capítulos</item> y pulse en la pestaña <item type=\"menuitem\">Numeración</item>."
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Para eliminar la numeración de esquema automática de un párrafo de encabezado"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr "Para eliminar la numeración de capítulos automática de un párrafo de título"
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr "Vaya a <item type=\"menuitem\">Herramientas ▸ Numeración de capítulos</item> y pulse en la pestaña <item type=\"menuitem\">Numeración</item>."
#: chapter_numbering.xhp
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3155588\n"
"help.text"
msgid "To add a header to one of the page styles, choose <item type=\"menuitem\">Insert - Header and Footer - Header</item>, and choose the page style that you want to add the header to. In the header frame, type the text that you want to use as the header."
-msgstr ""
+msgstr "Para añadir una cabecera a uno de los estilos de página, vaya a <item type=\"menuitem\">Insertar ▸ Cabecera y pie ▸ Cabecera</item> y seleccione el estilo de página al que quiera agregar la cabecera. En el marco de la cabecera, escriba el texto que desee utilizar como cabecera."
#: even_odd_sdw.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3147772\n"
"help.text"
msgid "To add a footer to one of the page styles, choose <item type=\"menuitem\">Insert - Header and Footer - Footer</item>, and choose the page style that you want to add the footer to. In the footer frame, type the text that you want to use as a footer."
-msgstr ""
+msgstr "Para añadir un pie de página a uno de los estilos de página, vaya a <item type=\"menuitem\">Insertar ▸ Cabecera y pie ▸ Pie de página</item> y seleccione el estilo de página al que quiera agregar el pie. En el marco del pie de página, escriba el texto que desee utilizar como pie de página."
#: even_odd_sdw.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Antes de que pueda insertar información sobre el capítulo en una cabecera o un pie de página, primero debe configurar las opciones de numeración de capítulos para el estilo de párrafo que desee usar en los títulos de los capítulos."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Diríjase a <emph>Herramientas ▸ Numeración de capítulos</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr "Vaya a <item type=\"menuitem\">Herramientas ▸ Numeración de capítulos</item>."
#: header_with_chapter.xhp
msgctxt ""
@@ -7094,7 +7094,7 @@ msgctxt ""
"par_id3155871\n"
"help.text"
msgid "If you cannot place your cursor in the index or table of contents, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item>, and then select <item type=\"menuitem\">Enable cursor</item> in the <item type=\"menuitem\">Protected Areas</item> section."
-msgstr ""
+msgstr "Si no puede colocar el cursor en el índice o el sumario, vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ Ayudas de formato</item> y seleccione a continuación <item type=\"menuitem\">Activar cursor</item> en el apartado <item type=\"menuitem\">Áreas protegidas</item>."
#: indices_edit.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>índices;definir entradas en</bookmark_value> <bookmark_value>índice de materias;definir entradas en</bookmark_value> <bookmark_value>entradas;definir en índices/índice de materias</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Vaya a <emph>Insertar ▸ Sumario e índice ▸ Entrada de índice</emph> y siga uno de estos procedimientos:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr "Diríjase a <item type=\"menuitem\">Insertar ▸ Sumario e índice ▸ Entrada de índice</item> y siga uno de estos procedimientos:"
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Seleccione <emph>Herramientas - Numeración de capítulos</emph> y pulse la pestaña <emph>Numeración</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Si desea utilizar un estilo de párrafo distinto como entrada de índice de materias, seleccione la casilla de verificación <item type=\"menuitem\">Estilos adicionales</item> en el área <item type=\"menuitem\">Crear desde</item> y, a continuación, haga clic en el botón (<item type=\"menuitem\">...</item>) que hay junto a la casilla de verificación. En el diálogo <item type=\"menuitem\">Asignar estilos</item>, haga clic en el estilo de la lista y, a continuación, haga clic en el botón <item type=\"menuitem\">>></item> o en el botón <item type=\"menuitem\"><<</item> para definir el nivel de diseño del estilo de párrafo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9022,7 +9022,7 @@ msgctxt ""
"par_id3150242\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Frame and Object - Properties</item>, and then click the <item type=\"menuitem\">Options</item> tab."
-msgstr ""
+msgstr "Vaya a <item type=\"menuitem\">Formato ▸ Marco y objeto ▸ Propiedades</item> y, a continuación, seleccione la pestaña <item type=\"menuitem\">Opciones</item>."
#: nonprintable_text.xhp
msgctxt ""
@@ -9366,7 +9366,7 @@ msgctxt ""
"par_id3151096\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Outline & Numbering</item> tab."
-msgstr ""
+msgstr "Vaya a <item type=\"menuitem\">Formato ▸ Párrafo</item> y, a continuación, seleccione la pestaña <item type=\"menuitem\">Esquema y numeración</item>."
#: numbering_lines.xhp
msgctxt ""
@@ -9414,7 +9414,7 @@ msgctxt ""
"par_id3150721\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Outline & Numbering</item> tab."
-msgstr ""
+msgstr "Vaya a <item type=\"menuitem\">Formato ▸ Párrafo</item> y, a continuación, seleccione la pestaña <item type=\"menuitem\">Esquema y numeración</item>."
#: numbering_lines.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numeración;eliminar/interrumpir</bookmark_value> <bookmark_value>listas con viñetas;interrumpir</bookmark_value> <bookmark_value>listas;eliminar/interrumpir numeración</bookmark_value> <bookmark_value>eliminar;números en listas</bookmark_value> <bookmark_value>interrumpir listas numeradas</bookmark_value> <bookmark_value>cambiar;números iniciales en listas</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr "<bookmark_value>numeración;eliminar/interrumpir</bookmark_value><bookmark_value>listas viñetadas;interrumpir</bookmark_value><bookmark_value>listas;eliminar/interrumpir numeración</bookmark_value><bookmark_value>eliminar;números en listas</bookmark_value><bookmark_value>interrumpir listas numeradas</bookmark_value><bookmark_value>cambiar;números iniciales en listas</bookmark_value>"
#: numbering_paras.xhp
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr "Si quiere que los títulos estén numerados, utilice la opción <emph>Herramientas ▸ Numeración de capítulos</emph> para atribuir una numeración a un estilo de párrafo. No utilice el icono Numeración de la barra de herramientas Formato."
#: numbering_paras.xhp
@@ -11270,7 +11270,7 @@ msgctxt ""
"par_id1811201645676\n"
"help.text"
msgid "Information to protect must be in a section. To create or select a section:"
-msgstr ""
+msgstr "La información que se protegerá debe estar en una sección. Para crear o seleccionar una sección:"
#: protection.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id181120161920589\n"
"help.text"
msgid "If the section does not exist: Select the text, then choose menu <item type=\"menuitem\">Insert - Section...</item> ."
-msgstr ""
+msgstr "Si la sección no existe: seleccione el texto y, a continuación, diríjase a <item type=\"menuitem\">Insertar ▸ Sección</item>."
#: protection.xhp
msgctxt ""
@@ -11286,7 +11286,7 @@ msgctxt ""
"par_id181120164739204\n"
"help.text"
msgid "If the section already exists: <variable id=\"gotosection\">Choose menu <item type=\"menuitem\">Format - Sections...</item> and select the section in the list <emph>Section</emph>, or right-click on the section in the Navigator and choose <item type=\"menuitem\">Edit...</item>.</variable>"
-msgstr ""
+msgstr "Si la sección ya existe: <variable id=\"gotosection\">Vaya a <item type=\"menuitem\">Formato ▸ Secciones</item> y seleccione la sección deseada de la lista <emph>Sección</emph>, o bien, pulse con el botón secundario del ratón en la sección deseada en el Navegador y elija <item type=\"menuitem\">Editar</item>.</variable>"
#: protection.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id181120164720479\n"
"help.text"
msgid "If you want to protect the contents without a password, choose the <emph>Protect</emph> check box under the <emph>Write protection</emph>."
-msgstr ""
+msgstr "Si prefiere proteger el contenido sin utilizar una contraseña, marque la casilla <emph>Proteger</emph> del apartado <emph>Protección contra escritura</emph>."
#: protection.xhp
msgctxt ""
@@ -11310,7 +11310,7 @@ msgctxt ""
"par_id181120164720412\n"
"help.text"
msgid "If you want the protection with a password, choose <emph>Protect</emph> and <emph>With password</emph> check boxes and click on the <emph>Password…</emph> button. Enter and confirm a password of at least five characters."
-msgstr ""
+msgstr "Para emplear una contraseña con la protección, marque las casillas <emph>Proteger</emph> y <emph>Con contraseña</emph> y, acto seguido, pulse en el botón <emph>Contraseña</emph>. Escriba dos veces una contraseña de cinco caracteres como mínimo."
#: protection.xhp
msgctxt ""
@@ -11414,7 +11414,7 @@ msgctxt ""
"par_id1711201619364829\n"
"help.text"
msgid "Place the cursor in the cell or in the selected cells and choose the <item type=\"menuitem\">Table - Unprotect Cells</item> in menu bar."
-msgstr ""
+msgstr "Coloque el cursor en la o las celdas seleccionadas y seleccione <item type=\"menuitem\">Tabla ▸ Desproteger celdas</item> en la barra de menús."
#: protection.xhp
msgctxt ""
@@ -14430,7 +14430,7 @@ msgctxt ""
"par_id1279030\n"
"help.text"
msgid "Click inside the table. Choose <item type=\"menuitem\">Table - Properties</item> to open a dialog and set the properties to the numbers."
-msgstr ""
+msgstr "Pulse dentro de la tabla. Seleccione <item type=\"menuitem\">Tabla ▸ Propiedades</item> para abrir un cuadro de diálogo y definir las propiedades numéricas."
#: table_sizing.xhp
msgctxt ""
@@ -17086,7 +17086,7 @@ msgctxt ""
"par_id3153396\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>, and then click the <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph>Wrap</emph></link> tab."
-msgstr ""
+msgstr "Vaya a <emph>Formato ▸ Marco y objeto ▸ Propiedades</emph> y, a continuación, seleccione la pestaña <link href=\"text/swriter/01/05060200.xhp\" name=\"Ajuste\"><emph>Ajuste</emph></link>."
#: wrap.xhp
msgctxt ""
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index e6e858803d6..4c706c37d89 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-05 02:40+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 11:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496630452.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498045758.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Elegir temas"
+msgid "Spreadsheet Theme"
+msgstr "Tema del libro"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Insertar…"
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Acento 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Acento 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Acento 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Título 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Título 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Malo"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Error"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Bueno"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Alerta"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Nota al pie"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Nota"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Patrón de ~diapositivas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Patrón de ~notas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Nota~s"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Pestañas de ~vistas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Patrón de ~folleto"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8438,7 +8555,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Page Margins"
-msgstr "Capturar en márgenes de la página"
+msgstr "Acoplar a márgenes de página"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8447,7 +8564,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Object Border"
-msgstr "Alinear en el borde del objeto"
+msgstr "Acoplar a borde de objeto"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8456,7 +8573,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Object Points"
-msgstr "Alinear en los puntos del objeto"
+msgstr "Acoplar a puntos de objeto"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "~Panel de diapositivas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "~Disposición de barra de herramientas"
#: GenericCommands.xcu
msgctxt ""
@@ -22156,7 +22273,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rot~ate or Flip"
-msgstr ""
+msgstr "Girar o ~voltear"
#: GenericCommands.xcu
msgctxt ""
@@ -23524,7 +23641,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "Panel de edición"
#: MathWindowState.xcu
msgctxt ""
@@ -23533,7 +23650,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "Panel de visualización"
#: MathWindowState.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Propiedades…"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objeto…"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Lista viñetada"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Lista numerada"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Lista en números romanos"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/es/sc/source/ui/StatisticsDialogs.po b/source/es/sc/source/ui/StatisticsDialogs.po
index 8f46c4c889a..d558fe574eb 100644
--- a/source/es/sc/source/ui/StatisticsDialogs.po
+++ b/source/es/sc/source/ui/StatisticsDialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-28 18:55+0000\n"
+"PO-Revision-Date: 2017-06-21 05:01+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493405702.000000\n"
+"X-POOTLE-MTIME: 1498021261.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"STR_LABEL_INTERCEPT\n"
"string.text"
msgid "Intercept"
-msgstr ""
+msgstr "Intercepción"
#: StatisticsDialogs.src
msgctxt ""
diff --git a/source/es/sc/source/ui/src.po b/source/es/sc/source/ui/src.po
index 96511037139..33d7b12f95d 100644
--- a/source/es/sc/source/ui/src.po
+++ b/source/es/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-17 05:54+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 05:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495000448.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498021350.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Intervalo desplazado de #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,10 +2710,10 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Esta acción abandonará el modo de registro de cambios.\n"
+"Esta acción finalizará el modo de grabación de cambios.\n"
"Se perderá toda la información sobre los cambios.\n"
"\n"
-"¿Salir del modo de registro de cambios?\n"
+"¿Quiere salir del modo de grabación de cambios?\n"
"\n"
#: globstr.src
@@ -2871,10 +2871,10 @@ msgstr "No se admiten las matrices anidadas."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Texto en columnas"
+msgstr "Texto a columnas"
#: globstr.src
msgctxt ""
@@ -22870,7 +22870,7 @@ msgctxt ""
"Rounds a number to predefined significant digits.\n"
"itemlist.text"
msgid "Rounds a number to predefined significant digits."
-msgstr ""
+msgstr "Redondea un número a los decimales de precisión predefinidos."
#: scfuncs.src
msgctxt ""
@@ -22906,7 +22906,7 @@ msgctxt ""
"The number of significant digits to which value is to be rounded.\n"
"itemlist.text"
msgid "The number of significant digits to which value is to be rounded."
-msgstr ""
+msgstr "La cantidad de dígitos de precisión para redondear el valor."
#: scstring.src
msgctxt ""
diff --git a/source/es/sc/uiconfig/scalc/ui.po b/source/es/sc/uiconfig/scalc/ui.po
index a1d92547a44..7bea5efdded 100644
--- a/source/es/sc/uiconfig/scalc/ui.po
+++ b/source/es/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-18 22:07+0000\n"
+"PO-Revision-Date: 2017-06-21 05:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495145232.000000\n"
+"X-POOTLE-MTIME: 1498021364.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -1055,7 +1055,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "not between"
-msgstr ""
+msgstr "no entre"
#: conditionalentry.ui
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Thick Box Border"
-msgstr ""
+msgstr "Borde de cuadro grueso"
#: floatingborderstyle.ui
msgctxt ""
@@ -10901,7 +10901,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Include comments-only boundary column(s)"
-msgstr ""
+msgstr "Incluir columnas reservadas a comentarios"
#: sortoptionspage.ui
msgctxt ""
diff --git a/source/es/scp2/source/ooo.po b/source/es/scp2/source/ooo.po
index a609e6ace8f..0c1dc666338 100644
--- a/source/es/scp2/source/ooo.po
+++ b/source/es/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-18 22:59+0000\n"
+"PO-Revision-Date: 2017-06-07 17:40+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495148372.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496857230.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Alto sorabo"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Instala la interfaz de usuario en alto sorabo"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/es/sd/uiconfig/simpress/ui.po b/source/es/sd/uiconfig/simpress/ui.po
index 8d1d5a66113..e4654fd7904 100644
--- a/source/es/sd/uiconfig/simpress/ui.po
+++ b/source/es/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-30 19:03+0000\n"
+"PO-Revision-Date: 2017-06-19 00:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496170992.000000\n"
+"X-POOTLE-MTIME: 1497830595.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Quarter Spin"
-msgstr ""
+msgstr "Cuarto de vuelta"
#: rotatemenu.ui
msgctxt ""
@@ -4039,7 +4039,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Half Spin"
-msgstr ""
+msgstr "Media vuelta"
#: rotatemenu.ui
msgctxt ""
@@ -4048,7 +4048,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Full Spin"
-msgstr ""
+msgstr "Vuelta completa"
#: rotatemenu.ui
msgctxt ""
@@ -4057,7 +4057,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Two Spins"
-msgstr ""
+msgstr "Dos vueltas"
#: rotatemenu.ui
msgctxt ""
diff --git a/source/es/sfx2/source/view.po b/source/es/sfx2/source/view.po
index e6c227c15e1..803dd6a5bed 100644
--- a/source/es/sfx2/source/view.po
+++ b/source/es/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-18 04:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr "Este documento contiene una firma no válida."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/es/svtools/source/control.po b/source/es/svtools/source/control.po
index 98475554682..c066be52752 100644
--- a/source/es/svtools/source/control.po
+++ b/source/es/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-06-26 22:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 04:32+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1435357235.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498019546.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Negra cursiva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Libro"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Negrita oblicua"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Condensada"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Condensada negrita"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Condensada negrita cursiva"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Condensada negrita oblicua"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Condensada cursiva"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Condensada oblicua"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "Extraligera"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "Extraligera cursiva"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Oblicua"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Seminegrita"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Seminegrita cursiva"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/es/svtools/source/misc.po b/source/es/svtools/source/misc.po
index f1c2dbe9749..a1338fe1f63 100644
--- a/source/es/svtools/source/misc.po
+++ b/source/es/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-28 18:15+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 04:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495995307.000000\n"
+"X-POOTLE-MTIME: 1498020317.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3903,7 +3903,16 @@ msgctxt ""
"Xibe\n"
"itemlist.text"
msgid "Xibe"
-msgstr ""
+msgstr "Xibe"
+
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (Rep. Democrática del Congo)"
#: svtools.src
msgctxt ""
@@ -3991,7 +4000,7 @@ msgctxt ""
"STR_SVT_HOST\n"
"string.text"
msgid "host"
-msgstr ""
+msgstr "servidor"
#: svtools.src
msgctxt ""
@@ -4135,7 +4144,7 @@ msgctxt ""
"STR_SVT_PRNDLG_IO_ACTIVE\n"
"string.text"
msgid "I/O active"
-msgstr "I/O activos"
+msgstr "E/S activos"
#: svtools.src
msgctxt ""
diff --git a/source/es/svx/uiconfig/ui.po b/source/es/svx/uiconfig/ui.po
index 01760331cc4..0cd5ace8894 100644
--- a/source/es/svx/uiconfig/ui.po
+++ b/source/es/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-19 08:41+0000\n"
+"PO-Revision-Date: 2017-06-07 18:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495183299.000000\n"
+"X-POOTLE-MTIME: 1496860568.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Translate _common terms"
-msgstr "Traducir términos _generales"
+msgstr "Traducir términos _comunes"
#: chineseconversiondialog.ui
msgctxt ""
@@ -5210,7 +5210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Snap"
-msgstr "Alinear"
+msgstr "Acoplar"
#: optgridpage.ui
msgctxt ""
diff --git a/source/es/sw/source/core/undo.po b/source/es/sw/source/core/undo.po
index 0fef382de37..98b4168ba10 100644
--- a/source/es/sw/source/core/undo.po
+++ b/source/es/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-18 04:47+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 04:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492490829.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498018887.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "salto de columna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Insertar $1"
@@ -899,7 +899,7 @@ msgstr "Insertar $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Eliminar $1"
@@ -907,7 +907,7 @@ msgstr "Eliminar $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr "Atributos modificados"
@@ -915,7 +915,7 @@ msgstr "Atributos modificados"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr "Tabla modificada"
@@ -923,7 +923,7 @@ msgstr "Tabla modificada"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
msgstr "Estilo modificado"
@@ -931,6 +931,46 @@ msgstr "Estilo modificado"
#: undo.src
msgctxt ""
"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formato de párrafo modificado"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Insertar fila"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Eliminar fila"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Insertar celda"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Eliminar celda"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
"STR_N_REDLINES\n"
"string.text"
msgid "$1 changes"
diff --git a/source/es/sw/source/ui/dbui.po b/source/es/sw/source/ui/dbui.po
index f32cb88b5ab..9d94ff04e1f 100644
--- a/source/es/sw/source/ui/dbui.po
+++ b/source/es/sw/source/ui/dbui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-20 22:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-19 13:23+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492726294.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497878624.000000\n"
#: dbui.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"Address Line 1\n"
"itemlist.text"
msgid "Address Line 1"
-msgstr "Dirección, línea 1"
+msgstr "Dirección, renglón 1"
#: dbui.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Address Line 2\n"
"itemlist.text"
msgid "Address Line 2"
-msgstr "Dirección, línea 2"
+msgstr "Dirección, renglón 2"
#: dbui.src
msgctxt ""
diff --git a/source/es/sw/source/uibase/docvw.po b/source/es/sw/source/uibase/docvw.po
index 0f40694d118..7f3cf6e95a1 100644
--- a/source/es/sw/source/uibase/docvw.po
+++ b/source/es/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-05-05 01:53+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 04:22+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462413208.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498018920.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Estilos de párrafo aplicados"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formato de párrafo modificado"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Fila insertada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Fila eliminada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Celda insertada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Celda eliminada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/es/sw/source/uibase/ribbar.po b/source/es/sw/source/uibase/ribbar.po
index 7050407e97d..93a42443dbe 100644
--- a/source/es/sw/source/uibase/ribbar.po
+++ b/source/es/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-12 18:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Texto de fórmula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/es/sw/source/uibase/uiview.po b/source/es/sw/source/uibase/uiview.po
index 17d70133b6c..bd4b509c721 100644
--- a/source/es/sw/source/uibase/uiview.po
+++ b/source/es/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 01:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exportar fuente…"
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/es/sw/uiconfig/swriter/ui.po b/source/es/sw/uiconfig/swriter/ui.po
index 5fc5515e825..4a8daeaee79 100644
--- a/source/es/sw/uiconfig/swriter/ui.po
+++ b/source/es/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 11:47+0000\n"
+"PO-Revision-Date: 2017-06-21 11:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496231277.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498044410.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Descripción:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Editar comentario…"
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Ordenar por"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Acción"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Fecha"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Comentario"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Posición en el documento"
#: mergeconnectdialog.ui
msgctxt ""
@@ -9720,7 +9720,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document Area Elements"
-msgstr ""
+msgstr "Elementos del área del documento"
#: notebookbar.ui
msgctxt ""
@@ -10449,7 +10449,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -11938,7 +11938,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "MS Word-compatible trailing blanks"
-msgstr ""
+msgstr "Espacios posteriores compatibles con Microsoft Word"
#: optcompatpage.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Utilizar orden de representación de LibreOffice 4.3 (documento actual)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Configuración de usuario>"
#: optcompatpage.ui
msgctxt ""
@@ -19043,7 +19043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Tipo de letra"
#: watermarkdialog.ui
msgctxt ""
@@ -19052,7 +19052,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Ángulo"
#: watermarkdialog.ui
msgctxt ""
@@ -19061,7 +19061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparencia"
#: watermarkdialog.ui
msgctxt ""
@@ -19070,7 +19070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Color"
#: wordcount.ui
msgctxt ""
diff --git a/source/es/xmlsecurity/uiconfig/ui.po b/source/es/xmlsecurity/uiconfig/ui.po
index 67797e80ae7..14b2e587493 100644
--- a/source/es/xmlsecurity/uiconfig/ui.po
+++ b/source/es/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-13 21:12+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 11:27+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492117937.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498044432.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Eliminar"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Iniciar Gestor de certificados…"
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/et/dbaccess/source/ui/browser.po b/source/et/dbaccess/source/ui/browser.po
index 5d18463b336..76a2776f668 100644
--- a/source/et/dbaccess/source/ui/browser.po
+++ b/source/et/dbaccess/source/ui/browser.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-05 20:39+0000\n"
+"PO-Revision-Date: 2017-06-14 18:59+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695145.000000\n"
+"X-POOTLE-MTIME: 1497466793.000000\n"
#: sbabrw.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"RID_STR_COPY\n"
"string.text"
msgid "~Copy"
-msgstr ""
+msgstr "Kopeeri"
#: sbagrid.src
msgctxt ""
diff --git a/source/et/desktop/source/deployment/gui.po b/source/et/desktop/source/deployment/gui.po
index 80a765b88ec..425cc2ecf05 100644
--- a/source/et/desktop/source/deployment/gui.po
+++ b/source/et/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:35+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-01-11 20:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467664519.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1421009928.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/et/editeng/source/editeng.po b/source/et/editeng/source/editeng.po
index 4add36caf16..8cc5167e9e4 100644
--- a/source/et/editeng/source/editeng.po
+++ b/source/et/editeng/source/editeng.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-11-15 18:47+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 23:34+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447613248.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497742470.000000\n"
#: editeng.src
msgctxt ""
@@ -110,4 +110,4 @@ msgctxt ""
"RID_SVXSTR_AUTOMATIC\n"
"string.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaatne"
diff --git a/source/et/filter/source/config/fragments/internalgraphicfilters.po b/source/et/filter/source/config/fragments/internalgraphicfilters.po
index 07b79bd2a5d..9c10d43a5c0 100644
--- a/source/et/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/et/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-22 15:00+0000\n"
+"PO-Revision-Date: 2017-06-17 22:03+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485097245.000000\n"
+"X-POOTLE-MTIME: 1497737005.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
+msgstr "EPS - kapseldatud PostScript"
#: eps_Import.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EPS - Encapsulated PostScript"
-msgstr "EPS - Encapsulated PostScript"
+msgstr "EPS - kapseldatud PostScript"
#: gif_Export.xcu
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sbasic/shared.po b/source/et/helpcontent2/source/text/sbasic/shared.po
index bdd3e167d27..72e64e17e3e 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared.po
+++ b/source/et/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 22:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Veakoodid</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "See käitusajafunktsioon tagastab komponendi kasutatava vaikimisi konteksti juhul, kui teenuste eksemplarid luuakse XmultiServiceFactory kaudu. Lisateavet leiad veebisaidi <link href=\"http://api.openoffice.org\">api.openoffice.org</link> teema <item type=\"literal\">Professional UNO</item> juhendist <item type=\"literal\">Developer's Guide</item>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/et/helpcontent2/source/text/scalc.po b/source/et/helpcontent2/source/text/scalc.po
index ce3d30e9b89..1ebcb13c558 100644
--- a/source/et/helpcontent2/source/text/scalc.po
+++ b/source/et/helpcontent2/source/text/scalc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-06 22:48+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 12:00+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462574905.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497787207.000000\n"
#: main0000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"hd_id3156023\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menüüd\">Menüüd</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menüüd</link></variable>"
#: main0100.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"hd_id3151112\n"
"help.text"
msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Vaade\">Vaade</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">Vaade</link>"
#: main0103.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"hd_id102720151109097115\n"
"help.text"
msgid "<link href=\"text/scalc/01/03100000.xhp\">Page Break</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Ava\">Ava</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Leheküljepiir</link>"
#: main0103.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"hd_id10272015110909623\n"
"help.text"
msgid "Grid Lines for Sheet"
-msgstr ""
+msgstr "Lehe võrgustik"
#: main0103.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id102720151147483554\n"
"help.text"
msgid "Toggle the visibility of grid lines for the current sheet."
-msgstr ""
+msgstr "Lülitab sel lehel lahtrivõrgustiku näitamist."
#: main0103.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id033020170228348624\n"
"help.text"
msgid "Show Formula"
-msgstr ""
+msgstr "Valemi kuvamine"
#: main0103.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id03302017024610704\n"
"help.text"
msgid "Display the cell formula expression instead of the calculated result."
-msgstr ""
+msgstr "Kuvab lahtris valemiavaldist, mitte selle arvutatud väärtust."
#: main0103.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galerii</link>"
#: main0103.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"hd_id3125863\n"
"help.text"
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Suurendus\">Suurendus</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Suurendus</link>"
#: main0104.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"hd_id3149669\n"
"help.text"
msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Vormindus\">Vormindus</link>"
+msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Vormindus</link>"
#: main0105.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:FormatMenu\">Menüü <emph>Vormindus</emph> sisaldab käske dokumendis valitud lahtrite, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objektide\">objektide</link> ja lahtrite sisu vormindamiseks.</ahelp>"
+msgstr "<ahelp hid=\".\">Menüü <emph>Vormindus</emph> sisaldab käske dokumendis valitud lahtrite, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objektide\">objektide</link> ja lahtrite sisu vormindamiseks.</ahelp>"
#: main0105.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"hd_id3154732\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
-msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Lahtrid\">Lahtrid</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Lahtrid</link>"
#: main0105.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"hd_id3155087\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Lehekülg\">Lehekülg</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Lehekülg</link>"
#: main0105.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"hd_id3145748\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0105.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"hd_id3154485\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0105.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"hd_id3157980\n"
"help.text"
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Automaatvormindus\">Automaatvormindus</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">Automaatvormindus</link>"
#: main0105.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"hd_id3159206\n"
"help.text"
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
-msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Tingimuslik vormindamine\">Tingimuslik vormindamine</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Tingimuslik vormindamine</link>"
#: main0105.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"hd_id3154703\n"
"help.text"
msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
-msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Juhtelement\">Juhtelement</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Juhtelement</link>"
#: main0105.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
-msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Vorm\">Vorm</link>"
+msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Vorm</link>"
#: main0106.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"hd_id3150769\n"
"help.text"
msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tööriistad\">Tööriistad</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tööriistad</link>"
#: main0106.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id3150086\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Kohandamine</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Kohanda</link>"
#: main0107.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"hd_id3154758\n"
"help.text"
msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Aken\">Aken</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Aken</link>"
#: main0107.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Sisaldab käske dokumendi akende haldamiseks ja kuvamiseks.</ahelp>"
+msgstr "<ahelp hid=\".\">Sisaldab käske dokumendi akende haldamiseks ja kuvamiseks.</ahelp>"
#: main0112.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id3151073\n"
"help.text"
msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Valideerimine\">Valideerimine</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Sobivus\">Sobivus</link>"
#: main0112.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"hd_id3154754\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Värskenda vahemikku\">Värskenda vahemikku</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Värskenda vahemikku</link>"
#: main0116.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id0906201507414191\n"
"help.text"
msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Insert Rows</link>"
-msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Stsenaariumid\">Stsenaariumid</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Lisa rida</link>"
#: main0116.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id0906201507414192\n"
"help.text"
msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Insert Columns</link>"
-msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Kustuta sisu\">Kustuta sisu</link>"
+msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Lisa veerg</link>"
#: main0116.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Näita lehte</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Näita lehte</link>"
#: main0116.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3163735308\n"
"help.text"
msgid "Sheet Tab Color"
-msgstr ""
+msgstr "Lehe saki värv"
#: main0116.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"hd_id3154758\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Tööriistaribad\">Tööriistaribad</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Tööriistaribad</link></variable>"
#: main0200.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3150448\n"
"help.text"
msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
-msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Vormindusriba\">Vormindusriba</link>"
+msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Vormindusriba</link>"
#: main0202.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"hd_id3153160\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Fondi värv\">Fondi värv</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Fondi värv</link>"
#: main0202.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"hd_id3150715\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda vasakule\">Joonda vasakule</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Joonda vasakule</link>"
#: main0202.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"hd_id3155064\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda horisontaalselt keskele\">Joonda horisontaalselt keskele</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Joonda rõhtsalt keskele</link>"
#: main0202.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3150042\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda paremale\">Joonda paremale</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Joonda paremale</link>"
#: main0202.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"hd_id3154703\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda rööpselt\">Joonda rööpselt</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Joonda rööpselt</link>"
#: main0202.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id3152986\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda üles\">Joonda üles</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Joonda üles</link>"
#: main0202.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id3153306\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda vertikaalselt keskele\">Joonda vertikaalselt keskele</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Joonda püstiselt keskele</link>"
#: main0202.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id3151240\n"
"help.text"
msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Joonda alla\">Joonda alla</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Joonda alla</link>"
#: main0202.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"hd_id3154346\n"
"help.text"
msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
-msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Joonistusobjekti omaduste riba\">Joonistusobjekti omaduste riba</link>"
+msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Joonistusobjekti omaduste riba</link>"
#: main0203.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3145748\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Joone stiil\">Joone stiil</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Joonestiil</link>"
#: main0203.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"hd_id3151073\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Joone laius\">Joone laius</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Joone jämedus</link>"
#: main0203.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"hd_id3153417\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Joone värv\">Joone värv</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Joone värv</link>"
#: main0203.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"hd_id3147338\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Taustavärv\">Taustavärv</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Taustavärv</link>"
#: main0205.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3156330\n"
"help.text"
msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
-msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Teksti vormindusriba\">Teksti vormindusriba</link>"
+msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Teksti vormindusriba</link>"
#: main0205.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"hd_id3148575\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Fondi värv\">Fondi värv</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Fondi värv</link>"
#: main0205.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"hd_id3154944\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Reavahe: 1\">Reavahe: 1</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Reavahe: 1</link>"
#: main0205.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"hd_id3146969\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Reavahe: 1,5\">Reavahe: 1,5</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Reavahe: 1,5</link>"
#: main0205.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"hd_id3153711\n"
"help.text"
msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
-msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Reavahe: 2\">Reavahe: 2</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Reavahe: 2</link>"
#: main0205.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"hd_id3147345\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Joonda vasakule\">Joonda vasakule</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Joonda vasakule</link>"
#: main0205.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"hd_id3155337\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Keskjoondatud\">Keskjoondatud</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Joonda keskele</link>"
#: main0205.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"hd_id3147001\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Joonda paremale\">Joonda paremale</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Joonda paremale</link>"
#: main0205.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"hd_id3155115\n"
"help.text"
msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Joonda rööpselt\">Joonda rööpselt</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Joonda rööpselt</link>"
#: main0205.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Ülakiri\">Ülakiri</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Ülakiri</link>"
#: main0205.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"hd_id3155531\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Alakiri\">Alakiri</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Alakiri</link>"
#: main0205.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"hd_id3145387\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0205.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"hd_id3153067\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0206.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
-msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Valemiriba\">Valemiriba</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Valemiriba</link>"
#: main0206.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"hd_id3147394\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Vorminda lehekülg\">Vorminda lehekülg</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Vorminda lehekülg</link>"
#: main0210.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sdraw.po b/source/et/helpcontent2/source/text/sdraw.po
index a9dac2014a0..82ac18f2d2b 100644
--- a/source/et/helpcontent2/source/text/sdraw.po
+++ b/source/et/helpcontent2/source/text/sdraw.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-02 11:01+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 14:22+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462186915.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497795778.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "$[officename] Draw' Abi sissejuhatus"
#: main0000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"hd_id3148664\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menüüd\">Menüüd</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menüüd</link></variable>"
#: main0100.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"hd_id3149655\n"
"help.text"
msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"Fail\">Fail</link>"
+msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">Fail</link>"
#: main0101.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"hd_id3156441\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Ava\">Ava</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Ava</link>"
#: main0101.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"hd_id3154754\n"
"help.text"
msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versioonid\">Versioonid</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versioonid</link>"
#: main0101.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Omadused\">Omadused</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Omadused</link>"
#: main0101.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"hd_id3149127\n"
"help.text"
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Prindi\">Prindi</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Prindi</link>"
#: main0101.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"hd_id3145790\n"
"help.text"
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printeri sätted\">Printeri sätted</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printeri sätted</link>"
#: main0102.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Redigeerimine\">Redigeerimine</link>"
+msgstr "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Redigeerimine</link>"
#: main0102.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Otsi ja asenda\">Otsi ja asenda</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Otsi ja asenda</link>"
#: main0102.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"hd_id3153713\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punktid\">Punktid</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Punktid</link>"
#: main0102.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "Enables you to edit points on your drawing."
-msgstr "Võimaldab joonise punktide redigeerimist."
+msgstr "Võimaldab redigeerida joonistuse punkte."
#: main0102.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"hd_id3149258\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Liimpunktid\">Liimpunktid</link>"
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Liimpunktid</link>"
#: main0102.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "Enables you to edit glue points on your drawing."
-msgstr "Võimaldab joonise liimpunktide redigeerimist."
+msgstr "Võimaldab redigeerida joonistuse liimpunkte."
#: main0102.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Klooni\">Klooni</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Klooni</link>"
#: main0102.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id3150205\n"
"help.text"
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Muundumine\">Muundumine</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Muundamine</link>"
#: main0102.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Väljad\">Väljad</link>"
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Väljad</link>"
#: main0102.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"hd_id3156446\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Lingid\">Lingid</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Lingid</link>"
#: main0102.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Hüperpilt\">Hüperpilt</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Hüperpilt</link>"
#: main0102.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hüperlink\">Hüperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hüperlink</link>"
#: main0103.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3159155\n"
"help.text"
msgid "Sets the display properties of Draw documents."
-msgstr "Määrab joonistuste kuvamise sätted."
+msgstr "Määrab Draw' joonistuste kuvamise sätted."
#: main0103.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/sdraw/main0104.xhp\" name=\"Lisamine\">Lisamine</link>"
+msgstr "<link href=\"text/sdraw/main0104.xhp\" name=\"Insert\">Lisamine</link>"
#: main0104.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"hd_id3154320\n"
"help.text"
msgid "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Slide</link>"
-msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slaid\">Slaid</link>"
+msgstr "<link href=\"text/sdraw/01/04010000.xhp\" name=\"Slide\">Slaid</link>"
#: main0104.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Tõmbepunkt/-joon\">Tõmbepunkt/-joon</link>"
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Tõmbepunkt/-joon</link>"
#: main0104.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Erimärk\">Erimärk</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Erimärk</link>"
#: main0104.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hüperlink\">Hüperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hüperlink</link>"
#: main0104.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Lahtine paneel\">Lahtine paneel</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Lahtine paneel</link>"
#: main0104.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Fail\">Fail</link>"
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">Fail</link>"
#: main0105.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/sdraw/main0105.xhp\" name=\"Vormindus\">Vormindus</link>"
+msgstr "<link href=\"text/sdraw/main0105.xhp\" name=\"Format\">Vormindus</link>"
#: main0105.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0105.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id3146979\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0105.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id3166426\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Nummerdus ja täpid\">Nummerdus ja täpid</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Nummerdus ja täpid</link>"
#: main0105.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
-msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Lehekülg\">Lehekülg</link>"
+msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Lehekülg</link>"
#: main0105.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"hd_id3146971\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Asukoht ja suurus\">Asukoht ja suurus</link>"
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Asukoht ja suurus</link>"
#: main0105.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Joon\">Joon</link>"
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Joon</link>"
#: main0105.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Ala\">Ala</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Ala</link>"
#: main0105.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"hd_id3153878\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Tekst\">Tekst</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Tekst</link>"
#: main0105.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tööriistad\">Tööriistad</link>"
+msgstr "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tööriistad</link>"
#: main0106.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Kohandamine\">Kohandamine</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Kohanda</link>"
#: main0200.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id3148663\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Tööriistaribad\">Tööriistaribad</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Tööriistaribad</link></variable>"
#: main0200.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Joone stiil\">Joone stiil</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Joonestiil</link>"
#: main0202.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"hd_id3156285\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Joone laius\">Joone laius</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Joone jämedus</link>"
#: main0202.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3154015\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Joone värv\">Joone värv</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Joone värv</link>"
#: main0202.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"hd_id3155767\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Ala stiil / täidis\">Ala stiil / täidis</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Ala stiil / täidis</link>"
#: main0202.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3150398\n"
"help.text"
msgid "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
-msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Joonistusriba\">Joonistusriba</link>"
+msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Joonistusriba</link>"
#: main0210.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3150793\n"
"help.text"
msgid "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
-msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Säteteriba\">Säteteriba</link>"
+msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Säteteriba</link>"
#: main0213.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3149018\n"
"help.text"
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
-msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Tõmbejooned liigutamisel\">Tõmbejooned liigutamisel</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Abijooned liigutamisel</link>"
#: main0213.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3146313\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Tõmme tõmbejoontele\">Tõmme tõmbejoontele</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Tõmme tõmbejoontele</link>"
#: main0213.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
-msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Tõmme leheveeristele\">Tõmme leheveeristele</link>"
+msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Tõmme leheveeristele</link>"
#: main0213.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3150343\n"
"help.text"
msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
-msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Tõmme objektiäärisele\">Tõmme objektiäärisele</link>"
+msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Tõmme objekti äärisele\">Tõmme objekti äärisele</link>"
#: main0213.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3150368\n"
"help.text"
msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
-msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Tõmme objektipunktidele\">Tõmme objektipunktidele</link>"
+msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Tõmme objekti punktidele\">Tõmme objekti punktidele</link>"
#: main0213.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"hd_id3146980\n"
"help.text"
msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
-msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Kiirredigeerimine lubatud\">Kiirredigeerimine lubatud</link>"
+msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Kiirredigeerimine lubatud</link>"
#: main0213.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw' võimalused\">$[officename] Draw' võimalused</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw' võimalused</link></variable>"
#: main0503.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared.po b/source/et/helpcontent2/source/text/shared.po
index 9f8a4a983c3..9feb59556b6 100644
--- a/source/et/helpcontent2/source/text/shared.po
+++ b/source/et/helpcontent2/source/text/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-04-16 22:58+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 18:12+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1460847531.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497809572.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Vali ruumilisuse sügavus."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Vali perspektiiv- või paralleelprojektsiooni meetod."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Vali valguse suund."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Vali valguse intensiivsus."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Vali pinna materjal või määra, et kuvatakse sõrestikku."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Rakendab joonduse valitud ilukirjadele."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Rakendab märkide vahe valitud ilukirjadele."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Avab dialoogi \"Ilukirja märkide vahe\", kuhu saab sisestada uue märkide vahe väärtuse."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Lülitab märgipaaride <link href=\"text/shared/00/00000005.xhp#kerning\">koondamise</link> sisse või välja."
#: main0108.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"hd_id3155364\n"
"help.text"
msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
-msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Abi\">Abi</link>"
+msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Abi</link>"
#: main0108.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN1064A\n"
"help.text"
msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">Ikoon</alt></image>"
#: main0108.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "%PRODUCTNAME Help"
-msgstr "%PRODUCTNAME'i Abi"
+msgstr "%PRODUCTNAME'i abi"
#: main0108.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"hd_id230120170827187813\n"
"help.text"
msgid "User Guides"
-msgstr ""
+msgstr "Ingliskeelsed käsiraamatud"
#: main0108.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id230120170827196253\n"
"help.text"
msgid "Get Help Online"
-msgstr ""
+msgstr "Otsi abi Internetist"
#: main0108.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id230120170903409011\n"
"help.text"
msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Restart in Safe Mode</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/profile_safe_mode.xhp\">Taaskäivita päästerežiimis</link>"
#: main0108.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"hd_id3154186\n"
"help.text"
msgid "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">Standard Bar</link>"
-msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standardriba\">Standardriba</link>"
+msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">Standardriba</link>"
#: main0201.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"hd_id3166460\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">Open File</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Ava fail\">Ava fail</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">Ava fail</link>"
#: main0201.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"hd_id3147592\n"
"help.text"
msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Ühenda lahtrid\">Ühenda lahtrid</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Ühenda lahtrid</link>"
#: main0204.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3147820\n"
"help.text"
msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
-msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Kustuta rida\">Kustuta rida</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Kustuta rida</link>"
#: main0204.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"hd_id3147231\n"
"help.text"
msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
-msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Kustuta veerg\">Kustuta veerg</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Kustuta veerg</link>"
#: main0204.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3134447820\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabeli koostamine"
#: main0204.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id16200812240344\n"
"help.text"
msgid "<ahelp hid=\".uno:TableDesign\">Opens the Table Design. Double-click a preview to format the table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TableDesign\">Avab tabeli koostamise akna. Tabeli vormindamiseks tee eelvaatel topeltklõps.</ahelp>"
#: main0204.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3153752\n"
"help.text"
msgid "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Ikoon</alt></image>"
#: main0204.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3156429\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabeli koostamine"
#: main0204.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_id3151382\n"
"help.text"
msgid "Undo: Data Input"
-msgstr "Võta tagasi: Andmete sisestamine"
+msgstr "Võta tagasi: andmete sisestamine"
#: main0212.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"hd_id3153192\n"
"help.text"
msgid "Absolute Record"
-msgstr "Absoluutne kirje"
+msgstr "Kirjenumber"
#: main0213.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"hd_id3156448\n"
"help.text"
msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
-msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Otsi kirjet\">Otsi kirjet</link>"
+msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Otsi kirjet</link>"
#: main0213.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3151384\n"
"help.text"
msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
-msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Lisa tabelid\">Lisa tabelid</link>"
+msgstr "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Tabelite lisamine</link>"
#: main0214.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"hd_id3163802\n"
"help.text"
msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
-msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Lisa väli\">Lisa väli</link>"
+msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Lisa väli</link>"
#: main0226.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id3147335\n"
"help.text"
msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Lõhu rühm\">Lõhu rühm</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Lõhu rühm</link>"
#: main0226.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Sisene rühma\">Sisene rühma</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Sisene rühma</link>"
#: main0226.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"hd_id3148920\n"
"help.text"
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
-msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Tõmbejooned liigutamisel\">Tõmbejooned liigutamisel</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Abijooned liigutamisel</link>"
#: main0227.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id3149987\n"
"help.text"
msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
-msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Punktide redigeerimine\">Punktide redigeerimine</link>"
+msgstr "<link href=\"text/shared/main0227.xhp\" name=\"Punktide redigeerimise riba\">Punktide redigeerimise riba</link>"
#: main0227.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"hd_id3153105\n"
"help.text"
msgid "Edit Points"
-msgstr "Redigeeri punkte"
+msgstr "Punktide redigeerimine"
#: main0227.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"hd_id3149495\n"
"help.text"
msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
-msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Kiirklahvid\">Kiirklahvid</link>"
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Kiirklahvid</link>"
#: main0400.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"hd_id3154232\n"
"help.text"
msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"$[officename]'i programmeerimine\">$[officename]'i programmeerimine</link></variable>"
+msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">$[officename]'i programmeerimine</link></variable>"
#: main0600.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "Enable Java platform support by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] - Advanced</emph></link>."
-msgstr "Java platvormi toe saab aktiveerida valides <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Eelistused</caseinline><defaultinline>Tööriistad - Sätted</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\">$[officename] - Edasijõudnuile</link></emph>."
+msgstr "Java platvormi toe saab lubada valides <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Eelistused</emph></caseinline> <defaultinline><emph>Tööriistad - Sätted</emph></defaultinline></switchinline> <emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] - Edasijõudnuile</emph></link>."
#: main0650.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3153822\n"
"help.text"
msgid "Your modifications at the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph> tab page will be used even if the Java Virtual Machine (JVM) has been started already. After any modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>. Only the boxes \"HTTP Proxy\" and \"FTP Proxy\" and their ports do not require a restart—they will be evaluated when you click <emph>OK</emph>."
-msgstr "Kasutaja tehtud muudatused kaardil <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Eelistused</caseinline><defaultinline>Tööriistad - Sätted</defaultinline></switchinline> - $[officename] - Edasijõudnuile</emph>jõustuvad ka siis, kui Java virtuaalmasin (JVM, Java platvormi virtuaalmasin) on juba käivitatud. Pärast välja ClassPath muutmist tuleb $[officename] uuesti käivitada. Sama kehtib ka muutuste kohta kaardil <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Eelistused</caseinline><defaultinline>Tööriistad - Sätted</defaultinline></switchinline> - Internet - Puhverserver</emph>. Ainult kaks välja, \"HTTP-puhverserver\" ja \"FTP-puhverserver\" koos oma portide väljadega ei nõua muutmise korral taaskäivitamist, nende muutmine jõustub pärast klõpsamist nupul <emph>Sobib</emph>."
+msgstr "Kasutaja tehtud muudatused kaardil <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Eelistused</emph></caseinline> <defaultinline><emph>Tööriistad - Sätted</emph></defaultinline></switchinline> <emph> - $[officename] - Edasijõudnuile</emph>jõustuvad ka siis, kui Java virtuaalmasin (JVM) on juba käivitatud. Pärast välja ClassPath muutmist tuleb $[officename] uuesti käivitada. Sama kehtib ka muutuste kohta kaardil <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Eelistused</emph> </caseinline><defaultinline><emph>Tööriistad - Sätted</emph></defaultinline> </switchinline><emph> - Internet - Puhverserver</emph>. Ainult kaks välja, \"HTTP-puhverserver\" ja \"FTP-puhverserver\" koos oma portide väljadega ei nõua muutmise korral taaskäivitamist — nende muutmine jõustub pärast klõpsamist nupul <emph>Sobib</emph>."
#: main0800.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"hd_id3153089\n"
"help.text"
msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
-msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] ja Internet\">$[officename] ja Internet</link>"
+msgstr "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] ja Internet</link>"
#: main0800.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/00.po b/source/et/helpcontent2/source/text/shared/00.po
index a420af02b48..8ee7e83817b 100644
--- a/source/et/helpcontent2/source/text/shared/00.po
+++ b/source/et/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 09:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index 228aae58105..5d13a5397fa 100644
--- a/source/et/helpcontent2/source/text/shared/01.po
+++ b/source/et/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 02:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Vali lõigustiil, mille alusel jagatakse lähtedokument alamdokumentideks.</ahelp> Vaikimisi on iga uue dokumendi loomise aluseks esimene liigendustase."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Vali Writeri dokumentide järjehoidjate eksportimiseks PDF-i järjehoidjatena. Järjehoidjad luuakse kõigist liigendatud lõikudest (Tööriistad - Numberliigendus) ja kõigist sisukorra kirjetest, millele on lähtedokumendis omistatud hüperlink.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index ddade53f65a..12c890c1b4f 100644
--- a/source/et/helpcontent2/source/text/shared/optionen.po
+++ b/source/et/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/et/helpcontent2/source/text/simpress.po b/source/et/helpcontent2/source/text/simpress.po
index 2183bc51c7d..f4722dec0ba 100644
--- a/source/et/helpcontent2/source/text/simpress.po
+++ b/source/et/helpcontent2/source/text/simpress.po
@@ -4,8 +4,8 @@ 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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-06 22:58+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 11:40+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462575504.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497786009.000000\n"
#: main0000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"hd_id110120150549176280\n"
"help.text"
msgid "<link href=\"text/simpress/01/03120000.xhp\">Handout</link>"
-msgstr "<link href=\"text/simpress/01/03152000.xhp\">Lehekülje number</link>"
+msgstr "<link href=\"text/simpress/01/03120000.xhp\">Jaotusmaterjal</link>"
#: main0103.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id102720151244263489\n"
"help.text"
msgid "Object Moving Helplines"
-msgstr ""
+msgstr "Abijooned objektide liigutamisel"
#: main0103.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"hd_id102720151246522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Märkused"
#: main0103.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_id102720150112252443\n"
"help.text"
msgid "Show or hide a presentation's annotations."
-msgstr ""
+msgstr "Kuvab esitluse märkmed."
#: main0103.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"hd_id102720151246523444\n"
"help.text"
msgid "Master Background"
-msgstr ""
+msgstr "Juhtslaidide taust"
#: main0103.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id102720150112257941\n"
"help.text"
msgid "Toggle the visibility of a slide master's background to be used as the background of the current slide."
-msgstr ""
+msgstr "Lülitab juhtslaidi tausta näitamist aktiivse slaidi taustana."
#: main0103.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"hd_id102720151246521837\n"
"help.text"
msgid "Master Objects"
-msgstr ""
+msgstr "Juhtelemendid"
#: main0103.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id102720150112256473\n"
"help.text"
msgid "Toggle the visibility of a slide master's objects to appear on the current slide."
-msgstr ""
+msgstr "Lülitab juhtslaidi objektide näitamist aktiivsel slaidil."
#: main0103.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Lõikepildigalerii</link>"
#: main0103.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:FormatMenu\">See menüü sisaldab dokumendi sisu ja paigutuse vormindamiseks mõeldud käske.</ahelp>"
+msgstr "<ahelp hid=\".\">See menüü sisaldab dokumendi sisu ja paigutuse vormindamiseks mõeldud käske.</ahelp>"
#: main0105.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0105.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0105.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Lehekülje paigutus...\">Slaidi kujundus</link>"
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slaidi kujundus</link>"
#: main0105.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3153484\n"
"help.text"
msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Lõhu rühm</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Tühista rühmitamine</link>"
#: main0113.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"hd_id3143233\n"
"help.text"
msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Välju rühmast</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Välju rühmast\">Välju rühmast</link>"
#: main0114.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/04010000.xhp\" name=\"New Page/Slide\">New Page/Slide</link>"
-msgstr "<link href=\"text/simpress/01/04010000.xhp\" name=\"Slide\">Slaid</link>"
+msgstr "<link href=\"text/simpress/01/04010000.xhp\" name=\"New Page/Slide\">Uus leht/slaid</link>"
#: main0200.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"hd_id3156382\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Joone stiil</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Joonestiil</link>"
#: main0202.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3159184\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Joone laius</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Joone jämedus</link>"
#: main0202.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3154645\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0203.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3149984\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0203.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"hd_id3150342\n"
"help.text"
msgid "<link href=\"text/simpress/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
-msgstr "<link href=\"text/simpress/main0210.xhp\" name=\"Joonistusriba\">Joonistusriba</link>"
+msgstr "<link href=\"text/simpress/main0210.xhp\" name=\"Drawing Bar\">Joonistusriba</link>"
#: main0210.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"hd_id3155962\n"
"help.text"
msgid "Select"
-msgstr "Vali"
+msgstr "Valimine"
#: main0210.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "To select more than one object, hold down Shift while you click."
-msgstr "Mitme objekti valimisel tuleb hiirega klõpsamise ajal hoida all Shift klahvi."
+msgstr "Mitme objekti valimisel tuleb hiirega klõpsamise ajal hoida all Shift-klahvi."
#: main0210.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"hd_id3145350\n"
"help.text"
msgid "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaction</link>"
-msgstr "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaktsioon\">Interaktsioon</link>"
+msgstr "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaktsioon</link>"
#: main0211.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"hd_id3154013\n"
"help.text"
msgid "<link href=\"text/simpress/main0211.xhp\" name=\"Outline Bar\">Outline Bar</link>"
-msgstr "<link href=\"text/simpress/main0211.xhp\" name=\"Liigendusriba\">Liigendusriba</link>"
+msgstr "<link href=\"text/simpress/main0211.xhp\" name=\"Outline Bar\">Liigendusriba</link>"
#: main0211.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"hd_id3153912\n"
"help.text"
msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slaidiseanss\">Slaidiseanss</link>"
+msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slaidiseanss</link>"
#: main0212.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"hd_id3153711\n"
"help.text"
msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slaidiseanss\">Slaidiseanss</link>"
+msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slaidiseanss</link>"
#: main0213.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"hd_id3150012\n"
"help.text"
msgid "<link href=\"text/simpress/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
-msgstr "<link href=\"text/simpress/main0213.xhp\" name=\"Säteteriba\">Säteteriba</link>"
+msgstr "<link href=\"text/simpress/main0213.xhp\" name=\"Options Bar\">Säteteriba</link>"
#: main0213.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"hd_id3148700\n"
"help.text"
msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
-msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Tõmbejooned liigutamisel\">Tõmbejooned liigutamisel</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Abijooned liigutamisel</link>"
#: main0213.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id3143233\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Tõmme tõmbejoontele\">Tõmme tõmbejoontele</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Tõmme tõmbejoontele</link>"
#: main0213.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"hd_id3146966\n"
"help.text"
msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
-msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Tõmme lehekülje veeristele\">Tõmme lehekülje veeristele</link>"
+msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Tõmme leheveeristele</link>"
#: main0213.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3156401\n"
"help.text"
msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
-msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Kiirredigeerimine lubatud\">Kiirredigeerimine lubatud</link>"
+msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Kiirredigeerimine lubatud</link>"
#: main0213.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_id3151074\n"
"help.text"
msgid "$[officename] Impress lets you create professional slide shows that can include charts, drawing objects, text, multimedia and a variety of other items. If you want, you can even import and modify Microsoft PowerPoint presentations."
-msgstr "$[officename] Impress võimaldab luua professionaalseid slaidiseansse, mis võivad sisaldada diagramme, joonistusi, teksti, multimeediat ja teisi objekte. Vajadusel saab importida ja muuta Microsoft PowerPoint'i esitlusi."
+msgstr "$[officename] Impress võimaldab luua professionaalseid slaidiseansse, mis võivad sisaldada diagramme, joonistusi, teksti, multimeediat ja teisi objekte. Vajadusel saab importida ja muuta Microsoft PowerPointi esitlusi."
#: main0503.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/smath.po b/source/et/helpcontent2/source/text/smath.po
index f8e5dd87bd2..9914db3b540 100644
--- a/source/et/helpcontent2/source/text/smath.po
+++ b/source/et/helpcontent2/source/text/smath.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2015-11-19 08:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-18 11:45+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447920425.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497786332.000000\n"
#: main0000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"hd_id3153251\n"
"help.text"
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Salvesta kui</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Salvesta kui\">Salvesta kui</link>"
#: main0101.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"hd_id3145826\n"
"help.text"
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printeri sätted</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printeri häälestus</link>"
#: main0102.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"hd_id3155064\n"
"help.text"
msgid "<link href=\"text/smath/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/smath/main0103.xhp\" name=\"Vaade\">Vaade</link>"
+msgstr "<link href=\"text/smath/main0103.xhp\" name=\"View\">Vaade</link>"
#: main0103.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>."
-msgstr ""
+msgstr "Määrab kuvamise mõõtkava ja võimaldab valida, milliseid elemente kuvatakse. Enamikku käskudest, mida saab kirjutada <emph>konsoolile</emph>, on võimalik valida hiirega valemi elementide paneelist, kui see on avatud käsuga <link href=\"text/smath/01/03090000.xhp\" name=\"Vaade - Elemendid\">Vaade - Elemendid</link>."
#: main0103.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"hd_id3149121\n"
"help.text"
msgid "<link href=\"text/smath/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/smath/main0105.xhp\" name=\"Vormindus\">Vormindus</link>"
+msgstr "<link href=\"text/smath/main0105.xhp\" name=\"Format\">Vormindus</link>"
#: main0105.xhp
msgctxt ""
@@ -566,4 +566,4 @@ msgctxt ""
"par_id3148774\n"
"help.text"
msgid "To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements pane, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window."
-msgstr ""
+msgstr "Töö lihtsustamiseks võib kasutada kontekstimenüüsid, mis kutsutakse välja hiire parempoolse nupuga. Eriti kehtib see konsooliakna kohta. Kontekstimenüü sisaldab kõiki käske, mis leiduvad elementide paneelis, samuti ka operaatoreid jms, mida saab valemisse sisestada hiireklõpsu abil, ilma et oleks vaja neid koodina konsooliaknasse kirjutada."
diff --git a/source/et/helpcontent2/source/text/swriter.po b/source/et/helpcontent2/source/text/swriter.po
index ff65642baee..dd5f2af4e64 100644
--- a/source/et/helpcontent2/source/text/swriter.po
+++ b/source/et/helpcontent2/source/text/swriter.po
@@ -3,9 +3,9 @@ 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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-24 11:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 17:51+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464088363.000000\n"
+"X-POOTLE-MTIME: 1497808296.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Document Classification"
-msgstr ""
+msgstr "Dokumendi klassifikatsioon"
#: classificationbar.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3156324\n"
"help.text"
msgid "<variable id=\"classdoc\"><link href=\"text/swriter/classificationbar.xhp\" name=\"Document Classification\">Document Classification</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"classdoc\"><link href=\"text/swriter/classificationbar.xhp\" name=\"Document Classification\">Dokumendi klassifikatsioon</link></variable>"
#: classificationbar.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"bm_id030820161847569710\n"
"help.text"
msgid "<bookmark_value>classification;BAILS levels</bookmark_value> <bookmark_value>classification;BAF category</bookmark_value> <bookmark_value>classification;security levels</bookmark_value> <bookmark_value>classification;document</bookmark_value> <bookmark_value>classification;classification bar</bookmark_value> <bookmark_value>document;classification</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>klassifikatsioon;BAILS-tasemed</bookmark_value> <bookmark_value>klassifikatsioon;BAF-kategooria</bookmark_value> <bookmark_value>klassifikatsioon;turvatasemed</bookmark_value> <bookmark_value>klassifikatsioon;dokument</bookmark_value> <bookmark_value>klassifikatsioon;klassifikatsiooniriba</bookmark_value> <bookmark_value>dokument;klassifikatsioon</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"hd_id030820161800093929\n"
"help.text"
msgid "BAF Categories"
-msgstr ""
+msgstr "BAF-kategooriad"
#: classificationbar.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"bm_id030820161856432825\n"
"help.text"
msgid "<bookmark_value>classification;displayed in user interface</bookmark_value> <bookmark_value>classification;headers and footers</bookmark_value> <bookmark_value>classification;watermark</bookmark_value> <bookmark_value>classification;categories</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>klassifikatsioon;kuvamine kasutajaliideses</bookmark_value> <bookmark_value>klassifikatsioon;päised ja jalused</bookmark_value> <bookmark_value>klassifikatsioon;vesimärk</bookmark_value> <bookmark_value>klassifikatsioon;kategooriad</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "Intellectual Property"
-msgstr ""
+msgstr "Intellektuaalomand"
#: classificationbar.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_idN106CD\n"
"help.text"
msgid "National Security"
-msgstr ""
+msgstr "Riiklik julgeolek"
#: classificationbar.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_idN106EA\n"
"help.text"
msgid "Export Control"
-msgstr ""
+msgstr "Ekspordikontroll"
#: classificationbar.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"bm_id030820161849574719\n"
"help.text"
msgid "<bookmark_value>classification levels;Internal use only</bookmark_value> <bookmark_value>classification levels;Confidential</bookmark_value> <bookmark_value>classification levels;General Business</bookmark_value> <bookmark_value>classification levels;Non-Business</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>klassifikatsioonitasemed;Ainult sisekasutuseks</bookmark_value> <bookmark_value>classification levels;Konfidentsiaalne</bookmark_value> <bookmark_value>classification levels;Üldäriline</bookmark_value> <bookmark_value>classification levels;Mitteäriline</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"bm_id030820161851045883\n"
"help.text"
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>kohandamine;klassifikatsioonitasemed</bookmark_value> <bookmark_value>klassifikatsioonitasemed;kohandamine</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"bm_id030820161851512902\n"
"help.text"
msgid "<bookmark_value>document classification;pasting contents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumendi klassifikatsioon;sisu kopeerimine</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"hd_id3150342\n"
"help.text"
msgid "<link href=\"text/swriter/classificationbar.xhp\" name=\"Classification Bar\">Classification Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/classificationbar.xhp\" name=\"Classification Bar\">Klassifikatsiooni tööriistariba</link>"
#: classificationbar.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"bm_id030820161853495457\n"
"help.text"
msgid "<bookmark_value>Classification toolbar;display</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>klassifikatsiooni tööriistariba;kuvamine</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3150202\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Classification</emph> bar contains tools to help secure document handling.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><emph>Klassifikatsiooniriba</emph> sisaldab vahendeid dokumendihalduse turvamiseks.</ahelp>"
#: classificationbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id030820161754175408\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars </item>and select <item type=\"menuitem\">Classification</item>"
-msgstr ""
+msgstr "Vali <item type=\"menuitem\">Vaade - Tööriistaribad - Klassifikatsioon</item>"
#: classificationbar.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id030820161818081317\n"
"help.text"
msgid "<link href=\"http://www.tscp.org/about-tscp/\"><item type=\"acronym\">TSCP</item> (Transglobal Secure Collaboration Participation, Inc.) website</link>."
-msgstr ""
+msgstr "<link href=\"http://www.tscp.org/about-tscp/\"><item type=\"acronym\">TSCP</item> (Transglobal Secure Collaboration Participation, Inc.) veebisait</link>"
#: classificationbar.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id030820161818082152\n"
"help.text"
msgid "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAFv1.pdf\">Business Authentication Framework (<item type=\"acronym\">BAF</item>) document (PDF)</link>"
-msgstr ""
+msgstr "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAFv1.pdf\">Ärilise autentimisraamistiku (Business Authentication Framework, <item type=\"acronym\">BAF</item>) dokument (PDF)</link>"
#: classificationbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id030820161818085901\n"
"help.text"
msgid "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAILSv1.pdf\">Business Authorization Identification and Labeling Scheme (<item type=\"acronym\">BAILS</item>) document (PDF)</link>"
-msgstr ""
+msgstr "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAILSv1.pdf\">Ärilise autoriseerimisidentimise ja sildistamise skeemi (Business Authorization Identification and Labeling Scheme, <item type=\"acronym\">BAILS</item>) dokument (PDF)</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Toolbar"
-msgstr ""
+msgstr "Kirjakooste tööriistariba"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"hd_id201703240024554113\n"
"help.text"
msgid "<link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/mailmergetoolbar.xhp\">Kirjakooste tööriistariba</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id201703240025596148\n"
"help.text"
msgid "The Mail Merge Toolbar contains commands for the final steps of the mail merge process."
-msgstr ""
+msgstr "Kirjakooste tööriistariba sisaldab käske, mida on vaja kirjakoosteprotsessi viimaste sammude jaoks."
#: mailmergetoolbar.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id030820161754175468\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars</item> and select <item type=\"menuitem\">Mail Merge</item>"
-msgstr ""
+msgstr "Vali <item type=\"menuitem\">Vaade - Tööriistaribad - Kirjakooste</item>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "(Recipient number)"
-msgstr ""
+msgstr "(Adressaadi number)"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the address record number of a recipient to preview the mail merge document for the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sisesta aadressikirje number, mis vastab adressaadile, kellele saadetava kirja eelvaadet kuvada.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Use the browse buttons to scroll through the address records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Kasuta kerimisnuppe aadressikirjete läbivaatamiseks.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "Exclude recipient"
-msgstr ""
+msgstr "Adressaat jäetakse kõrvale"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<ahelp hid=\".\">Excludes the current recipient from this mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Jätab aktiivse adressaadi sellest kirjakoostest välja.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "Edit Individual Documents"
-msgstr ""
+msgstr "Redigeeri üksikuid dokumente"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a single merged document with page breaks between each recipient.</ahelp> The names and the addresses of the recipients are contained in the document, which can be customized as needed."
-msgstr ""
+msgstr "<ahelp hid=\".\">Loob ühe liidetud dokumendi, kus iga adressaadi kirja vahel on leheküljepiir.</ahelp> Dokument sisaldab adressaatide nimesid ja aadresse, mida saab vastavalt vajadusele muuta."
#: main0000.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id3149183\n"
"help.text"
msgid "Getting Help"
-msgstr "Kust saada abi"
+msgstr "Kust saada abi?"
#: main0100.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"hd_id3147274\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\" name=\"Menüüd\">Menüüd</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\" name=\"Menus\">Menüüd</link></variable>"
#: main0100.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id102920150120456626\n"
"help.text"
msgid "<link href=\"text/swriter/02/18130000.xhp\" name=\"Direct Cursor Mode\">Direct Cursor Mode</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/02/18130000.xhp\" name=\"Direct Cursor Mode\">Otsese kursori režiim</link>"
#: main0102.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id102920150120455108\n"
"help.text"
msgid "Go to Page"
-msgstr ""
+msgstr "Mine leheküljele"
#: main0102.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"hd_id3147233\n"
"help.text"
msgid "<link href=\"text/swriter/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/swriter/main0103.xhp\" name=\"Vaade\">Vaade</link>"
+msgstr "<link href=\"text/swriter/main0103.xhp\" name=\"View\">Vaade</link>"
#: main0103.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id102720150703473580\n"
"help.text"
msgid "<link href=\"text/swriter/01/03130000.xhp\">Normal</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\">Sordi</link>"
+msgstr "<link href=\"text/swriter/01/03130000.xhp\">Normaalvaade</link>"
#: main0103.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id102720150703478401\n"
"help.text"
msgid "<link href=\"text/swriter/01/03120000.xhp\">Web</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\">Sordi</link>"
+msgstr "<link href=\"text/swriter/01/03120000.xhp\">Veebivaade</link>"
#: main0103.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"hd_id102720150854015048\n"
"help.text"
msgid "Scrollbars"
-msgstr ""
+msgstr "Kerimisribad"
#: main0103.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id102720150854017277\n"
"help.text"
msgid "Show or hide the horizontal and vertical scroll bars that are used to change the viewable area of a document that doesn't fit within the window."
-msgstr ""
+msgstr "Kuvab või peidab horisontaalse ja vertikaalse kerimisriba, mida kasutatakse dokumendi parajasti nähtava osa muutmiseks."
#: main0103.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_idN107CA\n"
"help.text"
msgid "Shows or hides the borders of table cells that have no set borders. The boundaries are only visible on screen and are not printed."
-msgstr ""
+msgstr "Kuvab või peidab joonestiku selliste tabelilahtrite ümber, millele pole määratud ääriseid. Joonestik on nähtav ainult ekraanil, seda ei prindita."
#: main0103.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"hd_id102720150854011929\n"
"help.text"
msgid "Images and Charts"
-msgstr ""
+msgstr "Pildid ja diagrammid"
#: main0103.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id102720150854013292\n"
"help.text"
msgid "Show or hide graphical objects like images and charts within a document."
-msgstr ""
+msgstr "Kuvab või peidab dokumendi graafilised elemendid, nagu pildid ja diagrammid."
#: main0103.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"hd_id102720150854019880\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Märkused"
#: main0103.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id102720150854014989\n"
"help.text"
msgid "Show or hide a document's comments and replies to them."
-msgstr ""
+msgstr "Kuvab või peidab dokumendis leiduvad märkused ja nende vastused."
#: main0103.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id102720150854018740\n"
"help.text"
msgid "Hide Whitespace"
-msgstr ""
+msgstr "Tühja ruumi peitmine"
#: main0103.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id102720150854012820\n"
"help.text"
msgid "View documents with the white space found at the end and beginning of pages hidden."
-msgstr ""
+msgstr "Kuvab dokumendi nii, et tühi ruum lehekülgede algul ja lõpul on peidetud."
#: main0103.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id03302017034826145\n"
"help.text"
msgid "Track Changes"
-msgstr ""
+msgstr "Muudatuste jälitamine"
#: main0103.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galerii</link>"
#: main0103.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id3147265\n"
"help.text"
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Suurendus\">Suurendus</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Suurendus</link>"
#: main0104.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "<link href=\"text/swriter/main0104.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/swriter/main0104.xhp\" name=\"Lisamine\">Lisamine</link>"
+msgstr "<link href=\"text/swriter/main0104.xhp\" name=\"Insert\">Lisamine</link>"
#: main0104.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3155358\n"
"help.text"
msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements in your document. This includes images, media, charts, objects from other applications, hyperlink, comments, symbols, footnotes, and sections.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Menüü Lisamine sisaldab käske dokumenti uute elementide lisamiseks. Nende all on mõeldud pilte, multimeediat, diagramme, objekte teistest rakendustest, hüperlinke, märkusi, erimärke, allmärkusi ja sektsioone.</ahelp>"
#: main0104.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id030420160850525240\n"
"help.text"
msgid "Page Break"
-msgstr ""
+msgstr "Leheküljepiir"
#: main0104.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id030420160850533104\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertPagebreak\">Inserts a manual page break at the current cursor position and places the cursor at the beginning of the next page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertPagebreak\">Lisab kursori asukohta leheküljepiiri ja viib siis kursori järgmise lehekülje algusesse.</ahelp>"
#: main0104.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3158442\n"
"help.text"
msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Image\">Image</link>"
-msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Pilt\">Pilt</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Image\">Pilt</link>"
#: main0104.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id030720160706334584\n"
"help.text"
msgid "<link href=\"text/shared/02/01140000.xhp#textbox_title\" name=\"Textbox\">Textbox</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/01140000.xhp#textbox_title\" name=\"Textbox\">Tekstikast</link>"
#: main0104.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3147281\n"
"help.text"
msgid "<link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Bookmark</link>"
-msgstr "<link href=\"text/swriter/01/04040000.xhp\" name=\"Järjehoidja\">Järjehoidja</link>"
+msgstr "<link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Järjehoidja</link>"
#: main0104.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id030420161125315689\n"
"help.text"
msgid "Horizontal Line"
-msgstr ""
+msgstr "Rõhtjoon"
#: main0104.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id030420161125315647\n"
"help.text"
msgid "Inserts a horizontal line at the current cursor position."
-msgstr ""
+msgstr "Lisab kursori asukohta rõhtjoone."
#: main0104.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3149428\n"
"help.text"
msgid "<link href=\"text/swriter/01/04190000.xhp\" name=\"File\">Document</link>"
-msgstr "<link href=\"text/swriter/01/04190000.xhp\" name=\"Fail\">Fail</link>"
+msgstr "<link href=\"text/swriter/01/04190000.xhp\" name=\"File\">Dokument</link>"
#: main0104.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3147595\n"
"help.text"
msgid "<link href=\"text/swriter/01/04200000.xhp\" name=\"Script\">Script</link>"
-msgstr "<link href=\"text/swriter/01/04200000.xhp\" name=\"Skript\">Skript</link>"
+msgstr "<link href=\"text/swriter/01/04200000.xhp\" name=\"Script\">Skript</link>"
#: main0105.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id3147820\n"
"help.text"
msgid "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/swriter/main0105.xhp\" name=\"Vormindus\">Vormindus</link>"
+msgstr "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Vormindus</link>"
#: main0105.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id3147261\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0105.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3147286\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0105.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"hd_id3145784\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Nummerdus ja täpid\">Nummerdus ja täpid</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Nummerdus ja täpid</link>"
#: main0105.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"hd_id3145692\n"
"help.text"
msgid "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">Page</link>"
-msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Lehekülg\">Lehekülg</link>"
+msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">Lehekülg</link>"
#: main0105.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"hd_id3145743\n"
"help.text"
msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Veerud\">Veerud</link>"
+msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Veerud</link>"
#: main0105.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3145717\n"
"help.text"
msgid "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sections</link>"
-msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sektsioonid\">Sektsioonid</link>"
+msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sektsioonid</link>"
#: main0105.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3149910\n"
"help.text"
msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Frame</link>"
-msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Paneel\">Paneel</link>"
+msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Paneel</link>"
#: main0105.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"hd_id3149935\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
-msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Pilt\">Pilt</link>"
+msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Pilt</link>"
#: main0106.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Numberliigendus</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"hd_id3147248\n"
"help.text"
msgid "<link href=\"text/swriter/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/swriter/main0107.xhp\" name=\"Aken\">Aken</link>"
+msgstr "<link href=\"text/swriter/main0107.xhp\" name=\"Window\">Aken</link>"
#: main0107.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_idN105AF\n"
"help.text"
msgid "Delete"
-msgstr "Kustuta"
+msgstr "Kustutamine"
#: main0110.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_idN1060A\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the current table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Kustutab aktiivse tabeli.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_idN105B3\n"
"help.text"
msgid "Select"
-msgstr "Vali"
+msgstr "Valimine"
#: main0110.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_idN10638\n"
"help.text"
msgid "<ahelp hid=\".\">Selects the current cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Valib aktiivse lahtri.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_idN106BB\n"
"help.text"
msgid "<link href=\"text/swriter/01/05120200.xhp\">Optimal Column Width</link>"
-msgstr "<link href=\"text/swriter/01/05120200.xhp\">Optimaalne veeru laius</link>"
+msgstr "<link href=\"text/swriter/01/05120200.xhp\">Optimaalne veerulaius</link>"
#: main0110.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_idN106EF\n"
"help.text"
msgid "<link href=\"text/swriter/01/05110200.xhp\">Optimal Row Height</link>"
-msgstr "<link href=\"text/swriter/01/05110200.xhp\">Optimaalne rea kõrgus</link>"
+msgstr "<link href=\"text/swriter/01/05110200.xhp\">Optimaalne reakõrgus</link>"
#: main0110.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_idN1071D\n"
"help.text"
msgid "Break Across Pages"
-msgstr ""
+msgstr "Reamurdmine leheküljepiiridel"
#: main0110.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_idN10720\n"
"help.text"
msgid "Allows a page break within the current row."
-msgstr ""
+msgstr "Lubab leheküljevahetust aktiivses reas."
#: main0110.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_idN105FF\n"
"help.text"
msgid "Repeat Heading Rows"
-msgstr ""
+msgstr "Päiseridade kordamine"
#: main0110.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_idN1072D\n"
"help.text"
msgid "<ahelp hid=\".\">Repeats the table headers on subsequent pages if the table spans one or more pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Kordab tabeli päiseid järjestikustel lehtedel, kui tabel ulatub mitmele lehele.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3145782\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\" name=\"Tööriistaribad\">Tööriistaribad</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\" name=\"Toolbars\">Tööriistaribad</link></variable>"
#: main0200.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"hd_id3149593\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Fondi värv\">Fondi värv</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Fondi värv</link>"
#: main0202.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"hd_id3149887\n"
"help.text"
msgid "Additional icons"
-msgstr "Täiendavad nupud"
+msgstr "Lisaikoonid"
#: main0202.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"par_id3149900\n"
"help.text"
msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
-msgstr "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> toetus on aktiivne, kaks lisanuppu on nähtavad."
+msgstr "Kui <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link>-i toetus on sisse lülitatud, on näha kaks lisaikooni."
#: main0202.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id3149964\n"
"help.text"
msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
-msgstr "<ahelp hid=\".uno:ParaLeftToRight\">Tekst sisestatakse vasakult paremale.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaLeftToRight\">Teksti sisestatakse vasakult paremale.</ahelp>"
#: main0202.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id3147625\n"
"help.text"
msgid "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
-msgstr "<ahelp hid=\".uno:ParaRightToLeft\">Keeruka kirjasüsteemiga keeltes toimub teksti sisestamine paremalt vasakule.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaRightToLeft\">Keeruka kirjasüsteemiga keele teksti sisestatakse paremalt vasakule.</ahelp>"
#: main0203.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"hd_id3147592\n"
"help.text"
msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Lahtrite ühendamine</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Ühenda lahtrid</link>"
#: main0204.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"hd_id3154275\n"
"help.text"
msgid "<link href=\"text/swriter/main0205.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
-msgstr "<link href=\"text/swriter/main0205.xhp\" name=\"Joonistusobjekti omaduste riba\">Joonistusobjekti omaduste riba</link>"
+msgstr "<link href=\"text/swriter/main0205.xhp\" name=\"Drawing Object Properties Bar\">Joonistusobjekti omaduste riba</link>"
#: main0205.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"hd_id3147784\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Joone stiil</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Joonestiil</link>"
#: main0205.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"hd_id3147818\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Joone laius</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Joone jämedus</link>"
#: main0205.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"hd_id3154256\n"
"help.text"
msgid "<link href=\"text/swriter/main0206.xhp\" name=\"Bullets and Numbering Bar\">Bullets and Numbering Bar</link>"
-msgstr "<link href=\"text/swriter/main0206.xhp\" name=\"Number- ja täpploendite riba\">Number- ja täpploendite riba</link>"
+msgstr "<link href=\"text/swriter/main0206.xhp\" name=\"Bullets and Numbering Bar\">Number- ja täpploendite riba</link>"
#: main0206.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id7723929\n"
"help.text"
msgid "Three controls on the Writer Status Bar allow you to change the zoom and view layout of your text documents."
-msgstr "Kolm Writeri olekuriba juhtelementi võimaldavad muuta sinu tekstidokumentide suurendust ja vaate paigutust."
+msgstr "Kolm Writeri olekuriba juhtelementi võimaldavad muuta tekstidokumentide suurendust ja vaate paigutust."
#: main0208.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/> You can also choose this setting on the <emph>Wrap</emph> tab page."
-msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/> Seda sätet saab määrata ka kaardil <emph>Mähkimine</emph>."
+msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/>Selle sätte valimiseks võib kasutada ka kaarti <emph>Mähkimine</emph>."
#: main0216.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"hd_id3155366\n"
"help.text"
msgid "<link href=\"text/swriter/main0220.xhp\" name=\"Text Object Bar\">Text Object Bar</link>"
-msgstr "<link href=\"text/swriter/main0220.xhp\" name=\"Tekstiobjekti riba\">Tekstiobjekti riba</link>"
+msgstr "<link href=\"text/swriter/main0220.xhp\" name=\"Text Object Bar\">Tekstiobjektide riba</link>"
#: main0220.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"hd_id3153416\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Ülakiri\">Ülakiri</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Ülakiri</link>"
#: main0220.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"hd_id3147787\n"
"help.text"
msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Alakiri\">Alakiri</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Alakiri</link>"
#: main0220.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"hd_id3147265\n"
"help.text"
msgid "<link href=\"text/shared/01/02090000.xhp\" name=\"Select All\">Select All</link>"
-msgstr "<link href=\"text/shared/01/02090000.xhp\" name=\"Vali kõik\">Vali kõik</link>"
+msgstr "<link href=\"text/shared/01/02090000.xhp\" name=\"Select All\">Vali kõik</link>"
#: main0220.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"hd_id3145596\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Märk\">Märk</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Märk</link>"
#: main0220.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"hd_id3145631\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Lõik\">Lõik</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Lõik</link>"
#: main0220.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3147797\n"
"help.text"
msgid "$[officename] Writer also includes such useful features as a <link href=\"text/shared/01/06010000.xhp\" name=\"spellchecker\">spellchecker</link>, a <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"thesaurus\">thesaurus</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link>, and <link href=\"text/swriter/01/06030000.xhp\" name=\"Hyphenation\">hyphenation</link> as well as a variety of templates for almost every purpose. You can also create your own templates using the wizards."
-msgstr "Lisaks sisaldab $[officename] Writer selliseid kasulikke funktsioone nagu <link href=\"text/shared/01/06010000.xhp\" name=\"õigekirja kontroll\">õigekirja kontroll</link>, <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"tesaurus\">tesaurus</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"automaatkorrektuur\">automaatkorrektuur</link> ja <link href=\"text/swriter/01/06030000.xhp\" name=\"poolitamine\">poolitamine</link>, aga ka dokumendimalle peaaegu igaks otstarbeks. Nõustajate abil on võimalik luua ka isiklikke dokumendimalle."
+msgstr "Lisaks sisaldab $[officename] Writer selliseid kasulikke funktsioone nagu <link href=\"text/shared/01/06010000.xhp\" name=\"õigekirja kontroll\">õigekirja kontroll</link>, <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"tesaurus\">tesaurus</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"automaatkorrektuur\">automaatkorrektuur</link> ja <link href=\"text/swriter/01/06030000.xhp\" name=\"poolitamine\">poolitamine</link>, aga ka dokumendimalle mitmeks otstarbeks. Nõustajate abil on võimalik luua ka isiklikke dokumendimalle."
#: main0503.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/00.po b/source/et/helpcontent2/source/text/swriter/00.po
index d1886bea8d3..3e40a6d6781 100644
--- a/source/et/helpcontent2/source/text/swriter/00.po
+++ b/source/et/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 11:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Vali <emph>Tööriistad - Numberliigendus</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Vali <emph>Tööriistad - Numberliigendus -</emph> kaart <emph>Nummerdus</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Vali <emph>Tööriistad - Reanummerdus</emph> (välja arvatud HTML-vormingu puhul) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/01.po b/source/et/helpcontent2/source/text/swriter/01.po
index 1d7f9855f5a..e83ca275347 100644
--- a/source/et/helpcontent2/source/text/swriter/01.po
+++ b/source/et/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 03:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Lisab peatükinumbri. Pealkirjastiilile peatükinummerduse määramiseks vali <emph>Tööriistad - Numberliigendus</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numberliigendus"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numberliigendus"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,15 +21373,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Kui soovid nummerdatud päiseid, kasuta lõigustiilile nummerduse määramiseks menüükäsku <emph>Tööriistad - Numberliigendus</emph>. Ära kasuta vormindusriba ikooni Nummerdus."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Vali lõigustiil, mida soovid valitud liigendustasemele omistada.</ahelp> Klõpsates \"Puudub\" valitud liigendustaset ei kirjeldata."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Uus aadressikast"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Uus aadressikast"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Aadressi elemendid"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Lohista aadressielement allpool olevale väljale"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index dbaf87a4199..ea7eb1efa5b 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 03:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Navigaator võimaldab tõsta pealkirju ja neile järgnevat teksti dokumendis ette- ja tahapoole, samuti muuta pealkirjatasemeid. Navigaatori pakutavate võimaluste rakendamiseks peaks dokumendis pealkirjade stiilidena olema kasutatud eelloodud pealkirjastiile. Kasutaja poolt loodud stiilide kasutamiseks pealkirjastiilidena vali menüükäsk <emph>Tööriistad - Numberliigendus</emph>, avaneva dialoogi loendiboksist <emph>Lõigustiil</emph> vali soovitud stiil ning seejärel tee topeltklõps tasemenumbril loendiboksis <emph>Tase</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numberliigendus"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>liigendus; nummerdus</bookmark_value> <bookmark_value>kustutamine; pealkirjanumbrid</bookmark_value> <bookmark_value>peatükkide nummerdus</bookmark_value> <bookmark_value>pealkirjad; nummerdus/lõigustiilid</bookmark_value> <bookmark_value>nummerdus; pealkirjad</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numberliigendus\">Numberliigendus</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Pealkirjade hierarhiat saab muuta, samuti saab hierarhiasse lisada kohandatud lõigustiili. Pealkirjastiilidele võib omistada ka peatüki- ja sektsiooninummerduse. Vaikimisi on hierarhias esikohal lõigustiil \"Pealkiri 1\"."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vali <item type=\"menuitem\">Tööriistad - Numberliigendus</item> ja seejärel klõpsa kaardil <item type=\"menuitem\">Nummerdus</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Pealkirjalõigult automaatse numberliigenduse eemaldamine"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vali <item type=\"menuitem\">Tööriistad - Numberliigendus</item> ja seejärel klõpsa kaardil <item type=\"menuitem\">Nummerdus</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Enne kui lisada päisesse või jalusesse peatüki info, tuleb määrata numberliigenduse sätted lõigustiili jaoks, mida soovid peatükipealkirjade tarbeks kasutada."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Vali <emph>Tööriistad - Numberliigendus</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>registrid; kirjete määramine</bookmark_value> <bookmark_value>sisukorrad; kirjete määramine</bookmark_value> <bookmark_value>kirjed; määramine registrites/sisukordades</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Vali <emph>Lisamine - Registrid ja sisukorrad - Kirje</emph> ja tee üht järgmistest."
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Kui soovid sisukorrakirjena erinevat lõigustiili kasutada, märgi alal <item type=\"menuitem\">Loomiskoht</item> ruut <item type=\"menuitem\">Lisastiilid</item> ja seejärel klõpsa märkeruudu kõrval nupul (<item type=\"menuitem\">...</item>). Klõpsa dialoogi <item type=\"menuitem\">Stiilide määramine</item> loendis stiilil ja seejärel klõpsa lõigustiili liigendustaseme määramiseks nupul <item type=\"menuitem\">>></item> või <item type=\"menuitem\"><<</item> ."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>nummerdus; eemaldamine/katkestamine</bookmark_value> <bookmark_value>täpploendid; katkestamine</bookmark_value> <bookmark_value>loendid; nummerduse eemaldamine/katkestamine</bookmark_value> <bookmark_value>kustutamine; numbrid loendites</bookmark_value> <bookmark_value>katkestamine; nummerdatud loendite katkestamine</bookmark_value> <bookmark_value>muutmine; algusnumber loendites</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Kui soovid nummerdatud päiseid, kasuta lõigustiilile nummerdamise määramiseks menüükäsku <emph>Tööriistad - Numberliigendus</emph>. Ära kasuta vormindusriba ikooni Nummerdamine."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
index 70dfe7b6716..ead3f68d584 100644
--- a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:00+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-17 22:03+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496790036.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497737009.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Vali teema"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Lisa..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -16061,7 +16178,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contrast"
-msgstr "Kontrast"
+msgstr "Kontrastsus"
#: GenericCommands.xcu
msgctxt ""
@@ -20104,7 +20221,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Symbol"
-msgstr "Sümbol"
+msgstr "Erimärk"
#: GenericCommands.xcu
msgctxt ""
@@ -21454,7 +21571,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Extrusion"
-msgstr "Venitamine"
+msgstr "Lülita ruumilisust"
#: GenericCommands.xcu
msgctxt ""
@@ -21535,7 +21652,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Extrusion"
-msgstr "Venitamine"
+msgstr "Ruumilisus"
#: GenericCommands.xcu
msgctxt ""
@@ -21544,7 +21661,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Extrusion Depth"
-msgstr "Venitamise sügavus"
+msgstr "Ruumilisuse sügavus"
#: GenericCommands.xcu
msgctxt ""
@@ -23479,7 +23596,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "O~perators"
-msgstr "Tehtemärgid"
+msgstr "Operaatorid"
#: MathCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Omadused..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Objekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Reamurdmine leheküljepiiridel"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Täpploend"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Nummerdatud loend"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Rooma numbritega loend"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/et/reportdesign/uiconfig/dbreport/ui.po b/source/et/reportdesign/uiconfig/dbreport/ui.po
index a0ceef63982..b8078bc7340 100644
--- a/source/et/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/et/reportdesign/uiconfig/dbreport/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-06-05 20:41+0000\n"
+"PO-Revision-Date: 2017-06-14 19:03+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695280.000000\n"
+"X-POOTLE-MTIME: 1497467000.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Kustuta"
#: pagedialog.ui
msgctxt ""
diff --git a/source/et/sc/source/core/src.po b/source/et/sc/source/core/src.po
index bca3578e6e9..df0aca26b37 100644
--- a/source/et/sc/source/core/src.po
+++ b/source/et/sc/source/core/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-05-01 21:42+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-14 18:47+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462138976.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497466076.000000\n"
#: compiler.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"Database\n"
"itemlist.text"
msgid "Database"
-msgstr ""
+msgstr "Andmebaas"
#: compiler.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"Date&Time\n"
"itemlist.text"
msgid "Date&Time"
-msgstr ""
+msgstr "Kuupäev ja kellaaeg"
#: compiler.src
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"Financial\n"
"itemlist.text"
msgid "Financial"
-msgstr ""
+msgstr "Rahandus"
#: compiler.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"Information\n"
"itemlist.text"
msgid "Information"
-msgstr ""
+msgstr "Teave"
#: compiler.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"Logical\n"
"itemlist.text"
msgid "Logical"
-msgstr ""
+msgstr "Loogika"
#: compiler.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Mathematical\n"
"itemlist.text"
msgid "Mathematical"
-msgstr ""
+msgstr "Matemaatika"
#: compiler.src
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"Array\n"
"itemlist.text"
msgid "Array"
-msgstr ""
+msgstr "Massiiv"
#: compiler.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"Statistical\n"
"itemlist.text"
msgid "Statistical"
-msgstr ""
+msgstr "Statistika"
#: compiler.src
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"Spreadsheet\n"
"itemlist.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Arvutustabel"
#: compiler.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"Text\n"
"itemlist.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: compiler.src
msgctxt ""
@@ -113,4 +113,4 @@ msgctxt ""
"Add-in\n"
"itemlist.text"
msgid "Add-in"
-msgstr ""
+msgstr "Lisafunktsioonid"
diff --git a/source/et/sc/source/ui/StatisticsDialogs.po b/source/et/sc/source/ui/StatisticsDialogs.po
index c4f2c09b47d..55b82943db8 100644
--- a/source/et/sc/source/ui/StatisticsDialogs.po
+++ b/source/et/sc/source/ui/StatisticsDialogs.po
@@ -4,8 +4,8 @@ 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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-01-22 18:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-14 18:58+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1453487215.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497466733.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MOVING_AVERAGE_UNDO_NAME\n"
"string.text"
msgid "Moving Average"
-msgstr ""
+msgstr "Libisev keskmine"
#: StatisticsDialogs.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_EXPONENTIAL_SMOOTHING_UNDO_NAME\n"
"string.text"
msgid "Exponential Smoothing"
-msgstr ""
+msgstr "Eksponentsilumine"
#: StatisticsDialogs.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_ANALYSIS_OF_VARIANCE_UNDO_NAME\n"
"string.text"
msgid "Analysis of Variance"
-msgstr ""
+msgstr "Dispersioonianalüüs"
#: StatisticsDialogs.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_ANOVA_SINGLE_FACTOR_LABEL\n"
"string.text"
msgid "ANOVA - Single Factor"
-msgstr ""
+msgstr "ANOVA - üks tegur"
#: StatisticsDialogs.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_ANOVA_TWO_FACTOR_LABEL\n"
"string.text"
msgid "ANOVA - Two Factor"
-msgstr ""
+msgstr "ANOVA - kaks tegurit"
#: StatisticsDialogs.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_ANOVA_LABEL_GROUPS\n"
"string.text"
msgid "Groups"
-msgstr ""
+msgstr "Rühmad"
#: StatisticsDialogs.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_ANOVA_LABEL_BETWEEN_GROUPS\n"
"string.text"
msgid "Between Groups"
-msgstr ""
+msgstr "Rühmade vahel"
#: StatisticsDialogs.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_ANOVA_LABEL_WITHIN_GROUPS\n"
"string.text"
msgid "Within Groups"
-msgstr ""
+msgstr "Rühmade sees"
#: StatisticsDialogs.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_ANOVA_LABEL_SOURCE_OF_VARIATION\n"
"string.text"
msgid "Source of Variation"
-msgstr ""
+msgstr "Variatsiooniallikas"
#: StatisticsDialogs.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_ANOVA_LABEL_SS\n"
"string.text"
msgid "SS"
-msgstr ""
+msgstr "SS"
#: StatisticsDialogs.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_ANOVA_LABEL_DF\n"
"string.text"
msgid "df"
-msgstr ""
+msgstr "df"
#: StatisticsDialogs.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_ANOVA_LABEL_MS\n"
"string.text"
msgid "MS"
-msgstr ""
+msgstr "MS"
#: StatisticsDialogs.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_ANOVA_LABEL_F\n"
"string.text"
msgid "F"
-msgstr ""
+msgstr "F"
#: StatisticsDialogs.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_ANOVA_LABEL_P_VALUE\n"
"string.text"
msgid "P-value"
-msgstr ""
+msgstr "P-väärtus"
#: StatisticsDialogs.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_ANOVA_LABEL_F_CRITICAL\n"
"string.text"
msgid "F critical"
-msgstr ""
+msgstr "F-statistiku kriitiline väärtus"
#: StatisticsDialogs.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"STR_ANOVA_LABEL_TOTAL\n"
"string.text"
msgid "Total"
-msgstr ""
+msgstr "Kokku"
#: StatisticsDialogs.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"STR_CORRELATION_UNDO_NAME\n"
"string.text"
msgid "Correlation"
-msgstr ""
+msgstr "Korrelatsioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_CORRELATION_LABEL\n"
"string.text"
msgid "Correlations"
-msgstr ""
+msgstr "Korrelatsioonid"
#: StatisticsDialogs.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"STR_COVARIANCE_UNDO_NAME\n"
"string.text"
msgid "Covariance"
-msgstr ""
+msgstr "Kovariatsioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"STR_COVARIANCE_LABEL\n"
"string.text"
msgid "Covariances"
-msgstr ""
+msgstr "Kovariatsioonid"
#: StatisticsDialogs.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"STR_DESCRIPTIVE_STATISTICS_UNDO_NAME\n"
"string.text"
msgid "Descriptive Statistics"
-msgstr ""
+msgstr "Kirjeldav statistika"
#: StatisticsDialogs.src
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"STRID_CALC_MEAN\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Keskmine"
#: StatisticsDialogs.src
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"STRID_CALC_STD_ERROR\n"
"string.text"
msgid "Standard Error"
-msgstr ""
+msgstr "Standardviga"
#: StatisticsDialogs.src
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"STRID_CALC_MODE\n"
"string.text"
msgid "Mode"
-msgstr ""
+msgstr "Mood"
#: StatisticsDialogs.src
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"STRID_CALC_MEDIAN\n"
"string.text"
msgid "Median"
-msgstr ""
+msgstr "Mediaan"
#: StatisticsDialogs.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"STRID_CALC_VARIANCE\n"
"string.text"
msgid "Variance"
-msgstr ""
+msgstr "Dispersioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"STRID_CALC_STD_DEVIATION\n"
"string.text"
msgid "Standard Deviation"
-msgstr ""
+msgstr "Standardhälve"
#: StatisticsDialogs.src
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"STRID_CALC_KURTOSIS\n"
"string.text"
msgid "Kurtosis"
-msgstr ""
+msgstr "Järsakus"
#: StatisticsDialogs.src
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"STRID_CALC_SKEWNESS\n"
"string.text"
msgid "Skewness"
-msgstr ""
+msgstr "Asümmeetria"
#: StatisticsDialogs.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STRID_CALC_RANGE\n"
"string.text"
msgid "Range"
-msgstr ""
+msgstr "Vahemik"
#: StatisticsDialogs.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"STRID_CALC_MIN\n"
"string.text"
msgid "Minimum"
-msgstr ""
+msgstr "Miinimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STRID_CALC_MAX\n"
"string.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"STRID_CALC_SUM\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: StatisticsDialogs.src
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"STRID_CALC_COUNT\n"
"string.text"
msgid "Count"
-msgstr ""
+msgstr "Arv"
#: StatisticsDialogs.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"STRID_CALC_FIRST_QUARTILE\n"
"string.text"
msgid "First Quartile "
-msgstr ""
+msgstr "Esimene kvartiil"
#: StatisticsDialogs.src
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"STRID_CALC_THIRD_QUARTILE\n"
"string.text"
msgid "Third Quartile"
-msgstr ""
+msgstr "Kolmas kvartiil"
#: StatisticsDialogs.src
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"STR_UNDO_DISTRIBUTION_TEMPLATE\n"
"string.text"
msgid "Random ($(DISTRIBUTION))"
-msgstr ""
+msgstr "Juhuslik ($(DISTRIBUTION))"
#: StatisticsDialogs.src
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"STR_DISTRIBUTION_UNIFORM_REAL\n"
"string.text"
msgid "Uniform"
-msgstr ""
+msgstr "Ühtlane"
#: StatisticsDialogs.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"STR_DISTRIBUTION_UNIFORM_INTEGER\n"
"string.text"
msgid "Uniform Integer"
-msgstr ""
+msgstr "Ühtlane (täisarvud)"
#: StatisticsDialogs.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_DISTRIBUTION_NORMAL\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Normaaljaotus"
#: StatisticsDialogs.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_DISTRIBUTION_CAUCHY\n"
"string.text"
msgid "Cauchy"
-msgstr ""
+msgstr "Cauchy"
#: StatisticsDialogs.src
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"STR_DISTRIBUTION_BERNOULLI\n"
"string.text"
msgid "Bernoulli"
-msgstr ""
+msgstr "Bernoulli"
#: StatisticsDialogs.src
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"STR_DISTRIBUTION_BINOMIAL\n"
"string.text"
msgid "Binomial"
-msgstr ""
+msgstr "Binoomjaotus"
#: StatisticsDialogs.src
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"STR_DISTRIBUTION_NEGATIVE_BINOMIAL\n"
"string.text"
msgid "Negative Binomial"
-msgstr ""
+msgstr "Negatiivne binoomjaotus"
#: StatisticsDialogs.src
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"STR_DISTRIBUTION_CHI_SQUARED\n"
"string.text"
msgid "Chi Squared"
-msgstr ""
+msgstr "Hii-ruut"
#: StatisticsDialogs.src
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"STR_DISTRIBUTION_GEOMETRIC\n"
"string.text"
msgid "Geometric"
-msgstr ""
+msgstr "Geomeetriline"
#: StatisticsDialogs.src
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"STR_RNG_PARAMETER_MINIMUM\n"
"string.text"
msgid "Minimum"
-msgstr ""
+msgstr "Miinimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"STR_RNG_PARAMETER_MAXIMUM\n"
"string.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"STR_RNG_PARAMETER_MEAN\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Keskmine"
#: StatisticsDialogs.src
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_DEVIATION\n"
"string.text"
msgid "Standard Deviation"
-msgstr ""
+msgstr "Standardhälve"
#: StatisticsDialogs.src
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_MEDIAN\n"
"string.text"
msgid "Median"
-msgstr ""
+msgstr "Mediaan"
#: StatisticsDialogs.src
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_SIGMA\n"
"string.text"
msgid "Sigma"
-msgstr ""
+msgstr "Sigma"
#: StatisticsDialogs.src
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_PROBABILITY\n"
"string.text"
msgid "p Value"
-msgstr ""
+msgstr "p-väärtus"
#: StatisticsDialogs.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS\n"
"string.text"
msgid "Number of Trials"
-msgstr ""
+msgstr "Katsete arv"
#: StatisticsDialogs.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_NU_VALUE\n"
"string.text"
msgid "nu Value"
-msgstr ""
+msgstr "nüü-väärtus"
#: StatisticsDialogs.src
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"STR_SAMPLING_UNDO_NAME\n"
"string.text"
msgid "Sampling"
-msgstr ""
+msgstr "Valim"
#: StatisticsDialogs.src
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"STR_FTEST\n"
"string.text"
msgid "F-test"
-msgstr ""
+msgstr "F-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"STR_FTEST_UNDO_NAME\n"
"string.text"
msgid "F-test"
-msgstr ""
+msgstr "F-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"STR_TTEST\n"
"string.text"
msgid "t-test"
-msgstr ""
+msgstr "t-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"STR_TTEST_UNDO_NAME\n"
"string.text"
msgid "t-test"
-msgstr ""
+msgstr "t-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"STR_ZTEST\n"
"string.text"
msgid "z-test"
-msgstr ""
+msgstr "z-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"STR_ZTEST_UNDO_NAME\n"
"string.text"
msgid "z-test"
-msgstr ""
+msgstr "z-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"STR_CHI_SQUARE_TEST\n"
"string.text"
msgid "Test of Independence (Chi-Square)"
-msgstr ""
+msgstr "Sõltumatuse test (hii-ruut)"
#: StatisticsDialogs.src
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"STR_REGRESSION_UNDO_NAME\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regressioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"STR_REGRESSION\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regressioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"STR_COLUMN_LABEL_TEMPLATE\n"
"string.text"
msgid "Column %NUMBER%"
-msgstr ""
+msgstr "Veerg %NUMBER%"
#: StatisticsDialogs.src
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"STR_ROW_LABEL_TEMPLATE\n"
"string.text"
msgid "Row %NUMBER%"
-msgstr ""
+msgstr "Rida %NUMBER%"
#: StatisticsDialogs.src
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"STR_LABEL_ALPHA\n"
"string.text"
msgid "Alpha"
-msgstr ""
+msgstr "Alfa"
#: StatisticsDialogs.src
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"STR_VARIABLE_1_LABEL\n"
"string.text"
msgid "Variable 1"
-msgstr ""
+msgstr "Muutuja 1"
#: StatisticsDialogs.src
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"STR_VARIABLE_2_LABEL\n"
"string.text"
msgid "Variable 2"
-msgstr ""
+msgstr "Muutuja 2"
#: StatisticsDialogs.src
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL\n"
"string.text"
msgid "Hypothesized Mean Difference"
-msgstr ""
+msgstr "Oletatav keskmiste vahe"
#: StatisticsDialogs.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"STR_OBSERVATIONS_LABEL\n"
"string.text"
msgid "Observations"
-msgstr ""
+msgstr "Valimi maht"
#: StatisticsDialogs.src
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"STR_OBSERVED_MEAN_DIFFERENCE_LABEL\n"
"string.text"
msgid "Observed Mean Difference"
-msgstr ""
+msgstr "Keskmiste vahe valimis"
#: StatisticsDialogs.src
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"STR_DEGREES_OF_FREEDOM_LABEL\n"
"string.text"
msgid "df"
-msgstr ""
+msgstr "df"
#: StatisticsDialogs.src
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"STR_P_VALUE_LABEL\n"
"string.text"
msgid "P-value"
-msgstr ""
+msgstr "P-väärtus"
#: StatisticsDialogs.src
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"STR_CRITICAL_VALUE_LABEL\n"
"string.text"
msgid "Critical Value"
-msgstr ""
+msgstr "Kriitiline väärtus"
#: StatisticsDialogs.src
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"STR_TEST_STATISTIC_LABEL\n"
"string.text"
msgid "Test Statistic"
-msgstr ""
+msgstr "Testi statistik"
#: StatisticsDialogs.src
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"STR_LABEL_LINEAR\n"
"string.text"
msgid "Linear"
-msgstr ""
+msgstr "Lineaarne"
#: StatisticsDialogs.src
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"STR_LABEL_LOGARITHMIC\n"
"string.text"
msgid "Logarithmic"
-msgstr ""
+msgstr "Logaritmiline"
#: StatisticsDialogs.src
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"STR_LABEL_POWER\n"
"string.text"
msgid "Power"
-msgstr ""
+msgstr "Astmefunktsioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"STR_LABEL_REGRESSION_MODEL\n"
"string.text"
msgid "Regression Model"
-msgstr ""
+msgstr "Regressioonimudel"
#: StatisticsDialogs.src
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"STR_LABEL_RSQUARED\n"
"string.text"
msgid "R^2"
-msgstr ""
+msgstr "R^2"
#: StatisticsDialogs.src
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"STR_LABEL_SLOPE\n"
"string.text"
msgid "Slope"
-msgstr ""
+msgstr "Kalle"
#: StatisticsDialogs.src
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"STR_LABEL_INTERCEPT\n"
"string.text"
msgid "Intercept"
-msgstr ""
+msgstr "Lõikepunkt"
#: StatisticsDialogs.src
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"STR_FTEST_P_RIGHT_TAIL\n"
"string.text"
msgid "P (F<=f) right-tail"
-msgstr ""
+msgstr "P (F<=f) parempoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"STR_FTEST_F_CRITICAL_RIGHT_TAIL\n"
"string.text"
msgid "F Critical right-tail"
-msgstr ""
+msgstr "F kriitiline parempoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"STR_FTEST_P_LEFT_TAIL\n"
"string.text"
msgid "P (F<=f) left-tail"
-msgstr ""
+msgstr "P (F<=f) vasakpoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"STR_FTEST_F_CRITICAL_LEFT_TAIL\n"
"string.text"
msgid "F Critical left-tail"
-msgstr ""
+msgstr "F kriitiline vasakpoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"STR_FTEST_P_TWO_TAIL\n"
"string.text"
msgid "P two-tail"
-msgstr ""
+msgstr "P kahepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"STR_FTEST_F_CRITICAL_TWO_TAIL\n"
"string.text"
msgid "F Critical two-tail"
-msgstr ""
+msgstr "F kriitiline kahepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"STR_TTEST_PEARSON_CORRELATION\n"
"string.text"
msgid "Pearson Correlation"
-msgstr ""
+msgstr "Pearsoni korrelatsioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"STR_TTEST_VARIANCE_OF_THE_DIFFERENCES\n"
"string.text"
msgid "Variance of the Differences"
-msgstr ""
+msgstr "Erinevuste dispersioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"STR_TTEST_T_STAT\n"
"string.text"
msgid "t Stat"
-msgstr ""
+msgstr "t-stat"
#: StatisticsDialogs.src
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"STR_TTEST_P_ONE_TAIL\n"
"string.text"
msgid "P (T<=t) one-tail"
-msgstr ""
+msgstr "P (T<=t) ühepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"STR_TTEST_T_CRITICAL_ONE_TAIL\n"
"string.text"
msgid "t Critical one-tail"
-msgstr ""
+msgstr "t kriitiline ühepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"STR_TTEST_P_TWO_TAIL\n"
"string.text"
msgid "P (T<=t) two-tail"
-msgstr ""
+msgstr "P (T<=t) kahepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"STR_TTEST_T_CRITICAL_TWO_TAIL\n"
"string.text"
msgid "t Critical two-tail"
-msgstr ""
+msgstr "t kriitiline kahepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"STR_ZTEST_Z_VALUE\n"
"string.text"
msgid "z"
-msgstr ""
+msgstr "z"
#: StatisticsDialogs.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"STR_ZTEST_KNOWN_VARIANCE\n"
"string.text"
msgid "Known Variance"
-msgstr ""
+msgstr "Teadaolev dispersioon"
#: StatisticsDialogs.src
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"STR_ZTEST_P_ONE_TAIL\n"
"string.text"
msgid "P (Z<=z) one-tail"
-msgstr ""
+msgstr "P (Z<=z) ühepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"STR_ZTEST_Z_CRITICAL_ONE_TAIL\n"
"string.text"
msgid "z Critical one-tail"
-msgstr ""
+msgstr "z kriitiline ühepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"STR_ZTEST_P_TWO_TAIL\n"
"string.text"
msgid "P (Z<=z) two-tail"
-msgstr ""
+msgstr "P (Z<=z) kahepoolne"
#: StatisticsDialogs.src
msgctxt ""
@@ -838,4 +838,4 @@ msgctxt ""
"STR_ZTEST_Z_CRITICAL_TWO_TAIL\n"
"string.text"
msgid "z Critical two-tail"
-msgstr ""
+msgstr "z kriitiline kahepoolne"
diff --git a/source/et/sc/source/ui/cctrl.po b/source/et/sc/source/ui/cctrl.po
index 39111b3d63a..cc9c8449dff 100644
--- a/source/et/sc/source/ui/cctrl.po
+++ b/source/et/sc/source/ui/cctrl.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-06-29 23:20+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-14 18:54+0000\n"
+"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1435620016.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497466440.000000\n"
#: checklistmenu.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MENU_SORT_ASC\n"
"string.text"
msgid "Sort Ascending"
-msgstr ""
+msgstr "Sordi kasvavalt"
#: checklistmenu.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MENU_SORT_DESC\n"
"string.text"
msgid "Sort Descending"
-msgstr ""
+msgstr "Sordi kahanevalt"
#: checklistmenu.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_MENU_SORT_CUSTOM\n"
"string.text"
msgid "Custom Sort"
-msgstr ""
+msgstr "Kohandatud sortimine"
#: checklistmenu.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_BTN_TOGGLE_ALL\n"
"string.text"
msgid "All"
-msgstr ""
+msgstr "Kõik"
#: checklistmenu.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_BTN_SELECT_CURRENT\n"
"string.text"
msgid "Show only the current item."
-msgstr ""
+msgstr "Näita ainult valitud elementi."
#: checklistmenu.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_BTN_UNSELECT_CURRENT\n"
"string.text"
msgid "Hide only the current item."
-msgstr ""
+msgstr "Peida ainult valitud element."
#: checklistmenu.src
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"STR_EDIT_SEARCH_ITEMS\n"
"string.text"
msgid "Search items..."
-msgstr ""
+msgstr "Otsing"
diff --git a/source/et/sc/source/ui/src.po b/source/et/sc/source/ui/src.po
index 7f683a5dbb0..dceda9f4be7 100644
--- a/source/et/sc/source/ui/src.po
+++ b/source/et/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-23 22:51+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-18 00:01+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485211918.000000\n"
+"X-POOTLE-MTIME: 1497744088.000000\n"
#: globstr.src
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"STR_UNDO_SHOWALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Show All Comments"
-msgstr ""
+msgstr "Näita kõiki märkusi"
#: globstr.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"STR_UNDO_HIDEALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Hide All Comments"
-msgstr ""
+msgstr "Peida kõik märkused"
#: globstr.src
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"STR_UNDO_UNPROTECT_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Unprotect sheet"
-msgstr ""
+msgstr "Eemalda lehe kaitse"
#: globstr.src
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"STR_UNDO_UNPROTECT_DOC+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Unprotect document"
-msgstr ""
+msgstr "Eemalda dokumendi kaitse"
#: globstr.src
msgctxt ""
@@ -924,7 +924,7 @@ msgctxt ""
"STR_TABLE_DEF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sheet"
-msgstr ""
+msgstr "Leht "
#: globstr.src
msgctxt ""
@@ -980,7 +980,7 @@ msgctxt ""
"STR_PIVOT_REMOVE_PIVOTCHART+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "There is at least one pivot chart associated with this pivot table. Should remove all or abort?"
-msgstr ""
+msgstr "Selle liigendtabeliga on seotud vähemalt üks liigenddiagramm. Kas soovid kõik eemaldada või toimingust loobuda?"
#: globstr.src
msgctxt ""
@@ -996,7 +996,7 @@ msgctxt ""
"STR_PIVOT_TOTAL+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Total"
-msgstr ""
+msgstr "Kokku"
#: globstr.src
msgctxt ""
@@ -1210,7 +1210,7 @@ msgctxt ""
"STR_FUN_TEXT_SUM+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: globstr.src
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"STR_STYLENAME_STANDARD+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Vaikimisi"
#: globstr.src
msgctxt ""
@@ -1964,7 +1964,7 @@ msgctxt ""
"STR_UNDO_RENAME_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Lehe ümbernimetamine"
#: globstr.src
msgctxt ""
@@ -2699,7 +2699,7 @@ msgstr "Vahemik liigutati #1 -st kohale #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2864,7 +2864,7 @@ msgstr "Põimitud massiivid pole toetatud."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
@@ -3149,7 +3149,7 @@ msgctxt ""
"STR_HEADER_NAME+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Name"
-msgstr ""
+msgstr "Nimi"
#: globstr.src
msgctxt ""
@@ -3755,7 +3755,7 @@ msgctxt ""
"STR_CTRLCLICKHYPERLINK+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "%s-click to follow hyperlink:"
-msgstr ""
+msgstr "Lingi avamiseks tee %s-klõps:"
#: globstr.src
msgctxt ""
@@ -3795,7 +3795,7 @@ msgctxt ""
"STR_UNDO_CONDFORMAT_LIST+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Conditional Formats"
-msgstr ""
+msgstr "Tingimuslik vormindus"
#: globstr.src
msgctxt ""
@@ -3915,7 +3915,7 @@ msgctxt ""
"STR_TEXT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: globstr.src
msgctxt ""
@@ -3923,7 +3923,7 @@ msgctxt ""
"STR_QUERY_PIVOTTABLE_DELTAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-msgstr ""
+msgstr "Valitud leh(ted)el on liigendtabelite lähteandmeid, mis läheks nüüd kaotsi. Kas sa tõesti soovid valitud lehe(d) kustutada?"
#: globstr.src
msgctxt ""
@@ -3931,7 +3931,7 @@ msgctxt ""
"STR_ERR_NAME_INVALID_CELL_REF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
-msgstr ""
+msgstr "Vigane nimi. Viide lahtrile või lahtrivahemikule pole lubatud."
#: scfuncs.src
msgctxt ""
@@ -5591,6 +5591,8 @@ msgid ""
"Calculates the calendar week corresponding to the given date.\n"
"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
msgstr ""
+"Arvutab kalendrinädala vastavalt antud kuupäevale.\n"
+"See funktsioon tagab ühilduvuse %PRODUCTNAME 5.0 ja vanemate versioonide ning OpenOffice.org-iga."
#: scfuncs.src
msgctxt ""
@@ -9847,7 +9849,7 @@ msgctxt ""
"Function\n"
"itemlist.text"
msgid "Function"
-msgstr ""
+msgstr "Funktsioon"
#: scfuncs.src
msgctxt ""
@@ -10229,6 +10231,8 @@ msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Ümardab arvu nullist eemale kuni lähima antud teguri kordseni.\n"
+"See funktsioon tagab ühilduvuse Microsoft Excel 2007 ja vanemate versioonidega."
#: scfuncs.src
msgctxt ""
@@ -10556,6 +10560,8 @@ msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Ümardab arvu nulli suunas kuni lähima antud teguri absoluutväärtuse kordseni.\n"
+"See funktsioon tagab ühilduvuse Microsoft Excel 2007 ja vanemate versioonidega."
#: scfuncs.src
msgctxt ""
@@ -14290,7 +14296,7 @@ msgctxt ""
"number\n"
"itemlist.text"
msgid "number"
-msgstr "Arv"
+msgstr "arv"
#: scfuncs.src
msgctxt ""
@@ -21859,7 +21865,7 @@ msgctxt ""
"text\n"
"itemlist.text"
msgid "text"
-msgstr ""
+msgstr "tekst"
#: scfuncs.src
msgctxt ""
@@ -22219,7 +22225,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Positiivne täisarv, mis on väiksem kui 2^48."
#: scfuncs.src
msgctxt ""
@@ -22255,7 +22261,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Positiivne täisarv, mis on väiksem kui 2^48."
#: scfuncs.src
msgctxt ""
@@ -22291,7 +22297,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Positiivne täisarv, mis on väiksem kui 2^48."
#: scfuncs.src
msgctxt ""
@@ -22858,7 +22864,7 @@ msgctxt ""
"Rounds a number to predefined significant digits.\n"
"itemlist.text"
msgid "Rounds a number to predefined significant digits."
-msgstr ""
+msgstr "Ümardab arvu määratud tüvenumbriteni."
#: scfuncs.src
msgctxt ""
@@ -22867,7 +22873,7 @@ msgctxt ""
"value\n"
"itemlist.text"
msgid "value"
-msgstr ""
+msgstr "väärtus"
#: scfuncs.src
msgctxt ""
@@ -22876,7 +22882,7 @@ msgctxt ""
"The number to be rounded.\n"
"itemlist.text"
msgid "The number to be rounded."
-msgstr ""
+msgstr "Arv, mida ümardatakse."
#: scfuncs.src
msgctxt ""
@@ -22885,7 +22891,7 @@ msgctxt ""
"digits\n"
"itemlist.text"
msgid "digits"
-msgstr ""
+msgstr "tüvenumbrite arv"
#: scfuncs.src
msgctxt ""
@@ -22894,7 +22900,7 @@ msgctxt ""
"The number of significant digits to which value is to be rounded.\n"
"itemlist.text"
msgid "The number of significant digits to which value is to be rounded."
-msgstr ""
+msgstr "Tüvenumbrite arv, milleni väärtus ümardatakse."
#: scstring.src
msgctxt ""
diff --git a/source/et/sc/uiconfig/scalc/ui.po b/source/et/sc/uiconfig/scalc/ui.po
index e57f816b972..553de157d41 100644
--- a/source/et/sc/uiconfig/scalc/ui.po
+++ b/source/et/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-28 22:56+0000\n"
+"PO-Revision-Date: 2017-06-17 23:40+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485644194.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497742811.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -3467,7 +3467,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Hyperlink"
-msgstr ""
+msgstr "Lisa hüperlingina"
#: dropmenu.ui
msgctxt ""
@@ -3476,7 +3476,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Link"
-msgstr ""
+msgstr "Lisa lingina"
#: dropmenu.ui
msgctxt ""
@@ -3485,7 +3485,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Copy"
-msgstr ""
+msgstr "Lisa koopiana"
#: erroralerttabpage.ui
msgctxt ""
@@ -5897,7 +5897,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr "Sümbol"
+msgstr "Erimärk"
#: notebookbar.ui
msgctxt ""
@@ -6275,7 +6275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: notebookbar_groups.ui
msgctxt ""
@@ -8183,7 +8183,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Protect Sheet"
-msgstr "Kaitse lehte"
+msgstr "Lehe kaitse"
#: protectsheetdlg.ui
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert columns"
-msgstr ""
+msgstr "lisada veerge"
#: protectsheetdlg.ui
msgctxt ""
@@ -8255,7 +8255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert rows"
-msgstr ""
+msgstr "lisada ridu"
#: protectsheetdlg.ui
msgctxt ""
@@ -8264,7 +8264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete columns"
-msgstr ""
+msgstr "kustutada veerge"
#: protectsheetdlg.ui
msgctxt ""
@@ -8273,7 +8273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete rows"
-msgstr ""
+msgstr "kustutada ridu"
#: queryrunstreamscriptdialog.ui
msgctxt ""
@@ -8948,7 +8948,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Kustuta"
#: scenariomenu.ui
msgctxt ""
@@ -8957,7 +8957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Omadused..."
#: scgeneralpage.ui
msgctxt ""
@@ -9236,7 +9236,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Sql [Native]"
-msgstr "Sql [algupärane]"
+msgstr "Sql [Native]"
#: selectdatasource.ui
msgctxt ""
@@ -10121,7 +10121,6 @@ msgid "Decimal Places"
msgstr "Kümnendkohti"
#: sidebarnumberformat.ui
-#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"denominatorplaceslabel\n"
diff --git a/source/et/scaddins/source/analysis.po b/source/et/scaddins/source/analysis.po
index 1a70a2bec84..783419748af 100644
--- a/source/et/scaddins/source/analysis.po
+++ b/source/et/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-05 20:42+0000\n"
+"PO-Revision-Date: 2017-06-17 22:05+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695346.000000\n"
+"X-POOTLE-MTIME: 1497737145.000000\n"
#: analysis.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"Days\n"
"itemlist.text"
msgid "Days"
-msgstr "Päevad"
+msgstr "Päevade arv"
#: analysis.src
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"The effective interest rate\n"
"itemlist.text"
msgid "The effective interest rate"
-msgstr "Efektiivne intressimäär"
+msgstr "Efektiivne aastaintress"
#: analysis.src
msgctxt ""
diff --git a/source/et/scaddins/source/datefunc.po b/source/et/scaddins/source/datefunc.po
index 6a5ed4d5680..29180b277ae 100644
--- a/source/et/scaddins/source/datefunc.po
+++ b/source/et/scaddins/source/datefunc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-05 20:42+0000\n"
+"PO-Revision-Date: 2017-06-14 19:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695363.000000\n"
+"X-POOTLE-MTIME: 1497467066.000000\n"
#: datefunc.src
msgctxt ""
@@ -378,7 +378,7 @@ msgctxt ""
"DATE_FUNCNAME_DaysInMonth\n"
"string.text"
msgid "DAYSINMONTH"
-msgstr ""
+msgstr "DAYSINMONTH"
#: datefunc.src
msgctxt ""
@@ -386,7 +386,7 @@ msgctxt ""
"DATE_FUNCNAME_DaysInYear\n"
"string.text"
msgid "DAYSINYEAR"
-msgstr ""
+msgstr "DAYSINYEAR"
#: datefunc.src
msgctxt ""
@@ -394,7 +394,7 @@ msgctxt ""
"DATE_FUNCNAME_WeeksInYear\n"
"string.text"
msgid "WEEKSINYEAR"
-msgstr ""
+msgstr "WEEKSINYEAR"
#: datefunc.src
msgctxt ""
@@ -402,4 +402,4 @@ msgctxt ""
"DATE_FUNCNAME_Rot13\n"
"string.text"
msgid "ROT13"
-msgstr ""
+msgstr "ROT13"
diff --git a/source/et/scaddins/source/pricing.po b/source/et/scaddins/source/pricing.po
index 5c35a8ff505..7f9387b293f 100644
--- a/source/et/scaddins/source/pricing.po
+++ b/source/et/scaddins/source/pricing.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-05 20:42+0000\n"
+"PO-Revision-Date: 2017-06-14 19:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695369.000000\n"
+"X-POOTLE-MTIME: 1497467082.000000\n"
#: pricing.src
msgctxt ""
@@ -766,4 +766,4 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbInMoney\n"
"string.text"
msgid "OPT_PROB_INMONEY"
-msgstr ""
+msgstr "OPT_PROB_INMONEY"
diff --git a/source/et/sd/uiconfig/simpress/ui.po b/source/et/sd/uiconfig/simpress/ui.po
index 168469a439d..d59d5a715f8 100644
--- a/source/et/sd/uiconfig/simpress/ui.po
+++ b/source/et/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-06-06 21:35+0000\n"
+"PO-Revision-Date: 2017-06-17 23:40+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496784933.000000\n"
+"X-POOTLE-MTIME: 1497742817.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -2112,7 +2112,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr "Sümbol"
+msgstr "Erimärk"
#: notebookbar.ui
msgctxt ""
diff --git a/source/et/sfx2/source/doc.po b/source/et/sfx2/source/doc.po
index 01d48ac4857..5124245bcd4 100644
--- a/source/et/sfx2/source/doc.po
+++ b/source/et/sfx2/source/doc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-06-05 20:44+0000\n"
+"PO-Revision-Date: 2017-06-14 19:11+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695492.000000\n"
+"X-POOTLE-MTIME: 1497467480.000000\n"
#: doc.src
msgctxt ""
@@ -485,6 +485,10 @@ msgid ""
"\n"
"Do you want to ignore the error and attempt to continue loading the file?"
msgstr ""
+"\n"
+"Importimise jätkamine võib põhjustada andmete kadu või riknemist ning kogu rakendus võib muutuda ebastabiilseks või päris kokku joosta.\n"
+"\n"
+"Kas soovid tõrget eirata ja püüda faili laadimist siiski jätkata?"
#: doctempl.src
msgctxt ""
diff --git a/source/et/sfx2/source/view.po b/source/et/sfx2/source/view.po
index c20de1b814a..15fb14d3554 100644
--- a/source/et/sfx2/source/view.po
+++ b/source/et/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-05 20:45+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496695507.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Dokumendil on kehtetu allkiri."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/et/sfx2/uiconfig/ui.po b/source/et/sfx2/uiconfig/ui.po
index 5718c3ebabd..3ba94e6ec8a 100644
--- a/source/et/sfx2/uiconfig/ui.po
+++ b/source/et/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-06-05 21:37+0000\n"
+"PO-Revision-Date: 2017-06-17 23:48+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496698640.000000\n"
+"X-POOTLE-MTIME: 1497743316.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display"
-msgstr "_Näita"
+msgstr "Näita"
#: bookmarkmenu.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME Help Not Installed"
-msgstr "%PRODUCTNAME'i abimaterjal pole paigaldatud"
+msgstr "%PRODUCTNAME’i abimaterjal pole paigaldatud"
#: helpmanual.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "The %PRODUCTNAME built-in help is not installed on your computer."
-msgstr "%PRODUCTNAME'i abimaterjal pole sinu arvutisse paigaldatud."
+msgstr "%PRODUCTNAME’i abimaterjal pole sinu arvutisse paigaldatud."
#: helpmanual.ui
msgctxt ""
diff --git a/source/et/starmath/source.po b/source/et/starmath/source.po
index 32db5449084..9a06dba9cdd 100644
--- a/source/et/starmath/source.po
+++ b/source/et/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-06-05 20:46+0000\n"
+"PO-Revision-Date: 2017-06-14 19:06+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695602.000000\n"
+"X-POOTLE-MTIME: 1497467219.000000\n"
#: commands.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"RID_XODIVIDEY_HELP\n"
"string.text"
msgid "Circled Slash"
-msgstr ""
+msgstr "Ringis kaldkriips"
#: commands.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"RID_XODOTY_HELP\n"
"string.text"
msgid "Circled Dot"
-msgstr ""
+msgstr "Ringis punkt"
#: commands.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"RID_XOMINUSY_HELP\n"
"string.text"
msgid "Circled Minus"
-msgstr ""
+msgstr "Ringis miinus"
#: commands.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_XOPLUSY_HELP\n"
"string.text"
msgid "Circled Plus"
-msgstr "Otsesumma"
+msgstr "Ringis pluss"
#: commands.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"RID_XTRANSLY_HELP\n"
"string.text"
msgid "Corresponds To (Left)"
-msgstr ""
+msgstr "Vastab (vasakul)"
#: commands.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"RID_XTRANSRY_HELP\n"
"string.text"
msgid "Corresponds To (Right)"
-msgstr ""
+msgstr "Vastab (paremal)"
#: commands.src
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"RID_LIMINFX_HELP\n"
"string.text"
msgid "Limit Inferior"
-msgstr ""
+msgstr "Alumine piirväärtus"
#: commands.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"RID_LIMINF_FROMX_HELP\n"
"string.text"
msgid "Limit Inferior Subscript Bottom"
-msgstr ""
+msgstr "Alumine piirväärtus alaindeksiga"
#: commands.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"RID_LIMINF_TOX_HELP\n"
"string.text"
msgid "Limit Inferior Superscript Top"
-msgstr ""
+msgstr "Alumine piirväärtus ülaindeksiga"
#: commands.src
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"RID_LIMINF_FROMTOX_HELP\n"
"string.text"
msgid "Limit Inferior Sup/Sub script"
-msgstr ""
+msgstr "Alumine piirväärtus üla- ja alaindeksiga"
#: commands.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"RID_LIMSUPX_HELP\n"
"string.text"
msgid "Limit Superior"
-msgstr ""
+msgstr "Ülemine piirväärtus"
#: commands.src
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"RID_LIMSUP_FROMX_HELP\n"
"string.text"
msgid "Limit Superior Subscript Bottom"
-msgstr ""
+msgstr "Ülemine piirväärtus alaindeksiga"
#: commands.src
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"RID_LIMSUP_TOX_HELP\n"
"string.text"
msgid "Limit Superior Superscript Top"
-msgstr ""
+msgstr "Ülemine piirväärtus ülaindeksiga"
#: commands.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"RID_LIMSUP_FROMTOX_HELP\n"
"string.text"
msgid "Limit Superior Sup/Sub script"
-msgstr ""
+msgstr "Ülemine piirväärtus üla- ja alaindeksiga"
#: commands.src
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"RID_SLRPARENTX_HELP\n"
"string.text"
msgid "Round Brackets (Scalable)"
-msgstr "Ümarsulud (skaleeritavad)"
+msgstr "Ümarsulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"RID_SLRBRACKETX_HELP\n"
"string.text"
msgid "Square Brackets (Scalable)"
-msgstr "Nurksulud (skaleeritavad)"
+msgstr "Nurksulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"RID_SLRDBRACKETX_HELP\n"
"string.text"
msgid "Double Square Brackets (Scalable)"
-msgstr "Topeltnurksulud (skaleeritavad)"
+msgstr "Topeltnurksulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"RID_SLRBRACEX_HELP\n"
"string.text"
msgid "Braces (Scalable)"
-msgstr "Looksulud (skaleeritavad)"
+msgstr "Looksulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"RID_SLRANGLEX_HELP\n"
"string.text"
msgid "Angle Brackets (Scalable)"
-msgstr "Noolsulud (skaleeritavad)"
+msgstr "Noolsulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"RID_SLRCEILX_HELP\n"
"string.text"
msgid "Ceiling (Scalable)"
-msgstr "\"Lagi\" (skaleeritav)"
+msgstr "\"Lagi\" (skaleeruv)"
#: commands.src
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"RID_SLRFLOORX_HELP\n"
"string.text"
msgid "Floor (Scalable)"
-msgstr "\"Põrand\" (skaleeritav)"
+msgstr "\"Põrand\" (skaleeruv)"
#: commands.src
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"RID_SLRLINEX_HELP\n"
"string.text"
msgid "Single Lines (Scalable)"
-msgstr "Püstjooned (skaleeritavad)"
+msgstr "Püstjooned (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"RID_SLRDLINEX_HELP\n"
"string.text"
msgid "Double Lines (Scalable)"
-msgstr "Topeltjooned (skaleeritavad)"
+msgstr "Topeltjooned (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"RID_SLMRANGLEXY_HELP\n"
"string.text"
msgid "Operator Brackets (Scalable)"
-msgstr "Tehtesulud (skaleeritavad)"
+msgstr "Tehtesulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"RID_XEVALUATEDATY_HELP\n"
"string.text"
msgid "Evaluated At"
-msgstr ""
+msgstr "Evalveeritud väärtusel"
#: commands.src
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"RID_XOVERBRACEY_HELP\n"
"string.text"
msgid "Braces Top (Scalable)"
-msgstr "Ülemised looksulud (skaleeritavad)"
+msgstr "Ülemised looksulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"RID_XUNDERBRACEY_HELP\n"
"string.text"
msgid "Braces Bottom (Scalable)"
-msgstr "Alumised looksulud (skaleeritavad)"
+msgstr "Alumised looksulud (skaleeruvad)"
#: commands.src
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"RID_CATEGORY_OPERATORS\n"
"string.text"
msgid "Operators"
-msgstr "Tehtemärgid"
+msgstr "Operaatorid"
#: commands.src
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"RID_ERR_PARENTMISMATCH\n"
"string.text"
msgid "Left and right symbols mismatched"
-msgstr ""
+msgstr "Vasak- ja parempoolne sümbol ei sobi kokku"
#: smres.src
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"RID_ERR_SIZEEXPECTED\n"
"string.text"
msgid "'size' followed by an unexpected token"
-msgstr ""
+msgstr "Sobimatu sümbol 'size' järel"
#: smres.src
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"RID_ERR_DOUBLEALIGN\n"
"string.text"
msgid "Double aligning is not allowed"
-msgstr ""
+msgstr "Topeltjoondus pole lubatud"
#: smres.src
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"RID_ERR_DOUBLESUBSUPSCRIPT\n"
"string.text"
msgid "Double sub/superscripts is not allowed"
-msgstr ""
+msgstr "Topelt üla- või alaindeksid pole lubatud"
#: smres.src
msgctxt ""
diff --git a/source/et/svtools/source/control.po b/source/et/svtools/source/control.po
index 3f5cf9dd100..dfd8eb289ac 100644
--- a/source/et/svtools/source/control.po
+++ b/source/et/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-30 23:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -291,6 +291,110 @@ msgstr "Must kaldkiri"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/et/svtools/source/dialogs.po b/source/et/svtools/source/dialogs.po
index fd9b14822aa..0c241bcb77e 100644
--- a/source/et/svtools/source/dialogs.po
+++ b/source/et/svtools/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-25 13:52+0200\n"
-"PO-Revision-Date: 2017-06-05 20:47+0000\n"
+"PO-Revision-Date: 2017-06-14 19:07+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695642.000000\n"
+"X-POOTLE-MTIME: 1497467269.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -901,7 +901,7 @@ msgctxt ""
"$(ERR) activating object\n"
"itemlist.text"
msgid "$(ERR) activating object"
-msgstr ""
+msgstr "$(ERR) objekti aktiveerimisel"
#: so3res.src
msgctxt ""
diff --git a/source/et/svtools/source/misc.po b/source/et/svtools/source/misc.po
index 85fd36f83d0..508726dbe09 100644
--- a/source/et/svtools/source/misc.po
+++ b/source/et/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-05 20:48+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496695682.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekweli"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Sibo"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/et/svx/source/dialog.po b/source/et/svx/source/dialog.po
index fd02d3d7e25..171e8e726dd 100644
--- a/source/et/svx/source/dialog.po
+++ b/source/et/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 23:22+0000\n"
+"PO-Revision-Date: 2017-06-17 22:22+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496791327.000000\n"
+"X-POOTLE-MTIME: 1497738167.000000\n"
#: SafeMode.src
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"Bullet\n"
"itemlist.text"
msgid "Bullet"
-msgstr ""
+msgstr "Täpp"
#: numberingtype.src
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"Graphics\n"
"itemlist.text"
msgid "Graphics"
-msgstr ""
+msgstr "Pilt"
#: numberingtype.src
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"Linked graphics\n"
"itemlist.text"
msgid "Linked graphics"
-msgstr ""
+msgstr "Lingitud pilt"
#: numberingtype.src
msgctxt ""
diff --git a/source/et/svx/source/svdraw.po b/source/et/svx/source/svdraw.po
index 4c6d9e32c15..36f7bc8de83 100644
--- a/source/et/svx/source/svdraw.po
+++ b/source/et/svx/source/svdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 11:52+0200\n"
-"PO-Revision-Date: 2017-06-06 07:13+0000\n"
+"PO-Revision-Date: 2017-06-17 22:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496733190.000000\n"
+"X-POOTLE-MTIME: 1497737096.000000\n"
#: svdstr.src
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"SIP_SA_GRAFCONTRAST\n"
"string.text"
msgid "Contrast"
-msgstr "Kontrast"
+msgstr "Kontrastsus"
#: svdstr.src
msgctxt ""
diff --git a/source/et/svx/source/tbxctrls.po b/source/et/svx/source/tbxctrls.po
index 1488e329b0f..bcb5e603b9a 100644
--- a/source/et/svx/source/tbxctrls.po
+++ b/source/et/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-22 23:21+0000\n"
+"PO-Revision-Date: 2017-06-17 22:06+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485127260.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497737201.000000\n"
#: colrctrl.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"RID_SVXSTR_UNDO_GRAFCONTRAST\n"
"string.text"
msgid "Contrast"
-msgstr "Kontrast"
+msgstr "Kontrastsus"
#: grafctrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_DEFAULT\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Vaikimisi"
#: tbcontrl.src
msgctxt ""
diff --git a/source/et/svx/source/toolbars.po b/source/et/svx/source/toolbars.po
index 24e5cf4f108..f778ffa5a19 100644
--- a/source/et/svx/source/toolbars.po
+++ b/source/et/svx/source/toolbars.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2011-04-05 10:58+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-06-17 22:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497737096.000000\n"
#: extrusionbar.src
msgctxt ""
@@ -69,7 +70,7 @@ msgctxt ""
"RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH\n"
"string.text"
msgid "Change Extrusion Depth"
-msgstr "Muuda venitamise sügavust"
+msgstr "Muuda ruumilisuse sügavust"
#: extrusionbar.src
msgctxt ""
diff --git a/source/et/svx/uiconfig/ui.po b/source/et/svx/uiconfig/ui.po
index f7597247a22..c0dc9d5187b 100644
--- a/source/et/svx/uiconfig/ui.po
+++ b/source/et/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 07:19+0000\n"
+"PO-Revision-Date: 2017-06-17 23:27+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496733587.000000\n"
+"X-POOTLE-MTIME: 1497742063.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -4205,7 +4205,6 @@ msgid "_New"
msgstr "_Uus"
#: formnavimenu.ui
-#, fuzzy
msgctxt ""
"formnavimenu.ui\n"
"form\n"
@@ -4230,7 +4229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace with"
-msgstr ""
+msgstr "Asenda"
#: formnavimenu.ui
msgctxt ""
@@ -4275,7 +4274,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab Order..."
-msgstr ""
+msgstr "Liikumisjärjestus..."
#: formnavimenu.ui
msgctxt ""
@@ -4284,7 +4283,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr ""
+msgstr "Muuda nime"
#: formnavimenu.ui
msgctxt ""
@@ -4293,7 +4292,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Propert_ies"
-msgstr ""
+msgstr "Omadused"
#: formnavimenu.ui
msgctxt ""
@@ -4302,7 +4301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open in Design Mode"
-msgstr ""
+msgstr "Ava kujundusrežiimis"
#: formnavimenu.ui
msgctxt ""
@@ -4311,7 +4310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Control Focus"
-msgstr ""
+msgstr "Automaatne elemendi fookus"
#: functionmenu.ui
msgctxt ""
@@ -4320,7 +4319,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Average"
-msgstr ""
+msgstr "Keskmine"
#: functionmenu.ui
msgctxt ""
@@ -4329,7 +4328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "CountA"
-msgstr ""
+msgstr "CountA"
#: functionmenu.ui
msgctxt ""
@@ -4338,7 +4337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Count"
-msgstr ""
+msgstr "Arv"
#: functionmenu.ui
msgctxt ""
@@ -4347,7 +4346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: functionmenu.ui
msgctxt ""
@@ -4356,7 +4355,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Minimum"
-msgstr ""
+msgstr "Miinimum"
#: functionmenu.ui
msgctxt ""
@@ -4365,7 +4364,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: functionmenu.ui
msgctxt ""
@@ -4374,7 +4373,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection count"
-msgstr ""
+msgstr "Valitud"
#: functionmenu.ui
msgctxt ""
@@ -4410,7 +4409,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr ""
+msgstr "Muuda nime"
#: gallerymenu1.ui
msgctxt ""
@@ -4419,7 +4418,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Assign _ID"
-msgstr ""
+msgstr "Omista ID"
#: gallerymenu1.ui
msgctxt ""
@@ -4437,7 +4436,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Insert"
-msgstr ""
+msgstr "Lisa"
#: gallerymenu2.ui
msgctxt ""
@@ -4446,7 +4445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Bac_kground"
-msgstr ""
+msgstr "Lisa taustana"
#: gallerymenu2.ui
msgctxt ""
@@ -4455,7 +4454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Preview"
-msgstr ""
+msgstr "Eelvaade"
#: gallerymenu2.ui
msgctxt ""
@@ -4464,7 +4463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Title"
-msgstr ""
+msgstr "Tiitel"
#: gallerymenu2.ui
msgctxt ""
@@ -4482,7 +4481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "Kopeeri"
#: gallerymenu2.ui
msgctxt ""
@@ -4491,7 +4490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Insert"
-msgstr ""
+msgstr "Lisa"
#: headfootformatpage.ui
msgctxt ""
@@ -4824,7 +4823,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Description..."
-msgstr ""
+msgstr "Kirjeldus..."
#: imapmenu.ui
msgctxt ""
@@ -4851,7 +4850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "Järjestus"
#: imapmenu.ui
msgctxt ""
@@ -4860,7 +4859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bring to Front"
-msgstr ""
+msgstr "Too kõige ette"
#: imapmenu.ui
msgctxt ""
@@ -4869,7 +4868,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bring _Forward"
-msgstr ""
+msgstr "Too ettepoole"
#: imapmenu.ui
msgctxt ""
@@ -4878,7 +4877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Send Back_ward"
-msgstr ""
+msgstr "Vii tahapoole"
#: imapmenu.ui
msgctxt ""
@@ -4887,7 +4886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Send to Back"
-msgstr ""
+msgstr "Vii kõige taha"
#: imapmenu.ui
msgctxt ""
@@ -4896,7 +4895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select _All"
-msgstr ""
+msgstr "Vali kõik"
#: imapmenu.ui
msgctxt ""
@@ -4905,7 +4904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr "Kustuta"
+msgstr "_Kustuta"
#: linkwarndialog.ui
msgctxt ""
@@ -5256,7 +5255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Constrain Objects"
-msgstr ""
+msgstr "Liikumissuuna piiramine"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5499,7 +5498,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename"
-msgstr ""
+msgstr "Muuda nime"
#: presetmenu.ui
msgctxt ""
@@ -6025,7 +6024,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Kustuta read"
#: rowsmenu.ui
msgctxt ""
@@ -6043,7 +6042,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Undo: Data entry"
-msgstr ""
+msgstr "Võta tagasi: andmekirje"
#: rulermenu.ui
msgctxt ""
@@ -6052,7 +6051,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Millimeter"
-msgstr ""
+msgstr "Millimeeter"
#: rulermenu.ui
msgctxt ""
@@ -6061,7 +6060,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centimeter"
-msgstr ""
+msgstr "Sentimeeter"
#: rulermenu.ui
msgctxt ""
@@ -6070,7 +6069,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Meter"
-msgstr ""
+msgstr "Meeter"
#: rulermenu.ui
msgctxt ""
@@ -6079,7 +6078,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Kilometer"
-msgstr ""
+msgstr "Kilomeeter"
#: rulermenu.ui
msgctxt ""
@@ -6088,7 +6087,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Inch"
-msgstr ""
+msgstr "Toll"
#: rulermenu.ui
msgctxt ""
@@ -6097,7 +6096,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Foot"
-msgstr ""
+msgstr "Jalg"
#: rulermenu.ui
msgctxt ""
@@ -6106,7 +6105,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Miles"
-msgstr ""
+msgstr "Miil"
#: rulermenu.ui
msgctxt ""
@@ -6115,7 +6114,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Point"
-msgstr ""
+msgstr "Punkt"
#: rulermenu.ui
msgctxt ""
@@ -6124,7 +6123,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pica"
-msgstr ""
+msgstr "Piika"
#: rulermenu.ui
msgctxt ""
@@ -6142,7 +6141,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Line"
-msgstr ""
+msgstr "Rida"
#: safemodedialog.ui
msgctxt ""
@@ -6782,7 +6781,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Contrast:"
-msgstr "Kontrast:"
+msgstr "Kontrastsus:"
#: sidebargraphic.ui
msgctxt ""
@@ -6800,7 +6799,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Contrast"
-msgstr "Kontrast"
+msgstr "Kontrastsus"
#: sidebargraphic.ui
msgctxt ""
diff --git a/source/et/sw/source/core/undo.po b/source/et/sw/source/core/undo.po
index c2ca0e6b1f4..f4ec63b5e36 100644
--- a/source/et/sw/source/core/undo.po
+++ b/source/et/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-06-06 07:20+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496733606.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "veerupiir"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Lisa $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Kustuta $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atribuute on muudetud"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabelit on muudetud"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stiili on muudetud"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/et/sw/source/uibase/docvw.po b/source/et/sw/source/uibase/docvw.po
index 1fed5154b10..19bba50606b 100644
--- a/source/et/sw/source/uibase/docvw.po
+++ b/source/et/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-01-11 20:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Rakendatud lõigustiilid"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/et/sw/source/uibase/ribbar.po b/source/et/sw/source/uibase/ribbar.po
index 0f1bd20f51a..01bbbe11da3 100644
--- a/source/et/sw/source/uibase/ribbar.po
+++ b/source/et/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-22 23:39+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Valemi tekst"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/et/sw/source/uibase/uiview.po b/source/et/sw/source/uibase/uiview.po
index 584026409e8..8a7c7eb48b2 100644
--- a/source/et/sw/source/uibase/uiview.po
+++ b/source/et/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 04:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Ekspordi lähtetekst..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/et/sw/source/uibase/utlui.po b/source/et/sw/source/uibase/utlui.po
index ed14656199e..adb57e2168d 100644
--- a/source/et/sw/source/uibase/utlui.po
+++ b/source/et/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2017-06-06 21:42+0000\n"
+"PO-Revision-Date: 2017-06-17 22:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496785354.000000\n"
+"X-POOTLE-MTIME: 1497737094.000000\n"
#: attrdesc.src
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"STR_CONTRAST\n"
"string.text"
msgid "Contrast: "
-msgstr "Kontrast: "
+msgstr "Kontrastsus: "
#: attrdesc.src
msgctxt ""
diff --git a/source/et/sw/uiconfig/swriter/ui.po b/source/et/sw/uiconfig/swriter/ui.po
index 93901ec9fe6..d8687b244dc 100644
--- a/source/et/sw/uiconfig/swriter/ui.po
+++ b/source/et/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:01+0000\n"
+"PO-Revision-Date: 2017-06-17 22:09+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496790066.000000\n"
+"X-POOTLE-MTIME: 1497737364.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: inputwinmenu.ui
msgctxt ""
@@ -6111,7 +6111,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Round"
-msgstr ""
+msgstr "Ümardamine"
#: inputwinmenu.ui
msgctxt ""
@@ -6120,7 +6120,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Percent"
-msgstr ""
+msgstr "Protsent"
#: inputwinmenu.ui
msgctxt ""
@@ -6129,7 +6129,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Square Root"
-msgstr ""
+msgstr "Ruutjuur"
#: inputwinmenu.ui
msgctxt ""
@@ -6138,7 +6138,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Power"
-msgstr ""
+msgstr "Aste"
#: inputwinmenu.ui
msgctxt ""
@@ -6147,7 +6147,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Operators"
-msgstr ""
+msgstr "Tehtemärgid"
#: inputwinmenu.ui
msgctxt ""
@@ -6156,7 +6156,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "List Separator"
-msgstr ""
+msgstr "Loendi eraldaja"
#: inputwinmenu.ui
msgctxt ""
@@ -6165,7 +6165,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Equal"
-msgstr ""
+msgstr "Võrdne"
#: inputwinmenu.ui
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Not Equal"
-msgstr ""
+msgstr "Pole võrdne"
#: inputwinmenu.ui
msgctxt ""
@@ -6183,7 +6183,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Less Than or Equal"
-msgstr ""
+msgstr "Väiksem või võrdne"
#: inputwinmenu.ui
msgctxt ""
@@ -6192,7 +6192,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Greater Than or Equal"
-msgstr ""
+msgstr "Suurem või võrdne"
#: inputwinmenu.ui
msgctxt ""
@@ -6201,7 +6201,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Less"
-msgstr ""
+msgstr "Väiksem"
#: inputwinmenu.ui
msgctxt ""
@@ -6210,7 +6210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Greater"
-msgstr ""
+msgstr "Suurem"
#: inputwinmenu.ui
msgctxt ""
@@ -6219,7 +6219,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean Or"
-msgstr ""
+msgstr "Loogiline VÕI"
#: inputwinmenu.ui
msgctxt ""
@@ -6228,7 +6228,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean Xor"
-msgstr ""
+msgstr "Loogiline VÄLISTAV VÕI"
#: inputwinmenu.ui
msgctxt ""
@@ -6237,7 +6237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean And"
-msgstr ""
+msgstr "Loogiline JA"
#: inputwinmenu.ui
msgctxt ""
@@ -6246,7 +6246,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean Not"
-msgstr ""
+msgstr "Loogiline EI"
#: inputwinmenu.ui
msgctxt ""
@@ -9991,7 +9991,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge"
-msgstr ""
+msgstr "Ühendamine"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10000,7 +10000,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select"
-msgstr ""
+msgstr "Valimine"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10009,7 +10009,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calc"
-msgstr ""
+msgstr "Arvutamine"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10315,7 +10315,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Merge"
-msgstr ""
+msgstr "Ühendamine"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10324,7 +10324,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sele_ct"
-msgstr ""
+msgstr "Valimine"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10333,7 +10333,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Calc"
-msgstr ""
+msgstr "Arvutamine"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10387,7 +10387,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Com_pare"
-msgstr ""
+msgstr "Võrdlemine"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10405,7 +10405,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_raw"
-msgstr ""
+msgstr "Joonistamine"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10468,7 +10468,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3_D"
-msgstr ""
+msgstr "Ruumilisus"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10621,7 +10621,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness & Contrast"
-msgstr ""
+msgstr "Heledus ja kontrastsus −20%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10630,7 +10630,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness"
-msgstr ""
+msgstr "Heledus −20%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10639,7 +10639,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Contrast"
-msgstr ""
+msgstr "Kontrastsus −20%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10648,7 +10648,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "0% Brightness & Contrast"
-msgstr ""
+msgstr "Heledus ja kontrastsus 0%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10657,7 +10657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness"
-msgstr ""
+msgstr "Heledus +20%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10666,7 +10666,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Contrast"
-msgstr ""
+msgstr "Kontrastsus +20%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10675,7 +10675,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness & Contrast"
-msgstr ""
+msgstr "Heledus ja kontrastsus +20%"
#: notebookbar_groups.ui
msgctxt ""
@@ -10684,7 +10684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Red"
-msgstr ""
+msgstr "Punaseks toonitud"
#: notebookbar_groups.ui
msgctxt ""
@@ -10693,7 +10693,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Blue"
-msgstr ""
+msgstr "Siniseks toonitud"
#: notebookbar_groups.ui
msgctxt ""
@@ -10702,7 +10702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Green"
-msgstr ""
+msgstr "Roheliseks toonitud"
#: notebookbar_groups.ui
msgctxt ""
@@ -10711,7 +10711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Orange"
-msgstr ""
+msgstr "Oranžiks toonitud"
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/et/vcl/source/src.po b/source/et/vcl/source/src.po
index e79ebb38385..f932fcbbaf0 100644
--- a/source/et/vcl/source/src.po
+++ b/source/et/vcl/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-06-05 20:48+0000\n"
+"PO-Revision-Date: 2017-06-14 19:08+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695702.000000\n"
+"X-POOTLE-MTIME: 1497467303.000000\n"
#: app.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"SV_BUTTONTEXT_SCREENSHOT\n"
"string.text"
msgid "~Screenshot"
-msgstr ""
+msgstr "Ekraanipilt"
#: fpicker.src
msgctxt ""
diff --git a/source/et/vcl/uiconfig/ui.po b/source/et/vcl/uiconfig/ui.po
index 55953a423eb..6c218ea23de 100644
--- a/source/et/vcl/uiconfig/ui.po
+++ b/source/et/vcl/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-06-05 20:48+0000\n"
+"PO-Revision-Date: 2017-06-14 19:08+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496695739.000000\n"
+"X-POOTLE-MTIME: 1497467336.000000\n"
#: cupspassworddialog.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Special Character..."
-msgstr ""
+msgstr "Erimärk..."
#: errornocontentdialog.ui
msgctxt ""
diff --git a/source/et/xmlsecurity/uiconfig/ui.po b/source/et/xmlsecurity/uiconfig/ui.po
index e2895b0943c..163eb17d3e0 100644
--- a/source/et/xmlsecurity/uiconfig/ui.po
+++ b/source/et/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-05 20:49+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496695741.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Eemalda"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/eu/accessibility/source/helper.po b/source/eu/accessibility/source/helper.po
index 568ccb385b7..56acb0c3ba9 100644
--- a/source/eu/accessibility/source/helper.po
+++ b/source/eu/accessibility/source/helper.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-14 12:22+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 17:02+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492172568.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497373352.000000\n"
#: accessiblestrings.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"RID_STR_ACC_PANEL_DESCRIPTION\n"
"string.text"
msgid "Please press enter to go into child control for more operations"
-msgstr "Sakatu Sartu kontrol umera joateko eta eragiketa gehiago egiteko"
+msgstr "Sakatu 'Enter' kontrol umera joateko eta eragiketa gehiago egiteko"
#: accessiblestrings.src
msgctxt ""
diff --git a/source/eu/cui/source/customize.po b/source/eu/cui/source/customize.po
index 3e90a97c68f..68fe6d70894 100644
--- a/source/eu/cui/source/customize.po
+++ b/source/eu/cui/source/customize.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-02-23 17:46+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-12 06:56+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1456249575.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497250592.000000\n"
#: cfg.src
msgctxt ""
@@ -322,7 +322,7 @@ msgctxt ""
"RID_SVXSTR_EVENT_MAILMERGE\n"
"string.text"
msgid "Printing of form letters started"
-msgstr "Gutun inprimakiaren inprimaketa hasten"
+msgstr "Gutun-inprimakien inprimaketa hasten"
#: macropg.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"RID_SVXSTR_EVENT_MAILMERGE_END\n"
"string.text"
msgid "Printing of form letters finished"
-msgstr "Gutun inprimakiaren inprimaketa amaituta"
+msgstr "Gutun-inprimakien inprimaketa amaituta"
#: macropg.src
msgctxt ""
diff --git a/source/eu/cui/uiconfig/ui.po b/source/eu/cui/uiconfig/ui.po
index bf5740a5330..3a5b3336e33 100644
--- a/source/eu/cui/uiconfig/ui.po
+++ b/source/eu/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-28 07:46+0000\n"
+"PO-Revision-Date: 2017-06-16 06:19+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495957583.000000\n"
+"X-POOTLE-MTIME: 1497593979.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -2768,7 +2768,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoSpellcheck"
-msgstr "Ortografia-egiaztatze automatikoa"
+msgstr "Ortografia-egiaztapen automatikoa"
#: colorconfigwin.ui
msgctxt ""
@@ -15394,7 +15394,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hexadecimal:"
-msgstr "Hexadezimala:"
+msgstr "Hamaseitarra:"
#: specialcharacters.ui
msgctxt ""
diff --git a/source/eu/desktop/source/deployment/gui.po b/source/eu/desktop/source/deployment/gui.po
index d7d1625d195..6be8b9ae4d4 100644
--- a/source/eu/desktop/source/deployment/gui.po
+++ b/source/eu/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:18+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 05:50+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467663504.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498024225.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "Hedapenen instalazioa desgaituta dago. Kontsultatu zure sistema-administratzailearekin informazio gehiagorako."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "Hedapenak kentzea desgaituta dago. Kontsultatu zure sistema-administratzailearekin informazio gehiagorako."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/eu/dictionaries/gu_IN.po b/source/eu/dictionaries/gu_IN.po
index 1fcbb7e997c..348af0059f0 100644
--- a/source/eu/dictionaries/gu_IN.po
+++ b/source/eu/dictionaries/gu_IN.po
@@ -3,16 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-10-07 14:45+0200\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-06-16 06:27+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: none\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497594450.000000\n"
#: description.xml
msgctxt ""
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Gujarati spelling dictionary"
-msgstr "Gujeratieraren ortografia-egiaztatzailea"
+msgstr "Gujarateraren ortografia-egiaztatzailea"
diff --git a/source/eu/editeng/source/items.po b/source/eu/editeng/source/items.po
index 3e84f55d0fb..d1db1ae61ea 100644
--- a/source/eu/editeng/source/items.po
+++ b/source/eu/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-22 17:53+0000\n"
+"PO-Revision-Date: 2017-06-21 05:58+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495475587.000000\n"
+"X-POOTLE-MTIME: 1498024722.000000\n"
#: page.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"RID_SVXITEMS_ITALIC_OBLIQUE\n"
"string.text"
msgid "Oblique italic"
-msgstr "Etzan okerra"
+msgstr "Zeihar etzana"
#: svxitems.src
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"RID_SVXITEMS_OL_BOLDDASHDOT\n"
"string.text"
msgid "Overline (dot dash, bold)"
-msgstr "Goimarra (puntua marra, lodia)"
+msgstr "Goimarra (puntua marra, lodia)"
#: svxitems.src
msgctxt ""
diff --git a/source/eu/editeng/uiconfig/ui.po b/source/eu/editeng/uiconfig/ui.po
index 7f102627fa5..c39bbb6f465 100644
--- a/source/eu/editeng/uiconfig/ui.po
+++ b/source/eu/editeng/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-24 16:11+0000\n"
+"PO-Revision-Date: 2017-06-12 16:17+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493050266.000000\n"
+"X-POOTLE-MTIME: 1497284221.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr "_Ortografia..."
+msgstr "_Ortografia-egiaztapena..."
#: spellmenu.ui
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared.po b/source/eu/helpcontent2/source/text/sbasic/shared.po
index 14bf3fbe8e1..949323b26f3 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-06 15:29+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496762969.000000\n"
#: 00000002.xhp
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Errore-kodeak </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33041,6 +33073,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Erabili beharreko osagaiaren testuinguru lehenetsia itzultzen du, zerbitzuak XmultiServiceFactory bidez instantziatzen badira. Informazio gehiago lortzeko, ikusi <item type=\"literal\">Garaitzailearen gidako </item> <item type=\"literal\">Professional UNO</item> kapitulua <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> helbidean."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index 698d1ff2ce0..affff950f1b 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 15:34+0000\n"
+"PO-Revision-Date: 2017-06-19 19:59+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496763285.000000\n"
+"X-POOTLE-MTIME: 1497902365.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"par_id3882869\n"
"help.text"
msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
-msgstr ""
+msgstr "Ikusi, baita ere, <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Baldintzapeko zenbatzea eta batuketa</link> izeneko wiki-orria."
#: 04060101.xhp
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"par_id3156133\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values in the DatabaseField column.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT : zenbakizko balioak izan eta zehaztutako bilaketa-irizpideak betetzen dituzten datu-baseko errenkaden (erregistroen) kopurua kontatzen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT funtzioak zenbakizko balioak izan eta zehaztutako bilaketa-irizpideak betetzen dituzten datu-baseko errenkaden (erregistroen) kopurua kontatzen du.</ahelp>"
#: 04060101.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_id3153273\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNT returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr ""
+msgstr "'Datu-baseko eremua' argumentua sartzen ez bada, DCOUNT funtzioak 'Irizpidea' betetzen duten erregistro guztien kopurua itzuliko du.<embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
#: 04060101.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"par_id3153274\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNTA returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr ""
+msgstr "'Datu-baseko eremua' argumentua sartzen ez bada, DCOUNTA funtzioak 'Irizpidea' betetzen duten erregistro guztien kopurua itzuliko du.<embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
#: 04060101.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings."
-msgstr ""
+msgstr "Datak formulen zati gisa sartzean, daten bereizle modura erabilitako barrak eta marratxoak eragiketa aritmetikotzat hartzen dira. Hortaz, formatu horretan sartutako datak ez dira datatzat hartzen eta kalkulu okerrak ematen ditu. Datak formulen zati gisa interpreta ez daitezen, erabili DATE funtzioa, esaterako DATE(1954;7;20), edo kokatu data komatxo artean eta erabili ISO 8601 notazioa, esaterako \"1954-07-20\". Ez erabili hizkuntzaren arabera aldatzen diren data-formatuak, esaterako \"07/20/54\", kalkuluak erroreak eman ditzake dokumentua beste hizkuntza-ezarpen bat erabilita kargatzen bada."
#: 04060102.xhp
msgctxt ""
@@ -8742,7 +8742,7 @@ msgctxt ""
"par_id31548521\n"
"help.text"
msgid "<item type=\"input\">=IFNA(D3;D4)</item> returns the value of D3 if D3 does not result in an #N/A error, or D4 if it does."
-msgstr ""
+msgstr "<item type=\"input\">=IFNA(D3;D4)</item> funtzioak D3 gelaxkaren balioa itzultzen du, D3k ez badu #N/A errorea ematen, edo D4 ematen badu."
#: 04060104.xhp
msgctxt ""
@@ -9070,7 +9070,7 @@ msgctxt ""
"hd_id3153694\n"
"help.text"
msgid "N"
-msgstr ""
+msgstr "N"
#: 04060104.xhp
msgctxt ""
@@ -9078,7 +9078,7 @@ msgctxt ""
"par_id3150405\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_N\">Emandako parametroaren zenbakizko balioa itzultzen du. 0 itzultzen du parametroa testua bada edo FALSE bada.</ahelp>"
#: 04060104.xhp
msgctxt ""
@@ -9110,7 +9110,7 @@ msgctxt ""
"par_id3151101\n"
"help.text"
msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
-msgstr ""
+msgstr "<emph>Balioa</emph> zenbaki bihurtuko den parametroa da. N() funtzioak zenbakizko balioa itzultzen du, posible bada. TRUE eta FALSE balio logikoetarako, berriz, 1 eta 0 itzultzen du, hurrenez hurren. Testuaren kasuan, 0 itzultzen du."
#: 04060104.xhp
msgctxt ""
@@ -9238,7 +9238,7 @@ msgctxt ""
"par_id3155900\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value, where 1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_TYP\">Balioaren mota itzultzen du, honako balioen arabera: 1 = zenbakia, 2 = testua, 4 = balio boolearra, 8 = formula, 16 = errore-balioa, 64 = matrizea.</ahelp>"
#: 04060104.xhp
msgctxt ""
@@ -9262,7 +9262,7 @@ msgctxt ""
"par_id3150830\n"
"help.text"
msgid "<emph>Value</emph> is a specific value for which the data type is determined."
-msgstr ""
+msgstr "<emph>Balioa</emph> datu mota zehaztu behar zaion balio jakin bat da."
#: 04060104.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"par_id3150245\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1.$D$2."
-msgstr ""
+msgstr "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Orria1.D2)</item> funtzioak 'file:///X:/dr/test.ods'#$Orria1.$D$2 ematen du."
#: 04060104.xhp
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"par_id3148896\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.ods'#$Sheet1, if the formula in the current document X:\\dr\\own.ods is located in Sheet1."
-msgstr ""
+msgstr "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> funtzioak 'file:///X:/dr/own.ods'#$Orria1 ematen du, baldin eta uneko X:\\dr\\own.ods dokumentuan formula Orria1 orrian badago."
#: 04060104.xhp
msgctxt ""
@@ -9494,7 +9494,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1."
-msgstr ""
+msgstr "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Orria1.D2)</item> funtzioak 'file:///X:/dr/test.ods'#$Orria1 ematen du."
#: 04060104.xhp
msgctxt ""
@@ -9510,7 +9510,7 @@ msgctxt ""
"par_id3151004\n"
"help.text"
msgid "Returns the complete cell address in Lotus™ notation."
-msgstr ""
+msgstr "Gelaxkaren helbide osoa ematen du Lotus™ idazkeran."
#: 04060104.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"par_id3155987\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_XOR\">Returns true if an odd number of arguments evaluates to TRUE.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_XOR\">TRUE (egiazkoa) itzultzen du, argumentuen kopuru bakoiti batek TRUE ematen badu.</ahelp>"
#: 04060105.xhp
msgctxt ""
@@ -11598,7 +11598,7 @@ msgctxt ""
"hd_id9523234\n"
"help.text"
msgid "CSC"
-msgstr ""
+msgstr "CSC"
#: 04060106.xhp
msgctxt ""
@@ -11606,7 +11606,7 @@ msgctxt ""
"par_id4896433\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_COSECANT\">Emandako angeluaren kosekantea itzultzen du (radianetan). Angelu baten kosekantea 1 zati angeluaren sinuaren baliokidea da.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -11654,7 +11654,7 @@ msgctxt ""
"par_id3736803\n"
"help.text"
msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
-msgstr ""
+msgstr "<item type=\"input\">=CSC(PI()/4)</item> funtzioak gutxi gora-behera 1,4142135624 itzultzen du, alegia, PI/4 radianen sinuaren alderantzizkoa."
#: 04060106.xhp
msgctxt ""
@@ -11678,7 +11678,7 @@ msgctxt ""
"hd_id4325650\n"
"help.text"
msgid "CSCH"
-msgstr ""
+msgstr "CSCH"
#: 04060106.xhp
msgctxt ""
@@ -11726,7 +11726,7 @@ msgctxt ""
"par_id5426085\n"
"help.text"
msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
-msgstr ""
+msgstr "<item type=\"input\">=CSCH(1)</item>: 0,8509181282 itzultzen du gutxi gora-behera, alegia, 1 zenbakiaren kosekante hiperbolikoa."
#: 04060106.xhp
msgctxt ""
@@ -12198,7 +12198,7 @@ msgctxt ""
"bm_id3151221\n"
"help.text"
msgid "<bookmark_value>GCD_EXCEL2003 function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>GCD_EXCEL2003 funtzioa</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -12206,7 +12206,7 @@ msgctxt ""
"hd_id3151221\n"
"help.text"
msgid "GCD_EXCEL2003"
-msgstr ""
+msgstr "GCD_EXCEL2003"
#: 04060106.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"par_id3156205\n"
"help.text"
msgid "GCD_EXCEL2003(Number(s))"
-msgstr ""
+msgstr "GCD_EXCEL2003(Zenbakia(k))"
#: 04060106.xhp
msgctxt ""
@@ -12254,7 +12254,7 @@ msgctxt ""
"par_id3159192\n"
"help.text"
msgid "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> returns 5."
-msgstr ""
+msgstr "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item>: 5 itzultzen du."
#: 04060106.xhp
msgctxt ""
@@ -12326,7 +12326,7 @@ msgctxt ""
"bm_id3154230\n"
"help.text"
msgid "<bookmark_value>LCM_EXCEL2003 function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>LCM_EXCEL2003 funtzioa</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -12334,7 +12334,7 @@ msgctxt ""
"hd_id3154230\n"
"help.text"
msgid "LCM_EXCEL2003"
-msgstr ""
+msgstr "LCM_EXCEL2003"
#: 04060106.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id3154395\n"
"help.text"
msgid "LCM_EXCEL2003(Number(s))"
-msgstr ""
+msgstr "LCM_EXCEL2003(Zenbakia(k))"
#: 04060106.xhp
msgctxt ""
@@ -12382,7 +12382,7 @@ msgctxt ""
"par_id3145135\n"
"help.text"
msgid "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> returns 75."
-msgstr ""
+msgstr "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item>: 75 itzultzen du."
#: 04060106.xhp
msgctxt ""
@@ -12902,7 +12902,7 @@ msgctxt ""
"par_id3153454\n"
"help.text"
msgid "CEILING(Number; Significance; Mode)"
-msgstr "CEILING(zenbakia, zk. esanguratsua; modua)"
+msgstr "CEILING(zenbakia, esangura; modua)"
#: 04060106.xhp
msgctxt ""
@@ -12918,7 +12918,7 @@ msgctxt ""
"par_id3155000\n"
"help.text"
msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
-msgstr "<emph>Zk. esanguratsua</emph>: balio horren multiplora biribilduko da gora."
+msgstr "<emph>Esangura</emph>: balio horren multiplora biribilduko da gora."
#: 04060106.xhp
msgctxt ""
@@ -12926,7 +12926,7 @@ msgctxt ""
"par_id3155020\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded away from zero. If the Mode value is equal to zero or is not given, negative numbers are rounded towards zero."
-msgstr ""
+msgstr "<emph>Modua</emph> aukerako balioa da. 'Modua' balioa ematen bada eta zero ez den beste bat bada, eta 'Zenbakia' eta 'Esangura' negatiboak badira, biribiltzea 'Zenbakia' balio absolutuan oinarrituko da, alegia, zenbaki negatiboak zerotik urrunduta biribilduko dira. 'Modua' balioa zero bada edo ematen ez bada, zenbaki negatikoak zerora hurbilduta biribilduko dira."
#: 04060106.xhp
msgctxt ""
@@ -12934,7 +12934,7 @@ msgctxt ""
"par_id3163792\n"
"help.text"
msgid "If the spreadsheet is exported to MS Excel, the CEILING function is exported as the equivalent CEILING.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that exists since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions. Note that CEILING.XCL always rounds away from zero."
-msgstr ""
+msgstr "Kalkulu-orria MS Excel bertsiora esportatzen bada, CEILING funtzioa Excel 2013 bertsiotik aurrera dagoen CEILING.MATH funtzio gisa esportatuko da. Kalkulu-orria Excel bertsio zaharragoetan erabiltzea pentsatu baduzu, erabili Excel 2010 bertsiotik dagoen CEILING.PRECISE edo Excel bertsio guztiekin bateragarria den CEILING.XCL. Kontuan izan azken horrek beti zerotik urrunduta biribiltzen dituela balioak."
#: 04060106.xhp
msgctxt ""
@@ -12990,7 +12990,7 @@ msgctxt ""
"par_id2953422\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CEIL_MS\">Rounds a number up to the nearest multiple of Significance, regardless of sign of Significance</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_CEIL_MS\">Zenbaki bat gorantz biribiltzen du, 'Esangura' balioaren multiplo hurbilenera, kontuan hartu gabe 'Esangura' balioaren ikurra</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -13006,7 +13006,7 @@ msgctxt ""
"par_id2953454\n"
"help.text"
msgid "CEILING.PRECISE(Number; Significance)"
-msgstr ""
+msgstr "CEILING.PRECISE(Zenbakia; Esangura)"
#: 04060106.xhp
msgctxt ""
@@ -13022,7 +13022,7 @@ msgctxt ""
"par_id2955000\n"
"help.text"
msgid "<emph>Significance</emph> (optional) is the number to whose multiple the value is to be rounded up."
-msgstr "<emph>Zk. esanguratsua</emph>: balio horren multiplora biribilduko da gora."
+msgstr "<emph>Esangura</emph>: balio horren multiplora biribilduko da gora."
#: 04060106.xhp
msgctxt ""
@@ -13062,7 +13062,7 @@ msgctxt ""
"par_id8953422\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CEIL_ISO\">Rounds a number up to the nearest multiple of Significance, regardless of sign of Significance</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_CEIL_ISO\">Zenbaki bat gorantz biribiltzen du, 'Esangura' balioaren multiplo hurbilenera, kontuan hartu gabe 'Esangura' balioaren ikurra</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -13078,7 +13078,7 @@ msgctxt ""
"par_id8953454\n"
"help.text"
msgid "ISO.CEILING(Number; Significance)"
-msgstr ""
+msgstr "ISO.CEILING(zenbakia; esangura)"
#: 04060106.xhp
msgctxt ""
@@ -13094,7 +13094,7 @@ msgctxt ""
"par_id8955000\n"
"help.text"
msgid "<emph>Significance</emph> (optional) is the number to whose multiple the value is to be rounded up."
-msgstr "<emph>Zk. esanguratsua</emph> (aukerazkoa): balio horren multiplora biribilduko da gora."
+msgstr "<emph>Esangura</emph> (aukerazkoa): balio horren multiplora biribilduko da gora."
#: 04060106.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id9954962\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_SECANT\">Emandako angeluaren sekantea itzultzen du (radianetan). Angelu baten sekantea 1 zati angeluaren kosinuaren baliokidea da.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -14126,7 +14126,7 @@ msgctxt ""
"par_id6935513\n"
"help.text"
msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
-msgstr ""
+msgstr "<item type=\"input\">=SEC(PI()/4)</item> funtzioak gutxi gora-behera 1,4142135624 itzultzen du, alegia, PI/4 radianen kosinuaren alderantzizkoa."
#: 04060106.xhp
msgctxt ""
@@ -15270,7 +15270,7 @@ msgctxt ""
"par_id2957432\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FLOOR_MS\">Rounds a number down to the nearest multiple of Significance, regardless of sign of Significance</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FLOOR_MS\">Zenbaki bat beherantz biribiltzen du, 'Esangura' balioaren multiplo hurbilenera, kontuan hartu gabe 'Esangura' balioaren ikurra</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -15286,7 +15286,7 @@ msgctxt ""
"par_id2957464\n"
"help.text"
msgid "FLOOR.PRECISE(Number; Significance)"
-msgstr ""
+msgstr "FLOOR.PRECISE(zenbakia; esangura)"
#: 04060106.xhp
msgctxt ""
@@ -15302,7 +15302,7 @@ msgctxt ""
"par_id2957497\n"
"help.text"
msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
-msgstr "<emph>Zk. esanguratsua</emph>: zenbakia behera, balio horren multiplora, biribilduko da"
+msgstr "<emph>Esangura</emph>: zenbakia behera, balio horren multiplora, biribilduko da"
#: 04060106.xhp
msgctxt ""
@@ -15358,7 +15358,7 @@ msgctxt ""
"par_id3157464\n"
"help.text"
msgid "FLOOR(Number; Significance; Mode)"
-msgstr "FLOOR(zenbakia, zk. esanguratsua; modua)"
+msgstr "FLOOR(zenbakia, esangura; modua)"
#: 04060106.xhp
msgctxt ""
@@ -15374,7 +15374,7 @@ msgctxt ""
"par_id3157497\n"
"help.text"
msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
-msgstr "<emph>Zk. esanguratsua</emph>: zenbakia behera, balio horren multiplora, biribilduko da"
+msgstr "<emph>Esangura</emph>: zenbakia behera, balio horren multiplora, biribilduko da"
#: 04060106.xhp
msgctxt ""
@@ -15382,7 +15382,7 @@ msgctxt ""
"par_id3157517\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded towards zero. If the Mode value is equal to zero or is not given, negative numbers are rounded away from zero."
-msgstr ""
+msgstr "<emph>Modua</emph> aukerako balioa da. 'Modua' balioa ematen bada eta zero ez den beste bat bada, eta 'Zenbakia' eta 'Esangura' negatiboak badira, biribiltzea 'Zenbakia' balio absolutuan oinarrituko da, alegia, zenbaki negatiboak zerora hurbilduta biribilduko dira. 'Modua' balioa zero bada edo ematen ez bada, zenbaki negatiboak zerotik urrunduta biribilduko dira."
#: 04060106.xhp
msgctxt ""
@@ -15390,7 +15390,7 @@ msgctxt ""
"par_id3163894\n"
"help.text"
msgid "If the spreadsheet is exported to MS Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that exists since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions. Note that FLOOR.XCL always rounds towards zero."
-msgstr ""
+msgstr "Kalkulu-orria MS Excel bertsiora esportatzen bada, FLOOR funtzioa Excel 2013 bertsiotik aurrera dagoen FLOOR.MATH funtzio gisa esportatuko da. Kalkulu-orria Excel bertsio zaharragoetan erabiltzea pentsatu baduzu, erabili Excel 2010 bertsiotik dagoen FLOOR.PRECISE edo Excel bertsio guztiekin bateragarria den FLOOR.XCL. Kontuan izan azken horrek beti zerora hurbilduta biribiltzen dituela balioak."
#: 04060106.xhp
msgctxt ""
@@ -15854,7 +15854,7 @@ msgctxt ""
"par_id5092318\n"
"help.text"
msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press F9."
-msgstr ""
+msgstr "Funtzio honek ausazko zenbaki berria sortzen du Calc aplikazioak kalkulu bat errepikatzen duen bakoitzean. Calc-ek birkalkulua egin dezan eskuz behartzeko, sakatu F9."
#: 04060106.xhp
msgctxt ""
@@ -17518,7 +17518,7 @@ msgctxt ""
"par_id3166145\n"
"help.text"
msgid "TRANSPOSE(A1:D2)"
-msgstr ""
+msgstr "TRANSPOSE(A1:D2)"
#: 04060107.xhp
msgctxt ""
@@ -21486,7 +21486,7 @@ msgctxt ""
"bm_id3145389\n"
"help.text"
msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>testua gelaxketan; funtzioak</bookmark_value> <bookmark_value>funtzioak; testu-funtzioak</bookmark_value> <bookmark_value>funtzioen morroia;testua</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -21494,7 +21494,7 @@ msgctxt ""
"hd_id3145389\n"
"help.text"
msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Text Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Testu-funtzioak</link></variable>"
#: 04060110.xhp
msgctxt ""
@@ -21502,7 +21502,7 @@ msgctxt ""
"par_id3152986\n"
"help.text"
msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions. </variable>"
-msgstr ""
+msgstr "<variable id=\"texttext\">Atal honek <emph>Testu-funtzioen</emph> deskribapenak ditu. </variable>"
#: 04060110.xhp
msgctxt ""
@@ -21606,7 +21606,7 @@ msgctxt ""
"par_id9912411\n"
"help.text"
msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr ""
+msgstr "Ikusi <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> bihurketa-taula bat kontsultatzeko."
#: 04060110.xhp
msgctxt ""
@@ -22358,7 +22358,7 @@ msgctxt ""
"par_id3146149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Returns the position of a string of text within another string.</ahelp>You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">Testu-kate batek beste kate baten barruan duen kokapena itzultzen du.</ahelp> Bilaketa non hasi ere defini dezakezu. Bilaketa-terminoa zenbaki bat edo edozein karaktere-kate izan daiteke. Bilaketak maiuskulak eta minuskulak bereizten ditu."
#: 04060110.xhp
msgctxt ""
@@ -22534,7 +22534,7 @@ msgctxt ""
"par_id1551561\n"
"help.text"
msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr ""
+msgstr "Ikusi <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> bihurketa-taula bat kontsultatzeko."
#: 04060110.xhp
msgctxt ""
@@ -25670,7 +25670,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: 04060112.xhp
msgctxt ""
@@ -25694,7 +25694,7 @@ msgctxt ""
"par_id3149783\n"
"help.text"
msgid "2"
-msgstr ""
+msgstr "2"
#: 04060112.xhp
msgctxt ""
@@ -25718,7 +25718,7 @@ msgctxt ""
"par_id3153721\n"
"help.text"
msgid "4"
-msgstr ""
+msgstr "4"
#: 04060112.xhp
msgctxt ""
@@ -25742,7 +25742,7 @@ msgctxt ""
"par_id3163820\n"
"help.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: 04060112.xhp
msgctxt ""
@@ -25766,7 +25766,7 @@ msgctxt ""
"par_id3145083\n"
"help.text"
msgid "8"
-msgstr ""
+msgstr "8"
#: 04060112.xhp
msgctxt ""
@@ -26022,7 +26022,7 @@ msgctxt ""
"par_id3149769\n"
"help.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: 04060112.xhp
msgctxt ""
@@ -26046,7 +26046,7 @@ msgctxt ""
"par_id3145418\n"
"help.text"
msgid "2"
-msgstr ""
+msgstr "2"
#: 04060112.xhp
msgctxt ""
@@ -26070,7 +26070,7 @@ msgctxt ""
"par_id3155362\n"
"help.text"
msgid "4"
-msgstr ""
+msgstr "4"
#: 04060112.xhp
msgctxt ""
@@ -26094,7 +26094,7 @@ msgctxt ""
"par_id3149158\n"
"help.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: 04060112.xhp
msgctxt ""
@@ -26118,7 +26118,7 @@ msgctxt ""
"par_id3166450\n"
"help.text"
msgid "8"
-msgstr ""
+msgstr "8"
#: 04060112.xhp
msgctxt ""
@@ -26398,7 +26398,7 @@ msgctxt ""
"par_id3154117\n"
"help.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: 04060112.xhp
msgctxt ""
@@ -26422,7 +26422,7 @@ msgctxt ""
"par_id3153666\n"
"help.text"
msgid "2"
-msgstr ""
+msgstr "2"
#: 04060112.xhp
msgctxt ""
@@ -26446,7 +26446,7 @@ msgctxt ""
"par_id3150408\n"
"help.text"
msgid "4"
-msgstr ""
+msgstr "4"
#: 04060112.xhp
msgctxt ""
@@ -26470,7 +26470,7 @@ msgctxt ""
"par_id3146912\n"
"help.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: 04060112.xhp
msgctxt ""
@@ -26494,7 +26494,7 @@ msgctxt ""
"par_id3150827\n"
"help.text"
msgid "8"
-msgstr ""
+msgstr "8"
#: 04060112.xhp
msgctxt ""
@@ -28246,7 +28246,7 @@ msgctxt ""
"par_id3155522\n"
"help.text"
msgid "IMAGINARY(\"ComplexNumber\")"
-msgstr "IMAGINARY(zenbaki konplexua)"
+msgstr "IMAGINARY(\"zenbaki konplexua\")"
#: 04060116.xhp
msgctxt ""
@@ -56782,7 +56782,7 @@ msgctxt ""
"par_id962376732432\n"
"help.text"
msgid "<variable id=\"func_imag_zero\">The imaginary part is equal to zero, so it is not displayed in the result.</variable>"
-msgstr ""
+msgstr "<variable id=\"func_imag_zero\">Zati irudikaria zero da, eta ez da emaitzan bistaratzen.</variable>"
#: ful_func.xhp
msgctxt ""
@@ -56790,7 +56790,7 @@ msgctxt ""
"par_id29750345314640\n"
"help.text"
msgid "The result is presented in the string format and has the character \"i\" or \"j\" as an imaginary unit."
-msgstr ""
+msgstr "Emaitza kate-formatuan bistaratzen da eta \"i\" edo \"j\" karakterea du unitate irudikari gisa."
#: func_aggregate.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/04.po b/source/eu/helpcontent2/source/text/scalc/04.po
index 96ba77afdc4..b20d8358264 100644
--- a/source/eu/helpcontent2/source/text/scalc/04.po
+++ b/source/eu/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-06 15:43+0000\n"
+"PO-Revision-Date: 2017-06-13 09:47+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496763784.000000\n"
+"X-POOTLE-MTIME: 1497347253.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3155067\n"
"help.text"
msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
-msgstr "<emph>Sarrerako lerroan</emph> sartutako formula batekin hautatutako gelaxken barruti bat betetzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Sartu. Mantendu sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Sartu+Maius sarrerako gelaxkaren gelaxka-formatua gelaxken barruti osoari aplikatzeko."
+msgstr "<emph>Sarrerako lerroan</emph> sartutako formula batekin hautatutako gelaxken barruti bat betetzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Sartu. Mantendu sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Sartu+Maius sarrerako gelaxkaren gelaxka-formatua gelaxken barruti osoari aplikatzeko."
#: 01020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/schart/01.po b/source/eu/helpcontent2/source/text/schart/01.po
index a4998ed6e2e..999503b288f 100644
--- a/source/eu/helpcontent2/source/text/schart/01.po
+++ b/source/eu/helpcontent2/source/text/schart/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 20:54+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-19 19:52+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496782450.000000\n"
+"X-POOTLE-MTIME: 1497901941.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "Honako erregresio motak daude erabilgarri:"
#: 04050100.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id9251991\n"
"help.text"
msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
-msgstr ""
+msgstr "<emph>Erregresio linealak</emph><item type=\"literal\">y=m*x+b</item> ekuazioa jarraitzen du."
#: 04050100.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id9244361\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(Data_Y;Data_X)"
-msgstr ""
+msgstr "r<sup>2</sup> = RSQ(Y_datua;X_datua)"
#: 04050100.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"par_id2083498\n"
"help.text"
msgid "Besides m, b and r<sup>2</sup> the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
-msgstr ""
+msgstr "m, b eta r<sup>2</sup> balioez gain, <emph>LINEST</emph> matrize-funtzioak estatistika gehigarriak ematen ditu erregresio-analisi baterako."
#: 04050100.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"hd_id2538834\n"
"help.text"
msgid "The logarithmic regression equation"
-msgstr ""
+msgstr "Erregresio logaritmikoaren ekuazioa"
#: 04050100.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id394299\n"
"help.text"
msgid "The <emph>logarithmic regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
-msgstr ""
+msgstr "<emph>Erregresio logaritmikoak</emph><item type=\"literal\">y=a*ln(x)+b</item> ekuazioa jarraitzen du."
#: 04050100.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"par_id5649281\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(Data_Y;LN(Data_X))"
-msgstr ""
+msgstr "r<sup>2</sup> = RSQ(Y_datua;LN(X_datua))"
#: 04050100.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"par_id2164067\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sartu hasierako angelua, 0 eta 359 graduen artekoa. Gezietan klik egin dezakezu bistaratutako balioa aldatzeko.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"par_id0305200910524811\n"
"help.text"
msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Falta diren balioetarako, ez da daturik erakutsiko. Aukera hori da lehenetsia 'Zutabea', 'Barra', 'Marra' eta 'Sarea' diagrama motetarako.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id030520091052489\n"
"help.text"
msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Falta diren balioetarako, Y balioa zero gisa erakutsiko da. Aukera hori da lehenetsia 'Area' diagrama motetarako.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"par_id0305200910524938\n"
"help.text"
msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Falta diren balioetarako, balio auzokideetatik egindako interpolazioa erakutsiko da. Aukera hori da lehenetsia 'XY' diagrama motetarako.</ahelp>"
#: 04060000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared.po b/source/eu/helpcontent2/source/text/shared.po
index aa6b3c976bc..d939a13e65b 100644
--- a/source/eu/helpcontent2/source/text/shared.po
+++ b/source/eu/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 15:41+0000\n"
+"PO-Revision-Date: 2017-06-17 07:41+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496245260.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497685299.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Hautatu estrusio-sakonera bat."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Hautatu estrusio-metodo paraleloa edo perspektibakoa."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Hautatu argiztapenaren norabidea."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Hautatu argiztapenaren intentsitatea."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Hautatu gainazal-materialaren edo hari-bilbearen bistaratzea."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Egin klik hautatutako Fontwork objektuei lerrokatzea aplikatzeko."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Egin klik hautatutako Fontwork objektuei karaktere-tartea aplikatzeko."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Fontwork karaktere-tartearen elkarrizketa-koadroa irekitzen du; karaktere-tartea definitzeko balio berri bat sar dezakezu bertan."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Karaktere-pareen arteko<link href=\"text/shared/00/00000005.xhp#kerning\">tartea</link> aktibatzen eta desaktibatzen du."
#: main0108.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index b22bfff2070..6e6f1a78130 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/helpcontent2/source/text/shared/00.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 17:01+0000\n"
-"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 13:21+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496768500.000000\n"
+"X-POOTLE-MTIME: 1497964874.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "in or ″"
-msgstr ""
+msgstr "hazb. edo ″"
#: 00000003.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3147233\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock2\">Desatrakatzeko eta berriro atrakatzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline> tekla, egin klik bikoitza leihoko area huts batean. 'Estiloak eta formatua' leihoan, ikonotik hurbil dagoen zati grisean egin dezakezu klik bikoitza, <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline> teklari eusten diozun bitartean.</variable>"
#: 00000005.xhp
msgctxt ""
@@ -2958,7 +2958,7 @@ msgctxt ""
"par_id3153896\n"
"help.text"
msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
-msgstr ""
+msgstr "$[officename] aplikazioan CSS1 propietateak esportatzeko HTMLk erabiltzen duen neurri-unitatea. Unitate desberdina ezar daiteke testurako eta HTML dokumentuetarako, <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Orokorra</emph> edo <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Ikusi</emph> aukeran. Esportatuko den dezimal kopurua unitatearen araberakoa da."
#: 00000020.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_id3152778363\n"
"help.text"
msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Karaktere mugatzaile artean dauden testu-gelaxka guztiak esportatzen ditu, 'Testu-mugatzailea' koadroan ezarrita dagoen bereizlearen arabera. Markatuta ez badago, 'Eremu-mugatzailea' karakterea erabilita mugatuta dauden testu-gelaxkak soilik hartuko dira.</ahelp>"
#: 00000207.xhp
msgctxt ""
@@ -7590,7 +7590,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<variable id=\"hangul\">Choose <emph>Tools - Language - Hangul/Hanja Conversion</emph> (Asian language support must be enabled)</variable>"
-msgstr ""
+msgstr "<variable id=\"hangul\">Aukeratu <emph>Tresnak - Hizkuntza - Hangul/Hanja bihurketa</emph> (asiar hizkuntzen euskarriak gaituta egon behar du)</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7598,7 +7598,7 @@ msgctxt ""
"par_idN10705\n"
"help.text"
msgid "<variable id=\"chinese\">Choose <emph>Tools - Language - Chinese Conversion</emph> (Asian language support must be enabled)</variable>"
-msgstr ""
+msgstr "<variable id=\"chinese\">Aukeratu <emph>Tresnak - Hizkuntza - Txinerazko bihurketa</emph> (asiar hizkuntzen euskarriak gaituta egon behar du)</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7606,7 +7606,7 @@ msgctxt ""
"par_idN1071E\n"
"help.text"
msgid "<variable id=\"chineseedit\">Choose <emph>Tools - Language - Chinese Conversion</emph> (Asian language support must be enabled) - <emph>Edit terms</emph> button</variable>"
-msgstr ""
+msgstr "<variable id=\"chineseedit\">Aukeratu <emph>Tresnak - Hizkuntza - Txinerazko bihurketa</emph> (asiar hizkuntzen euskarriak gaituta egon behar du) - <emph>Editatu terminoak</emph> botoia</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7662,7 +7662,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system)</variable>"
-msgstr ""
+msgstr "<variable id=\"makro\">Aukeratu <emph>Tresnak - Makroak - Antolatu makroak - %PRODUCTNAME Basic</emph>, edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">⌥</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (zure sistemak erabiltzen ez badu lehendik)</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button</variable>"
-msgstr ""
+msgstr "<variable id=\"passwort\">Aukeratu <emph>Tresnak - Makroak - Antolatu makroak - %PRODUCTNAME Basic</emph>, sakatu <emph>Antolatzailea</emph> botoia, egin klik <emph>Liburutegiak</emph> fitxan, eta azkenik, egin klik <emph>Pasahitza</emph> botoian</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>, in the <emph>Available language modules </emph>list, select one of the language modules and then click <emph>Edit</emph>."
-msgstr ""
+msgstr "Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - Hizkuntza-ezarpenak - Idazteko laguntza</emph>, <emph>Hizkuntza-modulu erabilgarriak</emph> zerrendan, hautatu hizkuntza-moduluetako bat eta sakatu <emph>Editatu</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8254,7 +8254,7 @@ msgctxt ""
"par_id3159313\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Asian)</emph> (only available if Asian language support is enabled)"
-msgstr ""
+msgstr "Ireki testu-dokumentu bat, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Oinarrizko letra-tipoak (asiarrak)</emph> (asiar hizkuntzen euskarria gaituta badago soilik egongo da erabilgarri)"
#: 00000406.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "<variable id=\"registertabelle\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"registertabelle\">Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Taula</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Aukeratu <emph>Tresnak - Kapitulu-numerazioa - Posizioa</emph> fitxa </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Ikonoa <emph>Irudia</emph> tresna-barran:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -11246,7 +11246,7 @@ msgctxt ""
"par_id3152810\n"
"help.text"
msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"text\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - Testu-atributuak</emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - Definitu testu-atributuak</emph></caseinline><defaultinline><emph>Testua</emph></defaultinline></switchinline><emph> - Testua</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11254,7 +11254,7 @@ msgctxt ""
"par_id3151060\n"
"help.text"
msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"laufext\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - Testu-atributuak</emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - Definitu testu-atributuak</emph></caseinline><defaultinline><emph>Testua</emph></defaultinline></switchinline><emph> - Testu-animazioa</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index 8f50e7f070a..e88097597e0 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 16:02+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-16 06:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496764933.000000\n"
+"X-POOTLE-MTIME: 1497594503.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "<item type=\"menuitem\">Fitxategia - Txantiloiak - Gorde txantiloi gisa</item> erabiltzen baduzu txantiloi bat gordetzeko, txantiloia zure erabiltzailearen txantiloi-karpetan gordeko da. Txantiloi horretan oinarrituta dagoen dokumentu bat irekitzen duzunean, behean deskribatuta dagoen bezalako txantiloi aldatu bat bilatuko da dokumentuarentzat. Dokumentuari lotutako txantiloiari \"txantiloi itsaskor\" dei dakioke."
#: 01020000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Hautatu iturburu-dokumentua azpidokumentuetan banatzeko erabili nahi duzun paragrafo-estiloa edo eskema-maila.</ahelp> Lehenespenez, dokumentu berria sortzen da 1. eskema-maila bakoitzerako."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -6974,7 +6974,7 @@ msgctxt ""
"par_id3153769\n"
"help.text"
msgid "For obscure characters there is a separate variant with capital U and eight hexadecimal digits (XXXXXXXX)."
-msgstr ""
+msgstr "Karaktere bereziagoetarako, beste aldagai bat dago, U maiuskula eta zortzi digitu hamaseitar (XXXXXXXX) erabiltzen dituena."
#: 02100001.xhp
msgctxt ""
@@ -6982,7 +6982,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "For certain symbol fonts the code for special characters may depend on the used font. You can view the codes by choosing <emph>Insert - Special Character</emph>."
-msgstr ""
+msgstr "Ikurren zenbait letra-tipotan, karaktere berezien kodea erabilitako tipoaren araberakoa izan daiteke. Kodeak ikusteko, aukeratu <emph>Txertatu - Karaktere berezia</emph>."
#: 02100001.xhp
msgctxt ""
@@ -10326,7 +10326,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments are displayed as callouts in the sheet when you rest your mouse pointer over a cell with a recorded change. You can also view comments that are attached to a changed cell in the changes list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link> dialog. </caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Iruzkinak bunbuilo gisa erakutsiko dira orrian, saguaren kurtsorea grabatutako aldaketa bat duen gelaxka baten gainean kokatzen duzunean. Aldatutako gelaxkei erantsitako iruzkinak aldaketen zerrendan ere ikus daitezke, <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Kudeatu aldaketak</emph></link> elkarrizketa-koadroan.</caseinline></switchinline>"
#: 02230400.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zehaztutako data eta orduaren arabera iragazten du aldaketa-zerrenda.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -13718,7 +13718,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/languagelb\">Specifies the language setting for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/languagelb\">Hautatutako <switchinline select=\"appl\"><caseinline select=\"CALC\">gelaxka-</caseinline><defaultinline>eremuentzat</defaultinline></switchinline> ezarritako hizkuntza zehazten du. Hizkuntzari <emph>Automatikoa</emph> balioa eman bazaio, $[officename](e)k automatikoki aplikatuko ditu sistemaren hizkuntza lehenetsiari lotutako zenbaki-formatuak. Hautatu edozein hizkuntza, hautatutako <switchinline select=\"appl\"><caseinline select=\"CALC\">gelaxka-</caseinline><defaultinline>eremuen</defaultinline></switchinline> ezarpenak konpontzeko.</ahelp>"
#: 05020300.xhp
msgctxt ""
@@ -13790,7 +13790,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/denominatored\">With fraction format, enter the number of places for the denominator that you want to display.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/denominatored\">Frakzio-formatuarekin, sartu zenbat digitu bistaratuko diren izendatzailean.</ahelp>"
#: 05020300.xhp
msgctxt ""
@@ -15230,7 +15230,7 @@ msgctxt ""
"par_id3143219\n"
"help.text"
msgid "Hours as 00 up to more than 23"
-msgstr ""
+msgstr "Orduak honela: 00 (23 zenbakitik gora ere bai)"
#: 05020301.xhp
msgctxt ""
@@ -15246,7 +15246,7 @@ msgctxt ""
"par_id3150531\n"
"help.text"
msgid "Minutes as 00-59"
-msgstr ""
+msgstr "Minutuak honela: 00-59"
#: 05020301.xhp
msgctxt ""
@@ -15254,7 +15254,7 @@ msgctxt ""
"par_id3150532\n"
"help.text"
msgid "Minutes as 00 up to more than 59"
-msgstr ""
+msgstr "Minutuak honela: 00 (59 zenbakitik gora ere bai)"
#: 05020301.xhp
msgctxt ""
@@ -15278,7 +15278,7 @@ msgctxt ""
"par_id3149507\n"
"help.text"
msgid "Seconds as 00 up to more than 59"
-msgstr ""
+msgstr "Segundoak honela: 00 (59 zenbakitik gora ere bai)"
#: 05020301.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_id180820161926256261\n"
"help.text"
msgid "Punjabi"
-msgstr ""
+msgstr "Punjabera"
#: 05020301.xhp
msgctxt ""
@@ -15558,7 +15558,7 @@ msgctxt ""
"par_id180820161926257295\n"
"help.text"
msgid "Punjabi (Gurmukhi) characters"
-msgstr ""
+msgstr "Punjaberako karaktereak"
#: 05020301.xhp
msgctxt ""
@@ -15566,7 +15566,7 @@ msgctxt ""
"par_id180820161926254282\n"
"help.text"
msgid "Gujarati"
-msgstr ""
+msgstr "Gujaratera"
#: 05020301.xhp
msgctxt ""
@@ -15574,7 +15574,7 @@ msgctxt ""
"par_id180820161926258664\n"
"help.text"
msgid "Gujarati characters"
-msgstr ""
+msgstr "Gujaraterako karaktereak"
#: 05020301.xhp
msgctxt ""
@@ -16558,7 +16558,7 @@ msgctxt ""
"par_id231020161509417889\n"
"help.text"
msgid "Gujarati"
-msgstr "Gujeratiera"
+msgstr "Gujaratera"
#: 05020301.xhp
msgctxt ""
@@ -16694,7 +16694,7 @@ msgctxt ""
"par_id231020161656421782\n"
"help.text"
msgid "(financial)"
-msgstr ""
+msgstr "(finantzarioa)"
#: 05020301.xhp
msgctxt ""
@@ -19790,7 +19790,7 @@ msgctxt ""
"par_id090120160133439102\n"
"help.text"
msgid "<image id=\"img_id090120160131201466\" src=\"media/screenshots/cui/ui/pageformatpage/PageFormatPage.png\" width=\"8.6457in\" height=\"5.9063in\"><alt id=\"alt_id090120160131201466\">Page format tab page</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id090120160131201466\" src=\"media/screenshots/cui/ui/pageformatpage/PageFormatPage.png\" width=\"8.6457in\" height=\"5.9063in\"><alt id=\"alt_id090120160131201466\">'Orrialde-formatua' fitxa-orria</alt></image>"
#: 05040200.xhp
msgctxt ""
@@ -20270,7 +20270,7 @@ msgctxt ""
"par_id3149123\n"
"help.text"
msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Neurri-unitateak aldatzea</link>"
#: 05040200.xhp
msgctxt ""
@@ -31790,7 +31790,7 @@ msgctxt ""
"hd_id3159300\n"
"help.text"
msgid "Add non-breaking space before specific punctuation marks in French text"
-msgstr ""
+msgstr "Gehitu hautsi ezin daitekeen zuriunea puntuazio marken aurretik, frantsesezko testuan"
#: 06040400.xhp
msgctxt ""
@@ -31902,7 +31902,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".\">Resets the quotation marks to the default symbols.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Komatxoak ikur lehenetsietara berrezartzen ditu.</ahelp>"
#: 06040500.xhp
msgctxt ""
@@ -31934,7 +31934,7 @@ msgctxt ""
"par_id3146936\n"
"help.text"
msgid "To access this menu, right-click a misspelled word in your document. To view the misspelled words in your document, choose <emph>Tools - Automatic Spell Checking</emph>."
-msgstr ""
+msgstr "Menu honetara sartzeko, egin klik saguaren eskuineko botoiarekin dokumentuan gaizki idatzitako hitz batean. Gaizki idatzitako hitzak ikusteko, aukeratu <emph>Tresnak - Ortografiaren egiaztapen automatikoa</emph>."
#: 06040500.xhp
msgctxt ""
@@ -31966,7 +31966,7 @@ msgctxt ""
"par_id3154497\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Opens the <link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spellcheck</link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\"><link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Ortografia-egiaztapena</link> elkarrizketa-koadroa irekitzen du.</ahelp>"
#: 06040500.xhp
msgctxt ""
@@ -32966,7 +32966,7 @@ msgctxt ""
"par_id3150495\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Aukeratu zenbakitutako zerrendan erabili nahi duzun karaktere-estiloa.</ahelp> <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Karaktere-estiloa</link> sortu edo editatzeko, ireki <emph>Estiloak eta formatua</emph> leihoa, sakatu 'Karaktere-estiloak' ikonoa, egin eskuineko klik estilo batean, eta aukeratu <emph>Berria</emph>. </caseinline></switchinline>"
#: 06050500.xhp
msgctxt ""
@@ -33870,7 +33870,7 @@ msgctxt ""
"par_idN109EC\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/create\">Creates a new script.</ahelp> The default script editor opens after you enter a name for the script."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/create\">Script berria sortzen du.</ahelp> Script-aren izena idatzi ondoren, script-editorea irekitzen du."
#: 06130000.xhp
msgctxt ""
@@ -33894,7 +33894,7 @@ msgctxt ""
"par_idN10A33\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/edit\">Opens the default script editor for your operating system.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/edit\">Zure sistema eragilean lehenetsitako script-editore irekitzen du.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33910,7 +33910,7 @@ msgctxt ""
"par_idN10A4F\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/rename\">Opens a dialog where you can change the name of the selected script.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/rename\">Hautatutako script-aren izena aldatzea ahalbidetzen duen elkarrizketa-koadro bat irekitzen du.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33926,7 +33926,7 @@ msgctxt ""
"par_idN10A6A\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/delete\">Prompts you to delete the selected script.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/delete\">Hautatutako script-a ezabatzea eskatzen dizu.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -34070,7 +34070,7 @@ msgctxt ""
"par_id3152952\n"
"help.text"
msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Advanced</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:MacroRecorder\">Makro berria grabatzen du.</ahelp> Makroak grabatzeko eginbidea gaituta badago soilik erabili daiteke. Gaitu aukera hori <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Aurreratua</emph> atalean."
#: 06130010.xhp
msgctxt ""
@@ -34406,7 +34406,7 @@ msgctxt ""
"par_id3152952\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Customizes and saves current menu layouts as well as creates new menus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Uneko menuen diseinuak pertsonalizatzen edo gordetzen ditu edo menu berriak sortzen ditu.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34718,7 +34718,7 @@ msgctxt ""
"par_idN10807\n"
"help.text"
msgid "Add Separator"
-msgstr ""
+msgstr "Gehitu bereizlea"
#: 06140100.xhp
msgctxt ""
@@ -35238,7 +35238,7 @@ msgctxt ""
"par_idN1060A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Name dialog, where you can enter the name of a new toolbar and select the location of the new toolbar.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">'Izena' elkarrizketa-koadroa irekitzen du, tresna-barra berriaren izena sartu dezazun eta haren kokapena hautatu dezazun.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35286,7 +35286,7 @@ msgctxt ""
"par_idN10624\n"
"help.text"
msgid "Opens the <emph>Rename Toolbar</emph> dialog, where you enter a new name for the selected toolbar."
-msgstr ""
+msgstr "<emph>Izena aldatu tresna-barrari</emph> elkarrizketa-koadroa irekitzen du, hautatutako tresna-barraren izen berria idazteko."
#: 06140400.xhp
msgctxt ""
@@ -35382,7 +35382,7 @@ msgctxt ""
"par_idN1066A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> to insert the command into the <emph>Customize</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">'Gehitu komandoak' elkarrizketa-koadroa irekitzen du. Hautatu edozein komando, gero egin klik <emph>Gehitu</emph> botoian komandoa <emph>Pertsonalizatu</emph> elkarrizketa-koadroan txertatzeko.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -38326,7 +38326,7 @@ msgctxt ""
"par_id033020170257116434\n"
"help.text"
msgid "<ahelp hid=\".\">Toggle the visibility of grid points and guide lines to help object moving and precise position in the current sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Txandakatu objektuak uneko orrian mugitzea eta modu zehatzean kokatzea ahalbidetzen duten sareta-puntuen eta gida-marren ikusgaitasuna</ahelp>"
#: guides.xhp
msgctxt ""
@@ -38630,7 +38630,7 @@ msgctxt ""
"par_id10292015122231415\n"
"help.text"
msgid "<ahelp hid=\".\">Toggle the visibility of the <emph>Find</emph> toolbar to search for text or navigate a document by element.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Txandakatu testuak bilatzea edo dokumentu batean elementuz elementu nabigatzea ahalbidetzen duen <emph>Bilatu</emph> tresna-barraren ikusgaitasuna.</ahelp>"
#: menu_view_sidebar.xhp
msgctxt ""
@@ -38862,7 +38862,7 @@ msgctxt ""
"par_id190920161744065146\n"
"help.text"
msgid "By default, %PRODUCTNAME commands are grouped in cascading menus and in toolbars filled with icons."
-msgstr ""
+msgstr "Modu lehenetsian, %PRODUCTNAME komandoak menu teilakatuetan eta ikonoz beteriko tresna-barretan taldekatuta daude."
#: notebook_bar.xhp
msgctxt ""
@@ -38870,7 +38870,7 @@ msgctxt ""
"par_id190920161744061691\n"
"help.text"
msgid "The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents."
-msgstr ""
+msgstr "Koaderno-barrak kontrolak eta ikonoak antolatzeko beste modu bat erakusten du, ez ikonoen errenkada zuzen modura, baizik eta komandoen eta edukien taldeak testuinguruaren arabera bistaratuta."
#: notebook_bar.xhp
msgctxt ""
@@ -38878,7 +38878,7 @@ msgctxt ""
"par_id190920161744064258\n"
"help.text"
msgid "With the notebook bar, frequently used commands are grouped in an arrangement that will make it quicker to access, avoiding lengthy menu navigation and toolbars command icon lookup."
-msgstr ""
+msgstr "Koaderno-barran, maiz erabilitako komandoak taldeka antolatzen dira eta haiek atzitzea azkartzen da. Horrela, menuz menuko aukeran eta tresna-barretako komando-ikonoen arakatze luzeak saihesten dira."
#: notebook_bar.xhp
msgctxt ""
@@ -38886,7 +38886,7 @@ msgctxt ""
"par_id190920161744067918\n"
"help.text"
msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. Two entries in the <item type=\"menuitem\">View</item> menu controls the notebook bar: <item type=\"menuitem\">Toolbar Layout</item> and <item type=\"menuitem\">Notebook bar</item>."
-msgstr ""
+msgstr "Koaderno-barra Writer, Calc eta Impress aplikazioetan dago erabilgarri. Erabiltzaile-interfazeak hainbat diseinu ditu orain. <item type=\"menuitem\">Ikusi</item> menuko bi sarrerak kontrolatzen dute koaderno-barra: <item type=\"menuitem\">Tresna-barren diseinua</item> izenekoak eta <item type=\"menuitem\">Koaderno-barra</item> izenekoak."
#: notebook_bar.xhp
msgctxt ""
@@ -38894,7 +38894,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - Toolbar layout - Notebook bar</item>"
-msgstr ""
+msgstr "Aukeratu <item type=\"menuitem\">Ikusi - Tresna-barren diseinua - Koaderno-barra</item> menua"
#: notebook_bar.xhp
msgctxt ""
@@ -38902,7 +38902,7 @@ msgctxt ""
"hd_id190920161911374012\n"
"help.text"
msgid "User interface layouts"
-msgstr ""
+msgstr "Erabiltzaile-interfazearen diseinuak"
#: notebook_bar.xhp
msgctxt ""
@@ -38910,7 +38910,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The Toolbar Layout entry defines which user interface elements are visible. The available layouts are:"
-msgstr ""
+msgstr "'Tresna-barren diseinua' sarrerak zein interfaze-elementu ikusiko den definitzen du. Diseinu erabilgarriak honakoak dira:"
#: notebook_bar.xhp
msgctxt ""
@@ -38918,7 +38918,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "<emph>Default</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
-msgstr ""
+msgstr "<emph>Lehenetsia</emph> - Modu klasikoa, bi tresna-barra ikusgai dituena - 'Estandarra' eta 'Formatua'. Alboko barra partzialki tolestua dago eta fitxak besterik ez ditu erakusten."
#: notebook_bar.xhp
msgctxt ""
@@ -38926,7 +38926,7 @@ msgctxt ""
"par_id190920161744061192\n"
"help.text"
msgid "<emph>Single toolbar</emph> – one toolbar with all frequently used features. The sidebar is collapsed."
-msgstr ""
+msgstr "<emph>Tresna-barra bakuna</emph> - Gehien erabilitako eginbideak erakusten dituen tresna-barra bakarra. Alboko barra tolestuta dago."
#: notebook_bar.xhp
msgctxt ""
@@ -38934,7 +38934,7 @@ msgctxt ""
"par_id190920161744069136\n"
"help.text"
msgid "<emph>Sidebar</emph> – The sidebar is fully opened and only one toolbar is showed – formatting toolbar."
-msgstr ""
+msgstr "<emph>Alboko barra</emph> - Alboko barra guztiz irekita dago eta tresna-barra bakarra erakusten da: 'Formatua' tresna-barra"
#: notebook_bar.xhp
msgctxt ""
@@ -38942,7 +38942,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "<emph>Notebook bar</emph> – all toolbar and sidebar are hidden and the notebook bar is placed on the top. The menu entry: <item type=\"menuitem\">View </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> Notebook bar</item> is active only in this mode and user can then choose the notebook bar layout."
-msgstr ""
+msgstr "<emph>Koaderno-barra</emph> – Tresna-barra eta alboko barra guztiak ezkutuan daude eta koaderno- barra ageri da goiko aldean. <item type=\"menuitem\">Ikusi </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> Koaderno-barra</item> menu-sarrera modu honetan soilik dago aktibo, erabiltzaileak koaderno-barraren diseinua aukeratu ahal izateko."
#: notebook_bar.xhp
msgctxt ""
@@ -38950,7 +38950,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning to the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "Erabiltzaileak tresna-barra gehiago aktibatzen dituenean, egoera berria erabiltzaile-profilean gordeko da. Hortaz, koaderno-barraren modura itzultzean, aurretik ikusgai jarritako tresna-barra guztiak ikusgai egongo dira."
#: notebook_bar.xhp
msgctxt ""
@@ -38958,7 +38958,7 @@ msgctxt ""
"hd_id190920161744069618\n"
"help.text"
msgid "Available Notebook bar modes"
-msgstr ""
+msgstr "Koaderno-barraren modu erabilgarriak"
#: notebook_bar.xhp
msgctxt ""
@@ -38966,7 +38966,7 @@ msgctxt ""
"par_id190920161744069064\n"
"help.text"
msgid "<emph>Tabbed</emph> – In this mode, the bar is divided into tabs, where each tab displays a set of icons grouped by context. The context can also change depending on the object selected in the document, for example a table or an image."
-msgstr ""
+msgstr "<emph>Fitxak</emph> - Modu horretan, barra fitxetan antolatuta dago, eta fitxa bakoitzak ikonoen multzo bat bistaratzen du, testuinguruaren arabera antolatuta. Testuingurua aldatu egin daiteke dokumentuan hautatzen den objektuaren arabera; esaterako, desberdina izango da taula bat edo irudi bat hautatzen bada."
#: notebook_bar.xhp
msgctxt ""
@@ -38974,7 +38974,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the “≡” icon at the top-left position of the window and choose <item type=\"menuitem\">Menu bar</item>."
-msgstr ""
+msgstr "Fitxen moduan, menu-barra ezkutatuta dago modu lehenetsian. Menu-barra bistaratzeko, hautatu leihoaren goian ezkerrean dagoen “≡” ikonoa eta aukeratu <item type=\"menuitem\">Menu-barra</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -38982,7 +38982,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Format groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
-msgstr ""
+msgstr "<emph>Testuinguruko taldeak</emph> - Koaderno-barra 4 taldetan zatituta dago. 'Fitxategia', 'Arbela' eta 'Formatua' taldeak finkoak dira. 'Txertatu' taldeko edukiak aldakorrak dira, dokumentuan hautatutako objektuaren (taula, irudia, OLE objektua...) izaeraren arabera."
#: notebook_bar.xhp
msgctxt ""
@@ -38990,7 +38990,7 @@ msgctxt ""
"par_id190920161744063712\n"
"help.text"
msgid "<emph>Contextual single toolbar</emph> – Displays a single centered toolbar with context dependent contents."
-msgstr ""
+msgstr "<emph>Testuinguruko tresna-barra bakarra</emph> - Tresna-barra zentratu bakarra bistaratzen du, testuinguruaren araberako edukiak dituena."
#: notebook_bar.xhp
msgctxt ""
@@ -38998,7 +38998,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <item type=\"menuitem\">Tools - Options - LibreOffice - View - Notebook bar </item>listbox."
-msgstr ""
+msgstr "Koaderno-barraren ikono-tamaina aldatu egin daiteke. Hori aldatzeko, joan <item type=\"menuitem\">Tresnak - Aukerak - LibreOffice - Ikusi - Koaderno-barra</item> zerrenda-koadrora."
#: notebook_bar.xhp
msgctxt ""
@@ -39006,7 +39006,7 @@ msgctxt ""
"par_id190920161744074862\n"
"help.text"
msgid "The notebook bar cannot be customized."
-msgstr ""
+msgstr "Koaderno-barra ezin da pertsonalizatu."
#: notebook_bar.xhp
msgctxt ""
@@ -39014,7 +39014,7 @@ msgctxt ""
"par_id190920161744078275\n"
"help.text"
msgid "The current implementation (%PRODUCTNAME %PRODUCTVERSION) of the notebook bar is common to Writer, Calc and Impress modules. A change in the notebook bar in one module will affect the notebook bar of the other modules."
-msgstr ""
+msgstr "Koaderno-barraren uneko inplementazioa (%PRODUCTNAME %PRODUCTVERSION) Writer, Calc eta Impress moduluei berdin eragiten die. Moduluetako bateko koaderno-barran aldaketa bat egiten bada, gainerako moduluetan ere eragina izango du."
#: notebook_bar.xhp
msgctxt ""
@@ -39022,7 +39022,7 @@ msgctxt ""
"par_id190920161744072842\n"
"help.text"
msgid "<link href=\"text/shared/guide/floating_toolbar.xhp\">Toolbars</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/floating_toolbar.xhp\">Tresna-barrak</link>"
#: online_update.xhp
msgctxt ""
@@ -39054,7 +39054,7 @@ msgctxt ""
"par_id6797082\n"
"help.text"
msgid "You can check for updates manually or automatically."
-msgstr ""
+msgstr "Eguneratzeak eskuz edo automatikoki bila daitezke."
#: online_update.xhp
msgctxt ""
@@ -39326,7 +39326,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">Hedapenen kudeatzaileak %PRODUCTNAME hedapenak gehitzen, kentzen, desgaitzen, gaitzen eta eguneratzen ditu.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39430,7 +39430,7 @@ msgctxt ""
"par_id7857905\n"
"help.text"
msgid "<ahelp hid=\".\">You can find a collection of extensions on the Web.</ahelp> Click the \"Get more extensions online\" link in the Extension Manager to open your Web browser and see the <link href=\"https://extensions.libreoffice.org/\">https://extensions.libreoffice.org/</link> page."
-msgstr ""
+msgstr "<ahelp hid=\".\">Hedapenen bilduma bat aurki dezakezu Interneten</ahelp>. Egin klik hedapenen kudeatzaileko \"Eskuratu lineako hedapen gehiago\" estekan web-nabigatzailea irekitzeko, eta <link href=\"https://extensions.libreoffice.org/\">http://extensions.libreoffice.org/</link> orria ikusteko."
#: packagemanager.xhp
msgctxt ""
@@ -39518,7 +39518,7 @@ msgctxt ""
"par_idN106AD\n"
"help.text"
msgid "<ahelp hid=\".\">Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hautatu kendu, gaitu edo desgaitu nahi duzun hedapena. Hedapen batzuetan, 'Aukerak' elkarrizketa-koadroa ere ireki dezakezu.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39646,7 +39646,7 @@ msgctxt ""
"par_id1439559\n"
"help.text"
msgid "You can filter the list of displayed extensions by their <link href=\"text/shared/01/packagemanager.xhp#extscope\">scope</link>."
-msgstr ""
+msgstr "Bistaratutako hedapenen zerrenda iragazi daiteke haien <link href=\"text/shared/01/packagemanager.xhp#extscope\">esparruaren</link> arabera."
#: packagemanager.xhp
msgctxt ""
@@ -39654,7 +39654,7 @@ msgctxt ""
"par_id0103201110331828\n"
"help.text"
msgid "Bundled with %PRODUCTNAME"
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioarekin paketatua"
#: packagemanager.xhp
msgctxt ""
@@ -39662,7 +39662,7 @@ msgctxt ""
"par_id1439560\n"
"help.text"
msgid "<ahelp hid=\".\">Bundled extensions are installed by the system administrator using the operating system specific installer packages. These can not be installed, updated or removed here.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Paketatutako hedapenak sistema-administratzaileak instalatutakoak dira. Sistema eragile bakoitzak duen instalatzaile espezifikoarekin instalatzen dira. Horiek ezin dira hemen instalatu, eguneratu edo kendu.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39670,7 +39670,7 @@ msgctxt ""
"par_id0103201110331829\n"
"help.text"
msgid "Installed for all users"
-msgstr ""
+msgstr "Instalatua erabiltzaile guztientzako"
#: packagemanager.xhp
msgctxt ""
@@ -39678,7 +39678,7 @@ msgctxt ""
"par_id1439561\n"
"help.text"
msgid "<ahelp hid=\".\">Filter extensions available for all users of this computer.</ahelp> These can be updated or removed only with administrator or root privileges."
-msgstr ""
+msgstr "<ahelp hid=\".\">Iragazi ordenagailu honen erabiltzaile guztientzako erabilgarri dauden hedapenak.</ahelp> Administratzaile- edo erro-pribilegioak duen norbaitek soilik eguneratu edo kendu ditzake hedapen horiek."
#: packagemanager.xhp
msgctxt ""
@@ -39686,7 +39686,7 @@ msgctxt ""
"par_id0103201110331830\n"
"help.text"
msgid "Installed for current user"
-msgstr ""
+msgstr "Instalatua uneko erabiltzailearentzako"
#: packagemanager.xhp
msgctxt ""
@@ -39694,7 +39694,7 @@ msgctxt ""
"par_id1439562\n"
"help.text"
msgid "<ahelp hid=\".\">Filter extensions only available for the currently logged in user.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Iragazi unean saioa hasita duen erabiltzailearentzako soilik erabilgarri dauden hedapenak.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39702,7 +39702,7 @@ msgctxt ""
"par_id0103201110331832\n"
"help.text"
msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension."
-msgstr ""
+msgstr "Komando gehigarriak ager daitezke hedapen baten laster-menuan, 'Hedapenen kudeatzailea' leihoan, hautatutako hedapenaren arabera. Lizentzia-testua berriro erakuts dadin aukeratu dezakezu. Hedapenen eguneratzeak egiaztatu daitezen edo ez daitezen aukeratu dezakezu."
#: password_dlg.xhp
msgctxt ""
@@ -39734,7 +39734,7 @@ msgctxt ""
"par_id31222\n"
"help.text"
msgid "The open password must be entered to open the file."
-msgstr ""
+msgstr "Irekitze-pasahitza sartu behar da fitxategia irekitzeko."
#: password_dlg.xhp
msgctxt ""
@@ -39742,7 +39742,7 @@ msgctxt ""
"par_id313339\n"
"help.text"
msgid "The permission password must be entered to edit the document."
-msgstr ""
+msgstr "Baimen-pasahitza sartu behar da dokumentua editatzeko."
#: password_dlg.xhp
msgctxt ""
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id3150502\n"
"help.text"
msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Idatzi pasahitz bat. Pasahitzetan maiuskulak eta minuskulak bereizten dira.</ahelp>"
#: password_dlg.xhp
msgctxt ""
@@ -39942,7 +39942,7 @@ msgctxt ""
"par_id281120160939285779\n"
"help.text"
msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Modu seguruan, %PRODUCTNAME erabiltzaile-profil berri batekin abiarazten da behin-behinean, eta hardware bidezko azelerazioa desgaitzen da. Funtzionatzen ez duen %PRODUCTNAME instantzia bat leheneratzen lagundu dezake.</ahelp>"
#: profile_safe_mode.xhp
msgctxt ""
@@ -39966,7 +39966,7 @@ msgctxt ""
"par_id281120163154363\n"
"help.text"
msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
-msgstr ""
+msgstr "Abiarazi %PRODUCTNAME <emph>%PRODUCTNAME (modu segurua)</emph> hasiera-menuko sarreratik (Windows-en soilik)."
#: profile_safe_mode.xhp
msgctxt ""
@@ -39982,7 +39982,7 @@ msgctxt ""
"par_id281120160939281728\n"
"help.text"
msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
-msgstr ""
+msgstr "Modu seguruan sartuta, erabiltzaile-profila leheneratzeko hiru aukera dituen elkarrizketa-koadro bat ikusiko duzu."
#: profile_safe_mode.xhp
msgctxt ""
@@ -39990,7 +39990,7 @@ msgctxt ""
"hd_id281120163149551\n"
"help.text"
msgid "Continue in Safe Mode"
-msgstr ""
+msgstr "Jarraitu modu seguruan"
#: profile_safe_mode.xhp
msgctxt ""
@@ -39998,7 +39998,7 @@ msgctxt ""
"par_id281120160944279896\n"
"help.text"
msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
-msgstr ""
+msgstr "Aukera honek %PRODUCTNAME aplikazioarekin lan egiten jarraitzea ahalbidetzen du, baina behin-behineko erabiltzaile-profil bat erabilita. Horrek esan nahi du behin-behineko erabiltzaile-profilean gordeko diren konfigurazio-aldaketa guztiak galdu egingo direla hurrengo berrabiaraztean."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40006,7 +40006,7 @@ msgctxt ""
"hd_id281120163149552\n"
"help.text"
msgid "Restart in Normal Mode"
-msgstr ""
+msgstr "Berrabiarazi modu normalean"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40014,7 +40014,7 @@ msgctxt ""
"par_id281120160944279161\n"
"help.text"
msgid "Choosing <emph>Restart in Normal Mode</emph> will discard all changes, terminate safe mode and start %PRODUCTNAME again in normal mode. Use this option if you got here by accident."
-msgstr ""
+msgstr "<emph>Berrabiarazi modu normalean</emph> aukeratuta, aldaketa guztiak baztertuko dira, modu segurua amaituko da eta %PRODUCTNAME berriro modu normalean abiaraziko du. Erabili aukera hori horraino istripuz iritsi bazara."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40022,7 +40022,7 @@ msgctxt ""
"hd_id281120163149543\n"
"help.text"
msgid "Apply Changes and Restart"
-msgstr ""
+msgstr "Aplikatu aldaketak eta berrabiarazi"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40030,7 +40030,7 @@ msgctxt ""
"par_id281120160949348926\n"
"help.text"
msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
-msgstr ""
+msgstr "Elkarrizketa-koadroak, %PRODUCTNAME aplikazioa berriro lanean jartzeko erabiltzaile-profilean egin daitezkeen hainbat aldaketa eskaintzen ditu. Gero eta aldaketa handiagoak dira goitik behera begiratuta, eta beraz, bata bestearen atzetik probatu beharko zenituzke. Aukera hau hautatzen baduzu, hautatutako aldaketak aplikatuko dira."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40038,7 +40038,7 @@ msgctxt ""
"hd_id281120163149545\n"
"help.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Leheneratu babeskopiatik"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40046,7 +40046,7 @@ msgctxt ""
"par_id281120160949348884\n"
"help.text"
msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak aurreko konfigurazioen eta aktibatutako hedapenen babeskopiak gordetzen ditu. Erabili aukera hau aurreko egoera batera itzultzeko, arazoen jatorria konfigurazioari edo hedapenei egindako azken aldiko aldaketak badira."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40054,7 +40054,7 @@ msgctxt ""
"hd_id281120163149546\n"
"help.text"
msgid "Configure"
-msgstr ""
+msgstr "Konfiguratu"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40062,7 +40062,7 @@ msgctxt ""
"par_id281120160949347119\n"
"help.text"
msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
-msgstr ""
+msgstr "Erabiltzaileak instalatutako hedapen guztiak desgaitu daitezke. Hardware bidezko azelerazioa ere desgaitu daiteke. Aktibatu aukera hau abioan kraskadurak edo ikusizko akatsak jasaten badituzu; sarritan, hardware bidezko azelerazioari lotuta egoten dira."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40070,7 +40070,7 @@ msgctxt ""
"hd_id281120160944276682\n"
"help.text"
msgid "Uninstall extensions"
-msgstr ""
+msgstr "Desinstalatu hedapenak"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40078,7 +40078,7 @@ msgctxt ""
"par_id281120160944275137\n"
"help.text"
msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
-msgstr ""
+msgstr "Zenbaitetan, %PRODUCTNAME ezin da abiarazi hedapenen bat blokeoak edo kraskadurak sortzen dituelako. Aukera honen bidez, erabiltzaileak instalatutako hedapen guztiak desgaitzen dira, bai eta hedapen partekatuak eta paketatuak ere. Partekatutako edo paketatutako hedapenak desinstalatzea kontuz egin beharko litzateke. Sisteman sartzeko pribilegio egokiak badituzu soilik funtzionatuko du."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40086,7 +40086,7 @@ msgctxt ""
"hd_id281120160944276687\n"
"help.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Berrezarri fabrikako ezarpenak"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40094,7 +40094,7 @@ msgctxt ""
"par_id28112016094427792\n"
"help.text"
msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
-msgstr ""
+msgstr "Gainerako guztiak huts egiten badu, zure erabiltzaile-profila fabrikako ezarpenekin berrezarri dezakezu. Lehen aukerak, <emph>Berrezarri ezarpenak eta erabiltzaile-interfazeari egindako aldaketak</emph>, konfigurazio- eta interfaze-aldaketa guztiak berrezartzen ditu, baina zenbait gauza mantentzen ditu: hiztegi pertsonalak, txantiloiak, etab. Bigarren aukerak profil osoa berrezarriko du eta %PRODUCTNAME instalatu zenean zeukan egoeran utziko du."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40102,7 +40102,7 @@ msgctxt ""
"par_id28112016094427243\n"
"help.text"
msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
-msgstr ""
+msgstr "Modu segurua erabiliz arazoa konpontzen ez bada, sakatu <emph>Aurreratua</emph>. Argibide gehiago aurkituko dituzu laguntza gehiago jasotzeko."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40110,7 +40110,7 @@ msgctxt ""
"par_id281120160949347055\n"
"help.text"
msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
-msgstr ""
+msgstr "Erabiltzaile-profileko arazoren baten berri eman nahi baduzu, sakatu <emph>Sortu ZIP artxiboa erabiltzailearen profilarekin</emph>, akatsen jarraipena egiteko sistemara igo ahal izateko eta garatzaileek arazoa ikertu dezaten."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40118,7 +40118,7 @@ msgctxt ""
"par_id281120160949348679\n"
"help.text"
msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
-msgstr ""
+msgstr "Kontuan izan igotako profilak informazio pertsonala izan dezakeela, esaterako zure hiztegi pertsonala, zure ezarpenak eta zuk instalatutako hedapenak."
#: prop_font_embed.xhp
msgctxt ""
@@ -40126,7 +40126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Embedding Fonts"
-msgstr ""
+msgstr "Letra-tipoak kapsulatzea"
#: prop_font_embed.xhp
msgctxt ""
@@ -40134,7 +40134,7 @@ msgctxt ""
"bm_id3149955\n"
"help.text"
msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>letra-tipoak kapsulatzea dokumentu-fitxategian</bookmark_value> <bookmark_value>dokumentuak; letra-tipoak kapsulatzea</bookmark_value> <bookmark_value>letra-tipoa kapsulatzea; dokumentuetan</bookmark_value> <bookmark_value>letra-tipoak; kapsulatzea</bookmark_value> <bookmark_value>kapsulatzea; letra-tipoak</bookmark_value>"
#: prop_font_embed.xhp
msgctxt ""
@@ -40150,7 +40150,7 @@ msgctxt ""
"par_id3154863\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Kapsulatu dokumentuko letra-tipoak uneko fitxategian.</ahelp>"
#: prop_font_embed.xhp
msgctxt ""
@@ -40158,7 +40158,7 @@ msgctxt ""
"hd_id3149999\n"
"help.text"
msgid "Fonts embedding"
-msgstr ""
+msgstr "Letra-tipoak kapsulatzea"
#: prop_font_embed.xhp
msgctxt ""
@@ -40166,7 +40166,7 @@ msgctxt ""
"par_id3153114\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentfontspage/embedFonts\">Mark this box to embed document fonts into the document file, for portability between different computer systems.</ahelp> The document with embedded fonts has a larger size and the fonts are used on the target computer for better rendering of the document layout."
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/documentfontspage/embedFonts\">Markatu lauki hau dokumentuko letra-tipoak dokumentu-fitxategian kapsulatzeko eta, horrela, ordenagailu ezberdinen artean mugitu ahal izateko.</ahelp> Kapsulatutako letra-tipoak dituen dokumentuak tamaina handiagoa du eta letra-tipoak helburuko ordenagailuan erabiliko dira dokumentuaren diseinua hobeto errendatu dadin."
#: prop_font_embed.xhp
msgctxt ""
@@ -40174,7 +40174,7 @@ msgctxt ""
"par_id3153115\n"
"help.text"
msgid "Consider embedding fonts when your document use rare or custom fonts not generally available in other computers."
-msgstr ""
+msgstr "Komenigarria izan daiteke letra-tipoak kapsulatzea zure dokumentuak arruntak ez diren edo pertsonalizatuak diren letra-tipoak dituenean."
#: ref_pdf_export.xhp
msgctxt ""
@@ -40262,7 +40262,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "<ahelp hid=\".\">Exports the pages you type in the box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Koadroan adierazten dituzun orrialdeak esportatzen ditu.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -40406,7 +40406,7 @@ msgctxt ""
"hd_id080420080355360\n"
"help.text"
msgid "Hybrid PDF (embed ODF file)"
-msgstr ""
+msgstr "PDF hibridoa (kapsulatutako ODF fitxategia)"
#: ref_pdf_export.xhp
msgctxt ""
@@ -40414,7 +40414,7 @@ msgctxt ""
"par_id0804200803553767\n"
"help.text"
msgid "<ahelp hid=\".\">This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers it behaves like a normal .pdf file and it remains fully editable in %PRODUCTNAME."
-msgstr ""
+msgstr "<ahelp hid=\".\">Ezarpen honi esker, dokumentua bi fitxategi-formatu (PDF eta ODF) dituen .pdf fitxategi modura esportatu dezakezu.</ahelp> PDF ikustaileetan .pdf fitxategi arrunten moduan ikusten da, eta aldi berean, %PRODUCTNAME aplikazioan editatzeko moduan gordetzen da."
#: ref_pdf_export.xhp
msgctxt ""
@@ -40422,7 +40422,7 @@ msgctxt ""
"hd_id2796411\n"
"help.text"
msgid "Archive PDF/A-1a (ISO 19005-1)"
-msgstr ""
+msgstr "PDF/A-1a fitxategia (ISO 19005-1)"
#: ref_pdf_export.xhp
msgctxt ""
@@ -40438,7 +40438,7 @@ msgctxt ""
"par_idN107A0\n"
"help.text"
msgid "Tagged PDF (add document structure)"
-msgstr ""
+msgstr "Etiketadun PDFa (gehitu dokumentuaren egitura)"
#: ref_pdf_export.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Writer dokumentuan laster-markak PDF laster-marka gisa esportatzea hautatzen du. Laster-markak sortzen dira eskemako paragrafo guztietarako (Tresnak – Kapitulu-zenbakitzea) eta aurkibideko sarrera guztietarako, horiei hiperestekak esleitu badizkiezu iturburu-dokumentuan.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -40590,7 +40590,7 @@ msgctxt ""
"par_id8551897\n"
"help.text"
msgid "<ahelp hid=\".\">This option affects how PDF images are exported back to PDF. When this option is disabled, then the first page of the PDF data is included in the output. The PDF export merges the used images, fonts and other resources during export. This is a complex operation, but the result can be viewed in various viewers. When the option is enabled, then the reference XObject markup is used: this is a simple operation, but viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aukera honek PDF irudiak berriro PDFra nola esportatuko diren moldatzen du. Aukera hau desgaituta dagoenean, PDF datuen lehen orrialdea irteeran sartzen da. PDF esportazioak erabilitako irudiak, letra-tipoak eta beste zenbait baliabide fusionatzen ditu esportazioan. Eragiketa konplexua da, baina emaitza hainbat ikustailetan bistaratu daiteke. Aukera gaituta dagoenean, erreferentziako XObject marka erabiltzen da: eragiketa sinplea da, baina ikustaileek marka mota hori onartu behar dute irudi bektorialak erakutsi ahal izateko. Bestela, bitmap alternatibo bat erakutsiko da ikustailean.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41406,7 +41406,7 @@ msgctxt ""
"par_id22107304\n"
"help.text"
msgid "Digital signatures are used to ensure that the PDF was really created by the original author (i.e. you), and that the document has not been modified since it was signed."
-msgstr ""
+msgstr "Sinadura digitalak PDFa jatorrizko egileak (alegia, zuk) sortu zuela ziurtatzeko erabiltzen dira, eta sinatu ondoren dokumentua ez dela aldatu ziurtatzeko."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41414,7 +41414,7 @@ msgctxt ""
"par_id22107305\n"
"help.text"
msgid "The signed PDF export uses the keys and X.509 certificates already stored in your default key store location or on a smartcard."
-msgstr ""
+msgstr "Sinatutako PDF esportazioak zure gakoen biltegi-kokapen lehenetsian edo txartel adimentsu batean gordeta dauden gakoak eta X.509 ziurtagiriak erabiltzen ditu."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41422,7 +41422,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Erabiliko den gako-biltegia hautatzeko, erabili <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph> </caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Segurtasuna - Ziurtagiriaren bide-izena</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41430,7 +41430,7 @@ msgctxt ""
"par_id22107307\n"
"help.text"
msgid "When using a smartcard, it must already be configured for use by your key store. This is usually done during installation of the smartcard software."
-msgstr ""
+msgstr "Txartel adimentsu bat erabiltzean, zure gako-biltegiak hura erabili ahal izateko moduan konfiguratuta egon behar du. Konfigurazio hori txartelaren softwarea instalatzean egiten da."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41438,7 +41438,7 @@ msgctxt ""
"hd_id12927335\n"
"help.text"
msgid "Use this certificate to digitally sign PDF documents"
-msgstr ""
+msgstr "Erabili ziurtagiri hau PDF dokumentuei sinadura digitala eransteko"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41446,7 +41446,7 @@ msgctxt ""
"par_id12107303\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to select a certificate to be used for signing this PDF export.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">PDF esportazio hau sinatzeko erabiliko den ziurtagiria hautatzea ahalbidetzen du.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41462,7 +41462,7 @@ msgctxt ""
"par_id12507303\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>Select Certificate</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><emph>Hautatu ziurtagiria</emph> elkarrizketa-koadroa irekitzen du.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41470,7 +41470,7 @@ msgctxt ""
"par_id12507403\n"
"help.text"
msgid "All certificates found in your selected key store are displayed. If the key store is protected by a password, you are prompted for it. When using a smartcard that is protected by a PIN, you are also prompted for that."
-msgstr ""
+msgstr "Hautatu duzun gako-biltegian aurkitutako ziurtagiri guztiak bistaratuko dira. Gako-biltegia pasahitz bidez babestuta badago, hura eskatuko dizu aplikazioak. PIN bidez babestuta dagoen txartel adimentsu bat erabiltzean, orduan ere PINa eskatuko dizu."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41478,7 +41478,7 @@ msgctxt ""
"par_id12507503\n"
"help.text"
msgid "Select the certificate to use for digitally signing the exported PDF by clicking on the corresponding line, then click <emph>OK</emph>."
-msgstr ""
+msgstr "Hautatu PDF esportatuari sinadura digitala eransteko erabiliko duzun ziurtagiria, hari dagokion lerroan klik eginez, eta ondoren sakatu <emph>Ados</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41486,7 +41486,7 @@ msgctxt ""
"par_id12507603\n"
"help.text"
msgid "All other fields on the <emph>Digital Signatures</emph> tab will be accessible only after a certificate has been selected."
-msgstr ""
+msgstr "<emph>Sinadura digitalak</emph> fitxako gainerako eremuak ziurtagiri bat hautatu ondoren soilik erabili ahal izango dira."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41494,7 +41494,7 @@ msgctxt ""
"hd_id1876186\n"
"help.text"
msgid "Certificate password"
-msgstr ""
+msgstr "Ziurtagiriaren pasahitza"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41502,7 +41502,7 @@ msgctxt ""
"par_id13939634\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the password used for protecting the private key associated with the selected certificate.</ahelp> Usually this is the key store password."
-msgstr ""
+msgstr "<ahelp hid=\".\">Sartu hautatutako ziurtagiriari lotutako gako pribatua babesteko erabili den pasahitza.</ahelp> Normalean gako-biltegiaren pasahitza izaten da."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41510,7 +41510,7 @@ msgctxt ""
"par_id13932634\n"
"help.text"
msgid "If the key store password has already been entered in the <emph>Select Certificate</emph> dialog, the key store may already be unlocked and not require the password again. But to be on the safe side, enter it nevertheless."
-msgstr ""
+msgstr "Gako-biltegiaren pasahitza jadanik sartu bada <emph>Hautatu ziurtagiria</emph> elkarrizketa-koadroan, gako-biltegia beharbada jadanik desblokeatuta dago eta ez da pasahitza berriro behar. Hala ere, segurtasuna bermatzeko, sar ezazu berriro."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41518,7 +41518,7 @@ msgctxt ""
"par_id13933634\n"
"help.text"
msgid "When using a smartcard, enter the PIN here. Some smartcard software will prompt you for the PIN again before signing. This is cumbersome, but that's how smartcards work."
-msgstr ""
+msgstr "Txartel adimentsu bat erabiltzean, sartu PIN zenbakia hemen. Txartel adimentsuen zenbait softwarek PINa berriro eskatzen dute sinatu baino lehen. Astuna da, baina txartel adimentsuek horrela funtzionatzen dute."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41526,7 +41526,7 @@ msgctxt ""
"hd_id1599688\n"
"help.text"
msgid "Location, Contact information, Reason"
-msgstr ""
+msgstr "Kokalekua, harremanetarako informazioa, arrazoia"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41534,7 +41534,7 @@ msgctxt ""
"par_id11371501\n"
"help.text"
msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
-msgstr ""
+msgstr "Hiru eremu horien bidez, PDFari aplikatuko zaion sinadura digitalari buruzko informazio gehiago sartu daiteke, aukeran (non, nork eta zergatik sortu zuen). Bakoitzari dagokion PDF eremuetan txertatuko da informazioa, eta PDFa ikusten duen edonork ikusi ahal izango du. Hiru eremuetako edozein edo denak hutsik utzi daitezke."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41566,7 +41566,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "Hautatu daitezkeen TSA URLak honako aukeran konfiguratzen dira: <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph> </caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Segurtasuna - TSAk</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41654,7 +41654,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "<ahelp hid=\".\">Enable or disable the macros. Choose <emph>%PRODUCTNAME - Security</emph> in the Options dialog box to set the options.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gaitu edo desgaitu makroak. Aukeratu <emph>%PRODUCTNAME - Segurtasuna</emph> 'Aukerak' elkarrizketa-koadroan, aukerak ezartzeko.</ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41670,7 +41670,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/viewSignsButton\">Opens a dialog where you can view the signature.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/viewSignsButton\">Sinadura ikustea ahalbidetzen duen elkarrizketa-koadro bat irekitzen du.</ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41686,7 +41686,7 @@ msgctxt ""
"par_idN1058B\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">Uneko makroaren iturburua <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">iturburu fidagarrien</link> zerrendari gehitzen dio.</ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41702,7 +41702,7 @@ msgctxt ""
"par_idN105A0\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/ok\">Allows macros in the document to run.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/ok\">Dokumentuko makroak exekutatu ahal izatea ahalbidetzen du.</ahelp>"
#: securitywarning.xhp
msgctxt ""
@@ -41718,7 +41718,7 @@ msgctxt ""
"par_idN105A7\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/cancel\">Does not allow macros in the document to run.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/cancel\">Ez du onartzen dokumentuko makroak exekutatu ahal izan daitezen.</ahelp>"
#: selectcertificate.xhp
msgctxt ""
@@ -41790,7 +41790,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "<ahelp hid=\".\">Type a purpose for the signature.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Idatzi sinaduraren xedea.</ahelp>"
#: webhtml.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/02.po b/source/eu/helpcontent2/source/text/shared/02.po
index 69032f09eef..550d2df0d3e 100644
--- a/source/eu/helpcontent2/source/text/shared/02.po
+++ b/source/eu/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 16:03+0000\n"
+"PO-Revision-Date: 2017-06-12 15:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496764992.000000\n"
+"X-POOTLE-MTIME: 1497281816.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -17326,7 +17326,7 @@ msgctxt ""
"par_id3152820\n"
"help.text"
msgid "In the <emph>Query Properties</emph> dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set."
-msgstr ""
+msgstr "<emph>Kontsulta-propietateak</emph> elkarrizketa-koadroan, SQL kontsultaren bi propietate ezarri daitezke: balio unibokoak itzultzen dituen, eta emaitza multzoa mugatuko den."
#: querypropdlg.xhp
msgctxt ""
@@ -17334,7 +17334,7 @@ msgctxt ""
"par_id3153761\n"
"help.text"
msgid "In the Query Design View, choose <emph>Edit</emph> - <emph>Query Properties</emph>."
-msgstr ""
+msgstr "Kontsulten diseinu-ikuspegian, aukeratu <emph>Editatu</emph> - <emph>Kontsulta-propietateak</emph>."
#: querypropdlg.xhp
msgctxt ""
@@ -17350,7 +17350,7 @@ msgctxt ""
"par_id030520091208050\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Use distinct values in query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Erabili balio unibokoak kontsultan.</ahelp>"
#: querypropdlg.xhp
msgctxt ""
@@ -17358,7 +17358,7 @@ msgctxt ""
"par_id0305200912080610\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Not use distinct values in query.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ez erabili balio unibokoak kontsultan.</ahelp>"
#: querypropdlg.xhp
msgctxt ""
@@ -17382,7 +17382,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "Adds a Limit to set the maximum number of records to return."
-msgstr ""
+msgstr "Muga bat gehitzen du, itzuliko den gehieneko erregistro kopurua ezartzeko."
#: stars.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/04.po b/source/eu/helpcontent2/source/text/shared/04.po
index 6fb0d4a7912..a0355f8d8af 100644
--- a/source/eu/helpcontent2/source/text/shared/04.po
+++ b/source/eu/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 16:08+0000\n"
+"PO-Revision-Date: 2017-06-11 18:15+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496765333.000000\n"
+"X-POOTLE-MTIME: 1497204931.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"hd_id31541231\n"
"help.text"
msgid "Shortcut keys for controlling dialogs"
-msgstr ""
+msgstr "Elkarrizketa-koadroak kontrolatzeko laster-teklak"
#: 01010000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"hd_id31541232\n"
"help.text"
msgid "Shortcut keys for controlling documents and windows"
-msgstr ""
+msgstr "Dokumentuak eta leihoak kontrolatzeko laster-teklak"
#: 01010000.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3150567\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Toggles the view between fullscreen mode and normal mode in Writer or Calc</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Pantaila osoko modua eta modu normala txandakatzen ditu Writer eta Calc aplikazioetan</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3145410\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Starts the $[officename] Help</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>$[officename] laguntza abiarazten du</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/explorer/database.po b/source/eu/helpcontent2/source/text/shared/explorer/database.po
index abbc1d2bab1..da3a3a2b1e6 100644
--- a/source/eu/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/eu/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 17:54+0000\n"
+"PO-Revision-Date: 2017-06-12 06:46+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496685271.000000\n"
+"X-POOTLE-MTIME: 1497249975.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -8558,7 +8558,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "Set up Spreadsheet connection"
-msgstr ""
+msgstr "Konfiguratu kalkulu-orrien konexioa"
#: dabawiz02spreadsheet.xhp
msgctxt ""
@@ -8638,7 +8638,7 @@ msgctxt ""
"par_idN1054F\n"
"help.text"
msgid "Set up a connection to text files"
-msgstr ""
+msgstr "Konfiguratu testu-fitxategien konexioa"
#: dabawiz02text.xhp
msgctxt ""
@@ -12062,7 +12062,7 @@ msgctxt ""
"par_id6304818\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Orrialde-goiburukoa zein testuingurutan inprimatu behar den zehazten du: orrialde guztietan, edo ez txosten-goiburukoa edo orri-oina duten orrialdeetan.</ahelp>"
#: rep_prop.xhp
msgctxt ""
@@ -12262,7 +12262,7 @@ msgctxt ""
"par_id1243629\n"
"help.text"
msgid "<ahelp hid=\".\">On the Data tab page, you can change the data contents to be shown.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">'Datuak' fitxaren orrian, erakutsiko diren datu-edukiak alda daitezke.</ahelp>"
#: rep_sort.xhp
msgctxt ""
@@ -12286,7 +12286,7 @@ msgctxt ""
"par_id3068636\n"
"help.text"
msgid "<ahelp hid=\".\">In the Sorting and Grouping dialog of <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link>, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group.</ahelp> If you group your report by a certain field, all records with the same value of that field will be kept together in one group."
-msgstr ""
+msgstr "<ahelp hid=\".\"><link href=\"text/shared/explorer/database/rep_main.xhp\">Txosten-diseinatzailea</link> morroiko 'Ordenatzea eta taldekatzea' elkarrizketa-koadroan, zure txostenean ordenatu behar diren eremuak definitu ditzakezu, bai eta talde bat osatuz elkarrekin izan behar duten eremuak ere.</ahelp> Zure txostena eremu jakin baten arabera taldekatzen baduzu, eremu horretako balio bereko erregistro guztiak elkarrekin mantenduko dira talde batean."
#: rep_sort.xhp
msgctxt ""
@@ -12310,7 +12310,7 @@ msgctxt ""
"par_id599688\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the fields that will be used for sorting or grouping. The field at the top has the highest priority, the second field has the second priority, and so on.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ordenatzeko edo taldekatzeko erabiliko diren eremuak zerrendatzen ditu. Goiko eremuak lehentasunik altuena du, bigarren eremuak bigarren lehentasuna, etab.</ahelp>"
#: rep_sort.xhp
msgctxt ""
@@ -12350,7 +12350,7 @@ msgctxt ""
"par_id5833307\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Header.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu, taldearen goiburukoa erakusteko edo ezkutatzeko.</ahelp>"
#: rep_sort.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id7726676\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu, taldearen orri-oina erakusteko edo ezkutatzeko.</ahelp>"
#: rep_sort.xhp
msgctxt ""
@@ -12366,7 +12366,7 @@ msgctxt ""
"par_id3729361\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to create a new group on each changed value, or on other properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu, talde berria sortzeko balio bat edo beste propietate batzuk aldatzen direnean.</ahelp>"
#: rep_sort.xhp
msgctxt ""
@@ -12422,7 +12422,7 @@ msgctxt ""
"par_id1180455\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the level of detail by which a group is kept together on the same page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu zein xehetasun-mailarekin mantenduko den talde bat elkarrekin orrialde berean.</ahelp>"
#: rep_sort.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/guide.po b/source/eu/helpcontent2/source/text/shared/guide.po
index 5c60d8f212c..ff7bffca9e3 100644
--- a/source/eu/helpcontent2/source/text/shared/guide.po
+++ b/source/eu/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 20:54+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-21 15:31+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496782463.000000\n"
+"X-POOTLE-MTIME: 1498059100.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Dokumentu bat OpenOffice.org 3.2, StarOffice 9.4 edo bertsio berriago batekin sinatzen duzunean, eta dokumentua softwarearen bertsio zaharragoan irekitzen duzunean, sinadura \"baliogabea\" dela erakutsiko da. Softwarearen bertsio zaharragoekin sortutako sinadurek \"dokumentua partzialki sinatua dago\" marka izango dute software berriagoarekin irekitzen direnean."
#: digital_signatures.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "OOXML dokumentu bat sinatzean, sinadurak beti izango du \"dokumentua partzialki sinatua dago\" marka. OOXML fitxategien metadatuak ez dira inoiz sinatzen, Microsoft Office aplikazioekin bateragarriak izateko."
#: digital_signatures.xhp
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"par_idN1069D\n"
"help.text"
msgid "After you select the attributes that you want to search for, the <emph>Paragraph Styles</emph> box in the <emph>Other options</emph> area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
-msgstr ""
+msgstr "Bilatu nahi dituzun atributuak hautatu ondoren, %PRODUCTNAME Writer aplikazioko <emph>Bilatu eta ordeztu</emph> elkarrizketa-koadroko <emph>Beste aukera batzuk</emph> areako<emph>Paragrafo-estiloak</emph> koadroa <emph>Sartu estiloak</emph> aukerara aldatuko da."
#: find_attributes.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id1510055\n"
"help.text"
msgid "Depending on your system's window manager settings, you may also double-click an empty place on the toolbar or window, while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. Or double-click the title bar of the floating toolbar or window."
-msgstr ""
+msgstr "Sistemaren leiho-kudeatzailearen arabera, tresna-barraren edo leihoaren toki huts batean klik bikoitza egin daiteke <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline> teklari eusten zaion bitartean. Edo egin klik bikoitza tresna-barra edo leiho mugikorrean."
#: floating_toolbar.xhp
msgctxt ""
@@ -8406,7 +8406,7 @@ msgctxt ""
"par_id0202200911373965\n"
"help.text"
msgid "If you don't see the Drawing toolbar or the Fontwork toolbar, choose <item type=\"menuitem\">View - Toolbars</item> to enable the toolbar."
-msgstr ""
+msgstr "'Marrazkia' tresna-barra edo 'Fontwork' tresna-barra ez baduzu ikusten, aukeratu <item type=\"menuitem\">Ikusi - Tresna-barrak</item> tresna-barra gaitzeko."
#: fontwork.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_idN1069C\n"
"help.text"
msgid "On the <emph>Drawing</emph> toolbar or on the <emph>Fontwork</emph> toolbar, click the <emph>Fontwork Gallery</emph> icon.<image id=\"img_id7040009\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id7040009\">Icon</alt></image>"
-msgstr ""
+msgstr "<emph>Marrazkia</emph> tresna-barran edo <emph>Fontwork</emph> tresna-barran, sakatu <emph>Fontwork Gallery</emph> ikonoa.<image id=\"img_id7040009\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id7040009\">Ikonoa</alt></image>"
#: fontwork.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"par_id3149761\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a Fontwork style and click OK to insert the Fontwork into your document. Double-click or Ctrl+double-click the Fontwork in your document to enter text edit mode and change the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu Fontwork estilo bat eta sakatu 'Ados' Fontwork-a dokumentuan txertatzeko. Egin klik bakoitza eta Ctrl+klik bikoitza dokumentuko Fontwork elementuan, testua editatzeko moduan sartu eta testu hori aldatu ahal izateko.</ahelp>"
#: fontwork.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "Arrow buttons move through the main selection area. Spacebar adds the current character to the list of characters to be inserted."
-msgstr ""
+msgstr "Gezi-botoien bidez, hautapen-area nagusian mugi daiteke. Zuriune-barrak uneko karakterea gehitzen dio txertatu beharreko karaktere-zerrendari."
#: labels.xhp
msgctxt ""
@@ -11734,7 +11734,7 @@ msgctxt ""
"par_id8476821\n"
"help.text"
msgid "When you choose to print the document, you will be asked if you want to print a form letter. Answer Yes to open the <link href=\"text/swriter/01/01150000.xhp\">Mail Merge</link> dialog. In the Mail Merge dialog, you can select the records for which you want to print labels."
-msgstr ""
+msgstr "Dokumentua inprimatzea aukeratzen denean, gutun-inprimakia inprimatu nahi duzun galdetuko dizu aplikazioak. Erantzun 'Bai' <link href=\"text/swriter/01/01150000.xhp\">Posta-konbinazioa</link> elkarrizketa-koadroa irekitzeko. 'Posta-konbinazioa' koadroan, etiketak zein erregistrotatik abiatuta inprimatu nahi dituzun hautatu ahal duzu."
#: language_select.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3906979\n"
"help.text"
msgid "In %PRODUCTNAME, choose <item type=\"menuitem\">Tools - Extension Manager</item> and click Add to install the downloaded extensions."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioan, aukeratu <item type=\"menuitem\">Tresnak - Hedapen-kudeatzailea</item> eta sakatu 'Gehitu', deskargatutako hedapenak instalatzeko."
#: language_select.xhp
msgctxt ""
@@ -17182,7 +17182,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or macOS platforms."
-msgstr ""
+msgstr "Windows sisteman, hautatu <emph>Exekutatu</emph> Windows-esko 'Hasiera' menuan, eta Linux, *BSD edo macOS sistemetan, ireki shell bat."
#: start_parameters.xhp
msgctxt ""
@@ -17198,7 +17198,7 @@ msgctxt ""
"par_id3149669\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr ""
+msgstr "UNIXen pareko sistemetan, idatzi honako testu-lerroa, ondoren sakatu <emph>Enter</emph>:"
#: start_parameters.xhp
msgctxt ""
@@ -17254,7 +17254,7 @@ msgctxt ""
"par_id40161212062813818\n"
"help.text"
msgid "Tries to open the file (files) in the components suitable for them."
-msgstr ""
+msgstr "Fitxategia (fitxategiak) haientzat egokiena den osagaiarekin irekitzen saiatzen da."
#: start_parameters.xhp
msgctxt ""
@@ -17310,7 +17310,7 @@ msgctxt ""
"par_id20161204091221764\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Writer."
-msgstr ""
+msgstr "$[officename] Writer aplikazioaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17318,7 +17318,7 @@ msgctxt ""
"par_id20161204091520522\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Calc."
-msgstr ""
+msgstr "$[officename] Calc aplikazioaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17326,7 +17326,7 @@ msgctxt ""
"par_id20161204091727059\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Draw."
-msgstr ""
+msgstr "$[officename] Draw aplikazioaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17334,7 +17334,7 @@ msgctxt ""
"par_id20161204091812159\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Impress."
-msgstr ""
+msgstr "$[officename] Impress aplikazioaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17342,7 +17342,7 @@ msgctxt ""
"par_id20161204091919599\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Base."
-msgstr ""
+msgstr "$[officename] Base aplikazioaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17350,7 +17350,7 @@ msgctxt ""
"par_id20161204092029619\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Basic scripting language."
-msgstr ""
+msgstr "$[officename] Basic script-lengoaiaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17358,7 +17358,7 @@ msgctxt ""
"par_id2016120409214276\n"
"help.text"
msgid "Opens $[officename] built-in or online Help on Math."
-msgstr ""
+msgstr "$[officename] Math aplikazioaren laguntza (barnekoa edo lineakoa) irekitzen du."
#: start_parameters.xhp
msgctxt ""
@@ -17366,7 +17366,7 @@ msgctxt ""
"par_id31473et\n"
"help.text"
msgid "Shows $[officename] version and quits."
-msgstr ""
+msgstr "$[officename] bertsioa erakutsi eta irten egiten da."
#: start_parameters.xhp
msgctxt ""
@@ -17902,7 +17902,7 @@ msgctxt ""
"par_id0820200803104978\n"
"help.text"
msgid "<emph>Text Document</emph> opens %PRODUCTNAME <link href=\"text/swriter/main0000.xhp\">Writer</link>"
-msgstr ""
+msgstr "<emph>Testu-dokumentuak</emph> %PRODUCTNAME <link href=\"text/swriter/main0000.xhp\">Writer</link> irekitzen du"
#: startcenter.xhp
msgctxt ""
@@ -17910,7 +17910,7 @@ msgctxt ""
"par_id0820200803104998\n"
"help.text"
msgid "<emph>Spreadsheet</emph> opens %PRODUCTNAME <link href=\"text/scalc/main0000.xhp\">Calc</link>"
-msgstr ""
+msgstr "<emph>Kalkulu-orriak</emph> %PRODUCTNAME <link href=\"text/scalc/main0000.xhp\">Calc</link> irekitzen du"
#: startcenter.xhp
msgctxt ""
@@ -17918,7 +17918,7 @@ msgctxt ""
"par_id0820200803104927\n"
"help.text"
msgid "<emph>Presentation</emph> opens %PRODUCTNAME <link href=\"text/simpress/main0000.xhp\">Impress</link>"
-msgstr ""
+msgstr "<emph>Aurkezpenak</emph> %PRODUCTNAME <link href=\"text/simpress/main0000.xhp\">Impress</link> irekitzen du"
#: startcenter.xhp
msgctxt ""
@@ -17926,7 +17926,7 @@ msgctxt ""
"par_id0820200803104948\n"
"help.text"
msgid "<emph>Drawing</emph> opens %PRODUCTNAME <link href=\"text/sdraw/main0000.xhp\">Draw</link>"
-msgstr ""
+msgstr "<emph>Marrazkiak</emph> %PRODUCTNAME <link href=\"text/sdraw/main0000.xhp\">Draw</link> irekitzen du"
#: startcenter.xhp
msgctxt ""
@@ -17934,7 +17934,7 @@ msgctxt ""
"par_id0820200803105089\n"
"help.text"
msgid "<emph>Database</emph> opens %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Base</link>"
-msgstr ""
+msgstr "<emph>Datu-baseak</emph> %PRODUCTNAME <link href=\"text/shared/explorer/database/main.xhp\">Base</link> irekitzen du"
#: startcenter.xhp
msgctxt ""
@@ -17942,7 +17942,7 @@ msgctxt ""
"par_id0820200803105015\n"
"help.text"
msgid "<emph>Formula</emph> opens %PRODUCTNAME <link href=\"text/smath/main0000.xhp\">Math</link>"
-msgstr ""
+msgstr "<emph>Formulak</emph> %PRODUCTNAME <link href=\"text/smath/main0000.xhp\">Math</link> irekitzen du"
#: startcenter.xhp
msgctxt ""
@@ -17950,7 +17950,7 @@ msgctxt ""
"par_id1022200911011855\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">The Templates icon opens the Templates dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">'Txantiloiak' ikonoak 'Txantiloiak' elkarrizketa-koadroa irekitzen du.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17958,7 +17958,7 @@ msgctxt ""
"par_id0820200803105045\n"
"help.text"
msgid "The <emph>Templates</emph> icon opens the <link href=\"text/shared/guide/aaa_start.xhp\">Templates</link> dialog."
-msgstr ""
+msgstr "<emph>Txantiloiak</emph> ikonoak <link href=\"text/shared/guide/aaa_start.xhp\">Txantiloiak</link> elkarrizketa-koadroa irekitzen du."
#: startcenter.xhp
msgctxt ""
@@ -17966,7 +17966,7 @@ msgctxt ""
"par_id1022200911011975\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">The Open a Document icon presents a file open dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">'Ireki dokumentu bat' ikonoak fitxategiak irekitzeko elkarrizketa-koadroa erakusten du.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17974,7 +17974,7 @@ msgctxt ""
"par_id082020080310500\n"
"help.text"
msgid "The <emph>Open a document</emph> icon presents a <link href=\"text/shared/guide/doc_open.xhp\">file open</link> dialog."
-msgstr ""
+msgstr "<emph>Ireki dokumentu bat</emph> ikonoak <link href=\"text/shared/guide/doc_open.xhp\">fitxategiak irekitzeko</link> elkarrizketa-koadroa erakusten du."
#: startcenter.xhp
msgctxt ""
@@ -18286,7 +18286,7 @@ msgctxt ""
"bm_id041620170817452766\n"
"help.text"
msgid "<bookmark_value>template manager;filter</bookmark_value> <bookmark_value>template manager;category</bookmark_value> <bookmark_value>template manager;set as default</bookmark_value> <bookmark_value>template manager;import</bookmark_value> <bookmark_value>template manager;export</bookmark_value> <bookmark_value>template manager;settings</bookmark_value> <bookmark_value>templates;template manager</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>txantiloi-kudeatzailea;iragaz</bookmark_value> <bookmark_value>txantiloi-kudeatzailea;kategoria</bookmark_value> <bookmark_value>txantiloi-kudeatzailea;ezarri lehenetsi gisa</bookmark_value> <bookmark_value>txantiloi-kudeatzailea;inportatu</bookmark_value> <bookmark_value>txantiloi-kudeatzailear;esportatu</bookmark_value> <bookmark_value>txantiloi-kudeatzailea;ezarpenak</bookmark_value> <bookmark_value>txantiloiak;txantiloi-kudeatzailea</bookmark_value>"
#: template_manager.xhp
msgctxt ""
@@ -18350,7 +18350,7 @@ msgctxt ""
"par_id041620170723502887\n"
"help.text"
msgid "Templates save editing time by starting new documents with pre-filled contents and formatting. The Template Manager allows you to access and organize templates in %PRODUCTNAME."
-msgstr ""
+msgstr "Txantiloiek edizio-denbora aurrezten laguntzen dute, dokumentu berriak aurretiaz edukiz beteta eta formateatuta irekitzen baitituzte. 'Txantiloi-kudeatzailea' aukerak %PRODUCTNAME aplikazioko txantiloiak atzitzen eta antolatzen laguntzen du."
#: template_manager.xhp
msgctxt ""
@@ -18366,7 +18366,7 @@ msgctxt ""
"par_id041620170723504381\n"
"help.text"
msgid "If you have opened the %PRODUCTNAME start center and have not yet opened a document or application, the Template Manager may be accessed differently. <item type=\"menuitem\">Ctrl-Shift-N</item> will still open the Template Manager, but it may also be accessed by choosing Templates from the left sidebar, and then choosing Manage Templates."
-msgstr ""
+msgstr "%PRODUCTNAME hasiera-zentroa ireki baduzu eta oraindik ez baduzu dokumentu edo aplikazio bat ireki, 'Txantiloi-kudeatzailea' aukera beste modu batean ireki daiteke. <item type=\"menuitem\">Ctrl-Shift-N</item> lasterbideak 'Txantiloi-kudeatzailea' irekiko du, baina ezkerreko alboko barran 'Txantiloiak' hautatuta eta ondoren 'Kudeatu txantiloiak' erabilita ere atzi daiteke."
#: template_manager.xhp
msgctxt ""
@@ -18382,7 +18382,7 @@ msgctxt ""
"par_id041620170723507192\n"
"help.text"
msgid "Previews of available templates show up in the main window based on your search and filtering choices. Double-click on any template icon to open a new document with the contents and formatting of the template."
-msgstr ""
+msgstr "Txantiloi erabilgarrien aurrebistak leiho nagusian erakutsiko dira, zure bilaketak eta iragazki-aukerak kontuan hartuta. Egin klik bikoitza edozein txantiloi-ikonotan, txantiloiaren edukiak eta formatua izango duen dokumentu berria irekitzeko."
#: template_manager.xhp
msgctxt ""
@@ -18390,7 +18390,7 @@ msgctxt ""
"hd_id041620170723501731\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Bilatu"
#: template_manager.xhp
msgctxt ""
@@ -18398,7 +18398,7 @@ msgctxt ""
"par_id041620170723505410\n"
"help.text"
msgid "<ahelp hid=\".\">You may search for a template by entering text in the search box at the top left. The Main window show the templates found.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Goiko ezkerreko bilaketa-koadroan testu bat sartuta, txantiloien artean bilaketak egin ditzakezu. Leiho nagusiak, aurkitutako txantiloiak erakutsiko ditu.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18406,7 +18406,7 @@ msgctxt ""
"hd_id041620170723509978\n"
"help.text"
msgid "Filter"
-msgstr ""
+msgstr "Iragazi"
#: template_manager.xhp
msgctxt ""
@@ -18470,7 +18470,7 @@ msgctxt ""
"hd_id041620170723501627\n"
"help.text"
msgid "Browse Online Templates"
-msgstr ""
+msgstr "Arakatu lineako txantiloiak"
#: template_manager.xhp
msgctxt ""
@@ -18478,7 +18478,7 @@ msgctxt ""
"par_id041620170723503494\n"
"help.text"
msgid "<ahelp hid=\".\">To browse for more templates online, click on the Browse online templates icon at bottom left to open a browser window and search for templates at <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Linean txantiloi gehiago bilatzeko, sakatu 'Arakatu lineako txantiloiak' ikonoa, behean ezkerrean, nabigatzaile bat ireki eta <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> gunean txantiloiak bilatzeko.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18526,7 +18526,7 @@ msgctxt ""
"par_id041620170723501975\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear over the template and the template will automatically load when a new document is created using the matching application."
-msgstr ""
+msgstr "Hautatu txantiloi bat leiho nagusian, egin eskuineko klik eta hautatu 'Ezarri lehenetsi gisa', txantiloia lehenetsi gisa ezartzeko. Marka berde bat agertuko da txantiloiaren gainean eta txantiloia automatikoki kargatuko da aplikazio horretako dokumentu berria sortzen denean."
#: template_manager.xhp
msgctxt ""
@@ -18534,7 +18534,7 @@ msgctxt ""
"par_id041620171037534321\n"
"help.text"
msgid "Refer to the <link href=\"text/shared/guide/standard_template.xhp\">Standard Template</link>"
-msgstr ""
+msgstr "Begiratu <link href=\"text/shared/guide/standard_template.xhp\">txantiloi estandarra</link>"
#: template_manager.xhp
msgctxt ""
@@ -18542,7 +18542,7 @@ msgctxt ""
"hd_id041620170723508003\n"
"help.text"
msgid "Rename"
-msgstr ""
+msgstr "Aldatu izena"
#: template_manager.xhp
msgctxt ""
@@ -18550,7 +18550,7 @@ msgctxt ""
"par_id041620170723509003\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Rename to rename the template. This will cause a dialog box to appear where a new name may be chosen for the template. Type in the name and then choose OK or choose Cancel to revert to the name that is already set."
-msgstr ""
+msgstr "Hautatu txantiloi bat leiho nagusian, egin eskuineko klik eta hautatu 'Aldatu izena', txantiloiaren izena aldatzeko. Elkarrizketa-koadro bat agertuko da, txantiloiarentzako izen berri bat hautatzeko. Idatzi izena eta aukeratu 'Ados', edo aukeratu 'Utzi' idatzi duzun izena baztertzeko."
#: template_manager.xhp
msgctxt ""
@@ -18558,7 +18558,7 @@ msgctxt ""
"hd_id041620170723508658\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Ezabatu"
#: template_manager.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 19e697c558b..0912087e2c6 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-06-06 20:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496782467.000000\n"
#: 01000000.xhp
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/eu/helpcontent2/source/text/simpress/02.po b/source/eu/helpcontent2/source/text/simpress/02.po
index ffedfd0f25f..db5f6af1c7a 100644
--- a/source/eu/helpcontent2/source/text/simpress/02.po
+++ b/source/eu/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-06 16:20+0000\n"
+"PO-Revision-Date: 2017-06-18 06:13+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496766014.000000\n"
+"X-POOTLE-MTIME: 1497766406.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3157873\n"
"help.text"
msgid "If you hold the Shift key down, the movement of the mouse is limited to multiples of 45 degrees. If you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Options</caseinline><defaultinline>Alt</defaultinline></switchinline> key, the new point will not be connected to the last point. This allows you to create objects that consist of curves that are not connected together. If you draw a smaller object while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key into a larger object that you have not closed yet, the smaller object is subtracted from the larger one, thus appearing as a hole in the larger one."
-msgstr ""
+msgstr "'Shift' teklari sakatuta eusten badiozu, saguaren mugimendua 45 graduko multiploetara mugatuko da. <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> teklari sakatuta eusten badiozu, puntu berria ez da azken puntuarekin konektatuko. Horrela, elkarri konektatuta ez dauden kurbez osatuko da objektua. Objektu txikiago bat marrazten baduzu, <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> teklari sakatuta eusten diozun bitartean, oraindik itxi ez duzun objektu handiago baten barruan, objektu txikiaren kenketa egingo da objektu handian, eta zuloa agertuko da handian."
#: 10080000.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"par_id3149540\n"
"help.text"
msgid "<ahelp hid=\".uno:ConnectorLineCircles\">Draws a straight line connector with circles at both ends. Click a gluepoint on an object, drag to a gluepoint on another object, and then release.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ConnectorLineCircles\">Lotura-marra zuzena marrazten du, bi muturretan zirkulu bat duena. Sakatu objektu baten kolatze-puntu batean, arrastatu beste objektu bateko kolatze-puntu batera, eta askatu.</ahelp>"
#: 10100000.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "If you want the dimension line to be the same length as the side of a nearby object, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging. To constrain the dimension line to 45 degrees, hold down the Shift key while dragging."
-msgstr ""
+msgstr "Kota-lerroa alboko objektuaren aldearen luzera berekoa izan dadin nahi baduzu, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ctrl</defaultinline></switchinline> teklari, sagua arrastatzen duzun bitartean. Kota-lerroa 45 gradutarako mugatzeko, eutsi sakatuta 'Shift' teklari sagua arrastatzen duzunean."
#: 10120000.xhp
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<ahelp hid=\".uno:AnimationMode\">Plays a preview of an animation effect that is assigned to an object, when you click the object in the slide. To select an object for editing, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key when you click.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:AnimationMode\">Objektu bati esleitutako animazio-efektu baten aurrebista erreproduzitzen du, diapositiban objektuari klik egiten diozunean. Objektu bat ediziorako hautatzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> teklari klik egiten duzunean.</ahelp>"
#: 13030000.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id3150266\n"
"help.text"
msgid "<ahelp hid=\".uno:ActionMode\">Runs a preview of the interaction that is assigned to an object, when you click the object in the slide. To select an object for editing, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key when you click.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ActionMode\">Objektu bati esleitutako interakzioaren aurrebista exekutatzen du, diapositiban objektuari klik egiten diozunean. Objektu bat ediziorako hautatzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> teklari klik egiten duzunean.</ahelp>"
#: 13040000.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/02/13090000.xhp\" name=\"Create Object with Attributes\">Modify Object with Attributes</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13090000.xhp\" name=\"Create Object with Attributes\">Eraldatu objektua atributuekin</link> "
#: 13090000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress/guide.po b/source/eu/helpcontent2/source/text/simpress/guide.po
index eaabdf845b7..5b8ff55b281 100644
--- a/source/eu/helpcontent2/source/text/simpress/guide.po
+++ b/source/eu/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-04 18:29+0000\n"
+"PO-Revision-Date: 2017-06-18 06:40+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496600952.000000\n"
+"X-POOTLE-MTIME: 1497768001.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_idN1088B\n"
"help.text"
msgid "Click the <emph>Extrusion On/Off</emph> icon<image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">Icon</alt></image> on the <emph>Drawing</emph> bar, or right-click the object and choose <emph>Convert - To 3D</emph>."
-msgstr ""
+msgstr "Sakatu <emph>Estrusioa aktibatuta/desaktibatuta</emph> ikonoa<image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">Ikonoa</alt></image> <emph>Marrazkia</emph> barran, edo egin eskuineko klik objektuan eta aukeratu <emph>Bihurtu - 3D</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN108C5\n"
"help.text"
msgid "To convert a text object to 3D, use the <emph>Fontwork</emph> icon<image id=\"img_id3821222\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3821222\">Icon</alt></image> on the <emph>Drawing</emph> toolbar."
-msgstr ""
+msgstr "Testu-objektu bat 3D bertsiora bihurtzeko, erabili <emph>Fontwork</emph> ikonoa<image id=\"img_id3821222\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3821222\">Ikonoa</alt></image> <emph>Marrazkia</emph> tresna-barran."
#: 3d_create.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3148826123\n"
"help.text"
msgid "On Slide Pane an <image id=\"img_id3151172123\" src=\"sd/res/click_16.png\"/> icon appears next to the preview of those slides, which have one or more objects with custom animation. When you present the slide show with the Presenter Console, <image id=\"img_id3151172235\" src=\"sd/res/presenterscreen-Animation.png\"/> icon indicates that the next slide has custom animation."
-msgstr ""
+msgstr "Diapositiba-panelean, <image id=\"img_id3151172123\" src=\"sd/res/click_16.png\"/> ikono bat ageri da animazio pertsonalizatuz hornitutako objektu bat edo gehiago dituzten diapositiba horien aurrebisten alboan. Diapositiba-aurkezpena aurkezle-kontsolaren bidez aurkezten denean, <image id=\"img_id3151172235\" src=\"sd/res/presenterscreen-Animation.png\"/> ikonoak adierazten du hurrengo diapositibak animazio pertsonalizatu bat duela."
#: animated_objects.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id624713\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click Set Background Picture for Slide in the context menu of a slide in Normal view to select a bitmap file. This file is used as a background picture.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egin klik 'Ezarri atzeko planoko irudia' aukeran, diapositiba baten ikuspegi normaleko laster-menuan, bitmap-fitxategi bat hautatzeko. Fitxategi hori atzeko planoko irudi gisa erabiliko da.</ahelp>"
#: background.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_idN1083F\n"
"help.text"
msgid "Choose <emph>File - Templates - Save As Template</emph> to save the document as a template."
-msgstr ""
+msgstr "Aukeratu <emph>Fitxategia - Txantiloiak - Gorde txantiloi gisa</emph> dokumentua txantiloi gisa gordetzeko."
#: background.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_idN1084A\n"
"help.text"
msgid "Now you can use the Templates window to open a new presentation based on your new template."
-msgstr ""
+msgstr "Orain 'Txantiloiak' leihoa erabil dezakezu txantiloi berrian oinarritutako aurkezpen berria irekitzeko."
#: change_scale.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"hd_id3153191\n"
"help.text"
msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Goiburukoa edo orri-oina gehitzea diapositiba guztiei</link> </variable>"
#: footer.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_idN1065F\n"
"help.text"
msgid "<variable id=\"gluepoints\"><link href=\"text/simpress/guide/gluepoints.xhp\">Using Gluepoints</link></variable>"
-msgstr ""
+msgstr "<variable id=\"gluepoints\"><link href=\"text/simpress/guide/gluepoints.xhp\">Kolatze-puntuak erabilita</link></variable>"
#: gluepoints.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_id0919200803040964\n"
"help.text"
msgid "In Impress and Draw, you can connect each two shapes with a line called a <link href=\"text/simpress/02/10100000.xhp\">connector</link>. When you draw a connector between shapes, the connector will be attached to a gluepoint on each shape. Each shape has some default gluepoints, and the positions of the default gluepoints depend on the specific shape. You can add your own custom gluepoints to a shape and then attach connectors to the custom gluepoints."
-msgstr ""
+msgstr "Impress eta Draw aplikazioetan, bi forma lotu daitezke <link href=\"text/simpress/02/10100000.xhp\">konektore</link> deritzen marren bidez. Formen arteko konektore bat marrazten denean, konektorea forma bakoitzaren kolatze-puntu bati erantsiko zaio. Forma bakoitzak zenbait kolatze-puntu lehenetsi ditu, eta puntu lehenetsi horien kokapena forma motaren araberakoa da. Kolatze-puntu pertsonalizatuak ere gehitu daitezke, eta konektoreak kolatze-puntu pertsonalizatuei erantsi."
#: gluepoints.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id091920080304108\n"
"help.text"
msgid "Do one of the following to get existing glue points visible for all elements:"
-msgstr ""
+msgstr "Egin honako prozeduretako bat elementu guztiek lehendik dituzten kolatzen-puntuak bistan jartzeko:"
#: gluepoints.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id09192008030411601\n"
"help.text"
msgid "Select element on slide where you want to add glue points."
-msgstr ""
+msgstr "Hautatu, diapositiban, kolatze-puntua gehitu nahi diozun elementua."
#: gluepoints.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "Select all of the text that lies below the visible slide area and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X."
-msgstr ""
+msgstr "Hautatu diapositibaten area ikusgaiaren azpian dagoen testua eta sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X."
#: html_import.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"par_id3153811\n"
"help.text"
msgid "Choose <emph>Slide - New Page/Slide</emph>, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V."
-msgstr ""
+msgstr "Aukeratu <emph>Diapositiba - Orrialde/diapositiba berria</emph>, eta sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V."
#: html_import.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3150014\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - General</emph>."
-msgstr ""
+msgstr "Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - Orokorra</emph>"
#: individual.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id883150344\n"
"help.text"
msgid "To hide the current slide, click the Hide Slide action button."
-msgstr ""
+msgstr "Uneko diapositiba ezkutatzeko, sakatu 'Ezkutatu diapositiba' botoia."
#: individual.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id3150650\n"
"help.text"
msgid "To start a slide show, press <item type=\"keycode\">Ctrl+F2</item> or <item type=\"keycode\">F5</item>."
-msgstr ""
+msgstr "Diapositiba-aurkezpen bati ekiteko, sakatu <item type=\"keycode\">Ctrl+F2</item> edo <item type=\"keycode\">F5</item>."
#: keyboard.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"par_id3155263\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+PageDown</item>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">⌥</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+PageDown</item>"
#: keyboard.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_id3145590\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Option</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+PageUp</item>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">⌥</item></caseinline><defaultinline><item type=\"keycode\">Alt</item></defaultinline></switchinline><item type=\"keycode\">+PageUp</item>"
#: keyboard.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"hd_id4153003\n"
"help.text"
msgid "Stop slide show"
-msgstr ""
+msgstr "Gelditu diapositiba-aurkezpena"
#: keyboard.xhp
msgctxt ""
@@ -2070,7 +2070,7 @@ msgctxt ""
"par_id4154501\n"
"help.text"
msgid "<item type=\"keycode\">Esc</item> or <item type=\"keycode\">-</item>."
-msgstr ""
+msgstr "<item type=\"keycode\">Esc</item> edo <item type=\"keycode\">-</item>."
#: keyboard.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select <emph>Slide - Slide Master Design</emph>."
-msgstr ""
+msgstr "Hautatu <emph>Diapositiba - Diapositiba maisuaren diseinua</emph>."
#: masterpage.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master page to all slides. Right-click for a context menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egin klik orrialde maisua diapositiba guztietan aplikatzeko. Egin klik eskuineko botoiarekin laster-menu bat irekitzeko.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_idN107CB\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to apply a slide design to all selected slides. Right-click for a context menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Egin klik diapositiba-diseinua hautatutako diapositiba guztiei aplikatzeko. Egin klik eskuineko botoiaren laster-menu bat irekitzeko.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"bm_id221120161451447252\n"
"help.text"
msgid "<bookmark_value>Photo Album</bookmark_value> <bookmark_value>Impress Photo Album</bookmark_value> <bookmark_value>Multimedia show;Impress Photo Album</bookmark_value> <bookmark_value>Kiosk;Impress Photo Album</bookmark_value> <bookmark_value>Slideshow;Impress Photo Album</bookmark_value> <bookmark_value>Album;Impress Photo Album</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>argazki-albuma</bookmark_value> <bookmark_value>Impress argazki-albuma</bookmark_value> <bookmark_value>multimedia-erakustaldia;Impress argazki-albuma</bookmark_value> <bookmark_value>kioskoa;Impress argazki-albuma</bookmark_value> <bookmark_value>diapositiba-aurkezpena;Impress argazki-albuma</bookmark_value> <bookmark_value>albuma;Impress argazki-albuma</bookmark_value>"
#: photo_album.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id221120161524583460\n"
"help.text"
msgid "The Impress photo album is a quick way to insert several pictures into a presentation and create a document suitable to run continuously in a kiosk or multimedia show."
-msgstr ""
+msgstr "Impress argazki-albuma modu azkarra da zenbait irudi aurkezpen batean txertatzeko eta kiosko batean edo multimedia-erakustaldi batean etengabe exekutatuko den dokumentu egokia sortzeko."
#: photo_album.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id221120161524584397\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album </item>"
-msgstr ""
+msgstr "Aukeratu <item type=\"menuitem\">Txertatu - Multimedia - Argazki-albuma</item>"
#: photo_album.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"hd_id221120161524583459\n"
"help.text"
msgid "To insert a photo album into your presentation"
-msgstr ""
+msgstr "Aurkezpenean argazki-albuma txertatzeko"
#: photo_album.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_id221120161524583519\n"
"help.text"
msgid "Open an existing or blank presentation."
-msgstr ""
+msgstr "Ireki lehendik dagoen edo berria den aurkezpena bat."
#: photo_album.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_id221120161524586628\n"
"help.text"
msgid "Go to the slide that precede the photo album."
-msgstr ""
+msgstr "Joan argazki-albumaren aurrean egongo den diapositibara."
#: photo_album.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_id221120161524581298\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album</item>."
-msgstr ""
+msgstr "Aukeratu <item type=\"menuitem\">Txertatu - Multimedia - Argazki-albuma</item>."
#: photo_album.xhp
msgctxt ""
@@ -4086,7 +4086,7 @@ msgctxt ""
"par_id221120161524582911\n"
"help.text"
msgid "In the Create Photo Album dialog, click <item type=\"menuitem\">Add</item>."
-msgstr ""
+msgstr "'Sortu argazki-albuma' elkarrizketa-koadroan, sakatu <item type=\"menuitem\">Gehitu</item>."
#: photo_album.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id221120161524597741\n"
"help.text"
msgid "Locate the files you want to insert."
-msgstr ""
+msgstr "Bilatu txertatu nahi dituzun fitxategiak."
#: photo_album.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id221120161524594919\n"
"help.text"
msgid "Note: If several images are in the same folder, you can select a group of photos using the Shift or Ctrl keys while clicking on their filenames."
-msgstr ""
+msgstr "Oharra: karpeta berean irudi bat baino gehiago badago, argazki multzo bat hautatu daiteke, fitxategi-izenetan klik egiten den bitartean Shift edo Ctrl teklei sakatuta eutsita."
#: photo_album.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"par_id221120161524595472\n"
"help.text"
msgid "Click <item type=\"menuitem\">Open</item> to add the files to the Photo Album."
-msgstr ""
+msgstr "Sakatu <item type=\"menuitem\">Ireki</item> fitxategiak argazki-albumari gehitzeko."
#: photo_album.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_id221120161524591012\n"
"help.text"
msgid "Tip: Click on a file name to display it in the <item type=\"menuitem\">Preview</item> area"
-msgstr ""
+msgstr "Iradokizuna: Egin klik fitxategi-izenetan, horiek <item type=\"menuitem\">Aurrebista</item> arean bistaratzeko"
#: photo_album.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_id221120161524595468\n"
"help.text"
msgid "Select the number of images per slide in the <item type=\"menuitem\">Slide layout</item> list box."
-msgstr ""
+msgstr "Hautatu diapositiba bakoitzean sartuko den irudi kopurua <item type=\"menuitem\">Diapositiba-diseinua</item> zerrenda-koadroan."
#: photo_album.xhp
msgctxt ""
@@ -4134,7 +4134,7 @@ msgctxt ""
"par_id221120161524598495\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Add caption to each slide</item> checkbox if necessary, to insert a text box for the caption."
-msgstr ""
+msgstr "Markatu <item type=\"menuitem\">Gehitu epigrafea diapositiba bakoitzari</item> kontrol-laukia, beharrezkoa bada, epigraferako testu-koadro bat txertatzeko."
#: photo_album.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id221120161524592767\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Keep aspect ratio</item> checkbox to avoid distorting the images when laying them in the slide. The image will be fully contained in the slide."
-msgstr ""
+msgstr "Markatu <item type=\"menuitem\">Mantendu aspektu-erlazioa</item> kontrol-laukia, irudiak desitxuratu daitezen eragotzi nahi baduzu. Irudia osorik sartuko da diapositiban."
#: photo_album.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_id221120161524597069\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Fill screen</item> to make the image fill the whole presentation screen. The resulting image may be larger than the slide."
-msgstr ""
+msgstr "Markatu <item type=\"menuitem\">Bete pantaila</item>, irudiak aurkezpen-pantaila osoa bete dezan nahi baduzu. Horren ondorioz sortutako irudia diapositiba baino handiagoa izan daiteke."
#: photo_album.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"par_id221120161524595994\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Link images</item> to create a link to the image location in your file system or internet. This option will not embed the images in the presentation document."
-msgstr ""
+msgstr "Markatu <item type=\"menuitem\">Estekatu irudiak</item> irudiaren kokapenari, bai zure fitxategi-sistemakoari bai Internetekoari, lotutako esteka bat sortzeko. Aukera honek ez ditu irudiak aurkezpen-dokumentuan kapsulatuko."
#: photo_album.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id221120161524593343\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert Slides</item>."
-msgstr ""
+msgstr "Sakatu <item type=\"menuitem\">Txertatu diapositibak</item>."
#: photo_album.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_id221120161524501012\n"
"help.text"
msgid "Warning: Clicking Undo will not delete a photo album. Right-click the slides on the slide panel and select Delete to delete the slides."
-msgstr ""
+msgstr "Abisua: 'Desegin' sakatzen bada, argazki-albuma ez da ezabatuko. Egin eskuineko klik diapositiba-panelean dauden diapositibetan eta hautatu 'Ezabatu', diapositibak ezabatzeko."
#: photo_album.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id221120161524598688\n"
"help.text"
msgid "<link href=\"text/simpress/guide/show.xhp\">Slide Shows</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/guide/show.xhp\">Diapositiba-aurkezpenak</link>"
#: photo_album.xhp
msgctxt ""
@@ -4646,7 +4646,7 @@ msgctxt ""
"par_id3159238\n"
"help.text"
msgid "To select an object that is covered by other objects, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and click through the objects until you reach the underlying object. To cycle through the objects in reverse order, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift when you click."
-msgstr ""
+msgstr "Beste objektu batzuek estaltzen duten objektu bat hautatzeko, eutsi sakatuta<switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> eta egin klik objektu guztietan zehar, azpiko azken objektura iritsi arte. Objektuan zehar ziklo osoa alderantzizko ordenan egiteko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift klik egiten duzunean."
#: select_object.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id4199957\n"
"help.text"
msgid "If you want all shows to start from the current slide instead of the first slide, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - General</emph> and click <emph>Always with current page</emph>."
-msgstr ""
+msgstr "Diapositiba-aurkezpen guztiak uneko diapositibarekin hasi nahi badituzu, lehen diapositibarekin hasi ordez, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress - Orokorra</emph> eta sakatu <emph>Beti uneko orrialdearekin</emph>."
#: show.xhp
msgctxt ""
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_id2361522\n"
"help.text"
msgid "Open the <emph>Slide Transition</emph> sidebar deck."
-msgstr ""
+msgstr "Ireki <emph>Diapositiba-trantsizioa</emph> alboko barraren panela."
#: show.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/smath/01.po b/source/eu/helpcontent2/source/text/smath/01.po
index acb0c5ff892..2bb5542ea57 100644
--- a/source/eu/helpcontent2/source/text/smath/01.po
+++ b/source/eu/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-04-30 09:23+0000\n"
+"PO-Revision-Date: 2017-06-21 06:07+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493544183.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498025257.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3148699\n"
"help.text"
msgid "Some <link href=\"text/smath/01/03090900.xhp\" name=\"examples\">examples</link> show you the range of operations."
-msgstr ""
+msgstr "Honako <link href=\"text/smath/01/03090900.xhp\" name=\"examples\">adibideek</link> eragiketa posibleak erakusten dituzte."
#: 03090000.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Hainbat eragile unario eta bitar aukera ditzakezu zure $[officename] Math formula eraikitzeko. Unarioa leku-marka bati eragiten dion eragilea da. Bitarra, aldiz, bi leku-marka lotzen dituen eragilea. 'Elementuak' paneleko behealdean eragile indibidualak bistaratzen dira. <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">Laster-menuak</link> ere, <emph>Komandoak</emph>leihoan, eragile hauen zerrenda bat dauka, beste eragile batzuez gainera. 'Elementuak' panelean ageri ez den eragileren bat behar izanez gero, erabili laster-menua edo idatzi komandoa zuzenean <emph>Komandoak</emph> lehioan."
#: 03090100.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3146963\n"
"help.text"
msgid "The following is a complete list of the unary and binary operators. The symbol next to the operator indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the Commands window."
-msgstr ""
+msgstr "Jarraian datorren zerrenda eragile unarioen eta bitarren zerrenda da. Eragilearen alboko ikurrak 'Elementuak' paneletik (aukeratu <emph>Ikusi - Elementuak</emph>) edo 'Komandoak' leihoko laster-menutik atzitu daitekeela adierazten du."
#: 03090100.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN10085\n"
"help.text"
msgid "<image id=\"img_id3156399\" src=\"media/helpimg/starmath/un21201.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156399\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156399\" src=\"media/helpimg/starmath/un21201.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156399\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_idN100C1\n"
"help.text"
msgid "<image id=\"img_id3148776\" src=\"media/helpimg/starmath/un21202.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148776\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148776\" src=\"media/helpimg/starmath/un21202.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148776\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_idN100FD\n"
"help.text"
msgid "<image id=\"img_id3150757\" src=\"media/helpimg/starmath/un21203.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150757\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150757\" src=\"media/helpimg/starmath/un21203.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150757\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_idN10139\n"
"help.text"
msgid "<image id=\"img_id3145410\" src=\"media/helpimg/starmath/un21204.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145410\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145410\" src=\"media/helpimg/starmath/un21204.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145410\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_idN10175\n"
"help.text"
msgid "<image id=\"img_id3151098\" src=\"media/helpimg/starmath/un21205.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151098\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151098\" src=\"media/helpimg/starmath/un21205.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151098\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_idN101B0\n"
"help.text"
msgid "<image id=\"img_id3155898\" src=\"media/helpimg/starmath/un21206.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155898\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155898\" src=\"media/helpimg/starmath/un21206.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155898\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_idN101E9\n"
"help.text"
msgid "<image id=\"img_id3149308\" src=\"media/helpimg/starmath/un21207.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149308\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149308\" src=\"media/helpimg/starmath/un21207.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149308\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_idN10226\n"
"help.text"
msgid "<image id=\"img_id3148982\" src=\"media/helpimg/starmath/un21208.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148982\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148982\" src=\"media/helpimg/starmath/un21208.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148982\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_idN1025F\n"
"help.text"
msgid "<image id=\"img_id3155140\" src=\"media/helpimg/starmath/un21209.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155140\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155140\" src=\"media/helpimg/starmath/un21209.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155140\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_idN10298\n"
"help.text"
msgid "<image id=\"img_id3149168\" src=\"media/helpimg/starmath/un21210.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149168\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149168\" src=\"media/helpimg/starmath/un21210.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149168\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_idN102D1\n"
"help.text"
msgid "<image id=\"img_id3148765\" src=\"media/helpimg/starmath/un21211.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148765\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148765\" src=\"media/helpimg/starmath/un21211.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148765\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_idN1030A\n"
"help.text"
msgid "<image id=\"img_id3147418\" src=\"media/helpimg/starmath/un21212.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147418\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147418\" src=\"media/helpimg/starmath/un21212.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147418\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_idN10343\n"
"help.text"
msgid "<image id=\"img_id3149566\" src=\"media/helpimg/starmath/un21213.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149566\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149566\" src=\"media/helpimg/starmath/un21213.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149566\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"par_idN10383\n"
"help.text"
msgid "<image id=\"img_id3147116\" src=\"media/helpimg/starmath/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147116\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147116\" src=\"media/helpimg/starmath/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147116\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_idN103C3\n"
"help.text"
msgid "<image id=\"img_id3148440\" src=\"media/helpimg/starmath/un21215.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148440\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148440\" src=\"media/helpimg/starmath/un21215.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148440\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_idN10403\n"
"help.text"
msgid "<image id=\"img_id3150173\" src=\"media/helpimg/starmath/un21221.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150173\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150173\" src=\"media/helpimg/starmath/un21221.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150173\">Ikonoa</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3153152\n"
"help.text"
msgid "You can choose among various relations to structure your <emph>$[officename] Math</emph> formula. The relation functions are displayed in the lower part of the Elements pane. The list is also in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All relations that are not contained in the Elements pane or in the context menu can be typed manually in the Commands window."
-msgstr ""
+msgstr "Hainbat erlazioren artean aukera dezakezu zure <emph>$[officename] Math</emph> formula egituratzeko. Erlazio-funtzioak 'Elementuak' panelaren behealdean bistaratuko dira. Gainera, zerrenda <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menu batean</link> ere badago, <emph>Komandoak</emph> leihokoan. 'Elementuak' panelean edo laster-menuan azaltzen ez diren erlazioak, eskuz idatzi daitezke 'Komandoak' leihoan."
#: 03090200.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3149755\n"
"help.text"
msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Hainbat eragileren artean aukera dezakezu zure <emph>$[officename] Math</emph> formula eraikitzeko. 'Elementuak' panelaren behealdean bistaratuko dira erabilgarri dauden eragile guztiak. Gainera, zerrenda <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menu</link> batean ere badago, <emph>Komandoak</emph> leihokoan. 'Elementuak' panelean edo laster-menuan azaltzen ez diren eragileak eskuz idatzi daitezke <emph>Komandoak</emph> leihoan."
#: 03090300.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the window. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Aukeratu funtzio bat leihoaren behealdean. Funtzio horiek <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menu</link> batean ere badaude, <emph>Komandoak</emph> leihokoan. 'Elementuak' panelean ez dauden funtzioak 'Komandoak' leihoan eskuz idatzi beharko dituzu."
#: 03090400.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"par_id3150760\n"
"help.text"
msgid "The following is a list of all functions that appear in the <emph>Elements</emph> pane. The icon next to the function indicates that it can be accessed through the Elements pane (menu View - Elements) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Jarraian datorren zerrendak <emph>Elementuak</emph> leihoan azaltzen diren funtzioak ditu. Funtzioaren alboko ikurrak 'Elementuak' paneletik (Ikusi - Elementuak) edo <emph>Komandoak</emph> leihoko laster-menutik atzitu daitekeela adierazten du."
#: 03090400.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_idN10081\n"
"help.text"
msgid "<image id=\"img_id3153154\" src=\"media/helpimg/starmath/fu21505.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153154\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153154\" src=\"media/helpimg/starmath/fu21505.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153154\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"par_idN100BC\n"
"help.text"
msgid "<image id=\"img_id3147507\" src=\"media/helpimg/starmath/fu21506.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147507\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147507\" src=\"media/helpimg/starmath/fu21506.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147507\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2206,7 +2206,7 @@ msgctxt ""
"par_idN100F7\n"
"help.text"
msgid "<image id=\"img_id3154574\" src=\"media/helpimg/starmath/fu21507.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154574\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154574\" src=\"media/helpimg/starmath/fu21507.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154574\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"par_idN10132\n"
"help.text"
msgid "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149687\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149687\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149490\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149490\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"par_idN101B1\n"
"help.text"
msgid "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149043\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149043\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_idN101EA\n"
"help.text"
msgid "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147139\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147139\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_idN10223\n"
"help.text"
msgid "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148759\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148759\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"par_idN1025C\n"
"help.text"
msgid "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149536\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149536\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_idN10295\n"
"help.text"
msgid "<image id=\"img_id3147499\" src=\"media/helpimg/starmath/fu21513.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147499\" src=\"media/helpimg/starmath/fu21513.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147499\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_idN102CE\n"
"help.text"
msgid "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168610\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168610\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"par_idN10309\n"
"help.text"
msgid "<image id=\"img_id3147608\" src=\"media/helpimg/starmath/fu21514.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147608\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147608\" src=\"media/helpimg/starmath/fu21514.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147608\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_idN10342\n"
"help.text"
msgid "<image id=\"img_id3151087\" src=\"media/helpimg/starmath/fu21515.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151087\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151087\" src=\"media/helpimg/starmath/fu21515.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151087\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"par_idN1037C\n"
"help.text"
msgid "<image id=\"img_id3151112\" src=\"media/helpimg/starmath/fu21516.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151112\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151112\" src=\"media/helpimg/starmath/fu21516.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151112\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"par_idN103B5\n"
"help.text"
msgid "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154714\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154714\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"par_idN103EE\n"
"help.text"
msgid "<image id=\"img_id3145633\" src=\"media/helpimg/starmath/fu21517.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145633\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145633\" src=\"media/helpimg/starmath/fu21517.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145633\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2542,7 +2542,7 @@ msgctxt ""
"par_idN10427\n"
"help.text"
msgid "<image id=\"img_id3146951\" src=\"media/helpimg/starmath/fu21518.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146951\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146951\" src=\"media/helpimg/starmath/fu21518.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146951\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_idN10460\n"
"help.text"
msgid "<image id=\"img_id3149369\" src=\"media/helpimg/starmath/fu21519.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149369\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149369\" src=\"media/helpimg/starmath/fu21519.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149369\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2590,7 +2590,7 @@ msgctxt ""
"par_idN10493\n"
"help.text"
msgid "<image id=\"img_id3153141\" src=\"media/helpimg/starmath/fu21520.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153141\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153141\" src=\"media/helpimg/starmath/fu21520.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153141\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"par_idN104CC\n"
"help.text"
msgid "<image id=\"img_id3154624\" src=\"media/helpimg/starmath/fu21501.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154624\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154624\" src=\"media/helpimg/starmath/fu21501.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154624\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"par_idN10507\n"
"help.text"
msgid "<image id=\"img_id3154023\" src=\"media/helpimg/starmath/fu21521.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154023\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154023\" src=\"media/helpimg/starmath/fu21521.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154023\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "<image id=\"img_id3149602\" src=\"media/helpimg/starmath/fu21522.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149602\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149602\" src=\"media/helpimg/starmath/fu21522.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149602\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_idN10573\n"
"help.text"
msgid "<image id=\"img_id3155342\" src=\"media/helpimg/starmath/fu21523.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155342\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155342\" src=\"media/helpimg/starmath/fu21523.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155342\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2710,7 +2710,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "<image id=\"img_id3150842\" src=\"media/helpimg/starmath/fu21524.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150842\" src=\"media/helpimg/starmath/fu21524.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2734,7 +2734,7 @@ msgctxt ""
"par_idN105E5\n"
"help.text"
msgid "<image id=\"img_id3145301\" src=\"media/helpimg/starmath/fu21502.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145301\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145301\" src=\"media/helpimg/starmath/fu21502.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145301\">Ikonoa</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"par_id3147258\n"
"help.text"
msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Hainbat kortxete motaren artean aukera dezakezu <emph>$[officename] Math</emph> formula eraikitzeko. Kortxete motak 'Elementuak' panelaren behealdean bistaratuko dira. Gainera, kortxete horiek <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menu</link> batean ere zerrendatuko dira, <emph>Komandoak</emph> leihokoan. 'Elementuak' panelean edo laster-menuan ageri ez diren kortxeteak eskuz idatzi daitezke <emph>Komandoak</emph> leihoan."
#: 03090500.xhp
msgctxt ""
@@ -2806,7 +2806,7 @@ msgctxt ""
"par_id3154264\n"
"help.text"
msgid "The following is a complete list of all available bracket types. The icon next to the bracket type indicates that it can be accessed through the Elements pane (menu View - Elements) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Jarraian datorren zerrendan, erabili daitezkeen dauden kortxete motak ageri dira. Kortxete motaren alboko ikonoak 'Elementuak' paneletik ('Ikusi - Elementuak' menua) edo <emph>Komandoak</emph> leihoko laster-menutik atzitu daitekeela adierazten du."
#: 03090500.xhp
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"par_idN10084\n"
"help.text"
msgid "<image id=\"img_id3149801\" src=\"media/helpimg/starmath/al21801.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149801\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149801\" src=\"media/helpimg/starmath/al21801.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149801\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2846,7 +2846,7 @@ msgctxt ""
"par_idN100BF\n"
"help.text"
msgid "<image id=\"img_id3158440\" src=\"media/helpimg/starmath/al21802.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3158440\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158440\" src=\"media/helpimg/starmath/al21802.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3158440\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2870,7 +2870,7 @@ msgctxt ""
"par_idN100F8\n"
"help.text"
msgid "<image id=\"img_id3146923\" src=\"media/helpimg/starmath/al21823.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146923\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146923\" src=\"media/helpimg/starmath/al21823.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146923\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_idN10131\n"
"help.text"
msgid "<image id=\"img_id3149815\" src=\"media/helpimg/starmath/al21804.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149815\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149815\" src=\"media/helpimg/starmath/al21804.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149815\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2918,7 +2918,7 @@ msgctxt ""
"par_idN1016C\n"
"help.text"
msgid "<image id=\"img_id3148736\" src=\"media/helpimg/starmath/al21805.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3148736\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148736\" src=\"media/helpimg/starmath/al21805.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3148736\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2942,7 +2942,7 @@ msgctxt ""
"par_idN101A5\n"
"help.text"
msgid "<image id=\"img_id3153350\" src=\"media/helpimg/starmath/al21806.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153350\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153350\" src=\"media/helpimg/starmath/al21806.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153350\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"par_idN101DE\n"
"help.text"
msgid "<image id=\"img_id3155118\" src=\"media/helpimg/starmath/al21803.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3155118\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155118\" src=\"media/helpimg/starmath/al21803.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3155118\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"par_idN10217\n"
"help.text"
msgid "<image id=\"img_id3155867\" src=\"media/helpimg/starmath/al21821.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3155867\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155867\" src=\"media/helpimg/starmath/al21821.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3155867\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3014,7 +3014,7 @@ msgctxt ""
"par_idN10253\n"
"help.text"
msgid "<image id=\"img_id3149561\" src=\"media/helpimg/starmath/al21808.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149561\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149561\" src=\"media/helpimg/starmath/al21808.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149561\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_idN1028E\n"
"help.text"
msgid "<image id=\"img_id3147733\" src=\"media/helpimg/starmath/al21809.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147733\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147733\" src=\"media/helpimg/starmath/al21809.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147733\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"par_idN102CC\n"
"help.text"
msgid "<image id=\"img_id3148852\" src=\"media/helpimg/starmath/al21810.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148852\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148852\" src=\"media/helpimg/starmath/al21810.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148852\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"par_idN10307\n"
"help.text"
msgid "<image id=\"img_id3153794\" src=\"media/helpimg/starmath/al21824.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153794\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153794\" src=\"media/helpimg/starmath/al21824.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153794\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"par_idN10342\n"
"help.text"
msgid "<image id=\"img_id3153972\" src=\"media/helpimg/starmath/al21812.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153972\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153972\" src=\"media/helpimg/starmath/al21812.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153972\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"par_idN1037E\n"
"help.text"
msgid "<image id=\"img_id3155598\" src=\"media/helpimg/starmath/al21813.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155598\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155598\" src=\"media/helpimg/starmath/al21813.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155598\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3158,7 +3158,7 @@ msgctxt ""
"par_idN103B7\n"
"help.text"
msgid "<image id=\"img_id3153223\" src=\"media/helpimg/starmath/al21814.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153223\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153223\" src=\"media/helpimg/starmath/al21814.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153223\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_idN103F0\n"
"help.text"
msgid "<image id=\"img_id3150026\" src=\"media/helpimg/starmath/al21811.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150026\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150026\" src=\"media/helpimg/starmath/al21811.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150026\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"par_idN10429\n"
"help.text"
msgid "<image id=\"img_id3154235\" src=\"media/helpimg/starmath/al21822.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154235\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154235\" src=\"media/helpimg/starmath/al21822.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154235\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_idN10464\n"
"help.text"
msgid "<image id=\"img_id3154349\" src=\"media/helpimg/starmath/al21825.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154349\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154349\" src=\"media/helpimg/starmath/al21825.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154349\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"par_idN104A0\n"
"help.text"
msgid "<image id=\"img_id3149646\" src=\"media/helpimg/starmath/al21826.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149646\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149646\" src=\"media/helpimg/starmath/al21826.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149646\">Ikonoa</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3145802\n"
"help.text"
msgid "You can choose from various attributes for <emph>%PRODUCTNAME</emph> <emph>Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Hainbat atributuren artean aukeratu daiteke <emph>%PRODUCTNAME</emph> <emph>Math</emph> formulak aplikatzeko. Zenbait atributu 'Elementuak' panelaren behealdean bistaratzen dira. Atributu horiek <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menu</link> batean ere zerrendatzen dira, <emph>Komandoak</emph> leihoan. 'Elementuak' panelean edo laster-menuan azaltzen ez diren atributuak eskuz idatzi daitezke <emph>Komandoak</emph> leihoan."
#: 03090600.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "The following is a complete list of all attributes available in <item type=\"productname\">%PRODUCTNAME</item> Math. The symbol next to the attribute indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Jarraian datorren zerrenda <item type=\"productname\">%PRODUCTNAME</item> Math-en erabilgarri dauden atributuen zerrenda bat da. Atributuen alboko ikurrak 'Elementuak' paneletik (aukeratu <emph>Ikusi - Elementuak</emph>) edo <emph>Komandoak</emph> leihoko laster-menutik atzitu daitekeela adierazten du."
#: 03090600.xhp
msgctxt ""
@@ -3462,7 +3462,7 @@ msgctxt ""
"par_idN10098\n"
"help.text"
msgid "<image id=\"img_id3150391\" src=\"media/helpimg/starmath/at21701.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150391\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150391\" src=\"media/helpimg/starmath/at21701.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150391\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_idN100D5\n"
"help.text"
msgid "<image id=\"img_id3154504\" src=\"media/helpimg/starmath/at21702.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154504\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154504\" src=\"media/helpimg/starmath/at21702.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154504\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3149877\n"
"help.text"
msgid "<emph>Grave accent</emph>"
-msgstr ""
+msgstr "<emph>Azentu kamutsa</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_idN10115\n"
"help.text"
msgid "<image id=\"img_id3155370\" src=\"media/helpimg/starmath/at21703.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155370\" src=\"media/helpimg/starmath/at21703.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3156263\n"
"help.text"
msgid "<emph>Reverse Circumflex</emph>"
-msgstr ""
+msgstr "<emph>Alderantzizko zirkunflexua</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_idN1014E\n"
"help.text"
msgid "<image id=\"img_id3145202\" src=\"media/helpimg/starmath/at21704.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145202\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145202\" src=\"media/helpimg/starmath/at21704.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145202\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"par_id3149976\n"
"help.text"
msgid "<emph>Breve</emph>"
-msgstr ""
+msgstr "<emph>Azentu laburra</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_idN10187\n"
"help.text"
msgid "<image id=\"img_id3159179\" src=\"media/helpimg/starmath/at21709.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159179\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159179\" src=\"media/helpimg/starmath/at21709.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159179\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3154258\n"
"help.text"
msgid "<emph>Circle</emph>"
-msgstr ""
+msgstr "<emph>Eraztun-azentua</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_idN101C0\n"
"help.text"
msgid "<image id=\"img_id3149808\" src=\"media/helpimg/starmath/im21106.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149808\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149808\" src=\"media/helpimg/starmath/im21106.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149808\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<emph>Vector arrow</emph>"
-msgstr ""
+msgstr "<emph>Bektore-gezia</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_idN101FB\n"
"help.text"
msgid "<image id=\"img_id3153776\" src=\"media/helpimg/starmath/at21708.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153776\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153776\" src=\"media/helpimg/starmath/at21708.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153776\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_id3150356\n"
"help.text"
msgid "<emph>Tilde</emph>"
-msgstr ""
+msgstr "<emph>Tileta</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_idN10236\n"
"help.text"
msgid "<image id=\"img_id3149695\" src=\"media/helpimg/starmath/at21707.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149695\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149695\" src=\"media/helpimg/starmath/at21707.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149695\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3154201\n"
"help.text"
msgid "<emph>Circumflex</emph>"
-msgstr ""
+msgstr "<emph>Zirkunflexua</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3654,7 +3654,7 @@ msgctxt ""
"par_idN1026E\n"
"help.text"
msgid "<image id=\"img_id3148986\" src=\"media/helpimg/starmath/at21705.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148986\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148986\" src=\"media/helpimg/starmath/at21705.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148986\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"par_id3149486\n"
"help.text"
msgid "<emph>Line above (bar)</emph>"
-msgstr ""
+msgstr "<emph>Gaineko barra horizontala</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"par_idN102A7\n"
"help.text"
msgid "<image id=\"img_id3147095\" src=\"media/helpimg/starmath/at21710.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147095\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147095\" src=\"media/helpimg/starmath/at21710.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147095\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3147221\n"
"help.text"
msgid "<emph>Dot</emph>"
-msgstr ""
+msgstr "<emph>Puntua</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_idN102E0\n"
"help.text"
msgid "<image id=\"img_id3147328\" src=\"media/helpimg/starmath/at21724.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147328\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147328\" src=\"media/helpimg/starmath/at21724.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147328\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"par_id3153516\n"
"help.text"
msgid "<emph>Wide vector arrow</emph>"
-msgstr ""
+msgstr "<emph>Bektore-gezi zabala</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3726,7 +3726,7 @@ msgctxt ""
"par_idN10319\n"
"help.text"
msgid "<image id=\"img_id3153359\" src=\"media/helpimg/starmath/at21723.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153359\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153359\" src=\"media/helpimg/starmath/at21723.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153359\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3156278\n"
"help.text"
msgid "<emph>Wide tilde</emph>"
-msgstr ""
+msgstr "<emph>Tilet zabala</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_idN10352\n"
"help.text"
msgid "<image id=\"img_id3155117\" src=\"media/helpimg/starmath/at21722.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155117\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155117\" src=\"media/helpimg/starmath/at21722.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155117\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"par_id3148764\n"
"help.text"
msgid "<emph>Wide circumflex</emph>"
-msgstr ""
+msgstr "<emph>Zirkunflexu zabala</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"par_idN1038B\n"
"help.text"
msgid "<image id=\"img_id3148873\" src=\"media/helpimg/starmath/at21711.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148873\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148873\" src=\"media/helpimg/starmath/at21711.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148873\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3155921\n"
"help.text"
msgid "<emph>Double dot</emph>"
-msgstr ""
+msgstr "<emph>Puntu bikoitza</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_idN103C4\n"
"help.text"
msgid "<image id=\"img_id3147424\" src=\"media/helpimg/starmath/at21713.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147424\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147424\" src=\"media/helpimg/starmath/at21713.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147424\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"par_id3147621\n"
"help.text"
msgid "<emph>Line over</emph>"
-msgstr ""
+msgstr "<emph>Gaineko marra</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id3147492\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_OVERLINEX\">Inserts a line over a placeholder.</ahelp> You can also type <emph>overline <?></emph> in the <emph>Commands</emph> window. The line adjusts itself to correct length."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_OVERLINEX\">Leku-markaren gainean marra txertatzen du.</ahelp> <emph>gaineko marra <?></emph> ere idatz dezakezu <emph>Komandoak</emph> leihoan. Marra automatikoki dagokion luzerara egokitzen da."
#: 03090600.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"par_idN103FD\n"
"help.text"
msgid "<image id=\"img_id3145130\" src=\"media/helpimg/starmath/at21714.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145130\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145130\" src=\"media/helpimg/starmath/at21714.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145130\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id3153258\n"
"help.text"
msgid "<emph>Line below</emph>"
-msgstr ""
+msgstr "<emph>Azpiko marra</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"par_idN10436\n"
"help.text"
msgid "<image id=\"img_id3145318\" src=\"media/helpimg/starmath/at21715.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145318\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145318\" src=\"media/helpimg/starmath/at21715.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145318\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"par_id3153292\n"
"help.text"
msgid "<emph>Line through (overstrike)</emph>"
-msgstr ""
+msgstr "<emph>Marra gainjarria</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_idN1046F\n"
"help.text"
msgid "<image id=\"img_id3156104\" src=\"media/helpimg/starmath/at21712.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156104\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156104\" src=\"media/helpimg/starmath/at21712.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156104\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_id3154707\n"
"help.text"
msgid "<emph>Triple dot</emph>"
-msgstr ""
+msgstr "<emph>Puntu hirukoitza</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_idN104A8\n"
"help.text"
msgid "<image id=\"img_id3145626\" src=\"media/helpimg/starmath/at21716.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145626\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145626\" src=\"media/helpimg/starmath/at21716.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145626\">Ikonoa</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_id3149774\n"
"help.text"
msgid "<emph>Transparent</emph>"
-msgstr ""
+msgstr "<emph>Gardena</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"par_id3150089\n"
"help.text"
msgid "<emph>Bold font</emph>"
-msgstr ""
+msgstr "<emph>Letra-tipo lodia</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3950,7 +3950,7 @@ msgctxt ""
"par_id3147344\n"
"help.text"
msgid "<emph>Italic font</emph>"
-msgstr ""
+msgstr "<emph>Letra-tipo etzana</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3145618\n"
"help.text"
msgid "<emph>Resize</emph>"
-msgstr ""
+msgstr "<emph>Aldatu tamaina</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3998,7 +3998,7 @@ msgctxt ""
"par_id3154359\n"
"help.text"
msgid "<emph>Change font</emph>"
-msgstr ""
+msgstr "<emph>Aldatu letra-tipoa</emph>"
#: 03090600.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "For more information about formatting in <emph>%PRODUCTNAME</emph> <emph>Math</emph>, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
-msgstr ""
+msgstr "Informazio gehiago nahi izanez gero <emph>%PRODUCTNAME</emph> <emph>Math</emph> aplikazioan formatua nola eman jakitzeko, ikusi <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Kortxeteak eta taldekatzea</link>."
#: 03090600.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower half of the Formula Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Hainbat aukera dituzu $[officename] Math formula bati formatua emateko. Formatu-aukerak 'Formula-elementuak' panelaren behealdean bistaratzen dira. Aukera horiek <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menu</link> batean ere zerrendatzen dira, <emph>Komandoak</emph> leihokoan."
#: 03090700.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id3154263\n"
"help.text"
msgid "The following is a complete list of all available formatting options in $[officename] Math. The icon next to the formatting option indicates that it can be accessed through the Elements pane (menu <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Jarraian datorren zerrendan $[officename] Math-en erabilgarri dauden formatu-aukerak ageri dira. Formatu-aukeraren alboko ikurrak 'Elementuak' paneletik (<emph>Ikusi - Elementuak</emph> menua) edo <emph>Komandoak</emph> leihoko laster-menutik atzitu daitekeela adierazten du."
#: 03090700.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_idN1008B\n"
"help.text"
msgid "<image id=\"img_id3150981\" src=\"media/helpimg/starmath/co21916.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150981\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150981\" src=\"media/helpimg/starmath/co21916.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150981\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_idN100C4\n"
"help.text"
msgid "<image id=\"img_id3149691\" src=\"media/helpimg/starmath/co21918.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149691\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149691\" src=\"media/helpimg/starmath/co21918.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149691\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_idN100FF\n"
"help.text"
msgid "<image id=\"img_id3149097\" src=\"media/helpimg/starmath/co21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149097\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149097\" src=\"media/helpimg/starmath/co21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149097\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"par_idN1013E\n"
"help.text"
msgid "<image id=\"img_id3149044\" src=\"media/helpimg/starmath/co21905.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149044\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149044\" src=\"media/helpimg/starmath/co21905.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149044\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"par_idN10179\n"
"help.text"
msgid "<image id=\"img_id3154390\" src=\"media/helpimg/starmath/co21901.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3154390\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154390\" src=\"media/helpimg/starmath/co21901.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3154390\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_idN101B2\n"
"help.text"
msgid "<image id=\"img_id3155117\" src=\"media/helpimg/starmath/co21912.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155117\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155117\" src=\"media/helpimg/starmath/co21912.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155117\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_idN101EB\n"
"help.text"
msgid "<image id=\"img_id3149544\" src=\"media/helpimg/starmath/co21917.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149544\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149544\" src=\"media/helpimg/starmath/co21917.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149544\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"par_idN10226\n"
"help.text"
msgid "<image id=\"img_id3145265\" src=\"media/helpimg/starmath/co21904.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145265\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145265\" src=\"media/helpimg/starmath/co21904.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145265\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"par_idN10265\n"
"help.text"
msgid "<image id=\"img_id3149220\" src=\"media/helpimg/starmath/co21906.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149220\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149220\" src=\"media/helpimg/starmath/co21906.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149220\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_idN102A0\n"
"help.text"
msgid "<image id=\"img_id3149848\" src=\"media/helpimg/starmath/co21902.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149848\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149848\" src=\"media/helpimg/starmath/co21902.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149848\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_idN102DC\n"
"help.text"
msgid "<image id=\"img_id3154094\" src=\"media/helpimg/starmath/co21909.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154094\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154094\" src=\"media/helpimg/starmath/co21909.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154094\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"par_idN10317\n"
"help.text"
msgid "<image id=\"img_id3156130\" src=\"media/helpimg/starmath/co21910.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156130\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156130\" src=\"media/helpimg/starmath/co21910.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156130\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_idN10352\n"
"help.text"
msgid "<image id=\"img_id3155583\" src=\"media/helpimg/starmath/co21911.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155583\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155583\" src=\"media/helpimg/starmath/co21911.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155583\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"par_idN1038D\n"
"help.text"
msgid "<image id=\"img_id3155085\" src=\"media/helpimg/starmath/co21907.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155085\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155085\" src=\"media/helpimg/starmath/co21907.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155085\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4462,7 +4462,7 @@ msgctxt ""
"par_idN103C9\n"
"help.text"
msgid "<image id=\"img_id3150027\" src=\"media/helpimg/starmath/co21903.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150027\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150027\" src=\"media/helpimg/starmath/co21903.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150027\">Ikonoa</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4630,7 +4630,7 @@ msgctxt ""
"par_id3154641\n"
"help.text"
msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
-msgstr ""
+msgstr "Esleitu eragile multzo ezberdinak zure <emph>$[officename] Math</emph> formulan azaltzen diren karaktereei. Eragile indibidualak 'Elementuak' panelaren behealdean azaltzen dira. Jo ezazu <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">laster-menura</link>, <emph>Komandoak</emph> leihoan, funtzio indibidualen zerrenda bera ikusteko. 'Elementuak' panelean ez dauden eragileak zuzenean 'Komandoak' leihoan sar daitezke. Formularen beste zati batzuk zuzenean txertatu ahal dira, nahiz eta horien ikurrak dagoeneko lehendik egon."
#: 03090800.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "After clicking the <emph>Set Operations</emph> icon in the Elements pane additional icons will be shown in the lower part of this window. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window."
-msgstr ""
+msgstr "'Elementuak' paneleko <emph>Multzo-eragiketak</emph> ikonoan klik eginda, ikono gehiago agertuko dira leihoaren behealdean. Egin klik ikurretan, eragileak 'Komandoak' leihoan editatzen ari zaren formulan txertatzeko."
#: 03090800.xhp
msgctxt ""
@@ -4654,7 +4654,7 @@ msgctxt ""
"par_idN10081\n"
"help.text"
msgid "<image id=\"img_id3145418\" src=\"media/helpimg/starmath/op21401.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3145418\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145418\" src=\"media/helpimg/starmath/op21401.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3145418\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_idN100BC\n"
"help.text"
msgid "<image id=\"img_id3153782\" src=\"media/helpimg/starmath/op21402.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3153782\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153782\" src=\"media/helpimg/starmath/op21402.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3153782\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4702,7 +4702,7 @@ msgctxt ""
"par_idN100F7\n"
"help.text"
msgid "<image id=\"img_id3150972\" src=\"media/helpimg/starmath/op21403.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3150972\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150972\" src=\"media/helpimg/starmath/op21403.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3150972\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_idN10135\n"
"help.text"
msgid "<image id=\"img_id3155180\" src=\"media/helpimg/starmath/op22002.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155180\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155180\" src=\"media/helpimg/starmath/op22002.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155180\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4750,7 +4750,7 @@ msgctxt ""
"par_idN1016E\n"
"help.text"
msgid "<image id=\"img_id3147093\" src=\"media/helpimg/starmath/op21405.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147093\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147093\" src=\"media/helpimg/starmath/op21405.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147093\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_idN101A7\n"
"help.text"
msgid "<image id=\"img_id3155147\" src=\"media/helpimg/starmath/op21406.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155147\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155147\" src=\"media/helpimg/starmath/op21406.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155147\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_idN101E0\n"
"help.text"
msgid "<image id=\"img_id3154922\" src=\"media/helpimg/starmath/op21407.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3154922\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154922\" src=\"media/helpimg/starmath/op21407.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3154922\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"par_idN1021C\n"
"help.text"
msgid "<image id=\"img_id3148889\" src=\"media/helpimg/starmath/op21408.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3148889\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148889\" src=\"media/helpimg/starmath/op21408.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3148889\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4846,7 +4846,7 @@ msgctxt ""
"par_idN10255\n"
"help.text"
msgid "<image id=\"img_id3147473\" src=\"media/helpimg/starmath/op22001.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147473\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147473\" src=\"media/helpimg/starmath/op22001.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147473\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_idN1028E\n"
"help.text"
msgid "<image id=\"img_id3155974\" src=\"media/helpimg/starmath/op21409.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155974\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155974\" src=\"media/helpimg/starmath/op21409.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155974\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_idN102C9\n"
"help.text"
msgid "<image id=\"img_id3147119\" src=\"media/helpimg/starmath/op21410.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147119\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147119\" src=\"media/helpimg/starmath/op21410.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147119\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_idN10304\n"
"help.text"
msgid "<image id=\"img_id3147065\" src=\"media/helpimg/starmath/op21411.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147065\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147065\" src=\"media/helpimg/starmath/op21411.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147065\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4942,7 +4942,7 @@ msgctxt ""
"par_idN1033F\n"
"help.text"
msgid "<image id=\"img_id3154590\" src=\"media/helpimg/starmath/op21412.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3154590\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154590\" src=\"media/helpimg/starmath/op21412.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3154590\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_idN1037A\n"
"help.text"
msgid "<image id=\"img_id3149318\" src=\"media/helpimg/starmath/op21413.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3149318\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149318\" src=\"media/helpimg/starmath/op21413.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3149318\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -4990,7 +4990,7 @@ msgctxt ""
"par_idN103B7\n"
"help.text"
msgid "<image id=\"img_id3151193\" src=\"media/helpimg/starmath/op21414.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3151193\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151193\" src=\"media/helpimg/starmath/op21414.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3151193\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5014,7 +5014,7 @@ msgctxt ""
"par_idN103F4\n"
"help.text"
msgid "<image id=\"img_id3146956\" src=\"media/helpimg/starmath/op21415.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3146956\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146956\" src=\"media/helpimg/starmath/op21415.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3146956\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"par_idN10431\n"
"help.text"
msgid "<image id=\"img_id3151223\" src=\"media/helpimg/starmath/op21416.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3151223\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151223\" src=\"media/helpimg/starmath/op21416.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3151223\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_idN1046E\n"
"help.text"
msgid "<image id=\"img_id3156087\" src=\"media/helpimg/starmath/op21417.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3156087\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156087\" src=\"media/helpimg/starmath/op21417.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3156087\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5086,7 +5086,7 @@ msgctxt ""
"par_idN104A7\n"
"help.text"
msgid "<image id=\"img_id3147383\" src=\"media/helpimg/starmath/op21418.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147383\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147383\" src=\"media/helpimg/starmath/op21418.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147383\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5110,7 +5110,7 @@ msgctxt ""
"par_idN104E0\n"
"help.text"
msgid "<image id=\"img_id3154038\" src=\"media/helpimg/starmath/op21419.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3154038\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154038\" src=\"media/helpimg/starmath/op21419.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3154038\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5134,7 +5134,7 @@ msgctxt ""
"par_idN10519\n"
"help.text"
msgid "<image id=\"img_id3149625\" src=\"media/helpimg/starmath/op21420.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3149625\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149625\" src=\"media/helpimg/starmath/op21420.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3149625\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<image id=\"img_id3155555\" src=\"media/helpimg/starmath/op21421.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155555\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155555\" src=\"media/helpimg/starmath/op21421.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155555\">Ikonoa</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_id3151392\n"
"help.text"
msgid "Set brackets were previously inserted in the Elements pane or directly in the Commands window as \"left lbrace <?> right rbrace\". Now, a left and a right set bracket can also be inserted using \"lbrace\" and \"rbrace\", with or without wildcards."
-msgstr ""
+msgstr "Aurretik, multzo-kortxeteak 'Elementuak' panelean edo zuzenean 'Komandoak' leihoan txertatzen ziren, \"ezker lbrace <?> eskuin rbrace\" gisa. Orain, ezker eta eskuin multzo-kortxeteak \"lbrace\" eta \"rbrace\" erabiliz txerta daitezke, komodinekin edo gabe. "
#: 03091100.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id3155761\n"
"help.text"
msgid "All types of brackets have the same grouping function as described for \"{}\" brackets."
-msgstr ""
+msgstr "Kortxete mota guztiek dute \"{}\" kortxeteetarako deskribatu den taldekatze-funtzio bera."
#: 03091100.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"par_id3154562\n"
"help.text"
msgid "Brackets do not adjust their size to the enclosed expression. For example, if you want \"( a over b )\" with a bracket size adjusted to a and b you must insert \"left\" and \"right\". Entering \"left(a over b right)\" produces appropriate sizing. If, however, the brackets themselves are part of the expression whose size is changed, they are included the size change: \"size 3(a over b)\" and \"size 12(a over b)\". The sizing of the bracket-to-expression ratio does not change in any way."
-msgstr ""
+msgstr "Kortxeteen tamaina ez da adierazpenera egokitzen. Adibidez, \"(a over b)\" adierazpenean, kortxetearen tamaina a eta b letrei egokitu dadin nahi baduzu, \"left\" eta \"right\" aginduak gehitu beharko dituzu. \"left(a over b right)\" idatziz gero, tamaina egokia sortzen da. Hala ere, kortxeteak tamaina aldatu zaion adierazpenaren parte badira, tamaina-egokitzapenera gehituko dira: \"size 3(a over b)\" eta \"size 12(a over b)\". Adierazpenaren tamaina-proportzioa ez da aldatzen inolaz ere."
#: 03091100.xhp
msgctxt ""
@@ -6374,7 +6374,7 @@ msgctxt ""
"par_id3149502\n"
"help.text"
msgid "<variable id=\"ref\">This reference section contains lists of many operators, functions, symbols and formatting features available in <emph>$[officename] Math</emph>. Many of the commands displayed can be inserted using the icons in the <emph>Elements</emph> window or the context menu of the <emph>Commands</emph> window.</variable>"
-msgstr ""
+msgstr "<variable id=\"ref\">Erreferentzia-sekzio honek <emph>$[officename] Math-en</emph> erabilgarri dauden eragileen, funtzioen, ikurren eta formatu-funtzioen zerrendak ditu. Bistaratzen diren komandoetako asko <emph>Elementuak</emph> leihoan edo <emph>Komandoak</emph> leihoko laster-menuan dauden ikonoak erabiliz txertatu daitezke.</variable>"
#: 03091501.xhp
msgctxt ""
@@ -6414,7 +6414,7 @@ msgctxt ""
"par_id3151388\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091501.xhp
msgctxt ""
@@ -6430,7 +6430,7 @@ msgctxt ""
"par_id3156276\n"
"help.text"
msgid "<image id=\"Graphic10\" src=\"media/helpimg/starmath/un21209.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic10\" src=\"media/helpimg/starmath/un21209.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6446,7 +6446,7 @@ msgctxt ""
"par_id3163824\n"
"help.text"
msgid "<image id=\"Graphic21\" src=\"media/helpimg/starmath/un21202.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic21\" src=\"media/helpimg/starmath/un21202.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6462,7 +6462,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<image id=\"Graphic4\" src=\"media/helpimg/starmath/un21204.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic4\" src=\"media/helpimg/starmath/un21204.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6478,7 +6478,7 @@ msgctxt ""
"par_id3154821\n"
"help.text"
msgid "<image id=\"Graphic13\" src=\"media/helpimg/starmath/un21212.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic13\" src=\"media/helpimg/starmath/un21212.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "<image id=\"Graphic7\" src=\"media/helpimg/starmath/un21208.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic7\" src=\"media/helpimg/starmath/un21208.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6510,7 +6510,7 @@ msgctxt ""
"par_id3150832\n"
"help.text"
msgid "<image id=\"Graphic6\" src=\"media/helpimg/starmath/un21205.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic6\" src=\"media/helpimg/starmath/un21205.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6526,7 +6526,7 @@ msgctxt ""
"par_id3145590\n"
"help.text"
msgid "<image id=\"Graphic2\" src=\"media/helpimg/starmath/un21201.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic2\" src=\"media/helpimg/starmath/un21201.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"par_id3150764\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"media/helpimg/starmath/un21203.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"media/helpimg/starmath/un21203.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6566,7 +6566,7 @@ msgctxt ""
"par_id3146336\n"
"help.text"
msgid "<image id=\"Graphic14\" src=\"media/helpimg/starmath/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic14\" src=\"media/helpimg/starmath/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6630,7 +6630,7 @@ msgctxt ""
"par_id3147212\n"
"help.text"
msgid "<image id=\"Graphic8\" src=\"media/helpimg/starmath/un21206.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic8\" src=\"media/helpimg/starmath/un21206.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6646,7 +6646,7 @@ msgctxt ""
"par_id3151130\n"
"help.text"
msgid "<image id=\"Graphic16\" src=\"media/helpimg/starmath/un21221.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic16\" src=\"media/helpimg/starmath/un21221.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"par_id3147470\n"
"help.text"
msgid "<image id=\"Graphic12\" src=\"media/helpimg/starmath/un21211.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic12\" src=\"media/helpimg/starmath/un21211.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6678,7 +6678,7 @@ msgctxt ""
"par_id3151319\n"
"help.text"
msgid "<image id=\"Graphic5\" src=\"media/helpimg/starmath/un21213.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic5\" src=\"media/helpimg/starmath/un21213.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id3147065\n"
"help.text"
msgid "<image id=\"Graphic15\" src=\"media/helpimg/starmath/un21215.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic15\" src=\"media/helpimg/starmath/un21215.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6798,7 +6798,7 @@ msgctxt ""
"par_id3148873\n"
"help.text"
msgid "<image id=\"Graphic11\" src=\"media/helpimg/starmath/un21210.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic11\" src=\"media/helpimg/starmath/un21210.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"par_id3147073\n"
"help.text"
msgid "<image id=\"Graphic9\" src=\"media/helpimg/starmath/un21207.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic9\" src=\"media/helpimg/starmath/un21207.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Ikonoa</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -6894,7 +6894,7 @@ msgctxt ""
"par_id3154032\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091502.xhp
msgctxt ""
@@ -6918,7 +6918,7 @@ msgctxt ""
"par_id3156247\n"
"help.text"
msgid "<image id=\"img_id3156253\" src=\"media/helpimg/starmath/bi21305.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156253\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156253\" src=\"media/helpimg/starmath/bi21305.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156253\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -6958,7 +6958,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "<image id=\"img_id3153037\" src=\"media/helpimg/starmath/bi21313.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153037\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153037\" src=\"media/helpimg/starmath/bi21313.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153037\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -6982,7 +6982,7 @@ msgctxt ""
"par_id3155548\n"
"help.text"
msgid "<image id=\"img_id3155554\" src=\"media/helpimg/starmath/bi21302.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155554\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155554\" src=\"media/helpimg/starmath/bi21302.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155554\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -6998,7 +6998,7 @@ msgctxt ""
"par_id3150600\n"
"help.text"
msgid "<image id=\"img_id3150606\" src=\"media/helpimg/starmath/bi21301.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150606\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150606\" src=\"media/helpimg/starmath/bi21301.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150606\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7022,7 +7022,7 @@ msgctxt ""
"par_id3152978\n"
"help.text"
msgid "<image id=\"img_id3152984\" src=\"media/helpimg/starmath/bi21306.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152984\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152984\" src=\"media/helpimg/starmath/bi21306.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152984\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7046,7 +7046,7 @@ msgctxt ""
"par_id3152741\n"
"help.text"
msgid "<image id=\"img_id3153876\" src=\"media/helpimg/starmath/bi21314.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153876\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153876\" src=\"media/helpimg/starmath/bi21314.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153876\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7078,7 +7078,7 @@ msgctxt ""
"par_id3150840\n"
"help.text"
msgid "<image id=\"img_id3150846\" src=\"media/helpimg/starmath/bi21307.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150846\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150846\" src=\"media/helpimg/starmath/bi21307.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150846\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7102,7 +7102,7 @@ msgctxt ""
"par_id3154050\n"
"help.text"
msgid "<image id=\"img_id3154056\" src=\"media/helpimg/starmath/bi21322.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154056\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154056\" src=\"media/helpimg/starmath/bi21322.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154056\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7118,7 +7118,7 @@ msgctxt ""
"par_id3150419\n"
"help.text"
msgid "<image id=\"img_id3150425\" src=\"media/helpimg/starmath/bi21324.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150425\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150425\" src=\"media/helpimg/starmath/bi21324.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150425\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"par_id3154424\n"
"help.text"
msgid "<image id=\"img_id3154429\" src=\"media/helpimg/starmath/bi21325.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154429\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154429\" src=\"media/helpimg/starmath/bi21325.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154429\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7150,7 +7150,7 @@ msgctxt ""
"par_id3155410\n"
"help.text"
msgid "<image id=\"img_id3155417\" src=\"media/helpimg/starmath/bi21326.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155417\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155417\" src=\"media/helpimg/starmath/bi21326.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155417\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7166,7 +7166,7 @@ msgctxt ""
"par_id3153373\n"
"help.text"
msgid "<image id=\"img_id3153379\" src=\"media/helpimg/starmath/bi21303.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153379\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153379\" src=\"media/helpimg/starmath/bi21303.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153379\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7182,7 +7182,7 @@ msgctxt ""
"par_id3149139\n"
"help.text"
msgid "<image id=\"img_id3149145\" src=\"media/helpimg/starmath/bi21310.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149145\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149145\" src=\"media/helpimg/starmath/bi21310.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149145\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7198,7 +7198,7 @@ msgctxt ""
"par_id3153648\n"
"help.text"
msgid "<image id=\"img_id3153653\" src=\"media/helpimg/starmath/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153653\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153653\" src=\"media/helpimg/starmath/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153653\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_id3145098\n"
"help.text"
msgid "<image id=\"img_id3145104\" src=\"media/helpimg/starmath/bi21323.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145104\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145104\" src=\"media/helpimg/starmath/bi21323.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145104\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7230,7 +7230,7 @@ msgctxt ""
"par_id3152809\n"
"help.text"
msgid "<image id=\"img_id3150267\" src=\"media/helpimg/starmath/bi21304.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150267\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150267\" src=\"media/helpimg/starmath/bi21304.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150267\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7246,7 +7246,7 @@ msgctxt ""
"par_id3153161\n"
"help.text"
msgid "<image id=\"img_id3153168\" src=\"media/helpimg/starmath/bi21308.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153168\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153168\" src=\"media/helpimg/starmath/bi21308.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153168\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7262,7 +7262,7 @@ msgctxt ""
"par_id3150336\n"
"help.text"
msgid "<image id=\"img_id3148396\" src=\"media/helpimg/starmath/bi21312.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148396\" src=\"media/helpimg/starmath/bi21312.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148396\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7278,7 +7278,7 @@ msgctxt ""
"par_id3154416\n"
"help.text"
msgid "<image id=\"img_id3154422\" src=\"media/helpimg/starmath/bi21315.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154422\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154422\" src=\"media/helpimg/starmath/bi21315.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154422\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7294,7 +7294,7 @@ msgctxt ""
"par_id3149265\n"
"help.text"
msgid "<image id=\"img_id3149271\" src=\"media/helpimg/starmath/bi21311.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149271\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149271\" src=\"media/helpimg/starmath/bi21311.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149271\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7310,7 +7310,7 @@ msgctxt ""
"par_id3153957\n"
"help.text"
msgid "<image id=\"img_id3153962\" src=\"media/helpimg/starmath/bi21316.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153962\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153962\" src=\"media/helpimg/starmath/bi21316.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153962\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7326,7 +7326,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<image id=\"img_id3153963\" src=\"media/helpimg/starmath/bi21327.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153963\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153963\" src=\"media/helpimg/starmath/bi21327.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153963\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7342,7 +7342,7 @@ msgctxt ""
"par_id3153959\n"
"help.text"
msgid "<image id=\"img_id3153964\" src=\"media/helpimg/starmath/bi21328.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153964\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153964\" src=\"media/helpimg/starmath/bi21328.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153964\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7358,7 +7358,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "<image id=\"img_id3153965\" src=\"media/helpimg/starmath/bi21329.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153965\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153965\" src=\"media/helpimg/starmath/bi21329.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153965\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7374,7 +7374,7 @@ msgctxt ""
"par_id3153961\n"
"help.text"
msgid "<image id=\"img_id3153966\" src=\"media/helpimg/starmath/bi21330.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153966\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153966\" src=\"media/helpimg/starmath/bi21330.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153966\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7390,7 +7390,7 @@ msgctxt ""
"par_id3153962\n"
"help.text"
msgid "<image id=\"img_id3153967\" src=\"media/helpimg/starmath/bi21331.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153967\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153967\" src=\"media/helpimg/starmath/bi21331.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153967\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7406,7 +7406,7 @@ msgctxt ""
"par_id3153963\n"
"help.text"
msgid "<image id=\"img_id3153968\" src=\"media/helpimg/starmath/bi21332.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153968\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153968\" src=\"media/helpimg/starmath/bi21332.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153968\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7422,7 +7422,7 @@ msgctxt ""
"par_id3153964\n"
"help.text"
msgid "<image id=\"img_id3153969\" src=\"media/helpimg/starmath/bi21333.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153969\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153969\" src=\"media/helpimg/starmath/bi21333.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153969\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7438,7 +7438,7 @@ msgctxt ""
"par_id3153965\n"
"help.text"
msgid "<image id=\"img_id3153970\" src=\"media/helpimg/starmath/bi21334.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153970\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153970\" src=\"media/helpimg/starmath/bi21334.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153970\">Ikonoa</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7502,7 +7502,7 @@ msgctxt ""
"par_id3145724\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091503.xhp
msgctxt ""
@@ -7518,7 +7518,7 @@ msgctxt ""
"par_id3146505\n"
"help.text"
msgid "<image id=\"img_id3146512\" src=\"media/helpimg/starmath/op22001.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146512\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146512\" src=\"media/helpimg/starmath/op22001.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146512\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7534,7 +7534,7 @@ msgctxt ""
"par_id3159379\n"
"help.text"
msgid "<image id=\"img_id3159386\" src=\"media/helpimg/starmath/op22002.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159386\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159386\" src=\"media/helpimg/starmath/op22002.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159386\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7550,7 +7550,7 @@ msgctxt ""
"par_id3158166\n"
"help.text"
msgid "<image id=\"img_id3158173\" src=\"media/helpimg/starmath/op21401.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158173\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158173\" src=\"media/helpimg/starmath/op21401.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158173\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7566,7 +7566,7 @@ msgctxt ""
"par_id3152402\n"
"help.text"
msgid "<image id=\"img_id3152408\" src=\"media/helpimg/starmath/op21405.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152408\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152408\" src=\"media/helpimg/starmath/op21405.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152408\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7582,7 +7582,7 @@ msgctxt ""
"par_id3158212\n"
"help.text"
msgid "<image id=\"img_id3158218\" src=\"media/helpimg/starmath/op21402.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158218\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158218\" src=\"media/helpimg/starmath/op21402.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158218\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7598,7 +7598,7 @@ msgctxt ""
"par_id3158819\n"
"help.text"
msgid "<image id=\"img_id3158825\" src=\"media/helpimg/starmath/op21413.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158825\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158825\" src=\"media/helpimg/starmath/op21413.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158825\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7614,7 +7614,7 @@ msgctxt ""
"par_id3158966\n"
"help.text"
msgid "<image id=\"img_id3158973\" src=\"media/helpimg/starmath/op21414.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158973\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158973\" src=\"media/helpimg/starmath/op21414.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158973\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7630,7 +7630,7 @@ msgctxt ""
"par_id3159114\n"
"help.text"
msgid "<image id=\"img_id3159120\" src=\"media/helpimg/starmath/op21415.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159120\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159120\" src=\"media/helpimg/starmath/op21415.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159120\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7646,7 +7646,7 @@ msgctxt ""
"par_id3163002\n"
"help.text"
msgid "<image id=\"img_id3163008\" src=\"media/helpimg/starmath/op21416.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163008\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163008\" src=\"media/helpimg/starmath/op21416.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163008\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7670,7 +7670,7 @@ msgctxt ""
"par_id3158359\n"
"help.text"
msgid "<image id=\"img_id3158366\" src=\"media/helpimg/starmath/op21403.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158366\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158366\" src=\"media/helpimg/starmath/op21403.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158366\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_id3156480\n"
"help.text"
msgid "<image id=\"img_id3156486\" src=\"media/helpimg/starmath/op21421.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156486\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156486\" src=\"media/helpimg/starmath/op21421.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156486\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7710,7 +7710,7 @@ msgctxt ""
"par_id3145932\n"
"help.text"
msgid "<image id=\"img_id3145938\" src=\"media/helpimg/starmath/op21407.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145938\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145938\" src=\"media/helpimg/starmath/op21407.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145938\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7726,7 +7726,7 @@ msgctxt ""
"par_id3163149\n"
"help.text"
msgid "<image id=\"img_id3163156\" src=\"media/helpimg/starmath/op21417.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163156\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163156\" src=\"media/helpimg/starmath/op21417.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163156\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7742,7 +7742,7 @@ msgctxt ""
"par_id3163444\n"
"help.text"
msgid "<image id=\"img_id3163450\" src=\"media/helpimg/starmath/op21419.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163450\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163450\" src=\"media/helpimg/starmath/op21419.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163450\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7758,7 +7758,7 @@ msgctxt ""
"par_id3163591\n"
"help.text"
msgid "<image id=\"img_id3163598\" src=\"media/helpimg/starmath/op21420.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163598\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163598\" src=\"media/helpimg/starmath/op21420.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163598\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7774,7 +7774,7 @@ msgctxt ""
"par_id3163296\n"
"help.text"
msgid "<image id=\"img_id3163303\" src=\"media/helpimg/starmath/op21418.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163303\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163303\" src=\"media/helpimg/starmath/op21418.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163303\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"par_id3146357\n"
"help.text"
msgid "<image id=\"img_id3146363\" src=\"media/helpimg/starmath/op21408.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146363\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146363\" src=\"media/helpimg/starmath/op21408.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146363\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7806,7 +7806,7 @@ msgctxt ""
"par_id3146652\n"
"help.text"
msgid "<image id=\"img_id3146659\" src=\"media/helpimg/starmath/op21409.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146659\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146659\" src=\"media/helpimg/starmath/op21409.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146659\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7822,7 +7822,7 @@ msgctxt ""
"par_id3146800\n"
"help.text"
msgid "<image id=\"img_id3146806\" src=\"media/helpimg/starmath/op21410.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146806\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146806\" src=\"media/helpimg/starmath/op21410.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146806\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7838,7 +7838,7 @@ msgctxt ""
"par_id3158524\n"
"help.text"
msgid "<image id=\"img_id3158530\" src=\"media/helpimg/starmath/op21411.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158530\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158530\" src=\"media/helpimg/starmath/op21411.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158530\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7854,7 +7854,7 @@ msgctxt ""
"par_id3158671\n"
"help.text"
msgid "<image id=\"img_id3158678\" src=\"media/helpimg/starmath/op21412.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158678\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158678\" src=\"media/helpimg/starmath/op21412.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158678\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7870,7 +7870,7 @@ msgctxt ""
"par_id3152548\n"
"help.text"
msgid "<image id=\"img_id3152555\" src=\"media/helpimg/starmath/op21406.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152555\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152555\" src=\"media/helpimg/starmath/op21406.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152555\">Ikonoa</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -7918,7 +7918,7 @@ msgctxt ""
"par_id3156681\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091504.xhp
msgctxt ""
@@ -7934,7 +7934,7 @@ msgctxt ""
"par_id3166018\n"
"help.text"
msgid "<image id=\"img_id3166024\" src=\"media/helpimg/starmath/fu21501.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166024\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166024\" src=\"media/helpimg/starmath/fu21501.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166024\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_id3164840\n"
"help.text"
msgid "<image id=\"img_id3164847\" src=\"media/helpimg/starmath/fu21518.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3164847\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3164847\" src=\"media/helpimg/starmath/fu21518.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3164847\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"par_id3165134\n"
"help.text"
msgid "<image id=\"img_id3165141\" src=\"media/helpimg/starmath/fu21520.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165141\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165141\" src=\"media/helpimg/starmath/fu21520.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165141\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -7982,7 +7982,7 @@ msgctxt ""
"par_id3166312\n"
"help.text"
msgid "<image id=\"img_id3166318\" src=\"media/helpimg/starmath/fu21522.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166318\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166318\" src=\"media/helpimg/starmath/fu21522.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166318\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"par_id3143430\n"
"help.text"
msgid "<image id=\"img_id3143436\" src=\"media/helpimg/starmath/fu21524.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3143436\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3143436\" src=\"media/helpimg/starmath/fu21524.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3143436\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"par_id3152238\n"
"help.text"
msgid "<image id=\"img_id3152244\" src=\"media/helpimg/starmath/fu21517.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152244\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152244\" src=\"media/helpimg/starmath/fu21517.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152244\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8030,7 +8030,7 @@ msgctxt ""
"par_id3164987\n"
"help.text"
msgid "<image id=\"img_id3164994\" src=\"media/helpimg/starmath/fu21519.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3164994\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3164994\" src=\"media/helpimg/starmath/fu21519.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3164994\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8046,7 +8046,7 @@ msgctxt ""
"par_id3166165\n"
"help.text"
msgid "<image id=\"img_id3166172\" src=\"media/helpimg/starmath/fu21521.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166172\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166172\" src=\"media/helpimg/starmath/fu21521.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166172\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8062,7 +8062,7 @@ msgctxt ""
"par_id3166459\n"
"help.text"
msgid "<image id=\"img_id3166465\" src=\"media/helpimg/starmath/fu21523.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166465\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166465\" src=\"media/helpimg/starmath/fu21523.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166465\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8086,7 +8086,7 @@ msgctxt ""
"par_id3151649\n"
"help.text"
msgid "<image id=\"img_id3151656\" src=\"media/helpimg/starmath/fu21510.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151656\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151656\" src=\"media/helpimg/starmath/fu21510.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151656\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8102,7 +8102,7 @@ msgctxt ""
"par_id3165576\n"
"help.text"
msgid "<image id=\"img_id3165583\" src=\"media/helpimg/starmath/fu21514.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165583\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165583\" src=\"media/helpimg/starmath/fu21514.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165583\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8118,7 +8118,7 @@ msgctxt ""
"par_id3151944\n"
"help.text"
msgid "<image id=\"img_id3151950\" src=\"media/helpimg/starmath/fu21512.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151950\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151950\" src=\"media/helpimg/starmath/fu21512.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151950\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"par_id3165871\n"
"help.text"
msgid "<image id=\"img_id3165877\" src=\"media/helpimg/starmath/fu21516.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165877\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165877\" src=\"media/helpimg/starmath/fu21516.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165877\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"par_id3157074\n"
"help.text"
msgid "<image id=\"img_id3157080\" src=\"media/helpimg/starmath/fu21507.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157080\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157080\" src=\"media/helpimg/starmath/fu21507.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157080\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"par_id3143577\n"
"help.text"
msgid "<image id=\"img_id3143584\" src=\"media/helpimg/starmath/fu21502.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3143584\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3143584\" src=\"media/helpimg/starmath/fu21502.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3143584\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"par_id3156780\n"
"help.text"
msgid "<image id=\"img_id3156786\" src=\"media/helpimg/starmath/fu21505.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156786\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156786\" src=\"media/helpimg/starmath/fu21505.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156786\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8198,7 +8198,7 @@ msgctxt ""
"par_id3156927\n"
"help.text"
msgid "<image id=\"img_id3156934\" src=\"media/helpimg/starmath/fu21506.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156934\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156934\" src=\"media/helpimg/starmath/fu21506.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156934\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"par_id3157220\n"
"help.text"
msgid "<image id=\"img_id3157227\" src=\"media/helpimg/starmath/fu21508.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157227\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157227\" src=\"media/helpimg/starmath/fu21508.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157227\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id3165282\n"
"help.text"
msgid "<image id=\"img_id3165288\" src=\"media/helpimg/starmath/fu21504.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165288\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165288\" src=\"media/helpimg/starmath/fu21504.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165288\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"par_id3151502\n"
"help.text"
msgid "<image id=\"img_id3151509\" src=\"media/helpimg/starmath/fu21509.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151509\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151509\" src=\"media/helpimg/starmath/fu21509.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151509\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_id3165429\n"
"help.text"
msgid "<image id=\"img_id3165436\" src=\"media/helpimg/starmath/fu21513.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165436\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165436\" src=\"media/helpimg/starmath/fu21513.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165436\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"par_id3152091\n"
"help.text"
msgid "<image id=\"img_id3152097\" src=\"media/helpimg/starmath/fu21503.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152097\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152097\" src=\"media/helpimg/starmath/fu21503.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152097\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_id3157368\n"
"help.text"
msgid "<image id=\"img_id3157375\" src=\"media/helpimg/starmath/fu21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157375\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157375\" src=\"media/helpimg/starmath/fu21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157375\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8318,7 +8318,7 @@ msgctxt ""
"par_id3151796\n"
"help.text"
msgid "<image id=\"img_id3151803\" src=\"media/helpimg/starmath/fu21511.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151803\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151803\" src=\"media/helpimg/starmath/fu21511.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151803\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"par_id3165723\n"
"help.text"
msgid "<image id=\"img_id3165730\" src=\"media/helpimg/starmath/fu21515.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165730\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165730\" src=\"media/helpimg/starmath/fu21515.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165730\">Ikonoa</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"par_id3143994\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091505.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"par_id3144534\n"
"help.text"
msgid "<image id=\"img_id3144541\" src=\"media/helpimg/starmath/fo21604.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144541\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144541\" src=\"media/helpimg/starmath/fo21604.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144541\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id3166611\n"
"help.text"
msgid "<image id=\"img_id3166618\" src=\"media/helpimg/starmath/fo21614.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166618\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166618\" src=\"media/helpimg/starmath/fo21614.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166618\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8430,7 +8430,7 @@ msgctxt ""
"par_id3144681\n"
"help.text"
msgid "<image id=\"img_id3144688\" src=\"media/helpimg/starmath/fo21613.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144688\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144688\" src=\"media/helpimg/starmath/fo21613.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144688\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"par_id3145083\n"
"help.text"
msgid "<image id=\"img_id3166470\" src=\"media/helpimg/starmath/fo21607.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3166470\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166470\" src=\"media/helpimg/starmath/fo21607.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3166470\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8462,7 +8462,7 @@ msgctxt ""
"par_id3144936\n"
"help.text"
msgid "<image id=\"img_id3144943\" src=\"media/helpimg/starmath/fo21606.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144943\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144943\" src=\"media/helpimg/starmath/fo21606.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144943\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8478,7 +8478,7 @@ msgctxt ""
"par_id3144789\n"
"help.text"
msgid "<image id=\"img_id3144796\" src=\"media/helpimg/starmath/fo21605.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144796\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144796\" src=\"media/helpimg/starmath/fo21605.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144796\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8510,7 +8510,7 @@ msgctxt ""
"par_id3166719\n"
"help.text"
msgid "<image id=\"img_id3166725\" src=\"media/helpimg/starmath/fo21609.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3166725\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166725\" src=\"media/helpimg/starmath/fo21609.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3166725\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8526,7 +8526,7 @@ msgctxt ""
"par_id3166866\n"
"help.text"
msgid "<image id=\"img_id3166872\" src=\"media/helpimg/starmath/fo21610.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3166872\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166872\" src=\"media/helpimg/starmath/fo21610.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3166872\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8542,7 +8542,7 @@ msgctxt ""
"par_id3167013\n"
"help.text"
msgid "<image id=\"img_id3167020\" src=\"media/helpimg/starmath/fo21611.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3167020\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3167020\" src=\"media/helpimg/starmath/fo21611.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3167020\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8566,7 +8566,7 @@ msgctxt ""
"par_id3144387\n"
"help.text"
msgid "<image id=\"img_id3144394\" src=\"media/helpimg/starmath/fo21603.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144394\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144394\" src=\"media/helpimg/starmath/fo21603.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144394\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8582,7 +8582,7 @@ msgctxt ""
"par_id3144240\n"
"help.text"
msgid "<image id=\"img_id3144247\" src=\"media/helpimg/starmath/fo21602.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144247\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144247\" src=\"media/helpimg/starmath/fo21602.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144247\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8598,7 +8598,7 @@ msgctxt ""
"par_id3167161\n"
"help.text"
msgid "<image id=\"img_id3167167\" src=\"media/helpimg/starmath/fo21615.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167167\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3167167\" src=\"media/helpimg/starmath/fo21615.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167167\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8614,7 +8614,7 @@ msgctxt ""
"par_id3144093\n"
"help.text"
msgid "<image id=\"img_id3144100\" src=\"media/helpimg/starmath/fo21601.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144100\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144100\" src=\"media/helpimg/starmath/fo21601.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144100\">Ikonoa</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -8662,7 +8662,7 @@ msgctxt ""
"par_id3167610\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091506.xhp
msgctxt ""
@@ -8678,7 +8678,7 @@ msgctxt ""
"par_id3167709\n"
"help.text"
msgid "<image id=\"img_id3167716\" src=\"media/helpimg/starmath/at21701.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167716\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3167716\" src=\"media/helpimg/starmath/at21701.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167716\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8694,7 +8694,7 @@ msgctxt ""
"par_id3159771\n"
"help.text"
msgid "<image id=\"img_id3159778\" src=\"media/helpimg/starmath/at21705.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159778\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159778\" src=\"media/helpimg/starmath/at21705.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159778\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8726,7 +8726,7 @@ msgctxt ""
"par_id3168153\n"
"help.text"
msgid "<image id=\"img_id3168160\" src=\"media/helpimg/starmath/at21704.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3168160\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168160\" src=\"media/helpimg/starmath/at21704.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3168160\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8742,7 +8742,7 @@ msgctxt ""
"par_id3168006\n"
"help.text"
msgid "<image id=\"img_id3168012\" src=\"media/helpimg/starmath/at21703.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168012\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168012\" src=\"media/helpimg/starmath/at21703.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168012\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8758,7 +8758,7 @@ msgctxt ""
"par_id3168303\n"
"help.text"
msgid "<image id=\"img_id3168309\" src=\"media/helpimg/starmath/at21709.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168309\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168309\" src=\"media/helpimg/starmath/at21709.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168309\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8790,7 +8790,7 @@ msgctxt ""
"par_id3161104\n"
"help.text"
msgid "<image id=\"img_id3161111\" src=\"media/helpimg/starmath/at21712.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3161111\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3161111\" src=\"media/helpimg/starmath/at21712.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3161111\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8806,7 +8806,7 @@ msgctxt ""
"par_id3160512\n"
"help.text"
msgid "<image id=\"img_id3160519\" src=\"media/helpimg/starmath/at21711.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160519\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160519\" src=\"media/helpimg/starmath/at21711.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160519\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8822,7 +8822,7 @@ msgctxt ""
"par_id3159919\n"
"help.text"
msgid "<image id=\"img_id3159926\" src=\"media/helpimg/starmath/at21710.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159926\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159926\" src=\"media/helpimg/starmath/at21710.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159926\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8838,7 +8838,7 @@ msgctxt ""
"par_id3167857\n"
"help.text"
msgid "<image id=\"img_id3167864\" src=\"media/helpimg/starmath/at21702.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167864\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3167864\" src=\"media/helpimg/starmath/at21702.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167864\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8854,7 +8854,7 @@ msgctxt ""
"par_id3159622\n"
"help.text"
msgid "<image id=\"img_id3159628\" src=\"media/helpimg/starmath/at21707.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159628\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159628\" src=\"media/helpimg/starmath/at21707.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159628\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8886,7 +8886,7 @@ msgctxt ""
"par_id3162012\n"
"help.text"
msgid "Remove the Bold attribute"
-msgstr "Kendu Lodia atributua"
+msgstr "Kendu 'Lodia' atributua"
#: 03091506.xhp
msgctxt ""
@@ -8902,7 +8902,7 @@ msgctxt ""
"par_id3160659\n"
"help.text"
msgid "<image id=\"img_id3160666\" src=\"media/helpimg/starmath/at21713.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160666\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160666\" src=\"media/helpimg/starmath/at21713.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160666\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8918,7 +8918,7 @@ msgctxt ""
"par_id3160956\n"
"help.text"
msgid "<image id=\"img_id3160962\" src=\"media/helpimg/starmath/at21715.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160962\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160962\" src=\"media/helpimg/starmath/at21715.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160962\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8934,7 +8934,7 @@ msgctxt ""
"par_id3161252\n"
"help.text"
msgid "<image id=\"img_id3161259\" src=\"media/helpimg/starmath/at21716.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3161259\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3161259\" src=\"media/helpimg/starmath/at21716.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3161259\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8950,7 +8950,7 @@ msgctxt ""
"par_id3168599\n"
"help.text"
msgid "<image id=\"img_id3168605\" src=\"media/helpimg/starmath/at21708.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168605\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168605\" src=\"media/helpimg/starmath/at21708.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168605\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8966,7 +8966,7 @@ msgctxt ""
"par_id3160808\n"
"help.text"
msgid "<image id=\"img_id3160814\" src=\"media/helpimg/starmath/at21714.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160814\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160814\" src=\"media/helpimg/starmath/at21714.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160814\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8982,7 +8982,7 @@ msgctxt ""
"par_id3168451\n"
"help.text"
msgid "<image id=\"img_id3168457\" src=\"media/helpimg/starmath/im21106.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168457\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168457\" src=\"media/helpimg/starmath/im21106.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168457\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_id3160364\n"
"help.text"
msgid "<image id=\"img_id3160370\" src=\"media/helpimg/starmath/at21722.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160370\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160370\" src=\"media/helpimg/starmath/at21722.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160370\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9014,7 +9014,7 @@ msgctxt ""
"par_id3160215\n"
"help.text"
msgid "<image id=\"img_id3160222\" src=\"media/helpimg/starmath/at21723.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160222\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160222\" src=\"media/helpimg/starmath/at21723.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160222\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9030,7 +9030,7 @@ msgctxt ""
"par_id3160067\n"
"help.text"
msgid "<image id=\"img_id3160074\" src=\"media/helpimg/starmath/at21724.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160074\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160074\" src=\"media/helpimg/starmath/at21724.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160074\">Ikonoa</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9078,7 +9078,7 @@ msgctxt ""
"par_id3162086\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091507.xhp
msgctxt ""
@@ -9102,7 +9102,7 @@ msgctxt ""
"par_id3179931\n"
"help.text"
msgid "<image id=\"img_id3179937\" src=\"media/helpimg/starmath/mi22008.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179937\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179937\" src=\"media/helpimg/starmath/mi22008.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179937\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9118,7 +9118,7 @@ msgctxt ""
"par_id3180374\n"
"help.text"
msgid "<image id=\"img_id3180380\" src=\"media/helpimg/starmath/mi22010.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3180380\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3180380\" src=\"media/helpimg/starmath/mi22010.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3180380\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9134,7 +9134,7 @@ msgctxt ""
"par_id3179784\n"
"help.text"
msgid "<image id=\"img_id3179790\" src=\"media/helpimg/starmath/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179790\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179790\" src=\"media/helpimg/starmath/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179790\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9158,7 +9158,7 @@ msgctxt ""
"par_id3180078\n"
"help.text"
msgid "<image id=\"img_id3180085\" src=\"media/helpimg/starmath/mi22009.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3180085\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3180085\" src=\"media/helpimg/starmath/mi22009.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3180085\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9174,7 +9174,7 @@ msgctxt ""
"par_id3180226\n"
"help.text"
msgid "<image id=\"img_id3180233\" src=\"media/helpimg/starmath/mi22012.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3180233\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3180233\" src=\"media/helpimg/starmath/mi22012.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3180233\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3179636\n"
"help.text"
msgid "<image id=\"img_id3179643\" src=\"media/helpimg/starmath/mi22019.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179643\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179643\" src=\"media/helpimg/starmath/mi22019.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179643\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9206,7 +9206,7 @@ msgctxt ""
"par_id3162627\n"
"help.text"
msgid "<image id=\"img_id3162633\" src=\"media/helpimg/starmath/mi21608.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162633\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3162633\" src=\"media/helpimg/starmath/mi21608.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162633\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9222,7 +9222,7 @@ msgctxt ""
"par_idA3162627\n"
"help.text"
msgid "<image id=\"img_idA3162633\" src=\"media/helpimg/starmath/mi21618.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_idA3162633\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_idA3162633\" src=\"media/helpimg/starmath/mi21618.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_idA3162633\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9230,7 +9230,7 @@ msgctxt ""
"par_idA3162747\n"
"help.text"
msgid "Existential quantifier, there does not exist"
-msgstr ""
+msgstr "Zenbatzaile existentziala, ez dago"
#: 03091507.xhp
msgctxt ""
@@ -9238,7 +9238,7 @@ msgctxt ""
"par_id3162775\n"
"help.text"
msgid "<image id=\"img_id3162781\" src=\"media/helpimg/starmath/mi21612.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162781\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3162781\" src=\"media/helpimg/starmath/mi21612.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162781\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9254,7 +9254,7 @@ msgctxt ""
"par_id3162922\n"
"help.text"
msgid "<image id=\"img_id3178464\" src=\"media/helpimg/starmath/mi22014.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178464\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3178464\" src=\"media/helpimg/starmath/mi22014.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178464\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"par_id3178900\n"
"help.text"
msgid "<image id=\"img_id3178906\" src=\"media/helpimg/starmath/mi22004.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178906\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3178906\" src=\"media/helpimg/starmath/mi22004.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178906\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9278,7 +9278,7 @@ msgctxt ""
"par_id3179020\n"
"help.text"
msgid "Imaginary part of a complex number"
-msgstr "Zenbaki konplexu baten parte irudikaria"
+msgstr "Zenbaki konplexu baten zati irudikaria"
#: 03091507.xhp
msgctxt ""
@@ -9294,7 +9294,7 @@ msgctxt ""
"par_id3162185\n"
"help.text"
msgid "<image id=\"img_id3162192\" src=\"media/helpimg/starmath/mi22005.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162192\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3162192\" src=\"media/helpimg/starmath/mi22005.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162192\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9310,7 +9310,7 @@ msgctxt ""
"par_id3178604\n"
"help.text"
msgid "<image id=\"img_id3178611\" src=\"media/helpimg/starmath/mi22015.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178611\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3178611\" src=\"media/helpimg/starmath/mi22015.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178611\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9326,7 +9326,7 @@ msgctxt ""
"par_id3179195\n"
"help.text"
msgid "<image id=\"img_id3179201\" src=\"media/helpimg/starmath/mi22016.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179201\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179201\" src=\"media/helpimg/starmath/mi22016.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179201\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9342,7 +9342,7 @@ msgctxt ""
"par_id3162480\n"
"help.text"
msgid "<image id=\"img_id3162486\" src=\"media/helpimg/starmath/mi22013.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162486\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3162486\" src=\"media/helpimg/starmath/mi22013.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162486\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9358,7 +9358,7 @@ msgctxt ""
"par_id3162332\n"
"help.text"
msgid "<image id=\"img_id3162339\" src=\"media/helpimg/starmath/mi22006.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162339\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3162339\" src=\"media/helpimg/starmath/mi22006.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162339\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9374,7 +9374,7 @@ msgctxt ""
"par_id3178752\n"
"help.text"
msgid "<image id=\"img_id3178759\" src=\"media/helpimg/starmath/mi22003.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178759\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3178759\" src=\"media/helpimg/starmath/mi22003.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178759\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"par_id3178872\n"
"help.text"
msgid "Real part of a complex number"
-msgstr "Zenbaki konplexu baten parte erreala"
+msgstr "Zenbaki konplexu baten zati erreala"
#: 03091507.xhp
msgctxt ""
@@ -9390,7 +9390,7 @@ msgctxt ""
"par_id3179342\n"
"help.text"
msgid "<image id=\"img_id3179349\" src=\"media/helpimg/starmath/mi22017.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179349\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179349\" src=\"media/helpimg/starmath/mi22017.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179349\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9406,7 +9406,7 @@ msgctxt ""
"par_id3179489\n"
"help.text"
msgid "<image id=\"img_id3179496\" src=\"media/helpimg/starmath/mi22018.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179496\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179496\" src=\"media/helpimg/starmath/mi22018.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179496\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9422,7 +9422,7 @@ msgctxt ""
"par_id3179047\n"
"help.text"
msgid "<image id=\"img_id3179054\" src=\"media/helpimg/starmath/mi22007.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179054\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179054\" src=\"media/helpimg/starmath/mi22007.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179054\">Ikonoa</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id3180684\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091508.xhp
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"par_id3180783\n"
"help.text"
msgid "<image id=\"img_id3180789\" src=\"media/helpimg/starmath/al21801.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3180789\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3180789\" src=\"media/helpimg/starmath/al21801.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3180789\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9502,7 +9502,7 @@ msgctxt ""
"par_id3180930\n"
"help.text"
msgid "<image id=\"img_id3180936\" src=\"media/helpimg/starmath/al21802.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3180936\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3180936\" src=\"media/helpimg/starmath/al21802.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3180936\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"par_id3181078\n"
"help.text"
msgid "<image id=\"img_id3181084\" src=\"media/helpimg/starmath/al21823.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181084\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181084\" src=\"media/helpimg/starmath/al21823.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181084\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9534,7 +9534,7 @@ msgctxt ""
"par_id3181229\n"
"help.text"
msgid "<image id=\"img_id3181235\" src=\"media/helpimg/starmath/al21805.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181235\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181235\" src=\"media/helpimg/starmath/al21805.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181235\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9550,7 +9550,7 @@ msgctxt ""
"par_id3181377\n"
"help.text"
msgid "<image id=\"img_id3181384\" src=\"media/helpimg/starmath/al21806.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181384\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181384\" src=\"media/helpimg/starmath/al21806.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181384\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9566,7 +9566,7 @@ msgctxt ""
"par_id3181525\n"
"help.text"
msgid "<image id=\"img_id3181532\" src=\"media/helpimg/starmath/al21804.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181532\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181532\" src=\"media/helpimg/starmath/al21804.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181532\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9574,7 +9574,7 @@ msgctxt ""
"par_id3181646\n"
"help.text"
msgid "Left and right curly brackets, set bracket"
-msgstr "Ezkerreko eta eskuineko giltzak, giltza multzoa"
+msgstr "Ezkerreko eta eskuineko giltzak, multzo-giltza"
#: 03091508.xhp
msgctxt ""
@@ -9582,7 +9582,7 @@ msgctxt ""
"par_id3181674\n"
"help.text"
msgid "<image id=\"img_id3181680\" src=\"media/helpimg/starmath/al21803.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181680\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181680\" src=\"media/helpimg/starmath/al21803.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181680\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9598,7 +9598,7 @@ msgctxt ""
"par_id3181822\n"
"help.text"
msgid "<image id=\"img_id3181828\" src=\"media/helpimg/starmath/al21821.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181828\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181828\" src=\"media/helpimg/starmath/al21821.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181828\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9614,7 +9614,7 @@ msgctxt ""
"par_id3181973\n"
"help.text"
msgid "<image id=\"img_id3181980\" src=\"media/helpimg/starmath/al21808.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181980\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181980\" src=\"media/helpimg/starmath/al21808.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3181980\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"par_id3182083\n"
"help.text"
msgid "<image id=\"img_id3182090\" src=\"media/helpimg/starmath/al21809.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182090\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182090\" src=\"media/helpimg/starmath/al21809.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182090\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9646,7 +9646,7 @@ msgctxt ""
"par_id3182210\n"
"help.text"
msgid "<image id=\"img_id3182216\" src=\"media/helpimg/starmath/al21810.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182216\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182216\" src=\"media/helpimg/starmath/al21810.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182216\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9662,7 +9662,7 @@ msgctxt ""
"par_id3182332\n"
"help.text"
msgid "<image id=\"img_id3182339\" src=\"media/helpimg/starmath/al21824.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182339\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182339\" src=\"media/helpimg/starmath/al21824.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182339\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"par_id3182456\n"
"help.text"
msgid "<image id=\"img_id3182463\" src=\"media/helpimg/starmath/al21812.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182463\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182463\" src=\"media/helpimg/starmath/al21812.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182463\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9694,7 +9694,7 @@ msgctxt ""
"par_id3182579\n"
"help.text"
msgid "<image id=\"img_id3182586\" src=\"media/helpimg/starmath/al21813.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182586\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182586\" src=\"media/helpimg/starmath/al21813.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182586\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9710,7 +9710,7 @@ msgctxt ""
"par_id3182702\n"
"help.text"
msgid "<image id=\"img_id3182709\" src=\"media/helpimg/starmath/al21814.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182709\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182709\" src=\"media/helpimg/starmath/al21814.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182709\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9726,7 +9726,7 @@ msgctxt ""
"par_id3182825\n"
"help.text"
msgid "<image id=\"img_id3182832\" src=\"media/helpimg/starmath/al21811.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182832\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182832\" src=\"media/helpimg/starmath/al21811.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182832\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9742,7 +9742,7 @@ msgctxt ""
"par_id3182948\n"
"help.text"
msgid "<image id=\"img_id3182955\" src=\"media/helpimg/starmath/al21822.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182955\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182955\" src=\"media/helpimg/starmath/al21822.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3182955\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9758,7 +9758,7 @@ msgctxt ""
"par_id3183072\n"
"help.text"
msgid "<image id=\"img_id3183078\" src=\"media/helpimg/starmath/al21825.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183078\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183078\" src=\"media/helpimg/starmath/al21825.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183078\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9766,7 +9766,7 @@ msgctxt ""
"par_id3183195\n"
"help.text"
msgid "Scalable curly set bracket on top"
-msgstr "Giltza multzo eskalagarria goian"
+msgstr "Multzo-giltza eskalagarria goian"
#: 03091508.xhp
msgctxt ""
@@ -9774,7 +9774,7 @@ msgctxt ""
"par_id3183223\n"
"help.text"
msgid "<image id=\"img_id3183230\" src=\"media/helpimg/starmath/al21826.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183230\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183230\" src=\"media/helpimg/starmath/al21826.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183230\">Ikonoa</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -9782,7 +9782,7 @@ msgctxt ""
"par_id3183346\n"
"help.text"
msgid "Scalable curly set bracket below"
-msgstr "Giltza multzo eskalagarria behean"
+msgstr "Multzo-giltza eskalagarria behean"
#: 03091508.xhp
msgctxt ""
@@ -9926,7 +9926,7 @@ msgctxt ""
"par_id3184320\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr ""
+msgstr "Ikurra 'Elementuak' panelean"
#: 03091509.xhp
msgctxt ""
@@ -9942,7 +9942,7 @@ msgctxt ""
"par_id3184418\n"
"help.text"
msgid "<image id=\"img_id3184425\" src=\"media/helpimg/starmath/co21916.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184425\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184425\" src=\"media/helpimg/starmath/co21916.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184425\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"par_id3184566\n"
"help.text"
msgid "<image id=\"img_id3184572\" src=\"media/helpimg/starmath/co21918.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184572\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184572\" src=\"media/helpimg/starmath/co21918.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184572\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -9982,7 +9982,7 @@ msgctxt ""
"par_id3184717\n"
"help.text"
msgid "<image id=\"img_id3184724\" src=\"media/helpimg/starmath/co21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184724\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184724\" src=\"media/helpimg/starmath/co21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184724\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -9998,7 +9998,7 @@ msgctxt ""
"par_id3184864\n"
"help.text"
msgid "<image id=\"img_id3184871\" src=\"media/helpimg/starmath/co21905.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184871\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184871\" src=\"media/helpimg/starmath/co21905.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184871\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10014,7 +10014,7 @@ msgctxt ""
"par_id3185011\n"
"help.text"
msgid "<image id=\"img_id3185018\" src=\"media/helpimg/starmath/co21901.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185018\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185018\" src=\"media/helpimg/starmath/co21901.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185018\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10030,7 +10030,7 @@ msgctxt ""
"par_id3185119\n"
"help.text"
msgid "<image id=\"img_id3185126\" src=\"media/helpimg/starmath/co21912.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185126\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185126\" src=\"media/helpimg/starmath/co21912.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185126\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10046,7 +10046,7 @@ msgctxt ""
"par_id3185267\n"
"help.text"
msgid "<image id=\"img_id3185274\" src=\"media/helpimg/starmath/co21917.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185274\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185274\" src=\"media/helpimg/starmath/co21917.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185274\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10070,7 +10070,7 @@ msgctxt ""
"par_id3185418\n"
"help.text"
msgid "<image id=\"img_id3185425\" src=\"media/helpimg/starmath/co21904.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185425\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185425\" src=\"media/helpimg/starmath/co21904.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185425\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10086,7 +10086,7 @@ msgctxt ""
"par_id3185566\n"
"help.text"
msgid "<image id=\"img_id3185573\" src=\"media/helpimg/starmath/co21906.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185573\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185573\" src=\"media/helpimg/starmath/co21906.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185573\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10102,7 +10102,7 @@ msgctxt ""
"par_id3185714\n"
"help.text"
msgid "<image id=\"img_id3185721\" src=\"media/helpimg/starmath/co21902.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185721\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185721\" src=\"media/helpimg/starmath/co21902.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185721\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10118,7 +10118,7 @@ msgctxt ""
"par_id3185823\n"
"help.text"
msgid "<image id=\"img_id3185829\" src=\"media/helpimg/starmath/co21909.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185829\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185829\" src=\"media/helpimg/starmath/co21909.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185829\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10134,7 +10134,7 @@ msgctxt ""
"par_id3185931\n"
"help.text"
msgid "<image id=\"img_id3185937\" src=\"media/helpimg/starmath/co21910.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185937\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185937\" src=\"media/helpimg/starmath/co21910.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185937\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10150,7 +10150,7 @@ msgctxt ""
"par_id3186039\n"
"help.text"
msgid "<image id=\"img_id3186046\" src=\"media/helpimg/starmath/co21911.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3186046\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3186046\" src=\"media/helpimg/starmath/co21911.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3186046\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10166,7 +10166,7 @@ msgctxt ""
"par_id3186147\n"
"help.text"
msgid "<image id=\"img_id3186154\" src=\"media/helpimg/starmath/co21907.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3186154\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3186154\" src=\"media/helpimg/starmath/co21907.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3186154\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10182,7 +10182,7 @@ msgctxt ""
"par_id3186295\n"
"help.text"
msgid "<image id=\"img_id3186302\" src=\"media/helpimg/starmath/co21903.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3186302\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3186302\" src=\"media/helpimg/starmath/co21903.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3186302\">Ikonoa</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10214,7 +10214,7 @@ msgctxt ""
"bm_id3149261\n"
"help.text"
msgid "<bookmark_value>mathematical symbols; other</bookmark_value><bookmark_value>real part of complex numbers</bookmark_value><bookmark_value>symbols;for complex numbers</bookmark_value><bookmark_value>partial differentiation symbol</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla operator</bookmark_value><bookmark_value>there exists symbol</bookmark_value><bookmark_value>there does not exist symbol</bookmark_value><bookmark_value>existence quantor symbol</bookmark_value><bookmark_value>for all symbol</bookmark_value><bookmark_value>universal quantifier symbol</bookmark_value><bookmark_value>h-bar symbol</bookmark_value><bookmark_value>lambda-bar symbol</bookmark_value><bookmark_value>imaginary part of a complex number</bookmark_value><bookmark_value>complex numbers; symbols</bookmark_value><bookmark_value>weierstrass p symbol</bookmark_value><bookmark_value>left arrow symbol</bookmark_value><bookmark_value>right arrow symbol</bookmark_value><bookmark_value>up arrow symbol</bookmark_value><bookmark_value>down arrow symbol</bookmark_value><bookmark_value>arrows;symbols in %PRODUCTNAME Math</bookmark_value><bookmark_value>center dots symbol</bookmark_value><bookmark_value>axis-ellipsis</bookmark_value><bookmark_value>vertical dots symbol</bookmark_value><bookmark_value>diagonal upward dots;symbol</bookmark_value><bookmark_value>diagonal downward dots;symbol</bookmark_value><bookmark_value>epsilon; back</bookmark_value><bookmark_value>back epsilon symbol</bookmark_value><bookmark_value>placeholders; inserting in formulas</bookmark_value><bookmark_value>ellipsis symbols</bookmark_value>"
-msgstr "<bookmark_value>ikur matematikoak; beste batzuk</bookmark_value><bookmark_value>zenbaki konplexuen parte erreala</bookmark_value><bookmark_value>ikurrak;zenbaki konplexuentzat</bookmark_value><bookmark_value>diferentzia partzialaren ikurra</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla eragilea</bookmark_value><bookmark_value>existitzen da ikurra</bookmark_value><bookmark_value>ez da existitzen ikurra</bookmark_value><bookmark_value>zenbatzaile existentziala</bookmark_value><bookmark_value>ikur guztientzat</bookmark_value><bookmark_value>kuantifikatzailearen ikur unibertsala</bookmark_value><bookmark_value>h-barraren ikurra</bookmark_value><bookmark_value>lambda-barraren ikurra</bookmark_value><bookmark_value>zenbaki konplexu baten parte irudikaria</bookmark_value><bookmark_value>zenbaki konplexuak; ikurrak</bookmark_value><bookmark_value>weierstrass p ikurra</bookmark_value><bookmark_value>esker-geziaren ikurra</bookmark_value><bookmark_value>eskuin-geziaren ikurra</bookmark_value><bookmark_value>gora geziaren ikurra</bookmark_value><bookmark_value>behera geziaren ikurra</bookmark_value><bookmark_value>geziak;%PRODUCTNAME Math-eko ikurrak</bookmark_value><bookmark_value>erdiko puntuen ikurra</bookmark_value><bookmark_value>elipse ardatzduna</bookmark_value><bookmark_value>puntu bertikalen ikurra</bookmark_value><bookmark_value>goranzko puntu diagonalak;ikurra</bookmark_value><bookmark_value>beheranzko puntu diagonalak;ikurra</bookmark_value><bookmark_value>epsilon; alderantzikatua</bookmark_value><bookmark_value>epsilon alderantzikatuaren ikurra</bookmark_value><bookmark_value>leku-markak; formuletan txertatzea</bookmark_value><bookmark_value>elipse-ikurrak</bookmark_value>"
+msgstr "<bookmark_value>ikur matematikoak; beste batzuk</bookmark_value><bookmark_value>zenbaki konplexuen parte erreala</bookmark_value><bookmark_value>ikurrak;zenbaki konplexuentzat</bookmark_value><bookmark_value>diferentzia partzialaren ikurra</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla eragilea</bookmark_value><bookmark_value>existitzen da ikurra</bookmark_value><bookmark_value>ez da existitzen ikurra</bookmark_value><bookmark_value>zenbatzaile existentziala</bookmark_value><bookmark_value>ikur guztientzat</bookmark_value><bookmark_value>kuantifikatzailearen ikur unibertsala</bookmark_value><bookmark_value>h-barraren ikurra</bookmark_value><bookmark_value>lambda-barraren ikurra</bookmark_value><bookmark_value>zenbaki konplexu baten zati irudikaria</bookmark_value><bookmark_value>zenbaki konplexuak; ikurrak</bookmark_value><bookmark_value>weierstrass p ikurra</bookmark_value><bookmark_value>eskerrerako geziaren ikurra</bookmark_value><bookmark_value>eskuinerako geziaren ikurra</bookmark_value><bookmark_value>gorako geziaren ikurra</bookmark_value><bookmark_value>beherako geziaren ikurra</bookmark_value><bookmark_value>geziak;%PRODUCTNAME Math-eko ikurrak</bookmark_value><bookmark_value>erdiko puntuen ikurra</bookmark_value><bookmark_value>elipse ardatzduna</bookmark_value><bookmark_value>puntu bertikalen ikurra</bookmark_value><bookmark_value>goranzko puntu diagonalak;ikurra</bookmark_value><bookmark_value>beheranzko puntu diagonalak;ikurra</bookmark_value><bookmark_value>epsilon; alderantzikatua</bookmark_value><bookmark_value>epsilon alderantzikatuaren ikurra</bookmark_value><bookmark_value>leku-markak; formuletan txertatzea</bookmark_value><bookmark_value>elipse-ikurrak</bookmark_value>"
#: 03091600.xhp
msgctxt ""
@@ -10246,7 +10246,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<image id=\"img_id3145177\" src=\"media/helpimg/starmath/mi22006.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145177\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145177\" src=\"media/helpimg/starmath/mi22006.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145177\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10254,7 +10254,7 @@ msgctxt ""
"par_id3153167\n"
"help.text"
msgid "<emph>Partial</emph>"
-msgstr ""
+msgstr "<emph>Partziala</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10270,7 +10270,7 @@ msgctxt ""
"par_id3152782\n"
"help.text"
msgid "<image id=\"img_id3152788\" src=\"media/helpimg/starmath/mi22005.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152788\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152788\" src=\"media/helpimg/starmath/mi22005.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152788\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10278,7 +10278,7 @@ msgctxt ""
"par_id3151049\n"
"help.text"
msgid "<emph>Infinity</emph>"
-msgstr ""
+msgstr "<emph>Infinitua</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10294,7 +10294,7 @@ msgctxt ""
"par_id3150217\n"
"help.text"
msgid "<image id=\"img_id3150223\" src=\"media/helpimg/starmath/mi22013.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150223\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150223\" src=\"media/helpimg/starmath/mi22013.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150223\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10302,7 +10302,7 @@ msgctxt ""
"par_id3153687\n"
"help.text"
msgid "<emph>Nabla</emph>"
-msgstr ""
+msgstr "<emph>Nabla</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10318,7 +10318,7 @@ msgctxt ""
"par_id3155330\n"
"help.text"
msgid "<image id=\"img_id3155336\" src=\"media/helpimg/starmath/mi21608.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155336\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155336\" src=\"media/helpimg/starmath/mi21608.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155336\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10326,7 +10326,7 @@ msgctxt ""
"par_id3154398\n"
"help.text"
msgid "<emph>There exists</emph>"
-msgstr ""
+msgstr "<emph>Badago</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_idA3155330\n"
"help.text"
msgid "<image id=\"img_idA3155336\" src=\"media/helpimg/starmath/mi21618.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_idA3155336\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_idA3155336\" src=\"media/helpimg/starmath/mi21618.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_idA3155336\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_idA3154398\n"
"help.text"
msgid "<emph>There does not exist</emph>"
-msgstr ""
+msgstr "<emph>Ez dago</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10366,7 +10366,7 @@ msgctxt ""
"par_id3151296\n"
"help.text"
msgid "<image id=\"img_id3151302\" src=\"media/helpimg/starmath/mi21612.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151302\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151302\" src=\"media/helpimg/starmath/mi21612.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151302\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10374,7 +10374,7 @@ msgctxt ""
"par_id3146976\n"
"help.text"
msgid "<emph>For all</emph>"
-msgstr ""
+msgstr "<emph>Guztientzat</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10390,7 +10390,7 @@ msgctxt ""
"par_id3153023\n"
"help.text"
msgid "<image id=\"img_id3153030\" src=\"media/helpimg/starmath/mi22014.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153030\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153030\" src=\"media/helpimg/starmath/mi22014.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153030\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"par_id3159250\n"
"help.text"
msgid "<emph>h Bar</emph>"
-msgstr ""
+msgstr "<emph>h barra</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10414,7 +10414,7 @@ msgctxt ""
"par_id3153908\n"
"help.text"
msgid "<image id=\"img_id3153256\" src=\"media/helpimg/starmath/mi22015.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153256\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153256\" src=\"media/helpimg/starmath/mi22015.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153256\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10422,7 +10422,7 @@ msgctxt ""
"par_id3145378\n"
"help.text"
msgid "<emph>Lambda Bar</emph>"
-msgstr ""
+msgstr "<emph>Lambda barra</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10438,7 +10438,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "<image id=\"img_id3154285\" src=\"media/helpimg/starmath/mi22003.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154285\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154285\" src=\"media/helpimg/starmath/mi22003.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154285\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10446,7 +10446,7 @@ msgctxt ""
"par_id3153962\n"
"help.text"
msgid "<emph>Real Part</emph>"
-msgstr ""
+msgstr "<emph>Zati erreala</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10454,7 +10454,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_RE\">Inserts the symbol for the real part of a complex number.</ahelp> Command for the <emph>Commands</emph> window: <emph>re</emph>"
-msgstr "<ahelp hid=\"HID_SMA_RE\">Zenbaki konplexu baten parte errealaren ikurra txertatzen du.</ahelp><emph>Komandoak</emph> leihoan sartu beharreko komandoa: <emph>re</emph>"
+msgstr "<ahelp hid=\"HID_SMA_RE\">Zenbaki konplexu baten zati errealaren ikurra txertatzen du.</ahelp><emph>Komandoak</emph> leihoan sartu beharreko komandoa: <emph>re</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"par_id3154543\n"
"help.text"
msgid "<image id=\"img_id3154553\" src=\"media/helpimg/starmath/mi22004.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154553\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154553\" src=\"media/helpimg/starmath/mi22004.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154553\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10470,7 +10470,7 @@ msgctxt ""
"par_id3150430\n"
"help.text"
msgid "<emph>Imaginary Part</emph>"
-msgstr ""
+msgstr "<emph>Zati irudikaria</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10478,7 +10478,7 @@ msgctxt ""
"par_id3147036\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_IM\">Inserts the symbol for the imaginary part of a complex number.</ahelp> Command for the <emph>Commands</emph> window: <emph>im</emph>"
-msgstr "<ahelp hid=\"HID_SMA_IM\">Zenbaki konplexu baten parte irudikariaren ikurra txertatzen du.</ahelp><emph>Komandoak</emph> leihoan sartu beharreko komandoa: <emph>im</emph>"
+msgstr "<ahelp hid=\"HID_SMA_IM\">Zenbaki konplexu baten zati irudikariaren ikurra txertatzen du.</ahelp><emph>Komandoak</emph> leihoan sartu beharreko komandoa: <emph>im</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10486,7 +10486,7 @@ msgctxt ""
"par_id3154156\n"
"help.text"
msgid "<image id=\"img_id3154162\" src=\"media/helpimg/starmath/mi22007.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154162\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154162\" src=\"media/helpimg/starmath/mi22007.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154162\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10494,7 +10494,7 @@ msgctxt ""
"par_id3156177\n"
"help.text"
msgid "<emph>Weierstrass p</emph>"
-msgstr ""
+msgstr "<emph>Weierstrass-en p</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10510,7 +10510,7 @@ msgctxt ""
"par_id3155267\n"
"help.text"
msgid "<image id=\"img_id3155273\" src=\"media/helpimg/starmath/mi22016.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155273\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155273\" src=\"media/helpimg/starmath/mi22016.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155273\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10518,7 +10518,7 @@ msgctxt ""
"par_id3153860\n"
"help.text"
msgid "<emph>Left Arrow</emph>"
-msgstr ""
+msgstr "<emph>Ezkerrerako gezia</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"par_id3149923\n"
"help.text"
msgid "<image id=\"img_id3149929\" src=\"media/helpimg/starmath/mi22017.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149929\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149929\" src=\"media/helpimg/starmath/mi22017.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149929\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10542,7 +10542,7 @@ msgctxt ""
"par_id3153472\n"
"help.text"
msgid "<emph>Right Arrow</emph>"
-msgstr ""
+msgstr "<emph>Eskuinerako gezia</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10558,7 +10558,7 @@ msgctxt ""
"par_id3148506\n"
"help.text"
msgid "<image id=\"img_id3148512\" src=\"media/helpimg/starmath/mi22018.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148512\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148512\" src=\"media/helpimg/starmath/mi22018.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148512\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"par_id3152824\n"
"help.text"
msgid "<emph>Up Arrow</emph>"
-msgstr ""
+msgstr "<emph>Gorako gezia</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10582,7 +10582,7 @@ msgctxt ""
"par_id3157946\n"
"help.text"
msgid "<image id=\"img_id3157951\" src=\"media/helpimg/starmath/mi22019.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157951\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157951\" src=\"media/helpimg/starmath/mi22019.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157951\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10590,7 +10590,7 @@ msgctxt ""
"par_id3145694\n"
"help.text"
msgid "<emph>Down Arrow</emph>"
-msgstr ""
+msgstr "<emph>Beherako gezia</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10606,7 +10606,7 @@ msgctxt ""
"par_id3154997\n"
"help.text"
msgid "<image id=\"img_id3155003\" src=\"media/helpimg/starmath/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155003\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155003\" src=\"media/helpimg/starmath/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155003\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10614,7 +10614,7 @@ msgctxt ""
"par_id3159083\n"
"help.text"
msgid "<emph>Ellipsis</emph>"
-msgstr ""
+msgstr "<emph>Elipsia</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10630,7 +10630,7 @@ msgctxt ""
"par_id3163719\n"
"help.text"
msgid "<image id=\"img_id3163726\" src=\"media/helpimg/starmath/mi22008.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163726\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163726\" src=\"media/helpimg/starmath/mi22008.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163726\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10638,7 +10638,7 @@ msgctxt ""
"par_id3163797\n"
"help.text"
msgid "<emph>Math-axis Ellipsis</emph>"
-msgstr ""
+msgstr "<emph>Matematika-ardatzaren elipsia</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_id3146829\n"
"help.text"
msgid "<image id=\"img_id3146835\" src=\"media/helpimg/starmath/mi22012.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146835\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146835\" src=\"media/helpimg/starmath/mi22012.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146835\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10662,7 +10662,7 @@ msgctxt ""
"par_id3152634\n"
"help.text"
msgid "<emph>Vertical Ellipsis</emph>"
-msgstr ""
+msgstr "<emph>Elipsi bertikala</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"par_id3109675\n"
"help.text"
msgid "<image id=\"img_id3109681\" src=\"media/helpimg/starmath/mi22009.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3109681\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3109681\" src=\"media/helpimg/starmath/mi22009.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3109681\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10686,7 +10686,7 @@ msgctxt ""
"par_id3109753\n"
"help.text"
msgid "<emph>Upward Diagonal Ellipsis</emph>"
-msgstr ""
+msgstr "<emph>Goranzko elipsi diagonala</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10702,7 +10702,7 @@ msgctxt ""
"par_id3158234\n"
"help.text"
msgid "<image id=\"img_id3158240\" src=\"media/helpimg/starmath/mi22010.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158240\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158240\" src=\"media/helpimg/starmath/mi22010.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158240\">Ikonoa</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -10710,7 +10710,7 @@ msgctxt ""
"par_id3158311\n"
"help.text"
msgid "<emph>Downward Diagonal Ellipsis</emph>"
-msgstr ""
+msgstr "<emph>Beheranzko elipsi diagonala</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10990,7 +10990,7 @@ msgctxt ""
"par_id3152598\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/smath/ui/fontdialog/FontDialog\">Use this dialog to select the font for the respective category in the <emph>Fonts</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/smath/ui/fontdialog/FontDialog\">Erabili elkarrizketa-koadro hau <emph>Letra-tipoak</emph> elkarrizketa-koadroko kategoria bakoitzari dagokion letra-tipoa hautatzeko.</ahelp>"
#: 05010100.xhp
msgctxt ""
@@ -11118,7 +11118,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#metrik\" name=\"metrics\">metrics</link>, which are then automatically converted to points.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">Formulako elementu guztiak oinarri-tamainaren arabera proportzionalki eskalatzen dira. Oinarri-tamaina aldatzeko, nahi duzun tamaina (pt) hautatu edo idatzi. Beste neurri-unitate batzuk edo <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"metrics\">metrika</link> batzuk ere erabil ditzakezu, eta horiek automatikoki puntu bihurtuko dira.</ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -11870,7 +11870,7 @@ msgctxt ""
"par_id3155143\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/spacingdialog/default\">Saves your changes as your default settings for all new formulas.</ahelp> A security response will appear before saving these changes."
-msgstr ""
+msgstr "<ahelp hid=\"modules/smath/ui/spacingdialog/default\">Zure aldaketak gordetzen ditu formula berri guztietarako ezarpen lehenetsi gisa.</ahelp> Segurtasun-erantzuna agertuko da aldaketak gorde baino lehen."
#: 05040000.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"par_id3145825\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/symdefinedialog/symbolSets\">The <emph>Symbol set</emph> list box contains the names of all existing symbol sets. You can modify a symbol set or create a new one.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/symbolSets\"><emph>Ikur multzoa</emph> zerrenda-laukiak lehendik dauden ikur multzo guztien izenak ditu. Ikur multzo horiek aldatu edo berriak sortu ditzakezu.</ahelp>"
#: 06010100.xhp
msgctxt ""
@@ -12286,7 +12286,7 @@ msgctxt ""
"hd_id3148386\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Estiloa"
#: 06010100.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/smath/04.po b/source/eu/helpcontent2/source/text/smath/04.po
index dde5f989857..1561ec64195 100644
--- a/source/eu/helpcontent2/source/text/smath/04.po
+++ b/source/eu/helpcontent2/source/text/smath/04.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2013-05-24 08:59+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-19 09:56+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369385981.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497866207.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"hd_id3153732\n"
"help.text"
msgid "Navigation in the Elements pane"
-msgstr ""
+msgstr "Nabigazioa 'Elementuak' panelean"
#: 01020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/smath/guide.po b/source/eu/helpcontent2/source/text/smath/guide.po
index f6102d96439..b9f3cb560a4 100644
--- a/source/eu/helpcontent2/source/text/smath/guide.po
+++ b/source/eu/helpcontent2/source/text/smath/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-11-16 18:16+0000\n"
-"Last-Translator: Naroalasarte <naroatoxu31@gmail.com>\n"
+"PO-Revision-Date: 2017-06-19 10:01+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479320189.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497866464.000000\n"
#: align.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3150537\n"
"help.text"
msgid "You can compose formulas using the Elements pane. Open it with the menu <emph>View - Elements</emph> if it is not already open."
-msgstr ""
+msgstr "'Elementuak' panelaren bidez formulak sor ditzakezu. Irekita ez badago, ireki <emph>Ikusi - Elementuak</emph> menuarekin."
#: keyboard.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3155625\n"
"help.text"
msgid "If the Elements pane is open, use F6 to switch from the Commands window to the Elements pane and back."
-msgstr ""
+msgstr "'Elementuak' panela irekita badago, erabili F6 tekla 'Komandoak' leihoa eta 'Elementuak' panela txandakatzeko."
#: keyboard.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"hd_id3154554\n"
"help.text"
msgid "Elements pane"
-msgstr ""
+msgstr "'Elementuak' panela"
#: limits.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id1276589\n"
"help.text"
msgid "You see the Math input window and the Elements pane on the left."
-msgstr ""
+msgstr "Math sarrera-leihoa eta 'Elementuak' panela ezkerrean ikusiko dituzu."
#: limits.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3283791\n"
"help.text"
msgid "From the list on the upper part of the Elements pane, select the <emph>Operators</emph> item."
-msgstr ""
+msgstr "'Elementuak' paneleko goiko aldeko zerrendatik, aukeratu <emph>Eragileak</emph> elementua."
#: limits.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id9734794\n"
"help.text"
msgid "In the lower part of the Elements pane, click the <emph>Sum</emph> icon."
-msgstr ""
+msgstr "'Elementuak' paneleko beheko aldean, sakatu <emph>Batuketa</emph> ikonoa."
#: limits.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id9406414\n"
"help.text"
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
-msgstr ""
+msgstr "Era berean, mugak dituen formula integral bat sar dezakezu. 'Elementuak' paneleko ikono batean klik egitean, esleitutako testu-komandoa sarrera-leihoan txertatuko da. Testu-komandoak ezagutzen badituzu, komandoak sarrera-leihoan zuzenean sar ditzakezu."
#: limits.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id4651020\n"
"help.text"
msgid "A small gap exists between f(x) and dx, which you can also enter using the Elements pane: select the <emph>Formats</emph> item from the list on the top, then the <emph>Small Gap</emph> icon."
-msgstr ""
+msgstr "f(x) eta dx artean tarte txiki bat dago, 'Elementuak' panela erabiliz ere sar dezakezuna: hautatu <emph>Formatua</emph> elementua goiko zerrendan, eta ondoren <emph>Tarte txikia</emph> ikonoa."
#: limits.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter.po b/source/eu/helpcontent2/source/text/swriter.po
index 4e9ec38bb93..49293313138 100644
--- a/source/eu/helpcontent2/source/text/swriter.po
+++ b/source/eu/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 08:58+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 06:08+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496480290.000000\n"
+"X-POOTLE-MTIME: 1498025281.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_id030820161800098142\n"
"help.text"
msgid "Only the Intellectual Properties category will modify the layout of the document with a watermark, fields in the header and footer and an information bar on top of the document area. Each item inserted in the document is controlled by the classification configuration file."
-msgstr ""
+msgstr "'Jabetza intelektuala' kategoriak soilik aldatuko du ur-marka bat, goiburukoak eta orri-oinean eremuak eta dokumentu-arearen goialdean informazio-barra bat duen dokumentuaren diseinua. Dokumentuan txertatutako elementuak sailkapen-konfigurazioko fitxategiaren bidez kontrolatzen dira."
#: classificationbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id030820161800091021\n"
"help.text"
msgid "Refer to your corporate data security policy and information security officers for support in document classification."
-msgstr ""
+msgstr "Begiratu zure enpresaren datu-segurtasuneko politika eta kontsultatu informazio-segurtasuneko teknikariekin, dokumentua nola sailkatu behar den jakiteko."
#: classificationbar.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"bm_id030820161849574719\n"
"help.text"
msgid "<bookmark_value>classification levels;Internal use only</bookmark_value> <bookmark_value>classification levels;Confidential</bookmark_value> <bookmark_value>classification levels;General Business</bookmark_value> <bookmark_value>classification levels;Non-Business</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sailkapen-mailak;barne-erabilerarrako soilik</bookmark_value> <bookmark_value>sailkapen-mailak;konfidentziala</bookmark_value> <bookmark_value>sailkapen-mailak;negozioak</bookmark_value> <bookmark_value>sailkapen-mailak;bestelakoak</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id030820161747139337\n"
"help.text"
msgid "%PRODUCTNAME provides default levels of document classification (<item type=\"acronym\">BAILS</item>) shown below, sorted by increasing level of business sensitivity:"
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak behean erakusten diren dokumentu-sailkapenerako maila lehenetsiak (<item type=\"acronym\">BAILS</item>) eskaintzen ditu, negozioei dagokienez duten sentikortasun-mailaren arabera ordenatuak:"
#: classificationbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id030820161747135421\n"
"help.text"
msgid "<emph>Non-Business</emph>: Information in document has no impact in business, if made public."
-msgstr ""
+msgstr "<emph>Bestelakoak</emph>: Dokumentuko informazioak, argitaratzen bada, ez du eraginik negozioan."
#: classificationbar.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id030820161747132341\n"
"help.text"
msgid "<emph>General Business</emph>: Minor impact. Information has impact in business, can generate embarrassments, minor damage in brand image, if made public."
-msgstr ""
+msgstr "<emph>Negozioak</emph>: Inpaktu txikia. Informazioak inpaktua du negozioan, estutasun eta kalte txikiak sortu ditzake markan, argitaratzen bada."
#: classificationbar.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id030820161747139845\n"
"help.text"
msgid "<emph>Confidential</emph>: Modest impact. Information disclosed can damage business brand, can generate negative media coverage and loss of revenue."
-msgstr ""
+msgstr "<emph>Konfidentziala</emph>: Inpaktu ertaina. Argitaratutako informazioak negozioaren marka kaltetu dezake, hedabideetan oihartzun negatiboa izan dezake eta diru-galera eragin dezake."
#: classificationbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id030820161747138519\n"
"help.text"
msgid "<emph>Internal use only</emph>: Major damage. Negative national media, lawsuits, fines, long term brand damages."
-msgstr ""
+msgstr "<emph>Barne-erabilerarako soilik</emph>: Kalte handia. Nazio mailako oihartzuna hedabideetan, auzibideak, isunak, epe luzeko kalteak markan."
#: classificationbar.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"bm_id030820161851045883\n"
"help.text"
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pertsonalizatu;sailkapen-mailak</bookmark_value> <bookmark_value>sailkapen-mailak;pertsonalizatzea</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id030820161747133280\n"
"help.text"
msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file <item type=\"literal\">example.xml</item> located in <item type=\"menuitem\">Tools - Options - LibreOffice - Paths - Classification</item> into a local folder and edit the contents."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak zure negozioaren sailkapen-mailak pertsonalizatzea ahalbidetzen du. Mailen zenbakia eta izena pertsonalizatzeko, kopiatu <item type=\"literal\">example.xml</item> fitxategia, <item type=\"menuitem\">Tresnak - Aukerak - LibreOffice - Bide-izenak - Sailkapena</item> atalean kokatutakoa, karpeta lokal batera eta editatu bere edukiak."
#: classificationbar.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id03082016174713477\n"
"help.text"
msgid "Use the file with your %PRODUCTNAME locale in the name as example."
-msgstr ""
+msgstr "Erabili %PRODUCTNAME aplikazioaren hizkuntza izenean duen fitxategia adibide gisa."
#: classificationbar.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id030820161747137522\n"
"help.text"
msgid "Save the file and make the adequate changes to the classification path above to access the file."
-msgstr ""
+msgstr "Gorde fitxategia eta egin beharrezkoak diren aldaketak sailkapeneko bide-izenean (goian), fitxategia atzitzeko."
#: classificationbar.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id030820161747135133\n"
"help.text"
msgid "Your system administrator can place the file in a network folder and make all users access the classification settings file."
-msgstr ""
+msgstr "Zure sistema-administratzaileak sareko karpeta batean utzi dezake fitxategia, erabiltzaile guztiek sailkapen-ezarpenen fitxategia atzitu ahal dezaten."
#: classificationbar.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"hd_id03082016174713354\n"
"help.text"
msgid "Pasting contents in documents with different levels of classification."
-msgstr ""
+msgstr "Sailkapen-maila desberdina duten dokumentuen artean edukiak itsastzea."
#: classificationbar.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"bm_id030820161851512902\n"
"help.text"
msgid "<bookmark_value>document classification;pasting contents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentu-sailkapena;edukiak itsastea</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id030820161747134188\n"
"help.text"
msgid "To prevent a breach in the security policy, contents with high classification level pasted to documents with lower classification level are not allowed. %PRODUCTNAME will display a warning message wherever it detects that the contents of the clipboard have higher security classification than the target document."
-msgstr ""
+msgstr "Segurtasun-politikan haustura gerta dadin eragozteko, ez da onartzen sailkapen-maila altuko edukiak sailkapen-maila baxuagoa duten dokumentuetan itsastea. %PRODUCTNAME aplikazioak abisu-mezua bistaratuko du arbeleko edukiak helburuko dokumentuak baino segurtasun-sailkapen altuagoa duela antzematen badu."
#: classificationbar.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"bm_id030820161853495457\n"
"help.text"
msgid "<bookmark_value>Classification toolbar;display</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>'Sailkapena' tresna-barra; bistaratzea</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom fields tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "'Sailkapena' tresna-barrak zenbait zerrenda-koadro ditu dokumentuaren segurtasuna hautatzen laguntzeko, bai <item type=\"acronym\">BAF</item> kategoria-politikaren arabera, bai <item type=\"acronym\">BAILS</item> mailen arabera. %PRODUCTNAME(e)k eremu pertsonalizatuak gehituko ditu dokumentu-propietateetan (<item type=\"menuitem\">Fitxategia - Propietateak</item>, 'Eremu pertsonalizatuak' fitxa), sailkapen-politika dokumentuaren metadatu gisa biltegiratzeko."
#: classificationbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id030820161754175408\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars </item>and select <item type=\"menuitem\">Classification</item>"
-msgstr ""
+msgstr "Joan <item type=\"menuitem\">Ikusi - Tresna-barrak</item> menura eta hautatu <item type=\"menuitem\">Sailkapena</item>"
#: classificationbar.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id030820161818081317\n"
"help.text"
msgid "<link href=\"http://www.tscp.org/about-tscp/\"><item type=\"acronym\">TSCP</item> (Transglobal Secure Collaboration Participation, Inc.) website</link>."
-msgstr ""
+msgstr "<link href=\"http://www.tscp.org/about-tscp/\"><item type=\"acronym\">TSCP</item> (Transglobal Secure Collaboration Participation, Inc.) webgunea</link>."
#: classificationbar.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id030820161818082152\n"
"help.text"
msgid "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAFv1.pdf\">Business Authentication Framework (<item type=\"acronym\">BAF</item>) document (PDF)</link>"
-msgstr ""
+msgstr "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAFv1.pdf\">Business Authentication Framework (<item type=\"acronym\">BAF</item>) dokumentua (PDF)</link>"
#: classificationbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id030820161818085901\n"
"help.text"
msgid "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAILSv1.pdf\">Business Authorization Identification and Labeling Scheme (<item type=\"acronym\">BAILS</item>) document (PDF)</link>"
-msgstr ""
+msgstr "<link href=\"http://www.tscp.org/wp-content/uploads/2013/08/TSCP_BAILSv1.pdf\">Business Authorization Identification and Labeling Scheme (<item type=\"acronym\">BAILS</item>) dokumentua (PDF)</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Kapitulu-numerazioa\">Kapitulu-numerazioa</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Kapitulu-numerazioa</link>"
#: main0106.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/00.po b/source/eu/helpcontent2/source/text/swriter/00.po
index 3ac320910cb..f5c3bf7a364 100644
--- a/source/eu/helpcontent2/source/text/swriter/00.po
+++ b/source/eu/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-06-06 16:27+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496766471.000000\n"
#: 00000004.xhp
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Aukeratu <emph>Tresnak - Kapitulu-numerazioa</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Aukeratu <emph>Tresnak - Kapitulu-numerazioa - Numerazioa</emph> fitxa</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Aukeratu <emph>Tresnak - Lerro-zenbakitzea</emph> (ez HTML formaturako) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 9791c5ecce2..fde40ee99ae 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 16:29+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-16 06:38+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496766571.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497595084.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Sakatu <emph>1 </emph> goi-mailako izenburuak bakarrik ikusteko Nabigatzailea leihoan, eta <emph>10</emph> izenburu guztiak ikusteko.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "\"Kapitulu-zenbakia bereizlerik gabe\" aukeratzen baduzu kapitulu-eremu baterako, <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tresnak - Eskema-numerazioa</emph></link> aukeran kapitulu-zenbakietarako zehaztuko diren bereizleak ez dira bistaratuko."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -7582,7 +7582,7 @@ msgctxt ""
"par_id3326822\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline> eta egin klik bikoitza eremuan."
+msgstr "Zerrendako eremu bat azkar txertatzeko, sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline> eta egin klik bikoitza eremuan."
#: 04090005.xhp
msgctxt ""
@@ -10166,7 +10166,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/readonly\">Prevents the contents of the index from being changed.</ahelp> Manual changes that you make to an index are lost when the index is refreshed. If you want the cursor to scroll through a protected area, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph>, and then select the <emph>Enable cursor</emph> check box in the <emph>Protected Areas</emph> section."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/readonly\">Indizeko edukiak alda daitezen eragozten du.</ahelp> Indize bati eskuz egindako aldaketak galdu egingo dira indizea freskatzen denean. Kurtsorea babestutako arean zehar korri dadin nahi baduzu, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formateatzeko laguntza</emph>, eta ondoren hautatu <emph>Gaitu kurtsorea</emph> kontrol-laukia <emph>Babestutako areak</emph> atalean."
#: 04120211.xhp
msgctxt ""
@@ -10238,7 +10238,7 @@ msgctxt ""
"par_id1209200804373840\n"
"help.text"
msgid "You can also assign the outline levels in the <link href=\"text/swriter/01/05030800.xhp\">Outline & Numbering</link> tab page of the Format - Paragraph dialog."
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05030800.xhp\">Eskema eta numerazioa</link> fitxa-orriko 'Formatua - Paragrafoa' elkarrizketa-koadroan ere esleitu daitezke eskema-mailak."
#: 04120211.xhp
msgctxt ""
@@ -10326,7 +10326,7 @@ msgctxt ""
"hd_id3154651\n"
"help.text"
msgid "Combine identical entries"
-msgstr "Konbinatu sarrera identikoak"
+msgstr "Konbinatu sarrera berdinak"
#: 04120212.xhp
msgctxt ""
@@ -10334,7 +10334,7 @@ msgctxt ""
"par_id3153810\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/combinesame\">Replaces identical index entries with a single entry that lists the page numbers where the entry occurs in the document. For example, the entries \"View 10, View 43\" are combined as \"View 10, 43\".</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/combinesame\">Indize-sarrera berdinak sarrera bakarrarekin ordezten ditu. Sarrera horrek sarrera dokumentuan zein orrialde-zenbakitan agertzen den erakusten du. Adibidez, \"View 10, View 43\" sarrerak \"View 10, 43\" gisa konbinatzen dira.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/combinesame\">Indize-sarrera berdinak sarrera bakarrarekin ordezten ditu. Sarrera horrek sarrera dokumentuan zein orrialde-zenbakitan agertzen den erakusten du. Adibidez, \"Ikusi 10, Ikusi 43\" sarrerak \"Ikusi 10, 43\" gisa konbinatzen dira.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"hd_id3147403\n"
"help.text"
msgid "Combine identical entries with p or pp"
-msgstr "Konbinatu sarrera identikoak p edo pp-rekin"
+msgstr "Konbinatu sarrera berdinak p edo pp-rekin"
#: 04120212.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_id3083451\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Replaces identical index entries, which occur also on the directly following page or pages, with a single entry that lists the first page number and a \"p\" or \"pp\". For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10pp\", and \"View 10, View 11\" as \"View 10p\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Indize-sarrera berdinak, hurrengo orrialdean edo orrialdeetan ere agertzen direnak, sarrera bakarrarekin ordezten ditu. Sarrera horren formatua lehen orrialde-zenbakia eta \"p\" edo \"pp\" izango da. Esaterako, \"Ikusi 10, Ikusi 11, Ikusi 12\" konbinatu egingo dira eta \"Ikusi 10pp\" erakutsiko da; eta \"Ikusi 10, Ikusi 11\" konbinatu eta \"Ikusi 10p\" erakutsiko da.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10366,7 +10366,7 @@ msgctxt ""
"par_id3145825\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\".</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Elkarren segidako orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"View 10, View 11, View 12\" sarrerak \"View 10-12\" gisa konbinatzen dira.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Elkarren segidako orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -11054,7 +11054,7 @@ msgctxt ""
"par_id3154504\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Type</link> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Zehaztu indize- edo aurkibide-sarreran formatua. Fitxa honen itxura desberdina da <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Mota</link> fitxan hautatu duzun indize motaren arabera.</ahelp>"
#: 04120220.xhp
msgctxt ""
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -11390,7 +11390,7 @@ msgctxt ""
"par_id6499221\n"
"help.text"
msgid "<ahelp hid=\".\">Only visible when you click the E# button in the Structure line. Select to show the chapter number with or without separator.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">'Egitura' lerroko E# botoia sakatzen denean soilik ikusten da. Hautatu, kapitulu-zenbakia bereizlerik gabe edo bereizlearekin erakusteko.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3154573\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterinfo\">Inserts chapter information, such as the chapter heading and number. Select the information that you want to display in the <emph>Chapter entry </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterinfo\">Kapitulu-informazioa txertatzen du, esaterako kapituluaren izenburua eta zenbakia. Hautatu, <emph>Kapitulu-sarrera</emph> koadroan, bistaratu nahi duzun informazioa.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id6739402\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the maximum hierarchy level down to which objects are shown in the generated index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sartu zein hierarkia-mailarainoko objektuak (beherantz) erakutsiko diren sortutako indizean.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"par_id3149109\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose <emph>Edit - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Index Entry</emph></link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Zehaztu indize alfabetikoko sarrera nagusien formatu-estiloa. Indize-sarrera bat sarrera nagusi bihurtzeko, egin klik dokumentuko indize-eremuaren aurrean eta aukeratu <emph>Editatu - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Indize-sarrera</emph></link>.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11518,7 +11518,7 @@ msgctxt ""
"par_id3147100\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/alphadelim\">Uses the initial letters of the alphabetically arranged index entries as section headings.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/alphadelim\">Alfabetoaren arabera antolatutako indize-sarreren hasierako letrak sekzio-izenburu gisa erabiltzen ditu.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11534,7 +11534,7 @@ msgctxt ""
"par_id3153631\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/commasep\">Arranges the index entries on the same line, separated by commas.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/commasep\">Indize-sarrerak lerro berean antolatzen ditu, komaz bananduta.</ahelp>"
#: 04120223.xhp
msgctxt ""
@@ -11998,7 +11998,7 @@ msgctxt ""
"par_id3149292\n"
"help.text"
msgid "Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph>."
#: 04120250.xhp
msgctxt ""
@@ -12390,7 +12390,7 @@ msgctxt ""
"par_id3153678\n"
"help.text"
msgid "To edit a frame, click the border to select it, and then choose <emph>Format - Frame and Object - Properties</emph>. You can also resize or move a selected frame using special <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\">shortcut keys</link>."
-msgstr ""
+msgstr "Marko bat editatzeko, egin klik bere ertzean hura hautatzeko, eta ondoren aukeratu <emph>Formatua - Markoa eta objektua - Propietateak</emph>. Hautatutako markoaren tamaina aldatu edo mugitu dezakezu <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\">laster-tekla</link> bereziak erabilita."
#: 04130000.xhp
msgctxt ""
@@ -12478,7 +12478,7 @@ msgctxt ""
"par_id3148771\n"
"help.text"
msgid "To move a selected frame or object, press an arrow key. To move by one pixel, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press an arrow key."
-msgstr ""
+msgstr "Hautatutako marko edo objektu bat mugitzeko, sakatu gezi-tekla bat. Pixel batez mugitzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> eta sakatu gezi-tekla bat."
#: 04130100.xhp
msgctxt ""
@@ -12486,7 +12486,7 @@ msgctxt ""
"par_id3150762\n"
"help.text"
msgid "To resize a selected frame or object, first press Ctrl+Tab. Now one of the handles blinks to show that it is selected. To select another handle, press Ctrl+Tab again. Press an arrow key to resize the object by one grid unit. To resize by one pixel, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press an arrow key."
-msgstr ""
+msgstr "Hautatutako marko edo objektu baten tamaina aldatzeko, lehenengo sakatu Ctrl+Tab. Heldulekuetako batek keinu egingo du, hautatuta dagoela adierazteko. Beste helduleku bat hautatzeko, sakatu Ctrl+Tab berriro. Sakatu geizi-tekla bat objektuaren tamaina sareta-unitate batean aldatzeko. Pixel batean aldatzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">⌥</caseinline><defaultinline>Alt</defaultinline></switchinline> eta sakatu gezi-tekla bat."
#: 04130100.xhp
msgctxt ""
@@ -12494,7 +12494,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "The increment by which you move an object with the keyboard is determined by the document grid. To change the properties of the document grid, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01050100.xhp\" name=\"Text document - Grid\"><emph>%PRODUCTNAME Writer - Grid</emph></link>."
-msgstr ""
+msgstr "Dokumentu-saretan zehazten du teklatuaren bitartez mugitutako objektu bat zein neurritan mugituko den. Dokumentu-saretaren propietateak aldatzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobepspenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01050100.xhp\" name=\"Text document - Grid\"><emph>%PRODUCTNAME Writer - Sareta</emph></link>."
#: 04150000.xhp
msgctxt ""
@@ -12550,7 +12550,7 @@ msgctxt ""
"par_id3154638\n"
"help.text"
msgid "$[officename] can automatically format numbers that you enter in a table cell, for example, dates and times. To activate this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Table</emph> and click the<emph> Number recognition </emph>check box in the <emph>Input in tables</emph> area."
-msgstr ""
+msgstr "$[officename] aplikazioak automatikoki eman diezaieke formatua taula-gelaxka batean sartzen dituzun zenbakiei, esaterako datei eta orduei. Eginbide hori aktibatzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Taula</emph> eta egin klik <emph>Zenbaki-ezagutzea</emph> kontrol-laukian, <emph>Sarrera tauletan</emph> arean."
#: 04150000.xhp
msgctxt ""
@@ -12846,7 +12846,7 @@ msgctxt ""
"par_id3150533\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/exchangedatabases/availablelb\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/availablelb\"><item type=\"productname\">%PRODUCTNAME</item> aplikazioan erregistratu diren datu-baseak zerrendatzen ditu.</ahelp>"
#: 04180400.xhp
msgctxt ""
@@ -12878,7 +12878,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">Replaces the current data source with the data source that you selected in the <emph>Available Databases </emph>list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">Uneko datu-iturburua ordezten du <emph>Datu-base erabilgarriak</emph> zerrendak hautatu duzun datu-iturburuarekin.</ahelp>"
#: 04180400.xhp
msgctxt ""
@@ -12998,7 +12998,7 @@ msgctxt ""
"par_id3149880\n"
"help.text"
msgid "An inserted script is indicated by a small green rectangle. If you do not see the rectangle, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - </emph><link href=\"text/shared/optionen/01040200.xhp\" name=\"View\"><emph>View</emph></link>, and select the <emph>Comments</emph> check box. To edit a script, double-click the green rectangle."
-msgstr ""
+msgstr "Laukizuzen berde txiki batek txertatutako script bat adierazten du. Laukizuzena ikusten ez baduzu, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - </emph><link href=\"text/shared/optionen/01040200.xhp\" name=\"View\"><emph>Ikusi</emph></link>, eta hautatu <emph>Iruzkinak</emph> kontrol-laukia. Script bat editatzeko, egin klik bikoitza laukizuzen berdean."
#: 04200000.xhp
msgctxt ""
@@ -13806,7 +13806,7 @@ msgctxt ""
"par_id1209200804371097\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_OUTLINE_LEVEL\">Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style.</ahelp> Select <emph>Body text</emph> to reset the outline level."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_OUTLINE_LEVEL\">Eskema-maila bat esleitzen du, 1etik 10era, hautatutako paragrafoari edo paragrafo-estiloari.</ahelp> Hautatu <emph>Gorputz-testua</emph> eskema-maila berrezartzeko."
#: 05030800.xhp
msgctxt ""
@@ -14870,7 +14870,7 @@ msgctxt ""
"par_id3151171\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a text grid to the current page style. This option is only available if Asian language support is enabled under <emph>Language Settings - Languages</emph> in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Testu-sareta bat gehitzen dio uneko orrialde-estiloari. Aukera hau erabilgarri dago soilik asiar hizkuntzen euskarria gaituta badago <emph>Hizkuntza-ezarpenak - Hizkuntzak</emph> atalean, 'Aukerak' elkarrizketa-koadroan.</ahelp>"
#: 05040800.xhp
msgctxt ""
@@ -15126,7 +15126,7 @@ msgctxt ""
"par_id3145414\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/frmtypepage/relwidthrelation\">Decides what 100% width means: either text area (excluding margins) or the entire page (including margins).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/frmtypepage/relwidthrelation\">% 100eko zabalerak zer esan nahi duen erabakitzen du: testu-area den (marjinak kanpo) ala orrialde osoa den (marjinak barne).</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15174,7 +15174,7 @@ msgctxt ""
"par_id3145415\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/frmtypepage/relheightrelation\">Decides what 100% height means: either text area (excluding margins) or the entire page (including margins).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/frmtypepage/relheightrelation\">% 100eko altuerak zer esan nahi duen erabakitzen du: testu-area den (marjinak kanpo) ala orrialde osoa den (marjinak barne).</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15190,7 +15190,7 @@ msgctxt ""
"par_id3153675\n"
"help.text"
msgid "<ahelp hid=\".\">Maintains the height and width ratio when you change the width or the height setting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zabalera- eta altuera-ezarpenak aldatzen direnean altuera eta zabaleraren proportzioak mantentzen ditu.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15470,7 +15470,7 @@ msgctxt ""
"par_id3155075\n"
"help.text"
msgid "<ahelp hid=\".\">Select the reference point for the selected vertical alignment option.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hautatu aukeratutako lerrokatze bertikalaren erreferentzia-puntua.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15486,7 +15486,7 @@ msgctxt ""
"par_idN10A92\n"
"help.text"
msgid "<ahelp hid=\".\">Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hautatutako objektua objektu hori ainguratuta dagoen testuaren diseinu-mugen barruan mantentzen du. Hautatutako objektua dokumentuko edozein lekutan kokatzeko, ez hautatu aukera hori.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15494,7 +15494,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Follow text flow</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Modu lehenetsian, <emph>Jarraitu testu-fluxuari</emph> aukera hautatuta dago OpenOffice.org 2.0 baino zaharragoa den Writer bertsio batekin sortutako dokumentu bat irekitzen denean. Hala ere, aukera hori ez dago hautatuta Microsoft Word formatuko (*.doc) dokumentu bat sortzen edo irekitzen denean."
#: 05060100.xhp
msgctxt ""
@@ -15542,7 +15542,7 @@ msgctxt ""
"par_id3154478\n"
"help.text"
msgid "<variable id=\"umlauftext\"><ahelp hid=\".\">Specify the way you want text to wrap around an object.</ahelp> You can also specify the spacing between the text and the object.</variable>"
-msgstr ""
+msgstr "<variable id=\"umlauftext\"><ahelp hid=\".\">Zehaztu testua nola egokitu nahi duzun objektuaren inguruan.</ahelp> Testuaren eta objektuaren arteko tartea ere zehaztu dezakezu. </variable>"
#: 05060200.xhp
msgctxt ""
@@ -15574,7 +15574,7 @@ msgctxt ""
"par_id3147100\n"
"help.text"
msgid "<variable id=\"keinumlauftext\"><ahelp hid=\".\">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.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"keinumlauftext\"><ahelp hid=\".\">Objektua dokumentuko beste lerro batean kokatzen du. Testua objektuaren gainean edo azpian agertuko da dokumentuan, eta ez objektuaren alboetan.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15798,7 +15798,7 @@ msgctxt ""
"par_id3150100\n"
"help.text"
msgid "<variable id=\"hintergrundtext\"><ahelp hid=\".\">Moves the selected object to the background. This option is only available if you selected the<emph> Through</emph> wrap type.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"hintergrundtext\"><ahelp hid=\".\">Hautatutako objektua atzeko planora mugitzen du. Aukera hori erabilgarri egoteko, <emph>Zeharka</emph> egokitze motak egon behar du hautatuta.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15814,7 +15814,7 @@ msgctxt ""
"par_id3155793\n"
"help.text"
msgid "<variable id=\"konturtext\"><ahelp hid=\".\">Wraps text around the shape of the object. This option is not available for the <emph>Through</emph> wrap type, or for frames.</ahelp> To change the contour of an object, select the object, and then choose <emph>Format - Wrap - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Edit Contour</emph></link>.</variable>"
-msgstr ""
+msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">Testua objektuaren formaren inguruan egokitzen du. Aukera hori ez dago erabilgarri <emph>Zeharkatu</emph> egokitze motarentzat eta markoentzat.</ahelp> Objektuaren ingerada aldatzeko, hautatu objektua eta aukeratu <emph>Formatua - Egokitu - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Editatu ingerada</emph></link>. </variable>"
#: 05060200.xhp
msgctxt ""
@@ -15822,7 +15822,7 @@ msgctxt ""
"hd_id3154620\n"
"help.text"
msgid "Outside only"
-msgstr ""
+msgstr "Kanpoan soilik"
#: 05060200.xhp
msgctxt ""
@@ -17033,7 +17033,6 @@ msgid "frame is resized"
msgstr "markoari tamaina aldatu zaio"
#: 05060700.xhp
-#, fuzzy
msgctxt ""
"05060700.xhp\n"
"par_id3150774\n"
@@ -17151,7 +17150,7 @@ msgctxt ""
"hd_id3149271\n"
"help.text"
msgid "Macro From"
-msgstr ""
+msgstr "Hemengo makroa:"
#: 05060700.xhp
msgctxt ""
@@ -17319,7 +17318,7 @@ msgctxt ""
"par_id3149042\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/frame\">Specify the name of the frame where you want to open the targeted file.</ahelp> The predefined target frame names are described <link href=\"text/shared/01/05020400.xhp#targets\" name=\"here\">here</link>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/frame\">Zehaztu helburuko fitxategia irekitzeko erabiliko duzun markoaren izena.</ahelp> Aurrez definitutako helburuko markoen izenak <link href=\"text/shared/01/05020400.xhp#targets\" name=\"here\">hemen</link> daude deskribatuta."
#: 05060800.xhp
msgctxt ""
@@ -18023,7 +18022,7 @@ msgctxt ""
"par_id3154280\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptwidth\">Reduces or increases table width with modified column width.</ahelp> This option is not available if <emph>Automatic</emph> is selected in the <emph>Alignment </emph>area on the <emph>Table </emph>tab."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptwidth\">Taularen zabalera txikitzen edo handitzen du aldatutako zutabe-zabaleraren arabera.</ahelp> Aukera hau ez dago erabilgarri <emph>Automatikoa</emph> hautatu bada <emph>Taula</emph> fitxako <emph>Lerrokatzea</emph> arean."
#: 05090200.xhp
msgctxt ""
@@ -18039,7 +18038,7 @@ msgctxt ""
"par_id3153530\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptcolumns\">If possible, change in column width will be equal for each column.</ahelp> This option is not available if <emph>Automatic</emph> is selected in the <emph>Alignment </emph>area on the <emph>Table </emph>tab."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptcolumns\">Posible bada, zutabe-zabaleraren aldaketa berdina izango da zutabe guztietarako.</ahelp> Aukera hau ez dago erabilgarri <emph>Automatikoa</emph> hautatu bada <emph>Taula</emph> fitxako <emph>Lerrokatzea</emph> arean."
#: 05090200.xhp
msgctxt ""
@@ -18167,7 +18166,7 @@ msgctxt ""
"par_id3153920\n"
"help.text"
msgid "To resize a column, place the cursor in a table cell, hold down Alt, and then press the left or the right arrow. To resize the column without changing the width of the table, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>, and then press the left or the right arrows."
-msgstr ""
+msgstr "Zutabe baten tamaina aldatzeko, kokatu kurtsorea taula-gelaxka batean, eutsi sakatuta Alt teklari, eta ondoren sakatu ezkerrerako edo eskuinerako gezia. Taularen zabalera aldatu gabe zutabearen tamaina aldatzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>, eta ondoren sakatu ezkerrerako edo eskuinerako gezia."
#: 05090201.xhp
msgctxt ""
@@ -18175,7 +18174,7 @@ msgctxt ""
"par_id3147566\n"
"help.text"
msgid "To increase the left indent of the table, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift, and then press the right arrow."
-msgstr ""
+msgstr "Taularen ezkerreko koska handitzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera </caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift, eta sakatu eskuineko gezi-tekla."
#: 05090201.xhp
msgctxt ""
@@ -18183,7 +18182,7 @@ msgctxt ""
"par_id3150759\n"
"help.text"
msgid "To resize a row, place the cursor in the row, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press the up or the down arrows."
-msgstr ""
+msgstr "Errenkada baten tamaina aldatzeko, kokatu kurtsorea errenkadan, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>, eta ondoren sakatu gorako edo beherako gezi-tekla."
#: 05090201.xhp
msgctxt ""
@@ -18191,7 +18190,7 @@ msgctxt ""
"par_id3149286\n"
"help.text"
msgid "To move the table downwards on the page, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift, and then press the down arrow."
-msgstr ""
+msgstr "Taula orrialdean beherantz mugitzeko, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift, eta sakatu beherako gezi-tekla."
#: 05090201.xhp
msgctxt ""
@@ -18207,7 +18206,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "To insert a column, place the cursor in a table cell, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Insert, release, and then press the left or the right arrow."
-msgstr ""
+msgstr "Zutabe bat txertatzeko, kokatu kurtsorea taularen gelaxkan, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> eta sakatu 'Insert', askatu, eta ondoren sakatu ezkerrerako edo eskuinerako gezia."
#: 05090201.xhp
msgctxt ""
@@ -18215,7 +18214,7 @@ msgctxt ""
"par_id3152940\n"
"help.text"
msgid "To delete a column, place the cursor in the column that you want to delete, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Delete, release, and then press the left or the right arrow."
-msgstr ""
+msgstr "Zutabe bat ezabatzeko, kokatu kurtsorea ezabatu nahi duzun zutabean, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> eta sakatu 'Delete', askatu, eta ondoren sakatu ezkerrerako edo eskuinerako gezia."
#: 05090201.xhp
msgctxt ""
@@ -18223,7 +18222,7 @@ msgctxt ""
"par_id3154105\n"
"help.text"
msgid "To insert a row, place the cursor in a table cell, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Insert, release, and then press the up or the down arrow."
-msgstr ""
+msgstr "Errenkada bat txertatzeko, kokatu kurtsorea taularen gelaxkan, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> eta sakatu 'Insert', askatu, eta ondoren sakatu gorako edo beherako gezia."
#: 05090201.xhp
msgctxt ""
@@ -18231,7 +18230,7 @@ msgctxt ""
"par_id3153531\n"
"help.text"
msgid "To delete a row, place the cursor in the row that you want to delete, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Delete, release, and then press the up or the down arrow."
-msgstr ""
+msgstr "Errenkada bat ezabatzeko, kokatu kurtsorea ezabatu nahi duzun errenkadan, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Aukera</caseinline><defaultinline>Alt</defaultinline></switchinline> eta sakatu 'Delete', askatu, eta ondoren sakatu gorako edo beherako gezia."
#: 05090201.xhp
msgctxt ""
@@ -21342,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitulu-numerazioa"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitulu-numerazioa"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Kapitulu-numerazioa paragrafo-estilo bati lotuta dago. Lehenespenez, \"Izenburua\" paragrafo-estiloak (1-10) dagozkien kapitulu-zenbakien mailei (1-10) esleitzen zaizkie. Nahi izanez gero, paragrafo-estilo ezberdinak eslei diezazkiokezu kapitulu-zenbakiaren mailari."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Izenburu zenbakituak nahi badituzu, erabili <emph>Tresnak – Kapitulu-zenbakitzea</emph> menu-komandoa paragrafo-estilo bati zenbakitzea esleitzeko. Ez erabili Formatua tresna-barrako 'Zenbakitzea' ikonoa."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Kapitulu-zenbakien bistaratzea nabarmentzeko, aukeratu <emph>Ikusi -</emph><emph>Eremu-itzaldurak</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Kapitulu-zenbakien formatua gorde edo kargatzen du. Gordetako kapitulu-zenbakien formatua testu-dokumentu guztientzat egoten da erabilgarri.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Formatua</emph> botoia kapitulu-numerazioarentzat bakarrik dago erabilgarri. Zenbaki edo buletdun zerrenda-estiloentzat, aldatu paragrafoen numerazio-estiloa."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Elkarrizketa-koadroa bat irekitzen du, eta hor hautatutako kapitulu-mailaren uneko ezarpenak gorde ditzakezu. Ezarpen horiek beste dokumentu batetik karga ditzakezu.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Egin klik aldatu nahi duzun kapitulu-mailan, eta zehaztu mailarentzako numerazio-aukerak.</ahelp> Numerazio-aukerak maila guztiei aplikatzeko (paragrafo-estiloari izan ezik), sakatu \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Aukeratu hautatutako kapitulu-mailari esleitu nahi diozun paragrafo-estiloa.</ahelp> \"Bat ere ez\" hautatzen baduzu, ez da definituko hautatutako kapitulu-maila."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Helbide-bloke berria"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Helbide-bloke berria"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Helbide-elementuak"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arrastatu helbide-elementua azpiko eremura"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index a1e8e77f47a..d5e275d8afb 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-06-06 16:45+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496767529.000000\n"
#: anchor_object.xhp
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Izenburuak eta azpiko testua dokumentuan gora eta behera eraman ditzakezu nabigatzailearen bidez. Izenburu-mailak igo eta jaitsi ere egin ditzakezu. Eginbide hori erabiltzeko, aurrez definitutako izenburuen paragrafo-estilo bat eman dokumentuko izenburuei. Izenburuentzako paragrafo-estilo pertsonalizatua erabiltzeko, aukeratu <emph>Tresnak - Kapitulu-numerazioa</emph>, hautatu estilo bat <emph>Paragrafo-estiloak</emph> koadroan eta egin klik bikoitza <emph>Mailak</emph> zerrendako zenbaki batean."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitulu-numerazioa"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>eskemak;zenbakitzea</bookmark_value> <bookmark_value>ezabatzea;izenburu-zenbakiak</bookmark_value> <bookmark_value>kapitulu-zenbakitzea</bookmark_value> <bookmark_value>izenburuak; zenbakitzea/paragrafo-estiloak</bookmark_value> <bookmark_value>zenbakitzea;izenburuak</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Kapitulu-numerazioa</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Izenburu-hierarkia aldatu edo paragrafo-estilo pertsonalizatu bati hierarkian beste maila bat eslei diezaiokezu. Izenburuaren paragrafo-estiloei kapitulu- eta sekzio-numerazioa ere eslei diezaiekezu. Lehenespenez, \"1. izenburua\" paragrafo-estiloa kapitulu-hierarkiaren goian dago."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Kapitulu-zenbakitze automatikoa izenburu-paragrafotik kentzeko"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Goiburukoan edo orri-oinean kapituluari buruzko informazioa txertatu aurretik, kapitulu-tituluentzat erabili nahi duzun paragrafo-estiloaren kapitulu-numerazioaren aukerak ezarri behar dituzu."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Aukeratu <emph>Tresnak - Kapitulu-numerazioa</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indizeak; sarrerak definitzea</bookmark_value> <bookmark_value>aurkibideak; sarrerak definitzea</bookmark_value> <bookmark_value>sarrerak; indizeetan/aurkibideetan definitzea</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Indize sarrera</emph>, eta egin ekintza hauetako bat:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Aukeratu <emph>Tresnak - Kapitulu-numerazioa</emph> eta egin klik <emph>Numerazioa</emph> fitxan."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>zenbakitzea; kentzea/etetea</bookmark_value> <bookmark_value>buletdun zerrendak; etetea</bookmark_value> <bookmark_value>zerrendak;zenbakitzea kentzea/etetea</bookmark_value> <bookmark_value>ezabatzea;zerrendetako zenbakiak</bookmark_value> <bookmark_value>zerrenda zenbakituak etetea</bookmark_value> <bookmark_value>aldatzea;hasierako zenbakiak zerrendetan</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Izenburu zenbakituak nahi badituzu, erabili <emph>Tresnak – Kapitulu-zenbakitzea</emph> menu-komandoa paragrafo-estilo bati zenbakitzea esleitzeko. Ez erabili Formatua tresna-barrako 'Zenbakitzea' ikonoa."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po
index a53a08c917f..854ee2f2e6a 100644
--- a/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-24 09:57+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-21 15:28+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482573477.000000\n"
+"X-POOTLE-MTIME: 1498058936.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"OOO_CONTROL_275\n"
"LngText.text"
msgid "[ProductName] can be set as the default application to open Microsoft Office file types. This means, for instance, that if you double click on one of these files, [ProductName] will open it, not the program that opens it now."
-msgstr "Microsoft Office-ren fitxategi motak irekitzeko aplikazio lehenetsia bezala ezar daiteke [ProductName]. Adibidez, fitxategi hauetariko batean klik eginez gero, [ProductName] aplikazioak irekiko du, ez orain arte irekitzen zuen aplikazioak."
+msgstr "Microsoft Office- aplikazioen fitxategi motak irekitzeko aplikazio lehenetsi bezala ezar daiteke [ProductName]. Adibidez, fitxategi hauetako batean klik eginez gero, [ProductName] aplikazioak irekiko du, ez orain arte irekitzen zuen aplikazioak."
#: Control.ulf
msgctxt ""
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office.po b/source/eu/officecfg/registry/data/org/openoffice/Office.po
index 0a1e903e3c5..8c3587f9f4c 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/eu/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: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-06-04 10:06+0000\n"
+"PO-Revision-Date: 2017-06-13 10:08+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496570781.000000\n"
+"X-POOTLE-MTIME: 1497348492.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Business"
-msgstr "Business"
+msgstr "Negozioa"
#: TableWizard.xcu
msgctxt ""
@@ -6431,7 +6431,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Purpose"
-msgstr "Helburua"
+msgstr "Xedea"
#: TableWizard.xcu
msgctxt ""
@@ -6440,7 +6440,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Purpose"
-msgstr "Helburua"
+msgstr "Xedea"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
index b54823f685d..af7304f4238 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 06:28+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 05:51+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496730487.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498024290.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Aukeratu gaiak"
+msgid "Spreadsheet Theme"
+msgstr "Kalkulu-orriaren gaia"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Txertatu..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Lehentsia"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "1. azentua"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "2. azentua"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "3. azentua"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "1. izenburua"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "2. izenburua"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Okerra"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Errorea"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Ona"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutrala"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Abisua"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Oin-oharra"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Oharra"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Diapositiba ~maisua"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Oh~arren maisua"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7592,7 +7709,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Page"
-msgstr "Hurrengo orrialdea"
+msgstr "Orrialde berria"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7898,7 +8015,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Master D~esign..."
-msgstr "Diapositiba-dis~einu maisua..."
+msgstr "Diapositiba maisuaren dis~einua..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Oha~rrak"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "~Bisten fitxa-barra"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Prospekt~uen maisua"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Dia~positiba-panela"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -20050,7 +20167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto Spellcheck"
-msgstr "Ortografia-egiaztatzaile automatikoa"
+msgstr "Ortografia-egiaztapen automatikoa"
#: GenericCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Tresna-barren di~seinua"
#: GenericCommands.xcu
msgctxt ""
@@ -23677,7 +23794,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sorting and Grouping"
-msgstr "~Ordenatzea eta elkartzea"
+msgstr "~Ordenatzea eta taldekatzea"
#: ReportCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Propietateak..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objektua..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Izenburu-errenkadak orrialdez orrialde errepikatzen dira"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Orrialdeak ~zatitzeko errenkada"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Bulet-zerrenda"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Zenbaki-zerrenda"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Erromatar zerrenda"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/eu/reportdesign/uiconfig/dbreport/ui.po b/source/eu/reportdesign/uiconfig/dbreport/ui.po
index 2d674db54f3..0a67a8b05d8 100644
--- a/source/eu/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/eu/reportdesign/uiconfig/dbreport/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-24 16:12+0000\n"
+"PO-Revision-Date: 2017-06-12 06:41+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493050365.000000\n"
+"X-POOTLE-MTIME: 1497249683.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sorting and Grouping..."
-msgstr "Ordenatzea eta elkartzea..."
+msgstr "Ordenatzea eta taldekatzea..."
#: navigatormenu.ui
msgctxt ""
diff --git a/source/eu/sc/source/ui/src.po b/source/eu/sc/source/ui/src.po
index 0d028e729cf..6b53c40fd86 100644
--- a/source/eu/sc/source/ui/src.po
+++ b/source/eu/sc/source/ui/src.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 12:20+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 05:51+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496751606.000000\n"
+"X-POOTLE-MTIME: 1498024309.000000\n"
#: globstr.src
msgctxt ""
@@ -900,7 +900,7 @@ msgctxt ""
"STR_UNDO_SPELLING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Spellcheck"
-msgstr "Ortografia-egiaztatzea"
+msgstr "Ortografia-egiaztapena"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Barrutia lekuz aldatu da: #1 --> #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2871,10 +2871,10 @@ msgstr "Habiaratutako matrizeak ez daude onartuta."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Testua zutabetara"
+msgstr "Testua zutabeetara"
#: globstr.src
msgctxt ""
diff --git a/source/eu/sc/uiconfig/scalc/ui.po b/source/eu/sc/uiconfig/scalc/ui.po
index d315d927170..290acf5d329 100644
--- a/source/eu/sc/uiconfig/scalc/ui.po
+++ b/source/eu/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 06:28+0000\n"
+"PO-Revision-Date: 2017-06-12 16:17+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: none\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496730496.000000\n"
+"X-POOTLE-MTIME: 1497284244.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -4943,7 +4943,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Field delimiter:"
-msgstr "E_remu-bereizlea:"
+msgstr "E_remu-mugatzailea:"
#: imoptdialog.ui
msgctxt ""
@@ -4952,7 +4952,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Text delimiter:"
-msgstr "_Testu-bereizlea:"
+msgstr "_Testu-mugatzailea:"
#: imoptdialog.ui
msgctxt ""
@@ -5942,7 +5942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr "Ortografia-egiaztatzaile automatikoa"
+msgstr "Ortografia-egiaztapen automatikoa"
#: notebookbar.ui
msgctxt ""
@@ -12152,7 +12152,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge _delimiters"
-msgstr "Bat_u bereizleak"
+msgstr "Bat_u mugatzaileak"
#: textimportcsv.ui
msgctxt ""
@@ -12206,7 +12206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Te_xt delimiter:"
-msgstr "_Testu-bereizlea:"
+msgstr "_Testu-mugatzailea:"
#: textimportcsv.ui
msgctxt ""
diff --git a/source/eu/scp2/source/ooo.po b/source/eu/scp2/source/ooo.po
index de39daa0515..36fee8c8753 100644
--- a/source/eu/scp2/source/ooo.po
+++ b/source/eu/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-31 10:48+0000\n"
+"PO-Revision-Date: 2017-06-16 06:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496227691.000000\n"
+"X-POOTLE-MTIME: 1497594483.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_GU\n"
"LngText.text"
msgid "Gujarati"
-msgstr "Gujeratiera"
+msgstr "Gujaratera"
#: module_helppack.ulf
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_GU\n"
"LngText.text"
msgid "Installs Gujarati help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Gujaratierazko laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n"
+msgstr "Gujaraterako laguntza instalatzen du %PRODUCTNAME %PRODUCTVERSION(e)n"
#: module_helppack.ulf
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_GU\n"
"LngText.text"
msgid "Gujarati"
-msgstr "Gujeratiera"
+msgstr "Gujaratera"
#: module_langpack.ulf
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_GU\n"
"LngText.text"
msgid "Installs the Gujarati user interface"
-msgstr "Gujeratierazko erabiltzaile-interfazea instalatzen du"
+msgstr "Gujaraterazko erabiltzaile-interfazea instalatzen du"
#: module_langpack.ulf
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_GU\n"
"LngText.text"
msgid "Gujarati"
-msgstr "Gujeratiera"
+msgstr "Gujaratera"
#: module_ooo.ulf
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_GU\n"
"LngText.text"
msgid "Gujarati spelling dictionary"
-msgstr "Gujeratieraren ortografia-egiaztatzailea"
+msgstr "Gujarateraren ortografia-egiaztatzailea"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/eu/sd/source/ui/app.po b/source/eu/sd/source/ui/app.po
index bef3463197e..cc20e2e0014 100644
--- a/source/eu/sd/source/ui/app.po
+++ b/source/eu/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-06-02 06:49+0000\n"
+"PO-Revision-Date: 2017-06-07 07:45+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496386164.000000\n"
+"X-POOTLE-MTIME: 1496821559.000000\n"
#: res_bmp.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"STR_SLIDE_MASTER_MODE\n"
"string.text"
msgid "Slide Master"
-msgstr "Diapositiben maisua"
+msgstr "Diapositiba maisua"
#: strings.src
msgctxt ""
diff --git a/source/eu/sd/uiconfig/simpress/ui.po b/source/eu/sd/uiconfig/simpress/ui.po
index 236f455cb3f..7230ef18968 100644
--- a/source/eu/sd/uiconfig/simpress/ui.po
+++ b/source/eu/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-06-04 18:22+0000\n"
+"PO-Revision-Date: 2017-06-18 06:24+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496600552.000000\n"
+"X-POOTLE-MTIME: 1497767087.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -2876,7 +2876,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add caption to each slide"
-msgstr "Gehitu epigrafea diapositiba bakoitzean"
+msgstr "Gehitu epigrafea diapositiba bakoitzari"
#: photoalbum.ui
msgctxt ""
diff --git a/source/eu/sfx2/source/dialog.po b/source/eu/sfx2/source/dialog.po
index f8f586b96db..47006283d1d 100644
--- a/source/eu/sfx2/source/dialog.po
+++ b/source/eu/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-25 16:02+0000\n"
+"PO-Revision-Date: 2017-06-11 17:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493136177.000000\n"
+"X-POOTLE-MTIME: 1497202621.000000\n"
#: dialog.src
msgctxt ""
@@ -596,7 +596,7 @@ msgctxt ""
"STR_SFX_UNDOCK\n"
"string.text"
msgid "Undock"
-msgstr "Askatu"
+msgstr "Desatrakatu"
#: templdlg.src
msgctxt ""
diff --git a/source/eu/sfx2/source/view.po b/source/eu/sfx2/source/view.po
index 953f0a14478..696577d3c02 100644
--- a/source/eu/sfx2/source/view.po
+++ b/source/eu/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-28 08:05+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 05:52+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495958739.000000\n"
+"X-POOTLE-MTIME: 1498024322.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "Dokumentu honek baliogabeko sinadura du."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "Sinadura baliozkoa da, baina dokumentua aldatua izan da"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/eu/starmath/source.po b/source/eu/starmath/source.po
index 0b3ae48f529..0bea2fe2096 100644
--- a/source/eu/starmath/source.po
+++ b/source/eu/starmath/source.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-16 13:11+0200\n"
+"POT-Creation-Date: 2017-06-21 20:27+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1675,7 +1675,7 @@ msgctxt ""
"RID_RE_HELP\n"
"string.text"
msgid "Real Part"
-msgstr "Parte erreala"
+msgstr "Zati erreala"
#: commands.src
msgctxt ""
@@ -1683,7 +1683,7 @@ msgctxt ""
"RID_IM_HELP\n"
"string.text"
msgid "Imaginary Part"
-msgstr "Parte irudikaria"
+msgstr "Zati irudikaria"
#: commands.src
msgctxt ""
@@ -1715,7 +1715,7 @@ msgctxt ""
"RID_WP_HELP\n"
"string.text"
msgid "Weierstrass p"
-msgstr "Weierstrass p"
+msgstr "Weierstrass-en p"
#: commands.src
msgctxt ""
diff --git a/source/eu/svtools/source/control.po b/source/eu/svtools/source/control.po
index 37442fc71e6..9525d4aa785 100644
--- a/source/eu/svtools/source/control.po
+++ b/source/eu/svtools/source/control.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-02-24 20:19+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 06:04+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1456345196.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498025059.000000\n"
#: calendar.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"STR_SVT_STYLE_LIGHT\n"
"string.text"
msgid "Light"
-msgstr "Argia"
+msgstr "Arina"
#: ctrltool.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Etzan beltza"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Liburua"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Lodi zeiharra"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Estutua"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Estutu lodia"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Estutu lodi etzana"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Estutu lodi zeiharra"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Estutu etzana"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Estutu zeiharra"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "Estra arina"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "Estra arin etzana"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Zeiharra"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Erdi lodia"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Erdi lodi etzana"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/eu/svtools/source/misc.po b/source/eu/svtools/source/misc.po
index 0cf72e9a879..c1a54c1c8f8 100644
--- a/source/eu/svtools/source/misc.po
+++ b/source/eu/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-23 08:49+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 06:04+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495529367.000000\n"
+"X-POOTLE-MTIME: 1498025043.000000\n"
#: imagemgr.src
msgctxt ""
@@ -1284,7 +1284,7 @@ msgctxt ""
"Gujarati\n"
"itemlist.text"
msgid "Gujarati"
-msgstr "Gujeratiera"
+msgstr "Gujaratera"
#: langtab.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwelera"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kitubera"
+msgid "Kituba (Congo)"
+msgstr "Kitubera (Kongo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibera"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kitubera (Kongoko Errepublika Demokratikoa)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/eu/svx/source/dialog.po b/source/eu/svx/source/dialog.po
index 849cb5d804d..0bdb041a08b 100644
--- a/source/eu/svx/source/dialog.po
+++ b/source/eu/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-22 09:24+0000\n"
+"PO-Revision-Date: 2017-06-16 06:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492853089.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497594489.000000\n"
#: SafeMode.src
msgctxt ""
@@ -4945,7 +4945,7 @@ msgctxt ""
"Gujarati\n"
"itemlist.text"
msgid "Gujarati"
-msgstr "Gujeratiera"
+msgstr "Gujaratera"
#: ucsubset.src
msgctxt ""
diff --git a/source/eu/svx/source/items.po b/source/eu/svx/source/items.po
index eb4851e36e3..3ad3313b478 100644
--- a/source/eu/svx/source/items.po
+++ b/source/eu/svx/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-22 09:25+0000\n"
+"PO-Revision-Date: 2017-06-12 16:17+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492853145.000000\n"
+"X-POOTLE-MTIME: 1497284267.000000\n"
#: svxerr.src
msgctxt ""
@@ -108,7 +108,7 @@ msgctxt ""
"Spellcheck is not available.\n"
"itemlist.text"
msgid "Spellcheck is not available."
-msgstr "Ortografia-egiaztatzea ez dago erabilgarri."
+msgstr "Ortografia-egiaztapena ez dago erabilgarri."
#: svxerr.src
msgctxt ""
diff --git a/source/eu/svx/source/tbxctrls.po b/source/eu/svx/source/tbxctrls.po
index 295004c01bf..1220c6f2b1b 100644
--- a/source/eu/svx/source/tbxctrls.po
+++ b/source/eu/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-31 10:49+0000\n"
+"PO-Revision-Date: 2017-06-17 07:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496227762.000000\n"
+"X-POOTLE-MTIME: 1497685150.000000\n"
#: colrctrl.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"RID_SVXSTR_WIREFRAME\n"
"string.text"
msgid "~Wire Frame"
-msgstr "~Hari-trama"
+msgstr "~Hari-bilbea"
#: extrusioncontrols.src
msgctxt ""
diff --git a/source/eu/svx/uiconfig/ui.po b/source/eu/svx/uiconfig/ui.po
index 525799ee8c1..5bcc31ec973 100644
--- a/source/eu/svx/uiconfig/ui.po
+++ b/source/eu/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-23 16:59+0000\n"
+"PO-Revision-Date: 2017-06-13 10:08+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495558752.000000\n"
+"X-POOTLE-MTIME: 1497348498.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Business"
-msgstr "Business"
+msgstr "Negozioa"
#: chinesedictionary.ui
msgctxt ""
@@ -6349,7 +6349,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr "Sortu Zip artxiboa erabiltzailearen profilarekin"
+msgstr "Sortu ZIP artxiboa erabiltzailearen profilarekin"
#: safemodedialog.ui
msgctxt ""
diff --git a/source/eu/sw/source/core/undo.po b/source/eu/sw/source/core/undo.po
index 5d746316288..23a9d514475 100644
--- a/source/eu/sw/source/core/undo.po
+++ b/source/eu/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-26 08:45+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 05:53+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493196315.000000\n"
+"X-POOTLE-MTIME: 1498024401.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "zutabe-jauzia"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Txertatu $1"
@@ -899,7 +899,7 @@ msgstr "Txertatu $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Ezabatu $1"
@@ -907,26 +907,66 @@ msgstr "Ezabatu $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Aldatutako atributuak"
+msgstr "Atributuak aldatu dira"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Taula aldatu egin da"
+msgstr "Taula aldatu da"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Estiloa aldatu egin da"
+msgstr "Estiloa aldatu da"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Paragrafo-formatua aldatu da"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Txertatu errenkada"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Ezabatu errenkada"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Txertatu gelaxka"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Ezabatu gelaxka"
#: undo.src
msgctxt ""
diff --git a/source/eu/sw/source/ui/app.po b/source/eu/sw/source/ui/app.po
index f370e0c22dd..4eb4afc119e 100644
--- a/source/eu/sw/source/ui/app.po
+++ b/source/eu/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-02 06:37+0000\n"
+"PO-Revision-Date: 2017-06-12 16:17+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496385459.000000\n"
+"X-POOTLE-MTIME: 1497284272.000000\n"
#: app.src
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"STR_STATSTR_SPELL\n"
"string.text"
msgid "Spellcheck..."
-msgstr "Ortografia-egiaztatzea..."
+msgstr "Ortografia-egiaztapena..."
#: app.src
msgctxt ""
diff --git a/source/eu/sw/source/uibase/docvw.po b/source/eu/sw/source/uibase/docvw.po
index df1cec14e85..e69df42c171 100644
--- a/source/eu/sw/source/uibase/docvw.po
+++ b/source/eu/sw/source/uibase/docvw.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:38+0200\n"
-"PO-Revision-Date: 2014-11-27 16:24+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 05:53+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1417105479.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498024427.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Paragrafo-estiloak aplikatuta"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Paragrafo-formatua aldatu da"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Errenkada txertatu da"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Errenkada ezabatu da"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Gelaxka txertatu da"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Gelaxka ezabatu da"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/eu/sw/source/uibase/ribbar.po b/source/eu/sw/source/uibase/ribbar.po
index 0b7e7a993bd..2a023175ce5 100644
--- a/source/eu/sw/source/uibase/ribbar.po
+++ b/source/eu/sw/source/uibase/ribbar.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-23 14:58+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 05:53+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482505138.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498024431.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formularen testua"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Testu-formula"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/eu/sw/source/uibase/uiview.po b/source/eu/sw/source/uibase/uiview.po
index 71f4bf32241..7bffe01d4c2 100644
--- a/source/eu/sw/source/uibase/uiview.po
+++ b/source/eu/sw/source/uibase/uiview.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 21:54+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 05:54+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462139680.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498024443.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Esportatu iturburua..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Esportatu iturburuaren kopia..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/eu/sw/uiconfig/swriter/ui.po b/source/eu/sw/uiconfig/swriter/ui.po
index b5c13835dd5..28613fdc6bf 100644
--- a/source/eu/sw/uiconfig/swriter/ui.po
+++ b/source/eu/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 20:49+0000\n"
+"PO-Revision-Date: 2017-06-16 06:31+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496782184.000000\n"
+"X-POOTLE-MTIME: 1497594693.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -7137,7 +7137,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Business"
-msgstr "Business"
+msgstr "Negozioa"
#: labeldialog.ui
msgctxt ""
@@ -8019,7 +8019,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fields are used to personalize form letters. The fields are placeholders for data from a data source, such as a database. The fields in the form letter must be connected to the data source."
-msgstr "Eremuak gutun-formularioak pertsonalizatzeko erabiltzen dira. Eremuak datu-iturburu bateko datuak kokatzeko leku-markak dira. Gutun-formularioko eremuek datu-iturburuari lotuta egon behar dute."
+msgstr "Eremuak gutun-formularioak pertsonalizatzeko erabiltzen dira. Eremuak datu-iturburu bateko datuak kokatzeko leku-markak dira. Gutun-inprimakiko eremuek datu-iturburuari lotuta egon behar dute."
#: mergeconnectdialog.ui
msgctxt ""
@@ -11304,7 +11304,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Body text"
-msgstr "Gorputzeko testua"
+msgstr "Gorputz-testua"
#: numparapage.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Erabili LibreOffice 4.3 bertsioaren margotze-ordena ainguratua (uneko dokumentuan)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Erabiltzaile-ezarpenak>"
#: optcompatpage.ui
msgctxt ""
@@ -18116,7 +18116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alphabetical delimiter"
-msgstr "Bereizle alfabetikoa"
+msgstr "Mugatzaile alfabetikoa"
#: tocentriespage.ui
msgctxt ""
@@ -18611,7 +18611,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Combine identical entries"
-msgstr "Konbinatu sarrera identikoak"
+msgstr "Konbinatu sarrera berdinak"
#: tocindexpage.ui
msgctxt ""
@@ -18620,7 +18620,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Combine identical entries with p or _pp"
-msgstr "Konbinatu sarrera identikoak _p edo pp-rekin"
+msgstr "Konbinatu sarrera berdinak _p edo pp-rekin"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/eu/uui/source.po b/source/eu/uui/source.po
index c98753635c9..35322adfc71 100644
--- a/source/eu/uui/source.po
+++ b/source/eu/uui/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-28 07:48+0000\n"
+"PO-Revision-Date: 2017-06-09 19:42+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495957684.000000\n"
+"X-POOTLE-MTIME: 1497037338.000000\n"
#: alreadyopen.src
msgctxt ""
@@ -778,7 +778,7 @@ msgid ""
msgstr ""
"Ezin da $(ARG1) gunearen identitatea egiaztatu.\n"
"\n"
-"Ziurtagiri hau onartu aurretik, gune honen ziurtagiria kontu argiz aztertu beharko zenuke. Prest zaude ziurtagiri hau onartzeko $(ARG1) web gunearen identifikatzeko helburuarekin?"
+"Ziurtagiri hau onartu aurretik, gune honen ziurtagiria kontu argiz aztertu beharko zenuke. Prest zaude ziurtagiri hau onartzeko $(ARG1) web gunearen identifikatzeko xedearekin?"
#: ids.src
msgctxt ""
diff --git a/source/eu/xmlsecurity/uiconfig/ui.po b/source/eu/xmlsecurity/uiconfig/ui.po
index 54a454f583a..a104bb65dca 100644
--- a/source/eu/xmlsecurity/uiconfig/ui.po
+++ b/source/eu/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 07:34+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 05:54+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492673664.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498024451.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Kendu"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Abiarazi ziurtagiri-kudeatzailea..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/fa/basctl/uiconfig/basicide/ui.po b/source/fa/basctl/uiconfig/basicide/ui.po
index 6d72ffd6198..58297bd4ed4 100644
--- a/source/fa/basctl/uiconfig/basicide/ui.po
+++ b/source/fa/basctl/uiconfig/basicide/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-02-09 07:04+0000\n"
+"PO-Revision-Date: 2017-06-20 20:16+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1455001494.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497989768.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Breakpoints..."
-msgstr ""
+msgstr "مدیریت نقاط انفصال..."
#: breakpointmenus.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Active"
-msgstr ""
+msgstr "_فعال"
#: breakpointmenus.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Properties..."
-msgstr ""
+msgstr "_ویژگی‌ها..."
#: defaultlanguage.ui
msgctxt ""
diff --git a/source/fa/desktop/source/deployment/gui.po b/source/fa/desktop/source/deployment/gui.po
index 58ebc5fd894..02f77c2aa14 100644
--- a/source/fa/desktop/source/deployment/gui.po
+++ b/source/fa/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-03-21 12:29+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467663136.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1458563384.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/fa/editeng/uiconfig/ui.po b/source/fa/editeng/uiconfig/ui.po
index 88c5447cec0..4b4003560d7 100644
--- a/source/fa/editeng/uiconfig/ui.po
+++ b/source/fa/editeng/uiconfig/ui.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-06-20 20:13+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497989609.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -20,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_gnore All"
-msgstr ""
+msgstr "_نادیده گرفتن هم‬ه"
#: spellmenu.ui
msgctxt ""
@@ -29,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_افزودن به لغت‌نامه"
#: spellmenu.ui
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_افزودن به لغت‌نامه"
#: spellmenu.ui
msgctxt ""
@@ -47,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr ""
+msgstr "غلط‌یابی املائی"
#: spellmenu.ui
msgctxt ""
@@ -56,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoCorrect _To"
-msgstr ""
+msgstr "تصحیح خودکار _به"
#: spellmenu.ui
msgctxt ""
@@ -65,4 +68,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Correct Options..."
-msgstr ""
+msgstr "گزینه‌های تصحیح _خودکار..."
diff --git a/source/fa/framework/source/classes.po b/source/fa/framework/source/classes.po
index cebffc70360..ce8c8906d8a 100644
--- a/source/fa/framework/source/classes.po
+++ b/source/fa/framework/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-18 11:02+0200\n"
-"PO-Revision-Date: 2017-04-18 11:04+0000\n"
+"PO-Revision-Date: 2017-06-20 20:14+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492513472.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497989686.000000\n"
#: resource.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_TOOLBAR_VISIBLE_BUTTONS\n"
"string.text"
msgid "Visible ~Buttons"
-msgstr ""
+msgstr "دکمه‌های ~نمایان"
#: resource.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_TOOLBAR_CUSTOMIZE_TOOLBAR\n"
"string.text"
msgid "~Customize Toolbar..."
-msgstr ""
+msgstr "~سفارشی کردن نوار ابزار..."
#: resource.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_TOOLBAR\n"
"string.text"
msgid "~Dock Toolbar"
-msgstr ""
+msgstr "~جدا کردن نوار ابزار"
#: resource.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_ALL_TOOLBARS\n"
"string.text"
msgid "Dock ~All Toolbars"
-msgstr ""
+msgstr "جدا کردن ~همهٔ نوارهای ابزار"
#: resource.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TOOLBAR_LOCK_TOOLBAR\n"
"string.text"
msgid "~Lock Toolbar Position"
-msgstr ""
+msgstr "~قفل کردن موقعیت نوار ابزار"
#: resource.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_TOOLBAR_CLOSE_TOOLBAR\n"
"string.text"
msgid "Close ~Toolbar"
-msgstr ""
+msgstr "بستن ~نوار ابزار"
#: resource.src
msgctxt ""
diff --git a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
index 4268b4ee5ff..632e54de361 100644
--- a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 15:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "انتخاب تم"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4105,6 +4105,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27104,15 +27221,6 @@ msgid "~Properties..."
msgstr "ویژگی‌ها..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/fa/sc/source/ui/src.po b/source/fa/sc/source/ui/src.po
index 53cabf7485f..fd37dd4b889 100644
--- a/source/fa/sc/source/ui/src.po
+++ b/source/fa/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:30+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "محدوده از #1 به #2 جابه‌جا شد"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "آرایه‌های تو در تو پشتیبانی نمی‌شوند."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/fa/sfx2/source/view.po b/source/fa/sfx2/source/view.po
index 06f1a0e8c10..5939191aa1e 100644
--- a/source/fa/sfx2/source/view.po
+++ b/source/fa/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:34+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494927264.000000\n"
#: view.src
@@ -238,6 +238,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/fa/svtools/source/control.po b/source/fa/svtools/source/control.po
index 72baf4cbbe0..93bfc10caf7 100644
--- a/source/fa/svtools/source/control.po
+++ b/source/fa/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 00:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,6 +293,110 @@ msgstr "مشکی ایتالیک"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/fa/svtools/source/misc.po b/source/fa/svtools/source/misc.po
index 6c810fe8be7..e1a4dc51665 100644
--- a/source/fa/svtools/source/misc.po
+++ b/source/fa/svtools/source/misc.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-11-16 07:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 20:10+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479281219.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497989414.000000\n"
#: imagemgr.src
msgctxt ""
@@ -516,7 +516,6 @@ msgid "%PRODUCTNAME Extension"
msgstr "ضمیمه %PRODUCTNAME"
#: langtab.src
-#, fuzzy
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
@@ -3198,9 +3197,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3928,6 +3927,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/fa/sw/source/core/undo.po b/source/fa/sw/source/core/undo.po
index 6f5153583d1..fdb935caa8d 100644
--- a/source/fa/sw/source/core/undo.po
+++ b/source/fa/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-16 08:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "شکست ستون"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "درج $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "حذف $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "مشخصه‌ها تغییر کردند"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "جدول تغییر کرد"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "سبک تغییر کرد"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/fa/sw/source/uibase/docvw.po b/source/fa/sw/source/uibase/docvw.po
index 44bcda01efe..7946ebd5c57 100644
--- a/source/fa/sw/source/uibase/docvw.po
+++ b/source/fa/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 21:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/fa/sw/source/uibase/ribbar.po b/source/fa/sw/source/uibase/ribbar.po
index 655bb1bfa52..4528b7ccdfc 100644
--- a/source/fa/sw/source/uibase/ribbar.po
+++ b/source/fa/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-16 09:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/fa/sw/source/uibase/uiview.po b/source/fa/sw/source/uibase/uiview.po
index 97596fc31d2..2173f9a84a4 100644
--- a/source/fa/sw/source/uibase/uiview.po
+++ b/source/fa/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-18 21:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/fa/xmlsecurity/uiconfig/ui.po b/source/fa/xmlsecurity/uiconfig/ui.po
index 72cb5031782..b8eca56e6c8 100644
--- a/source/fa/xmlsecurity/uiconfig/ui.po
+++ b/source/fa/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-18 11:10+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/fi/desktop/source/deployment/gui.po b/source/fi/desktop/source/deployment/gui.po
index a6972502c2c..9ba715f79a5 100644
--- a/source/fi/desktop/source/deployment/gui.po
+++ b/source/fi/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:23+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-06-23 19:16+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467663798.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1435087012.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared.po b/source/fi/helpcontent2/source/text/sbasic/shared.po
index 026fba8ef16..6eeb55592f2 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 22:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Virheiden koodit</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Tämä ajonaikainen funktio palauttaa käytettävän komponentin oletussisällön, jos se on toteutettu palveluilla XmultiServiceFactoryn kautta. Katso <item type=\"literal\">Professional UNO</item>-kappaletta <item type=\"literal\">Developer's Guide</item>-teoksesta sivustolta <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> lisätietojen saamiseksi."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/fi/helpcontent2/source/text/shared/00.po b/source/fi/helpcontent2/source/text/shared/00.po
index 4b87e3b6236..49ff48c1a81 100644
--- a/source/fi/helpcontent2/source/text/shared/00.po
+++ b/source/fi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 09:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index dfc235f3f79..440f892f7f3 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 02:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Valitaan kappaletyyli tai jäsennystaso, jota käytetään lähdeasiakirjan ja osa-asiakirjan erottamiseen.</ahelp> Oletuksena uusi asiakirja luodaan jokaisesta jäsennystasosta nro 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Valitaan Writer-asiakirjojen kirjanmerkkien vienti PDF-kirjanmerkkeinä. Kirjanmerkit luodaan kaikille jäsennetyille kappaleille (Työkalut - Jäsennysnumerointi) ja kaikille sisällysluettelon riveille, joille on määritetty hyperlinkit lähdeasiakirjassa.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index a2acab2b659..84dddd5eb0a 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter.po b/source/fi/helpcontent2/source/text/swriter.po
index 95fb166261f..7c7e188a02a 100644
--- a/source/fi/helpcontent2/source/text/swriter.po
+++ b/source/fi/helpcontent2/source/text/swriter.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 10:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Jäsennysnumerointi</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/00.po b/source/fi/helpcontent2/source/text/swriter/00.po
index 72f76488487..e45572579b0 100644
--- a/source/fi/helpcontent2/source/text/swriter/00.po
+++ b/source/fi/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 10:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Valitse <emph>Työkalut - Jäsennysnumerointi</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Valitse <emph>Työkalut - Jäsennysnumerointi - Numerointi</emph>-välilehti </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Valitse <emph>Työkalut - Rivien numerointi</emph> (ei HTML-muodolle) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/01.po b/source/fi/helpcontent2/source/text/swriter/01.po
index cd4df127eb7..c496f0f919b 100644
--- a/source/fi/helpcontent2/source/text/swriter/01.po
+++ b/source/fi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 02:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Napsautetaan <emph>1 </emph>vain ylimmän otsikkotason tarkastelemiseksi rakenneselaimen ikkunassa ja <emph>10</emph> kaikkien otsikkojen näyttämiseksi.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Jos valitaan \"Luvun numero ilman erotinta\" Luku-kentälle, erottimia, jotka on määritelty <link href=\"text/swriter/01/06060000.xhp\" name=\"Työkalut - Jäsennysnumerointi\"><emph>Työkalut - Jäsennysnumerointi</emph></link> -komennossa, ei esitetä."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Lisätään luvun numeron. Luvun numeroinnin lisäämiseksi otsikkotyyliin valitaan<emph> Työkalut - Jäsennysnumerointi</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Jäsennysnumerointi"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Jäsennysnumerointi"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Jäsennysnumerointi liittyy kappaletyyleihin. Oletuksena \"Otsikko\"-kappaletyyli (1-10) määritetään vastaavalle jäsennystasolle (1-10). Tarvittaessa voidaan määrittää toinen kappaletyyli jäsennystasolle."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Jos tarvitaan numeroidut otsikot, käytetään <emph>Työkalut - Jäsennysnumerointi</emph> -valikkokomentoa numeroinnin määrittämiseen kappaletyylille. Muotoilu-palkin Numerointi-kuvaketta ei käytetä tässä."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Jäsennysnumeroiden korostamiseksi näytöllä valitaan <emph>Näytä -</emph><emph>Kentän varjostus</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Tallennetaan tai ladataan jäsennysnumerointimuotoilu. Tallennettu jäsennysnumeron muotoilu on käytettävissä kaikille tekstiasiakirjoille.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Muotoile</emph>-painike on käytettävissä vain jäsennysnumeroinnille. Luetelmille muutetaan kappaleen numerointityyliä."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Avataan valintaikkuna, jossa voidaan tallentaa valitun jäsennystason käytössä olevat asetukset. Nämä asetukset ovat tämän jälkeen ladattavissa muihin asiakirjoihin.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Napsauta muokattavaa jäsennystasoa ja määritä sitten tason numerointiasetukset.</ahelp> Numerointivaihtoehtojen, paitsi kappaleen tyylin, käyttämiseksi kaikille tasoille napsautetaan \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Valitaan kappaletyyli, joka määrätään valitulle jäsennystasolle.</ahelp> Jos valitaan \"ei mikään\", valittua jäsennystasoa ei määritetä."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Uusi osoitelohko"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Uusi osoitelohko"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Osoitteiden kentät"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Vedä osoitekentät tähän"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index c616b379019..bbd8ce07ceb 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 02:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Käyttäjä voi siirtää rakenneselaimella otsikoita alisteisine teksteineen ylös ja alas asiakirjassa. Otsikkotasoja voidaan myös ylentää ja alentaa. Tämän piirteen käyttämiseksi otsikot muotoillaan esimääriteltyjä kappaletyylejä käyttäen. Mukautettujen kappaletyylien käyttämiseksi otsikoille valitaan <emph>Työkalut - Jäsennysnumerointi</emph>, valitaan tyyli <emph>Kappaleen tyyli </emph>-ruudusta ja kaksoisnapsautetaan sitten numeroa <emph>Taso</emph>-luettelossa."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Jäsennysnumerointi"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>jäsennys;numerointi</bookmark_value><bookmark_value>poistaminen;otsikkonumerot</bookmark_value><bookmark_value>lukunumerointi</bookmark_value><bookmark_value>otsikot; numerointi</bookmark_value><bookmark_value>numerointi;otsikot</bookmark_value><bookmark_value>otsikot; omat kappaletyylit</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Jäsennysnumerointi\">Jäsennysnumerointi</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Käyttäjä voi muokata otsikkohierarkiaa tai määrätä hierarkiatason mukautetulle kappaletyylille. Otsikkokappaletyyliin voidaan myös lisätä luvun ja osan numerointi. Oletuksena \"Otsikko 1\" -kappaletyyli on ylimmällä jäsennystasolla."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Valitse <item type=\"menuitem\">Työkalut - Jäsennysnumerointi</item> ja napsauta sitten <item type=\"menuitem\">Numerointi</item>-välilehteä."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Automaattisen jäsennysnumeroinnin poistaminen ingressistä"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Valitse <item type=\"menuitem\">Työkalut - Jäsennysnumerointi</item> ja napsauta sitten <item type=\"menuitem\">Numerointi</item>-välilehteä."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Ennen kuin luvun tietoja voi lisätä ylä- tai alatunnisteeseen, pitää kappaletyylin jäsennysnumerointi asetella luvun otsikoille."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Valitse <emph>Työkalut - Jäsennysnumerointi</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>hakemistot; merkintöjen määrääminen</bookmark_value><bookmark_value>sisällysluettelot; merkintöjen määrääminen</bookmark_value><bookmark_value>merkinnät; määrääminen hakemistoissa/sisällysluetteloissa</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Valitse <emph>Lisää - Hakemistot ja luettelot - Merkintä</emph> ja tee jokin seuraavista:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Valitse <emph>Työkalut - Jäsennysnumerointi</emph> ja napsauta <emph>Numerointi</emph>-välilehteä."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Jos halutaan käyttää erilaista kappaletyyliä sisällysluettelon merkintänä, merkitään <item type=\"menuitem\">Lisätyylit</item>-valintaruutu <item type=\"menuitem\">Luo</item>-alueella ja napsautetaan sitten valintaruudun viereistä (<item type=\"menuitem\">...</item>) -painiketta. <item type=\"menuitem\">Määritä tyylit</item> -valintaikkunassa napsautetaan tyyliä luettelossa ja sitten napsautetaan <item type=\"menuitem\">>> </item>tai <item type=\"menuitem\"><<</item> -painiketta tyylin jäsennystason määrittämiseksi."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numerointi; poisto/keskeyttäminen</bookmark_value><bookmark_value>luetelmat; keskeyttäminen</bookmark_value><bookmark_value>luettelot;numeroinnin poisto/keskeyttäminen </bookmark_value><bookmark_value>poistaminen;numero luettelosta</bookmark_value><bookmark_value>keskeyttäminen, numeroidut luettelot</bookmark_value><bookmark_value>muuttaminen;luettelon aloitusnumero</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Jos tarvitaan numeroidut otsikot, käytetään <emph>Työkalut - Jäsennysnumerointi</emph> -valikkokomentoa numeroinnin määrittämiseen kappaletyylille. Muotoilu-palkin Numerointi-kuvaketta ei käytetä tässä."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
index 1b20b6db4e0..03c5d0f7f2e 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-08 09:37+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Valitse teemat"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Lisää..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "Ominaisuudet..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Objekti..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/fi/sc/source/ui/src.po b/source/fi/sc/source/ui/src.po
index 8e3bd269901..87d105fcb88 100644
--- a/source/fi/sc/source/ui/src.po
+++ b/source/fi/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-10 17:47+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -2700,7 +2700,7 @@ msgstr "Alue siirretty kohteesta #1 kohteeseen #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2865,7 +2865,7 @@ msgstr "Sisäkkäisiä taulukoita ei tueta."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/fi/sfx2/source/view.po b/source/fi/sfx2/source/view.po
index 1a1c52b986a..d8826fdefa9 100644
--- a/source/fi/sfx2/source/view.po
+++ b/source/fi/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-12 17:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/fi/svtools/source/control.po b/source/fi/svtools/source/control.po
index 6151652dc7b..a71227e1a21 100644
--- a/source/fi/svtools/source/control.po
+++ b/source/fi/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-29 06:42+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -291,6 +291,110 @@ msgstr "Musta kursivoitu"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/fi/svtools/source/misc.po b/source/fi/svtools/source/misc.po
index dbd13088ede..d58d9f1e0f1 100644
--- a/source/fi/svtools/source/misc.po
+++ b/source/fi/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-29 17:22+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/fi/sw/source/core/undo.po b/source/fi/sw/source/core/undo.po
index 316410b8423..bfa7bab008b 100644
--- a/source/fi/sw/source/core/undo.po
+++ b/source/fi/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-19 13:14+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -891,42 +891,82 @@ msgstr "palstanvaihto"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Lisää $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Poista $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Ominaisuudet muuttuneet"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Taulukko muuttunut"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Tyyli muuttunut"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/fi/sw/source/uibase/docvw.po b/source/fi/sw/source/uibase/docvw.po
index d1d8b375f83..140616ddbdf 100644
--- a/source/fi/sw/source/uibase/docvw.po
+++ b/source/fi/sw/source/uibase/docvw.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: 2017-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 22:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -59,6 +59,46 @@ msgstr "Käytetyt kappaletyylit"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/fi/sw/source/uibase/ribbar.po b/source/fi/sw/source/uibase/ribbar.po
index d1f594b9e80..bd6a545ffc2 100644
--- a/source/fi/sw/source/uibase/ribbar.po
+++ b/source/fi/sw/source/uibase/ribbar.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-19 13:16+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Kaavan teksti"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/fi/sw/source/uibase/uiview.po b/source/fi/sw/source/uibase/uiview.po
index be0fa936173..4834b0c4578 100644
--- a/source/fi/sw/source/uibase/uiview.po
+++ b/source/fi/sw/source/uibase/uiview.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 02:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Vie lähde..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/fi/xmlsecurity/uiconfig/ui.po b/source/fi/xmlsecurity/uiconfig/ui.po
index 97e8e16e82e..7ddfd7bbe0f 100644
--- a/source/fi/xmlsecurity/uiconfig/ui.po
+++ b/source/fi/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-31 10:09+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -172,6 +172,15 @@ msgstr "Poista"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/fr/desktop/source/deployment/gui.po b/source/fr/desktop/source/deployment/gui.po
index 5086c53d385..9762219ef2e 100644
--- a/source/fr/desktop/source/deployment/gui.po
+++ b/source/fr/desktop/source/deployment/gui.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:35+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 04:38+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467664530.000000\n"
+"X-POOTLE-MTIME: 1498019934.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -176,6 +176,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "L'installation des extensions est actuellement désactivée. Veuillez consulter votre administrateur système pour plus d'information."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -190,6 +198,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "La désinstallation des extensions est actuellement désactivée. Veuillez consulter votre administrateur système pour plus d'information."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/fr/filter/source/config/fragments/types.po b/source/fr/filter/source/config/fragments/types.po
index e597fbb0a71..e6b5aa5c07c 100644
--- a/source/fr/filter/source/config/fragments/types.po
+++ b/source/fr/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 16:17+0000\n"
+"PO-Revision-Date: 2017-06-07 20:40+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1492445871.000000\n"
+"X-POOTLE-MTIME: 1496868006.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared.po b/source/fr/helpcontent2/source/text/sbasic/shared.po
index 40f1750b022..3f61e689142 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fr/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 12:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 10:27+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496751643.000000\n"
+"X-POOTLE-MTIME: 1497954434.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -484,10 +484,42 @@ msgstr "Cette fonction est activée avec l'instruction <item type=\"literal\">Op
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Codes d'erreur</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -6647,7 +6679,7 @@ msgctxt ""
"par_id3153837\n"
"help.text"
msgid "Add the Question icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Requête d'avertissement à la boîte de dialogue."
#: 03010101.xhp
msgctxt ""
@@ -6655,7 +6687,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "Add the Exclamation Point icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Message d'avertissement à la boîte de dialogue."
#: 03010101.xhp
msgctxt ""
@@ -6663,7 +6695,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Message d'information à la boîte de dialogue."
#: 03010101.xhp
msgctxt ""
@@ -6671,7 +6703,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "First button in the dialog as default button."
-msgstr ""
+msgstr "Désigner le premier bouton de la boîte de dialogue comme bouton par défaut."
#: 03010101.xhp
msgctxt ""
@@ -6679,7 +6711,7 @@ msgctxt ""
"par_id3153765\n"
"help.text"
msgid "Second button in the dialog as default button."
-msgstr ""
+msgstr "Désigner le deuxième bouton de la boîte de dialogue comme bouton par défaut."
#: 03010101.xhp
msgctxt ""
@@ -6687,7 +6719,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "Third button in the dialog as default button."
-msgstr ""
+msgstr "Désigner le troisième bouton de la boîte de dialogue comme bouton par défaut."
#: 03010101.xhp
msgctxt ""
@@ -6831,7 +6863,7 @@ msgctxt ""
"par_id051220170241588881\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante nommée"
#: 03010102.xhp
msgctxt ""
@@ -6839,7 +6871,7 @@ msgctxt ""
"par_id051220170241585541\n"
"help.text"
msgid "Integer value"
-msgstr ""
+msgstr "Valeur entière"
#: 03010102.xhp
msgctxt ""
@@ -6847,7 +6879,7 @@ msgctxt ""
"par_id051220170241585124\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Définition"
#: 03010102.xhp
msgctxt ""
@@ -6855,7 +6887,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "Display OK button only."
-msgstr ""
+msgstr "Afficher uniquement le bouton OK."
#: 03010102.xhp
msgctxt ""
@@ -6863,7 +6895,7 @@ msgctxt ""
"par_id3145646\n"
"help.text"
msgid "Display OK and Cancel buttons."
-msgstr ""
+msgstr "Afficher les boutons OK et Annuler."
#: 03010102.xhp
msgctxt ""
@@ -6871,7 +6903,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "Display Abort, Retry, and Ignore buttons."
-msgstr ""
+msgstr "Afficher les boutons Abandonner, Réessayer et Ignorer."
#: 03010102.xhp
msgctxt ""
@@ -6879,7 +6911,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Display Yes, No, and Cancel buttons."
-msgstr ""
+msgstr "Afficher les boutons Oui, Non et Annuler."
#: 03010102.xhp
msgctxt ""
@@ -6887,7 +6919,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Display Yes and No buttons."
-msgstr ""
+msgstr "Afficher les boutons Oui et Non."
#: 03010102.xhp
msgctxt ""
@@ -6895,7 +6927,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Display Retry and Cancel buttons."
-msgstr ""
+msgstr "Afficher les boutons Réessayer et Annuler."
#: 03010102.xhp
msgctxt ""
@@ -6903,7 +6935,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "Add the Stop icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Message critique à la boîte de dialogue."
#: 03010102.xhp
msgctxt ""
@@ -6911,7 +6943,7 @@ msgctxt ""
"par_id3153837\n"
"help.text"
msgid "Add the Question icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Requête d'avertissement à la boîte de dialogue."
#: 03010102.xhp
msgctxt ""
@@ -6919,7 +6951,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "Add the Exclamation Point icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Message d'avertissement à la boîte de dialogue."
#: 03010102.xhp
msgctxt ""
@@ -6927,7 +6959,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr ""
+msgstr "Ajouter l'icône Message d'information à la boîte de dialogue."
#: 03010102.xhp
msgctxt ""
@@ -6935,7 +6967,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "First button in the dialog as default button."
-msgstr ""
+msgstr "Désigner le premier bouton de la boîte de dialogue comme bouton par défaut."
#: 03010102.xhp
msgctxt ""
@@ -6943,7 +6975,7 @@ msgctxt ""
"par_id3153765\n"
"help.text"
msgid "Second button in the dialog as default button."
-msgstr ""
+msgstr "Désigner le deuxième bouton de la boîte de dialogue comme bouton par défaut."
#: 03010102.xhp
msgctxt ""
@@ -6951,7 +6983,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "Third button in the dialog as default button."
-msgstr ""
+msgstr "Désigner le troisième bouton de la boîte de dialogue comme bouton par défaut."
#: 03010102.xhp
msgctxt ""
@@ -6967,7 +6999,7 @@ msgctxt ""
"par_id051220170330379805\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante nommée"
#: 03010102.xhp
msgctxt ""
@@ -6975,7 +7007,7 @@ msgctxt ""
"par_id051220170330387072\n"
"help.text"
msgid "Integer value"
-msgstr ""
+msgstr "Valeur entière"
#: 03010102.xhp
msgctxt ""
@@ -6983,7 +7015,7 @@ msgctxt ""
"par_id051220170330387973\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Définition"
#: 03010102.xhp
msgctxt ""
@@ -6991,7 +7023,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "OK"
-msgstr ""
+msgstr "OK"
#: 03010102.xhp
msgctxt ""
@@ -6999,7 +7031,7 @@ msgctxt ""
"par_id3149567\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Annuler"
#: 03010102.xhp
msgctxt ""
@@ -7007,7 +7039,7 @@ msgctxt ""
"par_id4056825\n"
"help.text"
msgid "Abort"
-msgstr ""
+msgstr "Abandon"
#: 03010102.xhp
msgctxt ""
@@ -7015,7 +7047,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Retry"
-msgstr ""
+msgstr "Réessayer"
#: 03010102.xhp
msgctxt ""
@@ -7023,7 +7055,7 @@ msgctxt ""
"par_id3146918\n"
"help.text"
msgid "Ignore"
-msgstr ""
+msgstr "Ignorer"
#: 03010102.xhp
msgctxt ""
@@ -7031,7 +7063,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Oui"
#: 03010102.xhp
msgctxt ""
@@ -7039,7 +7071,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#: 03010102.xhp
msgctxt ""
@@ -7079,7 +7111,7 @@ msgctxt ""
"par_id051220170242005479\n"
"help.text"
msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Dialog title\")"
-msgstr ""
+msgstr "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Titre de la boîte de dialogue\")"
#: 03010103.xhp
msgctxt ""
@@ -10871,7 +10903,7 @@ msgctxt ""
"par_id051220170522586822\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante nommée"
#: 03020409.xhp
msgctxt ""
@@ -10879,7 +10911,7 @@ msgctxt ""
"par_id051220170522583099\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valeur"
#: 03020409.xhp
msgctxt ""
@@ -10887,7 +10919,7 @@ msgctxt ""
"par_id051220170522583818\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Définition"
#: 03020409.xhp
msgctxt ""
@@ -10895,7 +10927,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "Normal files."
-msgstr ""
+msgstr "Fichiers normaux."
#: 03020409.xhp
msgctxt ""
@@ -10903,7 +10935,7 @@ msgctxt ""
"par_id3147434\n"
"help.text"
msgid "Read-only files."
-msgstr ""
+msgstr "Fichiers en lecture seule."
#: 03020409.xhp
msgctxt ""
@@ -10911,7 +10943,7 @@ msgctxt ""
"par_id051220170546544550\n"
"help.text"
msgid "Hidden file"
-msgstr ""
+msgstr "Fichier caché"
#: 03020409.xhp
msgctxt ""
@@ -10919,7 +10951,7 @@ msgctxt ""
"par_id051220170546546496\n"
"help.text"
msgid "System file"
-msgstr ""
+msgstr "Fichier système"
#: 03020409.xhp
msgctxt ""
@@ -10927,7 +10959,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "Returns the name of the volume"
-msgstr ""
+msgstr "Renvoie le nom du volume"
#: 03020409.xhp
msgctxt ""
@@ -10935,7 +10967,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "Returns the name of the directory only."
-msgstr ""
+msgstr "Renvoie le nom du répertoire uniquement."
#: 03020409.xhp
msgctxt ""
@@ -10943,7 +10975,7 @@ msgctxt ""
"par_id3153953\n"
"help.text"
msgid "File was changed since last backup (Archive bit)."
-msgstr ""
+msgstr "Fichier modifié depuis la dernière sauvegarde (attribut d'archivage)."
#: 03020409.xhp
msgctxt ""
@@ -11495,7 +11527,7 @@ msgctxt ""
"par_id051220170522586822\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante nommée"
#: 03020414.xhp
msgctxt ""
@@ -11503,7 +11535,7 @@ msgctxt ""
"par_id051220170522583099\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valeur"
#: 03020414.xhp
msgctxt ""
@@ -11511,7 +11543,7 @@ msgctxt ""
"par_id051220170522583818\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Définition"
#: 03020414.xhp
msgctxt ""
@@ -11519,7 +11551,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "Normal files."
-msgstr ""
+msgstr "Fichiers normaux."
#: 03020414.xhp
msgctxt ""
@@ -11527,7 +11559,7 @@ msgctxt ""
"par_id3147434\n"
"help.text"
msgid "Read-only files."
-msgstr ""
+msgstr "Fichiers en lecture seule."
#: 03020414.xhp
msgctxt ""
@@ -11535,7 +11567,7 @@ msgctxt ""
"par_id051220170546544550\n"
"help.text"
msgid "Hidden file"
-msgstr ""
+msgstr "Fichier caché"
#: 03020414.xhp
msgctxt ""
@@ -12503,7 +12535,7 @@ msgctxt ""
"par_id3151097\n"
"help.text"
msgid "Returns the date in ISO format without separators (YYYYMMDD) from a serial date number that is generated by the DateSerial or the DateValue or the CDateFromIso function."
-msgstr ""
+msgstr "Renvoie la date au format ISO sans séparateurs (AAAAMMJJ) à partir d'un numéro interne de date généré par l'une des fonctions DateSerial ou DateValue ou CDateFromIso."
#: 03030107.xhp
msgctxt ""
@@ -12511,7 +12543,7 @@ msgctxt ""
"par_id3151098\n"
"help.text"
msgid "The year part consists of at least four digits, with leading zeros if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string returned can be in the range \"-327680101\" to \"327671231\"."
-msgstr ""
+msgstr "La partie pour l'année consiste en au moins 4 chiffres avec des zéros à gauche pour compléter si la valeur absolue est inférieure à 1000, elle peut être négative avec un signe moins si la date représente une année avant l'ère commune (AEC) et elle peut avoir plus de 4 chiffres si la valeur absolue est supérieure à 9999. La chaîne de caractères mise en forme peut être dans la fourchette \"-327680101\" à \"327671231\"."
#: 03030107.xhp
msgctxt ""
@@ -12519,7 +12551,7 @@ msgctxt ""
"par_id3151099\n"
"help.text"
msgid "Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4"
-msgstr ""
+msgstr "Les années inférieures à 100 et supérieures à 9999 sont prises en charge à partir de %PRODUCTNAME 5.4"
#: 03030107.xhp
msgctxt ""
@@ -12615,7 +12647,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "Returns the internal date number from a string that contains a date in ISO format (YYYYMMDD or YYYY-MM-DD)."
-msgstr ""
+msgstr "Renvoie le numéro de la date interne à partir d'une chaîne de caractères contenant une date au format ISO (AAAAMMJJ ou AAAA-MM-JJ)."
#: 03030108.xhp
msgctxt ""
@@ -12623,7 +12655,7 @@ msgctxt ""
"par_id3148551\n"
"help.text"
msgid "The year part must consist of either two (supported only in YYMMDD format without separators for compatibility) or at least four digits. With four digits leading zeros must be given if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string can be in the range \"-327680101\" to \"327671231\", or \"-32768-01-01\" to \"32767-12-31\"."
-msgstr ""
+msgstr "La partie pour l'année doit consister soit en 2 chiffres (pris en charge uniquement dans le format AAMMJJ sans séparateur pour des raisons de compatibilité), soit en au moins 4 chiffres. Avec 4 chiffres, il faut compléter avec des zéros si la valeur absolue est inférieure à 1000, le nombre peut être négatif avec un signe moins si la date passée représente une année avant l'ère commune (AEC) et il peut avoir plus de 4 chiffres si la valeur absolue est supérieure à 9999. La chaîne de caractères mise en forme peut être dans la fourchette \"-327680101\" à \"327671231\", ou \"-32768-01-01\" à \"32767-12-31\"."
#: 03030108.xhp
msgctxt ""
@@ -12631,7 +12663,7 @@ msgctxt ""
"par_id3148552\n"
"help.text"
msgid "An invalid date results in an error. Year 0 is not accepted, the last day BCE is -0001-12-31 and the next day CE is 0001-01-01. Dates before 1582-10-15 are in the proleptic Gregorian calendar."
-msgstr ""
+msgstr "Une date invalide provoque une erreur. L'année 0 n'est pas acceptée, le dernier jour AEC est -0001-12-31 et le jour suivant EC est 0001-01-01. Les dates avant 1582-10-15 sont définies selon le calendrier grégorien proleptique."
#: 03030108.xhp
msgctxt ""
@@ -12639,7 +12671,7 @@ msgctxt ""
"par_id3148553\n"
"help.text"
msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
-msgstr ""
+msgstr "Lors de la conversion d'un numéro interne de date en une chaîne de caractères imprimable, par exemple pour la commande Print ou MsgBox, le calendrier par défaut de la locale est utilisé et à la date de transition du 1582-10-15 il peut basculer sur le calendrier julien ce qui peut résulter en un résultat différent du celui attendu. Utilisez la <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">fonction CDateTIso [Runtime]</link> pour convertir une tel numéro interne de date en une une chaîne de caractères selon le calendrier grégorien proleptique."
#: 03030108.xhp
msgctxt ""
@@ -12647,7 +12679,7 @@ msgctxt ""
"par_id3148554\n"
"help.text"
msgid "The YYYY-MM-DD format with separators is supported since %PRODUCTNAME 5.3.4. Years less than 100 or greater than 9999 are accepted since %PRODUCTNAME 5.4 if not in VBA compatibility mode."
-msgstr ""
+msgstr "Le format avec séparateurs AAAA-MM-JJ est prise en charge depuis %PRODUCTNAME 5.3.4. Les années inférieures à 100 ou supérieures à 9999 sont acceptées depuis %PRODUCTNAME 5.4 sauf dans le mode de compatibilité VBA."
#: 03030108.xhp
msgctxt ""
@@ -12687,7 +12719,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<emph>String:</emph> A string that contains a date in ISO format."
-msgstr ""
+msgstr "<emph>String :</emph> Une chaîne de caractères contenant une date au format ISO."
#: 03030108.xhp
msgctxt ""
@@ -12703,7 +12735,7 @@ msgctxt ""
"par_id3146921\n"
"help.text"
msgid "return both 12/31/2002 in the date format of your system"
-msgstr ""
+msgstr "les deux renvoient 31/12/2002 au format de date du système"
#: 03030110.xhp
msgctxt ""
@@ -15015,7 +15047,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic Constants"
-msgstr ""
+msgstr "Constantes Basic"
#: 03040000.xhp
msgctxt ""
@@ -15023,7 +15055,7 @@ msgctxt ""
"bm_id051720170831387233\n"
"help.text"
msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pi;constante Basic</bookmark_value> <bookmark_value>Null;constante Basic</bookmark_value> <bookmark_value>Empty;constante Basic</bookmark_value> <bookmark_value>Nothing;constante Basic</bookmark_value> <bookmark_value>constante Basic;Nothing</bookmark_value> <bookmark_value>constante Basic;Null</bookmark_value> <bookmark_value>constante Basic;Empty</bookmark_value> <bookmark_value>constante Basic;Pi</bookmark_value> <bookmark_value>constante Basic;False</bookmark_value> <bookmark_value>constante Basic;True</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15031,7 +15063,7 @@ msgctxt ""
"hd_id051620171022255424\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03040000.xhp\">Basic Constants</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03040000.xhp\">Constantes Basic</link>"
#: 03040000.xhp
msgctxt ""
@@ -15039,7 +15071,7 @@ msgctxt ""
"par_id051620171022384640\n"
"help.text"
msgid "<ahelp hid=\".\">Constants used in Basic programs</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Constantes utilisées dans les programmes Basic</ahelp>"
#: 03040000.xhp
msgctxt ""
@@ -15047,7 +15079,7 @@ msgctxt ""
"par_id051620171022382581\n"
"help.text"
msgid "Boolean constants"
-msgstr ""
+msgstr "Constantes booléennes"
#: 03040000.xhp
msgctxt ""
@@ -15055,7 +15087,7 @@ msgctxt ""
"par_id051620171114565335\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: 03040000.xhp
msgctxt ""
@@ -15063,7 +15095,7 @@ msgctxt ""
"par_id051620171114565484\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 03040000.xhp
msgctxt ""
@@ -15071,7 +15103,7 @@ msgctxt ""
"par_id051620171114563271\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valeur"
#: 03040000.xhp
msgctxt ""
@@ -15079,7 +15111,7 @@ msgctxt ""
"hd_id051620171114566623\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemple"
#: 03040000.xhp
msgctxt ""
@@ -15087,7 +15119,7 @@ msgctxt ""
"hd_id051620171114573549\n"
"help.text"
msgid "Mathematical constant"
-msgstr ""
+msgstr "Constante mathématique"
#: 03040000.xhp
msgctxt ""
@@ -15095,7 +15127,7 @@ msgctxt ""
"par_id051620171114576150\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: 03040000.xhp
msgctxt ""
@@ -15103,7 +15135,7 @@ msgctxt ""
"par_id051620171114575122\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 03040000.xhp
msgctxt ""
@@ -15111,7 +15143,7 @@ msgctxt ""
"par_id051620171114574987\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valeur"
#: 03040000.xhp
msgctxt ""
@@ -15119,7 +15151,7 @@ msgctxt ""
"hd_id051620171114571721\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemple"
#: 03040000.xhp
msgctxt ""
@@ -15127,7 +15159,7 @@ msgctxt ""
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
-msgstr ""
+msgstr "Constantes objet"
#: 03040000.xhp
msgctxt ""
@@ -15135,7 +15167,7 @@ msgctxt ""
"par_id051620171114576921\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: 03040000.xhp
msgctxt ""
@@ -15143,7 +15175,7 @@ msgctxt ""
"par_id051620171114578188\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 03040000.xhp
msgctxt ""
@@ -15151,7 +15183,7 @@ msgctxt ""
"par_id051720170824099845\n"
"help.text"
msgid "Usage"
-msgstr ""
+msgstr "Utilisation"
#: 03040000.xhp
msgctxt ""
@@ -15159,7 +15191,7 @@ msgctxt ""
"par_id05172017082409622\n"
"help.text"
msgid "The <emph>Empty</emph> value indicates that the variable is not initialized."
-msgstr ""
+msgstr "La valeur <emph>Empty</emph> indique que la variable n'est pas initialisée."
#: 03040000.xhp
msgctxt ""
@@ -15167,7 +15199,7 @@ msgctxt ""
"par_id051720170824093395\n"
"help.text"
msgid "Indicates that the variable does not contain data."
-msgstr ""
+msgstr "Indique que la variable ne contient aucune donnée."
#: 03040000.xhp
msgctxt ""
@@ -15175,7 +15207,7 @@ msgctxt ""
"par_id051720170824097935\n"
"help.text"
msgid "Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
-msgstr ""
+msgstr "Assigne l'objet <emph>Nothing</emph> à une variable pour supprimer une assignation antérieure."
#: 03040000.xhp
msgctxt ""
@@ -15183,7 +15215,7 @@ msgctxt ""
"hd_id051620171114572289\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemple"
#: 03050000.xhp
msgctxt ""
@@ -23695,7 +23727,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "cCur=Currency ' cCur is an implicit currency variable"
-msgstr ""
+msgstr "cCur=Currency ' cCur est une variable monétaire implicite"
#: 03101120.xhp
msgctxt ""
@@ -25871,7 +25903,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option VBASupport Statement [Runtime]"
-msgstr ""
+msgstr "Instruction Option VBASupport [Exécution]"
#: 03103350.xhp
msgctxt ""
@@ -25879,7 +25911,7 @@ msgctxt ""
"bm_id3145090\n"
"help.text"
msgid "<bookmark_value>MS Excel macros support;Enable</bookmark_value> <bookmark_value>MS Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Prise en charge des macros MS Excel;Activer</bookmark_value> <bookmark_value>Prise en charge des macros MS Excel;Instruction Option VBASupport</bookmark_value> <bookmark_value>Prise en charge VBA;Instruction Option VBASupport</bookmark_value> <bookmark_value>Instruction Option VBASupport</bookmark_value>"
#: 03103350.xhp
msgctxt ""
@@ -25887,7 +25919,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Instruction Option VBASupport [Exécution]</link>"
#: 03103350.xhp
msgctxt ""
@@ -25895,7 +25927,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "Specifies that %PRODUCTNAME Basic will support some VBA statements, functions and objects."
-msgstr ""
+msgstr "Spécifie que %PRODUCTNAME Basic prend en charge certaines instructions, fonctions et objets VBA."
#: 03103350.xhp
msgctxt ""
@@ -25903,7 +25935,7 @@ msgctxt ""
"par_id051720171055367194\n"
"help.text"
msgid "The support for VBA is not complete, but covers a large portion of the common usage patterns."
-msgstr ""
+msgstr "La prise en charge de VBA n'est pas complète, mais couvre une grande partie des types d'usage courants."
#: 03103350.xhp
msgctxt ""
@@ -25911,7 +25943,7 @@ msgctxt ""
"hd_id3149763\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxe :"
#: 03103350.xhp
msgctxt ""
@@ -25919,7 +25951,7 @@ msgctxt ""
"hd_id3145315\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Paramètres :"
#: 03103350.xhp
msgctxt ""
@@ -25927,7 +25959,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgstr "Cette instruction doit être ajoutée dans un module avant la partie exécutable du code."
#: 03103350.xhp
msgctxt ""
@@ -25935,7 +25967,7 @@ msgctxt ""
"par_id051720171055361727\n"
"help.text"
msgid "1: Enable VBA support in %PRODUCTNAME"
-msgstr ""
+msgstr "1 : active la prise en charge VBA dans %PRODUCTNAME"
#: 03103350.xhp
msgctxt ""
@@ -25943,7 +25975,7 @@ msgctxt ""
"par_id051720171055369857\n"
"help.text"
msgid "0: Disable VBA support"
-msgstr ""
+msgstr "0 : désactive la prise en charge VBA"
#: 03103350.xhp
msgctxt ""
@@ -25951,7 +25983,7 @@ msgctxt ""
"hd_id3125864\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemple :"
#: 03103350.xhp
msgctxt ""
@@ -25959,7 +25991,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Propriétés VBA</link>"
#: 03103350.xhp
msgctxt ""
@@ -25967,7 +25999,7 @@ msgctxt ""
"par_id051720170424259343\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA support in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/vbasupport.xhp\">Prise en charge du VBA dans %PRODUCTNAME</link>"
#: 03103400.xhp
msgctxt ""
@@ -26223,7 +26255,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "TypeName (Variable) / VarType (Variable)"
-msgstr ""
+msgstr "TypeName (Variable) / VarType (Variable)"
#: 03103600.xhp
msgctxt ""
@@ -26271,7 +26303,7 @@ msgctxt ""
"par_id051620170608269696\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante nommée"
#: 03103600.xhp
msgctxt ""
@@ -26311,7 +26343,7 @@ msgctxt ""
"par_id051620170608331416\n"
"help.text"
msgid "Currency variable"
-msgstr ""
+msgstr "Variable monétaire"
#: 03103600.xhp
msgctxt ""
@@ -26551,7 +26583,7 @@ msgctxt ""
"par_id3153104\n"
"help.text"
msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
-msgstr ""
+msgstr "\"TextEdit1\" à \"TextEdit5\" dans une boucle pour créer cinq noms de contrôles."
#: 03103800.xhp
msgctxt ""
@@ -27015,7 +27047,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "a = DimArray( 2, 2, 4 ) ' is the same as DIM a( 2, 2, 4 )"
-msgstr ""
+msgstr "a = DimArray (2, 2, 4) ' équivaut à DIM a (2, 2, 4)"
#: 03104400.xhp
msgctxt ""
@@ -27319,7 +27351,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "' Copy of objects -> same instance"
-msgstr ""
+msgstr "' Copie d'objets -> même instance"
#: 03104600.xhp
msgctxt ""
@@ -27327,7 +27359,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "' Copy of structs as value -> new instance"
-msgstr ""
+msgstr "' Copie de classes struct en tant que valeurs -> nouvelle instance"
#: 03104700.xhp
msgctxt ""
@@ -28151,7 +28183,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AscW Function [Runtime]"
-msgstr ""
+msgstr "Fonction Asc [Exécution]"
#: 03120111.xhp
msgctxt ""
@@ -28159,7 +28191,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>AscW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>fonction AscW</bookmark_value>"
#: 03120111.xhp
msgctxt ""
@@ -28167,7 +28199,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">Fonction AscW [Exécution - VBA]</link>"
#: 03120111.xhp
msgctxt ""
@@ -28175,7 +28207,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the Unicode value of the first character in a string expression."
-msgstr ""
+msgstr "Renvoie la valeur Unicode du premier caractère dans une expression chaîne de caractères."
#: 03120111.xhp
msgctxt ""
@@ -28183,7 +28215,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxe :"
#: 03120111.xhp
msgctxt ""
@@ -28191,7 +28223,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "AscW (Text As String)"
-msgstr ""
+msgstr "AscW (Text As String)"
#: 03120111.xhp
msgctxt ""
@@ -28199,7 +28231,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valeur de retour :"
#: 03120111.xhp
msgctxt ""
@@ -28207,7 +28239,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "Integer"
-msgstr ""
+msgstr "Entier"
#: 03120111.xhp
msgctxt ""
@@ -28215,7 +28247,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Paramètres :"
#: 03120111.xhp
msgctxt ""
@@ -28223,7 +28255,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr ""
+msgstr "<emph>Text :</emph> n'importe quelle expression valide au format chaîne de caractères. Seul le premier caractère de la chaîne est traité."
#: 03120111.xhp
msgctxt ""
@@ -28231,7 +28263,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "Use the AscW function to replace keys with Unicode values. If the AscW function encounters a blank string, %PRODUCTNAME Basic reports a run-time error. Returned values are between 0 and 65535."
-msgstr ""
+msgstr "Utilisez la fonction AscW pour remplacer des clés avec des valeurs Unicode. Si la fonction AscW rencontre une chaîne vide, %PRODUCTNAME Basic renvoie une erreur à l'exécution. Les valeurs renvoyées sont comprises entre 0 et 65535."
#: 03120111.xhp
msgctxt ""
@@ -28239,7 +28271,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemple :"
#: 03120111.xhp
msgctxt ""
@@ -28247,7 +28279,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "Print AscW(\"A\") ' returns 65"
-msgstr ""
+msgstr "Print AscW(\"A\") ' renvoie 65"
#: 03120111.xhp
msgctxt ""
@@ -28255,7 +28287,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Print AscW(\"Ω\") ' returns 937"
-msgstr ""
+msgstr "Print AscW(\"Ω\") ' revoie 937"
#: 03120111.xhp
msgctxt ""
@@ -28263,7 +28295,7 @@ msgctxt ""
"par_id3163800\n"
"help.text"
msgid "Print AscW(\"Αθήνα\") ' returns 913, since only the first character (Alpha) is taken into account"
-msgstr ""
+msgstr "Print AscW(\"Αθήνα\") ' renvoie 913, car seul le premier caractère est pris en compte"
#: 03120111.xhp
msgctxt ""
@@ -28271,7 +28303,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120111.xhp
msgctxt ""
@@ -28279,7 +28311,7 @@ msgctxt ""
"par_id051920171027053197\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
#: 03120111.xhp
msgctxt ""
@@ -28287,7 +28319,7 @@ msgctxt ""
"par_id051920171027051338\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28295,7 +28327,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChrW Function [Runtime -VBA]"
-msgstr ""
+msgstr "Fonction ChrW [Exécution -VBA]"
#: 03120112.xhp
msgctxt ""
@@ -28303,7 +28335,7 @@ msgctxt ""
"bm_id3149205\n"
"help.text"
msgid "<bookmark_value>ChrW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonction ChrW</bookmark_value>"
#: 03120112.xhp
msgctxt ""
@@ -28311,7 +28343,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function [Runtime]\">ChrW Function [Runtime -VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function [Runtime]\">Fonction ChrW [Exécution -VBA]</link>"
#: 03120112.xhp
msgctxt ""
@@ -28319,7 +28351,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Returns the Unicode character that corresponds to the specified character code."
-msgstr ""
+msgstr "Renvoie le caractère Unicode qui correspond au code de caractère spécifié."
#: 03120112.xhp
msgctxt ""
@@ -28327,7 +28359,7 @@ msgctxt ""
"hd_id3149514\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxe :"
#: 03120112.xhp
msgctxt ""
@@ -28335,7 +28367,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "ChrW(Expression As Integer)"
-msgstr ""
+msgstr "ChrW(Expression As Integer)"
#: 03120112.xhp
msgctxt ""
@@ -28343,7 +28375,7 @@ msgctxt ""
"hd_id3143228\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valeur de retour :"
#: 03120112.xhp
msgctxt ""
@@ -28351,7 +28383,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "String"
#: 03120112.xhp
msgctxt ""
@@ -28359,7 +28391,7 @@ msgctxt ""
"hd_id3148944\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Paramètres :"
#: 03120112.xhp
msgctxt ""
@@ -28367,7 +28399,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6."
-msgstr ""
+msgstr "<emph>Expression :</emph> variable numérique qui représente une valeur Unicode 16 bits valide (0-65535). Une valeur vide renvoie le code de d'erreur 5. Une valeur en dehors de la plage [0,65535] renvoie un code d'erreur 6."
#: 03120112.xhp
msgctxt ""
@@ -28375,7 +28407,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemple :"
#: 03120112.xhp
msgctxt ""
@@ -28383,7 +28415,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "' This example inserts the greek letter Alpha and Omega in a string."
-msgstr ""
+msgstr "' Cet exemple insère les lettres grecques Alpha et Oméga dans une chaîne."
#: 03120112.xhp
msgctxt ""
@@ -28391,7 +28423,7 @@ msgctxt ""
"par_id3151380\n"
"help.text"
msgid "MsgBox \"From \"+ ChrW(913)+\" to \" + ChrW(937)"
-msgstr ""
+msgstr "MsgBox \"De \"+ ChrW(913)+\" à \" + ChrW(937)"
#: 03120112.xhp
msgctxt ""
@@ -28399,7 +28431,7 @@ msgctxt ""
"par_id3145174\n"
"help.text"
msgid "' The printout appears in the dialog as: From Α to Ω"
-msgstr ""
+msgstr "' L'impression s'affiche dans la boîte de dialogue comme suit : De Α à Ω"
#: 03120112.xhp
msgctxt ""
@@ -28407,7 +28439,7 @@ msgctxt ""
"par_id051920171010491586\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120112.xhp
msgctxt ""
@@ -28415,7 +28447,7 @@ msgctxt ""
"par_idN10668\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28423,7 +28455,7 @@ msgctxt ""
"par_id051920171009414669\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
#: 03120200.xhp
msgctxt ""
@@ -30943,7 +30975,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "InStrRev Function [Runtime - VBA]"
-msgstr ""
+msgstr "Fonction InStrRev [Exécution - VBA]"
#: 03120411.xhp
msgctxt ""
@@ -30951,7 +30983,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>InStrRev function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonction InStrRev</bookmark_value>"
#: 03120411.xhp
msgctxt ""
@@ -30959,7 +30991,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function [Runtime]\">InStrRev Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function [Runtime]\">Fonction InStrRev [Exécution - VBA]</link>"
#: 03120411.xhp
msgctxt ""
@@ -30967,7 +30999,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the position of a string within another string, starting from the right side of the string."
-msgstr ""
+msgstr "Renvoie la position d'une chaîne à l'intérieur d'une autre chaîne, en comptant à partie de l'extrémité droite de la chaîne."
#: 03120411.xhp
msgctxt ""
@@ -30975,7 +31007,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0."
-msgstr ""
+msgstr "La fonction InStrRev renvoie la position, à partir de la droite, où la correspondance a été trouvée. Si la chaîne de caractères n'a pas été trouvée, la fonction renvoie 0."
#: 03120411.xhp
msgctxt ""
@@ -30983,7 +31015,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxe :"
#: 03120411.xhp
msgctxt ""
@@ -30991,7 +31023,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
-msgstr ""
+msgstr "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
#: 03120411.xhp
msgctxt ""
@@ -30999,7 +31031,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valeur de retour :"
#: 03120411.xhp
msgctxt ""
@@ -31007,7 +31039,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "Long"
-msgstr ""
+msgstr "Long"
#: 03120411.xhp
msgctxt ""
@@ -31015,7 +31047,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Paramètres :"
#: 03120411.xhp
msgctxt ""
@@ -31023,7 +31055,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr ""
+msgstr "<emph>Text1 :</emph> expression au format chaîne de caractères dans laquelle la recherche est effectuée."
#: 03120411.xhp
msgctxt ""
@@ -31031,7 +31063,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr ""
+msgstr "<emph>Text2 :</emph> expression au format chaîne de caractères à rechercher."
#: 03120411.xhp
msgctxt ""
@@ -31039,7 +31071,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
-msgstr ""
+msgstr "<emph>Start : </emph>expression numérique optionnelle permettant d'indiquer dans une chaîne la position <emph>à partir de la gauche</emph> du début de la recherche de la sous-chaîne spécifiée. Si ce paramètre est omis, la recherche commence au premier caractère de la chaîne. La valeur maximale autorisée est 65535."
#: 03120411.xhp
msgctxt ""
@@ -31047,7 +31079,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be"
-msgstr ""
+msgstr "<emph>Compare :</emph> expression numérique optionnelle qui définit le type de comparaison. La valeur de ce paramètre peut être"
#: 03120411.xhp
msgctxt ""
@@ -31055,7 +31087,7 @@ msgctxt ""
"par_id051920170326028042\n"
"help.text"
msgid "1: The default value of 1 specifies a text comparison that is not case-sensitive."
-msgstr ""
+msgstr "1 : la valeur par défaut 1 spécifie une comparaison de texte insensible à la casse."
#: 03120411.xhp
msgctxt ""
@@ -31063,7 +31095,7 @@ msgctxt ""
"par_id051920170326027721\n"
"help.text"
msgid "0: The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr ""
+msgstr "0 : la valeur 0 spécifie une comparaison binaire qui est sensible à la casse."
#: 03120411.xhp
msgctxt ""
@@ -31071,7 +31103,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr ""
+msgstr "Pour éviter une erreur d'exécution, ne définissez pas le paramètre Compare si le premier paramètre de retour est omis."
#: 03120411.xhp
msgctxt ""
@@ -31079,7 +31111,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemple :"
#: 03120411.xhp
msgctxt ""
@@ -31087,7 +31119,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
-msgstr ""
+msgstr "sInput = \"The book is on the table\""
#: 03120411.xhp
msgctxt ""
@@ -31095,7 +31127,7 @@ msgctxt ""
"par_id3154125\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"the\",10,1) ' Renvoie 1, la recherche est insensible à la casse"
#: 03120411.xhp
msgctxt ""
@@ -31103,7 +31135,7 @@ msgctxt ""
"par_id051920170322141162\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"the\",10,0) ' Renvoie 0, la recherche est sensible à la casse"
#: 03120411.xhp
msgctxt ""
@@ -31111,7 +31143,7 @@ msgctxt ""
"par_id051920170316395065\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
#: 03120412.xhp
msgctxt ""
@@ -31119,7 +31151,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StrReverse Function [Runtime - VBA]"
-msgstr ""
+msgstr "Fonction StrReverse [Exécution - VBA]"
#: 03120412.xhp
msgctxt ""
@@ -31127,7 +31159,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>StrReverse function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonction StrReverse</bookmark_value>"
#: 03120412.xhp
msgctxt ""
@@ -31135,7 +31167,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">StrReverse Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">Fonction StrReverse [Exécution - VBA]</link>"
#: 03120412.xhp
msgctxt ""
@@ -31143,7 +31175,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the string with the character order reversed."
-msgstr ""
+msgstr "Renvoie la chaîne avec les caractères dans l'ordre inverse."
#: 03120412.xhp
msgctxt ""
@@ -31151,7 +31183,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxe :"
#: 03120412.xhp
msgctxt ""
@@ -31159,7 +31191,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "StrReverse (Text1 As String)"
-msgstr ""
+msgstr "StrReverse (Text1 As String)"
#: 03120412.xhp
msgctxt ""
@@ -31167,7 +31199,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valeur de retour :"
#: 03120412.xhp
msgctxt ""
@@ -31175,7 +31207,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "String"
#: 03120412.xhp
msgctxt ""
@@ -31183,7 +31215,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Paramètres :"
#: 03120412.xhp
msgctxt ""
@@ -31191,7 +31223,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
-msgstr ""
+msgstr "<emph>Text1 :</emph> expression au format chaîne de caractères dont vous voulez inverser l'ordre des caractères."
#: 03120412.xhp
msgctxt ""
@@ -31199,7 +31231,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemple :"
#: 03130000.xhp
msgctxt ""
@@ -32159,7 +32191,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "' this is the same as the following statement:"
-msgstr ""
+msgstr "' ceci équivaut à l'instruction suivante :"
#: 03131800.xhp
msgctxt ""
@@ -32239,7 +32271,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "' Generate \"live\" dialog"
-msgstr ""
+msgstr "' Générer une boîte de dialogue \"live\""
#: 03131800.xhp
msgctxt ""
@@ -32903,7 +32935,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
-msgstr ""
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' pour obtenir une séquence d'octets."
#: 03132300.xhp
msgctxt ""
@@ -33041,6 +33073,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Cette fonction d'exécution renvoie le contexte du composant par défaut à utiliser, lors de la création d'instances de services via XmultiServiceFactory. Pour plus d'informations, reportez-vous au chapitre <item type=\"literal\">Professional UNO</item> du <item type=\"literal\">Developer's Guide</item> disponible à l'adresse <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -33935,7 +34759,7 @@ msgctxt ""
"hd_id05182017030838384\n"
"help.text"
msgid "Working with VBA Macros"
-msgstr ""
+msgstr "Travailler avec des macros VBA"
#: main0601.xhp
msgctxt ""
@@ -33951,7 +34775,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Exclusive VBA functions"
-msgstr ""
+msgstr "Fonctions exclusivement VBA"
#: special_vba_func.xhp
msgctxt ""
@@ -33959,7 +34783,7 @@ msgctxt ""
"bm_id051920170350145208\n"
"help.text"
msgid "<bookmark_value>VBA Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33967,7 +34791,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Fonctions exclusivement VBA</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -33975,7 +34799,7 @@ msgctxt ""
"par_id051820170314436068\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">%PRODUCTNAME Basic ajoute cet ensemble de fonctions quand la prise en charge de VBA est activée</ahelp>"
#: special_vba_func.xhp
msgctxt ""
@@ -33983,7 +34807,7 @@ msgctxt ""
"hd_id051820170407499827\n"
"help.text"
msgid "These exclusive VBA functions are enabled when <item type=\"literal\">Option VBASupport 1</item> is the first line of a %PRODUCTNAME Basic module."
-msgstr ""
+msgstr "Ces fonctions exclusivement VBA sont activées quand <item type=\"literal\">Option VBASupport 1</item> est la première ligne d'un module %PRODUCTNAME Basic."
#: special_vba_func.xhp
msgctxt ""
@@ -33991,7 +34815,7 @@ msgctxt ""
"bm_id05192017035621676\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA ; Fonctions texte</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33999,7 +34823,7 @@ msgctxt ""
"par_id051820170355592834\n"
"help.text"
msgid "Text functions"
-msgstr ""
+msgstr "Fonctions texte"
#: special_vba_func.xhp
msgctxt ""
@@ -34007,7 +34831,7 @@ msgctxt ""
"bm_id051920170357078705\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Financial Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA ; Fonctions financières</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34015,7 +34839,7 @@ msgctxt ""
"par_id051820170355592581\n"
"help.text"
msgid "Financial functions"
-msgstr ""
+msgstr "Fonctions financières"
#: special_vba_func.xhp
msgctxt ""
@@ -34023,7 +34847,7 @@ msgctxt ""
"bm_id051920170357347041\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA ; Fonctions de date et d'heure</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34031,7 +34855,7 @@ msgctxt ""
"par_id051820170356005357\n"
"help.text"
msgid "Date and time functions"
-msgstr ""
+msgstr "Fonctions de date et d'heure"
#: special_vba_func.xhp
msgctxt ""
@@ -34039,7 +34863,7 @@ msgctxt ""
"bm_id051920170358002074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;I/O Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA ; Fonctions d'entrée/sortie</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34047,7 +34871,7 @@ msgctxt ""
"par_id051820170356006501\n"
"help.text"
msgid "I/O Functions"
-msgstr ""
+msgstr "Fonctions d'entrée / sortie"
#: special_vba_func.xhp
msgctxt ""
@@ -34055,7 +34879,7 @@ msgctxt ""
"bm_id051920170358346963\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA ; Fonctions mathématiques</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34063,7 +34887,7 @@ msgctxt ""
"par_id051820170356005221\n"
"help.text"
msgid "Mathematical Functions"
-msgstr ""
+msgstr "Fonctions mathématiques"
#: special_vba_func.xhp
msgctxt ""
@@ -34071,7 +34895,7 @@ msgctxt ""
"bm_id051920170359045662\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Object Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fonctions VBA ; Fonctions objet</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34079,7 +34903,7 @@ msgctxt ""
"hd_id051920170347039686\n"
"help.text"
msgid "Object Functions"
-msgstr ""
+msgstr "Fonctions objet"
#: vbasupport.xhp
msgctxt ""
@@ -34087,7 +34911,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Support for VBA Macros"
-msgstr ""
+msgstr "Prise en charge des macros VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34095,7 +34919,7 @@ msgctxt ""
"hd_id051720170332046289\n"
"help.text"
msgid "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Working with VBA Macros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Travailler avec des macros VBA</link></variable>"
#: vbasupport.xhp
msgctxt ""
@@ -34103,7 +34927,7 @@ msgctxt ""
"par_id05172017033242490\n"
"help.text"
msgid "<ahelp hid=\".\">Visual Basic for Applications (VBA) is an implementation of Microsoft's Visual Basic which is built into all Microsoft Office applications. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Visual Basic for Applications (VBA) est une implémentation de Microsoft Visual Basic qui est disponible dans toutes les applications Microsoft Office.</ahelp>"
#: vbasupport.xhp
msgctxt ""
@@ -34111,7 +34935,7 @@ msgctxt ""
"par_id051720170332428854\n"
"help.text"
msgid "Support for VBA is not complete, but it covers a large portion of the common usage patterns. Most macros use a manageable subset of objects in the Excel API (such as the Range, Worksheet, Workbook, etc.) and the support include those objects, and the most commonly used method/properties of those objects."
-msgstr ""
+msgstr "La prise en charge de VBA n'est pas complète mais couvre une large part des usages communs. La plupart des macros utilisent sous-ensemble gérable des objets de l'API Excel (tels que Range, Worksheet, Workbook, etc.) et la prise en charge de VBA intègre ces objets ainsi que les méthodes et propriétés de ces objets les plus communément utilisées."
#: vbasupport.xhp
msgctxt ""
@@ -34119,7 +34943,7 @@ msgctxt ""
"hd_id051720170350145604\n"
"help.text"
msgid "Loading Microsoft Office documents with executable VBA macros"
-msgstr ""
+msgstr "Charger des documents Microsoft Office avec des macros VBA exécutables"
#: vbasupport.xhp
msgctxt ""
@@ -34127,7 +34951,7 @@ msgctxt ""
"par_id051720170350147298\n"
"help.text"
msgid "Go to <item type=\"menuitem\">Tools – Options – Load / Save – VBA Properties</item> and mark the <emph>Excutable code</emph> checkbox. Then load or open your document."
-msgstr ""
+msgstr "Allez à <item type=\"menuitem\">Outils - Options - Chargement / enregistrement - Propriétés VBA</item> et cochez <emph>Code exécutable</emph>. Ensuite chargez ou ouvrez votre document."
#: vbasupport.xhp
msgctxt ""
@@ -34135,7 +34959,7 @@ msgctxt ""
"hd_id051720170400536628\n"
"help.text"
msgid "Runing VBA Macros"
-msgstr ""
+msgstr "Exécuter les Macros VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34143,7 +34967,7 @@ msgctxt ""
"par_id051720170400539565\n"
"help.text"
msgid "Run VBA macros in the same way as %PRODUCTNAME Basic macros."
-msgstr ""
+msgstr "Exécuter les macros VBA de la même façon que les macros %PRODUCTNAME Basic."
#: vbasupport.xhp
msgctxt ""
@@ -34151,7 +34975,7 @@ msgctxt ""
"par_id051720170407404013\n"
"help.text"
msgid "Since support for VBA is not complete, you may have to edit the VBA code and complete the missing support with %PRODUCTNAME Basic objects, statements and functions."
-msgstr ""
+msgstr "Du fait que la prise en charge de VBA est incomplète, vous pourriez avoir à éditer le code VBA et à compléter la prise en charge manquante avec des objets, instructions et fonctions %PRODUCTNAME Basic."
#: vbasupport.xhp
msgctxt ""
@@ -34159,7 +34983,7 @@ msgctxt ""
"hd_id051720170400533411\n"
"help.text"
msgid "Editing VBA Macros"
-msgstr ""
+msgstr "Éditer les macros VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34167,7 +34991,7 @@ msgctxt ""
"par_id051720170400532486\n"
"help.text"
msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
-msgstr ""
+msgstr "Les macros VBA peuvent être éditées dans l'EDI %PRODUCTNAME Basic."
#: vbasupport.xhp
msgctxt ""
@@ -34175,7 +34999,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Propriétés VBA</link>"
#: vbasupport.xhp
msgctxt ""
@@ -34183,4 +35007,4 @@ msgctxt ""
"par_id051720170407401872\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\">EDI %PRODUCTNAME Basic</link>"
diff --git a/source/fr/helpcontent2/source/text/scalc/01.po b/source/fr/helpcontent2/source/text/scalc/01.po
index 4210f7ec8eb..a52b58734d5 100644
--- a/source/fr/helpcontent2/source/text/scalc/01.po
+++ b/source/fr/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 16:51+0000\n"
+"PO-Revision-Date: 2017-06-13 17:09+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496767861.000000\n"
+"X-POOTLE-MTIME: 1497373767.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -54662,7 +54662,7 @@ msgctxt ""
"par_idN10716\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Sélectionnez le mode de calcul de la valeur affichée pour le champ de données.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54886,7 +54886,7 @@ msgctxt ""
"par_idN107BE\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Sélectionnez le champ à partir duquel la valeur référentielle est obtenue comme base de calcul.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54902,7 +54902,7 @@ msgctxt ""
"par_idN107C5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Sélectionnez l'élément du champ de base à partir duquel la valeur référentielle est obtenue comme base de calcul.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54950,7 +54950,7 @@ msgctxt ""
"par_idN1055B\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Sélectionnez le champ de données pour lequel vous souhaitez filtrer les colonnes et les lignes.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54966,7 +54966,7 @@ msgctxt ""
"par_idN10562\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/ascending\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/ascending\">Trie les éléments de la valeur la plus basse à la valeur la plus haute. Si le champ sélectionné correspond au champ pour lequel la boîte de dialogue a été ouverte, les éléments sont triés par nom. Si un champ de données a été sélectionné, les éléments sont triés par résultats du champ de données sélectionné.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54982,7 +54982,7 @@ msgctxt ""
"par_idN10569\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/descending\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/descending\">Trie les éléments en décroissant de la valeur la plus haute à la valeur la plus basse. Si le champ sélectionné correspond au champ pour lequel la boîte de dialogue a été ouverte, les éléments sont triés par nom. Si un champ de données a été sélectionné, les éléments sont triés par résultats du champ de données sélectionné.</ahelp> "
#: 12090106.xhp
msgctxt ""
@@ -54998,7 +54998,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorts values alphabetically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Trie les valeurs alphabétiquement.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55030,7 +55030,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Sélectionnez le mode de disposition du champ dans la zone de liste.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55046,7 +55046,7 @@ msgctxt ""
"par_idN10597\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Ajoute une ligne vide après les données pour chaque élément du tableau dynamique.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55078,7 +55078,7 @@ msgctxt ""
"par_idN105A5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Turns on the automatic show feature.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Active l'affichage automatique de la fonction.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55094,7 +55094,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Saisissez le nombre maximum d'éléments à afficher automatiquement.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55110,7 +55110,7 @@ msgctxt ""
"par_idN105B3\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Affiche les éléments les plus élevés ou les plus bas dans l'ordre spécifié.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55126,7 +55126,7 @@ msgctxt ""
"par_idN105BA\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Sélectionnez le champ de données par lequel trier les données.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55142,7 +55142,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Sélectionnez les éléments à masquer dans les calculs.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55158,7 +55158,7 @@ msgctxt ""
"par_idN105C8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Sélectionnez la hiérarchie à utiliser. La table dynamique doit être basée sur une source externe de données qui contient des hiérarchies de données.</ahelp>"
#: 12090200.xhp
msgctxt ""
@@ -57878,7 +57878,7 @@ msgctxt ""
"par_id1102201617001848\n"
"help.text"
msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp> The result depends on the color system used by your computer."
-msgstr ""
+msgstr "<ahelp hid=\".\">Renvoie une valeur numérique calculée par une combinaisons de trois couleurs (rouge, vert et bleu) et le canal alpha dans le système de couleur RVBA.</ahelp>Le résultat dépend du système de couleurs utilisé par votre ordinateur."
#: func_color.xhp
msgctxt ""
@@ -61286,7 +61286,7 @@ msgctxt ""
"par_id241020160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workdays.intl.xhp\">SERIE.JOUR.OUVRE.INTL</link>"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61438,7 +61438,7 @@ msgctxt ""
"par_id241070160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.intl.xhp\">SERIE.JOUR.OUVRE.INTL</link>"
#: func_networkdays.xhp
msgctxt ""
@@ -61630,7 +61630,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "RAWSUBTRACT function"
-msgstr ""
+msgstr "Fonction SOUSTRAIRE.BRUT"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61638,7 +61638,7 @@ msgctxt ""
"bm_2016112109230\n"
"help.text"
msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Soustraire.brut;soustraction</bookmark_value><bookmark_value>Fonction SOUSTRAIRE.BRUT</bookmark_value>"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61646,7 +61646,7 @@ msgctxt ""
"hd_2016112109231\n"
"help.text"
msgid "<variable id=\"rawsubtract_head\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"rawsubtract_head\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">SOUSTRAIRE.BRUT</link></variable>"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61654,7 +61654,7 @@ msgctxt ""
"par_2016112109232\n"
"help.text"
msgid "<ahelp hid=\".\">Subtracts a set of numbers and gives the result without eliminating small roundoff errors. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Soustrait un ensemble de nombres et donne les résultat sans éliminer les petites erreurs d'arrondis.</ahelp>"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61662,7 +61662,7 @@ msgctxt ""
"par_2016112109233\n"
"help.text"
msgid "RAWSUBTRACT(Minuend, Subtrahend1, Subtrahend2, ...)"
-msgstr ""
+msgstr "SOUSTRAIRE.BRUT(diminuende,diminuteur1,diminuteur2,...)"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61670,7 +61670,7 @@ msgctxt ""
"par_2016112109234\n"
"help.text"
msgid "Subtracts the subtrahend(s) from the minuend without eliminating roundoff errors. The function should be called with at least two parameters."
-msgstr ""
+msgstr "Soustrait le ou les diminuteurs du diminuende sans éliminer les erreurs d'arrondis. La fonction doit être appelée avec au moins deux paramètres."
#: func_rawsubtract.xhp
msgctxt ""
@@ -61678,7 +61678,7 @@ msgctxt ""
"par_2016112109235\n"
"help.text"
msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765, 0.9876543210987)</item> returns 6.53921361504217E-14"
-msgstr ""
+msgstr "<item type=\"literal\">SOUSTRAIRE.BRUT(0,987654321098765, 0,9876543210987)</item> renvoie 6,53921361504217E-14"
#: func_rawsubtract.xhp
msgctxt ""
@@ -61686,7 +61686,7 @@ msgctxt ""
"par_2016112109237\n"
"help.text"
msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765)</item> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
-msgstr ""
+msgstr "<item type=\"literal\">SOUSTRAIRE.BRUT(0,987654321098765)</item> renvoie Err:511 (variable manquante) parce que SOUSTRAIRE.BRUT demande un minimum de deux nombres."
#: func_second.xhp
msgctxt ""
@@ -62550,7 +62550,7 @@ msgctxt ""
"hd_id3154925\n"
"help.text"
msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">JOURSEM, fonction</link></variable>"
#: func_weekday.xhp
msgctxt ""
@@ -62558,7 +62558,7 @@ msgctxt ""
"par_id3154228\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. For other types, see the table below."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Renvoie le jour de la semaine pour la valeur de date donnée.</ahelp> Le jour est renvoyé comme un nombre entier entre 1 (dimanche) et 7 (samedi), si aucun type ou type = 1 est spécifié. Pour les autres types, voir le tableau ci-dessous."
#: func_weekday.xhp
msgctxt ""
@@ -62590,7 +62590,7 @@ msgctxt ""
"par_id3154394\n"
"help.text"
msgid "<emph>Type</emph> is optional and determines the type of calculation."
-msgstr ""
+msgstr "<emph>Type</emph> est facultatif et détermine le type de calcul."
#: func_weekday.xhp
msgctxt ""
@@ -62598,7 +62598,7 @@ msgctxt ""
"par_id050220170615596613\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: func_weekday.xhp
msgctxt ""
@@ -62606,7 +62606,7 @@ msgctxt ""
"par_id05022017061559141\n"
"help.text"
msgid "Weekday number returned"
-msgstr ""
+msgstr "Numéro de jour de la semaine renvoyé"
#: func_weekday.xhp
msgctxt ""
@@ -62614,7 +62614,7 @@ msgctxt ""
"par_id050220170615599995\n"
"help.text"
msgid "1 or omitted"
-msgstr ""
+msgstr "1 ou omis"
#: func_weekday.xhp
msgctxt ""
@@ -62622,7 +62622,7 @@ msgctxt ""
"par_id050220170615597231\n"
"help.text"
msgid "1 (Sunday) through 7 (Saturday). For compatibility with Microsoft Excel."
-msgstr ""
+msgstr "1 (dimanche) à 7 (samedi). Pour la compatibilité avec Microsoft Excel."
#: func_weekday.xhp
msgctxt ""
@@ -62630,7 +62630,7 @@ msgctxt ""
"par_id050220170615596260\n"
"help.text"
msgid "1 (Monday) through 7 (Sunday)."
-msgstr ""
+msgstr "1 (lundi) à 7 (dimanche)"
#: func_weekday.xhp
msgctxt ""
@@ -62638,7 +62638,7 @@ msgctxt ""
"par_id050220170615597630\n"
"help.text"
msgid "0 (Monday) through 6 (Sunday)"
-msgstr ""
+msgstr "0 (lundi) à 6 (dimanche)"
#: func_weekday.xhp
msgctxt ""
@@ -62646,7 +62646,7 @@ msgctxt ""
"par_id050220170615592023\n"
"help.text"
msgid "1 (Monday) through 7 (Sunday)."
-msgstr ""
+msgstr "1 (lundi) à 7 (dimanche)"
#: func_weekday.xhp
msgctxt ""
@@ -62654,7 +62654,7 @@ msgctxt ""
"par_id050220170615591349\n"
"help.text"
msgid "1 (Tuesday) through 7 (Monday)."
-msgstr ""
+msgstr "1 (mardi) à 7 (lundi)"
#: func_weekday.xhp
msgctxt ""
@@ -62662,7 +62662,7 @@ msgctxt ""
"par_id050220170615593664\n"
"help.text"
msgid "1 (Wednesday) through 7 (Tuesday)."
-msgstr ""
+msgstr "1 (mercredi) à 7 (mardi)"
#: func_weekday.xhp
msgctxt ""
@@ -62670,7 +62670,7 @@ msgctxt ""
"par_id050220170615599110\n"
"help.text"
msgid "1 (Thursday) through 7 (Wednesday)."
-msgstr ""
+msgstr "1 (jeudi) à 7 (mercredi)"
#: func_weekday.xhp
msgctxt ""
@@ -62678,7 +62678,7 @@ msgctxt ""
"par_id05022017061600535\n"
"help.text"
msgid "1 (Friday) through 7 (Thursday)."
-msgstr ""
+msgstr "1 (vendredi) à 7 (jeudi)"
#: func_weekday.xhp
msgctxt ""
@@ -62686,7 +62686,7 @@ msgctxt ""
"par_id050220170616003219\n"
"help.text"
msgid "1 (Saturday) through 7 (Friday)."
-msgstr ""
+msgstr "1 (samedi) à 7 (vendredi)"
#: func_weekday.xhp
msgctxt ""
@@ -62694,7 +62694,7 @@ msgctxt ""
"par_id050220170616002095\n"
"help.text"
msgid "1 (Sunday) through 7 (Saturday)."
-msgstr ""
+msgstr "1 (dimanche) à 7 (samedi)."
#: func_weekday.xhp
msgctxt ""
@@ -62702,7 +62702,7 @@ msgctxt ""
"par_id3156188\n"
"help.text"
msgid "These values apply only to the standard date format that you select under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME Calc - Calculate</item>."
-msgstr ""
+msgstr "Ces valeurs appliquent seulement le format de date standard sélectionné sous <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Préférences</item></caseinline><defaultinline><item type=\"menuitem\">Outils - Options</item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME Calc - Calculer</item>."
#: func_weekday.xhp
msgctxt ""
@@ -62718,7 +62718,7 @@ msgctxt ""
"par_id3150317\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"2000-06-14\")</item> returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr ""
+msgstr "<item type=\"literal\">=JOURSEM(\"14/6/2000\")</item> renvoie 4 (le paramètre type est manquant, le décompte standard est donc utilisé. Le décompte standard débute avec dimanche comme jour numéro 1. Le 14 juin 2000 était un mercredi et donc le jour numéro 4)."
#: func_weekday.xhp
msgctxt ""
@@ -62726,7 +62726,7 @@ msgctxt ""
"par_id3153174\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";2)</item> returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr ""
+msgstr "<item type=\"literal\">=JOURSEM(\"24/7/1996\";2)</item> renvoie 3 (le paramètre type est 2, donc le lundi est le jour numéro 1. le 24 juillet 1996 était un mercredi et donc le numéro du jour est 3)."
#: func_weekday.xhp
msgctxt ""
@@ -62734,7 +62734,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";1)</item> returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr ""
+msgstr "<item type=\"literal\">=JOURSEM(\"24/7/1996\";1)</item> renvoie 4 (le paramètre type est 1, donc le dimanche est le jour numéro 1. le 24 juillet 1996 était un mercredi et donc le numéro du jour est 4)."
#: func_weekday.xhp
msgctxt ""
@@ -62742,7 +62742,7 @@ msgctxt ""
"par_id050220170616006699\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"2017-05-02\";14)</item> returns 6 (the Type parameter is 14, therefore Thursday is day number 1. May 2, 2017 was a Tuesday and therefore day number 6)"
-msgstr ""
+msgstr "<item type=\"literal\">=JOURSEM(\"02/05/2017\";14)</item> renvoie 6 (le paramètre type est 14, donc le jeudi est le jour numéro 1. le 2 Mai 2017 était un mardi et donc le numéro du jour est 6)."
#: func_weekday.xhp
msgctxt ""
@@ -62750,7 +62750,7 @@ msgctxt ""
"par_id3150575\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(NOW())</item> returns the number of the current day."
-msgstr ""
+msgstr "<item type=\"literal\">=JOURSEM(MAINTENANT())</item> renvoie le numéro du jour actuel."
#: func_weekday.xhp
msgctxt ""
@@ -62758,7 +62758,7 @@ msgctxt ""
"par_id3150588\n"
"help.text"
msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/><item type=\"literal\">IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")</item>"
-msgstr ""
+msgstr "Pour obtenir une fonction indiquant si un jour de la cellule A1 est un jour ouvré, utilisez les fonctions SI et JOURSEM comme suit :<br/><item type=\"literal\">SI(JOURSEM(A1;2)<6;\"Jour_ouvré\";\"Week-end\")<6;\"Business day\";\"Weekend\")</item>"
#: func_weeknum.xhp
msgctxt ""
@@ -63014,7 +63014,7 @@ msgctxt ""
"par_idN105E4\n"
"help.text"
msgid "This function exists for interoperability with %PRODUCTNAME releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
-msgstr ""
+msgstr "Cette fonction existe pour l'interopérabilité avec les versions de %PRODUCTNAME antérieures à 5.1.0 et OpenOffice.org. Elle calcule les numéros de semaine pour système de numérotation de semaines dans lequel le numéro de semaine 1 est la semaine qui contient le 4 janvier. Cette fonction ne fournit par l'interopérabilité avec les applications de tableur. Pour les nouveaux documents, utilisez les fonctions <link href=\"text/scalc/01/func_weeknum.xhp\">NO.SEMAINE</link> ou <link href=\"text/scalc/01/func_isoweeknum.xhp\">NO.SEMAINE.ISO</link> à la place."
#: func_weeknum_ooo.xhp
msgctxt ""
@@ -63198,7 +63198,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WORKDAY.INTL"
-msgstr ""
+msgstr "SERIE.JOUR.OUVRE.INTL"
#: func_workday.intl.xhp
msgctxt ""
@@ -63206,7 +63206,7 @@ msgctxt ""
"bm_id231020162341219565\n"
"help.text"
msgid "<bookmark_value>WORKDAY.INTL function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SERIE.JOUR.OUVRE.INTL, fonction</bookmark_value>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63214,7 +63214,7 @@ msgctxt ""
"hd_id231020162348002143\n"
"help.text"
msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link></variable>"
-msgstr ""
+msgstr "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">SERIE.JOUR.OUVRE.INTL</link></variable>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63222,7 +63222,7 @@ msgctxt ""
"par_id23102016234837285\n"
"help.text"
msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Le résultat est un nombre date qui peut être formaté comme une date. L'utilisateur peut voir la date du jour qui est à une certaine distance de la date de début (avant ou après). Il y a des options permettant de définir les jours de week-ends et les congés et fêtes. Le paramètre facultatif week-end (ou une chaîne) peut être utilisé pour définir les jours de week-end (ou les jours non travaillés de chaque semaine). L'utilisateur peut également définir une liste de congés et fêtes de façon facultative. Les jours de week-end et les congés et fêtes personnalisés ne sont pas comptés comme des jours travaillés.</ahelp>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63230,7 +63230,7 @@ msgctxt ""
"hd_id241020160008306802\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Syntaxe"
#: func_workday.intl.xhp
msgctxt ""
@@ -63238,7 +63238,7 @@ msgctxt ""
"par_id241020160008306838\n"
"help.text"
msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
-msgstr ""
+msgstr "<item type=\"literal\">SERIE.JOUR.OUVRE.INTL(date_début;jours;week-end;congés_fêtes</item>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63246,7 +63246,7 @@ msgctxt ""
"par_id241020160008308885\n"
"help.text"
msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
-msgstr ""
+msgstr "<emph>date_début</emph> est la date à partir de laquelle le calcul est effectué. Si la date de début est un jour ouvré, le jour est inclus dans le calcul. Elle est requise."
#: func_workday.intl.xhp
msgctxt ""
@@ -63254,7 +63254,7 @@ msgctxt ""
"par_id241020160008305329\n"
"help.text"
msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr ""
+msgstr "<emph>jours</emph> est le nombre de jours ouvrés. Une valeur positive pour un résultat après la date de début; une valeur négative pour une résultat avant la date de début."
#: func_workday.intl.xhp
msgctxt ""
@@ -63262,7 +63262,7 @@ msgctxt ""
"hd_id241020160012172138\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemple"
#: func_workday.intl.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id241020160012177196\n"
"help.text"
msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
-msgstr ""
+msgstr "Quelle est la date 20 jours ouvrés après le 13 décembre 2016 ? Saisissez la date de début en C3 et le nombre de jours travaillés en D3."
#: func_workday.intl.xhp
msgctxt ""
@@ -63278,7 +63278,7 @@ msgctxt ""
"par_id241020160012178429\n"
"help.text"
msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
-msgstr ""
+msgstr "Le paramètre week-end (nombre) peut être laissé vide ou défini comme 1 pour le week-end par défaut (jours non travaillés – samedi et dimanche."
#: func_workday.intl.xhp
msgctxt ""
@@ -63286,7 +63286,7 @@ msgctxt ""
"par_id241020160012172125\n"
"help.text"
msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
-msgstr ""
+msgstr "Les cellules F3 à J3 contiennent cinq (5) jours de congés et fêtes pour Noël et le Nouvel An en format date : 24 décembre 2016 ; 25 décembre 2016 ; 31 décembre 2016 et 1er janvier 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63294,7 +63294,7 @@ msgctxt ""
"par_id241020160012177923\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
-msgstr ""
+msgstr "<item type=\"literal\">=SERIE.JOUR.OUVRE.INTL(C3;D3;;F3:J3)</item> renvoie 11 janvier 2017 dans la cellule de résultat, disons D6 (utilisez le format date pour la cellule)."
#: func_workday.intl.xhp
msgctxt ""
@@ -63302,7 +63302,7 @@ msgctxt ""
"par_id24102016001217206\n"
"help.text"
msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
-msgstr ""
+msgstr "Pour définir vendredi et samedi comme jours de week-end, utilisez le paramètre de week-end 7."
#: func_workday.intl.xhp
msgctxt ""
@@ -63310,7 +63310,7 @@ msgctxt ""
"par_id241020160012178562\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
-msgstr ""
+msgstr "<item type=\"literal\">=SERIE.JOUR.OUVRE.INTL(C3;D3;7;F3:J3</item> renvoie le 15 janvier 2017 avec le paramètre de week-end 7."
#: func_workday.intl.xhp
msgctxt ""
@@ -63318,7 +63318,7 @@ msgctxt ""
"par_id241020160012176149\n"
"help.text"
msgid "To define Sunday only the weekend day, use the weekend parameter 11."
-msgstr ""
+msgstr "Pour définir dimanche comme seul jour de week-end, utilisez le paramètre de week-end 11."
#: func_workday.intl.xhp
msgctxt ""
@@ -63326,7 +63326,7 @@ msgctxt ""
"par_id241020160012181455\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=SERIE.JOUR.OUVRE.INTL(C3;D3;11;F3:J3)</item> renvoie le 9 janvier 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63334,7 +63334,7 @@ msgctxt ""
"par_id24102016001218469\n"
"help.text"
msgid "Alternatively, use the weekend string \"0000001\" for Sunday only weekend."
-msgstr ""
+msgstr "Alternativement, vous pouvez utiliser la chaîne \"0000001\" pour le dimanche comme seul jour de week-end."
#: func_workday.intl.xhp
msgctxt ""
@@ -63342,7 +63342,7 @@ msgctxt ""
"par_id241020160012183680\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=SERIE.JOUR.OUVRE.INTL(C3;D3;\"0000001\";F3:J3)</item> renvoie le 9 janvier 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63350,7 +63350,7 @@ msgctxt ""
"par_id241020160012181870\n"
"help.text"
msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
-msgstr ""
+msgstr "La fonction peut être utilisé sans les deux paramètres facultatifs – jour de la semaine et congés et fêtes – en les omettant :"
#: func_workday.intl.xhp
msgctxt ""
@@ -63358,7 +63358,7 @@ msgctxt ""
"par_id241020160012182048\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=SERIE.JOUR.OUVRE.INTL(C3;D3)</item> renvoie le 10 janvier 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63366,7 +63366,7 @@ msgctxt ""
"par_id231020162253594361\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_networkdays.xhp\">NB.JOURS.OUVRES</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63374,7 +63374,7 @@ msgctxt ""
"par_id241020160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NB.JOURS.OUVRES.INTL</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63382,7 +63382,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.xhp\">SERIE.JOUR.OUVRES</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63390,7 +63390,7 @@ msgctxt ""
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Fonctions de date</link>"
#: func_workday.xhp
msgctxt ""
@@ -63510,7 +63510,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.intl.xhp\">SERIE.JOUR.OUVRE.INTL</link>"
#: func_workday.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index b49d721a85b..92ca67fae14 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-30 16:32+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 16:56+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496161951.000000\n"
+"X-POOTLE-MTIME: 1497977775.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -9726,7 +9726,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choisissez l'onglet <emph>Outils - Numérotation des chapitres - Position</emph> </caseinline></switchinline>"
#: 00040500.xhp
@@ -9750,8 +9750,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icône de la barre d'outils <emph>Image</emph> :</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><defaultinline>Icône de la barre d'outils <emph>Image</emph> : </defaultinline></switchinline>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index e2cbf31a2d8..e38333794d2 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 16:41+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 16:59+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496162486.000000\n"
+"X-POOTLE-MTIME: 1497977966.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2015,7 +2015,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Lorsque vous utilisez <item type=\"menuitem\">Fichier - Modèles - Enregistrer comme modèle</item> pour enregistrer un modèle, le modèle est enregistré dans le dossier de modèles utilisateur. Lorsque vous ouvrez un document qui est basé sur un tel modèle, le document va être vérifié en fonction d'éventuelles modifications du modèle comme décrit ci-dessous. Le modèle est associé au document, il peut être appelé un \"modèle collant\"."
#: 01020000.xhp
msgctxt ""
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Sélectionnez le style de paragraphe ou le niveau de plan que vous souhaitez utiliser pour séparer le document source en sous-documents.</ahelp> Par défaut, un nouveau document est créé pour chaque plan de niveau 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Sélectionnez le style de paragraphe ou le niveau de plan que vous souhaitez utiliser pour séparer le document source en sous-documents.</ahelp> Par défaut, un nouveau document est créé pour chaque chapitre de niveau 1."
#: 01160300.xhp
msgctxt ""
@@ -30207,7 +30207,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Conversion Direction"
-msgstr ""
+msgstr "Direction de la conversion"
#: 06010600.xhp
msgctxt ""
@@ -30215,7 +30215,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Select the conversion direction."
-msgstr ""
+msgstr "Sélectionnez la direction de la conversion."
#: 06010600.xhp
msgctxt ""
@@ -30223,7 +30223,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "De chinois traditionnel en chinois simplifié"
#: 06010600.xhp
msgctxt ""
@@ -30239,7 +30239,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "De chinois simplifié en chinois traditionnel"
#: 06010600.xhp
msgctxt ""
@@ -30255,7 +30255,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "Common Terms"
-msgstr ""
+msgstr "Termes communs"
#: 06010600.xhp
msgctxt ""
@@ -30263,7 +30263,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
-msgstr ""
+msgstr "Les termes communs sont des mots qui ont la même signification en chinois traditionnel et simplifié, mais sont écrits avec des caractères différents."
#: 06010600.xhp
msgctxt ""
@@ -30271,7 +30271,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Translate common terms"
-msgstr ""
+msgstr "Traduire les termes communs"
#: 06010600.xhp
msgctxt ""
@@ -40470,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Sélectionner pour exporter tous les repères de texte d'un document Writer comme repères de texte PDF. Les repères de texte sont créés pour tous les paragraphes numérotés (Outils - Numérotation des chapitres) et pour toutes les entrées de tables des matières pour lesquelles vous avez assigné des hyperliens dans le document source.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr "<ahelp hid=\".\">Sélectionnez pour exporter tous les repères de texte d'un document Writer comme repères de texte PDF. Les repères de texte sont créés pour tous les paragraphes numérotés (<item type=\"menuitem\">Outils - Numérotation des chapitres</item>) et pour toutes les entrées de tables des matières pour lesquelles vous avez assigné des hyperliens dans le document source.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/guide.po b/source/fr/helpcontent2/source/text/shared/guide.po
index e132a8ee6f8..0f7cdc909f3 100644
--- a/source/fr/helpcontent2/source/text/shared/guide.po
+++ b/source/fr/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 17:00+0000\n"
+"PO-Revision-Date: 2017-06-13 17:13+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496250008.000000\n"
+"X-POOTLE-MTIME: 1497374004.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5679,7 +5679,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Lorsque vous signez un document avec OpenOffice.org 3.2 et StarOffice 9.2 ou une version ultérieure et que vous ouvrez ce document dans une version antérieure du logiciel, la signature sera affichée comme \"invalide\". Les signatures créées avec les anciennes versions du logiciel seront annotées \"seules des parties du document sont signées\" lorsque chargées dans la nouvelle version du logiciel."
#: digital_signatures.xhp
msgctxt ""
@@ -5687,7 +5687,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "Quand vous signez un document OOXML, la signature sera toujours marquée avec \"seules des parties du document sont signées\". Les métadonnées des fichiers OOXML ne sont jamais signées pour être compatibles avec Microsoft Office."
#: digital_signatures.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index 4a3449c9eac..5382a00b9b2 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-31 16:19+0000\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-20 17:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496247577.000000\n"
+"X-POOTLE-MTIME: 1497979365.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Sélectionner une nouvelle couleur"
#: 01010501.xhp
msgctxt ""
@@ -2263,7 +2263,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Sélectionner une nouvelle couleur"
#: 01010501.xhp
msgctxt ""
@@ -2278,16 +2278,24 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
-msgstr ""
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgstr "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME permet de définir des couleurs personnalisées à l'aide d'un diagramme de dégradés graphique et numérique bidimentionnel dans la boîte de dialogue Choisir une couleur.</ahelp></variable>Cliquez sur <emph>OK</emph> pour afficher la couleur nouvellement définie dans la d'aperçu <emph>Nouveau</emph> de l'onglet <emph>Couleurs</emph>, dans laquelle vous pouvez définir si vous souhaitez ajouter ou remplacer la nouvelle couleur dans la palette active."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
-msgstr ""
+msgid "The Pick a Color Window"
+msgstr "Boîte de dialogue Choisir une couleur"
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Boîte de dialogue Choisir une couleur</caption></image>"
#: 01010501.xhp
msgctxt ""
@@ -2295,15 +2303,15 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "La boîte de dialogue Choisir une couleur est composée de quatre zones principales."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
-msgstr ""
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
+msgstr "Les boutons radio sélectionnent le composant de couleur de la couleur. Ce composant de couleur peut être exprimé aussi bien en modèles de couleur RVB (Rouge, Vert, Bleu) qu'en TSB (Teinte, Saturation, Brillance). Le modèle de couleur CMJK n'est pas sélectionnable et est disponible uniquement pour aider la saisie des valeurs de couleur en utilisant la notation CMJK."
#: 01010501.xhp
msgctxt ""
@@ -2311,7 +2319,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "The spin buttons are for entering the numerical value of the color component."
-msgstr ""
+msgstr "Les boutons de rotation permettent de saisir la valeur numérique du composant de couleur."
#: 01010501.xhp
msgctxt ""
@@ -2319,7 +2327,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">Avec le curseur de composant de couleur vertical, vous pouvez modifier la valeur de chaque composant de couleur.</ahelp>À l'aide du grand carré coloré, vous pouvez sélectionner la composant de couleur approximativement."
#: 01010501.xhp
msgctxt ""
@@ -2327,7 +2335,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "La barre de couleur basse horizontale affiche la couleur active et la nouvelle couleur, côte à côte."
#: 01010501.xhp
msgctxt ""
@@ -2335,7 +2343,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Cliquez sur la grande zone de couleur sur la gauche pour sélectionner une nouvelle couleur. En utilisant la zone de sélection vous pouvez modifier deux composants de la couleur représentée dans le modèle de couleur RVB ou TSB. Remarquez que ceux-ci sont les composants non sélectionnées sur la droite de la boîte de dialogue.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2343,7 +2351,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sur la partie droite de la barre du bas, vous verrez la couleur d'origine de l'onglet parent, <emph>Couleurs</emph>.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2351,7 +2359,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sur la partie gauche de la barre du bas, le résultat actuel de votre travail est visible dans cette boîte de dialogue.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2367,7 +2375,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RVB"
#: 01010501.xhp
msgctxt ""
@@ -2383,7 +2391,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit le composant Rouge modifiable par le curseur de couleur vertical et les composants Vert et Bleu dans le champ de choix de couleur bidimensionnel. Les valeurs autorisés vont de 0 à 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2391,7 +2399,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Définissez la couleur rouge directement. Les valeurs permises vont de 0 à 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2407,7 +2415,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit le composant Vert modifiable par le curseur de couleur vertical et les composants Rouge et Bleu dans le champ de choix de couleur bidimensionnel. Les valeurs autorisés vont de 0 à 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2415,7 +2423,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Définissez la couleur Vert directement. Les valeurs permises vont de 0 à 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2431,7 +2439,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit le composant Rouge modifiable par le curseur de couleur vertical et les composants Vert et Bleu dans le champ de choix de couleur bidimensionnel. Les valeurs autorisés vont de 0 à 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2439,7 +2447,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Définissez la couleur Bleu directement. Les valeurs permises vont de 0 à 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2447,7 +2455,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "Hex #"
#: 01010501.xhp
msgctxt ""
@@ -2455,7 +2463,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Affiche et défini la valeur de couleur dans le modèle de couleur RVB exprimé comme un nombre hexadécimal.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2463,7 +2471,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2471,7 +2479,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Teinte"
#: 01010501.xhp
msgctxt ""
@@ -2479,7 +2487,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit le composant Teinte modifiable sur par le curseur de couleur vertical et les composants Saturation et Brillance dans le champ de choix de couleur bidimensionnel. Les valeurs sont exprimées en degrés de 0 à 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2487,7 +2495,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Définissez la Teinte directement dans le modèle de couleur TSB. Les valeurs sont exprimées en degrés de 0 à 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2503,7 +2511,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit le composant Saturation modifiable sur par le curseur de couleur vertical et les composants Teinte et Brillance dans le champ de choix de couleur bidimensionnel. Les valeurs sont exprimées en degrés de 0 à 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2511,7 +2519,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Définissez la Saturation directement dans le modèle de couleur TSB. Les valeurs sont exprimées en pourcentage (0 à 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2519,7 +2527,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Brillance"
#: 01010501.xhp
msgctxt ""
@@ -2527,7 +2535,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit le composant Brillance modifiable sur par le curseur de couleur vertical et les composants Teinte et Saturation dans le champ de choix de couleur bidimensionnel. Les valeurs sont exprimées en pourcentage (0 à 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2535,7 +2543,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Définissez la Brillance directement dans le modèle de couleur TSB. Les valeurs sont exprimées en pourcentage (0 à 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2543,7 +2551,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMJN"
#: 01010501.xhp
msgctxt ""
@@ -2559,7 +2567,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définissez la valeur de la couleur Cyan comme exprimée dans le modèle de couleur CMJK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2575,7 +2583,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définissez la valeur de couleur Magenta comme exprimée dans le modèle de couleur CMJK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2591,7 +2599,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définissez la valeur de la couleur Jaune comme exprimée dans le modèle de couleur CMJK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2607,7 +2615,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définissez la valeur ou la clé (noire) de la couleur Noir comme exprimée dans le modèle de couleur CMJK.</ahelp>"
#: 01010600.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter.po b/source/fr/helpcontent2/source/text/swriter.po
index fcad82741bc..7df9f381b16 100644
--- a/source/fr/helpcontent2/source/text/swriter.po
+++ b/source/fr/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-16 20:13+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1494965593.000000\n"
@@ -1054,8 +1054,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numérotation des chapitres\">Numérotation des chapitres</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/00.po b/source/fr/helpcontent2/source/text/swriter/00.po
index 5246648b2e9..0bfd0188832 100644
--- a/source/fr/helpcontent2/source/text/swriter/00.po
+++ b/source/fr/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-25 21:20+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1495747231.000000\n"
@@ -2254,24 +2254,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Choisissez <emph>Outils - Numérotation des chapitres</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choisissez le menu puis l'onglet <emph>Outils - Numérotation des chapitres - Numérotation</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Choisissez <emph>Outils - Numérotation de lignes</emph> (pas pour le format HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/01.po b/source/fr/helpcontent2/source/text/swriter/01.po
index 3aad5c4efa1..4e22e41a2b2 100644
--- a/source/fr/helpcontent2/source/text/swriter/01.po
+++ b/source/fr/helpcontent2/source/text/swriter/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 20:40+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-20 13:23+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496695208.000000\n"
+"X-POOTLE-MTIME: 1497965007.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Cliquez sur <emph>1</emph> pour afficher uniquement les titres de premier niveau dans le Navigateur et sur <emph>10</emph> pour afficher tous les titres.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Si vous choisissez l'option \"Numéro de chapitre sans séparateur\" pour un champ de chapitre, les séparateurs définis sous <link href=\"text/swriter/01/06060000.xhp\" name=\"Outils - Numérotation des chapitres\"><emph>Outils - Numérotation des chapitres</emph></link> sont ignorés."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Insère le numéro de chapitre. Pour assigner une numérotation de chapitre à un style de titre, choisissez <emph>Outils - Numérotation des chapitres</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numérotation des chapitres"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numérotation des chapitres"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "La numérotation des chapitres est liée aux styles de paragraphe. Par défaut, les styles de paragraphe \"Titre\" (1-10) sont assignés aux niveaux de numérotation de chapitres correspondants (1-10). Toutefois, vous avez la possibilité d'assigner des styles de paragraphe différents aux niveaux de numérotation de chapitres."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Pour numéroter des titres, sélectionnez le menu <emph>Outils - Numérotation des chapitres</emph> pour assigner une numérotation au style de paragraphe. N'utilisez pas l'icône de numérotation de la barre d'outils de formatage."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Pour mettre en évidence l'affichage à l'écran des numéros de chapitre, choisissez <emph>Affichage - </emph><emph>Trame de fond des champs</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Enregistre ou charge un format de numérotation de chapitres. Un format de numérotation de chapitres enregistré est disponible pour tous les documents texte.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Le bouton <emph>Format</emph> n'est disponible que pour la numérotation des chapitres. Pour les styles de liste numérotée ou à puces, modifiez les styles de numérotation des paragraphes."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Ouvre une boîte de dialogue dans laquelle vous pouvez enregistrer les paramètres actuellement définis pour le niveau de plan sélectionné. Vous pouvez ensuite charger ces paramètres à partir d'un autre document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Cliquez sur le niveau de plan à modifier, puis indiquez les options de numérotation souhaitées pour celui-ci.</ahelp> Pour appliquer les options de numérotation à tous les niveaux, à l'exception du style de paragraphe, cliquez sur \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Sélectionnez le style de paragraphe à assigner au niveau de plan sélectionné.</ahelp> Si vous cliquez sur \"Aucun(e)\", ce niveau de plan n'est pas défini."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nouveau bloc d'adresses"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nouveau bloc d'adresses"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Éléments d'adresse"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Faites glisser l'élément d'adresse vers le champ ci-dessous"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -26391,7 +26391,7 @@ msgctxt ""
"par_id30092016144332353\n"
"help.text"
msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles and Formatting</emph>."
-msgstr ""
+msgstr "À partir du volet latéral, sélectionnez <emph> Paramètres du volet latéral - Styles et formatage</emph>."
#: title_page.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/guide.po b/source/fr/helpcontent2/source/text/swriter/guide.po
index 236421e1d38..73641705871 100644
--- a/source/fr/helpcontent2/source/text/swriter/guide.po
+++ b/source/fr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-05-25 16:46+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1495730772.000000\n"
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Vous pouvez utiliser le Navigateur pour déplacer des titres et le texte associé vers le haut ou le bas du document. Vous pouvez également hausser ou abaisser les niveaux de titre. Pour utiliser cette fonction, formatez les titres du document avec l'un des styles de paragraphe \"Titre\" prédéfinis. Pour appliquer un style de paragraphe personnalisé à un titre, choisissez <emph>Outils - Numérotation des chapitres</emph>, sélectionnez le style dans la zone <emph>Style de paragraphe</emph>, puis double-cliquez sur un numéro dans la liste <emph>Niveau</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2902,32 +2902,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numérotation des chapitres"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>Plans;numérotation</bookmark_value><bookmark_value>Suppression;numéros de titres</bookmark_value><bookmark_value>Numérotation de chapitre</bookmark_value><bookmark_value>Titres;styles de numérotation/paragraphe</bookmark_value><bookmark_value>Numérotation;titres</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numérotation des chapitres\">Numérotation des chapitres</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Vous pouvez modifier la hiérarchie des titres ou assigner un niveau de titre hiérarchique à un style de paragraphe personnalisé. En outre, vous pouvez appliquer une numérotation de section et de chapitre aux styles de paragraphe des titres. Par défaut, le style de paragraphe Titre 1 se situe au premier niveau de plan dans la hiérarchie."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2942,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choisissez <item type=\"menuitem\">Outils - Numérotation des chapitres</item>, puis cliquez sur l'onglet <item type=\"menuitem\">Numérotation</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2966,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Pour supprimer automatiquement la numérotation des chapitres d'un paragraphe Titre"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2998,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choisissez <item type=\"menuitem\">Outils - Numérotation des chapitres</item>, puis cliquez sur l'onglet <item type=\"menuitem\">Numérotation</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6110,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Avant d'insérer des informations sur le chapitre dans un en-tête ou un pied de page, vous devez définir les options de numérotation des chapitres pour le style de paragraphe que vous voulez appliquer aux titres de chapitre."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6126,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Choisissez <emph>Outils - Numérotation des chapitres</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7126,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>Index;définition des entrées</bookmark_value><bookmark_value>Tables des matières;définition des entrées</bookmark_value><bookmark_value>Entrées;définition dans les index/tables des matières</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7158,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Choisissez <emph>Insertion - Table des matières et index - Entrée d'index</emph> et effectuez l'une des opérations suivantes :"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7214,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Choisissez <emph>Outils - Numérotation des chapitres</emph> et cliquez sur l'onglet <emph>Numérotation</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7838,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Si vous souhaitez utiliser un style de paragraphe différent comme entrée de table des matières, sélectionnez la case à cocher <item type=\"menuitem\">Styles supplémentaires</item> dans la zone <item type=\"menuitem\">Créer à partir de</item>, puis cliquez sur le bouton (<item type=\"menuitem\">...</item>) en regard de la case à cocher. Dans la boîte de dialogue <item type=\"menuitem\">Assigner les styles</item>, cliquez sur le style dans la liste, puis cliquez sur les boutons <item type=\"menuitem\">>></item> ou <item type=\"menuitem\"><<</item> pour définir le niveau de plan du style de paragraphe."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,8 +8014,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Si vous souhaitez utilisez un style de paragraphe différent comme entrée de table des matières, sélectionnez <item type=\"menuitem\">Styles supplémentaires</item>, puis cliquez sur le bouton <item type=\"menuitem\">Assigner les styles</item> en regard du champ. Cliquez sur le style dans la liste, puis cliquez sur les boutons <item type=\"menuitem\">>></item> ou <item type=\"menuitem\"><<</item> pour définir le niveau de plan du style de paragraphe."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9486,8 +9486,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>Numérotation;suppression/interruption</bookmark_value><bookmark_value>Listes à puces;interruption</bookmark_value><bookmark_value>Listes;suppression/interruption de la numérotation</bookmark_value><bookmark_value>Suppression;numéros dans les listes</bookmark_value><bookmark_value>Interruption des listes numérotées</bookmark_value><bookmark_value>Modification;démarrage des nombres dans les listes</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9510,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Pour numéroter des titres, sélectionnez le menu <emph>Outils - Numérotation des chapitres</emph> pour assigner une numérotation au style de paragraphe. N'utilisez pas l'icône de numérotation de la barre d'outils de formatage."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
index 0792da614c3..85ca77dd477 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-20 19:58+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 04:50+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1495310335.000000\n"
+"X-POOTLE-MTIME: 1498020609.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -617,8 +617,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Sélectionner des thèmes"
+msgid "Spreadsheet Theme"
+msgstr "Thème pour classeur"
#: CalcCommands.xcu
msgctxt ""
@@ -4022,6 +4022,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Insérer..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Par défaut"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Accent 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Accent 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Accent 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Titre 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Titre 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Incorrect"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Erreur"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Correct"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutre"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Avertissement"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Note de bas de page"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Note"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7224,7 +7341,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Masque des diapos"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7233,7 +7350,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "M~asque des notes"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7917,7 +8034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Not~es"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7935,7 +8052,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Affiche la barre d'onglets"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7953,7 +8070,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Masque des prospect~us"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8853,7 +8970,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Volet Dia~po"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21572,7 +21689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Disposition des barres d'outi~ls"
#: GenericCommands.xcu
msgctxt ""
@@ -26698,15 +26815,6 @@ msgstr "~Propriétés..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objet..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26981,7 +27089,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Lignes d'en-tête répétées sur chaque page"
#: WriterCommands.xcu
msgctxt ""
@@ -28439,7 +28547,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "~Fractionnement des lignes sur plusieurs pages"
#: WriterCommands.xcu
msgctxt ""
@@ -29321,7 +29429,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Liste à puces"
#: WriterCommands.xcu
msgctxt ""
@@ -29330,7 +29438,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Liste numérotée"
#: WriterCommands.xcu
msgctxt ""
@@ -29339,7 +29447,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Liste en chiffres romains"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fr/sc/source/ui/src.po b/source/fr/sc/source/ui/src.po
index 82539a9d611..7c17641a2fd 100644
--- a/source/fr/sc/source/ui/src.po
+++ b/source/fr/sc/source/ui/src.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-23 12:49+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 07:11+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1492951742.000000\n"
+"X-POOTLE-MTIME: 1498029109.000000\n"
#: globstr.src
msgctxt ""
@@ -2702,7 +2702,7 @@ msgstr "Plage déplacée de #1 vers #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2872,10 +2872,10 @@ msgstr "Les matrices imbriquées ne sont pas prises en charge."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Texte en colonnes"
+msgstr "Texte vers colonnes"
#: globstr.src
msgctxt ""
diff --git a/source/fr/sfx2/source/view.po b/source/fr/sfx2/source/view.po
index 974216a46ee..8806d59e30d 100644
--- a/source/fr/sfx2/source/view.po
+++ b/source/fr/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-29 14:39+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 07:13+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1493476762.000000\n"
+"X-POOTLE-MTIME: 1498029202.000000\n"
#: view.src
msgctxt ""
@@ -254,6 +254,14 @@ msgstr "Ce document a une signature invalide."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "La signature est valide, mais le document a été modifié"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/fr/svtools/source/control.po b/source/fr/svtools/source/control.po
index a421faa164f..8d14eb69658 100644
--- a/source/fr/svtools/source/control.po
+++ b/source/fr/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-02 01:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 20:42+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1435800048.000000\n"
+"X-POOTLE-MTIME: 1497991330.000000\n"
#: calendar.src
msgctxt ""
@@ -292,6 +292,110 @@ msgstr "Italique extra-gras"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Normal"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Gras oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Condensé"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Condensé gras"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Condensé gras italique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Condensé gras oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Condensé italique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Condensé oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "Extrafin"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "Extrafin italique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Oblique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Demi gras"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Demi gras italique"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/fr/svtools/source/misc.po b/source/fr/svtools/source/misc.po
index 53c4e6ddddf..6669fa8dff7 100644
--- a/source/fr/svtools/source/misc.po
+++ b/source/fr/svtools/source/misc.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-23 12:44+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 20:43+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1492951480.000000\n"
+"X-POOTLE-MTIME: 1497991415.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3181,10 +3181,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3906,6 +3906,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (République Démocratique du Congo)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/fr/sw/source/core/undo.po b/source/fr/sw/source/core/undo.po
index 3daf7496882..425972f1eb3 100644
--- a/source/fr/sw/source/core/undo.po
+++ b/source/fr/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-29 08:46+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:39+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1493455562.000000\n"
+"X-POOTLE-MTIME: 1497983981.000000\n"
#: undo.src
msgctxt ""
@@ -892,7 +892,7 @@ msgstr "saut de colonne"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Insérer $1"
@@ -900,7 +900,7 @@ msgstr "Insérer $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Supprimer $1"
@@ -908,26 +908,66 @@ msgstr "Supprimer $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attributs modifiés"
+msgstr "Les attributs ont été modifiés"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tableau modifié"
+msgstr "Le tableau a été modifié"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Style modifié"
+msgstr "Le style a été modifié"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Le formatage du paragraphe a été modifié"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Insérer une ligne"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Supprimer une ligne"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Insérer une cellule"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Supprimer une cellule"
#: undo.src
msgctxt ""
diff --git a/source/fr/sw/source/uibase/docvw.po b/source/fr/sw/source/uibase/docvw.po
index e18482148c6..3c736a4efaf 100644
--- a/source/fr/sw/source/uibase/docvw.po
+++ b/source/fr/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2014-12-13 15:14+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:40+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1418483643.000000\n"
+"X-POOTLE-MTIME: 1497984035.000000\n"
#: docvw.src
msgctxt ""
@@ -60,6 +60,46 @@ msgstr "Styles de paragraphe appliqués"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Le formatage du paragraphe a été modifié"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Une ligne a été insérée"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Une ligne a été supprimée"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Une cellule a été insérée"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Une cellule a été supprimée"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/fr/sw/source/uibase/ribbar.po b/source/fr/sw/source/uibase/ribbar.po
index 8b766374b99..ad83f6422b2 100644
--- a/source/fr/sw/source/uibase/ribbar.po
+++ b/source/fr/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-03-17 05:53+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:40+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1489729988.000000\n"
+"X-POOTLE-MTIME: 1497984049.000000\n"
#: inputwin.src
msgctxt ""
@@ -65,6 +65,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Texte de la formule"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Texte de la formule"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/fr/sw/source/uibase/uiview.po b/source/fr/sw/source/uibase/uiview.po
index 65e6449b00c..83d6a45dd1c 100644
--- a/source/fr/sw/source/uibase/uiview.po
+++ b/source/fr/sw/source/uibase/uiview.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-11 03:40+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:42+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1457667651.000000\n"
+"X-POOTLE-MTIME: 1497984159.000000\n"
#: view.src
msgctxt ""
@@ -140,6 +140,14 @@ msgstr "~Exporter la source..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Exporter une copie de la source..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/fr/sw/uiconfig/swriter/ui.po b/source/fr/sw/uiconfig/swriter/ui.po
index 7c57b0e9319..bd99dc49c71 100644
--- a/source/fr/sw/uiconfig/swriter/ui.po
+++ b/source/fr/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 04:42+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"PO-Revision-Date: 2017-06-07 15:18+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1496119331.000000\n"
+"X-POOTLE-MTIME: 1496848698.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5329,7 +5329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Description :"
#: frmaddpage.ui
msgctxt ""
@@ -7930,7 +7930,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Éditer le commentaire..."
#: managechangessidebar.ui
msgctxt ""
@@ -7939,7 +7939,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Trier par"
#: managechangessidebar.ui
msgctxt ""
@@ -7948,7 +7948,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Action"
#: managechangessidebar.ui
msgctxt ""
@@ -7957,7 +7957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Auteur"
#: managechangessidebar.ui
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Date"
#: managechangessidebar.ui
msgctxt ""
@@ -7975,7 +7975,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Commentaire"
#: managechangessidebar.ui
msgctxt ""
@@ -7984,7 +7984,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Emplacement dans le document"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11948,7 +11948,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Utiliser l'ordre d'ancrage de peinture LibreOffice 4.3 (dans le document actif)"
#: optcompatpage.ui
msgctxt ""
@@ -11957,7 +11957,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Paramètres utilisateurs>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/fr/xmlsecurity/uiconfig/ui.po b/source/fr/xmlsecurity/uiconfig/ui.po
index dd530ceb82d..5c14ccbf027 100644
--- a/source/fr/xmlsecurity/uiconfig/ui.po
+++ b/source/fr/xmlsecurity/uiconfig/ui.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-13 12:11+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 07:12+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1492085461.000000\n"
+"X-POOTLE-MTIME: 1498029159.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -173,6 +173,15 @@ msgstr "Supprimer"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Démarrer le gestionnaire de certificats..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ga/desktop/source/deployment/gui.po b/source/ga/desktop/source/deployment/gui.po
index 06895f20b9f..c4c1673ab0a 100644
--- a/source/ga/desktop/source/deployment/gui.po
+++ b/source/ga/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2015-12-11 16:03+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-01-28 03:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
"Language: ga\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449849817.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1422414217.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
index a6226438b34..f7eaae732e9 100644
--- a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Roghnaigh Pearsantachtaí"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4067,6 +4067,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26985,15 +27102,6 @@ msgid "~Properties..."
msgstr "Airíonna..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ga/sc/source/ui/src.po b/source/ga/sc/source/ui/src.po
index 5fb5595b5d0..9336ac0e020 100644
--- a/source/ga/sc/source/ui/src.po
+++ b/source/ga/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -2702,7 +2702,7 @@ msgstr "Bogadh an raon ó #1 go #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "Ní thacaítear eagair neadaithe."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ga/sfx2/source/view.po b/source/ga/sfx2/source/view.po
index f95ec7ab01d..44a61b3356e 100644
--- a/source/ga/sfx2/source/view.po
+++ b/source/ga/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 21:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ga/svtools/source/control.po b/source/ga/svtools/source/control.po
index ee161c1f0f3..9c7736cb5a9 100644
--- a/source/ga/svtools/source/control.po
+++ b/source/ga/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 00:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -291,6 +291,110 @@ msgstr "Iodálach Dubh"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ga/svtools/source/misc.po b/source/ga/svtools/source/misc.po
index fb649b790bf..32aa5375f0b 100644
--- a/source/ga/svtools/source/misc.po
+++ b/source/ga/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 21:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -3183,9 +3183,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3912,6 +3912,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ga/sw/source/core/undo.po b/source/ga/sw/source/core/undo.po
index 5a2cfb35f2e..a3b2cddd4f8 100644
--- a/source/ga/sw/source/core/undo.po
+++ b/source/ga/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 22:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -892,42 +892,82 @@ msgstr "briseadh colúin"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Ionsáigh $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Scrios $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Athraíodh tréithe"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Athraíodh an tábla"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Athraíodh stíl"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ga/sw/source/uibase/docvw.po b/source/ga/sw/source/uibase/docvw.po
index 5495b6aaea2..1795074f465 100644
--- a/source/ga/sw/source/uibase/docvw.po
+++ b/source/ga/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 22:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -59,6 +59,46 @@ msgstr "Stíleanna Ailt i bhFeidhm"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ga/sw/source/uibase/ribbar.po b/source/ga/sw/source/uibase/ribbar.po
index c2827132f62..32e86aac7b9 100644
--- a/source/ga/sw/source/uibase/ribbar.po
+++ b/source/ga/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-01 22:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Téacs na Foirmle"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ga/sw/source/uibase/uiview.po b/source/ga/sw/source/uibase/uiview.po
index bcb972fad87..e77c457ed29 100644
--- a/source/ga/sw/source/uibase/uiview.po
+++ b/source/ga/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 01:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -139,6 +139,14 @@ msgstr "~Easpórtáil foinse..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ga/xmlsecurity/uiconfig/ui.po b/source/ga/xmlsecurity/uiconfig/ui.po
index d4d0051a348..0a4573fc164 100644
--- a/source/ga/xmlsecurity/uiconfig/ui.po
+++ b/source/ga/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-01 22:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: \n"
@@ -172,6 +172,15 @@ msgstr "Bain"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/gd/desktop/source/deployment/gui.po b/source/gd/desktop/source/deployment/gui.po
index d559c8d1da4..6a10664675c 100644
--- a/source/gd/desktop/source/deployment/gui.po
+++ b/source/gd/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 21:32+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-03 15:16+0000\n"
+"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467667958.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1417619808.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
index 767f5f877e1..df7661526c3 100644
--- a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-25 22:35+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -617,8 +617,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Tagh ùrlaran"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4022,6 +4022,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Cu~ir a-steach..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26698,15 +26815,6 @@ msgstr "~Roghainnean..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Oibseact…"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/gd/sc/source/ui/src.po b/source/gd/sc/source/ui/src.po
index 86df2bfdbf4..dd6105b848a 100644
--- a/source/gd/sc/source/ui/src.po
+++ b/source/gd/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-25 22:54+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -2702,7 +2702,7 @@ msgstr "Chaidh an rainse a ghluasad o #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "Chan eil taic ann ri arraighean neadaichte."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/gd/sfx2/source/view.po b/source/gd/sfx2/source/view.po
index 2dd205a8921..1669cef9d86 100644
--- a/source/gd/sfx2/source/view.po
+++ b/source/gd/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-24 01:59+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -254,6 +254,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/gd/svtools/source/control.po b/source/gd/svtools/source/control.po
index 29609563201..786fc1c33eb 100644
--- a/source/gd/svtools/source/control.po
+++ b/source/gd/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-11-27 20:10+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -292,6 +292,110 @@ msgstr "Eadailteach dubh"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/gd/svtools/source/misc.po b/source/gd/svtools/source/misc.po
index f3185bc1edc..b566342143d 100644
--- a/source/gd/svtools/source/misc.po
+++ b/source/gd/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-24 01:36+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -3181,10 +3181,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3906,6 +3906,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gd/sw/source/core/undo.po b/source/gd/sw/source/core/undo.po
index fc4b745011f..f4cb484e82c 100644
--- a/source/gd/sw/source/core/undo.po
+++ b/source/gd/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-02 01:38+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -892,42 +892,82 @@ msgstr "briseadh cuilbh"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Cuir a-steach $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Sguab às $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Dh'atharraich na buadhan"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Dh'atharraich an clàr"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Dh'atharraich an stoidhle"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/gd/sw/source/uibase/docvw.po b/source/gd/sw/source/uibase/docvw.po
index e4e782546b5..66d002b81c4 100644
--- a/source/gd/sw/source/uibase/docvw.po
+++ b/source/gd/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-04-07 22:36+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Stoidhlean paragraif a tha an sàs"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/gd/sw/source/uibase/ribbar.po b/source/gd/sw/source/uibase/ribbar.po
index 416a182ccee..1c1e566de78 100644
--- a/source/gd/sw/source/uibase/ribbar.po
+++ b/source/gd/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-02 23:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Teacsa na foirmle"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/gd/sw/source/uibase/uiview.po b/source/gd/sw/source/uibase/uiview.po
index 4c4ad0625ca..634852e0e69 100644
--- a/source/gd/sw/source/uibase/uiview.po
+++ b/source/gd/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 06:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Às-ph~ortaich an tùs..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/gd/xmlsecurity/uiconfig/ui.po b/source/gd/xmlsecurity/uiconfig/ui.po
index daf536d41e7..eead166489e 100644
--- a/source/gd/xmlsecurity/uiconfig/ui.po
+++ b/source/gd/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-24 01:07+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Thoir air falbh"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/gl/cui/source/tabpages.po b/source/gl/cui/source/tabpages.po
index e5270f017b4..f22becc9d4b 100644
--- a/source/gl/cui/source/tabpages.po
+++ b/source/gl/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-11-28 22:16+0000\n"
+"PO-Revision-Date: 2017-06-13 16:20+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480371395.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497370813.000000\n"
#: border.src
msgctxt ""
@@ -546,7 +546,7 @@ msgctxt ""
"RID_SVXSTR_STARTQUOTE\n"
"string.text"
msgid "Start Quote"
-msgstr ""
+msgstr "Comiña _inicial"
#: strings.src
msgctxt ""
@@ -554,4 +554,4 @@ msgctxt ""
"RID_SVXSTR_ENDQUOTE\n"
"string.text"
msgid "End Quote"
-msgstr ""
+msgstr "Comiña _final"
diff --git a/source/gl/cui/uiconfig/ui.po b/source/gl/cui/uiconfig/ui.po
index 9a45425b728..e8752349544 100644
--- a/source/gl/cui/uiconfig/ui.po
+++ b/source/gl/cui/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-24 22:26+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-14 22:14+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495664809.000000\n"
+"X-POOTLE-MTIME: 1497478465.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Western text only"
-msgstr ""
+msgstr "_Só texto occidental"
#: optasianpage.ui
msgctxt ""
@@ -13738,7 +13738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pattern Editor:"
-msgstr "Editor de patrón:"
+msgstr "Editor de patróns:"
#: patterntabpage.ui
msgctxt ""
@@ -13747,7 +13747,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Pattern Editor"
-msgstr "Editor de patrón"
+msgstr "Editor de patróns"
#: patterntabpage.ui
msgctxt ""
diff --git a/source/gl/desktop/source/deployment/gui.po b/source/gl/desktop/source/deployment/gui.po
index f42826dc793..68364c4b84a 100644
--- a/source/gl/desktop/source/deployment/gui.po
+++ b/source/gl/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 21:32+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:22+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467667921.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997329.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "A instalación de extensións está desactivada. Consulte o administrador do sistema para máis información."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/gl/filter/source/config/fragments/filters.po b/source/gl/filter/source/config/fragments/filters.po
index d83d0f29eb8..a2fc68e7ee9 100644
--- a/source/gl/filter/source/config/fragments/filters.po
+++ b/source/gl/filter/source/config/fragments/filters.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-12 22:34+0000\n"
-"Last-Translator: Antón Méixome <meixome@certima.net>\n"
+"PO-Revision-Date: 2017-06-07 13:06+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494628478.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496840772.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/gl/filter/source/config/fragments/types.po b/source/gl/filter/source/config/fragments/types.po
index 3d1bf8282f9..c87dfce3165 100644
--- a/source/gl/filter/source/config/fragments/types.po
+++ b/source/gl/filter/source/config/fragments/types.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-12 22:34+0000\n"
-"Last-Translator: Antón Méixome <meixome@certima.net>\n"
+"PO-Revision-Date: 2017-06-07 13:06+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494628496.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496840775.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/gl/filter/uiconfig/ui.po b/source/gl/filter/uiconfig/ui.po
index 28286b1df3f..cd7ab29ee33 100644
--- a/source/gl/filter/uiconfig/ui.po
+++ b/source/gl/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-03 21:26+0000\n"
+"PO-Revision-Date: 2017-06-13 16:20+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493846810.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497370843.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "_Selección/Folla(s) seleccionada(s)"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared.po b/source/gl/helpcontent2/source/text/sbasic/shared.po
index 0e70c442929..e5f078e4495 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared.po
@@ -3,9 +3,9 @@ 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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-24 18:09+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-14 21:51+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495649361.000000\n"
+"X-POOTLE-MTIME: 1497477097.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3154013\n"
"help.text"
msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - (Document Type) - General</emph>."
-msgstr "En $[officename] Basic, un <emph>parámetro de método</emph> ou unha <emph>propiedade</emph> que esperen unha información de unidade poden ser indicados como expresión tanto de enteiros como de enteiros longos, sen unidade, ou como unha cadea de caracteres que conteña unha unidade. Se non se pasa ningunha unidade ao método, emprégase a unidade predeterminada definida para o documento activo. Se o parámetro se pasa como unha cadea de caracteres que conteña unha unidade de medida, a opción predeterminada é ignorada. A unidade de medida predeterminada para un tipo de documento pode ser configurada en <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - (Tipo de documento) - Xeral</emph>."
+msgstr "En $[officename] Basic, un <emph>parámetro de método</emph> ou unha <emph>propiedade</emph> que esperen unha información de unidade poden ser indicados como expresión tanto de enteiros como de enteiros longos, sen unidade, ou como unha cadea de caracteres que conteña unha unidade. Se non se pasa ningunha unidade ao método, emprégase a unidade predeterminada definida para o documento activo. Se o parámetro se pasa como unha cadea de caracteres que conteña unha unidade de medida, a opción predeterminada é ignorada. A unidade de medida predeterminada para un tipo de documento pode ser configurada en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - (Tipo de documento) - Xeral</emph>."
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Códigos de erro</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -4110,7 +4142,7 @@ msgctxt ""
"hd_id3153188\n"
"help.text"
msgid "Commands From the Context menu of the Module Tabs"
-msgstr "Ordes do menú de contexto dos separadores de módulos"
+msgstr "Ordes do menú de contexto das lapelas de módulos"
#: 01050000.xhp
msgctxt ""
@@ -7254,7 +7286,7 @@ msgctxt ""
"hd_id3148932\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03010201.xhp
msgctxt ""
@@ -7430,7 +7462,7 @@ msgctxt ""
"hd_id3149180\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03010301.xhp
msgctxt ""
@@ -7550,7 +7582,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03010302.xhp
msgctxt ""
@@ -7670,7 +7702,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03010303.xhp
msgctxt ""
@@ -7782,7 +7814,7 @@ msgctxt ""
"hd_id3149670\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03010304.xhp
msgctxt ""
@@ -8014,7 +8046,7 @@ msgctxt ""
"hd_id3150792\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03010305.xhp
msgctxt ""
@@ -8198,7 +8230,7 @@ msgctxt ""
"hd_id3157896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020101.xhp
msgctxt ""
@@ -8382,7 +8414,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement [Runtime]\">Open Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020103.xhp
msgctxt ""
@@ -8766,7 +8798,7 @@ msgctxt ""
"hd_id3154908\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020202.xhp
msgctxt ""
@@ -8998,7 +9030,7 @@ msgctxt ""
"hd_id3150360\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020204.xhp
msgctxt ""
@@ -9174,7 +9206,7 @@ msgctxt ""
"hd_id3147229\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020205.xhp
msgctxt ""
@@ -9502,7 +9534,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020303.xhp
msgctxt ""
@@ -9654,7 +9686,7 @@ msgctxt ""
"hd_id3154367\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020304.xhp
msgctxt ""
@@ -9758,7 +9790,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020305.xhp
msgctxt ""
@@ -9878,7 +9910,7 @@ msgctxt ""
"hd_id3150178\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020401.xhp
msgctxt ""
@@ -9966,7 +9998,7 @@ msgctxt ""
"hd_id3145068\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020402.xhp
msgctxt ""
@@ -10158,7 +10190,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020404.xhp
msgctxt ""
@@ -10326,7 +10358,7 @@ msgctxt ""
"hd_id3153380\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr Function [Runtime]\">FileAttr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020405.xhp
msgctxt ""
@@ -10526,7 +10558,7 @@ msgctxt ""
"hd_id3154840\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020406.xhp
msgctxt ""
@@ -10614,7 +10646,7 @@ msgctxt ""
"hd_id3153361\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020407.xhp
msgctxt ""
@@ -10694,7 +10726,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen Function [Runtime]\">FileLen Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020408.xhp
msgctxt ""
@@ -10790,7 +10822,7 @@ msgctxt ""
"hd_id3150984\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020409.xhp
msgctxt ""
@@ -10990,7 +11022,7 @@ msgctxt ""
"hd_id3153360\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Instrución Kill [Execución]</link>"
#: 03020410.xhp
msgctxt ""
@@ -11070,7 +11102,7 @@ msgctxt ""
"hd_id3156421\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">Instrución MkDir [Execución]</link>"
#: 03020411.xhp
msgctxt ""
@@ -11350,7 +11382,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020413.xhp
msgctxt ""
@@ -11430,7 +11462,7 @@ msgctxt ""
"hd_id3147559\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020414.xhp
msgctxt ""
@@ -11582,7 +11614,7 @@ msgctxt ""
"hd_id3148946\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03020415.xhp
msgctxt ""
@@ -11734,7 +11766,7 @@ msgctxt ""
"hd_id3157896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03030101.xhp
msgctxt ""
@@ -11886,7 +11918,7 @@ msgctxt ""
"hd_id3156344\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03030102.xhp
msgctxt ""
@@ -11990,7 +12022,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Función Day [Execución]</link>"
#: 03030103.xhp
msgctxt ""
@@ -12102,7 +12134,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03030104.xhp
msgctxt ""
@@ -12214,7 +12246,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03030105.xhp
msgctxt ""
@@ -12382,7 +12414,7 @@ msgctxt ""
"hd_id3148664\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03030106.xhp
msgctxt ""
@@ -12494,7 +12526,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">Desde...Seguinte instrución [Runtime]</link>"
+msgstr ""
#: 03030107.xhp
msgctxt ""
@@ -13446,7 +13478,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime Function [Runtime]\">CDateFromUnoDateTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"CDateToUnoDateTime Function [Runtime]\">Función CDateToUnoDateTime [Execución]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime Function [Runtime]\">Función CDateFromUnoDateTime [Execución]</link>"
#: 03030116.xhp
msgctxt ""
@@ -19230,7 +19262,7 @@ msgctxt ""
"par_id3150768\n"
"help.text"
msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
-msgstr "Expresión: Calquera cadea ou expresión numérica que queiras converter."
+msgstr "<emph>Número:</emph> calquera expresión numérica que se desexe converter en valor octal."
#: 03080802.xhp
msgctxt ""
@@ -22022,7 +22054,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "<emph>Expression:</emph> The expression that you want to evaluate."
-msgstr "Expresión: Calquera cadea ou expresión numérica que queiras converter."
+msgstr "<emph>Expresión:</emph> A expresión que se desexa avaliar."
#: 03090410.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/gl/helpcontent2/source/text/scalc.po b/source/gl/helpcontent2/source/text/scalc.po
index 5ede56055dd..5dd08b813dd 100644
--- a/source/gl/helpcontent2/source/text/scalc.po
+++ b/source/gl/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-06 07:34+0000\n"
+"PO-Revision-Date: 2017-06-08 09:06+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496734453.000000\n"
+"X-POOTLE-MTIME: 1496912774.000000\n"
#: main0000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:FormatMenu\">As ordes do menú <emph>Formato</emph> úsanse para formatar celas seleccionadas, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"obxectos\">obxectos</link> e o contido das celas do seu documento.</ahelp>"
+msgstr "<ahelp hid=\".\">O menú <emph>Formato</emph> contén ordes para formatar celas, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">obxectos</link> e o contido das celas seleccionadas do seu documento.</ahelp>"
#: main0105.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/scalc/00.po b/source/gl/helpcontent2/source/text/scalc/00.po
index a7462d0facd..41441db8152 100644
--- a/source/gl/helpcontent2/source/text/scalc/00.po
+++ b/source/gl/helpcontent2/source/text/scalc/00.po
@@ -4,8 +4,8 @@ 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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-03-03 17:04+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-06-08 09:22+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488560641.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496913727.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "Open context menu for a sheet tab"
-msgstr "Abra o menú de contexto para un separador de folla"
+msgstr "Abra o menú de contexto para unha lapela de folla"
#: 00000402.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Open context menu for a sheet tab"
-msgstr "Abra o menú de contexto para un separador de folla"
+msgstr "Abra o menú de contexto para unha lapela de folla"
#: 00000403.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
-msgstr "<variable id=\"fozelstz\">Escolla <emph>Formato -Celas</emph>, separador <emph>Protección de cela</emph></variable>"
+msgstr "<variable id=\"fozelstz\">Escolla a lapela <emph>Formato - Celas - Protección de cela</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3155508\n"
"help.text"
msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
-msgstr "<variable id=\"fostel\">Escolla <emph>Formato - Páxina</emph>, separador <emph>Folla</emph></variable>"
+msgstr "<variable id=\"fostel\">Escolla a lapela <emph>Formato - Páxina - Folla</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
-msgstr "Escolla <emph>Datos - Ordenar</emph>, separador <emph>Criterios de ordenación</emph>"
+msgstr "Escolla a lapela <emph>Datos - Ordenar - Criterios de ordenación</emph>"
#: 00000412.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
-msgstr "<variable id=\"dnstot\">Escolla <emph>Datos - Ordenar</emph>, separador <emph>Opcións</emph></variable>"
+msgstr "<variable id=\"dnstot\">Escolla a lapela <emph>Datos - Ordenar - Opcións</emph></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3154574\n"
"help.text"
msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
-msgstr "<variable id=\"dntezd\">Escolla <emph>Datos - Subtotais</emph>, separadores <emph>1º, 2º, 3º grupo</emph></variable>"
+msgstr "<variable id=\"dntezd\">Escolla as lapelas <emph>Datos - Subtotais - 1º, 2º, 3º grupo</emph></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3151277\n"
"help.text"
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
-msgstr "<variable id=\"dntopi\">Escolla <emph>Datos - Subtotais</emph>, separador <emph>Opcións</emph></variable>"
+msgstr "<variable id=\"dntopi\">Escolla a lapela <emph>Datos - Subtotais - Opcións</emph></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
-msgstr "<variable id=\"dntopi\">Escolla <emph>Datos - Subtotais</emph>, separador <emph>Opcións</emph></variable>"
+msgstr ""
#: 00000412.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3159223\n"
"help.text"
msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
-msgstr "<variable id=\"dntopi\">Escolla <emph>Datos - Subtotais</emph>, separador <emph>Opcións</emph></variable>"
+msgstr ""
#: 00000412.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id3153008\n"
"help.text"
msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
-msgstr "<variable id=\"dntopi\">Escolla <emph>Datos - Subtotais</emph>, separador <emph>Opcións</emph></variable>"
+msgstr ""
#: 00000412.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id1774346\n"
"help.text"
msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
-msgstr "<variable id=\"dntopi\">Escolla <emph>Datos - Subtotais</emph>, separador <emph>Opcións</emph></variable>"
+msgstr ""
#: 00000412.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index 01723483908..a3277a8cc71 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ 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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 11:58+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-14 21:54+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496750324.000000\n"
+"X-POOTLE-MTIME: 1497477252.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
-msgstr "O cadro de diálogo <emph> cabeceiras / pés de páxina </emph>, as guías para definir cabeceiras e pés de páxina. Haberá guías separadas para as cabeceiras de páxina esquerda e dereita e rodapés o <emph> Mesmo contido esquerda / dereita </ ​​emph> opción non foi marcado no <link href=\"text / scalc / 01 / 05070000.xhp\\ \"name =\" Estilo de páxina\\ \"> Estilo de páxina </link> diálogo."
+msgstr "O cadro de diálogo <emph>Cabeceiras/Pés de páxina</emph> contén as lapelas para definir cabeceiras e pés de páxina. Haberá lapelas separadas para as cabeceiras e rodapés das páxinas esquerda e dereita se non se marcou a opción <emph> Mesmo contido esquerda/dereita </​​emph> no cadro de diálogo <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Estilo de páxina</link>."
#: 02120100.xhp
msgctxt ""
@@ -17638,7 +17638,7 @@ msgctxt ""
"par_id3155468\n"
"help.text"
msgid "The results returned by the system (if <emph>stats</emph> = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>stats</emph> does not equal 0, other results are to be displayed."
-msgstr "Os resultados obtidos polo sistema (se <emph> Estatísticas </emph> = 0), pode, polo menos, amosar a inclinación da liña de regresión ea súa intersección co eixo Y. Se <emph> Estatísticas </emph> non é igual a 0, os outros resultados deben ser mostrados."
+msgstr "Os resultados obtidos polo sistema (se <emph> Estatísticas </emph> = 0), pode, polo menos, amosar a inclinación da liña de regresión ea súa intersección co eixe Y. Se <emph> Estatísticas </emph> non é igual a 0, os outros resultados deben ser mostrados."
#: 04060107.xhp
msgctxt ""
@@ -18174,7 +18174,7 @@ msgctxt ""
"par_id3158184\n"
"help.text"
msgid "G2: Intersection b with the y axis."
-msgstr "G2: b intersección co eixo y."
+msgstr "G2: b intersección co eixe y."
#: 04060107.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/schart.po b/source/gl/helpcontent2/source/text/schart.po
index b28290a2257..057fec22a98 100644
--- a/source/gl/helpcontent2/source/text/schart.po
+++ b/source/gl/helpcontent2/source/text/schart.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-26 21:13+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-06-08 09:26+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1490562800.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496913984.000000\n"
#: main0000.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id4194769\n"
"help.text"
msgid "Double-click an axis to edit the scale, type, color, and more."
-msgstr "Clic duplo nun eixo para editar a escala, tipo, cor e outros."
+msgstr "Clic duplo nun eixe para editar a escala, tipo, cor e outros."
#: main0000.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id0810200903544949\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Formats the selected axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formata o eixo seleccionado.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Formata o eixe seleccionado.</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id0810200904233047\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert or delete axes.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para inserir ou eliminar eixos.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para inserir ou eliminar eixes.</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id0810200904233058\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para inserir un eixo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para inserir un eixe.</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id0810200904233089\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to insert an axis title.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para inserir un título de eixo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre un diálogo para inserir un título de eixe.</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id0810200904362777\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the selected axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Borra o eixo seleccionado.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elimina o eixe seleccionado.</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id0810200902300630\n"
"help.text"
msgid "<ahelp hid=\".\">The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
-msgstr "<ahelp hid=\".\">A icona de Activar / desactivar a grade horizontal na barra de formatado troca a visibilidade da grade para o eixo Y.</ahelp>"
+msgstr "<ahelp hid=\".\">A icona de Activar / desactivar a grade horizontal na barra de formatado troca a visibilidade da grade para o eixe Y.</ahelp>"
#: main0202.xhp
msgctxt ""
@@ -782,4 +782,4 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
-msgstr "É posíbel personalizar elementos individuais da gráfica (como eixos, etiquetas de datos e lendas) premendo co botón dereito do rato na gráfica ou usando as iconas das barras de ferramentas e as ordes do menú."
+msgstr "É posíbel personalizar elementos individuais da gráfica (como eixes, etiquetas de datos e lendas) premendo co botón dereito do rato na gráfica ou usando as iconas das barras de ferramentas e as ordes do menú."
diff --git a/source/gl/helpcontent2/source/text/schart/00.po b/source/gl/helpcontent2/source/text/schart/00.po
index a1f7459c97b..19cff2f6dbd 100644
--- a/source/gl/helpcontent2/source/text/schart/00.po
+++ b/source/gl/helpcontent2/source/text/schart/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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-24 22:02+0000\n"
+"PO-Revision-Date: 2017-06-08 09:26+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495663345.000000\n"
+"X-POOTLE-MTIME: 1496913987.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"par_id3153210\n"
"help.text"
msgid "Show/Hide Axis Descriptions"
-msgstr "Mostrar/Ocultar descricións dos eixos"
+msgstr "Mostrar/Ocultar descricións dos eixes"
#: 00000004.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/schart/01.po b/source/gl/helpcontent2/source/text/schart/01.po
index b6c59bad06a..74f628228a8 100644
--- a/source/gl/helpcontent2/source/text/schart/01.po
+++ b/source/gl/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 07:34+0000\n"
+"PO-Revision-Date: 2017-06-08 09:40+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496734496.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496914850.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"bm_id3147428\n"
"help.text"
msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
-msgstr "<bookmark_value>eixos; mostrar eixos en gráficas</bookmark_value><bookmark_value>gráficas; mostrar eixos</bookmark_value><bookmark_value>eixos X; mostrar</bookmark_value><bookmark_value>eixos Y; mostrar</bookmark_value><bookmark_value>eixos Z; mostrar</bookmark_value><bookmark_value>eixos; mellor escalamento</bookmark_value><bookmark_value>eixos secundarios en gráficas</bookmark_value>"
+msgstr "<bookmark_value>eixes; mostrar eixes en gráficas</bookmark_value><bookmark_value>gráficas; mostrar eixes</bookmark_value><bookmark_value>eixes X; mostrar</bookmark_value><bookmark_value>eixes Y; mostrar</bookmark_value><bookmark_value>eixes Z; mostrar</bookmark_value><bookmark_value>eixes; mellor escalamento</bookmark_value><bookmark_value>eixes secundarios en gráficas</bookmark_value>"
#: 04040000.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Displays the Y axis as a line with subdivisions.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Mostra o eixo Y en forma de liña con subdivisións.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryY\">Mostra o eixe Y en forma de liña con subdivisións.</ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id3155113\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryZ\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
-msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryZ\">Mostra o eixo Z en forma de liña con subdivisións.</ahelp> O eixo só pode visualizarse en gráficas 3D."
+msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/primaryZ\">Mostra o eixe Z en forma de liña con subdivisións.</ahelp> O eixe só pode visualizarse en gráficas 3D."
#: 04040000.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3156445\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">Displays a secondary X axis in the chart.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">Mostra un eixo X secundario na gráfica.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryX\">Mostra un eixe X secundario na gráfica.</ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">Displays a secondary Y axis in the chart.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">Mostra un eixo Y secundario na gráfica.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">Mostra un eixe Y secundario na gráfica.</ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3154762\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">O eixo principal e o secundario poden ter escalas diferentes. Por exemplo, pode alterar a escala dun eixo a 5 cm e a do outro a 3,75 cm </ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertaxisdlg/secondaryY\">O eixe principal e o secundario poden ter escalas diferentes. Por exemplo, pode alterar a escala dun eixe a 5 cm e a do outro a 3,75 cm </ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"par_id3145228\n"
"help.text"
msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
-msgstr "Nesta área, pode escoller entre dous modos de escala do eixoY. Só é posíbel escalar os eixos e dotalos de propiedades de maneira separada."
+msgstr "Nesta área, pode escoller entre dous modos de escala do eixe Y. Só é posíbel escalar os eixes e dotalos de propiedades de maneira separada."
#: 04060000.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_1\">Esta opción está activada como predefinida.Todas as series de datos están aliñadas no eixo Y primario.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_1\">Esta opción está activada como predefinida. Todas as series de datos están aliñadas no eixe Y primario.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_2\">Modifica a escala do eixo Y. Este eixo só é visíbel se ten polo menos unha serie de datos atribuída e se o modo de visualización do eixo está activado.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_SeriesToAxis/RBT_OPT_AXIS_2\">Modifica a escala do eixe Y. Este eixe só é visíbel se ten polo menos unha serie de datos atribuída e se o modo de visualización do eixe está activado.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"bm_id3147434\n"
"help.text"
msgid "<bookmark_value>axes; inserting grids</bookmark_value> <bookmark_value>grids; inserting in charts</bookmark_value>"
-msgstr "<bookmark_value>eixos; inserción de grades</bookmark_value><bookmark_value>grades; inserción en gráficas</bookmark_value>"
+msgstr "<bookmark_value>eixes; inserción de grades</bookmark_value><bookmark_value>grades; inserción en gráficas</bookmark_value>"
#: 04070000.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"par_id3154511\n"
"help.text"
msgid "Defines the axis to be set as the major grid."
-msgstr "Define o eixo que se debe configurar como grade principal."
+msgstr "Define o eixe que se debe configurar como grade principal."
#: 04070000.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryX\">Adds gridlines to the X axis of the chart.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryX\">Agrega liñas de grade ao eixo X da gráfica.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryX\">Agrega liñas de grade ao eixe X da gráfica.</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3147004\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryY\">Adds gridlines to the Y axis of the chart.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryY\">Engade liñas de grade ao eixo Y da gráfica.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryY\">Engade liñas de grade ao eixe Y da gráfica.</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"par_id3155378\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">Adds gridlines to the Z axis of the chart.</ahelp> This option is only available if you're working with 3D charts."
-msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">Engade liñas de grade ao eixo Z da gráfica.</ahelp> Esta opción só pode aplicarse ao traballar con gráficas en 3D."
+msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/primaryZ\">Engade liñas de grade ao eixe Z da gráfica.</ahelp> Esta opción só pode aplicarse ao traballar con gráficas en 3D."
#: 04070000.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id3156449\n"
"help.text"
msgid "Use this area to assign a minor grid for each axis. Assigning minor grids to the axis reduces the distance between the major grids."
-msgstr "Utilice esta área para atribuír unha grade secundaria a cada eixo. Esta atribución reduce a distancia entre as grades principais."
+msgstr "Utilice esta área para atribuír unha grade secundaria a cada eixe. Esta atribución reduce a distancia entre as grades principais."
#: 04070000.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id3148704\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">Adds gridlines that subdivide the X axis into smaller sections.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">Agrega liñas de grade que dividen o eixo X en seccións máis pequenas.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryX\">Agrega liñas de grade que dividen o eixe X en seccións máis pequenas.</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3154536\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">Adds gridlines that subdivide the Y axis into smaller sections.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">Engade liñas de grade que dividen o eixo Y en seccións máis pequenas.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryY\">Engade liñas de grade que dividen o eixe Y en seccións máis pequenas.</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id3153247\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryZ\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
-msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryZ\">Engade liñas de grade que dividen o eixo Z en seccións máis pequenas.</ahelp> Esta opción só pode aplicarse ao traballar con gráficas 3D."
+msgstr "<ahelp hid=\"modules/schart/ui/insertgriddlg/secondaryZ\">Engade liñas de grade que dividen o eixe Z en seccións máis pequenas.</ahelp> Esta opción só pode aplicarse ao traballar con gráficas 3D."
#: 05010000.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"hd_id3151073\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Título do eixo X\">Título do eixo X</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">Título do eixe X</link>"
#: 05020000.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"hd_id3154732\n"
"help.text"
msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Título do eixo Y\">Título do eixo Y</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Título do eixe Y</link>"
#: 05020000.xhp
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Título do eixo Z\">Título do eixo Z</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Título do eixe Z</link>"
#: 05020000.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "Modifies the alignment of axes or title labels."
-msgstr "Modifica o aliñamento dos eixos ou das etiquetas dos títulos."
+msgstr "Modifica o aliñamento dos eixes ou das etiquetas dos títulos."
#: 05020201.xhp
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/showlabelsCB\">Specifies whether to show or hide the axis labels.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/showlabelsCB\">Especifica se as etiquetas dos eixos deben mostrarse ou ocultarse.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/showlabelsCB\">Especifica se as etiquetas dos eixes deben mostrarse ou ocultarse.</ahelp>"
#: 05020201.xhp
msgctxt ""
@@ -2830,7 +2830,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
-msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">A icona<emph> Activar/desactivar título do eixo </emph>da barra de ferramentas <emph>Formatado</emph> activa e desactiva a etiquetaxe de todos os eixos.</ahelp></variable>"
+msgstr "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">A icona<emph> Activar/desactivar título do eixe</emph> da barra de ferramentas <emph>Formatado</emph> activa e desactiva a etiquetaxe de todos os eixes.</ahelp></variable>"
#: 05020201.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"par_id3150342\n"
"help.text"
msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis."
-msgstr "Se define unha etiqueta para o eixo X vertical, o texto pode cortarse pola liña do eixo x."
+msgstr "Se define unha etiqueta para o eixe X vertical, o texto pode cortarse pola liña do eixe x."
#: 05020201.xhp
msgctxt ""
@@ -2974,7 +2974,7 @@ msgctxt ""
"par_id3159230\n"
"help.text"
msgid "The options on this tab are only available for a 2D chart, under <emph>Format - Axis - Y Axis</emph> or <emph>X Axis</emph>. In this area, you can define the alignment of the number labels on the X or Y axis."
-msgstr "As opcións deste tabulador só poden aplicarse en gráficas 2D, en <emph>Formatar - Eixo - Eixo Y</emph> ou <emph>Eixo X</emph>. Pode definir nesta área o aliñamento das etiquetas de números do eixo X ou Y."
+msgstr "As opcións deste tabulador só poden aplicarse en gráficas 2D, en <emph>Formatar - Eixe - Eixe Y</emph> ou <emph>Eixe X</emph>. Pode definir nesta área o aliñamento das etiquetas de números do eixe X ou Y."
#: 05020201.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"par_id3155758\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/tile\">Arranges numbers on the axis side by side.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/tile\">Coloca os números no eixo, uns ao lado dos outros.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/tile\">Coloca os números no eixe, uns ao lado dos outros.</ahelp>"
#: 05020201.xhp
msgctxt ""
@@ -3006,7 +3006,7 @@ msgctxt ""
"par_id3145114\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/odd\">Staggers numbers on the axis, even numbers lower than odd numbers.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/odd\">Dispón os números no eixo, cos números pares debaixo dos números impares.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/odd\">Dispón os números no eixe, cos números pares debaixo dos números impares.</ahelp>"
#: 05020201.xhp
msgctxt ""
@@ -3022,7 +3022,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/even\">Stagger numbers on the axes, odd numbers lower than even numbers.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/even\">Dispón os números nos eixos, cos números impares debaixo dos números pares.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/even\">Dispón os números nos eixes, cos números impares debaixo dos números pares.</ahelp>"
#: 05020201.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_id3147404\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_axisLabel/auto\">Automatically arranges numbers on the axis.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/auto\">Dispón automaticamente os números no eixo.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_axisLabel/auto\">Dispón automaticamente os números no eixe.</ahelp>"
#: 05020201.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "The tabs in the dialogs depend on the chart type selected."
-msgstr "Os separadores das caixas de diálogo varían segundo o tipo de gráfica seleccionado."
+msgstr "As lapelas das caixas de diálogo varían segundo o tipo de gráfica seleccionado."
#: 05040000.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_id3149401\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisA\">Abre unha caixa de diálogo na cal é posíbel editar as propiedades do eixo X secundario. Para inserir un eixo X secundario, escolla <emph>Inserir - Eixos</emph> e seleccione <emph>Eixo X</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisA\">Abre unha caixa de diálogo na cal é posíbel editar as propiedades do eixe X secundario. Para inserir un eixe X secundario, escolla <emph>Inserir - Eixes</emph> e seleccione <emph>Eixe X</emph>.</ahelp>"
#: 05040000.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisB\">Abre unha caixa de diálogo na cal é posíbel editar as propiedades do eixo Y secundario. Para inserir un eixo Y secundario, escolla <emph>Inserir - Eixos</emph> e seleccione <emph>Eixo Y</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisB\">Abre unha caixa de diálogo na cal é posíbel editar as propiedades do eixe Y secundario. Para inserir un eixe Y secundario, escolla <emph>Inserir - Eixes</emph> e seleccione <emph>Eixe Y</emph>.</ahelp>"
#: 05040000.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"hd_id3147345\n"
"help.text"
msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
-msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"Todos os eixos\">Todos os eixos</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">Todos os eixes</link>"
#: 05040100.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"bm_id3153768\n"
"help.text"
msgid "<bookmark_value>axes;formatting</bookmark_value>"
-msgstr "<bookmark_value>eixos;formatación</bookmark_value>"
+msgstr "<bookmark_value>eixes;formatación</bookmark_value>"
#: 05040100.xhp
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"par_id3149667\n"
"help.text"
msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
-msgstr "O <link href=\"text/schart/01/05040200.xhp\" name=\"eixo Y\">eixo Y</link> dispón dunha caixa de diálogo ampliada. No caso das gráficas XY, a gráfica do eixo X dispón do separador <link href=\"text/schart/01/05040201.xhp\" name=\"Escala\"><emph>Escala</emph></link>."
+msgstr "O <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">eixe Y</link> dispón dunha caixa de diálogo ampliada. No caso das gráficas XY, a gráfica do eixe X dispón da lapela <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Escala</emph></link>."
#: 05040100.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id3159266\n"
"help.text"
msgid "Scaling the X axis is only possible in the X-Y chart type."
-msgstr "Só é posíbel escalar o eixo X en gráficas do tipo XY."
+msgstr "Só é posíbel escalar o eixe X en gráficas do tipo XY."
#: 05040100.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3148576\n"
"help.text"
msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
-msgstr "$[officename] escala de maneira automática o eixo Y, polo que todos os valores se mostran de maneira óptima."
+msgstr "$[officename] escala de maneira automática o eixe Y, polo que todos os valores se mostran de maneira óptima."
#: 05040201.xhp
msgctxt ""
@@ -3350,7 +3350,7 @@ msgctxt ""
"par_id3149379\n"
"help.text"
msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
-msgstr "Para conseguir uns resultados concretos, pode modificar manualmente a escala do eixo. Por exemplo, é posíbel só mostrar as áreas superiores das columnas desprazando a liña cero cara a arriba."
+msgstr "Para conseguir uns resultados concretos, pode modificar manualmente a escala do eixe. Por exemplo, é posíbel só mostrar as áreas superiores das columnas desprazando a liña cero cara a arriba."
#: 05040201.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3153956\n"
"help.text"
msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
-msgstr "Use este recurso para traballar con valores moi desiguais entre si. A escala logarítmica permite obter espazos idénticos entre as liñas da grade do eixo. Os valores, porén, son variábeis."
+msgstr "Use este recurso para traballar con valores moi desiguais entre si. A escala logarítmica permite obter espazos idénticos entre as liñas da grade do eixe. Os valores, porén, son variábeis."
#: 05040201.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"hd_id1006200801024782\n"
"help.text"
msgid "Axis line"
-msgstr "Liña do eixo"
+msgstr "Liña do eixe"
#: 05040202.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3150397\n"
"help.text"
msgid "Specifies whether the marks are to be on the inner or outer side of the axis. It is possible to combine both: you will then see marks on both sides."
-msgstr "Especifica se as marcas deben estar na parte interna ou externa do eixo. É posíbel combinar as dúas e, nese caso, poderá ver as marcas en ambos os lados."
+msgstr "Especifica se as marcas deben estar na parte interna ou externa do eixe. É posíbel combinar as dúas e, nese caso, poderá ver as marcas en ambos os lados."
#: 05040202.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3153120\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_OUTER\">Specifies that marks are placed on the outer side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_OUTER\">Especifica que as marcas deben colocarse na parte exterior do eixo.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_TICKS_OUTER\">Especifica que as marcas deben colocarse na parte exterior do eixe.</ahelp>"
#: 05040202.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3146885\n"
"help.text"
msgid "This area is used to define the marking dashes between the axis marks. It is possible to activate both fields. This will result in a marking line running from the outside to the inside."
-msgstr "Esta área utilízase para definir os trazos de marcación entre as marcas do eixo. É posíbel activar ambos os campos, e nese caso aparecerá unha liña de marcación desde a parte exterior cara a interior."
+msgstr "Esta área utilízase para definir os trazos de marcación entre as marcas do eixe. É posíbel activar ambos os campos, e nese caso aparecerá unha liña de marcación desde a parte exterior cara a interior."
#: 05040202.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3146880\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_INNER\">Specifies that minor interval marks are placed on the inner side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_INNER\">Especifica que as marcas de intervalo secundario deben colocarse na parte interior do eixo.</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_INNER\">Especifica que as marcas de intervalo secundario deben colocarse na parte interior do eixe.</ahelp>"
#: 05040202.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_OUTER\">Specifies that minor interval marks are placed on the outer side of the axis.</ahelp>"
-msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_OUTER\">Especifica que as marcas de intervalo secundario deben colocarse na parte exterior do eixo .</ahelp>"
+msgstr "<ahelp hid=\"modules/schart/ui/tp_AxisPositions/CB_MINOR_OUTER\">Especifica que as marcas de intervalo secundario deben colocarse na parte exterior do eixe.</ahelp>"
#: 05040202.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"bm_id3155602\n"
"help.text"
msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
-msgstr "<bookmark_value>grades; formatado de eixos</bookmark_value><bookmark_value>eixos; formatado de grades</bookmark_value>"
+msgstr "<bookmark_value>grades; formatado de eixes</bookmark_value><bookmark_value>eixes; formatado de grades</bookmark_value>"
#: 05050000.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"hd_id3150045\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grade principal do eixo X\">Grade principal do eixo X</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">Grade principal do eixe X</link>"
#: 05050000.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"hd_id3145228\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grade principal do eixo Y\">Grade principal do eixo Y</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Grade principal do eixe Y</link>"
#: 05050000.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"hd_id3147346\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grade principal do eixo Z\">Grade principal do eixo Z</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Grade principal do eixe Z</link>"
#: 05050000.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"hd_id3154021\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grade secundaria do eixo X\">Grade secundaria do eixo X</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">Grade secundaria do eixe X</link>"
#: 05050000.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"hd_id3150307\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grade secundaria do eixo Y\">Grade secundaria do eixo Y</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Grade secundaria do eixe Y</link>"
#: 05050000.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"hd_id3166428\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Grade secundaria do eixo Z\">Grade secundaria do eixo Z</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Grade secundaria do eixe Z</link>"
#: 05050000.xhp
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"hd_id3145585\n"
"help.text"
msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Todas as grades de eixo\">Todas as grades de eixo</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">Todas as grades de eixe</link>"
#: 05050100.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id5781731\n"
"help.text"
msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
-msgstr "Introduza os valores para a rotación da gráfica en tres eixos e o para a visualización de perspectiva."
+msgstr "Introduza os valores para a rotación da gráfica en tres eixes e o para a visualización de perspectiva."
#: three_d_view.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_id2578203\n"
"help.text"
msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
-msgstr "Os eixos de rotación sempre se relacionan coa páxina, non cos eixos da gráfica. Nisto diferénciase doutros programas de gráficas."
+msgstr "Os eixes de rotación sempre se relacionan coa páxina, non cos eixes da gráfica. Nisto diferénciase doutros programas de gráficas."
#: three_d_view.xhp
msgctxt ""
@@ -4606,7 +4606,7 @@ msgctxt ""
"par_id4721823\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Define a rotación da gráfica no eixo x. A previsualización responde á nova configuración.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Define a rotación da gráfica no eixe x. A previsualización responde á nova configuración.</ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"par_id5806756\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Define a rotación da gráfica no eixo y. A previsualización responde á nova configuración.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Define a rotación da gráfica no eixe y. A previsualización responde á nova configuración.</ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4622,7 +4622,7 @@ msgctxt ""
"par_id8915372\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Define a rotación da gráfica no eixo z. A previsualización responde á nova configuración.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Define a rotación da gráfica no eixe z. A previsualización responde á nova configuración.</ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_id3912778\n"
"help.text"
msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
-msgstr "A previsualización pequena existente dentro deste separador ten dous controis deslizantes para definir a posición horizontal e vertical das fontes de luz seleccionadas. A fonte de luz apunta sempre para o medio do obxecto."
+msgstr "A previsualización pequena existente dentro desta lapela ten dous controis deslizantes para definir a posición horizontal e vertical das fontes de luz seleccionadas. A fonte de luz apunta sempre para o medio do obxecto."
#: three_d_view.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id631733\n"
"help.text"
msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
-msgstr "As gráficas de área mostran os valores en forma de punto no eixo y. O eixo x mostra as categorías. Os valores y de cada serie de datos están conectados por unha liña. A área comprendida entre cada dúas liñas énchese cunha cor. O foco das gráficas de área é para enfatizar as modificacións no paso dunha categoría á seguinte."
+msgstr "As gráficas de área mostran os valores en forma de punto no eixe y. O eixe x mostra as categorías. Os valores y de cada serie de datos están conectados por unha liña. A área comprendida entre cada dúas liñas énchese cunha cor. O foco das gráficas de área é para enfatizar as modificacións no paso dunha categoría á seguinte."
#: type_area.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id2244026\n"
"help.text"
msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
-msgstr "Este tipo mostra unha gráfica ou imaxe de barra con barras verticais. A altura de cada barra é proporcional a este valor. O eixo x mostra categorías. O eixo y mostra o valor para cada categoría."
+msgstr "Este tipo mostra unha gráfica ou imaxe de barra con barras verticais. A altura de cada barra é proporcional a este valor. O eixe X mostra categorías. O eixe Y mostra o valor para cada categoría."
#: type_column_bar.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id6596881\n"
"help.text"
msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
-msgstr "Este tipo mostra unha gráfica de barra ou unha imaxe de barra con barras horizontais. A lonxitude de cada barra é proporcional a este valor. O eixo y mostra categorías. O eixo x mostra o valor para cada categoría."
+msgstr "Este tipo mostra unha gráfica de barra ou unha imaxe de barra con barras horizontais. A lonxitude de cada barra é proporcional a este valor. O eixe Y mostra categorías. O eixe X mostra o valor para cada categoría."
#: type_column_bar.xhp
msgctxt ""
@@ -5190,7 +5190,7 @@ msgctxt ""
"par_id1842097\n"
"help.text"
msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
-msgstr "Pode inserir un segundo eixo y mediante <link href=\"text/schart/01/04040000.xhp\">Inserir - Eixos</link>tras finalizar o asistente."
+msgstr "Pode inserir un segundo eixe Y mediante <link href=\"text/schart/01/04040000.xhp\">Inserir - Eixes</link>tras finalizar o asistente."
#: type_column_line.xhp
msgctxt ""
@@ -5366,7 +5366,7 @@ msgctxt ""
"par_id301828\n"
"help.text"
msgid "The values in the Categories range will be shown as labels on the x axis."
-msgstr "Os valores no intervalo de categorías mostraranse como etiquetas no eixo x."
+msgstr "Os valores no intervalo de categorías mostraranse como etiquetas no eixe X."
#: type_column_line.xhp
msgctxt ""
@@ -5502,7 +5502,7 @@ msgctxt ""
"par_id2334665\n"
"help.text"
msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
-msgstr "As gráficas de liña mostran valores en forma de puntos no eixo y. O eixo x mostra categorías. Os valores y de cada serie de datos poden conectarse cunha liña."
+msgstr "As gráficas de liña mostran valores en forma de puntos no eixe Y. O eixe X mostra categorías. Os valores Y de cada serie de datos poden conectarse cunha liña."
#: type_line.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_id4191717\n"
"help.text"
msgid "Because measurement for transaction volume might be \"units\", a second y axis is introduced in chart Type 3 and Type 4. The price axis is shown on the right side and the volume axis on the left side."
-msgstr "Debido a que a medida do volume da transacción pode ser \"unidades\", introdúcese un segundo eixo y nas gráficas Tipo 3 e Tipo 4. O eixo do prezo móstrase á dereita e o eixo do volume á esquerda."
+msgstr "Debido a que a medida do volume da transacción pode ser \"unidades\", introdúcese un segundo eixe Y nas gráficas Tipo 3 e Tipo 4. O eixe do prezo móstrase á dereita e o eixe do volume á esquerda."
#: type_stock.xhp
msgctxt ""
@@ -6558,7 +6558,7 @@ msgctxt ""
"par_id1336710\n"
"help.text"
msgid "scale the x‑axis"
-msgstr "escalar o eixo‑x"
+msgstr "escalar o eixe X"
#: type_xy.xhp
msgctxt ""
@@ -6902,7 +6902,7 @@ msgctxt ""
"par_id130008\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the x-axis (horizontal).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixo x (horizontal).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixe X (horizontal).</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -6910,7 +6910,7 @@ msgctxt ""
"par_id5821710\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the y-axis (vertical).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixo y (vertical).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixe Y (vertical).</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -6918,7 +6918,7 @@ msgctxt ""
"par_id2871791\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixo z. Esta opción só está dispoñíbel para as gráficas tridimensionais.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixe Z. Esta opción só está dispoñíbel para as gráficas tridimensionais.</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -6982,7 +6982,7 @@ msgctxt ""
"par_id6917020\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixo z. Esta opción só está dispoñíbel para as gráficas tridimensionais.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixe Z. Esta opción só está dispoñíbel para as gráficas tridimensionais.</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -7030,7 +7030,7 @@ msgctxt ""
"par_id3614917\n"
"help.text"
msgid "If you enter text for a title, subtitle, or any axis, the necessary space will be reserved to display the text next to the chart. If you do not enter a text, no space will be reserved, leaving more space to display the chart."
-msgstr "Se introduce texto para un título, subtítulo ou calquera eixo, o espazo necesario reservarase para mostrar o texto ao lado da gráfica. Se non introduce un texto, o espazo non se reservará, deixando máis espazo para mostrar a gráfica."
+msgstr "Se introduce texto para un título, subtítulo ou calquera eixe, o espazo necesario reservarase para mostrar o texto ao lado da gráfica. Se non introduce un texto, o espazo non se reservará, deixando máis espazo para mostrar a gráfica."
#: wiz_chart_elements.xhp
msgctxt ""
@@ -7110,7 +7110,7 @@ msgctxt ""
"par_id7366557\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixo z. Esta opción só está dispoñíbel para as gráficas tridimensionais.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Introducir unha etiqueta para o eixe Z. Esta opción só está dispoñíbel para as gráficas tridimensionais.</ahelp>"
#: wiz_chart_elements.xhp
msgctxt ""
@@ -7126,7 +7126,7 @@ msgctxt ""
"par_id2924283\n"
"help.text"
msgid "The distance of the grid lines corresponds to the interval settings in the Scale tab of the axis properties."
-msgstr "A distancia das liñas de grade corresponde á configuración do intervalo no separador Escala das propiedades do eixo."
+msgstr "A distancia das liñas de grade corresponde á configuración do intervalo no separador Escala das propiedades do eixe."
#: wiz_chart_elements.xhp
msgctxt ""
@@ -7750,7 +7750,7 @@ msgctxt ""
"par_id9500106\n"
"help.text"
msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
-msgstr "Os textos mostraranse no eixo X ou como etiquetas de datos dependendo do tipo de gráfica."
+msgstr "Os textos mostraranse no eixe X ou como etiquetas de datos dependendo do tipo de gráfica."
#: wiz_data_series.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sdraw/guide.po b/source/gl/helpcontent2/source/text/sdraw/guide.po
index f8914972e1b..8c7720a0ed0 100644
--- a/source/gl/helpcontent2/source/text/sdraw/guide.po
+++ b/source/gl/helpcontent2/source/text/sdraw/guide.po
@@ -4,8 +4,8 @@ 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: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-03-26 21:13+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-06-08 09:37+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1490562839.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496914642.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_id3150535\n"
"help.text"
msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
-msgstr "Os obxectos seleccionados distribúense uniformemente ao longo do eixo horizontal ou vertical. Os dous obxectos máis extremos úsanse como puntos de referencia e non se moven cando se aplica a orde <emph>Distribución</emph>."
+msgstr "Os obxectos seleccionados distribúense uniformemente ao longo do eixe horizontal ou vertical. Os dous obxectos máis extremos úsanse como puntos de referencia e non se moven cando se aplica a orde <emph>Distribución</emph>."
#: color_define.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
-msgstr "Escolla <emph>Formato - Área</emph> e prema no separador <emph>Gradacións</emph>."
+msgstr "Escolla <emph>Formato - Área</emph> e prema na lapela <emph>Gradacións</emph>."
#: gradient.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3145592\n"
"help.text"
msgid "Choose <emph>Format - Area</emph> and click the <emph>Gradients</emph> tab."
-msgstr "Escolla <emph>Formato - Área</emph> e prema no separador <emph>Gradacións</emph>."
+msgstr "Escolla <emph>Formato - Área</emph> e prema na lapela <emph>Gradacións</emph>."
#: gradient.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3150659\n"
"help.text"
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
-msgstr "Para axustar a transparencia dun obxecto, seleccióneo, escolla <emph>Formato - Área</emph> e prema no separador <emph>Transparencia</emph>."
+msgstr "Para axustar a transparencia dun obxecto, seleccióneo, escolla <emph>Formato - Área</emph> e prema na lapela <emph>Transparencia</emph>."
#: graphic_insert.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_idN108AF\n"
"help.text"
msgid "On the <emph>Text</emph> tab page, clear the <emph>Fit height to text</emph> checkbox, then select the <emph>Fit to frame</emph> checkbox. Click <emph>OK</emph>."
-msgstr "No separador <emph>Texto</emph>, desmarque a caixa de verificación <emph>Axustar altura ao texto</emph> e marque a caixa <emph>Axustar ao marco</emph>. Prema en <emph>Aceptar</emph>."
+msgstr "Na lapela <emph>Texto</emph>, desmarque a caixa de verificación <emph>Axustar altura ao texto</emph> e marque a caixa <emph>Axustar ao marco</emph>. Prema en <emph>Aceptar</emph>."
#: text_enter.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/00.po b/source/gl/helpcontent2/source/text/shared/00.po
index eadc6b535fd..79c8d3f8d32 100644
--- a/source/gl/helpcontent2/source/text/shared/00.po
+++ b/source/gl/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 13:32+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-08 09:37+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496755953.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1496914651.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3149651\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Desfai as alteracións realizadas no separador, restabelecendo a configuración existente antes de abrir a caixa de diálogo. Non se solicitará confirmación cando se peche a caixa de diálogo.</ahelp>"
+msgstr "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Desfai as alteracións realizadas na lapela, restabelecendo a configuración existente antes de abrir a caixa de diálogo. Non se solicitará confirmación cando se peche a caixa de diálogo.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
-msgstr "<image src=\"svtools/res/up_small.png\" id=\"img_id3154096\"><alt id=\"alt_id3154096\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_id3149412\n"
"help.text"
msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\"><alt id=\"alt_id3147257\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id3151320\n"
"help.text"
msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\"><alt id=\"alt_id3147257\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"par_id3156361\n"
"help.text"
msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
-msgstr "<image src=\"res/sc06301.png\" id=\"img_id3150656\"><alt id=\"alt_id3150656\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"par_id3151357\n"
"help.text"
msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
-msgstr "<image src=\"res/sc06300.png\" id=\"img_id3154363\"><alt id=\"alt_id3154363\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3083285\n"
"help.text"
msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_open.png\" id=\"img_id3147100\"><alt id=\"alt_id3147100\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_id3151189\n"
"help.text"
msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_saveas.png\" id=\"img_id3156318\"><alt id=\"alt_id3156318\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id3152946\n"
"help.text"
msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_exportdirecttopdf.png\" id=\"img_id3155904\"><alt id=\"alt_id3155904\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icona</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_id3160463\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
-msgstr "<ahelp hid=\"\" visibility=\"visible\">Saltar ao seguinte script</ahelp>"
+msgstr ""
#: 00000200.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"par_id388\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Borra o eixo seleccionado.</ahelp>"
+msgstr ""
#: 00000200.xhp
msgctxt ""
@@ -3958,7 +3958,7 @@ msgctxt ""
"par_id3154561\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Borra a grade principal.</ahelp>"
+msgstr ""
#: 00000200.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Borra a lenda da gráfica.</ahelp>"
+msgstr ""
#: 00000200.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_id314949588\n"
"help.text"
msgid "<ahelp hid=\".\">Determines how the number strings are imported.</ahelp>"
-msgstr "<ahelp hid=\"\">Determina a configuración da impresora para as follas de cálculo.</ahelp>"
+msgstr ""
#: 00000208.xhp
msgctxt ""
@@ -5222,7 +5222,7 @@ msgctxt ""
"par_id3150127\n"
"help.text"
msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
-msgstr "<image src=\"res/sc06301.png\" id=\"img_id3150656\"><alt id=\"alt_id3150656\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
-msgstr "<variable id=\"etikettenein\">Escolla <emph>Ficheiro - Novo - Etiquetas, separador Etiquetas</emph></variable>"
+msgstr "<variable id=\"etikettenein\">Escolla a lapela <emph>Ficheiro - Novo - Etiquetas - Etiquetas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3154522\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Format</emph> tab"
-msgstr "Escolla <emph>Ficheiro - Novo - Etiquetas</emph>, separador <emph>Formato</emph>"
+msgstr "Escolla a lapela <emph>Ficheiro - Novo - Etiquetas- Formato</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"par_id3154983\n"
"help.text"
msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
-msgstr "Escolla <emph>Ficheiro - Novo - Tarxetas de visita</emph>, separador <emph>Formato</emph>"
+msgstr "Escolla a lapela <emph>Ficheiro - Novo - Tarxetas de visita - Formato</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5294,7 +5294,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Options</emph> tab"
-msgstr "Escolla <emph>Ficheiro - Novo - Etiquetas</emph>, separador <emph>Opcións</emph>"
+msgstr "Escolla a lapela <emph>Ficheiro - Novo - Etiquetas - Opcións</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
-msgstr "Escolla <emph>Ficheiro - Novo - Tarxetas de visita</emph>, separador <emph>Opcións</emph>"
+msgstr "Escolla a lapela <emph>Ficheiro - Novo - Tarxetas de visita - Opcións</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5318,7 +5318,7 @@ msgctxt ""
"par_id3156346\n"
"help.text"
msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
-msgstr "<variable id=\"visikartform\">Escolla <emph>Ficheiro - Novo - Tarxetas de visita</emph>, separador <emph>Medio</emph></variable>"
+msgstr "<variable id=\"visikartform\">Escolla a lapela<emph>Ficheiro - Novo - Tarxetas de visita - Medio</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5326,7 +5326,7 @@ msgctxt ""
"par_id3152824\n"
"help.text"
msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
-msgstr "<variable id=\"viskartinhalt\">Escolla <emph>Ficheiro - Novo - Tarxetas de visita</emph>, separador <emph>Tarxetas de visita</emph></variable>"
+msgstr "<variable id=\"viskartinhalt\">Escolla a lapela <emph>Ficheiro - Novo - Tarxetas de visita - Tarxetas de visita</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5334,15 +5334,16 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
-msgstr "<variable id=\"viskartpriv\">Escolla <emph>Ficheiro - Novo - Tarxetas de visita </emph>, separador <emph>Privado</emph></variable>"
+msgstr "<variable id=\"viskartpriv\">Escolla a lapela <emph>Ficheiro - Novo - Tarxetas de visita - Privado</emph></variable>"
#: 00000401.xhp
+#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3154897\n"
"help.text"
msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
-msgstr "<variable id=\"viskartgesch\">Escolla <emph>Ficheiro - Novo - Tarxetas de visita</emph>, separador <emph>Emprego</emph></variable>"
+msgstr "<variable id=\"viskartgesch\">Escolla a lapela <emph>Ficheiro - Novo - Tarxetas de visita - Emprego</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5790,7 +5791,7 @@ msgctxt ""
"par_id3156712\n"
"help.text"
msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_saveas.png\" id=\"img_id3156318\"><alt id=\"alt_id3156318\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -5806,7 +5807,7 @@ msgctxt ""
"par_idN10F11\n"
"help.text"
msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_saveas.png\" id=\"img_id3156318\"><alt id=\"alt_id3156318\">Icona</alt></image>"
+msgstr "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -5918,7 +5919,7 @@ msgctxt ""
"par_id3150381\n"
"help.text"
msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
-msgstr "<variable id=\"info2\">Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Xeral</emph></variable>"
+msgstr "<variable id=\"info2\">Escolla a lapela <emph>Ficheiro - Propiedades - Xeral</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5942,7 +5943,7 @@ msgctxt ""
"par_idN11156\n"
"help.text"
msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
-msgstr "Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Xeral</emph>, e prema no botón <emph>Sinaturas dixitais</emph>"
+msgstr "Escolla a lapela <emph>Ficheiro - Propiedades - Xeral</emph>, e prema no botón <emph>Sinaturas dixitais</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5958,7 +5959,7 @@ msgctxt ""
"par_idN11173\n"
"help.text"
msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
-msgstr "<variable id=\"digitalsigsel\">Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Xeral</emph>, e prema no botón <emph>Engadir</emph> </variable>"
+msgstr "<variable id=\"digitalsigsel\">Escolla a lapela <emph>Ficheiro - Propiedades - Xeral</emph>, prema no botón <emph>Sinaturas dixitais</emph>, e prema no botón <emph>Engadir</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5966,7 +5967,7 @@ msgctxt ""
"par_id3150662\n"
"help.text"
msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
-msgstr "<variable id=\"info3\">Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Descrición</emph></variable>"
+msgstr "<variable id=\"info3\">Escolla a lapela <emph>Ficheiro - Propiedades - Descrición</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5974,7 +5975,7 @@ msgctxt ""
"par_id3153792\n"
"help.text"
msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
-msgstr "<variable id=\"info3\">Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Descrición</emph></variable>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
@@ -5982,15 +5983,16 @@ msgctxt ""
"par_id3153701\n"
"help.text"
msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
-msgstr "<variable id=\"info5\">Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Estatísticas</emph></variable>"
+msgstr "<variable id=\"info5\">Escolla a lapela <emph>Ficheiro - Propiedades - Estatísticas</emph></variable>"
#: 00000401.xhp
+#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id315370199\n"
"help.text"
msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
-msgstr "<variable id=\"info2\">Escolla <emph>Ficheiro - Propiedades</emph>, separador <emph>Xeral</emph></variable>"
+msgstr "<variable id=\"infosec\">Escolla a lapela <emph>Ficheiro - Propiedades - Seguridade</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5998,7 +6000,7 @@ msgctxt ""
"par_id3149570\n"
"help.text"
msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
-msgstr "<variable id=\"info6\">Escolla <emph>Ficheiro - Propiedades - </emph>, separador <emph>Internet</emph></variable>"
+msgstr "<variable id=\"info6\">Escolla a lapela <emph>Ficheiro - Propiedades - Internet</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -6022,7 +6024,7 @@ msgctxt ""
"par_idN11366\n"
"help.text"
msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Icona</alt></image>"
+msgstr "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -6062,7 +6064,7 @@ msgctxt ""
"par_idN113AB\n"
"help.text"
msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icona</alt></image>"
+msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -6094,7 +6096,7 @@ msgctxt ""
"par_id3150521\n"
"help.text"
msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_exportdirecttopdf.png\" id=\"img_id3155904\"><alt id=\"alt_id3155904\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -6150,7 +6152,7 @@ msgctxt ""
"par_id3155187\n"
"help.text"
msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_saveas.png\" id=\"img_id3156318\"><alt id=\"alt_id3156318\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -6174,7 +6176,7 @@ msgctxt ""
"par_id3153068\n"
"help.text"
msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150865\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icona</alt></image>"
#: 00000401.xhp
msgctxt ""
@@ -6294,7 +6296,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_alignup.png\" id=\"img_id3155542\"><alt id=\"alt_id3155542\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icona</alt></image>"
#: 00000402.xhp
msgctxt ""
@@ -6326,7 +6328,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_saveas.png\" id=\"img_id3156318\"><alt id=\"alt_id3156318\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icona</alt></image>"
#: 00000402.xhp
msgctxt ""
@@ -6414,7 +6416,7 @@ msgctxt ""
"par_id3154985\n"
"help.text"
msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icona</alt></image>"
#: 00000402.xhp
msgctxt ""
@@ -6454,7 +6456,7 @@ msgctxt ""
"par_id3156106\n"
"help.text"
msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icona</alt></image>"
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icona</alt></image>"
#: 00000402.xhp
msgctxt ""
@@ -6494,7 +6496,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icona</alt></image>"
#: 00000402.xhp
msgctxt ""
@@ -6638,7 +6640,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\"><alt id=\"alt_id3145419\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icona</alt></image>"
#: 00000402.xhp
msgctxt ""
@@ -7070,7 +7072,7 @@ msgctxt ""
"par_id3153808\n"
"help.text"
msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
-msgstr "<variable id=\"eispa\">Escolla <emph>Inserir - Columnas</emph></variable>"
+msgstr "<variable id=\"notiz\">Escolla <emph>Inserir - Comentario</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -7110,7 +7112,7 @@ msgctxt ""
"par_id3149525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Escolla <emph>Formato - Viñetas e numeración - Personalizar</emph>, botón <emph>Carácter</emph></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Escolla o botón <emph>Formato - Viñetas e numeración - Personalizar - Carácter</emph></caseinline></switchinline>"
#: 00000404.xhp
msgctxt ""
@@ -7334,7 +7336,7 @@ msgctxt ""
"par_id3145594\n"
"help.text"
msgid "<image id=\"img_id3144764\" src=\"cmd/lc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
-msgstr "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icona</alt></image>"
+msgstr "<image id=\"img_id3144764\" src=\"cmd/lc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icona</alt></image>"
#: 00000404.xhp
msgctxt ""
@@ -7526,7 +7528,7 @@ msgctxt ""
"par_id3153323\n"
"help.text"
msgid "<image id=\"img_id3154894\" src=\"cmd/sc_gallery.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_showfmexplorer.png\" id=\"img_id3157869\"><alt id=\"alt_id3157869\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154894\" src=\"cmd/sc_gallery.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154894\">Icona</alt></image>"
#: 00000406.xhp
msgctxt ""
@@ -7542,7 +7544,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery </emph>icon on the <emph>Standard</emph> Bar - <emph>New Theme</emph> button - <emph>Files</emph> tab</variable>"
-msgstr "<variable id=\"galleryregisterdateien\">Escolla <emph>Ferramentas - Galería</emph> ou prema sobrea icona <emph>Galería </emph>na barra <emph>Estándar</emph> - botón separador <emph>Novo tema</emph> botón - <emph>Ficheiros</emph> </variable>"
+msgstr "<variable id=\"galleryregisterdateien\">Escolla <emph>Ferramentas - Galería</emph> ou prema sobre a icona <emph>Galería</emph> na barra <emph>Estándar</emph> - botón <emph>Novo tema</emph> - lapela <emph>Ficheiros</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7574,7 +7576,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "<image id=\"img_id3153665\" src=\"cmd/sc_spelling.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153665\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\"><alt id=\"alt_id3153063\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153665\" src=\"cmd/sc_spelling.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153665\">Icona</alt></image>"
#: 00000406.xhp
msgctxt ""
@@ -7950,7 +7952,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab"
-msgstr "Escolla en <emph>Formato - Área</emph> o separador <emph>Cores</emph>"
+msgstr "Escolla a lapela <emph>Formato - Área - Cores</emph>"
#: 00000406.xhp
msgctxt ""
@@ -7958,7 +7960,7 @@ msgctxt ""
"par_id3145729\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab<emph> - Edit</emph> button"
-msgstr "Escolla <emph>Formato - Área</emph>, separador <emph>Cores</emph>, botón <emph>Editar</emph>"
+msgstr "Escolla a lapela <emph>Formato - Área - Cores</emph>, botón <emph>Editar</emph>"
#: 00000406.xhp
msgctxt ""
@@ -7966,7 +7968,7 @@ msgctxt ""
"par_id3149488\n"
"help.text"
msgid "Choose <emph>Format - 3D Effects</emph> icon on the <emph>Illumination</emph> tab"
-msgstr "Escolla a icona <emph>Formato - Efectos 3D</emph> do separador <emph>Iluminación</emph>"
+msgstr "Escolla a icona <emph>Formato - Efectos 3D</emph> da lapela <emph>Iluminación</emph>"
#: 00000406.xhp
msgctxt ""
@@ -7982,7 +7984,7 @@ msgctxt ""
"par_id3151037\n"
"help.text"
msgid "Select color on the <emph>Color</emph> tab page"
-msgstr "Seleccione a cor no separador <emph>Cores</emph>"
+msgstr "Seleccione a cor na lapela <emph>Cores</emph>"
#: 00000406.xhp
msgctxt ""
@@ -8822,7 +8824,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\"><alt id=\"alt_id3153063\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icona</alt></image>"
#: 00000450.xhp
msgctxt ""
@@ -8862,7 +8864,7 @@ msgctxt ""
"par_id3157962\n"
"help.text"
msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\"><alt id=\"alt_id3145419\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Iconq</alt></image>"
#: 00000450.xhp
msgctxt ""
@@ -8886,7 +8888,7 @@ msgctxt ""
"par_id3150393\n"
"help.text"
msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\"><alt id=\"alt_id3153063\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icona</alt></image>"
#: 00000450.xhp
msgctxt ""
@@ -8993,12 +8995,13 @@ msgid "Character"
msgstr "Carácter"
#: 00040500.xhp
+#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153935\n"
"help.text"
msgid "Choose <emph>Format - Character - Font</emph> tab"
-msgstr "Escolla <emph>Formato - Carácter</emph>, separador <emph>Fonte</emph>"
+msgstr "Escolla a lapela <emph>Formato - Carácter - Fonte</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9081,12 +9084,13 @@ msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> butto
msgstr "Menú <emph>Formato - Páxina - Cabeceira/Pé de páxina</emph>, botón <emph>Editar</emph> (Follas)"
#: 00040500.xhp
+#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3153541\n"
"help.text"
msgid "Choose <emph>Format - Character - Position</emph> tab"
-msgstr "Escolla <emph>Formato - Carácter</emph>, separador <emph>Posición</emph>"
+msgstr "Escolla a lapela <emph>Formato - Carácter - Posición</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9105,12 +9109,13 @@ msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> butto
msgstr "Menú <emph>Formato - Páxina - Cabeceira/Pé de páxina</emph>, botón <emph>Editar</emph> (Follas)"
#: 00040500.xhp
+#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id3148550\n"
"help.text"
msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
-msgstr "Escolla <emph>Formato - Carácter</emph>, separador <emph>Deseño asiático</emph>"
+msgstr "Escolla a lapela <emph>Formato - Carácter - Deseño asiático</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9126,7 +9131,7 @@ msgctxt ""
"par_id3153524\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
-msgstr "Escolla <emph>Formato - Parágrafo</emph>, separador <emph>Tipografía asiática</emph> (Non en HTML)"
+msgstr "Escolla a lapela <emph>Formato - Parágrafo - Tipografía asiática</emph> (Non en HTML)"
#: 00040500.xhp
msgctxt ""
@@ -9222,7 +9227,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
-msgstr "Escolla <emph>Formato - Parágrafo</emph>, separador <emph>Tabulacións</emph>"
+msgstr "Escolla a lapela <emph>Formato - Parágrafo - Tabulacións</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9254,7 +9259,7 @@ msgctxt ""
"par_id3156105\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
-msgstr "Escolla <emph>Formato - Parágrafo</emph>, separador <emph>Bordos</emph>"
+msgstr "Escolla a lapela <emph>Formato - Parágrafo - Bordos</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9278,7 +9283,7 @@ msgctxt ""
"par_id3150048\n"
"help.text"
msgid "Choose <emph>Format - Page - Borders</emph> tab"
-msgstr "Escolla <emph>Formato - Páxina</emph>, separador <emph>Bordos</emph>."
+msgstr "Escolla a lapela <emph>Formato - Páxina - Bordos</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9286,7 +9291,7 @@ msgctxt ""
"par_id3151148\n"
"help.text"
msgid "Choose <emph>Format - Character - Borders</emph> tab"
-msgstr "Escolla <emph>Formato - Carácter</emph>, separador <emph>Fonte</emph>"
+msgstr "Escolla a lapela <emph>Formato - Carácter - Bordos</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9342,7 +9347,7 @@ msgctxt ""
"par_id3155853\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
-msgstr "Escolla <emph>Formato - Parágrafo</emph>, separador <emph>Fondo</emph>."
+msgstr "Escolla a lapela <emph>Formato - Parágrafo - Fondo</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9350,7 +9355,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "Choose <emph>Format - Character - Background</emph> tab"
-msgstr "Escolla <emph>Formato - Carácter</emph>, separador <emph>Fondo</emph>"
+msgstr "Escolla a lapela <emph>Formato - Carácter - Fondo</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9358,7 +9363,7 @@ msgctxt ""
"par_id3149486\n"
"help.text"
msgid "Choose <emph>Format - Image - Background</emph> tab"
-msgstr "Escolla <emph>Formato - Páxina</emph>, separador <emph>Fondo</emph>."
+msgstr "Escolla a lapela <emph>Formato - Imaxe - Fondo</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9374,7 +9379,7 @@ msgctxt ""
"par_id3151321\n"
"help.text"
msgid "Choose <emph>Format - Page - Background</emph> tab"
-msgstr "Escolla <emph>Formato - Páxina</emph>, separador <emph>Fondo</emph>."
+msgstr "Escolla a lapela <emph>Formato - Páxina - Fondo</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9406,7 +9411,7 @@ msgctxt ""
"par_id3144747\n"
"help.text"
msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
-msgstr "Escolla <emph>Inserir/Editar - Sección </emph>, separador <emph>Fondo</emph>"
+msgstr "Escolla a lapela <emph>Inserir/Editar - Sección - Fondo</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9422,7 +9427,7 @@ msgctxt ""
"par_id3146791\n"
"help.text"
msgid "Choose <emph>Format - Page - Organizer</emph> tab"
-msgstr "Escolla <emph>Formato - Páxina</emph>, separador <emph>Organizador</emph>."
+msgstr "Escolla a lapela <emph>Formato - Páxina - Organizador</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9438,7 +9443,7 @@ msgctxt ""
"par_id3153357\n"
"help.text"
msgid "Choose <emph>Format - Page - Page</emph> tab"
-msgstr "Escolla <emph>Formato - Páxina</emph>, separador <emph>Páxina</emph>."
+msgstr "Escolla a lapela <emph>Formato - Páxina - Páxina</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9454,7 +9459,7 @@ msgctxt ""
"par_id3155515\n"
"help.text"
msgid "Choose <emph>Format - Page - Header</emph> tab"
-msgstr "Escolla <emph>Formato - Páxina</emph>, separador <emph>Cabeceira</emph>"
+msgstr "Escolla a lapela <emph>Formato - Páxina - Cabeceira</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9622,7 +9627,7 @@ msgctxt ""
"par_id3149735\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
-msgstr "Escolla <emph>Formato - Viñetas e numeración</emph>, separador <emph>Opcións</emph>"
+msgstr "Escolla <emph>Formato - Viñetas e numeración</emph>. Abra a lapela <emph>Opcións</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9646,7 +9651,7 @@ msgctxt ""
"par_id3148888\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
-msgstr "Escolla <emph>Formato - Viñetas e numeración</emph>, separador <emph>Viñetas</emph>"
+msgstr "Escolla a lapela <emph>Formato - Viñetas e numeración - Viñetas</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9670,7 +9675,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
-msgstr "Escolla <emph>Formato - Viñetas e numeración</emph>, separador <emph>Numeración</emph>"
+msgstr "Escolla a lapela <emph>Formato - Viñetas e numeración - Numeración</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9702,7 +9707,7 @@ msgctxt ""
"par_id3155848\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
-msgstr "Escolla <emph>Formato - Viñetas e numeración</emph>, separador <emph>Esquema</emph>"
+msgstr "Escolla a lapela <emph>Formato - Viñetas e numeración - Esquema</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9718,14 +9723,14 @@ msgctxt ""
"par_id3156658\n"
"help.text"
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
-msgstr "Escolla <emph>Formato - </emph><emph>Viñetas e numeración</emph>, separador <emph>Posición</emph>"
+msgstr "Escolla <emph>Formato - Viñetas e numeración</emph>. Abra a lapela <emph>Posición</emph>"
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9754,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9902,7 +9907,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_formproperties.png\" id=\"img_id3148676\"><alt id=\"alt_id3148676\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -9926,7 +9931,7 @@ msgctxt ""
"par_id3144448\n"
"help.text"
msgid "Open Form Controls toolbar or Form Design toolbar, click <emph>Form</emph> icon - <emph>General</emph> tab"
-msgstr "Abra a barra de ferramentas Controis de formulario ou Deseño de formulario e prema na icona <emph>Formulario</emph>, separador <emph>Xeral</emph>"
+msgstr "Abra a barra de ferramentas Controis de formulario ou Deseño de formulario e prema na icona <emph>Formulario</emph>, lapela <emph>Xeral</emph>"
#: 00040501.xhp
msgctxt ""
@@ -10086,7 +10091,7 @@ msgctxt ""
"par_id3156439\n"
"help.text"
msgid "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153530\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_addfield.png\" id=\"img_id3153530\"><alt id=\"alt_id3153530\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153530\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10110,7 +10115,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157869\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_showfmexplorer.png\" id=\"img_id3157869\"><alt id=\"alt_id3157869\">Icona</alt></image>"
+msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157869\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10230,7 +10235,7 @@ msgctxt ""
"par_id3155578\n"
"help.text"
msgid "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3109842\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_bringtofront.png\" id=\"img_id3109842\"><alt id=\"alt_id3109842\">Icona</alt></image>"
+msgstr "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3109842\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10278,7 +10283,7 @@ msgctxt ""
"par_id3151213\n"
"help.text"
msgid "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145220\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_bringtofront.png\" id=\"img_id3145220\"><alt id=\"alt_id3145220\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145220\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10326,7 +10331,7 @@ msgctxt ""
"par_id3159121\n"
"help.text"
msgid "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156142\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_forward.png\" id=\"img_id3156142\"><alt id=\"alt_id3156142\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156142\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10374,7 +10379,7 @@ msgctxt ""
"par_id3152994\n"
"help.text"
msgid "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163723\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_backward.png\" id=\"img_id3163723\"><alt id=\"alt_id3163723\">Icona</alt></image>"
+msgstr "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163723\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10422,7 +10427,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153813\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_sendtoback.png\" id=\"img_id3153813\"><alt id=\"alt_id3153813\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153813\">Icona</alt></image>"
#: 00040501.xhp
msgctxt ""
@@ -10934,7 +10939,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
-msgstr "Escolla <emph>Formato - Título</emph>, separador <emph>Bordos</emph> (gráficas)"
+msgstr "Escolla a lapela <emph>Formato - Título - Bordos</emph> (gráficas)"
#: 00040502.xhp
msgctxt ""
@@ -10942,7 +10947,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
-msgstr "Escolla <emph>Formato - Lenda</emph>, separador <emph>Bordos</emph> (gráficas)"
+msgstr "Escolla a lapela <emph>Formato - Lenda - Bordos</emph> (gráficas)"
#: 00040502.xhp
msgctxt ""
@@ -10950,7 +10955,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
-msgstr "Escolla <emph>Formato - Eixo</emph>, separador <emph>Liña</emph> (gráficas)"
+msgstr "Escolla a lapela <emph>Formato - Eixe - Liña</emph> (gráficas)"
#: 00040502.xhp
msgctxt ""
@@ -10958,7 +10963,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
-msgstr "Escolla <emph>Formato - Grade</emph>, separador <emph>Liña</emph> (gráficas)"
+msgstr "Escolla a lapela <emph>Formato - Grade - Liña</emph> (gráficas)"
#: 00040502.xhp
msgctxt ""
@@ -10966,7 +10971,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
-msgstr "Escolla <emph>Formato - Paredes da gráfica</emph>, separador <emph>Bordos</emph> (gráficas)"
+msgstr "Escolla a lapela <emph>Formato - Paredes da gráfica - Bordos</emph> (gráficas)"
#: 00040502.xhp
msgctxt ""
@@ -10974,7 +10979,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
-msgstr "Escolla <emph>Formato - Base da gráfica</emph>, separador <emph>Bordos</emph> (gráficas)"
+msgstr "Escolla a lapela <emph>Formato - Base da gráfica - Bordos</emph> (gráficas)"
#: 00040502.xhp
msgctxt ""
@@ -11158,7 +11163,7 @@ msgctxt ""
"par_id3148556\n"
"help.text"
msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
-msgstr "Escolla <emph>Formato - Título - Subtítulo</emph>, separador Transparencia (documentos de gráfica)"
+msgstr "Escolla a lapela <emph>Formato - Título - Subtítulo - Transparencia</emph> (documentos de gráfica)"
#: 00040502.xhp
msgctxt ""
@@ -11958,7 +11963,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
-msgstr "Escolla <emph>Formato - Eixo - Eixo Y</emph>, separador <emph>Números</emph> (documentos de gráfica)"
+msgstr "Escolla a lapela <emph>Formato - Eixe - Eixe Y - Números</emph> (documentos de gráfica)"
#: 00040503.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index bfbf4ce1361..a79574ca54e 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-12-24 22:01+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-08 09:38+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482616894.000000\n"
+"X-POOTLE-MTIME: 1496914681.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -25062,7 +25062,7 @@ msgctxt ""
"par_id3153345\n"
"help.text"
msgid "Slants the selected object along an axis that you specify."
-msgstr "Inclina o obxecto seleccionado ao longo dun eixo que debe especificar."
+msgstr "Inclina o obxecto seleccionado ao longo dun eixe que debe especificar."
#: 05230400.xhp
msgctxt ""
@@ -29182,7 +29182,7 @@ msgctxt ""
"par_id3152878\n"
"help.text"
msgid "Click the respective buttons to define the texture for the object Y axis."
-msgstr "Prema nos botóns correspondentes para definir a textura do eixo y do obxecto."
+msgstr "Prema nos botóns correspondentes para definir a textura do eixe Y do obxecto."
#: 05350500.xhp
msgctxt ""
@@ -29505,12 +29505,13 @@ msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribu
msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribución\">Distribución</link>"
#: 05360000.xhp
+#, fuzzy
msgctxt ""
"05360000.xhp\n"
"par_id3149119\n"
"help.text"
msgid "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp></variable>"
-msgstr "<variable id=\"verteilungtext\"> <ahelp hid=\".uno: DistributeSelection\"> Distribúe tres ou máis obxectos seleccionados uniformemente ao longo do eixo horizontal ou eixe vertical. Tamén pode distribuír uniformemente o espazamento entre os obxectos.</ahelp> </variable>"
+msgstr "<variable id=\"verteilungtext\"> <ahelp hid=\".uno: DistributeSelection\"> Distribúe tres ou máis obxectos seleccionados uniformemente ao longo do eixe horizontal ou eixe vertical. Tamén pode distribuír uniformemente o espazamento entre os obxectos.</ahelp> </variable>"
#: 05360000.xhp
msgctxt ""
@@ -34718,7 +34719,7 @@ msgctxt ""
"par_idN10807\n"
"help.text"
msgid "Add Separator"
-msgstr "Engadir separador"
+msgstr "Engadir lapela"
#: 06140100.xhp
msgctxt ""
@@ -40469,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\"> Selecciona a exportar marcadores de documentos do Writer como marcadores do PDF. Os marcadores son creados para todos os parágrafos de contorno (Ferramentas - Esbozo de numeración). Por todas as entradas de sumario para o que se asignar hyperlinks no documento de orixe </ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -42694,7 +42695,7 @@ msgctxt ""
"par_id3994567\n"
"help.text"
msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:"
-msgstr "A configuración do separador <emph>Datos</emph> depende do control. Só verá as opcións dispoñíbeis para o control e contexto actuais. Están dispoñíbeis os seguintes campos:"
+msgstr "A configuración da lapela <emph>Datos</emph> depende do control. Só verá as opcións dispoñíbeis para o control e contexto actuais. Están dispoñíbeis os seguintes campos:"
#: xformsdatatab.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/02.po b/source/gl/helpcontent2/source/text/shared/02.po
index f2f235386d0..e8f5e5e8acb 100644
--- a/source/gl/helpcontent2/source/text/shared/02.po
+++ b/source/gl/helpcontent2/source/text/shared/02.po
@@ -4,8 +4,8 @@ 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: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2016-05-24 10:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-08 09:15+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464087562.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496913350.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3152792\n"
"help.text"
msgid "You can drag and drop controls from one document to another document. You can also copy and paste controls between documents. When you insert a control from another document, $[officename] analyzes the data source, content type, and content properties of the control so that the control fits the logical structure in the target document. For example, a control that displays contents from an address book continues to display the same contents after you copy the control to a different document. You can view these properties on the <emph>Data</emph> tab page of the <emph>Form properties</emph> dialog."
-msgstr "Pode arrastrar e soltar controis dun documento a outro, así como copialos e pegalos. Ao inserir un control doutro documento, $[officename] analiza a fonte de datos, o tipo de contido e as propiedades do contido do control para que encaixe na estrutura lóxica do documento de destino. Por exemplo, un control que mostre o contido dunha axenda de enderezos continuará a facelo tras copialo a outro documento. Pode ver estas propiedades no separador <emph>Datos</emph> situado na caixa de diálogo <emph>Propiedades de formulario</emph>."
+msgstr "Pode arrastrar e soltar controis dun documento a outro, así como copialos e pegalos. Ao inserir un control doutro documento, $[officename] analiza a fonte de datos, o tipo de contido e as propiedades do contido do control para que encaixe na estrutura lóxica do documento de destino. Por exemplo, un control que mostre o contido dunha axenda de enderezos continuará a facelo tras copialo a outro documento. Pode ver estas propiedades na lapela <emph>Datos</emph> situado na caixa de diálogo <emph>Propiedades de formulario</emph>."
#: 01170000.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id710776\n"
"help.text"
msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
-msgstr "Engadindo un botón xiratorio a unha folla de cálculo de Calc, poderá usar o separador Datos para crear unha ligazón de duplo sentido entre o botón xiratorio e unha cela. Desa forma, ao cambiar o contido dun, actualízase o contido do outro."
+msgstr "Engadindo un botón xiratorio a unha folla de cálculo de Calc, poderá usar a lapela Datos para crear unha ligazón de duplo sentido entre o botón xiratorio e unha cela. Desa forma, ao cambiar o contido dun, actualízase o contido do outro."
#: 01170000.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_idN11D63\n"
"help.text"
msgid "In a Calc spreadsheet, you can use the Data tab page to create a two-way link between a scrollbar and a cell."
-msgstr "Nas follas de cálculo de Calc, use o separador Datos para crear unha ligazón de duplo sentido entre a barra de desprazamento e unha cela."
+msgstr "Nas follas de cálculo de Calc, use a lapela Datos para crear unha ligazón de duplo sentido entre a barra de desprazamento e unha cela."
#: 01170000.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id3150318\n"
"help.text"
msgid "Images from a database can be displayed in a form, and new images can be inserted in the database as long as the image control is not write-protected. The control must refer to a database field of the image type. Therefore, enter the data field into the properties window on the <emph>Data</emph> tab page."
-msgstr "Pódense mostrar imaxes de base de datos nos formularios e inserir novas imaxes nas bases de datos sempre que o control de imaxe non estea protexido contra escrita. O control debe facer referencia a un campo de base de datos do mesmo tipo que a imaxe. Introduza o campo de datos na xanela de propiedades do separador <emph>Datos</emph>."
+msgstr "Pódense mostrar imaxes de base de datos nos formularios e inserir novas imaxes nas bases de datos sempre que o control de imaxe non estea protexido contra escrita. O control debe facer referencia a un campo de base de datos do mesmo tipo que a imaxe. Introduza o campo de datos na xanela de propiedades da lapela <emph>Datos</emph>."
#: 01170000.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "This <emph>General </emph>tab enables you to define the general properties of a form control. These properties differ, depending on the control type. Not all of the following properties are available for every control."
-msgstr "O separador <emph>Xeral </emph>permítelle definir as propiedades xerais dun control de formulario. Estas propiedades dependen do tipo de control. Non todas as propiedades mostradas a continuación están dispoñíbeis para todos os controis."
+msgstr "A lapela <emph>Xeral </emph>permítelle definir as propiedades xerais dun control de formulario. Estas propiedades dependen do tipo de control. Non todas as propiedades mostradas a continuación están dispoñíbeis para todos os controis."
#: 01170101.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "Note that the list entries entered here are only incorporated into the form if, on the <emph>Data</emph> tab under <emph>List Content Type</emph>, the option \"Value List\" is selected."
-msgstr "Lembre que as entradas da lista introducidas aquí só se incorporan ao formulario se seleccionou a opción \"Lista de valores\" situada no separador <emph>Datos</emph>, en <emph>Tipo de contido da lista</emph>."
+msgstr "Lembre que as entradas da lista introducidas aquí só se incorporan ao formulario se seleccionou a opción \"Lista de valores\" situada na lapela <emph>Datos</emph>, en <emph>Tipo de contido da lista</emph>."
#: 01170101.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3150511\n"
"help.text"
msgid "For HTML documents, a list entry entered on the <emph>General</emph> tab corresponds to the HTML tag <OPTION>; an entry of the value list entered on the <emph>Data</emph> tab under <emph>List Contents</emph> corresponds to the <OPTION VALUE=...> tag."
-msgstr "Nos documentos HTML, unha entrada de lista introducida no separador <emph>Xeral</emph> correspóndese coa etiqueta HTML <OPTION>; unha entrada da lista de valores introducida no separador <emph>Datos</emph>, en <emph>Contido da lista</emph>, correspóndese coa etiqueta <OPTION VALUE=...>."
+msgstr "Nos documentos HTML, unha entrada de lista introducida na lapela <emph>Xeral</emph> correspóndese coa etiqueta HTML <OPTION>; unha entrada da lista de valores introducida na lapela <emph>Datos</emph>, en <emph>Contido da lista</emph>, correspóndese coa etiqueta <OPTION VALUE=...>."
#: 01170101.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "The<emph> Data </emph>tab page allows you to assign a data source to the selected control."
-msgstr "O separador<emph> Datos </emph>permítelle atribuír unha fonte de datos ao control seleccionado."
+msgstr "A lapela <emph>Datos</emph>permítelle atribuír unha fonte de datos ao control seleccionado."
#: 01170102.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "For forms with database links, the associated database is defined in the <link href=\"text/shared/02/01170200.xhp\" name=\"Form Properties\">Form Properties</link>. You will find the functions for this on the <link href=\"text/shared/02/01170203.xhp\" name=\"Data\"><emph>Data</emph></link> tab page."
-msgstr "As bases de datos asociadas a formularios defínense nas <link href=\"text/shared/02/01170200.xhp\" name=\"Propiedades de formulario\">Propiedades de formulario</link>. Encontrará as funcións necesarias no separador <link href=\"text/shared/02/01170203.xhp\" name=\"Datos\"><emph>Datos</emph></link>."
+msgstr "As bases de datos asociadas a formularios defínense nas <link href=\"text/shared/02/01170200.xhp\" name=\"Propiedades de formulario\">Propiedades de formulario</link>. Encontrará as funcións necesarias na lapela <link href=\"text/shared/02/01170203.xhp\" name=\"Datos\"><emph>Datos</emph></link>."
#: 01170102.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id3149377\n"
"help.text"
msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:"
-msgstr "A configuración do separador <emph>Datos</emph> depende do control. Só verá as opcións dispoñíbeis para o control e contexto actuais. Están dispoñíbeis os seguintes campos:"
+msgstr "A configuración da lapela <emph>Datos</emph> depende do control. Só verá as opcións dispoñíbeis para o control e contexto actuais. Están dispoñíbeis os seguintes campos:"
#: 01170102.xhp
msgctxt ""
@@ -5142,7 +5142,7 @@ msgctxt ""
"par_id3151186\n"
"help.text"
msgid "If you work with reference values of a value list, the contents of the data field that you specified under <emph>Data Field</emph> in the form are not visible, but rather the assigned values. If you chose \"Valuelist\" on the <emph>Data</emph> tab under <emph>Type of list contents</emph> and assigned a reference value to the visible list entries in the form under <emph>List entries</emph> (entered in the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab), then the reference values are compared with the data content of the given data field. If a reference value corresponds to the content of a data field, the associated list entries are displayed in the form."
-msgstr "Se traballa con valores referenciais dunha lista de valores, pode ver os valores atribuídos, mais non o contido do campo de datos especificado no formulario en <emph>Campo de datos</emph>. Se escolle \"Lista de valores\" no separador <emph>Datos</emph>, en <emph>Tipo de contido da lista</emph>, e atribúe un valor referencial ás entradas da lista visíbeis no formulario en <emph>Entradas de lista</emph> (no separador <link href=\"text/shared/02/01170101.xhp\" name=\"Xeral\"><emph>Xeral</emph></link>), os valores referenciais compáranse co contido dos datos do campo de datos especificado. Se un valor referencial se corresponde co contido dun campo de datos, as entradas da lista asociadas móstranse no formulario."
+msgstr "Se traballa con valores referenciais dunha lista de valores, pode ver os valores atribuídos, mais non o contido do campo de datos especificado no formulario en <emph>Campo de datos</emph>. Se escolle \"Lista de valores\" na lapela <emph>Datos</emph>, en <emph>Tipo de contido da lista</emph>, e atribúe un valor referencial ás entradas da lista visíbeis no formulario en <emph>Entradas de lista</emph> (na lapela <link href=\"text/shared/02/01170101.xhp\" name=\"Xeral\"><emph>Xeral</emph></link>), os valores referenciais compáranse co contido dos datos do campo de datos especificado. Se un valor referencial se corresponde co contido dun campo de datos, as entradas da lista asociadas móstranse no formulario."
#: 01170102.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153326\n"
"help.text"
msgid "With the \"Valuelist\" option, all entries entered in the <emph>List entries</emph> field of the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab appear in the control. For database forms, you can use reference values (see the <link href=\"text/shared/02/01170102.xhp\" name=\" References Using Value Lists\"><emph>References Using Value Lists</emph></link> section)."
-msgstr "A opción \"Lista de valores\" determina que aparezan no control as entradas introducidas no campo <emph>Entradas de lista</emph> do separador <link href=\"text/shared/02/01170101.xhp\" name=\"Xeral\"><emph>Xeral</emph></link>. En formularios de bases de datos pode usar valores referenciais (consulte a sección <link href=\"text/shared/02/01170102.xhp\" name=\" Referencias mediante listas de valores\"><emph>Referencias a través de listas de valores</emph></link>)."
+msgstr "A opción \"Lista de valores\" determina que aparezan no control as entradas introducidas no campo <emph>Entradas de lista</emph> da lapela <link href=\"text/shared/02/01170101.xhp\" name=\"Xeral\"><emph>Xeral</emph></link>. En formularios de bases de datos pode usar valores referenciais (consulte a sección <link href=\"text/shared/02/01170102.xhp\" name=\" Referencias mediante listas de valores\"><emph>Referencias a través de listas de valores</emph></link>)."
#: 01170102.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/guide.po b/source/gl/helpcontent2/source/text/shared/guide.po
index 41f9a5353bb..00c5b2b96c9 100644
--- a/source/gl/helpcontent2/source/text/shared/guide.po
+++ b/source/gl/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-07-06 02:17+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-08 09:42+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467771434.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496914935.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Chart Axes"
-msgstr "Editar eixos de gráfica"
+msgstr "Editar eixes de gráfica"
#: chart_axis.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"bm_id3155555\n"
"help.text"
msgid "<bookmark_value>charts; editing axes</bookmark_value><bookmark_value>axes in charts</bookmark_value><bookmark_value>editing; chart axes</bookmark_value><bookmark_value>formatting; axes in charts</bookmark_value>"
-msgstr "<bookmark_value>gráfica; editar eixos</bookmark_value><bookmark_value>eixos en gráficas</bookmark_value><bookmark_value>editar; eixos de gráfica</bookmark_value><bookmark_value>formatado; eixos en gráficas</bookmark_value>"
+msgstr "<bookmark_value>gráfica; editar eixes</bookmark_value><bookmark_value>eixes en gráficas</bookmark_value><bookmark_value>editar; eixes de gráfica</bookmark_value><bookmark_value>formatado; eixes en gráficas</bookmark_value>"
#: chart_axis.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Editing Chart Axes\">Editing Chart Axes</link></variable>"
-msgstr "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Editar eixos de gráfica\">Editar eixos de gráfica</link></variable>"
+msgstr "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Editing Chart Axes\">Editar eixes de gráfica</link></variable>"
#: chart_axis.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "To edit the axes of a chart that you have inserted:"
-msgstr "Para editar os eixos dunha gráfica que inseriu:"
+msgstr "Para editar os eixes dunha gráfica que inseriu:"
#: chart_axis.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Choose <emph>Format - Axis</emph>, then select the axis (or axes) that you would like to edit. A dialog appears."
-msgstr "Escolla <emph>Formato - Eixos</emph> e, a seguir, seleccione o eixo (ou eixos) que desexe editar. Aparecerá unha caixa de diálogo."
+msgstr "Escolla <emph>Formato - Eixes</emph> e, a seguir, seleccione o eixe (ou eixes) que desexe editar. Aparecerá unha caixa de diálogo."
#: chart_axis.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "Select from the available sections and make the required changes (for example, select the <emph>Scale</emph> tab if you want to modify the scale of the axis)."
-msgstr "Seleccione entre as seccións dispoñíbeis e faga os cambios requiridos (por exemplo, seleccione o separador <emph>Escala</emph> se desexa modificar a escala dos eixos)."
+msgstr "Seleccione entre as seccións dispoñíbeis e faga os cambios requiridos (por exemplo, seleccione a lapela <emph>Escala</emph> se desexa modificar a escala dos eixes)."
#: chart_axis.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"hd_id3149798\n"
"help.text"
msgid "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\" name=\"Adding Texture to Chart Bars\">Adding Texture to Chart Bars</link></variable>"
-msgstr "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Editar eixos de gráfica\">Editar eixos de gráfica</link></variable>"
+msgstr ""
#: chart_barformat.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index eef685044a8..06e0b77718c 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.po
@@ -3,9 +3,9 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-07-06 02:25+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-08 09:42+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467771929.000000\n"
+"X-POOTLE-MTIME: 1496914967.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
@@ -7998,7 +8006,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of intermediate spaces between grid points on the X-axis.</ahelp>"
-msgstr "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_GRID_NUM_FLD_DIVISION_X\">Especifique o número de puntos intermedios existentes entre os puntos da grade do eixo X.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique o número de puntos intermedios existentes entre os puntos da grade do eixe X.</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -8014,7 +8022,7 @@ msgctxt ""
"par_id3154918\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of intermediate spaces between grid points on the Y-axis.</ahelp>"
-msgstr "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_GRID_NUM_FLD_DIVISION_Y\">Especifique o número de puntos intermedios existentes entre os puntos da grade do eixo Y.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifique o número de puntos intermedios existentes entre os puntos da grade do eixe Y.</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -8022,7 +8030,7 @@ msgctxt ""
"hd_id3149667\n"
"help.text"
msgid "Synchronize axes"
-msgstr "Sincronizar eixos"
+msgstr "Sincronizar eixes"
#: 01050100.xhp
msgctxt ""
@@ -8494,7 +8502,7 @@ msgctxt ""
"hd_id0909200810585881\n"
"help.text"
msgid "Synchronize sheets"
-msgstr "Sincronizar eixos"
+msgstr "Sincronizar follas"
#: 01060100.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/simpress/01.po b/source/gl/helpcontent2/source/text/simpress/01.po
index c30fe90ba20..14f20274450 100644
--- a/source/gl/helpcontent2/source/text/simpress/01.po
+++ b/source/gl/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 20:22+0000\n"
+"PO-Revision-Date: 2017-06-08 14:43+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496780521.000000\n"
+"X-POOTLE-MTIME: 1496933000.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3153817\n"
"help.text"
msgid "If you choose \"HTML Document\" as your file format, the <emph>HTML Export </emph><link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">Wizard</link> appears. This wizard guides you through the export process and includes the option to save the pictures in your presentation in GIF or JPG format."
-msgstr "Se escolle «Documento HTML» como formato de ficheiro, móstrase o <link href=\"text/shared/autopi/01110000.xhp\" name=\"Asistente\">Asistente</link> <emph>de exportación de ficheiros HTML</emph>. O asistente guiarao durante o proceso de exportación e inclúe a opción de gardar as imaxes da presentación nos formatos GIF ou JPG."
+msgstr "Se escolle «Documento HTML» como formato de ficheiro, móstrase o <link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">Asistente</link> <emph>de exportación de ficheiros HTML</emph>. O asistente guiarao durante o proceso de exportación e inclúe a opción de gardar as imaxes da presentación nos formatos GIF ou JPG."
#: 01170000.xhp
msgctxt ""
@@ -1337,12 +1337,13 @@ msgid "<link href=\"text/simpress/01/03060000.xhp\" name=\"Rulers\">Rulers</link
msgstr "<link href=\"text/simpress/01/03060000.xhp\" name=\"Regra\">Regra</link>"
#: 03060000.xhp
+#, fuzzy
msgctxt ""
"03060000.xhp\n"
"par_id3149378\n"
"help.text"
msgid "<ahelp hid=\".\">Displays or hides rulers at the top and left or right edges of the workspace.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowRuler\">Mostra ou oculta as regras colocadas no bordo superior e esquerdo do espazo de traballo.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostra ou oculta as regras colocadas no bordo superior e esquerdo do espazo de traballo.</ahelp>"
#: 03060000.xhp
msgctxt ""
@@ -1566,7 +1567,7 @@ msgctxt ""
"par_id3154491\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to notes view, where you can add notes to your slides.</ahelp> Notes are hidden from the audience when you give your presentation."
-msgstr "<ahelp hid=\"HID_SD_BTN_NOTES\">Activa a visualización da páxina de notas, que permite engadir notas ás diapositivas.</ahelp> A audiencia non ten acceso visual ás notas durante a presentación."
+msgstr "<ahelp hid=\".\">Activa a visualización da páxina de notas, que permite engadir notas ás diapositivas.</ahelp> A audiencia non ten acceso visual ás notas durante a presentación."
#: 03120000.xhp
msgctxt ""
@@ -1742,7 +1743,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to slide master view, where you can add elements that you want to appear on all of the slides that use the same slide master.</ahelp>"
-msgstr "<ahelp hid=\".uno:SlideMasterPage\">Activa a visualización da diapositiva principal, en que pode engadir os elementos que quere que aparezan en todas aquelas diapositivas que utilizan a mesma diapositiva principal.</ahelp>"
+msgstr "<ahelp hid=\".\">Activa a visualización da diapositiva principal, na que pode engadir os elementos que quere que aparezan en todas aquelas diapositivas que utilizan a mesma diapositiva principal.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1806,7 +1807,7 @@ msgctxt ""
"par_id3154491\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the notes master, where you can set the default formatting for notes.</ahelp>"
-msgstr "<ahelp hid=\".uno:NotesMasterPage\">Mostra a nota principal, onde pode definir o formatado predefinido das notas.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostra a nota principal, onde pode definir o formatado predefinido das notas.</ahelp>"
#: 03151000.xhp
msgctxt ""
@@ -2334,7 +2335,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/04010000.xhp\" name=\"New Page/Slide\">New Page/Slide</link>"
-msgstr "<link href=\"text/simpress/01/02130000.xhp\" name=\"Eliminar diapositiva\">Eliminar diapositiva</link>"
+msgstr "<link href=\"text/simpress/01/04010000.xhp\" name=\"New Page/Slide\">Nova páxina/diapositiva</link>"
#: 04010000.xhp
msgctxt ""
@@ -2406,7 +2407,7 @@ msgctxt ""
"par_id3149404\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Enter a name for the new layer.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/sdraw/ui/insertlayer/name\">Introduza un nome para a nova capa.</ahelp>"
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Introduza un nome para a nova capa.</ahelp>"
#: 04020000.xhp
msgctxt ""
@@ -2438,7 +2439,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/visible\">Show or hide the layer.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/sdraw/ui/insertlayer/visible\">Mostrar ou ocultar a capa.</ahelp>"
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/visible\">Mostrar ou ocultar a capa.</ahelp>"
#: 04020000.xhp
msgctxt ""
@@ -3422,7 +3423,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Specifies the properties of the selected table, for example, fonts, font effects, borders, and background.</ahelp></variable>"
-msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifica as propiedades do título seleccionado ou as propiedades de todos os títulos xuntos.</ahelp></variable>"
+msgstr ""
#: 05090000m.xhp
msgctxt ""
@@ -3438,7 +3439,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/simpress/01/06100100.xhp\" name=\"Nova\">Nova</link>"
+msgstr ""
#: 05100000.xhp
msgctxt ""
@@ -3902,7 +3903,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/simpress/01/13180100.xhp\" name=\"Unir\">Unir</link>"
+msgstr "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">Eliminar</link>"
#: 05120500m.xhp
msgctxt ""
@@ -4446,7 +4447,7 @@ msgctxt ""
"par_id3152899\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/LB_TYPE\">Lists the types of connectors that are available.</ahelp> There are four types of connectors: <emph>standard, line, straight, and curved</emph>."
-msgstr "<ahelp visibility=\"visible\" hid=\"cui/ui/connectortabpage/LB_TYPE\">Lista os tipos de conectores dispoñíbeis.</ahelp> Hai catro tipos de conectores: <emph>estándar, lineal, recto e curvo</emph>."
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/LB_TYPE\">Lista os tipos de conectores dispoñíbeis.</ahelp> Hai catro tipos de conectores: <emph>estándar, lineal, recto e curvo</emph>."
#: 05170000.xhp
msgctxt ""
@@ -4542,7 +4543,7 @@ msgctxt ""
"par_id3145238\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_1\">Enter the amount of horizontal space you want at the beginning of the connector.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_1\">Introduza a cantidade de espazo horizontal que quere que haxa no inicio do conector.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_1\">Introduza a cantidade de espazo horizontal que quere que haxa no inicio do conector.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4558,7 +4559,7 @@ msgctxt ""
"par_id3150653\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_1\">Enter the amount of vertical space you want at the beginning of the connector.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_1\">Introduza a cantidade de espazo vertical que quere que haxa no inicio do conector.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_1\">Introduza a cantidade de espazo vertical que quere que haxa no inicio do conector.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4574,7 +4575,7 @@ msgctxt ""
"par_id3148726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_2\">Enter the amount of horizontal space you want at the end of the connector.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_2\">Introduza a cantidade de espazo horizontal que quere que haxa na fin do conector.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_2\">Introduza a cantidade de espazo horizontal que quere que haxa na fin do conector.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4590,7 +4591,7 @@ msgctxt ""
"par_id3155260\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_2\">Enter the amount of vertical space you want at the end of the connector.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_2\">Introduza a cantidade de espazo vertical que quere que haxa na fin do conector.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_2\">Introduza a cantidade de espazo vertical que quere que haxa na fin do conector.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -5062,7 +5063,7 @@ msgctxt ""
"par_id3150363\n"
"help.text"
msgid "<image id=\"img_id3154657\" src=\"media/helpimg/left2.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3154657\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154258\" src=\"sw/imglst/sc20239.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154258\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154657\" src=\"media/helpimg/left2.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3154657\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5086,7 +5087,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3155268\" src=\"media/helpimg/left.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3155268\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154258\" src=\"sw/imglst/sc20239.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154258\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155268\" src=\"media/helpimg/left.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3155268\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5110,7 +5111,7 @@ msgctxt ""
"par_id3153011\n"
"help.text"
msgid "<image id=\"img_id3147250\" src=\"media/helpimg/sistop.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3147250\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147254\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147254\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147250\" src=\"media/helpimg/sistop.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3147250\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5134,7 +5135,7 @@ msgctxt ""
"par_id3153119\n"
"help.text"
msgid "<image id=\"img_id3149352\" src=\"media/helpimg/right.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3149352\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147254\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147254\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149352\" src=\"media/helpimg/right.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3149352\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5158,7 +5159,7 @@ msgctxt ""
"par_id3153932\n"
"help.text"
msgid "<image id=\"img_id3145593\" src=\"media/helpimg/right2.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3145593\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155931\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155931\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145593\" src=\"media/helpimg/right2.png\" width=\"0.2189in\" height=\"0.1874in\"><alt id=\"alt_id3145593\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5254,7 +5255,7 @@ msgctxt ""
"par_id3156068\n"
"help.text"
msgid "<image id=\"img_id3148768\" src=\"sd/res/get1obj.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148768\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153034\" src=\"sd/res/imagelst/nv02.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153034\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148768\" src=\"sd/res/get1obj.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148768\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5294,7 +5295,7 @@ msgctxt ""
"par_id3156257\n"
"help.text"
msgid "<image id=\"img_id3153716\" src=\"sd/res/getallob.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153716\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153034\" src=\"sd/res/imagelst/nv02.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153034\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153716\" src=\"sd/res/getallob.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153716\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5326,7 +5327,7 @@ msgctxt ""
"par_id3152926\n"
"help.text"
msgid "<image id=\"img_id3153210\" src=\"sd/res/del1bmp.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153210\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153034\" src=\"sd/res/imagelst/nv02.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153034\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153210\" src=\"sd/res/del1bmp.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153210\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -5358,7 +5359,7 @@ msgctxt ""
"par_id3147271\n"
"help.text"
msgid "<image id=\"img_id3154049\" src=\"sd/res/delall.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154049\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153034\" src=\"sd/res/imagelst/nv02.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153034\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154049\" src=\"sd/res/delall.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154049\">Icona</alt></image>"
#: 06050000.xhp
msgctxt ""
@@ -6782,7 +6783,7 @@ msgctxt ""
"par_id3154659\n"
"help.text"
msgid "<variable id=\"neu\"><ahelp hid=\".\" visibility=\"visible\">Creates a custom slide show.</ahelp></variable>"
-msgstr "<variable id=\"neu\"><ahelp hid=\"\" visibility=\"visible\">Crea unha presentación personalizada de diapositivas.</ahelp></variable>"
+msgstr "<variable id=\"neu\"><ahelp hid=\".\" visibility=\"visible\">Crea unha presentación personalizada de diapositivas.</ahelp></variable>"
#: 06100100.xhp
msgctxt ""
@@ -6822,7 +6823,7 @@ msgctxt ""
"par_id3152871\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/definecustomslideshow/customname\" visibility=\"visible\">Displays the name of the custom slide show. If you want, you can enter a new name.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/simpress/ui/definecustomslideshow/customname\">Mostra o nome da presentación personalizada . Se o desexa, pode introducir un nome novo.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/definecustomslideshow/customname\" visibility=\"visible\">Mostra o nome da presentación personalizada . Se o desexa, pode introducir un nome novo.</ahelp>"
#: 06100100.xhp
msgctxt ""
@@ -6838,7 +6839,7 @@ msgctxt ""
"par_id3154767\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/definecustomslideshow/pages\" visibility=\"visible\">Lists all of the slides in the order in which they appear in the current document.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/simpress/ui/definecustomslideshow/pages\">Lista todas as diapositivas na orde en que aparecen no documento actual.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/definecustomslideshow/pages\" visibility=\"visible\">Lista todas as diapositivas na orde en que aparecen no documento actual.</ahelp>"
#: 06100100.xhp
msgctxt ""
@@ -7190,7 +7191,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<ahelp hid=\".uno:ConvertInto3DLatheFast\">Creates a three-dimensional shape by rotating the selected object around its vertical axis.</ahelp>"
-msgstr "<ahelp hid=\".uno:ConvertInto3DLatheFast\">Crea unha forma tridimensional xirando o obxecto seleccionado en torno do seu eixo vertical.</ahelp>"
+msgstr "<ahelp hid=\".uno:ConvertInto3DLatheFast\">Crea unha forma tridimensional xirando o obxecto seleccionado en torno do seu eixe vertical.</ahelp>"
#: 13050500.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/simpress/02.po b/source/gl/helpcontent2/source/text/simpress/02.po
index ce8d41b60d3..4e3a8016db8 100644
--- a/source/gl/helpcontent2/source/text/simpress/02.po
+++ b/source/gl/helpcontent2/source/text/simpress/02.po
@@ -4,8 +4,8 @@ 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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-02 11:55+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-06-08 14:45+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462190138.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496933126.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id3148569\n"
"help.text"
msgid "<image id=\"img_id3150205\" src=\"cmd/sc_zoompage.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150205\" src=\"cmd/sc_zoompage.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150205\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150205\" src=\"cmd/sc_zoompage.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\">Icona</alt></image>"
#: 10020000.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3145113\n"
"help.text"
msgid "<image id=\"img_id3153070\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153070\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153070\" src=\"cmd/sc_zoom.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3153070\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153070\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153070\">Icona</alt></image>"
#: 10020000.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3145590\n"
"help.text"
msgid "<image id=\"img_id3145596\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145596\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145596\" src=\"cmd/sc_zoomin.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145596\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145596\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145596\">Icona</alt></image>"
#: 10020000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3153734\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the slide at half its current size.</ahelp>"
-msgstr "<ahelp hid=\".uno:ZoomIn\">Mostra a diapositiva á metade do tamaño actual.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostra a diapositiva á metade do tamaño actual.</ahelp>"
#: 10020000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3145247\n"
"help.text"
msgid "<image id=\"img_id3145355\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145355\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145355\" src=\"cmd/sc_zoomout.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145355\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145355\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145355\">Icona</alt></image>"
#: 10020000.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id3155410\n"
"help.text"
msgid "<image id=\"img_id3155988\" src=\"cmd/sc_zoom100percent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155988\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155988\" src=\"cmd/sc_zoom100percent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155988\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155988\" src=\"cmd/sc_zoom100percent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155988\">Icona</alt></image>"
#: 10020000.xhp
msgctxt ""
@@ -721,12 +721,13 @@ msgid "Each slide has only one pivot point. Double-click an object to move the p
msgstr "As diapositivas teñen un único punto de rotación. Prema dúas veces para mover o punto de rotación cara ao centro do obxecto. Tamén pode arrastrar o punto de rotación a un novo lugar na pantalla, e despois xirar o obxecto."
#: 10030000.xhp
+#, fuzzy
msgctxt ""
"10030000.xhp\n"
"par_id3153914\n"
"help.text"
msgid "If you select a group that includes a 3D object, only the 3D object is rotated. You cannot skew a 3D object, instead, you can rotate it about the X and Y axes by dragging the center handles."
-msgstr "Se selecciona un grupo que conteña un obxecto de 3D, só rodará o obxecto 3D. Non é posíbel inclinar os obxectos en 3D, mais pode facer que xire arredor dos eixos X e Y, arrastrando as agarradoiras centrais."
+msgstr "Se selecciona un grupo que conteña un obxecto de 3D, só rodará o obxecto 3D. Non é posíbel inclinar os obxectos en 3D, mais pode facer que xire arredor dos eixes X e Y, arrastrando as agarradoiras centrais."
#: 10030000.xhp
msgctxt ""
@@ -1054,7 +1055,7 @@ msgctxt ""
"par_id3157876\n"
"help.text"
msgid "<image id=\"img_id3150650\" src=\"cmd/sc_glueinsertpoint.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150650\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150650\" src=\"cmd/sc_glueinsertpoint.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150650\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1086,7 +1087,7 @@ msgctxt ""
"par_id3145165\n"
"help.text"
msgid "<image id=\"img_id3153567\" src=\"cmd/sc_glueescapedirectionleft.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153567\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153567\" src=\"cmd/sc_glueescapedirectionleft.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153567\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1118,7 +1119,7 @@ msgctxt ""
"par_id3153042\n"
"help.text"
msgid "<image id=\"img_id3148386\" src=\"cmd/sc_glueescapedirectiontop.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148386\" src=\"cmd/sc_glueescapedirectiontop.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148386\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1150,7 +1151,7 @@ msgctxt ""
"par_id3155401\n"
"help.text"
msgid "<image id=\"img_id3156256\" src=\"cmd/sc_glueescapedirectionright.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156256\" src=\"cmd/sc_glueescapedirectionright.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156256\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1182,7 +1183,7 @@ msgctxt ""
"par_id3145204\n"
"help.text"
msgid "<image id=\"img_id3150756\" src=\"cmd/sc_glueescapedirectionbottom.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150756\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150756\" src=\"cmd/sc_glueescapedirectionbottom.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150756\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1214,7 +1215,7 @@ msgctxt ""
"par_id3153622\n"
"help.text"
msgid "<image id=\"img_id3153149\" src=\"cmd/sc_gluepercent.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153149\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153679\" src=\"cmd/sc_printpreview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153679\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153149\" src=\"cmd/sc_gluepercent.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153149\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1246,7 +1247,7 @@ msgctxt ""
"par_id3154934\n"
"help.text"
msgid "<image id=\"img_id3148829\" src=\"cmd/sc_gluehorzalignleft.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148829\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148729\" src=\"cmd/sc_rect.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3148729\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148829\" src=\"cmd/sc_gluehorzalignleft.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148829\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1278,7 +1279,7 @@ msgctxt ""
"par_id3148910\n"
"help.text"
msgid "<image id=\"img_id3148919\" src=\"cmd/sc_gluehorzaligncenter.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148919\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148979\" src=\"cmd/sc_circlecut_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148979\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148919\" src=\"cmd/sc_gluehorzaligncenter.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148919\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1310,7 +1311,7 @@ msgctxt ""
"par_id3148627\n"
"help.text"
msgid "<image id=\"img_id3149808\" src=\"cmd/sc_gluehorzalignright.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3149808\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149884\" src=\"cmd/sc_square.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149884\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149808\" src=\"cmd/sc_gluehorzalignright.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3149808\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1342,7 +1343,7 @@ msgctxt ""
"par_id3154481\n"
"help.text"
msgid "<image id=\"img_id3154571\" src=\"cmd/sc_gluevertaligntop.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154571\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154576\" src=\"cmd/sc_zoomoptimal.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154576\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154571\" src=\"cmd/sc_gluevertaligntop.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154571\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1374,7 +1375,7 @@ msgctxt ""
"par_id3150996\n"
"help.text"
msgid "<image id=\"img_id3151106\" src=\"cmd/sc_gluevertaligncenter.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3151106\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151102\" src=\"cmd/sc_interactivegradient.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3151102\">Icona</alt></image>"
+msgstr "<image id=\"img_id3151106\" src=\"cmd/sc_gluevertaligncenter.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3151106\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1406,7 +1407,7 @@ msgctxt ""
"par_id3150644\n"
"help.text"
msgid "<image id=\"img_id3154192\" src=\"cmd/sc_gluevertalignbottom.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154192\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154692\" src=\"cmd/sc_circlecut.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154692\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154192\" src=\"cmd/sc_gluevertalignbottom.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154192\">Icona</alt></image>"
#: 10030200.xhp
msgctxt ""
@@ -1894,7 +1895,7 @@ msgctxt ""
"hd_id3148841\n"
"help.text"
msgid "<link href=\"text/simpress/02/10070000.xhp\" name=\"Ellipse\">Ellipse</link>"
-msgstr "<link href=\"text/simpress/01/04010000.xhp\" name=\"Diapositiva\">Diapositiva</link>"
+msgstr "<link href=\"text/simpress/02/10070000.xhp\" name=\"Ellipse\">Elipse</link>"
#: 10070000.xhp
msgctxt ""
@@ -2681,12 +2682,13 @@ msgid "3D Objects"
msgstr "Obxectos en 3D"
#: 10090000.xhp
+#, fuzzy
msgctxt ""
"10090000.xhp\n"
"par_id3153038\n"
"help.text"
msgid "To rotate a 3D object around any of its three axes, click to select the object, and then click again to display its rotation handles. Drag a handle in the direction you want to rotate the object."
-msgstr "Para rodar un obxecto 3D arredor de calquera dos seus tres eixos, prema no obxecto para seleccionalo e, a seguir, prema novamente para que aparezan as agarradoiras de rotación. Arrastre a agarradoira no sentido en que desexa rodar o obxecto."
+msgstr "Para rodar un obxecto 3D arredor de calquera dos seus tres eixes, prema no obxecto para seleccionalo e, a seguir, prema novamente para que aparezan as agarradoiras de rotación. Arrastre a agarradoira no sentido en que desexa rodar o obxecto."
#: 10090000.xhp
msgctxt ""
@@ -2966,7 +2968,7 @@ msgctxt ""
"par_id3155445\n"
"help.text"
msgid "<image id=\"img_id3149018\" src=\"cmd/sc_connector.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3149018\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_cone.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149018\" src=\"cmd/sc_connector.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3149018\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3062,7 +3064,7 @@ msgctxt ""
"par_id3150743\n"
"help.text"
msgid "<image id=\"img_id3153037\" src=\"cmd/sc_connector.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153037\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153936\" src=\"cmd/sc_circle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153936\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153037\" src=\"cmd/sc_connector.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153037\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3094,7 +3096,7 @@ msgctxt ""
"par_id3155930\n"
"help.text"
msgid "<image id=\"img_id3150021\" src=\"cmd/sc_connectorarrowstart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150021\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_linearrowstart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150021\" src=\"cmd/sc_connectorarrowstart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150021\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3126,7 +3128,7 @@ msgctxt ""
"par_id3150930\n"
"help.text"
msgid "<image id=\"img_id3150936\" src=\"cmd/sc_connectorarrowend.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150936\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150936\" src=\"cmd/sc_bezierfill.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150936\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150936\" src=\"cmd/sc_connectorarrowend.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150936\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3158,7 +3160,7 @@ msgctxt ""
"par_id3155987\n"
"help.text"
msgid "<image id=\"img_id3153720\" src=\"cmd/sc_connectorarrows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153720\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153722\" src=\"cmd/sc_circlepie.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153722\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153720\" src=\"cmd/sc_connectorarrows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153720\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3190,7 +3192,7 @@ msgctxt ""
"par_id3147565\n"
"help.text"
msgid "<image id=\"img_id3147572\" src=\"cmd/sc_connectorcirclestart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147572\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147510\" src=\"cmd/sc_square_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3147510\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147572\" src=\"cmd/sc_connectorcirclestart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147572\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3222,7 +3224,7 @@ msgctxt ""
"par_id3143234\n"
"help.text"
msgid "<image id=\"img_id3149289\" src=\"cmd/sc_connectorcircleend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149289\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159186\" src=\"cmd/sc_rect_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3159186\">Icona</alt></image>"
+msgstr "<image id=\"img_id3149289\" src=\"cmd/sc_connectorcircleend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149289\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3254,7 +3256,7 @@ msgctxt ""
"par_id3158400\n"
"help.text"
msgid "<image id=\"img_id3154203\" src=\"cmd/sc_connectortoolbox.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154203\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154933\" src=\"cmd/sc_shear.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154933\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154203\" src=\"cmd/sc_connectortoolbox.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154203\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3286,7 +3288,7 @@ msgctxt ""
"par_id3150705\n"
"help.text"
msgid "<image id=\"img_id3153679\" src=\"cmd/sc_connectorlines.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153679\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153679\" src=\"cmd/sc_printpreview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153679\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153679\" src=\"cmd/sc_connectorlines.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153679\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3318,7 +3320,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "<image id=\"img_id3150629\" src=\"cmd/sc_connectorlinesarrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150629\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_linearrowstart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150629\" src=\"cmd/sc_connectorlinesarrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150629\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3350,7 +3352,7 @@ msgctxt ""
"par_id3150347\n"
"help.text"
msgid "<image id=\"img_id3150357\" src=\"cmd/sc_connectorlinesarrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150357\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150467\" src=\"cmd/sc_rect_rounded.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150467\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150357\" src=\"cmd/sc_connectorlinesarrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150357\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3382,7 +3384,7 @@ msgctxt ""
"par_id3150972\n"
"help.text"
msgid "<image id=\"img_id3150982\" src=\"cmd/sc_connectorlinesarrows.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150982\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150882\" src=\"cmd/sc_crookrotate.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150882\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150982\" src=\"cmd/sc_connectorlinesarrows.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150982\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3414,7 +3416,7 @@ msgctxt ""
"par_id3151274\n"
"help.text"
msgid "<image id=\"img_id3151284\" src=\"cmd/sc_connectorlinescirclestart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151284\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154254\" src=\"cmd/sc_outlineformat.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154254\">Icona</alt></image>"
+msgstr "<image id=\"img_id3151284\" src=\"cmd/sc_connectorlinescirclestart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151284\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3446,7 +3448,7 @@ msgctxt ""
"par_id3149578\n"
"help.text"
msgid "<image id=\"img_id3151326\" src=\"cmd/sc_connectorlinescircleend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151326\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159186\" src=\"cmd/sc_rect_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3159186\">Icona</alt></image>"
+msgstr "<image id=\"img_id3151326\" src=\"cmd/sc_connectorlinescircleend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151326\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3478,7 +3480,7 @@ msgctxt ""
"par_id3151262\n"
"help.text"
msgid "<image id=\"img_id3154834\" src=\"cmd/sc_connectorlinecircles.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154834\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154254\" src=\"cmd/sc_outlineformat.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154254\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154834\" src=\"cmd/sc_connectorlinecircles.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154834\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3510,7 +3512,7 @@ msgctxt ""
"par_id3148981\n"
"help.text"
msgid "<image id=\"img_id3154223\" src=\"cmd/sc_connectorline.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154223\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154933\" src=\"cmd/sc_shear.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154933\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154223\" src=\"cmd/sc_connectorline.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154223\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3542,7 +3544,7 @@ msgctxt ""
"par_id3152775\n"
"help.text"
msgid "<image id=\"img_id3156188\" src=\"cmd/sc_connectorlinearrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156188\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151178\" src=\"cmd/sc_linearrowstart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151178\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156188\" src=\"cmd/sc_connectorlinearrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156188\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3574,7 +3576,7 @@ msgctxt ""
"par_id3147072\n"
"help.text"
msgid "<image id=\"img_id3147082\" src=\"cmd/sc_connectorlinearrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147082\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149152\" src=\"cmd/sc_linecirclearrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149152\">Icona</alt></image>"
+msgstr "<image id=\"img_id3147082\" src=\"cmd/sc_connectorlinearrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147082\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3606,7 +3608,7 @@ msgctxt ""
"par_id3151027\n"
"help.text"
msgid "<image id=\"img_id3151037\" src=\"cmd/sc_connectorlinearrows.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151037\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150467\" src=\"cmd/sc_rect_rounded.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150467\">Icona</alt></image>"
+msgstr "<image id=\"img_id3151037\" src=\"cmd/sc_connectorlinearrows.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151037\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3638,7 +3640,7 @@ msgctxt ""
"par_id3156370\n"
"help.text"
msgid "<image id=\"img_id3156380\" src=\"cmd/sc_connectorlinecirclestart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156380\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156380\" src=\"cmd/sc_connectorlinecirclestart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156380\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3670,7 +3672,7 @@ msgctxt ""
"par_id3155912\n"
"help.text"
msgid "<image id=\"img_id3155922\" src=\"cmd/sc_connectorlinecircleend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155922\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151102\" src=\"cmd/sc_interactivegradient.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3151102\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155922\" src=\"cmd/sc_connectorlinecircleend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155922\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3702,7 +3704,7 @@ msgctxt ""
"par_id3150112\n"
"help.text"
msgid "<image id=\"img_id3150122\" src=\"cmd/sc_connectorlinecircles.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150122\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159186\" src=\"cmd/sc_rect_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3159186\">Icona</alt></image>"
+msgstr "<image id=\"img_id3150122\" src=\"cmd/sc_connectorlinecircles.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3150122\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3734,7 +3736,7 @@ msgctxt ""
"par_id3146139\n"
"help.text"
msgid "<image id=\"img_id3146149\" src=\"cmd/sc_connectorcurve.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3146149\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149129\" src=\"cmd/sc_animationmode.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149129\">Icona</alt></image>"
+msgstr "<image id=\"img_id3146149\" src=\"cmd/sc_connectorcurve.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3146149\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3766,7 +3768,7 @@ msgctxt ""
"par_id3146914\n"
"help.text"
msgid "<image id=\"img_id3154807\" src=\"cmd/sc_connectorcurvearrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154807\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151102\" src=\"cmd/sc_interactivegradient.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3151102\">Icona</alt></image>"
+msgstr "<image id=\"img_id3154807\" src=\"cmd/sc_connectorcurvearrowstart.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3154807\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3798,7 +3800,7 @@ msgctxt ""
"par_id3145215\n"
"help.text"
msgid "<image id=\"img_id3145225\" src=\"cmd/sc_connectorcurvearrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3145225\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147224\" src=\"cmd/sc_linearrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147224\">Icona</alt></image>"
+msgstr "<image id=\"img_id3145225\" src=\"cmd/sc_connectorcurvearrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3145225\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3830,7 +3832,7 @@ msgctxt ""
"par_id3148438\n"
"help.text"
msgid "<image id=\"img_id3148448\" src=\"cmd/sc_connectorcurvearrows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148448\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149152\" src=\"cmd/sc_linecirclearrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149152\">Icona</alt></image>"
+msgstr "<image id=\"img_id3148448\" src=\"cmd/sc_connectorcurvearrows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3148448\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3862,7 +3864,7 @@ msgctxt ""
"par_id3153291\n"
"help.text"
msgid "<image id=\"img_id3153301\" src=\"cmd/sc_connectorcurvecirclestart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153301\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156385\" src=\"cmd/sc_helplinesvisible.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156385\">Icona</alt></image>"
+msgstr "<image id=\"img_id3153301\" src=\"cmd/sc_connectorcurvecirclestart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153301\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3894,7 +3896,7 @@ msgctxt ""
"par_id3154724\n"
"help.text"
msgid "<image id=\"img_id3156097\" src=\"cmd/sc_connectorcurvecircleend.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156097\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156066\" src=\"cmd/sc_linearrowcircle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156066\">Icona</alt></image>"
+msgstr "<image id=\"img_id3156097\" src=\"cmd/sc_connectorcurvecircleend.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156097\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3926,7 +3928,7 @@ msgctxt ""
"par_id3155588\n"
"help.text"
msgid "<image id=\"img_id3155598\" src=\"cmd/sc_connectorcurvecircles.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3155598\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156066\" src=\"cmd/sc_linearrowcircle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156066\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155598\" src=\"cmd/sc_connectorcurvecircles.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3155598\">Icona</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -5054,7 +5056,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155962\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icona</alt></image>"
+msgstr "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155962\">Icona</alt></image>"
#: 13090000.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/simpress/guide.po b/source/gl/helpcontent2/source/text/simpress/guide.po
index a4f77671c9d..0e96a7a599d 100644
--- a/source/gl/helpcontent2/source/text/simpress/guide.po
+++ b/source/gl/helpcontent2/source/text/simpress/guide.po
@@ -4,8 +4,8 @@ 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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-05-08 01:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-08 14:46+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462671334.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496933163.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -217,12 +217,13 @@ msgid "To convert a 2D object to a 3D rotation object:"
msgstr "Para converter obxectos 2D en obxectos de rotación 3D:"
#: 3d_create.xhp
+#, fuzzy
msgctxt ""
"3d_create.xhp\n"
"par_id3154260\n"
"help.text"
msgid "A 3D rotation object is created by rotating the selected object around its vertical axis."
-msgstr "Os obxectos de rotación 3D créanse rodando o obxecto seleccionado arredor do eixo vertical."
+msgstr "Os obxectos de rotación 3D créanse rodando o obxecto seleccionado arredor do eixe vertical."
#: 3d_create.xhp
msgctxt ""
@@ -526,7 +527,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "Choose <emph>Slide Show - Custom Animation</emph>, click <emph>Add</emph>, and then select an animation effect."
-msgstr "Escolla <emph>Presentación de diapositivas - Animación personalizada</emph> e seleccione un efecto de animación."
+msgstr "Escolla <emph>Presentación de diapositivas - Animación personalizada</emph>, prema <emph>Engadir</emph> e seleccione un efecto de animación."
#: animated_objects.xhp
msgctxt ""
@@ -2286,7 +2287,7 @@ msgctxt ""
"par_id3153964\n"
"help.text"
msgid "Click <emph>OK</emph>. The new layer automatically becomes the active layer."
-msgstr "Prema en Aceptar. A nova capa tórnase automaticamente capa activa."
+msgstr "Prema en <emph>Aceptar</emph>. A nova capa tórnase automaticamente capa activa."
#: layer_new.xhp
msgctxt ""
@@ -4262,7 +4263,7 @@ msgctxt ""
"par_id3150431\n"
"help.text"
msgid "Click <emph>OK</emph>. The slide is resized to fit the printed page, while maintaining the relative positions of the objects on the slide."
-msgstr "Prema en Aceptar. A diapositiva redimensiónase para adaptarse á páxina impresa, mais mantendo as posicións relativas dos obxectos da diapositiva."
+msgstr "Prema en <emph>Aceptar</emph>. A diapositiva redimensiónase para adaptarse á páxina impresa, mais mantendo as posicións relativas dos obxectos da diapositiva."
#: printing.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/smath/01.po b/source/gl/helpcontent2/source/text/smath/01.po
index 52eec395739..48d75239310 100644
--- a/source/gl/helpcontent2/source/text/smath/01.po
+++ b/source/gl/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-06 07:36+0000\n"
+"PO-Revision-Date: 2017-06-08 14:48+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496734586.000000\n"
+"X-POOTLE-MTIME: 1496933292.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6246,7 +6246,7 @@ msgctxt ""
"par_id3150051\n"
"help.text"
msgid "Additional information about attributes in <emph>$[officename] Math</emph> is found here."
-msgstr "Aquí dispón de información adicional sobre atributos de <emph> Math</emph>."
+msgstr "Aquí dispón de información adicional sobre atributos de <emph>$[officename] Math</emph>."
#: 03091300.xhp
msgctxt ""
@@ -6878,7 +6878,7 @@ msgctxt ""
"hd_id2083193\n"
"help.text"
msgid "<variable id=\"relations\"><link href=\"text/smath/01/03091502.xhp\" name=\"Relations\">Relations</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgstr "<variable id=\"relations\"><link href=\"text/smath/01/03091502.xhp\" name=\"Relations\">Relacións</link></variable>"
#: 03091502.xhp
msgctxt ""
@@ -7902,7 +7902,7 @@ msgctxt ""
"hd_id645466\n"
"help.text"
msgid "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\" name=\"Functions\">Functions</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgstr "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\" name=\"Functions\">Funcións</link></variable>"
#: 03091504.xhp
msgctxt ""
@@ -8366,7 +8366,7 @@ msgctxt ""
"hd_id1328165\n"
"help.text"
msgid "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\" name=\"Operators\">Operators</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgstr "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\" name=\"Operators\">Operadores</link></variable>"
#: 03091505.xhp
msgctxt ""
@@ -8646,7 +8646,7 @@ msgctxt ""
"hd_id2846156\n"
"help.text"
msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\" name=\"Attributes\">Attributes</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgstr "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\" name=\"Attributes\">Atributos</link></variable>"
#: 03091506.xhp
msgctxt ""
@@ -9062,7 +9062,7 @@ msgctxt ""
"hd_id6469313\n"
"help.text"
msgid "<variable id=\"others\"><link href=\"text/smath/01/03091507.xhp\" name=\"Others\">Others</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgstr "<variable id=\"others\"><link href=\"text/smath/01/03091507.xhp\" name=\"Others\">Outros</link></variable>"
#: 03091507.xhp
msgctxt ""
@@ -9110,7 +9110,7 @@ msgctxt ""
"par_id3180051\n"
"help.text"
msgid "Math-axis ellipsis"
-msgstr "Tres puntos no eixo matemático"
+msgstr "Tres puntos no eixe matemático"
#: 03091507.xhp
msgctxt ""
@@ -9910,7 +9910,7 @@ msgctxt ""
"hd_id1155735\n"
"help.text"
msgid "<variable id=\"formatting\"><link href=\"text/smath/01/03091509.xhp\" name=\"Formatting\">Formatting</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgstr "<variable id=\"formatting\"><link href=\"text/smath/01/03091509.xhp\" name=\"Formatting\">Formatado</link></variable>"
#: 03091509.xhp
msgctxt ""
@@ -10214,7 +10214,7 @@ msgctxt ""
"bm_id3149261\n"
"help.text"
msgid "<bookmark_value>mathematical symbols; other</bookmark_value><bookmark_value>real part of complex numbers</bookmark_value><bookmark_value>symbols;for complex numbers</bookmark_value><bookmark_value>partial differentiation symbol</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla operator</bookmark_value><bookmark_value>there exists symbol</bookmark_value><bookmark_value>there does not exist symbol</bookmark_value><bookmark_value>existence quantor symbol</bookmark_value><bookmark_value>for all symbol</bookmark_value><bookmark_value>universal quantifier symbol</bookmark_value><bookmark_value>h-bar symbol</bookmark_value><bookmark_value>lambda-bar symbol</bookmark_value><bookmark_value>imaginary part of a complex number</bookmark_value><bookmark_value>complex numbers; symbols</bookmark_value><bookmark_value>weierstrass p symbol</bookmark_value><bookmark_value>left arrow symbol</bookmark_value><bookmark_value>right arrow symbol</bookmark_value><bookmark_value>up arrow symbol</bookmark_value><bookmark_value>down arrow symbol</bookmark_value><bookmark_value>arrows;symbols in %PRODUCTNAME Math</bookmark_value><bookmark_value>center dots symbol</bookmark_value><bookmark_value>axis-ellipsis</bookmark_value><bookmark_value>vertical dots symbol</bookmark_value><bookmark_value>diagonal upward dots;symbol</bookmark_value><bookmark_value>diagonal downward dots;symbol</bookmark_value><bookmark_value>epsilon; back</bookmark_value><bookmark_value>back epsilon symbol</bookmark_value><bookmark_value>placeholders; inserting in formulas</bookmark_value><bookmark_value>ellipsis symbols</bookmark_value>"
-msgstr "<bookmark_value>símbolos matemáticos; outros</bookmark_value><bookmark_value>parte real de números complexos</bookmark_value><bookmark_value>símbolos;para números complexos</bookmark_value><bookmark_value>símbolo de diferenciación parcial</bookmark_value><bookmark_value>símbolo de infinito</bookmark_value><bookmark_value>operador nabla</bookmark_value><bookmark_value>símbolo de existe</bookmark_value><bookmark_value>símbolo de cuantificador de existencia</bookmark_value><bookmark_value>símbolo de para todos</bookmark_value><bookmark_value>símbolo de cuantificador universal</bookmark_value><bookmark_value>símbolo de barra h</bookmark_value><bookmark_value>símbolo de barra lambda</bookmark_value><bookmark_value>parte imaxinaria dun número complexo</bookmark_value><bookmark_value>números complexos; símbolos</bookmark_value><bookmark_value>símbolo p weierstrass </bookmark_value><bookmark_value>símbolo de frecha cara á esquerda</bookmark_value><bookmark_value>símbolo de frecha cara á dereita</bookmark_value><bookmark_value>símbolo de frecha cara a arriba</bookmark_value><bookmark_value>símbolo de frecha cara a abaixo</bookmark_value><bookmark_value>frechas;símbolos en %PRODUCTNAME Math</bookmark_value><bookmark_value>símbolo de puntos centrais</bookmark_value><bookmark_value>símbolo de puntos no eixo</bookmark_value><bookmark_value>símbolo de puntos verticais</bookmark_value><bookmark_value>puntos ascendentes na diagonal;símbolo</bookmark_value><bookmark_value>puntos descendentes na diagonal;símbolo</bookmark_value><bookmark_value>épsilon; invertido</bookmark_value><bookmark_value>símbolo de épsilon invertido</bookmark_value><bookmark_value>marcadores de posición; inserir en fórmulas</bookmark_value><bookmark_value>símbolos de tres puntos</bookmark_value>"
+msgstr "<bookmark_value>símbolos matemáticos; outros</bookmark_value><bookmark_value>parte real de números complexos</bookmark_value><bookmark_value>símbolos;para números complexos</bookmark_value><bookmark_value>símbolo de diferenciación parcial</bookmark_value><bookmark_value>símbolo de infinito</bookmark_value><bookmark_value>operador nabla</bookmark_value><bookmark_value>símbolo de existe</bookmark_value><bookmark_value>símbolo de cuantificador de existencia</bookmark_value><bookmark_value>símbolo de para todos</bookmark_value><bookmark_value>símbolo de cuantificador universal</bookmark_value><bookmark_value>símbolo de barra h</bookmark_value><bookmark_value>símbolo de barra lambda</bookmark_value><bookmark_value>parte imaxinaria dun número complexo</bookmark_value><bookmark_value>números complexos; símbolos</bookmark_value><bookmark_value>símbolo p weierstrass </bookmark_value><bookmark_value>símbolo de frecha cara á esquerda</bookmark_value><bookmark_value>símbolo de frecha cara á dereita</bookmark_value><bookmark_value>símbolo de frecha cara a arriba</bookmark_value><bookmark_value>símbolo de frecha cara a abaixo</bookmark_value><bookmark_value>frechas;símbolos en %PRODUCTNAME Math</bookmark_value><bookmark_value>símbolo de puntos centrais</bookmark_value><bookmark_value>símbolo de puntos no eixe</bookmark_value><bookmark_value>símbolo de puntos verticais</bookmark_value><bookmark_value>puntos ascendentes na diagonal;símbolo</bookmark_value><bookmark_value>puntos descendentes na diagonal;símbolo</bookmark_value><bookmark_value>épsilon; invertido</bookmark_value><bookmark_value>símbolo de épsilon invertido</bookmark_value><bookmark_value>marcadores de posición; inserir en fórmulas</bookmark_value><bookmark_value>símbolos de tres puntos</bookmark_value>"
#: 03091600.xhp
msgctxt ""
@@ -10638,7 +10638,7 @@ msgctxt ""
"par_id3163797\n"
"help.text"
msgid "<emph>Math-axis Ellipsis</emph>"
-msgstr "<emph>Tres puntos no eixo matemático</emph>"
+msgstr "<emph>Tres puntos no eixe matemático</emph>"
#: 03091600.xhp
msgctxt ""
@@ -10646,7 +10646,7 @@ msgctxt ""
"par_id3146757\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTSAXIS\">This icon inserts an axis-ellipsis (three vertically centered horizontal dots).</ahelp> Command for the <emph>Commands</emph> window: <emph>dotsaxis</emph>"
-msgstr "<ahelp hid=\"HID_SMA_DOTSAXIS\">Esta icona insire tres puntos no eixo (horizontais centrados verticalmente).</ahelp> Orde da xanela <emph>Ordes</emph>: <emph>dotaxis</emph>"
+msgstr "<ahelp hid=\"HID_SMA_DOTSAXIS\">Esta icona insire tres puntos no eixe (horizontais centrados verticalmente).</ahelp> Orde da xanela <emph>Ordes</emph>: <emph>dotaxis</emph>"
#: 03091600.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/smath/guide.po b/source/gl/helpcontent2/source/text/smath/guide.po
index 049b34b0331..8d7275641c8 100644
--- a/source/gl/helpcontent2/source/text/smath/guide.po
+++ b/source/gl/helpcontent2/source/text/smath/guide.po
@@ -4,8 +4,8 @@ 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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2015-04-13 21:58+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2017-06-08 14:48+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1428962334.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496933339.000000\n"
#: align.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"hd_id3154657\n"
"help.text"
msgid "How do you align characters in $[officename] Math quickly and easily?"
-msgstr "Como aliñar caracteres en Math rápida e facilmente?"
+msgstr "Como aliñar caracteres en $[officename] Math rápida e facilmente?"
#: align.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "Se desexa usar a interface de Math para editar unha fórmula, escolla a orde <emph>Inserir - Obxecto - Fórmula</emph> sen ningún texto seleccionado."
+msgstr "Se desexa usar a interface de $[officename] Math para editar unha fórmula, escolla a orde <emph>Inserir - Obxecto - Fórmula</emph> sen ningún texto seleccionado."
#: keyboard.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter.po b/source/gl/helpcontent2/source/text/swriter.po
index 5e78246548c..e066031bfcd 100644
--- a/source/gl/helpcontent2/source/text/swriter.po
+++ b/source/gl/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-06-06 07:30+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496734229.000000\n"
#: classificationbar.xhp
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeración de esquema\">Numeración de esquema</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/00.po b/source/gl/helpcontent2/source/text/swriter/00.po
index 00b1640b8fb..b19f300ccb8 100644
--- a/source/gl/helpcontent2/source/text/swriter/00.po
+++ b/source/gl/helpcontent2/source/text/swriter/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-03 21:25+0000\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
+"PO-Revision-Date: 2017-06-20 22:32+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488576338.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997954.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3973244\n"
"help.text"
msgid "<variable id=\"direct_cursor\">Choose <emph>Edit - Direct Cursor Mode</emph></variable>"
-msgstr "<variable id=\"selection_mode\">Escolla <emph>Editar - Modo de selección</emph></variable>"
+msgstr "<variable id=\"direct_cursor\">Escolla<emph>Editar - Modo de cursor directo</emph></variable>"
#: 00000403.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id3147515\n"
"help.text"
msgid "<variable id=\"feldfunktionen\">Choose <emph>Insert - Field - More Fields - Functions</emph> tab</variable>"
-msgstr "<variable id=\"feldfunktionen\">Escolla <emph>Inserir - Campos - Outros - Funcións </emph> e prema no separador <emph>Funcións</emph></variable>"
+msgstr "<variable id=\"feldfunktionen\">Escolla a lapela <emph>Inserir - Campo - Outros - Funcións</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id3153581\n"
"help.text"
msgid "<variable id=\"felddokumentinfo\">Choose <emph>Insert - Field - More Fields - DocInformation</emph> tab</variable>"
-msgstr "<variable id=\"felddokumentinfo\">Escolla <emph>Inserir - Campos - Outros - Información do documento</emph>, separador <emph>Información do documento</emph></variable>"
+msgstr "<variable id=\"felddokumentinfo\">Escolla a lapela <emph>Inserir - Campo - Outros - Información do documento</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3150710\n"
"help.text"
msgid "<variable id=\"feldvariablen\">Choose <emph>Insert - Field - More Fields - Variables</emph> tab</variable>"
-msgstr "<variable id=\"feldvariablen\">Escolla <emph>Inserir - Campos - Outros</emph>, separador <emph>Variábeis </emph></variable>"
+msgstr "<variable id=\"feldvariablen\">Escolla a lapela <emph>Inserir - Campo - Outros - Variábeis</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3152945\n"
"help.text"
msgid "<variable id=\"felddatenbank\">Choose <emph>Insert - Field - More Fields - Database</emph> tab</variable>"
-msgstr "<variable id=\"felddatenbank\">Escolla <emph>Inserir - Campos - Outros</emph>, lapela <emph>Base de datos</emph></variable>"
+msgstr "<variable id=\"felddatenbank\">Escolla a lapela <emph>Inserir - Campo - Outros - Base de datos</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3155899\n"
"help.text"
msgid "<variable id=\"bereicheinbereich\">Choose <emph>Insert - Section - Section</emph> tab or choose <emph>Format - Sections</emph></variable>"
-msgstr "<variable id=\"bereicheinbereich\">Escolla <emph>Inserir - Sección</emph>, separador <emph>Sección</emph> ou escolla <emph>Formato - Seccións</emph></variable>"
+msgstr "<variable id=\"bereicheinbereich\">Escolla a lapela <emph>Inserir - Sección</emph> ou escolla <emph>Formato - Seccións</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3154197\n"
"help.text"
msgid "<variable id=\"sectionindents\">Choose <emph>Insert - Section - Indents</emph> tab or choose <emph>Format - Sections</emph></variable>"
-msgstr "<variable id=\"sectionindents\">Escolla <emph>Inserir - Sección</emph>, separador <emph>Sangrías</emph> ou escolla <emph>Formato - Seccións</emph></variable>"
+msgstr "<variable id=\"sectionindents\">Escolla a lapela <emph>Inserir - Sección</emph> ou escolla <emph>Formato - Seccións</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab </variable>"
-msgstr "<variable id=\"umschlagb\">Escolla <emph>Inserir - Sobre</emph> e prema no separador <emph>Sobre</emph></variable>"
+msgstr "<variable id=\"umschlagb\">Escolla a lapela <emph>Inserir - Sobre - Sobre</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Escolla <emph>Ferramentas - Numeración de esquema</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Escolla <emph>Ferramentas - Numeración de esquema</emph>, separador <emph>Numeración</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Escolla <emph>Ferramentas - Numeración de liñas</emph> (non vale para o formato HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"par_idN10806\n"
"help.text"
msgid "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3083452\">Icon</alt></image>"
-msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083452\">Icona</alt></image>"
+msgstr "<image id=\"img_id3083452\" src=\"cmd/sc_mergedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3083452\">Icona</alt></image>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index c6aeaadc0ce..450c6e2a03e 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/01.po
@@ -3,9 +3,9 @@ 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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-24 19:02+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-07 08:18+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495652577.000000\n"
+"X-POOTLE-MTIME: 1496823522.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\"> Prema en <emph>1</emph> para ver sóos títulos de nivel superior no diálogo Navigator, e <emph>10</emph> paraver todos os títulos. </ ahelp >"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"hd_id3143276\n"
"help.text"
msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Edit Footnotes\">Edit Footnote or Endnote</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Outros\">Outros</link>"
+msgstr ""
#: 02150000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Se selecciona \"O número do capítulo sen separador \" para un campo de capítulo, as fichas que son especificados para o número do capítulo en <link href =\"text/swriter/01/06060000.xhp \"name=\"Ferramentas - Numeración Esbozo\"><emph>Ferramentas - numeración de temas</emph></link> non son mostrados."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11215,8 +11215,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Insire o número do capítulo. Para asignar a numeración de capítulos a unestilo de título, escolla <emph>Ferramentas -. Contorno Numeración</emph></ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21344,16 +21344,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeración de esquema"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeración de esquema"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21368,24 +21368,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "A numeración do esquema lígase aos estilos de parágrafo. Os estilos \"Título\" (1-10) atribúense de forma predefinida aos niveis correspondentes de números de esquema (1-10). Se o desexa, pode asignar diferentes estilos de parágrafo ao nivel do esquema."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Se queres títulos numerados, utilice o <emph>Ferramentas - Esbozo Numeración</emph> comando de menú para asignar numeración a un estilo de parágrafo. Non use a icona Numeración da barra de ferramentas Formato."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Para destacar a exhibición da pantalla de números xerárquicos, escolla <emph> Ver -</emph><emph>Campo matices</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21400,16 +21400,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\"> Gardarou carga un formato de número esbozo. Un formato salvou número esbozo estádispoñíbel para todos os documentos de texto.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "O <emph>Formato</emph> botón só está dispoñíbel para a numeración de temas. Para estilos de lista numerados ou con viñetas, modificar os estilos de numeración dos parágrafos."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21440,8 +21440,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\"> Abreun diálogo onde pode gardar a configuración actual para o nivel de contornoseleccionado. Pode entón premer esta configuración doutro documento. </ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21496,8 +21496,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/nivel\">Prema no nivel de estrutura de temas que quere modificar e, a seguir,seleccione as opcións de numeración para o nivel.</ahelp> Para aplicar asopcións de numeración, con excepción de o estilo de parágrafo, a todos osniveis, prema en\"1-10 \"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21528,8 +21528,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Seleccione o estilo de parágrafo que desexa asignar ao nivel de contornoseleccionado. </ahelp> Se fai clic en\"None \", o nivel de contornoseleccionado non está definido."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25320,16 +25320,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novo bloque de enderezos"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novo bloque de enderezos"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25344,8 +25344,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementos enderezo"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25392,8 +25392,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arrastre elemento de enderezo no campo de abaixo"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
#, fuzzy
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 33db4536b31..52006f05637 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.po
@@ -3,9 +3,9 @@ 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: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2016-07-06 02:41+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-12 07:49+0000\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467772897.000000\n"
+"X-POOTLE-MTIME: 1497253750.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Pode mover títulos e textos subordinados cara a arriba e cara a abaixo utilizando o Navegador. Tamén pode subir ou baixar niveis de título. Para utilizar este recurso, formate os títulos cun dos estilos predefinidos de parágrafo. Para utilizar un estilo personalizado de parágrafo para un título, escolla <emph>Ferramentas - Numeración de esquema</emph>, seleccione o estilo na caixa <emph>Estilo de parágrafo</emph> e, a seguir, prema dúas veces nun número da lista <emph>Niveis</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -487,7 +487,7 @@ msgctxt ""
"par_id3147274\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>."
-msgstr "Escolla <item type =\"menuitem\"> Ferramentas - Opcións de AutoCorreção </ item>."
+msgstr ""
#: auto_off.xhp
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"par_id3151196\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>."
-msgstr "Escolla <item type =\"menuitem\"> Ferramentas - Opcións de AutoCorreção </ item>."
+msgstr ""
#: auto_off.xhp
msgctxt ""
@@ -559,7 +559,7 @@ msgctxt ""
"par_id3155099\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools – AutoCorrect Options</item>."
-msgstr "Escolla <item type =\"menuitem\"> Ferramentas - Opcións de AutoCorreção </ item>."
+msgstr ""
#: auto_off.xhp
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"par_id3155439\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>."
-msgstr "Escolla <item type =\"menuitem\"> Ferramentas - Opcións de AutoCorreção </ item>."
+msgstr ""
#: auto_off.xhp
msgctxt ""
@@ -615,7 +615,7 @@ msgctxt ""
"par_id3155488\n"
"help.text"
msgid "Clear the \"Apply border\" check box."
-msgstr "Desmarque a caixa de selección «Aplicar bordo\\»."
+msgstr "Desmarque a caixa de selección «Aplicar bordo»."
#: auto_spellcheck.xhp
msgctxt ""
@@ -767,7 +767,7 @@ msgctxt ""
"par_id3155576\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>, and then click the <item type=\"menuitem\">Exceptions</item> tab."
-msgstr "Escolla <item type =\"menuitem\"> Ferramentas - Opcións de AutoCorreção </ item> e, a continuación, prema no botón <tipo de elemento =\"menuitem\"> Excepcións </ item> pestana."
+msgstr ""
#: autocorr_except.xhp
msgctxt ""
@@ -783,7 +783,7 @@ msgctxt ""
"par_id3147786\n"
"help.text"
msgid "Type the abbreviation followed by a period in the <emph>Abbreviations (no subsequent capital) </emph>box and click <emph>New</emph>."
-msgstr "Introduza a abreviatura seguida dun punto na caixa <emph>Abreviaturas (sen letras maiúsculas despois)</emph>."
+msgstr "Introduza a abreviatura seguida dun punto na caixa <emph>Abreviaturas (sen letras maiúsculas despois)</emph> e prema en <emph>Nova</emph>."
#: autocorr_except.xhp
msgctxt ""
@@ -954,12 +954,13 @@ msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>
msgstr "Escolla <emph>Ferramentas - Macros - Organizar macros - %PRODUCTNAME Basic</emph>."
#: autotext.xhp
+#, fuzzy
msgctxt ""
"autotext.xhp\n"
"par_id3155160\n"
"help.text"
msgid "In the <emph>Macro from</emph> tree control, select %PRODUCTNAME Macros - Gimmicks - AutoText."
-msgstr "Na <emph>Macro de</emph> control de árbore, seleccione Macros% PRODUCTNAME - Trucos - Texto automático."
+msgstr "Na <emph>Macro de</emph> control de árbore, seleccione Macros %PRODUCTNAME - Trucos - Texto automático."
#: autotext.xhp
msgctxt ""
@@ -1063,7 +1064,7 @@ msgctxt ""
"par_id7355265\n"
"help.text"
msgid "You can define a background color or use a graphic as a background for various objects in $[officename] Writer."
-msgstr "Podes establecer unha cor de fondo ou usar un gráfico como un fondo para varios obxectos no $ [officename] Writer."
+msgstr "Podes establecer unha cor de fondo ou usar un gráfico como un fondo para varios obxectos no $[officename] Writer."
#: background.xhp
msgctxt ""
@@ -2902,32 +2903,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeración de esquema"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value> esboza; numeración </bookmark_value> <bookmark_value> exclusión; indo números </bookmark_value> <bookmark_value> numeración capítulo </bookmark_value> <bookmark_value> posicións; estilos de numeración/parágrafo </bookmark_value> <bookmark_value> numeración; cabeceiras </bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeración de esquema\">Numeración de esquema</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Pode modificar a xerarquía de títulos ou atribuír un nivel da xerarquía a un estilo de parágrafo personalizado. Tamén pode engadir numeracións de capítulo e de sección aos estilos de parágrafo de título. O estilo de parágrafo \"Título 1\" aparece na parte superior da xerarquía do esquema de forma predefinida."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2943,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escolla <tipo de elemento =\"menuitem\"> Ferramentas - numeración de esto </ item> e, a continuación, prema no botón <item type =\"menuitem\"> Numeración </ item> a ficha."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2967,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Para eliminar a numeración de temas automática dun parágrafo de título"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2999,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escolla <tipo de elemento =\"menuitem\"> Ferramentas - numeración de esto </ item> e, a continuación, prema no botón <item type =\"menuitem\"> Numeración </ item> a ficha."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6111,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Antes de inserir información sobre o capítulo nunha cabeceira ou pé de páxina, precisa definir as opcións de numeración do esquema para o estilo de parágrafo que desexe utilizar nos títulos dos capítulos."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6127,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Escolla <emph>Ferramentas - Numeración de esquema</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7127,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value> índices; definindo entradas en </bookmark_value> <bookmark_value> táboas de contidos; definindo entradas en </bookmark_value> <bookmark_value> entradas; definición de índices/táboas de contidos </bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7159,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Escolla <emph>Inserir - Índicess - Entrada</emph> e siga un destes procedementos:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7215,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Escolla <emph>Ferramentas - Numeración do esquema</emph> e prema no separador <emph>Numeración</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7839,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Se quere usar un estilo de parágrafo diferente como unha entrada de índice, escolla o <item type =\"menuitem\"> Estilos adicionais </ item> caixa de verificación na <item type =\"menuitem\"> Crear a partir de </ item> área, e logo prema o (<item type =\"menuitem\"> ... </ item>) que aparece ó lado da caixa de verificación. Na <item type =\"menuitem\"> Asignar Styles </ item> caixa de diálogo, prema no estilo da lista e, a continuación, prema no botón <item type =\"menuitem \" >>> </ item> ou < tipo de elemento =\"menuitem\"> <<</item> para definir o nivel de destaque para o estilo de parágrafo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,7 +8015,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -8567,7 +8568,7 @@ msgctxt ""
"bm_id3151169\n"
"help.text"
msgid "<bookmark_value>keyboard; accessibility $[officename] Writer</bookmark_value> <bookmark_value>accessibility; $[officename] Writer</bookmark_value>"
-msgstr "<bookmark_value> teclado; accesibilidade $ [officename] Writer </bookmark_value> <bookmark_value> accesibilidade; $ [Officename] Escritor </bookmark_value>"
+msgstr "<bookmark_value>teclado; accesibilidade $[officename] Writer</bookmark_value> <bookmark_value>accesibilidade; $[officename] Writer</bookmark_value>"
#: keyboard.xhp
msgctxt ""
@@ -9486,8 +9487,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value> numeración; eliminar/interromper </bookmark_value> <bookmark_value> listas de bala; deter </bookmark_value> <bookmark_value> listas; eliminar/interrupción numeración </bookmark_value> <bookmark_value> exclusión; números en listas </bookmark_value> <bookmark_value> interrompendo listas numeradas </bookmark_value> <bookmark_value> cambiar, empezando números en listas </bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9511,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Se desexa títulos numerados, utilice a orde de menú <emph>Ferramentas - Numeración de esquema</emph> para atribuír numeración aos estilos de parágrafo. Non utilice a icona Numeración da barra Formatado."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -10495,7 +10496,7 @@ msgctxt ""
"par_id2858668\n"
"help.text"
msgid "You should be aware of the scope of page styles in %PRODUCTNAME. Which pages of your text document get affected by editing a page style?"
-msgstr "Ten que ser consciente do ámbito de estilos de páxina en% PRODUCTNAME. Cales páxinas do seu documento de texto quedar afectado por editar un estilo de páxina?"
+msgstr "Ten que ser consciente do ámbito de estilos de páxina en %PRODUCTNAME. Que páxinas do seu documento de texto serán afectadas por editar un estilo de páxina?"
#: pageorientation.xhp
msgctxt ""
@@ -10895,7 +10896,7 @@ msgctxt ""
"par_idN106EA\n"
"help.text"
msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Se% PRODUCTNAME imprime as páxinas na orde errada, abra a <emph>Opcións</emph> páxina guía, seleccione <emph>Imprimir en orde inversa</emph>, e logo imprimir o documento de novo."
+msgstr "Se %PRODUCTNAME imprime as páxinas na orde errada, abra a lapela <emph>Opcións</emph>, seleccione <emph>Imprimir en orde inversa</emph>, e logo imprima o documento de novo."
#: print_preview.xhp
msgctxt ""
@@ -13007,7 +13008,7 @@ msgctxt ""
"par_id1827448\n"
"help.text"
msgid "Smart Tags can be supplied as <link href=\"text/shared/01/packagemanager.xhp\">extensions</link> to %PRODUCTNAME Writer."
-msgstr "As etiquetas intelixentes poden especificar como <link href=\"text/shared/01/packagemanager.xhp \"> Extensións </ link> a% PRODUCTNAME Writer."
+msgstr "As etiquetas intelixentes pódense fornecer como <link href=\"text/shared/01/packagemanager.xhp\">Extensións</link> de %PRODUCTNAME Writer."
#: smarttags.xhp
msgctxt ""
@@ -16623,7 +16624,7 @@ msgctxt ""
"par_idN1076F\n"
"help.text"
msgid "$[officename] collects words that you frequently use in the current session. When you later type the first three letters of a collected word, $[officename] automatically completes the word."
-msgstr "$ [Officename] recolle as palabras que usa a miúdo na sesión actual. Cando escriba as tres primeiras letras dunha palabra recollidas, $ [officename] completa automaticamente a palabra."
+msgstr "$[officename] rexistra as palabras que usa a miúdo na sesión actual. Cando escriba as tres primeiras letras dunha palabra rexistrada, $[officename] completará automaticamente a palabra."
#: word_completion.xhp
msgctxt ""
@@ -16959,7 +16960,7 @@ msgctxt ""
"hd_id1116200901133957\n"
"help.text"
msgid "How does %PRODUCTNAME count words?"
-msgstr "Como o% PRODUCTNAME contar palabras?"
+msgstr "Como conta %PRODUCTNAME as palabras?"
#: words_count.xhp
msgctxt ""
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index 761f6dbb85d..c1e05db33c5 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-24 22:09+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:27+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495663798.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997638.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Escoller temas"
+msgid "Spreadsheet Theme"
+msgstr "Tema da folla de cálculo"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Inserir..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Predeterminado"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Acento 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Acento 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Acento 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Título 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Título 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Malo"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Erro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Bo"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Aviso"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Nota de rodapé"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Nota"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Páxina ~principal"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Not~as"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7925,7 +8042,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Views"
-msgstr ""
+msgstr "Modos de visualización"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "~Barra de lapelas de visualización"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7943,7 +8060,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Views Tab Bar Visibility"
-msgstr ""
+msgstr "Trocar a visibilidade da barra de lapelas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "~Panel de diapositivas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9338,7 +9455,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Previous Slide"
-msgstr "Ir á diapositiva anterior"
+msgstr "Á diapositiva anterior"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -16646,7 +16763,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Save Remote File"
-msgstr "Gardar o ficheiro remoto"
+msgstr "Gardar ficheiro remoto"
#: GenericCommands.xcu
msgctxt ""
@@ -16655,7 +16772,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Save Remote File..."
-msgstr "Gardar o ficheiro remoto..."
+msgstr "Gardar ficheiro remoto..."
#: GenericCommands.xcu
msgctxt ""
@@ -18250,7 +18367,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Object and Shape"
-msgstr "~Obxecto and forma"
+msgstr "~Obxecto e forma"
#: GenericCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "~Disposición da barra de ferramentas"
#: GenericCommands.xcu
msgctxt ""
@@ -23425,7 +23542,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Small Gap"
-msgstr ""
+msgstr "Valga pequena"
#: MathCommands.xcu
msgctxt ""
@@ -23434,7 +23551,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gap"
-msgstr ""
+msgstr "Valga"
#: MathCommands.xcu
msgctxt ""
@@ -23443,7 +23560,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Unary/Binary Operators"
-msgstr ""
+msgstr "Operadores ~unarios/binarios"
#: MathCommands.xcu
msgctxt ""
@@ -23524,7 +23641,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "Panel de edición"
#: MathWindowState.xcu
msgctxt ""
@@ -23533,7 +23650,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "Panel de visualización"
#: MathWindowState.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Propiedades..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Obxecto..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Repetir as filas de cabeceira en todas as páxinas"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Que~bra de filas entre páxinas"
#: WriterCommands.xcu
msgctxt ""
@@ -28762,7 +28870,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chapter ~Numbering..."
-msgstr ""
+msgstr "~Numeración de capítulos..."
#: WriterCommands.xcu
msgctxt ""
@@ -28771,7 +28879,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Chapter Numbering"
-msgstr ""
+msgstr "Definir a numeración de capítulos"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Lista de viñetas"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Lista numérica"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Lista de números romanos"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/gl/sc/source/ui/src.po b/source/gl/sc/source/ui/src.po
index c4435588211..8a8fdabdfd9 100644
--- a/source/gl/sc/source/ui/src.po
+++ b/source/gl/sc/source/ui/src.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-12 23:01+0000\n"
-"Last-Translator: Antón Méixome <meixome@certima.net>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:26+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494630090.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997567.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Intervalo desprazado de #1 para #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2711,7 +2711,7 @@ msgid ""
"\n"
msgstr ""
"Esta acción pechará o modo de gravación.\n"
-"Perderase toda a información dos cambios.\n"
+"Perderase toda a información sobre os cambios.\n"
"\n"
"Saír do modo de gravación de cambios?\n"
"\n"
@@ -2871,10 +2871,10 @@ msgstr "As matrices aniñadas non se admiten."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Texto a columnas"
+msgstr "Texto para columnas"
#: globstr.src
msgctxt ""
diff --git a/source/gl/sd/source/ui/app.po b/source/gl/sd/source/ui/app.po
index db544afd03f..92a6e99ad77 100644
--- a/source/gl/sd/source/ui/app.po
+++ b/source/gl/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-24 21:52+0000\n"
+"PO-Revision-Date: 2017-06-13 16:28+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493070737.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497371311.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "O cartafol de destino local «%FILENAME» non está baleiro. É posíbel que algúns ficheiros sexan substituídos. Quere continuar?"
#: toolbox.src
msgctxt ""
diff --git a/source/gl/sd/uiconfig/simpress/ui.po b/source/gl/sd/uiconfig/simpress/ui.po
index f2365e56052..2e7f4397768 100644
--- a/source/gl/sd/uiconfig/simpress/ui.po
+++ b/source/gl/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-24 22:11+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-13 16:29+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495663867.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497371380.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "A~puntador do rato como lapis"
#: slidecontextmenu.ui
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thin"
-msgstr ""
+msgstr "_Moi fino"
#: slidecontextmenu.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "_Cambiar a cor do lapis..."
#: slidecontextmenu.ui
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "_Borrar toda a tinta da diapositiva"
#: slidecontextmenu.ui
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Screen"
-msgstr ""
+msgstr "_Pantalla"
#: slidecontextmenu.ui
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Black"
-msgstr ""
+msgstr "_Negro"
#: slidecontextmenu.ui
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_White"
-msgstr ""
+msgstr "_Branco"
#: slidecontextmenu.ui
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End Show"
-msgstr ""
+msgstr "T_erminar a presentación"
#: slidedesigndialog.ui
msgctxt ""
diff --git a/source/gl/sfx2/source/dialog.po b/source/gl/sfx2/source/dialog.po
index 325188c6e17..597deb6c571 100644
--- a/source/gl/sfx2/source/dialog.po
+++ b/source/gl/sfx2/source/dialog.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-24 22:11+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-14 21:42+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495663880.000000\n"
+"X-POOTLE-MTIME: 1497476541.000000\n"
#: dialog.src
msgctxt ""
@@ -620,7 +620,7 @@ msgctxt ""
"STR_STYLE_FILL_FORMAT_MODE\n"
"string.text"
msgid "Fill Format Mode"
-msgstr ""
+msgstr "Modo de formato de recheo"
#: templdlg.src
msgctxt ""
@@ -628,7 +628,7 @@ msgctxt ""
"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
"string.text"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Novo estilo a partir da selección"
#: templdlg.src
msgctxt ""
diff --git a/source/gl/sfx2/source/view.po b/source/gl/sfx2/source/view.po
index 45a961852f8..40eac069419 100644
--- a/source/gl/sfx2/source/view.po
+++ b/source/gl/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-24 22:13+0000\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495663988.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Este documento ten unha sinatura incorrecta."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/gl/sfx2/uiconfig/ui.po b/source/gl/sfx2/uiconfig/ui.po
index e572b9409a2..6386370b3f9 100644
--- a/source/gl/sfx2/uiconfig/ui.po
+++ b/source/gl/sfx2/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-24 22:24+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-14 21:42+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495664650.000000\n"
+"X-POOTLE-MTIME: 1497476559.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -1517,7 +1517,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Are you sure you want to restart %PRODUCTNAME and enter safe mode?"
-msgstr ""
+msgstr "Confirma que desexa reiniciar o %PRODUCTNAME e entrar no modo seguro?"
#: saveastemplatedlg.ui
msgctxt ""
diff --git a/source/gl/starmath/source.po b/source/gl/starmath/source.po
index 19a50260a16..98c71235c53 100644
--- a/source/gl/starmath/source.po
+++ b/source/gl/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-02-18 21:34+0000\n"
+"PO-Revision-Date: 2017-06-13 16:24+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487453660.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497371040.000000\n"
#: commands.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"RID_XTRANSLY_HELP\n"
"string.text"
msgid "Corresponds To (Left)"
-msgstr ""
+msgstr "Corresponde a (esquerda)"
#: commands.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"RID_XTRANSRY_HELP\n"
"string.text"
msgid "Corresponds To (Right)"
-msgstr ""
+msgstr "Corresponde a (dereita)"
#: commands.src
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"RID_LIMINFX_HELP\n"
"string.text"
msgid "Limit Inferior"
-msgstr ""
+msgstr "Límite inferior"
#: commands.src
msgctxt ""
diff --git a/source/gl/svtools/source/control.po b/source/gl/svtools/source/control.po
index b86303dfeba..9964e097c43 100644
--- a/source/gl/svtools/source/control.po
+++ b/source/gl/svtools/source/control.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-09-03 19:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:24+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1441307693.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997475.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Cursiva grosa"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Libro"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/gl/svtools/source/misc.po b/source/gl/svtools/source/misc.po
index 8584c26f385..6e5e903d9d6 100644
--- a/source/gl/svtools/source/misc.po
+++ b/source/gl/svtools/source/misc.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-24 22:14+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:25+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495664082.000000\n"
+"X-POOTLE-MTIME: 1497997503.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (República Democrática do Congo)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gl/svx/uiconfig/ui.po b/source/gl/svx/uiconfig/ui.po
index 1ea02eca50b..c4289fde68a 100644
--- a/source/gl/svx/uiconfig/ui.po
+++ b/source/gl/svx/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-05 20:26+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-14 21:46+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496694375.000000\n"
+"X-POOTLE-MTIME: 1497476815.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -4118,7 +4118,6 @@ msgid "_Value:"
msgstr "_Valor:"
#: formdatamenu.ui
-#, fuzzy
msgctxt ""
"formdatamenu.ui\n"
"additem\n"
@@ -4134,7 +4133,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Element"
-msgstr ""
+msgstr "Engadir elemento"
#: formdatamenu.ui
msgctxt ""
@@ -4152,7 +4151,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: formdatamenu.ui
msgctxt ""
@@ -4203,7 +4202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_New"
-msgstr ""
+msgstr "_Novo"
#: formnavimenu.ui
msgctxt ""
@@ -4212,7 +4211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Form"
-msgstr ""
+msgstr "Formulario"
#: formnavimenu.ui
msgctxt ""
@@ -4221,7 +4220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hidden Control"
-msgstr ""
+msgstr "Control agochado"
#: formnavimenu.ui
msgctxt ""
@@ -4266,7 +4265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Eliminar"
#: formnavimenu.ui
msgctxt ""
@@ -4275,7 +4274,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab Order..."
-msgstr ""
+msgstr "Orde de tabulación..."
#: formnavimenu.ui
msgctxt ""
@@ -4320,7 +4319,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Average"
-msgstr ""
+msgstr "Media"
#: functionmenu.ui
msgctxt ""
@@ -4401,7 +4400,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Eliminar"
#: gallerymenu1.ui
msgctxt ""
@@ -4419,7 +4418,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Assign _ID"
-msgstr ""
+msgstr "Asignar _identificador"
#: gallerymenu1.ui
msgctxt ""
@@ -4446,7 +4445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Bac_kground"
-msgstr ""
+msgstr "Inserir como fondo"
#: gallerymenu2.ui
msgctxt ""
@@ -4464,7 +4463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Title"
-msgstr ""
+msgstr "_Título"
#: gallerymenu2.ui
msgctxt ""
@@ -4473,7 +4472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Eliminar"
#: gallerymenu2.ui
msgctxt ""
@@ -4842,7 +4841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active"
-msgstr ""
+msgstr "Activo"
#: imapmenu.ui
msgctxt ""
@@ -4851,7 +4850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "_Dispor"
#: imapmenu.ui
msgctxt ""
@@ -4860,7 +4859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bring to Front"
-msgstr ""
+msgstr "Traer para adiante"
#: imapmenu.ui
msgctxt ""
@@ -4869,7 +4868,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bring _Forward"
-msgstr ""
+msgstr "Levar para a_trás"
#: imapmenu.ui
msgctxt ""
@@ -4887,7 +4886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Send to Back"
-msgstr ""
+msgstr "_Enviar para atrás"
#: imapmenu.ui
msgctxt ""
@@ -4905,7 +4904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Eliminar"
#: linkwarndialog.ui
msgctxt ""
@@ -5256,7 +5255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Constrain Objects"
-msgstr ""
+msgstr "Restrinxir obxectos"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -5508,7 +5507,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Eliminar"
#: profileexporteddialog.ui
msgctxt ""
@@ -6034,7 +6033,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save Record"
-msgstr ""
+msgstr "Gardar rexistro"
#: rowsmenu.ui
msgctxt ""
@@ -6043,7 +6042,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Undo: Data entry"
-msgstr ""
+msgstr "Desfacer: introdución de datos"
#: rulermenu.ui
msgctxt ""
@@ -6395,7 +6394,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Standard selection"
-msgstr ""
+msgstr "Selección normal"
#: selectionmenu.ui
msgctxt ""
@@ -6404,7 +6403,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extending selection"
-msgstr ""
+msgstr "Extensión da selección"
#: selectionmenu.ui
msgctxt ""
@@ -7601,7 +7600,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Style..."
-msgstr ""
+msgstr "Editar estilo..."
#: textcharacterspacingcontrol.ui
msgctxt ""
@@ -7916,7 +7915,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Digital Signatures..."
-msgstr ""
+msgstr "Sinaturas dixitais..."
#: zoommenu.ui
msgctxt ""
@@ -7925,7 +7924,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Entire Page"
-msgstr ""
+msgstr "Páxina enteira"
#: zoommenu.ui
msgctxt ""
@@ -7934,7 +7933,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Width"
-msgstr ""
+msgstr "Largura da páxina"
#: zoommenu.ui
msgctxt ""
@@ -7943,7 +7942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal View"
-msgstr ""
+msgstr "Vista óptima"
#: zoommenu.ui
msgctxt ""
diff --git a/source/gl/sw/source/core/undo.po b/source/gl/sw/source/core/undo.po
index be0b90e3dd6..a6644f3f294 100644
--- a/source/gl/sw/source/core/undo.po
+++ b/source/gl/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-10 21:07+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:23+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494450438.000000\n"
+"X-POOTLE-MTIME: 1497997387.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "quebra de columna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Inserir $1"
@@ -899,7 +899,7 @@ msgstr "Inserir $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Eliminar $1"
@@ -907,26 +907,66 @@ msgstr "Eliminar $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributos modificados"
+msgstr "Atributos cambiados"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Táboa modificada"
+msgstr "Táboa cambiada"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Estilo modificado"
+msgstr "Estilo cambiado"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formato de parágrafo cambiado"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Inserir fila"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Eliminar fila"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Inserir cela"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Eliminar cela"
#: undo.src
msgctxt ""
diff --git a/source/gl/sw/source/ui/app.po b/source/gl/sw/source/ui/app.po
index c6855bb9c14..8f57cc2f3f1 100644
--- a/source/gl/sw/source/ui/app.po
+++ b/source/gl/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-02-20 21:56+0000\n"
+"PO-Revision-Date: 2017-06-13 19:19+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487627804.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497381596.000000\n"
#: app.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"STR_BOOKMARK_DEF_NAME\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Marcador"
#: app.src
msgctxt ""
diff --git a/source/gl/sw/source/uibase/docvw.po b/source/gl/sw/source/uibase/docvw.po
index b8919c40a23..8608163b445 100644
--- a/source/gl/sw/source/uibase/docvw.po
+++ b/source/gl/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-05-01 22:33+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:23+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462141995.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997416.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Estilos de parágrafo aplicados"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formato de parágrafo cambiado"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Fila inserida"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Fila eliminada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Cela inserida"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Cela eliminada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/gl/sw/source/uibase/ribbar.po b/source/gl/sw/source/uibase/ribbar.po
index be335399396..3aab09ef354 100644
--- a/source/gl/sw/source/uibase/ribbar.po
+++ b/source/gl/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-18 22:31+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Texto de fórmula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/gl/sw/source/uibase/uiview.po b/source/gl/sw/source/uibase/uiview.po
index 068dab302a1..1bb36242c89 100644
--- a/source/gl/sw/source/uibase/uiview.po
+++ b/source/gl/sw/source/uibase/uiview.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-11 08:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:23+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457684165.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997437.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Exportar a fonte..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Exportar copia da fonte..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/gl/sw/uiconfig/swriter/ui.po b/source/gl/sw/uiconfig/swriter/ui.po
index dd0595c9148..4eee563e4d2 100644
--- a/source/gl/sw/uiconfig/swriter/ui.po
+++ b/source/gl/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-24 22:30+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"PO-Revision-Date: 2017-06-20 22:24+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495665010.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997451.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Descrición:"
#: frmaddpage.ui
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#: inputwinmenu.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Editar comentario..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Ordenar por"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Acción"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Data"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Comentario"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Posición no documento"
#: mergeconnectdialog.ui
msgctxt ""
@@ -9846,7 +9846,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Anchor"
-msgstr ""
+msgstr "Áncora"
#: notebookbar.ui
msgctxt ""
@@ -9855,7 +9855,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Frame / OLE"
-msgstr ""
+msgstr "Marco/OLE"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10161,7 +10161,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10170,7 +10170,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Styles"
-msgstr ""
+msgstr "_Estilos"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10179,7 +10179,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "F_ormat"
-msgstr ""
+msgstr "F_ormatar"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10206,7 +10206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reference_s"
-msgstr ""
+msgstr "Referencia_s"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10215,7 +10215,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Review"
-msgstr ""
+msgstr "_Revisión"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10224,7 +10224,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10242,7 +10242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "_Dispor"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10269,7 +10269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Styles"
-msgstr ""
+msgstr "_Estilos"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10278,7 +10278,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Format"
-msgstr ""
+msgstr "_Formato"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10287,7 +10287,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Paragraph"
-msgstr ""
+msgstr "_Parágrafo"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10296,7 +10296,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "T_able"
-msgstr ""
+msgstr "T_áboa"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10305,7 +10305,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_ows"
-msgstr ""
+msgstr "_Filas"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10323,7 +10323,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sele_ct"
-msgstr ""
+msgstr "Sele_ccionar"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10341,7 +10341,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reference_s"
-msgstr ""
+msgstr "Referencia_s"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Review"
-msgstr ""
+msgstr "_Revisión"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10368,7 +10368,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Review"
-msgstr ""
+msgstr "_Revisión"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10386,7 +10386,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Com_pare"
-msgstr ""
+msgstr "Com_parar"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10395,7 +10395,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10404,7 +10404,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_raw"
-msgstr ""
+msgstr "Debuxa_r"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10413,7 +10413,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10440,7 +10440,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "_Dispor"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10449,7 +10449,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10458,7 +10458,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Group"
-msgstr ""
+msgstr "A_grupar"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10476,7 +10476,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "F_ormat"
-msgstr ""
+msgstr "F_ormato"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10485,7 +10485,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Paragraph"
-msgstr ""
+msgstr "_Parágrafo"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10503,7 +10503,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10512,7 +10512,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Media"
-msgstr ""
+msgstr "_Multimedia"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10521,7 +10521,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "F_rame"
-msgstr ""
+msgstr "Ma_rco"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10530,7 +10530,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "_Dispor"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10548,7 +10548,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10557,7 +10557,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Help"
-msgstr ""
+msgstr "A_xuda"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Menu"
-msgstr ""
+msgstr "_Menú"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10575,7 +10575,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Tools"
-msgstr ""
+msgstr "Ferramen_tas"
#: notebookbar_groups.ui
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Título 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -10791,7 +10791,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Título 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -10800,7 +10800,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 3"
-msgstr ""
+msgstr "Título 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -10980,7 +10980,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: notebookbar_groups.ui
msgctxt ""
@@ -11938,7 +11938,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "MS Word-compatible trailing blanks"
-msgstr ""
+msgstr "Espazos compatíbeis con MS Word"
#: optcompatpage.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Utilizar a orde de ancoraxe de pintura de LibreOffice 4.3 (no documento actual)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Configuración do usuario>"
#: optcompatpage.ui
msgctxt ""
@@ -12919,7 +12919,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Chapter Numbering"
-msgstr ""
+msgstr "Numeración de capítulos"
#: outlinenumbering.ui
msgctxt ""
@@ -13310,7 +13310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Page Break..."
-msgstr ""
+msgstr "Editar quebra de páxina..."
#: pagebreakmenu.ui
msgctxt ""
@@ -13319,7 +13319,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Page Break"
-msgstr ""
+msgstr "Eliminar quebra de páxina"
#: pagecolumncontrol.ui
msgctxt ""
@@ -15011,7 +15011,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Open"
-msgstr ""
+msgstr "_Abrir"
#: readonlymenu.ui
msgctxt ""
@@ -15029,7 +15029,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: readonlymenu.ui
msgctxt ""
@@ -15038,7 +15038,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Text"
-msgstr ""
+msgstr "Seleccionar texto"
#: readonlymenu.ui
msgctxt ""
@@ -15047,7 +15047,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Re_load"
-msgstr ""
+msgstr "Re_cargar"
#: readonlymenu.ui
msgctxt ""
@@ -15056,7 +15056,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reload Frame"
-msgstr ""
+msgstr "Recargar marco"
#: readonlymenu.ui
msgctxt ""
@@ -15065,7 +15065,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "HT_ML Source"
-msgstr ""
+msgstr "Código fonte en HT_ML"
#: readonlymenu.ui
msgctxt ""
@@ -15074,7 +15074,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Backwards"
-msgstr ""
+msgstr "A_trás"
#: readonlymenu.ui
msgctxt ""
@@ -15083,7 +15083,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Forward"
-msgstr ""
+msgstr "_Adiante"
#: readonlymenu.ui
msgctxt ""
@@ -15128,7 +15128,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save Background..."
-msgstr ""
+msgstr "Gardar o fondo..."
#: readonlymenu.ui
msgctxt ""
@@ -15137,7 +15137,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copy _Link"
-msgstr ""
+msgstr "Copiar _ligazón"
#: readonlymenu.ui
msgctxt ""
@@ -15146,7 +15146,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copy _Image"
-msgstr ""
+msgstr "Copiar _imaxe"
#: readonlymenu.ui
msgctxt ""
@@ -15164,7 +15164,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image Off"
-msgstr ""
+msgstr "Desactivar imaxe"
#: readonlymenu.ui
msgctxt ""
@@ -16262,7 +16262,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Always correct _to"
-msgstr ""
+msgstr "Corrixir sempre _como"
#: spellmenu.ui
msgctxt ""
@@ -19043,7 +19043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Tipo de letra"
#: watermarkdialog.ui
msgctxt ""
@@ -19052,7 +19052,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Ángulo"
#: watermarkdialog.ui
msgctxt ""
@@ -19061,7 +19061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparencia"
#: watermarkdialog.ui
msgctxt ""
@@ -19070,7 +19070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Cor"
#: wordcount.ui
msgctxt ""
diff --git a/source/gl/uui/uiconfig/ui.po b/source/gl/uui/uiconfig/ui.po
index d506dc2e24b..70a5f456ead 100644
--- a/source/gl/uui/uiconfig/ui.po
+++ b/source/gl/uui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-03 16:56+0000\n"
+"PO-Revision-Date: 2017-06-14 22:07+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488560177.000000\n"
+"X-POOTLE-MTIME: 1497478049.000000\n"
#: authfallback.ui
msgctxt ""
@@ -291,7 +291,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Passwords for web connections are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
-msgstr "Os contrasinais para conexións web están protexidos por un contrasinal mestre. Pediráselle que o escriba unha vez por sesión, se %PRODUCTNAME obtén un contrasinal da lista de contrasinais protexidos."
+msgstr "Os contrasinais para conexións web están protexidos por un contrasinal mestre. Pediráselle que o escriba unha vez por sesión se %PRODUCTNAME solicita un contrasinal da lista de contrasinais protexidos."
#: setmasterpassworddlg.ui
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Caution: If you forget the master password, you will be unable to access any of the information protected by it. Passwords are case sensitive."
-msgstr "Coidado: Se esquece o contrasinal mestre, non poderá acceder a ningunha información protexida por el. Os contrasinais diferencian maiúsculas de minúsculas."
+msgstr "Coidado: Se esquece o contrasinal mestre non poderá acceder a ningunha información protexida por el. Os contrasinais diferencian maiúsculas de minúsculas."
#: simplenameclash.ui
msgctxt ""
diff --git a/source/gl/wizards/source/formwizard.po b/source/gl/wizards/source/formwizard.po
index 95c151d8ba0..af7da7a4685 100644
--- a/source/gl/wizards/source/formwizard.po
+++ b/source/gl/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-03-03 16:56+0000\n"
+"PO-Revision-Date: 2017-06-13 16:27+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488560187.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497371234.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "Non hai ningunha base de datos instalada. Ten que haber cando menos unha antes de poder iniciar o asistente de formularios."
#: dbwizres.src
msgctxt ""
@@ -268,7 +268,7 @@ msgctxt ""
"RID_DB_COMMON_START + 9\n"
"string.text"
msgid "The database does not contain any tables."
-msgstr ""
+msgstr "A base de datos non contén ningunha táboa."
#: dbwizres.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"RID_DB_COMMON_START + 10\n"
"string.text"
msgid "This title already exists in the database. Please enter another name."
-msgstr ""
+msgstr "Este título xa existe na base de datos. Introduza outro nome."
#: dbwizres.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"RID_DB_COMMON_START + 11\n"
"string.text"
msgid "The title must not contain any spaces or special characters."
-msgstr ""
+msgstr "O título non pode conter espazos nin caracteres especiais."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Non foi posíbel iniciar o servizo de base de datos (com.sun.data.DatabaseEngine)."
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "Non foi posíbel abrir a táboa ou consulta seleccionadas."
#: dbwizres.src
msgctxt ""
diff --git a/source/gl/xmlsecurity/uiconfig/ui.po b/source/gl/xmlsecurity/uiconfig/ui.po
index c0590af45fd..b33636b2c90 100644
--- a/source/gl/xmlsecurity/uiconfig/ui.po
+++ b/source/gl/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-20 16:46+0000\n"
"Last-Translator: unho <leandro.regueiro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Retirar"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/gu/desktop/source/deployment/gui.po b/source/gu/desktop/source/deployment/gui.po
index 087c83f6735..63c1a2e48ba 100644
--- a/source/gu/desktop/source/deployment/gui.po
+++ b/source/gu/desktop/source/deployment/gui.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: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-04 21:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: gu_IN <kde-i18n-doc@kde.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467669144.000000\n"
#: dp_gui_dialog.src
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/gu/helpcontent2/source/text/sbasic/shared.po b/source/gu/helpcontent2/source/text/sbasic/shared.po
index d593600ffce..2fa66adac9f 100644
--- a/source/gu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 22:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Error Codes </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.openoffice.org\">api.openoffice.org</link> for more information."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/gu/helpcontent2/source/text/shared/00.po b/source/gu/helpcontent2/source/text/shared/00.po
index 67419682954..b963a682227 100644
--- a/source/gu/helpcontent2/source/text/shared/00.po
+++ b/source/gu/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index 7db2b5ab14b..f2aa58f2ae2 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 01:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index 0f51801b9fb..a675132bda4 100644
--- a/source/gu/helpcontent2/source/text/shared/optionen.po
+++ b/source/gu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/gu/helpcontent2/source/text/swriter.po b/source/gu/helpcontent2/source/text/swriter.po
index 0bffc6d1366..d0711a3bfc1 100644
--- a/source/gu/helpcontent2/source/text/swriter.po
+++ b/source/gu/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/swriter/00.po b/source/gu/helpcontent2/source/text/swriter/00.po
index ff02d276f34..971509fbfef 100644
--- a/source/gu/helpcontent2/source/text/swriter/00.po
+++ b/source/gu/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 12:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,23 +2253,23 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/gu/helpcontent2/source/text/swriter/01.po b/source/gu/helpcontent2/source/text/swriter/01.po
index 2750b196252..1e39c5d68af 100644
--- a/source/gu/helpcontent2/source/text/swriter/01.po
+++ b/source/gu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 02:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the complete chapter heading, including, if available, the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline/Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline/Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Select address list"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Select address list"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/gu/helpcontent2/source/text/swriter/guide.po b/source/gu/helpcontent2/source/text/swriter/guide.po
index 608696b8ef0..5fe42ce5759 100644
--- a/source/gu/helpcontent2/source/text/swriter/guide.po
+++ b/source/gu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 02:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style </emph>box, and then double-click a number in the <emph>Levels </emph>list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "બાહ્ય રુપરેખાને ક્રમાંકિત કરો"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,16 +2917,16 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "To remove automatic outline numbering from a heading paragraph:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indexes; defining entries in</bookmark_value><bookmark_value>tables of contents; defining entries in</bookmark_value><bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Choose <emph>Insert - Indexes and Tables - Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
index fc6af87d744..37273bc8401 100644
--- a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-04 22:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "થીમો પસંદ કરો"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26995,15 +27112,6 @@ msgid "~Properties..."
msgstr "ગુણધર્મો..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/gu/sc/source/ui/src.po b/source/gu/sc/source/ui/src.po
index 096132f442a..548ae17c9bb 100644
--- a/source/gu/sc/source/ui/src.po
+++ b/source/gu/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-04 22:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -2703,7 +2703,7 @@ msgstr "વિસ્તાર #1 થી #2 સુધી ખસી ગયો છ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "પુનરાવર્તિત એરે આધારભૂત નથ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/gu/sfx2/source/view.po b/source/gu/sfx2/source/view.po
index 877f579523b..48672cf6cd2 100644
--- a/source/gu/sfx2/source/view.po
+++ b/source/gu/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/gu/svtools/source/control.po b/source/gu/svtools/source/control.po
index c4f1df4f83c..1370c093241 100644
--- a/source/gu/svtools/source/control.po
+++ b/source/gu/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "કાળા ત્રાંસા"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/gu/svtools/source/misc.po b/source/gu/svtools/source/misc.po
index 9e0684ef43c..befa1a2a581 100644
--- a/source/gu/svtools/source/misc.po
+++ b/source/gu/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-04 23:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -3181,10 +3181,10 @@ msgstr "બૅકવેલ"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "કિટુબા"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gu/sw/source/core/undo.po b/source/gu/sw/source/core/undo.po
index 796a1372b65..37be89605a1 100644
--- a/source/gu/sw/source/core/undo.po
+++ b/source/gu/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-04 10:34+0000\n"
"Last-Translator: sweta kothari <swetakothi@gmail.com>\n"
"Language-Team: Gujarati <>\n"
@@ -891,42 +891,82 @@ msgstr "સ્તંભ અટકણ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ઉમેરો"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 દૂર કરો"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "લક્ષણો બદલાઈ ગયા"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "કોષ્ટક બદલાઈ ગયું"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "શૈલી બદલાઈ ગઈ"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/gu/sw/source/uibase/docvw.po b/source/gu/sw/source/uibase/docvw.po
index 8a5d30fbbce..db592f03f85 100644
--- a/source/gu/sw/source/uibase/docvw.po
+++ b/source/gu/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-08 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/gu/sw/source/uibase/ribbar.po b/source/gu/sw/source/uibase/ribbar.po
index cfc3935542d..daae2103ea3 100644
--- a/source/gu/sw/source/uibase/ribbar.po
+++ b/source/gu/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 08:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/gu/sw/source/uibase/uiview.po b/source/gu/sw/source/uibase/uiview.po
index 9c89e79a5e6..dd35000b029 100644
--- a/source/gu/sw/source/uibase/uiview.po
+++ b/source/gu/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 08:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/gu/xmlsecurity/uiconfig/ui.po b/source/gu/xmlsecurity/uiconfig/ui.po
index 52d18057403..65e18e87d29 100644
--- a/source/gu/xmlsecurity/uiconfig/ui.po
+++ b/source/gu/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-04 23:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "દૂર કરો"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/gug/desktop/source/deployment/gui.po b/source/gug/desktop/source/deployment/gui.po
index 6ceb04a2ccd..91f715e70f2 100644
--- a/source/gug/desktop/source/deployment/gui.po
+++ b/source/gug/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2015-12-11 16:14+0000\n"
-"Last-Translator: abelardoayala <abe_aya@hotmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-06 20:36+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449850480.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1438893372.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -169,6 +169,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
index aedb3a60210..6ff5e903ad2 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-15 19:53+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Eiporavo Temas"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Moinge..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26717,15 +26834,6 @@ msgstr "~Mba'e Tee kuéra..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Mba'e..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/gug/sc/source/ui/src.po b/source/gug/sc/source/ui/src.po
index 4b50053fe1c..3d86f48ef5d 100644
--- a/source/gug/sc/source/ui/src.po
+++ b/source/gug/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-27 11:11+0000\n"
"Last-Translator: Abelardo Ayala Rodríguez <abe_aya@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Intervalo omỹi de #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Las matrices oñeñangareko va'ekue ndojeomoneĩ."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/gug/sfx2/source/view.po b/source/gug/sfx2/source/view.po
index 846453e48e3..d11c9dff2c6 100644
--- a/source/gug/sfx2/source/view.po
+++ b/source/gug/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 22:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -236,6 +236,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/gug/svtools/source/control.po b/source/gug/svtools/source/control.po
index ccb68ececdf..81815fbb10e 100644
--- a/source/gug/svtools/source/control.po
+++ b/source/gug/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-08-06 20:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Hũ Cursiva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/gug/svtools/source/misc.po b/source/gug/svtools/source/misc.po
index 0c1f4990908..de6d9e45727 100644
--- a/source/gug/svtools/source/misc.po
+++ b/source/gug/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 22:42+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/gug/sw/source/core/undo.po b/source/gug/sw/source/core/undo.po
index f8177f6d2ca..be485162b9d 100644
--- a/source/gug/sw/source/core/undo.po
+++ b/source/gug/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-27 13:42+0000\n"
"Last-Translator: abelardoayala <abe_aya@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "kytĩ columnagui"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Moinge $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Juka $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Teko kuéra ojemoambue va'ekue"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabla ojemoambue va'ekue"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Estilo ojemoambue va'ekue"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/gug/sw/source/uibase/docvw.po b/source/gug/sw/source/uibase/docvw.po
index b8d93c856e0..756a81805de 100644
--- a/source/gug/sw/source/uibase/docvw.po
+++ b/source/gug/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-06-09 14:01+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Estilos párrafogui oñemoĩ va'ekue"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/gug/sw/source/uibase/ribbar.po b/source/gug/sw/source/uibase/ribbar.po
index 57b2f9a1acc..1109d1f1f61 100644
--- a/source/gug/sw/source/uibase/ribbar.po
+++ b/source/gug/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-02 17:05+0000\n"
"Last-Translator: abelardoayala <abe_aya@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Moñe'ẽrã Fórmulagui"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/gug/sw/source/uibase/uiview.po b/source/gug/sw/source/uibase/uiview.po
index 559e8a6946d..4d951c3c5e9 100644
--- a/source/gug/sw/source/uibase/uiview.po
+++ b/source/gug/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 07:07+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Mondo okápe moógui ou..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/gug/xmlsecurity/uiconfig/ui.po b/source/gug/xmlsecurity/uiconfig/ui.po
index 95468682ec0..3e6a0446c3d 100644
--- a/source/gug/xmlsecurity/uiconfig/ui.po
+++ b/source/gug/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-03 00:35+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Nohẽ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/he/desktop/source/deployment/gui.po b/source/he/desktop/source/deployment/gui.po
index 3515d6afd04..c56f730be16 100644
--- a/source/he/desktop/source/deployment/gui.po
+++ b/source/he/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-29 10:06+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485684367.000000\n"
#: dp_gui_dialog.src
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/he/helpcontent2/source/text/sbasic/shared.po b/source/he/helpcontent2/source/text/sbasic/shared.po
index 06f5cd24d24..9a5a61a20eb 100644
--- a/source/he/helpcontent2/source/text/sbasic/shared.po
+++ b/source/he/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-20 23:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/he/helpcontent2/source/text/shared/00.po b/source/he/helpcontent2/source/text/shared/00.po
index 63dd44dc942..5c9f4e58d3b 100644
--- a/source/he/helpcontent2/source/text/shared/00.po
+++ b/source/he/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 03eb1554594..6b0d62394f2 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 18:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index 9dc8d2eab73..9611d4e71bf 100644
--- a/source/he/helpcontent2/source/text/shared/optionen.po
+++ b/source/he/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 02:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/he/helpcontent2/source/text/swriter.po b/source/he/helpcontent2/source/text/swriter.po
index 411da4affb3..67eb0ad9c57 100644
--- a/source/he/helpcontent2/source/text/swriter.po
+++ b/source/he/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 12:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,7 +1053,7 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
msgstr ""
#: main0106.xhp
diff --git a/source/he/helpcontent2/source/text/swriter/00.po b/source/he/helpcontent2/source/text/swriter/00.po
index 210b022fb89..46fd13563ca 100644
--- a/source/he/helpcontent2/source/text/swriter/00.po
+++ b/source/he/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 12:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/he/helpcontent2/source/text/swriter/01.po b/source/he/helpcontent2/source/text/swriter/01.po
index 9f690bcc7b2..a94f65eaa28 100644
--- a/source/he/helpcontent2/source/text/swriter/01.po
+++ b/source/he/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 02:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "To highlight the screen display of outline numbers, choose \\<emph\\>View -\\</emph\\>\\<emph\\>Field Shadings\\</emph\\>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,8 +21405,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "The \\<emph\\>Format\\</emph\\> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "New Address Block"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "New Address Block"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Address Elements"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Drag address element to the field below"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/swriter/guide.po b/source/he/helpcontent2/source/text/swriter/guide.po
index 431551c3562..13ea92fa91d 100644
--- a/source/he/helpcontent2/source/text/swriter/guide.po
+++ b/source/he/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 02:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose \\<emph\\>Tools - Outline Numbering\\</emph\\>, select the style in the \\<emph\\>Paragraph Style \\</emph\\>box, and then double-click a number in the \\<emph\\>Levels \\</emph\\>list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,23 +2901,23 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Outline Numbering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "\\<bookmark_value\\>outline numbering\\</bookmark_value\\>\\<bookmark_value\\>removing;heading numbers\\</bookmark_value\\>\\<bookmark_value\\>chapter numbering\\</bookmark_value\\>\\<bookmark_value\\>headings; numbering\\</bookmark_value\\>\\<bookmark_value\\>numbering;headings\\</bookmark_value\\>\\<bookmark_value\\>headings; own paragraph styles\\</bookmark_value\\>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,8 +2925,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose \\<emph\\>Tools - Outline Numbering\\</emph\\>, and then click the \\<emph\\>Numbering \\</emph\\>tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "To remove automatic outline numbering from a heading paragraph:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose \\<emph\\>Tools - Outline Numbering\\</emph\\>, and then click the \\<emph\\>Numbering \\</emph\\>tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Choose \\<emph\\>Tools - Outline Numbering\\</emph\\>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "\\<bookmark_value\\>indexes; defining entries in\\</bookmark_value\\>\\<bookmark_value\\>tables of contents; defining entries in\\</bookmark_value\\>\\<bookmark_value\\>entries; defining in indexes/tables of contents\\</bookmark_value\\>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Choose \\<emph\\>Insert - Indexes and Tables - Entry\\</emph\\>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Choose \\<emph\\>Tools - Outline Numbering\\</emph\\> and click the \\<emph\\>Numbering\\</emph\\> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select the \\<emph\\>Additional Styles \\</emph\\>check box in the \\<emph\\>Create from\\</emph\\> area, and then click the (\\<emph\\>...\\</emph\\>) button next to the check box. In the \\<emph\\>Assign Styles\\</emph\\> dialog, click the style in the list, and then click the \\<emph\\>>> \\</emph\\>or the \\<emph\\><< \\</emph\\>button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "\\<bookmark_value\\>numbering; removing/interrupting\\</bookmark_value\\>\\<bookmark_value\\>bullet lists; interrupting\\</bookmark_value\\>\\<bookmark_value\\>lists;removing/interrupting numbering\\</bookmark_value\\>\\<bookmark_value\\>removing;numbers in lists\\</bookmark_value\\>\\<bookmark_value\\>interrupting numbered lists\\</bookmark_value\\>\\<bookmark_value\\>changing;starting numbers in lists\\</bookmark_value\\>\\<bookmark_value\\>modifying;numbering in lists\\</bookmark_value\\>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
index ddf467fcd73..e68e295c920 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-26 13:26+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "בחירת נושאים"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4070,6 +4070,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26945,15 +27062,6 @@ msgid "~Properties..."
msgstr "מא~פיינים…"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/he/sc/source/ui/src.po b/source/he/sc/source/ui/src.po
index e89a0cd70ad..c96f9e41862 100644
--- a/source/he/sc/source/ui/src.po
+++ b/source/he/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-15 14:09+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2702,7 +2702,7 @@ msgstr "הטווח זז מ#1 ל#2‏"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "מערכים מקוננים לא נתמכים."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/he/sfx2/source/view.po b/source/he/sfx2/source/view.po
index 0c460bbfc89..aa0a838c5ca 100644
--- a/source/he/sfx2/source/view.po
+++ b/source/he/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 23:45+0000\n"
"Last-Translator: ttv20 <ttv200@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/he/svtools/source/control.po b/source/he/svtools/source/control.po
index 7ad8c171696..b7306185be0 100644
--- a/source/he/svtools/source/control.po
+++ b/source/he/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-12-10 23:05+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "נטוי שחור"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/he/svtools/source/misc.po b/source/he/svtools/source/misc.po
index 394abc280c0..c5f8dd5ec7a 100644
--- a/source/he/svtools/source/misc.po
+++ b/source/he/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-29 09:51+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3181,10 +3181,10 @@ msgstr "בקוול"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "קיטובה"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3907,6 +3907,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/he/sw/source/core/undo.po b/source/he/sw/source/core/undo.po
index 0e3fe62ec11..304abe56175 100644
--- a/source/he/sw/source/core/undo.po
+++ b/source/he/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-18 11:37+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "שבירת עמודה"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "הכנסת $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "מחיקת $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "התכונות שונו"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "הטבלה שונתה"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "הסגנון שונה"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/he/sw/source/uibase/docvw.po b/source/he/sw/source/uibase/docvw.po
index d42b4139047..251da4393cc 100644
--- a/source/he/sw/source/uibase/docvw.po
+++ b/source/he/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-18 10:40+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/he/sw/source/uibase/ribbar.po b/source/he/sw/source/uibase/ribbar.po
index 884786cd910..0ac3e80f205 100644
--- a/source/he/sw/source/uibase/ribbar.po
+++ b/source/he/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-18 11:34+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "טקסט הנוסחה"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/he/sw/source/uibase/uiview.po b/source/he/sw/source/uibase/uiview.po
index 87e4430ab91..1f0520ed2ff 100644
--- a/source/he/sw/source/uibase/uiview.po
+++ b/source/he/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-26 13:29+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/he/xmlsecurity/uiconfig/ui.po b/source/he/xmlsecurity/uiconfig/ui.po
index 1e8ac7d6f54..af16ece504e 100644
--- a/source/he/xmlsecurity/uiconfig/ui.po
+++ b/source/he/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-22 11:59+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "הסרה"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/hi/desktop/source/deployment/gui.po b/source/hi/desktop/source/deployment/gui.po
index cb6df27dd55..ee641ab5792 100644
--- a/source/hi/desktop/source/deployment/gui.po
+++ b/source/hi/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 22:01+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-05-12 15:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467669665.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1431444697.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/hi/helpcontent2/source/text/sbasic/shared.po b/source/hi/helpcontent2/source/text/sbasic/shared.po
index fe5fa85698a..b745d4696aa 100644
--- a/source/hi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 02:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/hi/helpcontent2/source/text/shared/00.po b/source/hi/helpcontent2/source/text/shared/00.po
index e185913b165..2d7fffd877b 100644
--- a/source/hi/helpcontent2/source/text/shared/00.po
+++ b/source/hi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 23:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index aa9865388d5..624e0edec23 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-24 14:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index f8faf6b791a..d433fd5262a 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 05:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/hi/helpcontent2/source/text/swriter.po b/source/hi/helpcontent2/source/text/swriter.po
index fa2a409dcd2..6606e0a24c6 100644
--- a/source/hi/helpcontent2/source/text/swriter.po
+++ b/source/hi/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,7 +1053,7 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
msgstr ""
#: main0106.xhp
diff --git a/source/hi/helpcontent2/source/text/swriter/00.po b/source/hi/helpcontent2/source/text/swriter/00.po
index 2e2d399fcf4..18a43838fe0 100644
--- a/source/hi/helpcontent2/source/text/swriter/00.po
+++ b/source/hi/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/hi/helpcontent2/source/text/swriter/01.po b/source/hi/helpcontent2/source/text/swriter/01.po
index 3d657b9c74a..5e4fc4a181d 100644
--- a/source/hi/helpcontent2/source/text/swriter/01.po
+++ b/source/hi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 05:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "पंक्ति क्रमांकन"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "पंक्ति क्रमांकन"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "पता सूची चुनें"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "पता सूची चुनें"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/hi/helpcontent2/source/text/swriter/guide.po b/source/hi/helpcontent2/source/text/swriter/guide.po
index df6d1ff9d11..001838122a6 100644
--- a/source/hi/helpcontent2/source/text/swriter/guide.po
+++ b/source/hi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 05:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "रुपरेखा क्रमांकन"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
index 40921b26240..94eead9a930 100644
--- a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-02 21:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "विषय चुनें"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26995,15 +27112,6 @@ msgid "~Properties..."
msgstr "विशेषता..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/hi/sc/source/ui/src.po b/source/hi/sc/source/ui/src.po
index 12e01d6b642..ad21ac89a87 100644
--- a/source/hi/sc/source/ui/src.po
+++ b/source/hi/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 22:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -2698,7 +2698,7 @@ msgstr "दायरा को #1 से #2 को हटाया है"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2863,7 +2863,7 @@ msgstr "संजालित सरणी समर्थित नहीं."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/hi/sfx2/source/view.po b/source/hi/sfx2/source/view.po
index 6798a72abc9..e300f68b0cd 100644
--- a/source/hi/sfx2/source/view.po
+++ b/source/hi/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 23:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/hi/svtools/source/control.po b/source/hi/svtools/source/control.po
index 1ee9fda2e67..9ec9482f7e2 100644
--- a/source/hi/svtools/source/control.po
+++ b/source/hi/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -291,6 +291,110 @@ msgstr "काला तिरछा"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/hi/svtools/source/misc.po b/source/hi/svtools/source/misc.po
index 3309707924b..8618aa3bd88 100644
--- a/source/hi/svtools/source/misc.po
+++ b/source/hi/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-02 23:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -3181,10 +3181,10 @@ msgstr "बेक्वेल"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "कितुबा"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3911,6 +3911,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hi/sw/source/core/undo.po b/source/hi/sw/source/core/undo.po
index d3f2406de6e..15344eabfb0 100644
--- a/source/hi/sw/source/core/undo.po
+++ b/source/hi/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-03 00:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -892,42 +892,82 @@ msgstr "स्तंभ खंडन"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 जोड़ें"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 मिटाएँ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "गुण बदला गया"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "सारणी बदली"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "शैली बदली गयी"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/hi/sw/source/uibase/docvw.po b/source/hi/sw/source/uibase/docvw.po
index 64a0d2f9483..1e91b38b3ac 100644
--- a/source/hi/sw/source/uibase/docvw.po
+++ b/source/hi/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 00:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/hi/sw/source/uibase/ribbar.po b/source/hi/sw/source/uibase/ribbar.po
index 5c295f30533..b4202b7efb0 100644
--- a/source/hi/sw/source/uibase/ribbar.po
+++ b/source/hi/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-03 00:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/hi/sw/source/uibase/uiview.po b/source/hi/sw/source/uibase/uiview.po
index 350cc030e56..ca8691162bd 100644
--- a/source/hi/sw/source/uibase/uiview.po
+++ b/source/hi/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 00:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/hi/xmlsecurity/uiconfig/ui.po b/source/hi/xmlsecurity/uiconfig/ui.po
index 86162cf5184..231d43b253b 100644
--- a/source/hi/xmlsecurity/uiconfig/ui.po
+++ b/source/hi/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-03 01:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -174,6 +174,15 @@ msgstr "हटाएँ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/hr/chart2/uiconfig/ui.po b/source/hr/chart2/uiconfig/ui.po
index dd4637480a3..7dd6e5e0bd9 100644
--- a/source/hr/chart2/uiconfig/ui.po
+++ b/source/hr/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-12 13:06+0000\n"
+"PO-Revision-Date: 2017-06-20 18:39+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494594385.000000\n"
+"X-POOTLE-MTIME: 1497983966.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Series"
-msgstr "Umetni skup"
+msgstr "Umetni skup podataka"
#: chartdatadialog.ui
msgctxt ""
diff --git a/source/hr/cui/source/tabpages.po b/source/hr/cui/source/tabpages.po
index 0aa332217a8..65d674cfd84 100644
--- a/source/hr/cui/source/tabpages.po
+++ b/source/hr/cui/source/tabpages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-25 08:49+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:34+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493110186.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983650.000000\n"
#: border.src
msgctxt ""
@@ -386,7 +386,7 @@ msgctxt ""
"RID_SVXSTR_BOLD_UNDER\n"
"string.text"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr ""
+msgstr "Automatski *podebljano*, /kurziv/, -precrtano- i _podcrtano_"
#: strings.src
msgctxt ""
@@ -546,7 +546,7 @@ msgctxt ""
"RID_SVXSTR_STARTQUOTE\n"
"string.text"
msgid "Start Quote"
-msgstr ""
+msgstr "Otvaranje navodnih znakova"
#: strings.src
msgctxt ""
@@ -554,4 +554,4 @@ msgctxt ""
"RID_SVXSTR_ENDQUOTE\n"
"string.text"
msgid "End Quote"
-msgstr ""
+msgstr "Zatvaranje navodnih znakova"
diff --git a/source/hr/cui/uiconfig/ui.po b/source/hr/cui/uiconfig/ui.po
index 6454b064196..61d797cf610 100644
--- a/source/hr/cui/uiconfig/ui.po
+++ b/source/hr/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-02 09:07+0000\n"
+"PO-Revision-Date: 2017-06-20 18:38+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496394445.000000\n"
+"X-POOTLE-MTIME: 1497983926.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -5378,7 +5378,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Properties"
-msgstr ""
+msgstr "Svojstva tablice"
#: formatcellsdialog.ui
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display as icon"
-msgstr ""
+msgstr "Prikaži kao ikonu"
#: insertoleobject.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "Vrati na preddefiniranu naredbu"
#: menuassignpage.ui
msgctxt ""
@@ -8016,7 +8016,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Icon"
-msgstr ""
+msgstr "Ikona za poništenje"
#: menuassignpage.ui
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Western text only"
-msgstr ""
+msgstr "_Samo tekstovi na zapadnim jezicima"
#: optasianpage.ui
msgctxt ""
@@ -9811,7 +9811,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type and replace"
-msgstr "_Piši i zamijeni"
+msgstr "_Unesi i zamijeni"
#: optctlpage.ui
msgctxt ""
@@ -10315,7 +10315,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Interpret as years between "
-msgstr "Tumač_i kao godine između "
+msgstr "_Kao godine tumači brojeve između "
#: optgeneralpage.ui
msgctxt ""
@@ -10792,7 +10792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Complex _text layout:"
-msgstr ""
+msgstr "Kompleksni izgled _teksta:"
#: optlanguagespage.ui
msgctxt ""
@@ -11950,7 +11950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Telephone (home/_work):"
-msgstr "Telefon (kuća/_posao):"
+msgstr "Telefon (privatni/_poslovni):"
#: optuserpage.ui
msgctxt ""
@@ -11959,7 +11959,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr "Kućni telefonski broj"
+msgstr "Privatni telefonski broj"
#: optuserpage.ui
msgctxt ""
@@ -12049,7 +12049,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr "Kućni telefonski broj"
+msgstr "Privatni telefonski broj"
#: optuserpage.ui
msgctxt ""
diff --git a/source/hr/dbaccess/source/core/resource.po b/source/hr/dbaccess/source/core/resource.po
index f376493df87..3b4817ba3f9 100644
--- a/source/hr/dbaccess/source/core/resource.po
+++ b/source/hr/dbaccess/source/core/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-24 05:40+0000\n"
+"PO-Revision-Date: 2017-06-20 18:42+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493012403.000000\n"
+"X-POOTLE-MTIME: 1497984125.000000\n"
#: strings.src
msgctxt ""
@@ -512,7 +512,7 @@ msgctxt ""
"RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER\n"
"string.text"
msgid "The rows before the first and after the last row don't have a bookmark."
-msgstr "Redci prije prvoga i nakon zadnjega nemaju zabilješku."
+msgstr "Nije moguće imati zabilješku prije prvoga i poslije zadnjega retka."
#: strings.src
msgctxt ""
@@ -520,7 +520,7 @@ msgctxt ""
"RID_STR_NO_BOOKMARK_DELETED\n"
"string.text"
msgid "The current row is deleted, and thus doesn't have a bookmark."
-msgstr "Trenutni redak je obrisan i stoga nema zabilješku."
+msgstr "Traženi je redak obrisan i stoga nema zabilješku."
#: strings.src
msgctxt ""
diff --git a/source/hr/dbaccess/source/ui/tabledesign.po b/source/hr/dbaccess/source/ui/tabledesign.po
index 36266ceedcd..913e7cf3b7a 100644
--- a/source/hr/dbaccess/source/ui/tabledesign.po
+++ b/source/hr/dbaccess/source/ui/tabledesign.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-22 21:01+0000\n"
+"PO-Revision-Date: 2017-06-20 18:42+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485118915.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984147.000000\n"
#: table.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_TABLEDESIGN_UNDO_PRIMKEY\n"
"string.text"
msgid "Insert/remove primary key"
-msgstr "Umetni osnovni ključ"
+msgstr "Umetni ili obriši osnovni ključ"
#: table.src
msgctxt ""
diff --git a/source/hr/dbaccess/uiconfig/ui.po b/source/hr/dbaccess/uiconfig/ui.po
index 4aca6647cba..6eb406a8ce2 100644
--- a/source/hr/dbaccess/uiconfig/ui.po
+++ b/source/hr/dbaccess/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-10 18:34+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:44+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494441250.000000\n"
+"X-POOTLE-MTIME: 1497984242.000000\n"
#: admindialog.ui
msgctxt ""
@@ -2189,7 +2189,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Jedinstvene vrijednosti"
#: querypropertiesdialog.ui
msgctxt ""
@@ -2234,7 +2234,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distinct values:"
-msgstr "Izrazite vrijednosti:"
+msgstr "Jedinstvene vrijednosti:"
#: relationdialog.ui
msgctxt ""
diff --git a/source/hr/desktop/source/deployment/gui.po b/source/hr/desktop/source/deployment/gui.po
index c137950f06a..f6895b8f7cd 100644
--- a/source/hr/desktop/source/deployment/gui.po
+++ b/source/hr/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-17 07:15+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 18:46+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468739734.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984371.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "Instalacija dodataka je trenutno onemogućena. Obratite se svom administratoru sustava za više informacija."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "Uklanjanje dodataka je trenutno onemogućeno. Obratite se svom administratoru sustava za više informacija."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/hr/filter/source/config/fragments/filters.po b/source/hr/filter/source/config/fragments/filters.po
index f560521963e..7cafd9dbc13 100644
--- a/source/hr/filter/source/config/fragments/filters.po
+++ b/source/hr/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-26 09:40+0000\n"
+"PO-Revision-Date: 2017-06-20 18:46+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493199641.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984407.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO Rowset XML"
#: AbiWord.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Napušten datotečni format StarOffice prezentacije"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/hr/filter/source/config/fragments/types.po b/source/hr/filter/source/config/fragments/types.po
index 58c9c7a39ea..6b30ba34982 100644
--- a/source/hr/filter/source/config/fragments/types.po
+++ b/source/hr/filter/source/config/fragments/types.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-01-06 16:20+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-06-13 09:49+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1452097218.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497347367.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO Rowset XML"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/hr/filter/uiconfig/ui.po b/source/hr/filter/uiconfig/ui.po
index d10a0b59e5d..1740dd85c0d 100644
--- a/source/hr/filter/uiconfig/ui.po
+++ b/source/hr/filter/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-12 13:27+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:47+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494595659.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984440.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "_Odabir/Odabrani radni list(ovi)"
#: pdfgeneralpage.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Koristi referentne XObjekte"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/hr/formula/source/core/resource.po b/source/hr/formula/source/core/resource.po
index f6125876823..ad36a46bdd4 100644
--- a/source/hr/formula/source/core/resource.po
+++ b/source/hr/formula/source/core/resource.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-23 18:36+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:47+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492972610.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984451.000000\n"
#: core_resource.src
msgctxt ""
@@ -3668,4 +3668,4 @@ msgctxt ""
"ROUNDSIG\n"
"itemlist.text"
msgid "ROUNDSIG"
-msgstr ""
+msgstr "ROUNDSIG"
diff --git a/source/hr/framework/source/classes.po b/source/hr/framework/source/classes.po
index 7cafb2c655d..cf41f5f6545 100644
--- a/source/hr/framework/source/classes.po
+++ b/source/hr/framework/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-18 11:02+0200\n"
-"PO-Revision-Date: 2017-04-25 08:15+0000\n"
+"PO-Revision-Date: 2017-06-20 18:47+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493108130.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984465.000000\n"
#: resource.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_TOOLBAR_VISIBLE_BUTTONS\n"
"string.text"
msgid "Visible ~Buttons"
-msgstr ""
+msgstr "Vidljivi gum~bi"
#: resource.src
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared.po b/source/hr/helpcontent2/source/text/sbasic/shared.po
index ef03c16d9ac..1e3f57582d2 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-09-20 22:48+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Kodovi pogrešaka</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/hr/helpcontent2/source/text/shared/00.po b/source/hr/helpcontent2/source/text/shared/00.po
index ceab4c36157..556323eb1ec 100644
--- a/source/hr/helpcontent2/source/text/shared/00.po
+++ b/source/hr/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 12:58+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index edbabc43a41..0df9ad202e9 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-23 07:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index d44148845f8..752dad5d6cc 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 06:12+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/hr/helpcontent2/source/text/swriter.po b/source/hr/helpcontent2/source/text/swriter.po
index 8c1890f154d..feeaaaaa37e 100644
--- a/source/hr/helpcontent2/source/text/swriter.po
+++ b/source/hr/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 13:52+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Konturno numeriranje</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/swriter/00.po b/source/hr/helpcontent2/source/text/swriter/00.po
index cffdd4bc941..702486fd140 100644
--- a/source/hr/helpcontent2/source/text/swriter/00.po
+++ b/source/hr/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 13:53+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/hr/helpcontent2/source/text/swriter/01.po b/source/hr/helpcontent2/source/text/swriter/01.po
index 831efd84b15..a908f363dfa 100644
--- a/source/hr/helpcontent2/source/text/swriter/01.po
+++ b/source/hr/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 06:26+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Odaberite <emph>1 </emph>želite li vidjeti samo naslove najviše razine, odaberite <emph>10</emph> želite li vidjeti sve naslove.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Konturno numeriranje"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Konturno numeriranje"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novi adresni blok"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novi adresni blok"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/hr/helpcontent2/source/text/swriter/guide.po b/source/hr/helpcontent2/source/text/swriter/guide.po
index 88f8348109c..36ff3ebe617 100644
--- a/source/hr/helpcontent2/source/text/swriter/guide.po
+++ b/source/hr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-19 07:46+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Koristeći Navigator možete pomicati naslove i pripadajući tekst gore ili dolje unutar dokumenta. Naslovima možete dodijeliti višu ili nižu naslovnu razinu. Kako biste koristili tu značajku, oblikujte naslove u dokumentu jednim od unaprijed definiranih naslovnih stilova. Za korištenje prilagođenih naslovnih stilova odaberite <emph>Alati - Konture i numeriranje</emph>, odaberite stil u dijelu <emph>Stil odlomka </emph> te dvokliknite broj na listi <emph>Razine </emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Konturno numeriranje"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Odaberite <item type=\"menuitem\">Alati - Mogućnosti automatskog ispravljanja</item> te odaberite karticu <item type=\"menuitem\">Iznimke</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Odaberite <item type=\"menuitem\">Alati - Mogućnosti automatskog ispravljanja</item> te odaberite karticu <item type=\"menuitem\">Iznimke</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office.po b/source/hr/officecfg/registry/data/org/openoffice/Office.po
index 066eabe2893..dafaacb80c1 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/hr/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: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-12 13:22+0000\n"
+"PO-Revision-Date: 2017-06-13 09:42+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494595325.000000\n"
+"X-POOTLE-MTIME: 1497346966.000000\n"
#: Addons.xcu
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"WorkPhone\n"
"value.text"
msgid "Phone (Work)"
-msgstr "Telefon (posao)"
+msgstr "Telefon (poslovni)"
#: DataAccess.xcu
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"HomePhone\n"
"value.text"
msgid "Phone (Home)"
-msgstr "Telefon (kuća)"
+msgstr "Telefon (privatni)"
#: DataAccess.xcu
msgctxt ""
@@ -2786,7 +2786,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -2795,7 +2795,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -3227,7 +3227,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -3236,7 +3236,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -3668,7 +3668,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -3677,7 +3677,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -4055,7 +4055,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -4064,7 +4064,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -4514,7 +4514,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipPhoneNumber"
-msgstr "Telefonski broj pošiljke"
+msgstr "TelefonskiBrojPošiljke"
#: TableWizard.xcu
msgctxt ""
@@ -8159,7 +8159,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
@@ -8168,7 +8168,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "Broj mobilnog telefona"
+msgstr "Broj mobilnoga telefona"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index db790173f79..d5d9614c6af 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-10 19:35+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:44+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494444954.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497984249.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Odabeti teme"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Umetanje..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -5909,7 +6026,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distinct Values"
-msgstr "Različite vrijednosti"
+msgstr "Jedinstvene vrijednosti"
#: DbuCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Svojstva..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/hr/sc/source/ui/src.po b/source/hr/sc/source/ui/src.po
index 15e8ac6a925..7c8206c3d71 100644
--- a/source/hr/sc/source/ui/src.po
+++ b/source/hr/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-13 19:02+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 18:24+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494702135.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983071.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Raspon premješten iz #1 u #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2871,7 +2871,7 @@ msgstr "Ugnježđeni nizovi nisu podržani."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "Tekst u stupce"
@@ -3930,7 +3930,7 @@ msgctxt ""
"STR_QUERY_PIVOTTABLE_DELTAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-msgstr ""
+msgstr "Odabrani radni list/ovi sadrži/e služe kao izvor podataka za povezane pivot-tablice, koje će biti izgubljene. Jeste li sigurni da želite obrisati odabrani/e list/ove?"
#: globstr.src
msgctxt ""
@@ -3938,7 +3938,7 @@ msgctxt ""
"STR_ERR_NAME_INVALID_CELL_REF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
-msgstr ""
+msgstr "Neispravni naziv. Nedopuštena referencija na ćeliju ili na raspon ćelija."
#: scfuncs.src
msgctxt ""
@@ -5598,6 +5598,8 @@ msgid ""
"Calculates the calendar week corresponding to the given date.\n"
"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
msgstr ""
+"Izračunava kalendarski tjedan koji odgovara danom datumu.\n"
+"Ova funkcija samo omogućava kompatibilnost s %PRODUCTNAME 5.0 i ranijim inačicama, te OpenOffice.org."
#: scfuncs.src
msgctxt ""
@@ -9854,7 +9856,7 @@ msgctxt ""
"Function\n"
"itemlist.text"
msgid "Function"
-msgstr ""
+msgstr "Funkcija"
#: scfuncs.src
msgctxt ""
@@ -10236,6 +10238,8 @@ msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Zaokružuje broj dalje od nule na najbliži višekratnik značajnosti.\n"
+"Ova funkcija postoji zbog kompatibilnosti s Microsoft Excel 2007 i starijim inačicama."
#: scfuncs.src
msgctxt ""
@@ -10563,6 +10567,8 @@ msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Zaokružuje broj prema nuli na najbliži višekratnik apsolutne vrijednosti značajnosti.\n"
+"Ova funkcija postoji zbog kompatibilnosti s Microsoft Excel 2007 i starijim inačicama."
#: scfuncs.src
msgctxt ""
@@ -12704,7 +12710,7 @@ msgctxt ""
"The number of significant digits for the returned percentage: if omitted, a value of 3 is used.\n"
"itemlist.text"
msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
-msgstr "Broj važnih znamenki za vraćeni postotak. Ukoliko je izostavljeno, koristi se vrijednost 3."
+msgstr "Broj značajnih znamenki za vraćeni postotak. Ukoliko je izostavljeno, koristi se 3 znamenke."
#: scfuncs.src
msgctxt ""
@@ -12767,7 +12773,7 @@ msgctxt ""
"The number of significant digits for the returned percentage: if omitted, a value of 3 is used.\n"
"itemlist.text"
msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
-msgstr "Broj značajnih znamenki za vraćeni postotak: ukoliko je izostavljeno, koristi se 3 znamenke."
+msgstr "Broj značajnih znamenki za vraćeni postotak. Ukoliko je izostavljeno, koristi se 3 znamenke."
#: scfuncs.src
msgctxt ""
@@ -12830,7 +12836,7 @@ msgctxt ""
"The number of significant digits for the returned percentage: if omitted, a value of 3 is used.\n"
"itemlist.text"
msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
-msgstr "Broj značajnih znamenki za vraćeni postotak: ukoliko je izostavljeno, koristi se 3 znamenke."
+msgstr "Broj značajnih znamenki za vraćeni postotak. Ukoliko je izostavljeno, koristi se 3 znamenke."
#: scfuncs.src
msgctxt ""
@@ -21866,7 +21872,7 @@ msgctxt ""
"text\n"
"itemlist.text"
msgid "text"
-msgstr ""
+msgstr "tekst"
#: scfuncs.src
msgctxt ""
@@ -22226,7 +22232,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Pozitivni cijeli broj manji od 2^48."
#: scfuncs.src
msgctxt ""
@@ -22262,7 +22268,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Pozitivni cijeli broj manji od 2^48."
#: scfuncs.src
msgctxt ""
@@ -22298,7 +22304,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Pozitivni cijeli broj manji od 2^48."
#: scfuncs.src
msgctxt ""
@@ -22865,7 +22871,7 @@ msgctxt ""
"Rounds a number to predefined significant digits.\n"
"itemlist.text"
msgid "Rounds a number to predefined significant digits."
-msgstr ""
+msgstr "Zaokružuje broj na unaprijed određen broj značajnih znamenki."
#: scfuncs.src
msgctxt ""
@@ -22874,7 +22880,7 @@ msgctxt ""
"value\n"
"itemlist.text"
msgid "value"
-msgstr ""
+msgstr "vrijednost"
#: scfuncs.src
msgctxt ""
@@ -22883,7 +22889,7 @@ msgctxt ""
"The number to be rounded.\n"
"itemlist.text"
msgid "The number to be rounded."
-msgstr ""
+msgstr "Broj koji će biti zaokružen."
#: scfuncs.src
msgctxt ""
@@ -22892,7 +22898,7 @@ msgctxt ""
"digits\n"
"itemlist.text"
msgid "digits"
-msgstr ""
+msgstr "znamenke"
#: scfuncs.src
msgctxt ""
@@ -22901,7 +22907,7 @@ msgctxt ""
"The number of significant digits to which value is to be rounded.\n"
"itemlist.text"
msgid "The number of significant digits to which value is to be rounded."
-msgstr ""
+msgstr "Broj značajnih znamenki na koji će se vrijednost zaokružiti."
#: scstring.src
msgctxt ""
diff --git a/source/hr/sc/uiconfig/scalc/ui.po b/source/hr/sc/uiconfig/scalc/ui.po
index 73a8342d3de..c7e951ed8c9 100644
--- a/source/hr/sc/uiconfig/scalc/ui.po
+++ b/source/hr/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-02 14:26+0000\n"
+"PO-Revision-Date: 2017-06-13 09:58+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496413602.000000\n"
+"X-POOTLE-MTIME: 1497347925.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -3467,7 +3467,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Hyperlink"
-msgstr ""
+msgstr "Umetni kao poveznicu"
#: dropmenu.ui
msgctxt ""
@@ -3476,7 +3476,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Link"
-msgstr ""
+msgstr "Umetni kao poveznicu"
#: dropmenu.ui
msgctxt ""
@@ -3485,7 +3485,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Copy"
-msgstr ""
+msgstr "Umetni kao kopiju"
#: erroralerttabpage.ui
msgctxt ""
@@ -6275,7 +6275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: notebookbar_groups.ui
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert columns"
-msgstr ""
+msgstr "Umetni stupce"
#: protectsheetdlg.ui
msgctxt ""
@@ -8255,7 +8255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert rows"
-msgstr ""
+msgstr "Umetni retke"
#: protectsheetdlg.ui
msgctxt ""
@@ -8264,7 +8264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete columns"
-msgstr ""
+msgstr "Obriši stupce"
#: protectsheetdlg.ui
msgctxt ""
@@ -8273,7 +8273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete rows"
-msgstr ""
+msgstr "Obriši retke"
#: queryrunstreamscriptdialog.ui
msgctxt ""
@@ -8948,7 +8948,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Obriši"
#: scenariomenu.ui
msgctxt ""
@@ -8957,7 +8957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Svojstva..."
#: scgeneralpage.ui
msgctxt ""
diff --git a/source/hr/scaddins/source/analysis.po b/source/hr/scaddins/source/analysis.po
index 89a1d6febcb..9af6cfae723 100644
--- a/source/hr/scaddins/source/analysis.po
+++ b/source/hr/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-02-25 20:13+0000\n"
+"PO-Revision-Date: 2017-06-20 18:27+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488053631.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983257.000000\n"
#: analysis.src
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr ""
+msgstr "Kompleksni broj"
#: analysis.src
msgctxt ""
@@ -2032,7 +2032,7 @@ msgctxt ""
"Complex number 1\n"
"itemlist.text"
msgid "Complex number 1"
-msgstr ""
+msgstr "Kompleksni broj 1"
#: analysis.src
msgctxt ""
@@ -2041,7 +2041,7 @@ msgctxt ""
"Complex number 2\n"
"itemlist.text"
msgid "Complex number 2"
-msgstr ""
+msgstr "Kompleksni broj 2"
#: analysis.src
msgctxt ""
diff --git a/source/hr/scaddins/source/datefunc.po b/source/hr/scaddins/source/datefunc.po
index d349278ea3e..7bc8fedecb8 100644
--- a/source/hr/scaddins/source/datefunc.po
+++ b/source/hr/scaddins/source/datefunc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-07-23 09:20+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:28+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1374571256.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983297.000000\n"
#: datefunc.src
msgctxt ""
@@ -346,7 +346,7 @@ msgctxt ""
"DATE_FUNCNAME_DiffWeeks\n"
"string.text"
msgid "WEEKS"
-msgstr ""
+msgstr "WEEKS"
#: datefunc.src
msgctxt ""
@@ -354,7 +354,7 @@ msgctxt ""
"DATE_FUNCNAME_DiffMonths\n"
"string.text"
msgid "MONTHS"
-msgstr ""
+msgstr "MONTHS"
#: datefunc.src
msgctxt ""
@@ -362,7 +362,7 @@ msgctxt ""
"DATE_FUNCNAME_DiffYears\n"
"string.text"
msgid "YEARS"
-msgstr ""
+msgstr "YEARS"
#: datefunc.src
msgctxt ""
@@ -370,7 +370,7 @@ msgctxt ""
"DATE_FUNCNAME_IsLeapYear\n"
"string.text"
msgid "ISLEAPYEAR"
-msgstr ""
+msgstr "ISLEAPYEAR"
#: datefunc.src
msgctxt ""
@@ -378,7 +378,7 @@ msgctxt ""
"DATE_FUNCNAME_DaysInMonth\n"
"string.text"
msgid "DAYSINMONTH"
-msgstr ""
+msgstr "DAYSINMONTH"
#: datefunc.src
msgctxt ""
@@ -386,7 +386,7 @@ msgctxt ""
"DATE_FUNCNAME_DaysInYear\n"
"string.text"
msgid "DAYSINYEAR"
-msgstr ""
+msgstr "DAYSINYEAR"
#: datefunc.src
msgctxt ""
@@ -394,7 +394,7 @@ msgctxt ""
"DATE_FUNCNAME_WeeksInYear\n"
"string.text"
msgid "WEEKSINYEAR"
-msgstr ""
+msgstr "WEEKSINYEAR"
#: datefunc.src
msgctxt ""
@@ -402,4 +402,4 @@ msgctxt ""
"DATE_FUNCNAME_Rot13\n"
"string.text"
msgid "ROT13"
-msgstr ""
+msgstr "ROT13"
diff --git a/source/hr/scaddins/source/pricing.po b/source/hr/scaddins/source/pricing.po
index 0599aaf9275..7c2f07567c1 100644
--- a/source/hr/scaddins/source/pricing.po
+++ b/source/hr/scaddins/source/pricing.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-04-07 19:20+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:28+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1396898408.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983311.000000\n"
#: pricing.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptBarrier\n"
"string.text"
msgid "OPT_BARRIER"
-msgstr ""
+msgstr "OPT_BARRIER"
#: pricing.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptTouch\n"
"string.text"
msgid "OPT_TOUCH"
-msgstr ""
+msgstr "OPT_TOUCH"
#: pricing.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbHit\n"
"string.text"
msgid "OPT_PROB_HIT"
-msgstr ""
+msgstr "OPT_PROB_HIT"
#: pricing.src
msgctxt ""
@@ -766,4 +766,4 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbInMoney\n"
"string.text"
msgid "OPT_PROB_INMONEY"
-msgstr ""
+msgstr "OPT_PROB_INMONEY"
diff --git a/source/hr/scp2/source/calc.po b/source/hr/scp2/source/calc.po
index cf7b9278d01..369b6727f85 100644
--- a/source/hr/scp2/source/calc.po
+++ b/source/hr/scp2/source/calc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-12-11 21:43+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:29+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1386798212.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983363.000000\n"
#: folderitem_calc.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WEBQUERY\n"
"LngText.text"
msgid "Microsoft Excel Web Query File"
-msgstr ""
+msgstr "Datoteka Microsoft Excel web upita"
#: registryitem_calc.ulf
msgctxt ""
diff --git a/source/hr/scp2/source/ooo.po b/source/hr/scp2/source/ooo.po
index 91f8a2d01e7..1e04ccbf36b 100644
--- a/source/hr/scp2/source/ooo.po
+++ b/source/hr/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-03-13 18:22+0000\n"
+"PO-Revision-Date: 2017-06-20 18:30+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489429372.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983436.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Gornji sorbijski"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Instaliranje gornjeg sorbijskog korisničkog sučelja"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/hr/sd/uiconfig/simpress/ui.po b/source/hr/sd/uiconfig/simpress/ui.po
index 89c60c40b31..2621c465d9f 100644
--- a/source/hr/sd/uiconfig/simpress/ui.po
+++ b/source/hr/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-27 13:15+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2017-06-20 18:36+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: none\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493298903.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983760.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -2509,7 +2509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Vrati izvorno"
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/hr/sfx2/source/view.po b/source/hr/sfx2/source/view.po
index 9194e4b0b07..377dc945743 100644
--- a/source/hr/sfx2/source/view.po
+++ b/source/hr/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-27 13:17+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493299025.000000\n"
#: view.src
@@ -251,6 +251,14 @@ msgstr "Ovaj dokument ima neispravan potpis."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/hr/svtools/source/control.po b/source/hr/svtools/source/control.po
index d96c51bc44a..43356f57e3c 100644
--- a/source/hr/svtools/source/control.po
+++ b/source/hr/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-27 16:31+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Crni kurziv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/hr/svtools/source/misc.po b/source/hr/svtools/source/misc.po
index c621bdb8b0f..88e856e091b 100644
--- a/source/hr/svtools/source/misc.po
+++ b/source/hr/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-27 13:36+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hr/svx/uiconfig/ui.po b/source/hr/svx/uiconfig/ui.po
index 51443fef965..cc8123c9779 100644
--- a/source/hr/svx/uiconfig/ui.po
+++ b/source/hr/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-10 19:50+0000\n"
+"PO-Revision-Date: 2017-06-20 18:36+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494445823.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497983806.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -6272,7 +6272,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset state of shared extensions"
-msgstr ""
+msgstr "Ponovno postavi stanje dijeljenih dodataka"
#: safemodedialog.ui
msgctxt ""
@@ -6281,7 +6281,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset state of bundled extensions"
-msgstr ""
+msgstr "Ponovno postavi stanje predinstaliranih dodataka"
#: safemodedialog.ui
msgctxt ""
@@ -6290,7 +6290,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Ponovno postavi tvorničke postavke"
#: safemodedialog.ui
msgctxt ""
@@ -6299,7 +6299,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset settings and user interface modifications"
-msgstr ""
+msgstr "Vrati postavke i korisnička podešavanja sučelja u izvorno stanje"
#: safemodedialog.ui
msgctxt ""
diff --git a/source/hr/sw/source/core/undo.po b/source/hr/sw/source/core/undo.po
index 74719bb7e0b..4bf70bc7f40 100644
--- a/source/hr/sw/source/core/undo.po
+++ b/source/hr/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-12 12:14+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494591267.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "prijelom stupca"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Umetni $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Obriši $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Svojstva su promijenjena"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tablica promijenjena"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil je promijenjen"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/hr/sw/source/uibase/docvw.po b/source/hr/sw/source/uibase/docvw.po
index b4e0291ab4d..32fc4c1dfc9 100644
--- a/source/hr/sw/source/uibase/docvw.po
+++ b/source/hr/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-01-10 11:52+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Primijenjeni stilovi odlomaka"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/hr/sw/source/uibase/ribbar.po b/source/hr/sw/source/uibase/ribbar.po
index 43af1eded12..1a65ab4dafd 100644
--- a/source/hr/sw/source/uibase/ribbar.po
+++ b/source/hr/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-12 12:42+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494592933.000000\n"
#: inputwin.src
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Tekst formule"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/hr/sw/source/uibase/uiview.po b/source/hr/sw/source/uibase/uiview.po
index c60c0d09be1..b8b28f55ea6 100644
--- a/source/hr/sw/source/uibase/uiview.po
+++ b/source/hr/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-21 19:57+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Izvoz izvora..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/hr/sw/uiconfig/swriter/ui.po b/source/hr/sw/uiconfig/swriter/ui.po
index e08a8cdf893..83dda42a249 100644
--- a/source/hr/sw/uiconfig/swriter/ui.po
+++ b/source/hr/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-13 18:01+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-06-13 09:43+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: none\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494698475.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497347002.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr "Kućni telefonski broj"
+msgstr "Privatni telefonski broj"
#: businessdatapage.ui
msgctxt ""
@@ -1121,7 +1121,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr "Kućni telefonski broj"
+msgstr "Privatni telefonski broj"
#: businessdatapage.ui
msgctxt ""
@@ -14669,7 +14669,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr "Telefon (kuća)"
+msgstr "Telefon (privatni)"
#: privateuserpage.ui
msgctxt ""
@@ -14732,7 +14732,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr "Telefon (kuća)"
+msgstr "Telefon (privatni)"
#: privateuserpage.ui
msgctxt ""
diff --git a/source/hr/wizards/source/template.po b/source/hr/wizards/source/template.po
index a21efa834af..fb90af52ab5 100644
--- a/source/hr/wizards/source/template.po
+++ b/source/hr/wizards/source/template.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2014-01-14 20:05+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2017-06-13 09:43+0000\n"
+"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1389729958.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497347013.000000\n"
#: template.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"CorrespondenceFields+14\n"
"string.text"
msgid "Home Phone"
-msgstr "Telefon (kuća)"
+msgstr "Telefon (privatni)"
#: template.src
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"CorrespondenceFields+15\n"
"string.text"
msgid "Work Phone"
-msgstr "Telefon (posao)"
+msgstr "Telefon (poslovni)"
#: template.src
msgctxt ""
diff --git a/source/hr/xmlsecurity/uiconfig/ui.po b/source/hr/xmlsecurity/uiconfig/ui.po
index ef920782dd0..111417dcb15 100644
--- a/source/hr/xmlsecurity/uiconfig/ui.po
+++ b/source/hr/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-27 03:11+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493262668.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Ukloni"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/hsb/desktop/source/deployment/gui.po b/source/hsb/desktop/source/deployment/gui.po
index 09fee95ca13..6033e1807c8 100644
--- a/source/hsb/desktop/source/deployment/gui.po
+++ b/source/hsb/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-10-30 22:13+0000\n"
"Last-Translator: milupo <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -174,6 +174,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -188,6 +196,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/hsb/filter/source/config/fragments/filters.po b/source/hsb/filter/source/config/fragments/filters.po
index 11884864201..1cd06d14c71 100644
--- a/source/hsb/filter/source/config/fragments/filters.po
+++ b/source/hsb/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-15 20:49+0000\n"
+"PO-Revision-Date: 2017-06-07 21:26+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492289349.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496870766.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/hsb/filter/source/config/fragments/types.po b/source/hsb/filter/source/config/fragments/types.po
index f54fd540215..e39661388e4 100644
--- a/source/hsb/filter/source/config/fragments/types.po
+++ b/source/hsb/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-15 20:48+0000\n"
+"PO-Revision-Date: 2017-06-07 21:20+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492289288.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496870405.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office.po b/source/hsb/officecfg/registry/data/org/openoffice/Office.po
index e1d45b34b39..a11af60fcb0 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/hsb/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: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-06-05 17:43+0000\n"
+"PO-Revision-Date: 2017-06-10 11:51+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496684582.000000\n"
+"X-POOTLE-MTIME: 1497095471.000000\n"
#: Addons.xcu
msgctxt ""
@@ -6925,7 +6925,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PickUpLocation"
-msgstr ""
+msgstr "Přijimarnja"
#: TableWizard.xcu
msgctxt ""
@@ -6934,7 +6934,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PickUpLoca"
-msgstr ""
+msgstr "Přijimarnja"
#: TableWizard.xcu
msgctxt ""
@@ -6943,7 +6943,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PickUpDate"
-msgstr ""
+msgstr "PřijimanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -6952,7 +6952,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PickUpDate"
-msgstr ""
+msgstr "PřijimanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -6961,7 +6961,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PickUpTime"
-msgstr ""
+msgstr "PřijimanskiČas"
#: TableWizard.xcu
msgctxt ""
@@ -6970,7 +6970,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PickUpTime"
-msgstr ""
+msgstr "PřijimanskiČas"
#: TableWizard.xcu
msgctxt ""
@@ -6979,7 +6979,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReceivedBy"
-msgstr ""
+msgstr "PřiwzatyWot"
#: TableWizard.xcu
msgctxt ""
@@ -6988,7 +6988,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReceivedBy"
-msgstr ""
+msgstr "PřiwzatyWot"
#: TableWizard.xcu
msgctxt ""
@@ -6997,7 +6997,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FreightCharge"
-msgstr ""
+msgstr "WjezwoweKóšty"
#: TableWizard.xcu
msgctxt ""
@@ -7006,7 +7006,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FrghtChrge"
-msgstr ""
+msgstr "WjezwoKóšty"
#: TableWizard.xcu
msgctxt ""
@@ -7015,7 +7015,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -7024,7 +7024,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -7033,7 +7033,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Assets"
-msgstr ""
+msgstr "Mětki"
#: TableWizard.xcu
msgctxt ""
@@ -7042,7 +7042,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AssetID"
-msgstr ""
+msgstr "MětkID"
#: TableWizard.xcu
msgctxt ""
@@ -7051,7 +7051,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AssetID"
-msgstr ""
+msgstr "MětkID"
#: TableWizard.xcu
msgctxt ""
@@ -7060,7 +7060,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Description"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -7069,7 +7069,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -7078,7 +7078,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr ""
+msgstr "PřistajenyID"
#: TableWizard.xcu
msgctxt ""
@@ -7087,7 +7087,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr ""
+msgstr "PřistajenyID"
#: TableWizard.xcu
msgctxt ""
@@ -7096,7 +7096,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AssetCategoryID"
-msgstr ""
+msgstr "KategorijaMětkowID"
#: TableWizard.xcu
msgctxt ""
@@ -7105,7 +7105,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AssetCatID"
-msgstr ""
+msgstr "KatMětkID"
#: TableWizard.xcu
msgctxt ""
@@ -7114,7 +7114,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StatusID"
-msgstr ""
+msgstr "StatusID"
#: TableWizard.xcu
msgctxt ""
@@ -7123,7 +7123,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StatusID"
-msgstr ""
+msgstr "StatusID"
#: TableWizard.xcu
msgctxt ""
@@ -7132,7 +7132,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepartmentID"
-msgstr ""
+msgstr "WotrjadID"
#: TableWizard.xcu
msgctxt ""
@@ -7141,7 +7141,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprtmntID"
-msgstr ""
+msgstr "WotrjadID"
#: TableWizard.xcu
msgctxt ""
@@ -7150,7 +7150,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "VendorID"
-msgstr ""
+msgstr "PředawarID"
#: TableWizard.xcu
msgctxt ""
@@ -7159,7 +7159,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "VendorID"
-msgstr ""
+msgstr "PředawarID"
#: TableWizard.xcu
msgctxt ""
@@ -7168,7 +7168,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Make"
-msgstr ""
+msgstr "Marka"
#: TableWizard.xcu
msgctxt ""
@@ -7177,7 +7177,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Make"
-msgstr ""
+msgstr "Marka"
#: TableWizard.xcu
msgctxt ""
@@ -7186,7 +7186,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Model"
-msgstr ""
+msgstr "Model"
#: TableWizard.xcu
msgctxt ""
@@ -7195,7 +7195,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Model"
-msgstr ""
+msgstr "Model"
#: TableWizard.xcu
msgctxt ""
@@ -7204,7 +7204,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ModelNumber"
-msgstr ""
+msgstr "ModelČisło"
#: TableWizard.xcu
msgctxt ""
@@ -7213,7 +7213,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ModelNo"
-msgstr ""
+msgstr "ModelČo"
#: TableWizard.xcu
msgctxt ""
@@ -7222,7 +7222,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SerialNumber"
-msgstr ""
+msgstr "SerijoweČisło"
#: TableWizard.xcu
msgctxt ""
@@ -7231,7 +7231,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr ""
+msgstr "SerijoweČo"
#: TableWizard.xcu
msgctxt ""
@@ -7240,7 +7240,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BarcodeNumber"
-msgstr ""
+msgstr "ČisłoSmužkowehoKoda"
#: TableWizard.xcu
msgctxt ""
@@ -7249,7 +7249,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BarcodeNo"
-msgstr ""
+msgstr "SmužkoKodČo"
#: TableWizard.xcu
msgctxt ""
@@ -7258,7 +7258,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateAcquired"
-msgstr ""
+msgstr "NakupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7267,7 +7267,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateAcquir"
-msgstr ""
+msgstr "NakupDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7276,7 +7276,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateSold"
-msgstr ""
+msgstr "PředawanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7285,7 +7285,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr ""
+msgstr "PředawanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7294,7 +7294,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr ""
+msgstr "KupnaPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -7303,7 +7303,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr ""
+msgstr "KupPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -7312,7 +7312,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepreciationMethod"
-msgstr ""
+msgstr "WotpisanskaMetoda"
#: TableWizard.xcu
msgctxt ""
@@ -7321,7 +7321,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprecMeth"
-msgstr ""
+msgstr "WotpisMet"
#: TableWizard.xcu
msgctxt ""
@@ -7330,7 +7330,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepreciableLife"
-msgstr ""
+msgstr "WotpisanskeTraće"
#: TableWizard.xcu
msgctxt ""
@@ -7339,7 +7339,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprecLife"
-msgstr ""
+msgstr "WotpisTraće"
#: TableWizard.xcu
msgctxt ""
@@ -7348,7 +7348,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SalvageValue"
-msgstr ""
+msgstr "ZbytnaHódnota"
#: TableWizard.xcu
msgctxt ""
@@ -7357,7 +7357,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SalvageVal"
-msgstr ""
+msgstr "ZbytHód"
#: TableWizard.xcu
msgctxt ""
@@ -7366,7 +7366,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CurrentValue"
-msgstr ""
+msgstr "AktualnaHódnota"
#: TableWizard.xcu
msgctxt ""
@@ -7375,7 +7375,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CurrentVal"
-msgstr ""
+msgstr "AktHódn"
#: TableWizard.xcu
msgctxt ""
@@ -7384,7 +7384,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentary"
#: TableWizard.xcu
msgctxt ""
@@ -7393,7 +7393,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentary"
#: TableWizard.xcu
msgctxt ""
@@ -7402,7 +7402,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NextScheduledMaintenance"
-msgstr ""
+msgstr "PřichodnaInwentura"
#: TableWizard.xcu
msgctxt ""
@@ -7411,7 +7411,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NtSchMaint"
-msgstr ""
+msgstr "PřichInwent"
#: TableWizard.xcu
msgctxt ""
@@ -7420,7 +7420,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Transactions"
-msgstr ""
+msgstr "Transakcije"
#: TableWizard.xcu
msgctxt ""
@@ -7429,7 +7429,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TransactionID"
-msgstr ""
+msgstr "TransakcijaID"
#: TableWizard.xcu
msgctxt ""
@@ -7438,7 +7438,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TrnsactnID"
-msgstr ""
+msgstr "TrnsakcID"
#: TableWizard.xcu
msgctxt ""
@@ -7447,7 +7447,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentID"
-msgstr ""
+msgstr "PłaćenjeID"
#: TableWizard.xcu
msgctxt ""
@@ -7456,7 +7456,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymentID"
-msgstr ""
+msgstr "PłaćenjeID"
#: TableWizard.xcu
msgctxt ""
@@ -7465,7 +7465,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TransactionNumber"
-msgstr ""
+msgstr "TransakciskeČisło"
#: TableWizard.xcu
msgctxt ""
@@ -7474,7 +7474,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TrnsactnNo"
-msgstr ""
+msgstr "TransakcČo"
#: TableWizard.xcu
msgctxt ""
@@ -7483,7 +7483,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: TableWizard.xcu
msgctxt ""
@@ -7492,7 +7492,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: TableWizard.xcu
msgctxt ""
@@ -7501,7 +7501,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Description"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -7510,7 +7510,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -7519,7 +7519,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Amount"
-msgstr ""
+msgstr "Suma"
#: TableWizard.xcu
msgctxt ""
@@ -7528,7 +7528,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Amount"
-msgstr ""
+msgstr "Suma"
#: TableWizard.xcu
msgctxt ""
@@ -7537,7 +7537,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountID"
-msgstr ""
+msgstr "KontoID"
#: TableWizard.xcu
msgctxt ""
@@ -7546,7 +7546,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountID"
-msgstr ""
+msgstr "KontoID"
#: TableWizard.xcu
msgctxt ""
@@ -7555,7 +7555,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReferenceNumber"
-msgstr ""
+msgstr "ReferencneČisło"
#: TableWizard.xcu
msgctxt ""
@@ -7564,7 +7564,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RefrenceNo"
-msgstr ""
+msgstr "ReferČo"
#: TableWizard.xcu
msgctxt ""
@@ -7573,7 +7573,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofUnits"
-msgstr ""
+msgstr "LičbaJednotkow"
#: TableWizard.xcu
msgctxt ""
@@ -7582,7 +7582,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NumberUnit"
-msgstr ""
+msgstr "LičbaJedn"
#: TableWizard.xcu
msgctxt ""
@@ -7591,7 +7591,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WithdrawalAmount"
-msgstr ""
+msgstr "WotzběhnjenaSuma"
#: TableWizard.xcu
msgctxt ""
@@ -7600,7 +7600,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WithdrwAmt"
-msgstr ""
+msgstr "WotzběhSuma"
#: TableWizard.xcu
msgctxt ""
@@ -7609,7 +7609,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepositAmount"
-msgstr ""
+msgstr "ZapłaćenaSuma"
#: TableWizard.xcu
msgctxt ""
@@ -7618,7 +7618,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DepositAmt"
-msgstr ""
+msgstr "ZapłaćSuma"
#: TableWizard.xcu
msgctxt ""
@@ -7627,7 +7627,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InterestEarned"
-msgstr ""
+msgstr "DanjowyDobytk"
#: TableWizard.xcu
msgctxt ""
@@ -7636,7 +7636,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "IntrstEarn"
-msgstr ""
+msgstr "DanDobytk"
#: TableWizard.xcu
msgctxt ""
@@ -7645,7 +7645,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BuySellDate"
-msgstr ""
+msgstr "TransakciskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7654,7 +7654,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BuySellDat"
-msgstr ""
+msgstr "TransakcDat"
#: TableWizard.xcu
msgctxt ""
@@ -7663,7 +7663,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BuySellPrice"
-msgstr ""
+msgstr "TransakciskaPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -7672,7 +7672,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BuySellPrc"
-msgstr ""
+msgstr "TransakcPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -7681,7 +7681,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ServiceCharge"
-msgstr ""
+msgstr "SłužbnyPopłatk"
#: TableWizard.xcu
msgctxt ""
@@ -7690,7 +7690,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ServiChrge"
-msgstr ""
+msgstr "SłužbPopł"
#: TableWizard.xcu
msgctxt ""
@@ -7699,7 +7699,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Taxable"
-msgstr ""
+msgstr "Zdawkujomny"
#: TableWizard.xcu
msgctxt ""
@@ -7708,7 +7708,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Taxable"
-msgstr ""
+msgstr "Zdawkujomny"
#: TableWizard.xcu
msgctxt ""
@@ -7717,7 +7717,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -7726,7 +7726,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -7735,7 +7735,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Tasks"
-msgstr ""
+msgstr "Nadawki"
#: TableWizard.xcu
msgctxt ""
@@ -7744,7 +7744,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TaskID"
-msgstr ""
+msgstr "NadawkID"
#: TableWizard.xcu
msgctxt ""
@@ -7753,7 +7753,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TaskID"
-msgstr ""
+msgstr "NadawkID"
#: TableWizard.xcu
msgctxt ""
@@ -7762,7 +7762,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Description"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -7771,7 +7771,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -7780,7 +7780,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StartDate"
-msgstr ""
+msgstr "SpočatnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7789,7 +7789,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StartDate"
-msgstr ""
+msgstr "SpočatnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7798,7 +7798,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EndDate"
-msgstr ""
+msgstr "KónčnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7807,7 +7807,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EndDate"
-msgstr ""
+msgstr "KónčnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -7816,7 +7816,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -7825,7 +7825,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -7834,7 +7834,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeesTasks"
-msgstr ""
+msgstr "NadawkiPřistajenych"
#: TableWizard.xcu
msgctxt ""
@@ -7843,7 +7843,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeTaskID"
-msgstr ""
+msgstr "NadawkPřistajenehoID"
#: TableWizard.xcu
msgctxt ""
@@ -7852,7 +7852,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmplTaskID"
-msgstr ""
+msgstr "NadPřistID"
#: TableWizard.xcu
msgctxt ""
@@ -7861,7 +7861,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr ""
+msgstr "PřistajenyID"
#: TableWizard.xcu
msgctxt ""
@@ -7870,7 +7870,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr ""
+msgstr "PřistajenyID"
#: TableWizard.xcu
msgctxt ""
@@ -7879,7 +7879,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TaskID"
-msgstr ""
+msgstr "NadawkID"
#: TableWizard.xcu
msgctxt ""
@@ -7888,7 +7888,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TaskID"
-msgstr ""
+msgstr "NadawkID"
#: TableWizard.xcu
msgctxt ""
@@ -7897,7 +7897,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Private"
-msgstr ""
+msgstr "Priwatne"
#: TableWizard.xcu
msgctxt ""
@@ -7906,7 +7906,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Categories"
-msgstr ""
+msgstr "Kategorije"
#: TableWizard.xcu
msgctxt ""
@@ -7915,7 +7915,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr ""
+msgstr "KategorijaID"
#: TableWizard.xcu
msgctxt ""
@@ -7924,7 +7924,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr ""
+msgstr "KategorijaID"
#: TableWizard.xcu
msgctxt ""
@@ -7933,7 +7933,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr ""
+msgstr "KategorijaMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -7942,7 +7942,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategName"
-msgstr ""
+msgstr "KategMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -7951,7 +7951,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Addresses"
-msgstr ""
+msgstr "Adresy"
#: TableWizard.xcu
msgctxt ""
@@ -7960,7 +7960,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AddressID"
-msgstr ""
+msgstr "AdresaID"
#: TableWizard.xcu
msgctxt ""
@@ -7969,7 +7969,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AddressID"
-msgstr ""
+msgstr "AdresaID"
#: TableWizard.xcu
msgctxt ""
@@ -7978,7 +7978,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr ""
+msgstr "Předmjeno"
#: TableWizard.xcu
msgctxt ""
@@ -7987,7 +7987,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr ""
+msgstr "Předmjeno"
#: TableWizard.xcu
msgctxt ""
@@ -7996,7 +7996,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr ""
+msgstr "SwójbneMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8005,7 +8005,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr ""
+msgstr "SwójbneMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr ""
+msgstr "Titul"
#: TableWizard.xcu
msgctxt ""
@@ -8023,7 +8023,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr ""
+msgstr "Titul"
#: TableWizard.xcu
msgctxt ""
@@ -8032,7 +8032,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr ""
+msgstr "Adresa"
#: TableWizard.xcu
msgctxt ""
@@ -8041,7 +8041,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr ""
+msgstr "Adresa"
#: TableWizard.xcu
msgctxt ""
@@ -8050,7 +8050,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "City"
-msgstr ""
+msgstr "Město"
#: TableWizard.xcu
msgctxt ""
@@ -8059,7 +8059,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "City"
-msgstr ""
+msgstr "Město"
#: TableWizard.xcu
msgctxt ""
@@ -8068,7 +8068,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr ""
+msgstr "PWČ"
#: TableWizard.xcu
msgctxt ""
@@ -8077,7 +8077,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr ""
+msgstr "PWČ"
#: TableWizard.xcu
msgctxt ""
@@ -8086,7 +8086,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr ""
+msgstr "ZwjazkowyKraj"
#: TableWizard.xcu
msgctxt ""
@@ -8095,7 +8095,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr ""
+msgstr "ZwjazKraj"
#: TableWizard.xcu
msgctxt ""
@@ -8104,7 +8104,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr ""
+msgstr "KrajAboRegion"
#: TableWizard.xcu
msgctxt ""
@@ -8113,7 +8113,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr ""
+msgstr "KrajRegion"
#: TableWizard.xcu
msgctxt ""
@@ -8122,7 +8122,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr ""
+msgstr "TelefonoweČisło"
#: TableWizard.xcu
msgctxt ""
@@ -8131,7 +8131,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr ""
+msgstr "TelefonČo"
#: TableWizard.xcu
msgctxt ""
@@ -8140,7 +8140,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr ""
+msgstr "FaksČisło"
#: TableWizard.xcu
msgctxt ""
@@ -8149,7 +8149,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr ""
+msgstr "FaksČo"
#: TableWizard.xcu
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr ""
+msgstr "MobilnyTelefon"
#: TableWizard.xcu
msgctxt ""
@@ -8167,7 +8167,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr ""
+msgstr "MobilTelČo"
#: TableWizard.xcu
msgctxt ""
@@ -8176,7 +8176,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr ""
+msgstr "E-mejlowaAdresa"
#: TableWizard.xcu
msgctxt ""
@@ -8185,7 +8185,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr ""
+msgstr "E-mejlAdr"
#: TableWizard.xcu
msgctxt ""
@@ -8194,7 +8194,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Salutation"
-msgstr ""
+msgstr "Zarěčenje"
#: TableWizard.xcu
msgctxt ""
@@ -8203,7 +8203,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Salutation"
-msgstr ""
+msgstr "Zarěčenje"
#: TableWizard.xcu
msgctxt ""
@@ -8212,7 +8212,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr ""
+msgstr "Narodniny"
#: TableWizard.xcu
msgctxt ""
@@ -8221,7 +8221,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr ""
+msgstr "Narodniny"
#: TableWizard.xcu
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SendCard"
-msgstr ""
+msgstr "Pohladnica"
#: TableWizard.xcu
msgctxt ""
@@ -8239,7 +8239,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SendCard"
-msgstr ""
+msgstr "Pohladnica"
#: TableWizard.xcu
msgctxt ""
@@ -8248,7 +8248,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MaritalStatus"
-msgstr ""
+msgstr "SwójbnyStaw"
#: TableWizard.xcu
msgctxt ""
@@ -8257,7 +8257,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MaritlStat"
-msgstr ""
+msgstr "SwójbStaw"
#: TableWizard.xcu
msgctxt ""
@@ -8266,7 +8266,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SpouseName"
-msgstr ""
+msgstr "MandźelskeMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8275,7 +8275,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr ""
+msgstr "MandźelskeMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8284,7 +8284,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Nickname"
-msgstr ""
+msgstr "Přimjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8293,7 +8293,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Nickname"
-msgstr ""
+msgstr "Přimjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Hobbies"
-msgstr ""
+msgstr "Hobbyje"
#: TableWizard.xcu
msgctxt ""
@@ -8311,7 +8311,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Hobbies"
-msgstr ""
+msgstr "Hobbyje"
#: TableWizard.xcu
msgctxt ""
@@ -8320,7 +8320,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ChildrenNames"
-msgstr ""
+msgstr "MjenaDźěći"
#: TableWizard.xcu
msgctxt ""
@@ -8329,7 +8329,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ChildName"
-msgstr ""
+msgstr "MjenoDźěsća"
#: TableWizard.xcu
msgctxt ""
@@ -8338,7 +8338,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr ""
+msgstr "Foto"
#: TableWizard.xcu
msgctxt ""
@@ -8347,7 +8347,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr ""
+msgstr "Foto"
#: TableWizard.xcu
msgctxt ""
@@ -8356,7 +8356,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -8365,7 +8365,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -8374,7 +8374,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateUpdated"
-msgstr ""
+msgstr "DatumZměny"
#: TableWizard.xcu
msgctxt ""
@@ -8383,7 +8383,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatUpdated"
-msgstr ""
+msgstr "DatZměny"
#: TableWizard.xcu
msgctxt ""
@@ -8392,7 +8392,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HouseholdInventory"
-msgstr ""
+msgstr "Inwentar"
#: TableWizard.xcu
msgctxt ""
@@ -8401,7 +8401,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InventoryID"
-msgstr ""
+msgstr "InwentarID"
#: TableWizard.xcu
msgctxt ""
@@ -8410,7 +8410,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InventryID"
-msgstr ""
+msgstr "InwentarID"
#: TableWizard.xcu
msgctxt ""
@@ -8419,7 +8419,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr ""
+msgstr "KategorijaID"
#: TableWizard.xcu
msgctxt ""
@@ -8428,7 +8428,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr ""
+msgstr "KategorijaID"
#: TableWizard.xcu
msgctxt ""
@@ -8437,7 +8437,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RoomID"
-msgstr ""
+msgstr "StwaID"
#: TableWizard.xcu
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RoomID"
-msgstr ""
+msgstr "StwaID"
#: TableWizard.xcu
msgctxt ""
@@ -8455,7 +8455,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Item"
-msgstr ""
+msgstr "Zapisk"
#: TableWizard.xcu
msgctxt ""
@@ -8464,7 +8464,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Item"
-msgstr ""
+msgstr "Zapisk"
#: TableWizard.xcu
msgctxt ""
@@ -8473,7 +8473,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ItemType"
-msgstr ""
+msgstr "TypZapiska"
#: TableWizard.xcu
msgctxt ""
@@ -8482,7 +8482,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ItemType"
-msgstr ""
+msgstr "TypZapiska"
#: TableWizard.xcu
msgctxt ""
@@ -8491,7 +8491,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Description"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -8500,7 +8500,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -8509,7 +8509,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Manufacturer"
-msgstr ""
+msgstr "Zhotowjer"
#: TableWizard.xcu
msgctxt ""
@@ -8518,7 +8518,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Manufactur"
-msgstr ""
+msgstr "Zhotowjer"
#: TableWizard.xcu
msgctxt ""
@@ -8527,7 +8527,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Model"
-msgstr ""
+msgstr "Model"
#: TableWizard.xcu
msgctxt ""
@@ -8536,7 +8536,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Model"
-msgstr ""
+msgstr "Model"
#: TableWizard.xcu
msgctxt ""
@@ -8545,7 +8545,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ModelNumber"
-msgstr ""
+msgstr "ModelČisło"
#: TableWizard.xcu
msgctxt ""
@@ -8554,7 +8554,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ModelNo"
-msgstr ""
+msgstr "ModelČo"
#: TableWizard.xcu
msgctxt ""
@@ -8563,7 +8563,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SerialNumber"
-msgstr ""
+msgstr "SerijoweČisło"
#: TableWizard.xcu
msgctxt ""
@@ -8572,7 +8572,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr ""
+msgstr "SerijoweČo"
#: TableWizard.xcu
msgctxt ""
@@ -8581,7 +8581,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr ""
+msgstr "KupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -8590,7 +8590,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr ""
+msgstr "KupDat"
#: TableWizard.xcu
msgctxt ""
@@ -8599,7 +8599,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlacePurchased"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -8608,7 +8608,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlacePurch"
-msgstr ""
+msgstr "KupMěst"
#: TableWizard.xcu
msgctxt ""
@@ -8617,7 +8617,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr ""
+msgstr "KupnaPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -8626,7 +8626,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr ""
+msgstr "KupPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -8635,7 +8635,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AppraisedValue"
-msgstr ""
+msgstr "TrochowanaHódnota"
#: TableWizard.xcu
msgctxt ""
@@ -8644,7 +8644,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AppraisVal"
-msgstr ""
+msgstr "TrochHódn"
#: TableWizard.xcu
msgctxt ""
@@ -8653,7 +8653,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Insured"
-msgstr ""
+msgstr "Zawěsćeny"
#: TableWizard.xcu
msgctxt ""
@@ -8662,7 +8662,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Insured"
-msgstr ""
+msgstr "Zawěsćeny"
#: TableWizard.xcu
msgctxt ""
@@ -8671,7 +8671,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -8680,7 +8680,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -8689,7 +8689,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Recipes"
-msgstr ""
+msgstr "Recepty"
#: TableWizard.xcu
msgctxt ""
@@ -8698,7 +8698,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RecipeID"
-msgstr ""
+msgstr "ReceptID"
#: TableWizard.xcu
msgctxt ""
@@ -8707,7 +8707,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RecipeID"
-msgstr ""
+msgstr "ReceptID"
#: TableWizard.xcu
msgctxt ""
@@ -8716,7 +8716,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Name"
-msgstr ""
+msgstr "Mjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8725,7 +8725,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Name"
-msgstr ""
+msgstr "Mjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8734,7 +8734,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Description"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -8743,7 +8743,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -8752,7 +8752,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Source"
-msgstr ""
+msgstr "Žórło"
#: TableWizard.xcu
msgctxt ""
@@ -8761,7 +8761,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Source"
-msgstr ""
+msgstr "Žórło"
#: TableWizard.xcu
msgctxt ""
@@ -8770,7 +8770,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WhichMeal"
-msgstr ""
+msgstr "Jědź"
#: TableWizard.xcu
msgctxt ""
@@ -8779,7 +8779,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WhichMeal"
-msgstr ""
+msgstr "Jědź"
#: TableWizard.xcu
msgctxt ""
@@ -8788,7 +8788,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Vegetarian"
-msgstr ""
+msgstr "Wegetariska"
#: TableWizard.xcu
msgctxt ""
@@ -8797,7 +8797,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Vegetarian"
-msgstr ""
+msgstr "Wegetariska"
#: TableWizard.xcu
msgctxt ""
@@ -8806,7 +8806,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeToPrepare"
-msgstr ""
+msgstr "TrěbnyČas"
#: TableWizard.xcu
msgctxt ""
@@ -8815,7 +8815,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimePrepar"
-msgstr ""
+msgstr "TrěbnyČas"
#: TableWizard.xcu
msgctxt ""
@@ -8824,7 +8824,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofServings"
-msgstr ""
+msgstr "LičbaPojědźow"
#: TableWizard.xcu
msgctxt ""
@@ -8833,7 +8833,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NoofServng"
-msgstr ""
+msgstr "LičPojědź"
#: TableWizard.xcu
msgctxt ""
@@ -8842,7 +8842,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CaloriesPerServing"
-msgstr ""
+msgstr "KalorijeNaPojědź"
#: TableWizard.xcu
msgctxt ""
@@ -8851,7 +8851,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CalPerServ"
-msgstr ""
+msgstr "KalNaPojědź"
#: TableWizard.xcu
msgctxt ""
@@ -8860,7 +8860,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NutritionalInformation"
-msgstr ""
+msgstr "Wutki"
#: TableWizard.xcu
msgctxt ""
@@ -8869,7 +8869,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NutriInfo"
-msgstr ""
+msgstr "Wutki"
#: TableWizard.xcu
msgctxt ""
@@ -8878,7 +8878,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Ingredients"
-msgstr ""
+msgstr "Přičinki"
#: TableWizard.xcu
msgctxt ""
@@ -8887,7 +8887,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Ingredient"
-msgstr ""
+msgstr "Přičink"
#: TableWizard.xcu
msgctxt ""
@@ -8896,7 +8896,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Instructions"
-msgstr ""
+msgstr "Přihotowanje"
#: TableWizard.xcu
msgctxt ""
@@ -8905,7 +8905,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Instrction"
-msgstr ""
+msgstr "Přihotowanje"
#: TableWizard.xcu
msgctxt ""
@@ -8914,7 +8914,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Utensils"
-msgstr ""
+msgstr "Utensilije"
#: TableWizard.xcu
msgctxt ""
@@ -8923,7 +8923,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Utensils"
-msgstr ""
+msgstr "Utensilije"
#: TableWizard.xcu
msgctxt ""
@@ -8932,7 +8932,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -8941,7 +8941,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -8950,7 +8950,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Plants"
-msgstr ""
+msgstr "Rostliny"
#: TableWizard.xcu
msgctxt ""
@@ -8959,7 +8959,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlantID"
-msgstr ""
+msgstr "RostlinaID"
#: TableWizard.xcu
msgctxt ""
@@ -8968,7 +8968,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlantID"
-msgstr ""
+msgstr "RostlinaID"
#: TableWizard.xcu
msgctxt ""
@@ -8977,7 +8977,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CommonName"
-msgstr ""
+msgstr "PowšitkowneMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8986,7 +8986,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CommonName"
-msgstr ""
+msgstr "PowšitkowneMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -8995,7 +8995,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Genus"
-msgstr ""
+msgstr "Ród"
#: TableWizard.xcu
msgctxt ""
@@ -9004,7 +9004,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Genus"
-msgstr ""
+msgstr "Ród"
#: TableWizard.xcu
msgctxt ""
@@ -9013,7 +9013,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Species"
-msgstr ""
+msgstr "Družina"
#: TableWizard.xcu
msgctxt ""
@@ -9022,7 +9022,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Species"
-msgstr ""
+msgstr "Družina"
#: TableWizard.xcu
msgctxt ""
@@ -9031,7 +9031,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Flowering"
-msgstr ""
+msgstr "Kćějacy"
#: TableWizard.xcu
msgctxt ""
@@ -9040,7 +9040,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Flowering"
-msgstr ""
+msgstr "Kćějacy"
#: TableWizard.xcu
msgctxt ""
@@ -9049,7 +9049,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LightPreference"
-msgstr ""
+msgstr "Swětłočućiwosć"
#: TableWizard.xcu
msgctxt ""
@@ -9058,7 +9058,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LightPref"
-msgstr ""
+msgstr "Swětłočuć"
#: TableWizard.xcu
msgctxt ""
@@ -9067,7 +9067,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TemperaturePreference"
-msgstr ""
+msgstr "ČućiwosćNaTemperaturu"
#: TableWizard.xcu
msgctxt ""
@@ -9076,7 +9076,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TempPref"
-msgstr ""
+msgstr "ČućiNaTemp"
#: TableWizard.xcu
msgctxt ""
@@ -9085,7 +9085,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FertilizeFrequency"
-msgstr ""
+msgstr "HnojenskaHustosć"
#: TableWizard.xcu
msgctxt ""
@@ -9094,7 +9094,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FertilFreq"
-msgstr ""
+msgstr "HnojHust"
#: TableWizard.xcu
msgctxt ""
@@ -9103,7 +9103,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WateringFrequency"
-msgstr ""
+msgstr "PowodźowanskaHustosć"
#: TableWizard.xcu
msgctxt ""
@@ -9112,7 +9112,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WaterFreq"
-msgstr ""
+msgstr "PowodźHust"
#: TableWizard.xcu
msgctxt ""
@@ -9121,7 +9121,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr ""
+msgstr "KupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9130,7 +9130,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr ""
+msgstr "KupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9139,7 +9139,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlacePurchased"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -9148,7 +9148,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlacePurch"
-msgstr ""
+msgstr "KupMěst"
#: TableWizard.xcu
msgctxt ""
@@ -9157,7 +9157,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePlanted"
-msgstr ""
+msgstr "SadźenskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9166,7 +9166,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatPlanted"
-msgstr ""
+msgstr "SadźDat"
#: TableWizard.xcu
msgctxt ""
@@ -9175,7 +9175,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateRepotted"
-msgstr ""
+msgstr "PřesadźenskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9184,7 +9184,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatRepottd"
-msgstr ""
+msgstr "PřesadźDat"
#: TableWizard.xcu
msgctxt ""
@@ -9193,7 +9193,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePruned"
-msgstr ""
+msgstr "WobrězanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9202,7 +9202,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePruned"
-msgstr ""
+msgstr "WobrězanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9211,7 +9211,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateWatered"
-msgstr ""
+msgstr "PowodźowanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9220,7 +9220,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateWaterd"
-msgstr ""
+msgstr "PowodźDat"
#: TableWizard.xcu
msgctxt ""
@@ -9229,7 +9229,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr ""
+msgstr "Foto"
#: TableWizard.xcu
msgctxt ""
@@ -9238,7 +9238,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr ""
+msgstr "Foto"
#: TableWizard.xcu
msgctxt ""
@@ -9247,7 +9247,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9256,7 +9256,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9265,7 +9265,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photographs"
-msgstr ""
+msgstr "Fotografije"
#: TableWizard.xcu
msgctxt ""
@@ -9274,7 +9274,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhotoID"
-msgstr ""
+msgstr "FotoID"
#: TableWizard.xcu
msgctxt ""
@@ -9283,7 +9283,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhotoID"
-msgstr ""
+msgstr "FotoID"
#: TableWizard.xcu
msgctxt ""
@@ -9292,7 +9292,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilmID"
-msgstr ""
+msgstr "FilmID"
#: TableWizard.xcu
msgctxt ""
@@ -9301,7 +9301,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FilmID"
-msgstr ""
+msgstr "FilmID"
#: TableWizard.xcu
msgctxt ""
@@ -9310,7 +9310,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateTaken"
-msgstr ""
+msgstr "DatumWutworjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9319,7 +9319,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateTaken"
-msgstr ""
+msgstr "DatumWutworjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9328,7 +9328,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeTaken"
-msgstr ""
+msgstr "ČasWutworjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9337,7 +9337,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimeTaken"
-msgstr ""
+msgstr "ČasWutworjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9346,7 +9346,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlaceTaken"
-msgstr ""
+msgstr "MěstnoWutworjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9355,7 +9355,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlaceTaken"
-msgstr ""
+msgstr "MěstnoWutworjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9364,7 +9364,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LensUsed"
-msgstr ""
+msgstr "WužitaČóčka"
#: TableWizard.xcu
msgctxt ""
@@ -9373,7 +9373,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LensUsed"
-msgstr ""
+msgstr "WužitaČóčka"
#: TableWizard.xcu
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Aperture"
-msgstr ""
+msgstr "Zasłona"
#: TableWizard.xcu
msgctxt ""
@@ -9391,7 +9391,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Aperture"
-msgstr ""
+msgstr "Zasłona"
#: TableWizard.xcu
msgctxt ""
@@ -9400,7 +9400,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShutterSpeed"
-msgstr ""
+msgstr "SpěšnosćZawěrki"
#: TableWizard.xcu
msgctxt ""
@@ -9409,7 +9409,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShutterSpd"
-msgstr ""
+msgstr "SpěšZawěrki"
#: TableWizard.xcu
msgctxt ""
@@ -9418,7 +9418,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilterUsed"
-msgstr ""
+msgstr "WužityFilter"
#: TableWizard.xcu
msgctxt ""
@@ -9427,7 +9427,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FilterUsed"
-msgstr ""
+msgstr "WužityFilter"
#: TableWizard.xcu
msgctxt ""
@@ -9436,7 +9436,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Flash"
-msgstr ""
+msgstr "Błysk"
#: TableWizard.xcu
msgctxt ""
@@ -9445,7 +9445,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Flash"
-msgstr ""
+msgstr "Błysk"
#: TableWizard.xcu
msgctxt ""
@@ -9454,7 +9454,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PrintSize"
-msgstr ""
+msgstr "ČisćerskaWulkosć"
#: TableWizard.xcu
msgctxt ""
@@ -9463,7 +9463,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PrintSize"
-msgstr ""
+msgstr "ČisćerskaWulkosć"
#: TableWizard.xcu
msgctxt ""
@@ -9472,7 +9472,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9481,7 +9481,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9490,7 +9490,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MiniatureFilms"
-msgstr ""
+msgstr "MałowobrazoweFilmy"
#: TableWizard.xcu
msgctxt ""
@@ -9499,7 +9499,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilmID"
-msgstr ""
+msgstr "FilmID"
#: TableWizard.xcu
msgctxt ""
@@ -9508,7 +9508,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FilmID"
-msgstr ""
+msgstr "FilmID"
#: TableWizard.xcu
msgctxt ""
@@ -9517,7 +9517,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Make"
-msgstr ""
+msgstr "Marka"
#: TableWizard.xcu
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Make"
-msgstr ""
+msgstr "Marka"
#: TableWizard.xcu
msgctxt ""
@@ -9535,7 +9535,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photosensitivity"
-msgstr ""
+msgstr "Swětłočućiwosć"
#: TableWizard.xcu
msgctxt ""
@@ -9544,7 +9544,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photosensi"
-msgstr ""
+msgstr "Swětłočući"
#: TableWizard.xcu
msgctxt ""
@@ -9553,7 +9553,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberOfPhotos"
-msgstr ""
+msgstr "LičbaFotow"
#: TableWizard.xcu
msgctxt ""
@@ -9562,7 +9562,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NumPhotos"
-msgstr ""
+msgstr "LičFotow"
#: TableWizard.xcu
msgctxt ""
@@ -9571,7 +9571,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ColorFilm"
-msgstr ""
+msgstr "BarbnyFilm"
#: TableWizard.xcu
msgctxt ""
@@ -9580,7 +9580,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ColorFilm"
-msgstr ""
+msgstr "BarbnyFilm"
#: TableWizard.xcu
msgctxt ""
@@ -9589,7 +9589,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilmExpirationDate"
-msgstr ""
+msgstr "FilmDatumSpadnjenja"
#: TableWizard.xcu
msgctxt ""
@@ -9598,7 +9598,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FlmExpDate"
-msgstr ""
+msgstr "FilmDatSpad"
#: TableWizard.xcu
msgctxt ""
@@ -9607,7 +9607,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateDeveloped"
-msgstr ""
+msgstr "WuwiwanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9616,7 +9616,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateDevelp"
-msgstr ""
+msgstr "WuwiwDat"
#: TableWizard.xcu
msgctxt ""
@@ -9625,7 +9625,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DevelopedBy"
-msgstr ""
+msgstr "Wuwiwar"
#: TableWizard.xcu
msgctxt ""
@@ -9634,7 +9634,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DevelopdBy"
-msgstr ""
+msgstr "Wuwiwar"
#: TableWizard.xcu
msgctxt ""
@@ -9643,7 +9643,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Camera"
-msgstr ""
+msgstr "Kamera"
#: TableWizard.xcu
msgctxt ""
@@ -9652,7 +9652,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Camera"
-msgstr ""
+msgstr "Kamera"
#: TableWizard.xcu
msgctxt ""
@@ -9661,7 +9661,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9670,7 +9670,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9679,7 +9679,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DVD-Collection"
-msgstr ""
+msgstr "DVD-zběrka"
#: TableWizard.xcu
msgctxt ""
@@ -9688,7 +9688,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CollectionID"
-msgstr ""
+msgstr "ZběrkaID"
#: TableWizard.xcu
msgctxt ""
@@ -9697,7 +9697,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CollectnID"
-msgstr ""
+msgstr "ZběrkaID"
#: TableWizard.xcu
msgctxt ""
@@ -9706,7 +9706,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MovieTitle"
-msgstr ""
+msgstr "FilmowyTitul"
#: TableWizard.xcu
msgctxt ""
@@ -9715,7 +9715,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MovieTitle"
-msgstr ""
+msgstr "FilmowyTitul"
#: TableWizard.xcu
msgctxt ""
@@ -9724,7 +9724,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Genre"
-msgstr ""
+msgstr "Žanr"
#: TableWizard.xcu
msgctxt ""
@@ -9733,7 +9733,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Genre"
-msgstr ""
+msgstr "Žanr"
#: TableWizard.xcu
msgctxt ""
@@ -9742,7 +9742,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Actor"
-msgstr ""
+msgstr "Hrajer"
#: TableWizard.xcu
msgctxt ""
@@ -9751,7 +9751,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Actor"
-msgstr ""
+msgstr "Hrajer"
#: TableWizard.xcu
msgctxt ""
@@ -9760,7 +9760,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Director"
-msgstr ""
+msgstr "Režiser"
#: TableWizard.xcu
msgctxt ""
@@ -9769,7 +9769,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Director"
-msgstr ""
+msgstr "Režiser"
#: TableWizard.xcu
msgctxt ""
@@ -9778,7 +9778,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Producer"
-msgstr ""
+msgstr "Producent"
#: TableWizard.xcu
msgctxt ""
@@ -9787,7 +9787,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Producer"
-msgstr ""
+msgstr "Producent"
#: TableWizard.xcu
msgctxt ""
@@ -9796,7 +9796,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReleaseYear"
-msgstr ""
+msgstr "WudawanskeLěto"
#: TableWizard.xcu
msgctxt ""
@@ -9805,7 +9805,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReleasYear"
-msgstr ""
+msgstr "WudawLěto"
#: TableWizard.xcu
msgctxt ""
@@ -9814,7 +9814,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Rating"
-msgstr ""
+msgstr "Hódnoćenje"
#: TableWizard.xcu
msgctxt ""
@@ -9823,7 +9823,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr ""
+msgstr "Hódnoćenje"
#: TableWizard.xcu
msgctxt ""
@@ -9832,7 +9832,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Subject"
-msgstr ""
+msgstr "Tema"
#: TableWizard.xcu
msgctxt ""
@@ -9841,7 +9841,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Subject"
-msgstr ""
+msgstr "Tema"
#: TableWizard.xcu
msgctxt ""
@@ -9850,7 +9850,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Length"
-msgstr ""
+msgstr "Dołhosć"
#: TableWizard.xcu
msgctxt ""
@@ -9859,7 +9859,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Length"
-msgstr ""
+msgstr "Dołhosć"
#: TableWizard.xcu
msgctxt ""
@@ -9868,7 +9868,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateAcquired"
-msgstr ""
+msgstr "NakupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9877,7 +9877,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateAcquir"
-msgstr ""
+msgstr "NakupDatum"
#: TableWizard.xcu
msgctxt ""
@@ -9886,7 +9886,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasedAt"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -9895,7 +9895,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchaseAt"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -9904,7 +9904,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr ""
+msgstr "KupnaPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -9913,7 +9913,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr ""
+msgstr "KupPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -9922,7 +9922,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Review"
-msgstr ""
+msgstr "Pohódnocénja"
#: TableWizard.xcu
msgctxt ""
@@ -9931,7 +9931,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Review"
-msgstr ""
+msgstr "Pohódnoćenja"
#: TableWizard.xcu
msgctxt ""
@@ -9940,7 +9940,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9949,7 +9949,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CD-Collection"
-msgstr ""
+msgstr "CD-zběrka"
#: TableWizard.xcu
msgctxt ""
@@ -9967,7 +9967,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CollectionID"
-msgstr ""
+msgstr "ZběrkaID"
#: TableWizard.xcu
msgctxt ""
@@ -9976,7 +9976,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CollectnID"
-msgstr ""
+msgstr "ZběrkaID"
#: TableWizard.xcu
msgctxt ""
@@ -9985,7 +9985,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AlbumTitle"
-msgstr ""
+msgstr "AlbumowyTitul"
#: TableWizard.xcu
msgctxt ""
@@ -9994,7 +9994,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AlbumTitle"
-msgstr ""
+msgstr "AlbumowyTitul"
#: TableWizard.xcu
msgctxt ""
@@ -10003,7 +10003,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Artist"
-msgstr ""
+msgstr "Wuměłc"
#: TableWizard.xcu
msgctxt ""
@@ -10012,7 +10012,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Artist"
-msgstr ""
+msgstr "Wuměłc"
#: TableWizard.xcu
msgctxt ""
@@ -10021,7 +10021,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MusicCategoryID"
-msgstr ""
+msgstr "HudźbnaKategorijaID"
#: TableWizard.xcu
msgctxt ""
@@ -10030,7 +10030,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MusicCatID"
-msgstr ""
+msgstr "HudźKatID"
#: TableWizard.xcu
msgctxt ""
@@ -10039,7 +10039,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RecordLabel"
-msgstr ""
+msgstr "TačelowaFirma"
#: TableWizard.xcu
msgctxt ""
@@ -10048,7 +10048,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RecordLabl"
-msgstr ""
+msgstr "TačelFirma"
#: TableWizard.xcu
msgctxt ""
@@ -10057,7 +10057,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Producer"
-msgstr ""
+msgstr "Producent"
#: TableWizard.xcu
msgctxt ""
@@ -10066,7 +10066,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Producer"
-msgstr ""
+msgstr "Producent"
#: TableWizard.xcu
msgctxt ""
@@ -10075,7 +10075,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReleaseYear"
-msgstr ""
+msgstr "WudawanskeLěto"
#: TableWizard.xcu
msgctxt ""
@@ -10084,7 +10084,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReleasYear"
-msgstr ""
+msgstr "WudawLěto"
#: TableWizard.xcu
msgctxt ""
@@ -10093,7 +10093,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Rating"
-msgstr ""
+msgstr "Hódnoćenje"
#: TableWizard.xcu
msgctxt ""
@@ -10102,7 +10102,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr ""
+msgstr "Hódnoćenje"
#: TableWizard.xcu
msgctxt ""
@@ -10111,7 +10111,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: TableWizard.xcu
msgctxt ""
@@ -10120,7 +10120,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: TableWizard.xcu
msgctxt ""
@@ -10129,7 +10129,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofTracks"
-msgstr ""
+msgstr "LičbaČarow"
#: TableWizard.xcu
msgctxt ""
@@ -10138,7 +10138,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NoofTracks"
-msgstr ""
+msgstr "LičbaČarow"
#: TableWizard.xcu
msgctxt ""
@@ -10147,7 +10147,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr ""
+msgstr "KupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -10156,7 +10156,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr ""
+msgstr "KupDat"
#: TableWizard.xcu
msgctxt ""
@@ -10165,7 +10165,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasedAt"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -10174,7 +10174,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchaseAt"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -10183,7 +10183,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr ""
+msgstr "KupnaPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -10192,7 +10192,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr ""
+msgstr "KupPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -10201,7 +10201,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Review"
-msgstr ""
+msgstr "Pohódnoćenja"
#: TableWizard.xcu
msgctxt ""
@@ -10210,7 +10210,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Review"
-msgstr ""
+msgstr "Pohódnoćenja"
#: TableWizard.xcu
msgctxt ""
@@ -10219,7 +10219,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10228,7 +10228,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10237,7 +10237,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Library"
-msgstr ""
+msgstr "Knihownja"
#: TableWizard.xcu
msgctxt ""
@@ -10246,7 +10246,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BookID"
-msgstr ""
+msgstr "KnihaID"
#: TableWizard.xcu
msgctxt ""
@@ -10255,7 +10255,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BookID"
-msgstr ""
+msgstr "KnihaID"
#: TableWizard.xcu
msgctxt ""
@@ -10264,7 +10264,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr ""
+msgstr "Titul"
#: TableWizard.xcu
msgctxt ""
@@ -10273,7 +10273,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr ""
+msgstr "Titul"
#: TableWizard.xcu
msgctxt ""
@@ -10282,7 +10282,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Genre"
-msgstr ""
+msgstr "Žanr"
#: TableWizard.xcu
msgctxt ""
@@ -10291,7 +10291,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Genre"
-msgstr ""
+msgstr "Žanr"
#: TableWizard.xcu
msgctxt ""
@@ -10300,7 +10300,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AuthorID"
-msgstr ""
+msgstr "AwtorID"
#: TableWizard.xcu
msgctxt ""
@@ -10309,7 +10309,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AuthorID"
-msgstr ""
+msgstr "AwtorID"
#: TableWizard.xcu
msgctxt ""
@@ -10318,7 +10318,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CopyrightYear"
-msgstr ""
+msgstr "AwtorstwoLěto"
#: TableWizard.xcu
msgctxt ""
@@ -10327,7 +10327,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CpyrightYr"
-msgstr ""
+msgstr "AwtorstLěto"
#: TableWizard.xcu
msgctxt ""
@@ -10336,7 +10336,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ISBNNumber"
-msgstr ""
+msgstr "ISBNČisło"
#: TableWizard.xcu
msgctxt ""
@@ -10345,7 +10345,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ISBNNumber"
-msgstr ""
+msgstr "ISBNČisło"
#: TableWizard.xcu
msgctxt ""
@@ -10354,7 +10354,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Publisher"
-msgstr ""
+msgstr "Wudawaćel"
#: TableWizard.xcu
msgctxt ""
@@ -10363,7 +10363,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Publisher"
-msgstr ""
+msgstr "Wudawaćel"
#: TableWizard.xcu
msgctxt ""
@@ -10372,7 +10372,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Rating"
-msgstr ""
+msgstr "Hódnoćenje"
#: TableWizard.xcu
msgctxt ""
@@ -10381,7 +10381,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr ""
+msgstr "Hódnoćenje"
#: TableWizard.xcu
msgctxt ""
@@ -10390,7 +10390,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Translator"
-msgstr ""
+msgstr "Přełožowar"
#: TableWizard.xcu
msgctxt ""
@@ -10399,7 +10399,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Translator"
-msgstr ""
+msgstr "Přełožowar"
#: TableWizard.xcu
msgctxt ""
@@ -10408,7 +10408,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Pages"
-msgstr ""
+msgstr "Strony"
#: TableWizard.xcu
msgctxt ""
@@ -10417,7 +10417,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Pages"
-msgstr ""
+msgstr "Strony"
#: TableWizard.xcu
msgctxt ""
@@ -10426,7 +10426,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr ""
+msgstr "KupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -10435,7 +10435,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr ""
+msgstr "KupDat"
#: TableWizard.xcu
msgctxt ""
@@ -10444,7 +10444,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasedAt"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -10453,7 +10453,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchaseAt"
-msgstr ""
+msgstr "KupneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr ""
+msgstr "KupnaPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -10471,7 +10471,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr ""
+msgstr "KupPłaćizna"
#: TableWizard.xcu
msgctxt ""
@@ -10480,7 +10480,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CoverType"
-msgstr ""
+msgstr "TypWjazby"
#: TableWizard.xcu
msgctxt ""
@@ -10489,7 +10489,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CoverType"
-msgstr ""
+msgstr "TypWjazby"
#: TableWizard.xcu
msgctxt ""
@@ -10498,7 +10498,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EditionNumber"
-msgstr ""
+msgstr "Nakład"
#: TableWizard.xcu
msgctxt ""
@@ -10507,7 +10507,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EditionNo"
-msgstr ""
+msgstr "Nakład"
#: TableWizard.xcu
msgctxt ""
@@ -10516,7 +10516,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10525,7 +10525,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Authors"
-msgstr ""
+msgstr "Awtorojo"
#: TableWizard.xcu
msgctxt ""
@@ -10543,7 +10543,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AuthorID"
-msgstr ""
+msgstr "AwtorID"
#: TableWizard.xcu
msgctxt ""
@@ -10552,7 +10552,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AuthorID"
-msgstr ""
+msgstr "AwtorID"
#: TableWizard.xcu
msgctxt ""
@@ -10561,7 +10561,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr ""
+msgstr "Předmjeno"
#: TableWizard.xcu
msgctxt ""
@@ -10570,7 +10570,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr ""
+msgstr "Předmjeno"
#: TableWizard.xcu
msgctxt ""
@@ -10579,7 +10579,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr ""
+msgstr "SwójbneMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -10588,7 +10588,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr ""
+msgstr "SwójbneMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -10597,7 +10597,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Nationality"
-msgstr ""
+msgstr "Narodnosć"
#: TableWizard.xcu
msgctxt ""
@@ -10606,7 +10606,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Nationlity"
-msgstr ""
+msgstr "Narodnosć"
#: TableWizard.xcu
msgctxt ""
@@ -10615,7 +10615,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr ""
+msgstr "Narodniny"
#: TableWizard.xcu
msgctxt ""
@@ -10624,7 +10624,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr ""
+msgstr "Narodniny"
#: TableWizard.xcu
msgctxt ""
@@ -10633,7 +10633,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthplace"
-msgstr ""
+msgstr "RódneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -10642,7 +10642,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthplace"
-msgstr ""
+msgstr "RódneMěstno"
#: TableWizard.xcu
msgctxt ""
@@ -10651,7 +10651,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateofDeath"
-msgstr ""
+msgstr "SmjertnyDźeń"
#: TableWizard.xcu
msgctxt ""
@@ -10660,7 +10660,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatofDeath"
-msgstr ""
+msgstr "SmjertnyDźeń"
#: TableWizard.xcu
msgctxt ""
@@ -10669,7 +10669,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TrainingLocation"
-msgstr ""
+msgstr "Wukubłanišćo"
#: TableWizard.xcu
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TraininLoc"
-msgstr ""
+msgstr "Wukubłanišćo"
#: TableWizard.xcu
msgctxt ""
@@ -10687,7 +10687,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MajorInfluences"
-msgstr ""
+msgstr "HłowneWliwy"
#: TableWizard.xcu
msgctxt ""
@@ -10696,7 +10696,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MajrInflue"
-msgstr ""
+msgstr "HłownWliw"
#: TableWizard.xcu
msgctxt ""
@@ -10705,7 +10705,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr ""
+msgstr "Foto"
#: TableWizard.xcu
msgctxt ""
@@ -10714,7 +10714,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr ""
+msgstr "Foto"
#: TableWizard.xcu
msgctxt ""
@@ -10723,7 +10723,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10732,7 +10732,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10741,7 +10741,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Accounts"
-msgstr ""
+msgstr "Konta"
#: TableWizard.xcu
msgctxt ""
@@ -10750,7 +10750,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountID"
-msgstr ""
+msgstr "KontoID"
#: TableWizard.xcu
msgctxt ""
@@ -10759,7 +10759,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountID"
-msgstr ""
+msgstr "KontoID"
#: TableWizard.xcu
msgctxt ""
@@ -10768,7 +10768,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountNumber"
-msgstr ""
+msgstr "KontoweČisło"
#: TableWizard.xcu
msgctxt ""
@@ -10777,7 +10777,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountNo"
-msgstr ""
+msgstr "KontoČo"
#: TableWizard.xcu
msgctxt ""
@@ -10786,7 +10786,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountName"
-msgstr ""
+msgstr "KontoweMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -10795,7 +10795,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AcountName"
-msgstr ""
+msgstr "KontoMjeno"
#: TableWizard.xcu
msgctxt ""
@@ -10804,7 +10804,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountTypeID"
-msgstr ""
+msgstr "KontowyTypID"
#: TableWizard.xcu
msgctxt ""
@@ -10813,7 +10813,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccTypeID"
-msgstr ""
+msgstr "KntoTypID"
#: TableWizard.xcu
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountType"
-msgstr ""
+msgstr "KontowyTyp"
#: TableWizard.xcu
msgctxt ""
@@ -10831,7 +10831,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountTyp"
-msgstr ""
+msgstr "KontowyTyp"
#: TableWizard.xcu
msgctxt ""
@@ -10840,7 +10840,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Description"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -10849,7 +10849,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr ""
+msgstr "Wopisanje"
#: TableWizard.xcu
msgctxt ""
@@ -10858,7 +10858,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10867,7 +10867,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -10876,7 +10876,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Investments"
-msgstr ""
+msgstr "Inwesticije"
#: TableWizard.xcu
msgctxt ""
@@ -10885,7 +10885,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvestmentID"
-msgstr ""
+msgstr "InwesticijaID"
#: TableWizard.xcu
msgctxt ""
@@ -10894,7 +10894,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InvestmtID"
-msgstr ""
+msgstr "InwestID"
#: TableWizard.xcu
msgctxt ""
@@ -10903,7 +10903,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountID"
-msgstr ""
+msgstr "KontoID"
#: TableWizard.xcu
msgctxt ""
@@ -10912,7 +10912,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountID"
-msgstr ""
+msgstr "KontoID"
#: TableWizard.xcu
msgctxt ""
@@ -10921,7 +10921,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecurityName"
-msgstr ""
+msgstr "MjenoHódnotowaPapjera"
#: TableWizard.xcu
msgctxt ""
@@ -10930,7 +10930,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SecuriName"
-msgstr ""
+msgstr "MjenoHódPap"
#: TableWizard.xcu
msgctxt ""
@@ -10939,7 +10939,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecuritySymbol"
-msgstr ""
+msgstr "SymbolHódnotaPapjera"
#: TableWizard.xcu
msgctxt ""
@@ -10948,7 +10948,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SecuriSymb"
-msgstr ""
+msgstr "SymbHódPap"
#: TableWizard.xcu
msgctxt ""
@@ -10957,7 +10957,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecurityType"
-msgstr ""
+msgstr "TypHódnotaPapjera"
#: TableWizard.xcu
msgctxt ""
@@ -10966,7 +10966,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SecuriType"
-msgstr ""
+msgstr "TypHódPap"
#: TableWizard.xcu
msgctxt ""
@@ -10975,7 +10975,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SharesOwned"
-msgstr ""
+msgstr "LičbaPodźělow"
#: TableWizard.xcu
msgctxt ""
@@ -10984,7 +10984,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShareOwned"
-msgstr ""
+msgstr "LičPodźěl"
#: TableWizard.xcu
msgctxt ""
@@ -10993,7 +10993,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -11002,7 +11002,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -11011,7 +11011,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ExerciseLog"
-msgstr ""
+msgstr "ZwučowanskiProtokol"
#: TableWizard.xcu
msgctxt ""
@@ -11020,7 +11020,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LogID"
-msgstr ""
+msgstr "ProtokolID"
#: TableWizard.xcu
msgctxt ""
@@ -11029,7 +11029,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LogID"
-msgstr ""
+msgstr "ProtokolID"
#: TableWizard.xcu
msgctxt ""
@@ -11038,7 +11038,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PersonID"
-msgstr ""
+msgstr "WosobaID"
#: TableWizard.xcu
msgctxt ""
@@ -11047,7 +11047,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PersonID"
-msgstr ""
+msgstr "WosobaID"
#: TableWizard.xcu
msgctxt ""
@@ -11056,7 +11056,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Activity"
-msgstr ""
+msgstr "Činitosć"
#: TableWizard.xcu
msgctxt ""
@@ -11065,7 +11065,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Activity"
-msgstr ""
+msgstr "Činitosć"
#: TableWizard.xcu
msgctxt ""
@@ -11074,7 +11074,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WorkoutDate"
-msgstr ""
+msgstr "ZwučowanskiDatum"
#: TableWizard.xcu
msgctxt ""
@@ -11083,7 +11083,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WorkoutDat"
-msgstr ""
+msgstr "ZwučDat"
#: TableWizard.xcu
msgctxt ""
@@ -11092,7 +11092,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ExerciseType"
-msgstr ""
+msgstr "ZwučowanskiTyp"
#: TableWizard.xcu
msgctxt ""
@@ -11101,7 +11101,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ExercisTyp"
-msgstr ""
+msgstr "ZwučTyp"
#: TableWizard.xcu
msgctxt ""
@@ -11110,7 +11110,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeExercised"
-msgstr ""
+msgstr "ZwučowanskiČas"
#: TableWizard.xcu
msgctxt ""
@@ -11119,7 +11119,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimeExerci"
-msgstr ""
+msgstr "ZwučČas"
#: TableWizard.xcu
msgctxt ""
@@ -11128,7 +11128,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DistanceTraveled"
-msgstr ""
+msgstr "PřeměrjenyPuć"
#: TableWizard.xcu
msgctxt ""
@@ -11137,7 +11137,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DistTravel"
-msgstr ""
+msgstr "PřemPuć"
#: TableWizard.xcu
msgctxt ""
@@ -11146,7 +11146,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RestingPulse"
-msgstr ""
+msgstr "WotpočnyPuls"
#: TableWizard.xcu
msgctxt ""
@@ -11155,7 +11155,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RestngPuls"
-msgstr ""
+msgstr "WotpočPuls"
#: TableWizard.xcu
msgctxt ""
@@ -11164,7 +11164,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MaximumPulse"
-msgstr ""
+msgstr "MaksimalnyPuls"
#: TableWizard.xcu
msgctxt ""
@@ -11173,7 +11173,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MaxPulse"
-msgstr ""
+msgstr "MaksPuls"
#: TableWizard.xcu
msgctxt ""
@@ -11182,7 +11182,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CaloriesBurned"
-msgstr ""
+msgstr "PřetrjebaneKalorije"
#: TableWizard.xcu
msgctxt ""
@@ -11191,7 +11191,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CalsBurned"
-msgstr ""
+msgstr "PřetrjebKal"
#: TableWizard.xcu
msgctxt ""
@@ -11200,7 +11200,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HoursSleep"
-msgstr ""
+msgstr "WotpočneHodźiny"
#: TableWizard.xcu
msgctxt ""
@@ -11209,7 +11209,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "HoursSleep"
-msgstr ""
+msgstr "WotpočneHodźiny"
#: TableWizard.xcu
msgctxt ""
@@ -11218,7 +11218,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -11227,7 +11227,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -11236,7 +11236,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DietLog"
-msgstr ""
+msgstr "DietnyProtokol"
#: TableWizard.xcu
msgctxt ""
@@ -11245,7 +11245,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LogID"
-msgstr ""
+msgstr "ProtokolID"
#: TableWizard.xcu
msgctxt ""
@@ -11254,7 +11254,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LogID"
-msgstr ""
+msgstr "ProtokolID"
#: TableWizard.xcu
msgctxt ""
@@ -11263,7 +11263,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PersonID"
-msgstr ""
+msgstr "WosobaID"
#: TableWizard.xcu
msgctxt ""
@@ -11272,7 +11272,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PersonID"
-msgstr ""
+msgstr "WosobaID"
#: TableWizard.xcu
msgctxt ""
@@ -11281,7 +11281,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DietType"
-msgstr ""
+msgstr "DietnyTyp"
#: TableWizard.xcu
msgctxt ""
@@ -11290,7 +11290,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DietType"
-msgstr ""
+msgstr "DietnyTyp"
#: TableWizard.xcu
msgctxt ""
@@ -11299,7 +11299,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateAcquired"
-msgstr ""
+msgstr "NakupnyDatum"
#: TableWizard.xcu
msgctxt ""
@@ -11308,7 +11308,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateAcquir"
-msgstr ""
+msgstr "NakupDatum"
#: TableWizard.xcu
msgctxt ""
@@ -11317,7 +11317,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WhichMeal"
-msgstr ""
+msgstr "Jědź"
#: TableWizard.xcu
msgctxt ""
@@ -11326,7 +11326,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WhichMeal"
-msgstr ""
+msgstr "Jědź"
#: TableWizard.xcu
msgctxt ""
@@ -11335,7 +11335,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "GramsCarbohydrates"
-msgstr ""
+msgstr "GramyWuhlikoweHydraty"
#: TableWizard.xcu
msgctxt ""
@@ -11344,7 +11344,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "GrCarbohyd"
-msgstr ""
+msgstr "GraWuhloHydr"
#: TableWizard.xcu
msgctxt ""
@@ -11353,7 +11353,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "GramsProtein"
-msgstr ""
+msgstr "GramyProtein"
#: TableWizard.xcu
msgctxt ""
@@ -11362,7 +11362,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "GrsProtein"
-msgstr ""
+msgstr "GrProtein"
#: TableWizard.xcu
msgctxt ""
@@ -11371,7 +11371,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "GramsFat"
-msgstr ""
+msgstr "GramyTuk"
#: TableWizard.xcu
msgctxt ""
@@ -11380,7 +11380,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "GramsFat"
-msgstr ""
+msgstr "GramyTuk"
#: TableWizard.xcu
msgctxt ""
@@ -11389,7 +11389,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TotalCalories"
-msgstr ""
+msgstr "KalorijeDohromady"
#: TableWizard.xcu
msgctxt ""
@@ -11398,7 +11398,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TotalCals"
-msgstr ""
+msgstr "KalDohromady"
#: TableWizard.xcu
msgctxt ""
@@ -11407,7 +11407,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MilligramsSodium"
-msgstr ""
+msgstr "MiligramyNatrij"
#: TableWizard.xcu
msgctxt ""
@@ -11416,7 +11416,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MilligrSod"
-msgstr ""
+msgstr "MiligrNatr"
#: TableWizard.xcu
msgctxt ""
@@ -11425,7 +11425,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Vitamins"
-msgstr ""
+msgstr "Witaminy"
#: TableWizard.xcu
msgctxt ""
@@ -11434,7 +11434,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Vitamins"
-msgstr ""
+msgstr "Witaminy"
#: TableWizard.xcu
msgctxt ""
@@ -11443,7 +11443,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: TableWizard.xcu
msgctxt ""
@@ -11452,7 +11452,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Přispomnjenki"
#: UI.xcu
msgctxt ""
@@ -11461,7 +11461,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Text documents"
-msgstr ""
+msgstr "Tekstowe dokumenty"
#: UI.xcu
msgctxt ""
@@ -11470,7 +11470,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Spreadsheets"
-msgstr ""
+msgstr "Tabelowe dokumenty"
#: UI.xcu
msgctxt ""
@@ -11479,7 +11479,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Presentations"
-msgstr ""
+msgstr "Prezentacije"
#: UI.xcu
msgctxt ""
@@ -11488,7 +11488,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Drawings"
-msgstr ""
+msgstr "Rysowanki"
#: UI.xcu
msgctxt ""
@@ -11497,7 +11497,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Web pages"
-msgstr ""
+msgstr "Webstrony"
#: UI.xcu
msgctxt ""
@@ -11506,7 +11506,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Master documents"
-msgstr ""
+msgstr "Globalne dokumenty"
#: UI.xcu
msgctxt ""
@@ -11515,7 +11515,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Formulas"
-msgstr ""
+msgstr "Formle"
#: UI.xcu
msgctxt ""
@@ -11524,7 +11524,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Database documents"
-msgstr ""
+msgstr "Dokumenty datoweje banki"
#: UI.xcu
msgctxt ""
@@ -11533,7 +11533,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Microsoft Word 6.0 / 95"
-msgstr ""
+msgstr "Microsoft Word 6.0 / 95"
#: UI.xcu
msgctxt ""
@@ -11542,7 +11542,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Microsoft Excel 4.x - 5.0 / 95"
-msgstr ""
+msgstr "Microsoft Excel 4.x - 5.0 / 95"
#: UI.xcu
msgctxt ""
@@ -11551,7 +11551,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Microsoft Excel 4.x - 5.0 / 95 Templates"
-msgstr ""
+msgstr "Předłohi Microsoft Excel 4.x - 5.0 / 95"
#: UI.xcu
msgctxt ""
@@ -11560,7 +11560,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Text (StarWriter/Web)"
-msgstr ""
+msgstr "Tekst (StarWriter/Web)"
#: UI.xcu
msgctxt ""
@@ -11569,7 +11569,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "WordPerfect (Win) 6.0 - 7.0"
-msgstr ""
+msgstr "WordPerfect (Win) 6.0 - 7.0"
#: Writer.xcu
msgctxt ""
@@ -11578,7 +11578,7 @@ msgctxt ""
"FemaleGreetingLines\n"
"value.text"
msgid "Dear Mrs. <2>,"
-msgstr ""
+msgstr "Wažena knjeni <2>,"
#: Writer.xcu
msgctxt ""
@@ -11587,7 +11587,7 @@ msgctxt ""
"MaleGreetingLines\n"
"value.text"
msgid "Dear Mr. <2>,"
-msgstr ""
+msgstr "Waženy knježe <2>,"
#: Writer.xcu
msgctxt ""
@@ -11596,7 +11596,7 @@ msgctxt ""
"NeutralGreetingLines\n"
"value.text"
msgid "To whom it may concern,;Dear Friends,;Dear Sir or Madam,;Hello,"
-msgstr ""
+msgstr "Česćeni knjenje a knježa,;Lube přećeljo,;Witaj,;Halo,"
#: Writer.xcu
msgctxt ""
@@ -11605,7 +11605,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#: Writer.xcu
msgctxt ""
@@ -11623,7 +11623,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: Writer.xcu
msgctxt ""
@@ -11641,7 +11641,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11659,7 +11659,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11677,7 +11677,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11695,7 +11695,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11713,7 +11713,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11731,7 +11731,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11749,7 +11749,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
@@ -11767,7 +11767,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Illustration"
-msgstr ""
+msgstr "Zwobraznjenje"
#: Writer.xcu
msgctxt ""
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 62387d5d41d..f17c6647084 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hsb/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-07 22:19+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-19 20:15+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1491603572.000000\n"
+"X-POOTLE-MTIME: 1497903359.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Database Object"
-msgstr ""
+msgstr "Objekt datoweje banki"
#: BaseWindowState.xcu
msgctxt ""
@@ -31,7 +31,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#: BaseWindowState.xcu
msgctxt ""
@@ -40,7 +40,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Query"
-msgstr ""
+msgstr "Wotprašowanje"
#: BaseWindowState.xcu
msgctxt ""
@@ -49,7 +49,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Report"
-msgstr ""
+msgstr "Rozprawa"
#: BaseWindowState.xcu
msgctxt ""
@@ -58,7 +58,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form"
-msgstr ""
+msgstr "Formular"
#: BaseWindowState.xcu
msgctxt ""
@@ -67,7 +67,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: BasicIDECommands.xcu
msgctxt ""
@@ -76,7 +76,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Line..."
-msgstr ""
+msgstr "K lince..."
#: BasicIDECommands.xcu
msgctxt ""
@@ -85,7 +85,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Numbers"
-msgstr ""
+msgstr "Linkowe čisła"
#: BasicIDECommands.xcu
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Option Button"
-msgstr ""
+msgstr "Opciske polo"
#: BasicIDECommands.xcu
msgctxt ""
@@ -103,7 +103,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Check Box"
-msgstr ""
+msgstr "Kontrolny kašćik"
#: BasicIDECommands.xcu
msgctxt ""
@@ -112,7 +112,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form List Box"
-msgstr ""
+msgstr "Lisćinowe polo"
#: BasicIDECommands.xcu
msgctxt ""
@@ -121,7 +121,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Combo Box"
-msgstr ""
+msgstr "Kombinaciske polo"
#: BasicIDECommands.xcu
msgctxt ""
@@ -130,7 +130,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Vertical Scroll Bar"
-msgstr ""
+msgstr "Padoruna suwanska lajsta"
#: BasicIDECommands.xcu
msgctxt ""
@@ -139,7 +139,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizonal Scroll Bar"
-msgstr ""
+msgstr "Wodoruna suwanska lajsta"
#: BasicIDECommands.xcu
msgctxt ""
@@ -148,7 +148,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Spin Button"
-msgstr ""
+msgstr "Wjerćite tłóčatko"
#: BasicIDECommands.xcu
msgctxt ""
@@ -157,7 +157,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Module"
-msgstr ""
+msgstr "Modul BASIC"
#: BasicIDECommands.xcu
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Dialog"
-msgstr ""
+msgstr "Dialog BASIC"
#: BasicIDECommands.xcu
msgctxt ""
@@ -175,7 +175,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Zhašeć"
#: BasicIDECommands.xcu
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename"
-msgstr ""
+msgstr "Přemjenować"
#: BasicIDECommands.xcu
msgctxt ""
@@ -193,7 +193,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide"
-msgstr ""
+msgstr "Schować"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Dialog"
-msgstr ""
+msgstr "Dialog"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -211,7 +211,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Tab Bar"
-msgstr ""
+msgstr "Rajtarkowa lajsta"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -220,7 +220,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -229,7 +229,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Macro"
-msgstr ""
+msgstr "Makro"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Dialog"
-msgstr ""
+msgstr "Dialog"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -247,7 +247,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Language"
-msgstr ""
+msgstr "Rěč"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -256,7 +256,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "FormControls"
-msgstr ""
+msgstr "Formularne wodźenske elementy"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -265,7 +265,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Toolbox"
-msgstr ""
+msgstr "Nastroje"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -274,7 +274,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Full Screen"
-msgstr ""
+msgstr "Połna wobrazowka"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -283,7 +283,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr ""
+msgstr "Pytać"
#: BibliographyCommands.xcu
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Column Arrangement..."
-msgstr ""
+msgstr "Špa~ltowe přirjadowanje..."
#: BibliographyCommands.xcu
msgctxt ""
@@ -301,7 +301,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Filter..."
-msgstr ""
+msgstr "~Filter..."
#: BibliographyCommands.xcu
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete ~Record"
-msgstr ""
+msgstr "~Datowu sadźbu zhašeć"
#: BibliographyCommands.xcu
msgctxt ""
@@ -319,7 +319,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr ""
+msgstr "~Datowa sadźba"
#: BibliographyCommands.xcu
msgctxt ""
@@ -328,7 +328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Choose Data Source..."
-msgstr ""
+msgstr "Datowe žórło w~ubrać..."
#: BibliographyCommands.xcu
msgctxt ""
@@ -337,7 +337,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#: BibliographyCommands.xcu
msgctxt ""
@@ -346,7 +346,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Search Key"
-msgstr ""
+msgstr "Pytanski wuraz"
#: BibliographyCommands.xcu
msgctxt ""
@@ -355,7 +355,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoFilter"
-msgstr ""
+msgstr "Awtomatiski filter"
#: BibliographyCommands.xcu
msgctxt ""
@@ -364,7 +364,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset Filter"
-msgstr ""
+msgstr "Filter wróćo stajić"
#: CalcCommands.xcu
msgctxt ""
@@ -373,7 +373,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Formula..."
-msgstr ""
+msgstr "~Formla..."
#: CalcCommands.xcu
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr ""
+msgstr "Padorunje kiwknyć"
#: CalcCommands.xcu
msgctxt ""
@@ -391,7 +391,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number Format Type"
-msgstr ""
+msgstr "Typ ličboweho formata"
#: CalcCommands.xcu
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr ""
+msgstr "Wodorunje kiwknyć"
#: CalcCommands.xcu
msgctxt ""
@@ -409,7 +409,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Trace ~Precedents"
-msgstr ""
+msgstr "~Předchadniki slědować"
#: CalcCommands.xcu
msgctxt ""
@@ -418,7 +418,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "~Direktne formatowanje wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -427,7 +427,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Remove Precedents"
-msgstr ""
+msgstr "Předchadniki wot~stronić"
#: CalcCommands.xcu
msgctxt ""
@@ -436,7 +436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Trace Dependents"
-msgstr ""
+msgstr "~Naslědniki slědować"
#: CalcCommands.xcu
msgctxt ""
@@ -445,7 +445,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Split Window"
-msgstr ""
+msgstr "Wokno ~rozdźělić"
#: CalcCommands.xcu
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove ~Dependents"
-msgstr ""
+msgstr "~Naslědniki wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -463,7 +463,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze ~Cells"
-msgstr ""
+msgstr "~Cele fiksować"
#: CalcCommands.xcu
msgctxt ""
@@ -472,7 +472,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze ~Rows and Columns"
-msgstr ""
+msgstr "~Linki a špalty fiksować"
#: CalcCommands.xcu
msgctxt ""
@@ -481,7 +481,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Column"
-msgstr ""
+msgstr "Prěnju špaltu fiksować"
#: CalcCommands.xcu
msgctxt ""
@@ -490,7 +490,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Row"
-msgstr ""
+msgstr "Prěnju linku fiksować"
#: CalcCommands.xcu
msgctxt ""
@@ -499,7 +499,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Trace ~Error"
-msgstr ""
+msgstr "~Zmylk slědować"
#: CalcCommands.xcu
msgctxt ""
@@ -508,7 +508,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Chart"
-msgstr ""
+msgstr "Diagram zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -517,7 +517,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Trace ~Precedent"
-msgstr ""
+msgstr "~Předchadnikej slědować"
#: CalcCommands.xcu
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Remove Precedent"
-msgstr ""
+msgstr "Předchadnik wot~stronić"
#: CalcCommands.xcu
msgctxt ""
@@ -535,7 +535,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Trace Dependent"
-msgstr ""
+msgstr "Naslědnikej s~lědować"
#: CalcCommands.xcu
msgctxt ""
@@ -544,7 +544,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Dependent"
-msgstr ""
+msgstr "Naslědnik wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -553,7 +553,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit Fill Mode"
-msgstr ""
+msgstr "Pjelnjenski modus skónčić"
#: CalcCommands.xcu
msgctxt ""
@@ -562,7 +562,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove ~All Traces"
-msgstr ""
+msgstr "Wšě ~slědy wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -571,7 +571,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Fill Mode"
-msgstr ""
+msgstr "~Pjelnjenski modus"
#: CalcCommands.xcu
msgctxt ""
@@ -580,7 +580,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Mark Invalid Data"
-msgstr ""
+msgstr "~Njepłaćiwe daty woznamjenić"
#: CalcCommands.xcu
msgctxt ""
@@ -589,7 +589,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Tra~ces"
-msgstr ""
+msgstr "Slědy ~aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "A~utoRefresh Traces"
-msgstr ""
+msgstr "Slědy awto~matisce aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -607,7 +607,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "A~utoRefresh"
-msgstr ""
+msgstr "Awt~omatisce aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -615,7 +615,7 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
+msgid "Spreadsheet Theme"
msgstr ""
#: CalcCommands.xcu
@@ -625,7 +625,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Euro Converter"
-msgstr ""
+msgstr "Eurokonwerter"
#: CalcCommands.xcu
msgctxt ""
@@ -634,7 +634,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect Records..."
-msgstr ""
+msgstr "Datowe sadźby š~kitać..."
#: CalcCommands.xcu
msgctxt ""
@@ -643,7 +643,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Link to E~xternal Data..."
-msgstr ""
+msgstr "Zwjazanje z eks~ternymi datami..."
#: CalcCommands.xcu
msgctxt ""
@@ -652,7 +652,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr ""
+msgstr "~Dźělenje złóžkow..."
#: CalcCommands.xcu
msgctxt ""
@@ -661,7 +661,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Name..."
-msgstr ""
+msgstr "Mjeno..."
#: CalcCommands.xcu
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Input Line"
-msgstr ""
+msgstr "Zapodawanska linka"
#: CalcCommands.xcu
msgctxt ""
@@ -679,7 +679,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Select Sheets..."
-msgstr ""
+msgstr "Tabele w~ubrać..."
#: CalcCommands.xcu
msgctxt ""
@@ -688,7 +688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Events..."
-msgstr ""
+msgstr "Tabelowe po~dawki..."
#: CalcCommands.xcu
msgctxt ""
@@ -697,7 +697,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table Filter"
-msgstr ""
+msgstr "Filter Pivotoweje tabele"
#: CalcCommands.xcu
msgctxt ""
@@ -706,7 +706,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Filter..."
-msgstr ""
+msgstr "~Filter..."
#: CalcCommands.xcu
msgctxt ""
@@ -715,7 +715,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Next Page"
-msgstr ""
+msgstr "Přichodna strona"
#: CalcCommands.xcu
msgctxt ""
@@ -724,7 +724,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Previous Page"
-msgstr ""
+msgstr "Předchadna strona"
#: CalcCommands.xcu
msgctxt ""
@@ -733,7 +733,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "First Page"
-msgstr ""
+msgstr "Prěnja strona"
#: CalcCommands.xcu
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Last Page"
-msgstr ""
+msgstr "Poslednja strona"
#: CalcCommands.xcu
msgctxt ""
@@ -751,7 +751,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom In"
-msgstr ""
+msgstr "Powjetšić"
#: CalcCommands.xcu
msgctxt ""
@@ -760,7 +760,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr ""
+msgstr "Pomjeńšić"
#: CalcCommands.xcu
msgctxt ""
@@ -769,7 +769,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Margins"
-msgstr ""
+msgstr "Kromy"
#: CalcCommands.xcu
msgctxt ""
@@ -778,7 +778,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scaling Factor"
-msgstr ""
+msgstr "Skalowanski faktor"
#: CalcCommands.xcu
msgctxt ""
@@ -787,7 +787,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Close Preview"
-msgstr ""
+msgstr "Přehlad začinić"
#: CalcCommands.xcu
msgctxt ""
@@ -796,7 +796,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Position in Document"
-msgstr ""
+msgstr "Pozicija w dokumenće"
#: CalcCommands.xcu
msgctxt ""
@@ -805,7 +805,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Format"
-msgstr ""
+msgstr "Format strony"
#: CalcCommands.xcu
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Se~lection Mode"
-msgstr ""
+msgstr "Wu~běranski modus"
#: CalcCommands.xcu
msgctxt ""
@@ -823,7 +823,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Enter References"
-msgstr ""
+msgstr "Poćahi zapodać"
#: CalcCommands.xcu
msgctxt ""
@@ -832,7 +832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Status Expanded Selection"
-msgstr ""
+msgstr "Status rozšěrjeneho wuběra"
#: CalcCommands.xcu
msgctxt ""
@@ -841,7 +841,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Status Extended Selection"
-msgstr ""
+msgstr "Status rozšěrjeneho wuběra"
#: CalcCommands.xcu
msgctxt ""
@@ -850,7 +850,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Left"
-msgstr ""
+msgstr "Wo stronu dolěwa"
#: CalcCommands.xcu
msgctxt ""
@@ -859,7 +859,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Right"
-msgstr ""
+msgstr "Wo stronu doprawa"
#: CalcCommands.xcu
msgctxt ""
@@ -868,7 +868,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Page Right"
-msgstr ""
+msgstr "Hač do praweje kromy strony wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -877,7 +877,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Upper Block Margin"
-msgstr ""
+msgstr "K hornjej blokowej kromje"
#: CalcCommands.xcu
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Lower Block Margin"
-msgstr ""
+msgstr "K delnjej blokowej kromje"
#: CalcCommands.xcu
msgctxt ""
@@ -895,7 +895,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Left Block Margin"
-msgstr ""
+msgstr "K lěwej blokowej kromje"
#: CalcCommands.xcu
msgctxt ""
@@ -904,7 +904,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Right Block Margin"
-msgstr ""
+msgstr "K prawej blopkowej kromje"
#: CalcCommands.xcu
msgctxt ""
@@ -913,7 +913,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Upper Block Margin"
-msgstr ""
+msgstr "Hač k hornjej blokowej kromje wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -922,7 +922,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt to Columns..."
-msgstr ""
+msgstr "Tek~st do špaltow..."
#: CalcCommands.xcu
msgctxt ""
@@ -931,7 +931,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Consolidate..."
-msgstr ""
+msgstr "~Konsolidować..."
#: CalcCommands.xcu
msgctxt ""
@@ -940,7 +940,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Lower Block Margin"
-msgstr ""
+msgstr "Hač k delnjej blokowej kromje wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -949,7 +949,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Pivotowa tabela"
#: CalcCommands.xcu
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Pi~vot Table..."
-msgstr ""
+msgstr "Pi~votowa tabela..."
#: CalcCommands.xcu
msgctxt ""
@@ -967,7 +967,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Pivot Table"
-msgstr ""
+msgstr "Pivotowu tabelu zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -976,7 +976,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Edit Layout..."
-msgstr ""
+msgstr "Wu~hotowanje wobdźěłać..."
#: CalcCommands.xcu
msgctxt ""
@@ -985,7 +985,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Create..."
-msgstr ""
+msgstr "Wu~tworić..."
#: CalcCommands.xcu
msgctxt ""
@@ -994,7 +994,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Left Block Margin"
-msgstr ""
+msgstr "Hač k lěwej blokowej kromje wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1003,7 +1003,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Function..."
-msgstr ""
+msgstr "~Funkcija..."
#: CalcCommands.xcu
msgctxt ""
@@ -1012,7 +1012,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Right Block Margin"
-msgstr ""
+msgstr "Hač k prawej blokowej kromje wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1021,7 +1021,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Goal Seek..."
-msgstr ""
+msgstr "~Cilowu hódnotu pytać..."
#: CalcCommands.xcu
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sol~ver..."
-msgstr ""
+msgstr "Sol~ver..."
#: CalcCommands.xcu
msgctxt ""
@@ -1039,7 +1039,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Sheet"
-msgstr ""
+msgstr "K přichodnej tabeli"
#: CalcCommands.xcu
msgctxt ""
@@ -1048,7 +1048,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Multiple Operations..."
-msgstr ""
+msgstr "~Wjacore operacije..."
#: CalcCommands.xcu
msgctxt ""
@@ -1057,7 +1057,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Sheet"
-msgstr ""
+msgstr "K předchadnej tabeli"
#: CalcCommands.xcu
msgctxt ""
@@ -1066,7 +1066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ch~art..."
-msgstr ""
+msgstr "~Diagram..."
#: CalcCommands.xcu
msgctxt ""
@@ -1075,7 +1075,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Unprotected Cell"
-msgstr ""
+msgstr "K přichodnej nješkitanej celi"
#: CalcCommands.xcu
msgctxt ""
@@ -1084,7 +1084,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Unprotected Cell"
-msgstr ""
+msgstr "K předchadnej nješkitanej celi"
#: CalcCommands.xcu
msgctxt ""
@@ -1093,7 +1093,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Column"
-msgstr ""
+msgstr "Špaltu wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Modify Chart Data Area"
-msgstr ""
+msgstr "Datowy wobwod diagrama změnić"
#: CalcCommands.xcu
msgctxt ""
@@ -1111,7 +1111,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Row"
-msgstr ""
+msgstr "Linku wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1120,7 +1120,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onditional Formatting"
-msgstr ""
+msgstr "Wu~měnjene formatowanje"
#: CalcCommands.xcu
msgctxt ""
@@ -1129,7 +1129,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Condition"
-msgstr ""
+msgstr "Wuměnjene formatowanje: Wuměnjenje"
#: CalcCommands.xcu
msgctxt ""
@@ -1138,7 +1138,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Condition..."
-msgstr ""
+msgstr "Wuměnjenje..."
#: CalcCommands.xcu
msgctxt ""
@@ -1147,7 +1147,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Color Scale"
-msgstr ""
+msgstr "Wuměnjene formatowanje: Barbna skala"
#: CalcCommands.xcu
msgctxt ""
@@ -1156,7 +1156,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Color Scale..."
-msgstr ""
+msgstr "Barbna skala..."
#: CalcCommands.xcu
msgctxt ""
@@ -1165,7 +1165,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Data Bar"
-msgstr ""
+msgstr "Wuměnjene formatowanje: Datowa lajsta"
#: CalcCommands.xcu
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Data Bar..."
-msgstr ""
+msgstr "Datowa lajsta..."
#: CalcCommands.xcu
msgctxt ""
@@ -1183,7 +1183,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Icon Set"
-msgstr ""
+msgstr "Wuměnjene formatowanje: Symbolowa sadźba"
#: CalcCommands.xcu
msgctxt ""
@@ -1192,7 +1192,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Icon Set..."
-msgstr ""
+msgstr "Symbolowa sadźba..."
#: CalcCommands.xcu
msgctxt ""
@@ -1201,7 +1201,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Date"
-msgstr ""
+msgstr "Wuměnjene formatowanje: Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -1210,7 +1210,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Date..."
-msgstr ""
+msgstr "Datum..."
#: CalcCommands.xcu
msgctxt ""
@@ -1219,7 +1219,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage..."
-msgstr ""
+msgstr "Rjadować..."
#: CalcCommands.xcu
msgctxt ""
@@ -1228,7 +1228,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Undo Selection"
-msgstr ""
+msgstr "Wuběr zběhnyć"
#: CalcCommands.xcu
msgctxt ""
@@ -1237,7 +1237,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Current Cell"
-msgstr ""
+msgstr "K aktualnej celi"
#: CalcCommands.xcu
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Data Area"
-msgstr ""
+msgstr "Datowy wobwod wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1255,7 +1255,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Edit Mode"
-msgstr ""
+msgstr "Wobdźěłowanski modus za cele"
#: CalcCommands.xcu
msgctxt ""
@@ -1264,7 +1264,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear Contents"
-msgstr ""
+msgstr "Wobsah zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1273,7 +1273,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoFill Data Series: automatic"
-msgstr ""
+msgstr "Datowe rjady wupjelnić: awtomatisce"
#: CalcCommands.xcu
msgctxt ""
@@ -1282,7 +1282,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cancel"
-msgstr ""
+msgstr "Přetorhnyć"
#: CalcCommands.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Array Formula"
-msgstr ""
+msgstr "Matriksowu formlu wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1300,7 +1300,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Next Sheet"
-msgstr ""
+msgstr "Hač k přichodnej tabeli wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1309,7 +1309,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Previous Sheet"
-msgstr ""
+msgstr "Hač k předchadnej tabeli wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wrap Text"
-msgstr ""
+msgstr "Tekst łamać"
#: CalcCommands.xcu
msgctxt ""
@@ -1327,7 +1327,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Protection"
-msgstr ""
+msgstr "Celowy škit"
#: CalcCommands.xcu
msgctxt ""
@@ -1336,7 +1336,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Area"
-msgstr ""
+msgstr "Ćišćerski wobwod"
#: CalcCommands.xcu
msgctxt ""
@@ -1345,7 +1345,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Define"
-msgstr ""
+msgstr "~Definować"
#: CalcCommands.xcu
msgctxt ""
@@ -1354,7 +1354,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr ""
+msgstr "Ćišćerski wobwod definować"
#: CalcCommands.xcu
msgctxt ""
@@ -1363,7 +1363,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1372,7 +1372,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Clear"
-msgstr ""
+msgstr "~Zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1381,7 +1381,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Print Ranges"
-msgstr ""
+msgstr "Ćišćerske wobwody zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr ""
+msgstr "Wobdźěłać"
#: CalcCommands.xcu
msgctxt ""
@@ -1399,7 +1399,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Edit..."
-msgstr ""
+msgstr "Wo~bdźěłać..."
#: CalcCommands.xcu
msgctxt ""
@@ -1408,7 +1408,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Edit Print Ranges"
-msgstr ""
+msgstr "Ćisćerske wobwody wobdźěłać"
#: CalcCommands.xcu
msgctxt ""
@@ -1417,7 +1417,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add"
-msgstr ""
+msgstr "Přidać"
#: CalcCommands.xcu
msgctxt ""
@@ -1426,7 +1426,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Add"
-msgstr ""
+msgstr "~Přidać"
#: CalcCommands.xcu
msgctxt ""
@@ -1435,7 +1435,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Add Print Range"
-msgstr ""
+msgstr "Ćišćerski wobwod přidać"
#: CalcCommands.xcu
msgctxt ""
@@ -1444,7 +1444,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Cell Reference Types"
-msgstr ""
+msgstr "Typy celowych poćahow změnić"
#: CalcCommands.xcu
msgctxt ""
@@ -1453,7 +1453,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste ~Special..."
-msgstr ""
+msgstr "Wob~sah zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Selection List"
-msgstr ""
+msgstr "Wuběranska lisćina"
#: CalcCommands.xcu
msgctxt ""
@@ -1471,7 +1471,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete C~ells..."
-msgstr ""
+msgstr "Ce~le zhašeć..."
#: CalcCommands.xcu
msgctxt ""
@@ -1480,7 +1480,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "De~lete..."
-msgstr ""
+msgstr "Z~hašeć..."
#: CalcCommands.xcu
msgctxt ""
@@ -1489,7 +1489,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr ""
+msgstr "Pytanje wospjetować"
#: CalcCommands.xcu
msgctxt ""
@@ -1498,7 +1498,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Sheet..."
-msgstr ""
+msgstr "Tabelu ~zhašeć..."
#: CalcCommands.xcu
msgctxt ""
@@ -1507,7 +1507,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill ~Down"
-msgstr ""
+msgstr "~Dele wupjelnić"
#: CalcCommands.xcu
msgctxt ""
@@ -1516,7 +1516,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Down"
-msgstr ""
+msgstr "~Deleka"
#: CalcCommands.xcu
msgctxt ""
@@ -1525,7 +1525,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill ~Right"
-msgstr ""
+msgstr "Nap~rawo wupjelnić"
#: CalcCommands.xcu
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Right"
-msgstr ""
+msgstr "Nap~rawo"
#: CalcCommands.xcu
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill ~Up"
-msgstr ""
+msgstr "~Horje wupjelnić"
#: CalcCommands.xcu
msgctxt ""
@@ -1552,7 +1552,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Up"
-msgstr ""
+msgstr "~Horjeka"
#: CalcCommands.xcu
msgctxt ""
@@ -1561,7 +1561,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill ~Left"
-msgstr ""
+msgstr "Na~lěwo wupjelnić"
#: CalcCommands.xcu
msgctxt ""
@@ -1570,7 +1570,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Left"
-msgstr ""
+msgstr "Na~lěwo"
#: CalcCommands.xcu
msgctxt ""
@@ -1579,7 +1579,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill Single ~Edit"
-msgstr ""
+msgstr "Jednotliwje wupjelnić a wo~bdźěłać"
#: CalcCommands.xcu
msgctxt ""
@@ -1588,7 +1588,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Single ~Edit"
-msgstr ""
+msgstr "Jednotliwje wo~bdźěłać"
#: CalcCommands.xcu
msgctxt ""
@@ -1597,7 +1597,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill ~Sheets..."
-msgstr ""
+msgstr "~Tabele wupjelnić..."
#: CalcCommands.xcu
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Sheets..."
-msgstr ""
+msgstr "~Tabele..."
#: CalcCommands.xcu
msgctxt ""
@@ -1615,7 +1615,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill S~eries..."
-msgstr ""
+msgstr "~Rjady wupjelnić..."
#: CalcCommands.xcu
msgctxt ""
@@ -1624,7 +1624,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "S~eries..."
-msgstr ""
+msgstr "Rj~ady..."
#: CalcCommands.xcu
msgctxt ""
@@ -1633,7 +1633,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill R~andom Number..."
-msgstr ""
+msgstr "Z připadnymi ~ličbami wupjelnić..."
#: CalcCommands.xcu
msgctxt ""
@@ -1642,7 +1642,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "R~andom Number..."
-msgstr ""
+msgstr "Připadne ~ličby..."
#: CalcCommands.xcu
msgctxt ""
@@ -1651,7 +1651,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Statistics"
-msgstr ""
+msgstr "Statistika"
#: CalcCommands.xcu
msgctxt ""
@@ -1660,7 +1660,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sampling..."
-msgstr ""
+msgstr "~Dźělne proby..."
#: CalcCommands.xcu
msgctxt ""
@@ -1669,7 +1669,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Descriptive Statistics..."
-msgstr ""
+msgstr "W~opisowaca statistika..."
#: CalcCommands.xcu
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Analysis of Variance (ANOVA)..."
-msgstr ""
+msgstr "~Wariancowa analyza (ANOVA)..."
#: CalcCommands.xcu
msgctxt ""
@@ -1687,7 +1687,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Correlation..."
-msgstr ""
+msgstr "~Korelacija..."
#: CalcCommands.xcu
msgctxt ""
@@ -1696,7 +1696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Covariance..."
-msgstr ""
+msgstr "~Kowarianca..."
#: CalcCommands.xcu
msgctxt ""
@@ -1705,7 +1705,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Exponential Smoothing..."
-msgstr ""
+msgstr "~Eksponencielne wurunanje..."
#: CalcCommands.xcu
msgctxt ""
@@ -1714,7 +1714,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Moving Average..."
-msgstr ""
+msgstr "~Wisaty přerězk..."
#: CalcCommands.xcu
msgctxt ""
@@ -1723,7 +1723,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Regression..."
-msgstr ""
+msgstr "~Regresija..."
#: CalcCommands.xcu
msgctxt ""
@@ -1732,7 +1732,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~t-test..."
-msgstr ""
+msgstr "~t-test..."
#: CalcCommands.xcu
msgctxt ""
@@ -1741,7 +1741,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~F-test..."
-msgstr ""
+msgstr "~F-test..."
#: CalcCommands.xcu
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~z-test..."
-msgstr ""
+msgstr "~z-test..."
#: CalcCommands.xcu
msgctxt ""
@@ -1759,7 +1759,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Chi-square Test..."
-msgstr ""
+msgstr "Kwadratny test ~Chi..."
#: CalcCommands.xcu
msgctxt ""
@@ -1768,7 +1768,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Headers and Footers..."
-msgstr ""
+msgstr "~Hłowowe a nohowe linki..."
#: CalcCommands.xcu
msgctxt ""
@@ -1777,7 +1777,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Validity..."
-msgstr ""
+msgstr "~Płaćiwosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -1786,7 +1786,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Linki zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1795,7 +1795,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert"
-msgstr ""
+msgstr "Zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -1804,7 +1804,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Columns"
-msgstr ""
+msgstr "Špalty zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1813,7 +1813,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Cells"
-msgstr ""
+msgstr "Cele zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record Changes"
-msgstr ""
+msgstr "~Změny registrować"
#: CalcCommands.xcu
msgctxt ""
@@ -1831,7 +1831,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show Changes..."
-msgstr ""
+msgstr "Z~měny pokazać..."
#: CalcCommands.xcu
msgctxt ""
@@ -1840,7 +1840,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Define ~Labels..."
-msgstr ""
+msgstr "~Popisy definować..."
#: CalcCommands.xcu
msgctxt ""
@@ -1849,7 +1849,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Labels..."
-msgstr ""
+msgstr "~Popisy..."
#: CalcCommands.xcu
msgctxt ""
@@ -1858,7 +1858,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comment"
-msgstr ""
+msgstr "Komentar pokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -1867,7 +1867,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comment"
-msgstr ""
+msgstr "Komentar pokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -1876,7 +1876,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide Comment"
-msgstr ""
+msgstr "Komentar schować"
#: CalcCommands.xcu
msgctxt ""
@@ -1885,7 +1885,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show All Comments"
-msgstr ""
+msgstr "Wšě komentary pokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide All Comments"
-msgstr ""
+msgstr "Wšě komentary schować"
#: CalcCommands.xcu
msgctxt ""
@@ -1903,7 +1903,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete All Comments"
-msgstr ""
+msgstr "Wšě komentary zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1912,7 +1912,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comm~ent"
-msgstr ""
+msgstr "~Komentar"
#: CalcCommands.xcu
msgctxt ""
@@ -1921,7 +1921,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Co~mment"
-msgstr ""
+msgstr "Ko~mentar zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -1930,7 +1930,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Comment"
-msgstr ""
+msgstr "Komentar zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -1939,7 +1939,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Formula Bar"
-msgstr ""
+msgstr "~Formlowa lajsta"
#: CalcCommands.xcu
msgctxt ""
@@ -1948,7 +1948,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~olumn & Row Headers"
-msgstr ""
+msgstr "~Hłowy špaltow a linkow"
#: CalcCommands.xcu
msgctxt ""
@@ -1957,7 +1957,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scale Screen Display"
-msgstr ""
+msgstr "Zwobraznjenje wobrazowki skalować"
#: CalcCommands.xcu
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Value ~Highlighting"
-msgstr ""
+msgstr "Hódnoty w~uzběhnyć"
#: CalcCommands.xcu
msgctxt ""
@@ -1975,7 +1975,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Normal View"
-msgstr ""
+msgstr "~Normalny napohlad"
#: CalcCommands.xcu
msgctxt ""
@@ -1984,7 +1984,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Normal"
-msgstr ""
+msgstr "~Normalny"
#: CalcCommands.xcu
msgctxt ""
@@ -1993,7 +1993,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Break"
-msgstr ""
+msgstr "Ła~manje strony"
#: CalcCommands.xcu
msgctxt ""
@@ -2002,7 +2002,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~unction List"
-msgstr ""
+msgstr "Lisćina f~unkcijow"
#: CalcCommands.xcu
msgctxt ""
@@ -2011,7 +2011,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "R~efresh Range"
-msgstr ""
+msgstr "Wobwod ~aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -2020,7 +2020,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet Area Input Field"
-msgstr ""
+msgstr "Zapodawanske polo tabeloweho wobłuka"
#: CalcCommands.xcu
msgctxt ""
@@ -2029,7 +2029,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Collaborate..."
-msgstr ""
+msgstr "Sobu dźěłać..."
#: CalcCommands.xcu
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline: Off"
-msgstr ""
+msgstr "Podšmórnjenje: Wupinjene"
#: CalcCommands.xcu
msgctxt ""
@@ -2047,7 +2047,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline: Single"
-msgstr ""
+msgstr "Podšmórnjenje: Jednore"
#: CalcCommands.xcu
msgctxt ""
@@ -2056,7 +2056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Changes..."
-msgstr ""
+msgstr "Změny ~rjadować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2065,7 +2065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline: Double"
-msgstr ""
+msgstr "Dwójce podšmórnyć"
#: CalcCommands.xcu
msgctxt ""
@@ -2074,7 +2074,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Comment on Change..."
-msgstr ""
+msgstr "~Komentar k změnje..."
#: CalcCommands.xcu
msgctxt ""
@@ -2083,7 +2083,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline: Dotted"
-msgstr ""
+msgstr "Podšmórnjenje: dypkate"
#: CalcCommands.xcu
msgctxt ""
@@ -2092,7 +2092,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cle~ar Cells..."
-msgstr ""
+msgstr "Cele wup~rózdnić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2101,7 +2101,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Cl~ear Contents..."
-msgstr ""
+msgstr "Wobsah z~hašeć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Page Breaks"
-msgstr ""
+msgstr "Łamanja strony zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -2119,7 +2119,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Row Break"
-msgstr ""
+msgstr "Łamanje ~linki zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2128,7 +2128,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Row Break"
-msgstr ""
+msgstr "Łamanje ~linki"
#: CalcCommands.xcu
msgctxt ""
@@ -2137,7 +2137,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Column Break"
-msgstr ""
+msgstr "Ła~manje špalty zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2146,7 +2146,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Column Break"
-msgstr ""
+msgstr "Łamanje špal~ty"
#: CalcCommands.xcu
msgctxt ""
@@ -2155,7 +2155,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Adjust Scale"
-msgstr ""
+msgstr "Skalowanje přiměrić"
#: CalcCommands.xcu
msgctxt ""
@@ -2164,7 +2164,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove ~Row Break"
-msgstr ""
+msgstr "Łamanje ~linki wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -2173,7 +2173,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Row Break"
-msgstr ""
+msgstr "Łamanje ~linki"
#: CalcCommands.xcu
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset Scale"
-msgstr ""
+msgstr "Skalowanje wróćo stajić"
#: CalcCommands.xcu
msgctxt ""
@@ -2191,7 +2191,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove ~Column Break"
-msgstr ""
+msgstr "Łamanje špa~lty wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -2200,7 +2200,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Column Break"
-msgstr ""
+msgstr "Łamanje špa~lty"
#: CalcCommands.xcu
msgctxt ""
@@ -2209,7 +2209,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Special"
-msgstr ""
+msgstr "Wobsah zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Cells..."
-msgstr ""
+msgstr "~Cele zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2227,7 +2227,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Insert..."
-msgstr ""
+msgstr "~Zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2236,7 +2236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows"
-msgstr ""
+msgstr "~Linki zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2245,7 +2245,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Co~lumns"
-msgstr ""
+msgstr "Špal~ty zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Above"
-msgstr ""
+msgstr "Linki n~ad tym zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2263,7 +2263,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr ""
+msgstr "~Linki nad tym"
#: CalcCommands.xcu
msgctxt ""
@@ -2272,7 +2272,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Above"
-msgstr ""
+msgstr "Linki n~ad tym zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2281,7 +2281,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr ""
+msgstr "Linki ~nad tym"
#: CalcCommands.xcu
msgctxt ""
@@ -2290,7 +2290,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Rows ~Above"
-msgstr ""
+msgstr "Linki n~ad tym zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2299,7 +2299,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Co~lumns Left"
-msgstr ""
+msgstr "Špal~ty nalěwo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2308,7 +2308,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Left"
-msgstr ""
+msgstr "Špalty na~lěwo"
#: CalcCommands.xcu
msgctxt ""
@@ -2317,7 +2317,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Co~lumns Left"
-msgstr ""
+msgstr "Špal~ty nalěwo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Left"
-msgstr ""
+msgstr "Špalty na~lěwo"
#: CalcCommands.xcu
msgctxt ""
@@ -2335,7 +2335,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Columns ~Left"
-msgstr ""
+msgstr "Špal~ty nalěwo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2344,7 +2344,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Below"
-msgstr ""
+msgstr "Linki p~od tym zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2353,7 +2353,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Below"
-msgstr ""
+msgstr "Linki po~d tym"
#: CalcCommands.xcu
msgctxt ""
@@ -2362,7 +2362,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Rows ~Below"
-msgstr ""
+msgstr "Linki pod ~tym zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2371,7 +2371,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Co~lumns Right"
-msgstr ""
+msgstr "Špalty nap~rawo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2380,7 +2380,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Right"
-msgstr ""
+msgstr "Špalty nap~rawo"
#: CalcCommands.xcu
msgctxt ""
@@ -2389,7 +2389,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Columns ~Right"
-msgstr ""
+msgstr "Špalty nap~rawo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Sheet..."
-msgstr ""
+msgstr "~Tabelu zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2407,7 +2407,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Shee~t from File..."
-msgstr ""
+msgstr "Ta~belu z dataje zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2416,7 +2416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Define Name..."
-msgstr ""
+msgstr "~Mjeno definować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2425,7 +2425,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Define..."
-msgstr ""
+msgstr "~Definować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2434,7 +2434,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Names..."
-msgstr ""
+msgstr "Mjena ~rjadować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2443,7 +2443,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Manage..."
-msgstr ""
+msgstr "~Rjadować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2452,7 +2452,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert Named Range or Expression..."
-msgstr ""
+msgstr "~Pomjenowany wobwod abo wuraz zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2461,7 +2461,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Named Range or Expression..."
-msgstr ""
+msgstr "Po~mjenowany wobwod abo wuraz..."
#: CalcCommands.xcu
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Create Names..."
-msgstr ""
+msgstr "Mjena w~utworić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2479,7 +2479,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Create..."
-msgstr ""
+msgstr "Wu~tworić..."
#: CalcCommands.xcu
msgctxt ""
@@ -2488,7 +2488,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Assign Names"
-msgstr ""
+msgstr "Mjena připokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -2497,7 +2497,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Cells Down"
-msgstr ""
+msgstr "Cele dele zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2506,7 +2506,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Cells Right"
-msgstr ""
+msgstr "Cele naprawo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -2515,7 +2515,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format ~Cells..."
-msgstr ""
+msgstr "~Cele formatować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2524,7 +2524,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Ce~lls..."
-msgstr ""
+msgstr "C~ele..."
#: CalcCommands.xcu
msgctxt ""
@@ -2533,7 +2533,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Format Cells..."
-msgstr ""
+msgstr "~Cele formatować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2542,7 +2542,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row ~Height..."
-msgstr ""
+msgstr "Linkowa wy~sokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2551,7 +2551,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Height..."
-msgstr ""
+msgstr "~Wysokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2560,7 +2560,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Row ~Height..."
-msgstr ""
+msgstr "Linkowa wy~sokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2569,7 +2569,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Optimal Row Height..."
-msgstr ""
+msgstr "~Optimalna linkowa wysokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2578,7 +2578,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Optimal Height..."
-msgstr ""
+msgstr "~Optimalna wysokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2587,7 +2587,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "H~ide Rows"
-msgstr ""
+msgstr "Linki s~chować"
#: CalcCommands.xcu
msgctxt ""
@@ -2596,7 +2596,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "H~ide"
-msgstr ""
+msgstr "S~chować"
#: CalcCommands.xcu
msgctxt ""
@@ -2605,7 +2605,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "H~ide Rows"
-msgstr ""
+msgstr "Linki s~chować"
#: CalcCommands.xcu
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show Rows"
-msgstr ""
+msgstr "Linki poka~zać"
#: CalcCommands.xcu
msgctxt ""
@@ -2623,7 +2623,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Show"
-msgstr ""
+msgstr "~Pokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -2632,7 +2632,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Sho~w Rows"
-msgstr ""
+msgstr "Linki pok~azać"
#: CalcCommands.xcu
msgctxt ""
@@ -2641,7 +2641,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Column ~Width..."
-msgstr ""
+msgstr "Špaltowa šě~rokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2650,7 +2650,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Width..."
-msgstr ""
+msgstr "Šě~rokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2659,7 +2659,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Column ~Width..."
-msgstr ""
+msgstr "Špaltowa šě~rokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2668,7 +2668,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Optimal Column Width..."
-msgstr ""
+msgstr "~Optimalna špaltowa šěrokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2677,7 +2677,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Optimal Width..."
-msgstr ""
+msgstr "~Optimalna šěrokosć..."
#: CalcCommands.xcu
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide Columns"
-msgstr ""
+msgstr "Špalty ~schować"
#: CalcCommands.xcu
msgctxt ""
@@ -2695,7 +2695,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Hide"
-msgstr ""
+msgstr "~Schować"
#: CalcCommands.xcu
msgctxt ""
@@ -2704,7 +2704,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "H~ide Columns"
-msgstr ""
+msgstr "Špalty sc~hować"
#: CalcCommands.xcu
msgctxt ""
@@ -2713,7 +2713,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show Columns"
-msgstr ""
+msgstr "Špalty po~kazać"
#: CalcCommands.xcu
msgctxt ""
@@ -2722,7 +2722,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Show"
-msgstr ""
+msgstr "~Pokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -2731,7 +2731,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "S~how Columns"
-msgstr ""
+msgstr "Špalty p~okazać"
#: CalcCommands.xcu
msgctxt ""
@@ -2740,7 +2740,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide Sheets"
-msgstr ""
+msgstr "Tabele ~schować"
#: CalcCommands.xcu
msgctxt ""
@@ -2749,7 +2749,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show Sheet..."
-msgstr ""
+msgstr "Tabelu poka~zać..."
#: CalcCommands.xcu
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Cells"
-msgstr ""
+msgstr "Cele zjednoćić"
#: CalcCommands.xcu
msgctxt ""
@@ -2767,7 +2767,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Cells"
-msgstr ""
+msgstr "Cele dźělić"
#: CalcCommands.xcu
msgctxt ""
@@ -2776,7 +2776,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "M~erge and Center Cells"
-msgstr ""
+msgstr "Cele z~wjazać a centrować"
#: CalcCommands.xcu
msgctxt ""
@@ -2785,7 +2785,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format ~Page..."
-msgstr ""
+msgstr "Format ~strony..."
#: CalcCommands.xcu
msgctxt ""
@@ -2794,7 +2794,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Page..."
-msgstr ""
+msgstr "~Strona..."
#: CalcCommands.xcu
msgctxt ""
@@ -2803,7 +2803,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Format Pa~ge..."
-msgstr ""
+msgstr "Format s~trony..."
#: CalcCommands.xcu
msgctxt ""
@@ -2812,7 +2812,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Text Attributes"
-msgstr ""
+msgstr "Standardne tekstowe atributy"
#: CalcCommands.xcu
msgctxt ""
@@ -2821,7 +2821,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#: CalcCommands.xcu
msgctxt ""
@@ -2830,7 +2830,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text..."
-msgstr ""
+msgstr "~Tekst..."
#: CalcCommands.xcu
msgctxt ""
@@ -2839,7 +2839,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal Column Width, direct"
-msgstr ""
+msgstr "Optimalna špaltowa šěrokosć, direktna"
#: CalcCommands.xcu
msgctxt ""
@@ -2848,7 +2848,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto~Calculate"
-msgstr ""
+msgstr "~Awtomatisce wuličić"
#: CalcCommands.xcu
msgctxt ""
@@ -2857,7 +2857,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Recalculate"
-msgstr ""
+msgstr "~Znowa wuličić"
#: CalcCommands.xcu
msgctxt ""
@@ -2866,7 +2866,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Sheet..."
-msgstr ""
+msgstr "Tabelu š~kitać..."
#: CalcCommands.xcu
msgctxt ""
@@ -2875,7 +2875,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet..."
-msgstr ""
+msgstr "~Tabelowy dokument škitać..."
#: CalcCommands.xcu
msgctxt ""
@@ -2884,7 +2884,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sc~enarios..."
-msgstr ""
+msgstr "S~cenarije..."
#: CalcCommands.xcu
msgctxt ""
@@ -2893,7 +2893,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Refresh Pivot Table"
-msgstr ""
+msgstr "Pi~votowu tabelu aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Refresh"
-msgstr ""
+msgstr "~Aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -2911,7 +2911,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Pivot Table"
-msgstr ""
+msgstr "Pivotowu tabelu z~hašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -2920,7 +2920,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Delete"
-msgstr ""
+msgstr "~Zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -2929,7 +2929,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Recalculate Hard"
-msgstr ""
+msgstr "Hnydom znowa wuličić"
#: CalcCommands.xcu
msgctxt ""
@@ -2938,7 +2938,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~AutoInput"
-msgstr ""
+msgstr "~Awtomatiske zapodaće"
#: CalcCommands.xcu
msgctxt ""
@@ -2947,7 +2947,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Define Data Range..."
-msgstr ""
+msgstr "~Datowy wobłuk definować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2956,7 +2956,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Define Range..."
-msgstr ""
+msgstr "Wobłuk ~definować..."
#: CalcCommands.xcu
msgctxt ""
@@ -2965,7 +2965,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Data ~Range..."
-msgstr ""
+msgstr "Datowy wo~błuk wubrać..."
#: CalcCommands.xcu
msgctxt ""
@@ -2974,7 +2974,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Select ~Range..."
-msgstr ""
+msgstr "Wo~błuk wubrać..."
#: CalcCommands.xcu
msgctxt ""
@@ -2983,7 +2983,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Strea~ms..."
-msgstr ""
+msgstr "~Prudy..."
#: CalcCommands.xcu
msgctxt ""
@@ -2992,7 +2992,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Resume streaming"
-msgstr ""
+msgstr "Z datowym přenjesenjom pokročować"
#: CalcCommands.xcu
msgctxt ""
@@ -3001,7 +3001,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop streaming"
-msgstr ""
+msgstr "Přenjesenje datow zastajić"
#: CalcCommands.xcu
msgctxt ""
@@ -3010,7 +3010,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~XML Source..."
-msgstr ""
+msgstr "~XML-žórło..."
#: CalcCommands.xcu
msgctxt ""
@@ -3019,7 +3019,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sort..."
-msgstr ""
+msgstr "~Sortěrować..."
#: CalcCommands.xcu
msgctxt ""
@@ -3028,7 +3028,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Standard Filter..."
-msgstr ""
+msgstr "~Standardny filter..."
#: CalcCommands.xcu
msgctxt ""
@@ -3037,7 +3037,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Advanced Filter..."
-msgstr ""
+msgstr "~Rozšěrjeny filter..."
#: CalcCommands.xcu
msgctxt ""
@@ -3046,7 +3046,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto~Filter"
-msgstr ""
+msgstr "Awtomatiski ~filter"
#: CalcCommands.xcu
msgctxt ""
@@ -3055,7 +3055,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Reset Filter"
-msgstr ""
+msgstr "Filter ~wróćo stajić"
#: CalcCommands.xcu
msgctxt ""
@@ -3064,7 +3064,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~orm..."
-msgstr ""
+msgstr "~Formular..."
#: CalcCommands.xcu
msgctxt ""
@@ -3073,7 +3073,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sub~totals..."
-msgstr ""
+msgstr "~Mjezywuslědki..."
#: CalcCommands.xcu
msgctxt ""
@@ -3082,7 +3082,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~AutoOutline"
-msgstr ""
+msgstr "~Awtomatiski rozrjad"
#: CalcCommands.xcu
msgctxt ""
@@ -3091,7 +3091,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Data Import"
-msgstr ""
+msgstr "Datowy import aktualizować"
#: CalcCommands.xcu
msgctxt ""
@@ -3100,7 +3100,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide AutoFilter"
-msgstr ""
+msgstr "Awtomatiski filter s~chować"
#: CalcCommands.xcu
msgctxt ""
@@ -3109,7 +3109,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Descending"
-msgstr ""
+msgstr "Spadowacy sortěrować"
#: CalcCommands.xcu
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Ascending"
-msgstr ""
+msgstr "Postupowacy sortěrować"
#: CalcCommands.xcu
msgctxt ""
@@ -3127,7 +3127,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rename Sheet..."
-msgstr ""
+msgstr "Tabelu pře~mjenować..."
#: CalcCommands.xcu
msgctxt ""
@@ -3136,7 +3136,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Tabelu přemjenować"
#: CalcCommands.xcu
msgctxt ""
@@ -3145,7 +3145,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr ""
+msgstr "~Rajtarkowu barbu tabele..."
#: CalcCommands.xcu
msgctxt ""
@@ -3154,7 +3154,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Tab Color..."
-msgstr ""
+msgstr "~Rajtarkowa barba..."
#: CalcCommands.xcu
msgctxt ""
@@ -3163,7 +3163,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tab Color"
-msgstr ""
+msgstr "Rajtarkowa barba"
#: CalcCommands.xcu
msgctxt ""
@@ -3172,7 +3172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Move or Copy Sheet..."
-msgstr ""
+msgstr "Tabelu pře~sunyć abo kopěrować..."
#: CalcCommands.xcu
msgctxt ""
@@ -3181,7 +3181,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select All Sheets"
-msgstr ""
+msgstr "Wšě tabele wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -3190,7 +3190,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Deselect All Sheets"
-msgstr ""
+msgstr "Wuběr wšěch tabelow zběhnyć"
#: CalcCommands.xcu
msgctxt ""
@@ -3199,7 +3199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Sheet at End..."
-msgstr ""
+msgstr "Tabelu na kóncu zasadźić..."
#: CalcCommands.xcu
msgctxt ""
@@ -3208,7 +3208,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Left"
-msgstr ""
+msgstr "Nalěwo wusměrić"
#: CalcCommands.xcu
msgctxt ""
@@ -3217,7 +3217,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Right"
-msgstr ""
+msgstr "Naprawo wusměrić"
#: CalcCommands.xcu
msgctxt ""
@@ -3226,7 +3226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center Horizontally"
-msgstr ""
+msgstr "Wodorunje centrować"
#: CalcCommands.xcu
msgctxt ""
@@ -3235,7 +3235,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Justified"
-msgstr ""
+msgstr "Blokowa sadźba"
#: CalcCommands.xcu
msgctxt ""
@@ -3244,7 +3244,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Top"
-msgstr ""
+msgstr "Horjeka wusměrić"
#: CalcCommands.xcu
msgctxt ""
@@ -3253,7 +3253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Bottom"
-msgstr ""
+msgstr "Deleka wusměrić"
#: CalcCommands.xcu
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center Vertically"
-msgstr ""
+msgstr "Padorunje centrować"
#: CalcCommands.xcu
msgctxt ""
@@ -3271,7 +3271,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Scenario"
-msgstr ""
+msgstr "Scenarij wubrać"
#: CalcCommands.xcu
msgctxt ""
@@ -3280,7 +3280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redraw Chart"
-msgstr ""
+msgstr "Diagram znowa rysować"
#: CalcCommands.xcu
msgctxt ""
@@ -3289,7 +3289,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Anchor"
-msgstr ""
+msgstr "Zakótwjenje změnić"
#: CalcCommands.xcu
msgctxt ""
@@ -3298,7 +3298,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number Format"
-msgstr ""
+msgstr "Ličbny format"
#: CalcCommands.xcu
msgctxt ""
@@ -3307,7 +3307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Měna"
#: CalcCommands.xcu
msgctxt ""
@@ -3316,7 +3316,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Currency"
-msgstr ""
+msgstr "Jako měnu formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3325,7 +3325,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Měna"
#: CalcCommands.xcu
msgctxt ""
@@ -3334,7 +3334,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Currency"
-msgstr ""
+msgstr "Jako měnu formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3343,7 +3343,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Percent"
-msgstr ""
+msgstr "Procent"
#: CalcCommands.xcu
msgctxt ""
@@ -3352,7 +3352,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Percent"
-msgstr ""
+msgstr "Jako procent formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3361,7 +3361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "General"
-msgstr ""
+msgstr "Standard"
#: CalcCommands.xcu
msgctxt ""
@@ -3370,7 +3370,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as General"
-msgstr ""
+msgstr "Jako standard formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3379,7 +3379,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3388,7 +3388,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Date"
-msgstr ""
+msgstr "Jako datum formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3397,7 +3397,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number"
-msgstr ""
+msgstr "Ličba"
#: CalcCommands.xcu
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Number"
-msgstr ""
+msgstr "Jako ličbu formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3415,7 +3415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scientific"
-msgstr ""
+msgstr "Wědomostny"
#: CalcCommands.xcu
msgctxt ""
@@ -3424,7 +3424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Scientific"
-msgstr ""
+msgstr "Jako wědomostny formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3433,7 +3433,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Time"
-msgstr ""
+msgstr "Čas"
#: CalcCommands.xcu
msgctxt ""
@@ -3442,7 +3442,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Time"
-msgstr ""
+msgstr "Jako čas formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3451,7 +3451,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add Decimal Place"
-msgstr ""
+msgstr "Decimalne městno přidać"
#: CalcCommands.xcu
msgctxt ""
@@ -3460,7 +3460,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Decimal Place"
-msgstr ""
+msgstr "Decimalne městno wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -3469,7 +3469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Lin~ks..."
-msgstr ""
+msgstr "~Zwjazanja wobdźěłać..."
#: CalcCommands.xcu
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Lin~ks..."
-msgstr ""
+msgstr "~Zwjazanja..."
#: CalcCommands.xcu
msgctxt ""
@@ -3487,7 +3487,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet R~ight-To-Left"
-msgstr ""
+msgstr "Tabela wotp~rawa dolěwa"
#: CalcCommands.xcu
msgctxt ""
@@ -3496,7 +3496,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "R~ight-To-Left"
-msgstr ""
+msgstr "Wotp~rawa dolěwa"
#: CalcCommands.xcu
msgctxt ""
@@ -3505,7 +3505,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Sheet R~ight-To-Left"
-msgstr ""
+msgstr "Tabela wotp~rawa dolěwa"
#: CalcCommands.xcu
msgctxt ""
@@ -3514,7 +3514,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Anchor: To P~age"
-msgstr ""
+msgstr "Zakótwjenje: K ~stronje"
#: CalcCommands.xcu
msgctxt ""
@@ -3523,7 +3523,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To P~age"
-msgstr ""
+msgstr "K ~stronje"
#: CalcCommands.xcu
msgctxt ""
@@ -3532,7 +3532,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Anchor: To ~Cell"
-msgstr ""
+msgstr "Zakótwjenje: K ~celi"
#: CalcCommands.xcu
msgctxt ""
@@ -3541,7 +3541,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To ~Cell"
-msgstr ""
+msgstr "K ~celi"
#: CalcCommands.xcu
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~Microsoft Excel..."
-msgstr ""
+msgstr "Tabela ~Microsoft Excel jako e-mejl..."
#: CalcCommands.xcu
msgctxt ""
@@ -3559,7 +3559,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~OpenDocument Spreadsheet..."
-msgstr ""
+msgstr "Tabela ~OpenDocument jako e-mejl..."
#: CalcCommands.xcu
msgctxt ""
@@ -3568,7 +3568,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~hare Spreadsheet..."
-msgstr ""
+msgstr "Tabelowy dokument ~rozdźělić..."
#: CalcCommands.xcu
msgctxt ""
@@ -3577,7 +3577,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Grid Lines for Current Sheet"
-msgstr ""
+msgstr "Lěsyčne linije za aktualnu tabelu přepinać"
#: CalcCommands.xcu
msgctxt ""
@@ -3586,7 +3586,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Grid Lines for Sheet"
-msgstr ""
+msgstr "Lěsyčne linije za tabelu"
#: CalcCommands.xcu
msgctxt ""
@@ -3595,7 +3595,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet Name"
-msgstr ""
+msgstr "Tabelowe mjeno"
#: CalcCommands.xcu
msgctxt ""
@@ -3604,7 +3604,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Document Title"
-msgstr ""
+msgstr "Dokumentowy titul"
#: CalcCommands.xcu
msgctxt ""
@@ -3613,7 +3613,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Open..."
-msgstr ""
+msgstr "W~očinić..."
#: CalcCommands.xcu
msgctxt ""
@@ -3631,7 +3631,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Formula to Value"
-msgstr ""
+msgstr "Formla do hódnoty"
#: CalcCommands.xcu
msgctxt ""
@@ -3640,7 +3640,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Field"
-msgstr ""
+msgstr "Polo zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3649,7 +3649,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Detective"
-msgstr ""
+msgstr "~Detektiw"
#: CalcCommands.xcu
msgctxt ""
@@ -3658,7 +3658,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Page ~Break"
-msgstr ""
+msgstr "Ła~manje strony zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3667,7 +3667,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Data"
-msgstr ""
+msgstr "~Daty"
#: CalcCommands.xcu
msgctxt ""
@@ -3676,7 +3676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Page ~Break"
-msgstr ""
+msgstr "Ła~manje strony zhašeć"
#: CalcCommands.xcu
msgctxt ""
@@ -3685,7 +3685,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ill Cells"
-msgstr ""
+msgstr "Cele w~upjelnić"
#: CalcCommands.xcu
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ca~lculate"
-msgstr ""
+msgstr "Wu~ličić"
#: CalcCommands.xcu
msgctxt ""
@@ -3703,7 +3703,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Named Ranges and Expressions"
-msgstr ""
+msgstr "~Pomjenowane wobłuki a wurazy"
#: CalcCommands.xcu
msgctxt ""
@@ -3712,7 +3712,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr ""
+msgstr "Komentar wobdźěłać"
#: CalcCommands.xcu
msgctxt ""
@@ -3721,7 +3721,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Pivot Table"
-msgstr ""
+msgstr "~Pivotowa tabela"
#: CalcCommands.xcu
msgctxt ""
@@ -3730,7 +3730,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sheet"
-msgstr ""
+msgstr "~Tabela"
#: CalcCommands.xcu
msgctxt ""
@@ -3739,7 +3739,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "More ~Filters"
-msgstr ""
+msgstr "Dalše ~filtry"
#: CalcCommands.xcu
msgctxt ""
@@ -3748,7 +3748,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sen~d"
-msgstr ""
+msgstr "Pó~słać"
#: CalcCommands.xcu
msgctxt ""
@@ -3757,7 +3757,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect Document"
-msgstr ""
+msgstr "Dokument šk~itać"
#: CalcCommands.xcu
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Cell Borders"
-msgstr ""
+msgstr "Celowe ramiki formatować"
#: CalcCommands.xcu
msgctxt ""
@@ -3775,7 +3775,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Group and Outline"
-msgstr ""
+msgstr "~Zeskupjenje a rozrjad"
#: CalcCommands.xcu
msgctxt ""
@@ -3784,7 +3784,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ro~ws"
-msgstr ""
+msgstr "Li~nki"
#: CalcCommands.xcu
msgctxt ""
@@ -3793,7 +3793,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mns"
-msgstr ""
+msgstr "Špa~lty"
#: CalcCommands.xcu
msgctxt ""
@@ -3802,7 +3802,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sheet"
-msgstr ""
+msgstr "~Tabela"
#: CalcCommands.xcu
msgctxt ""
@@ -3811,7 +3811,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comments"
-msgstr ""
+msgstr "~Celowe komentary"
#: CalcCommands.xcu
msgctxt ""
@@ -3820,7 +3820,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "M~erge Cells"
-msgstr ""
+msgstr "Cele zwj~azać"
#: CalcCommands.xcu
msgctxt ""
@@ -3829,7 +3829,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Prin~t Ranges"
-msgstr ""
+msgstr "Ć~išćerske wobłuki"
#: CalcCommands.xcu
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Formula"
-msgstr ""
+msgstr "Formlu pokazać"
#: CalcCommands.xcu
msgctxt ""
@@ -3847,7 +3847,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Assign Macro..."
-msgstr ""
+msgstr "Makro připokazać..."
#: CalcCommands.xcu
msgctxt ""
@@ -3856,7 +3856,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mark Precedents"
-msgstr ""
+msgstr "Předchadźace elementy markěrować"
#: CalcCommands.xcu
msgctxt ""
@@ -3865,7 +3865,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mark Dependents"
-msgstr ""
+msgstr "Naslědne elementy markěrować"
#: CalcCommands.xcu
msgctxt ""
@@ -3874,7 +3874,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Current Date"
-msgstr ""
+msgstr "Aktualny datum zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3883,7 +3883,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Date"
-msgstr ""
+msgstr "~Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3892,7 +3892,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Current Time"
-msgstr ""
+msgstr "Aktualny čas zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3901,7 +3901,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Time"
-msgstr ""
+msgstr "Č~as"
#: CalcCommands.xcu
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export as Image"
-msgstr ""
+msgstr "Jako wobraz eksportować"
#: CalcCommands.xcu
msgctxt ""
@@ -3919,7 +3919,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Hyperlink"
-msgstr ""
+msgstr "Hyperwotkaz wobdźěłać"
#: CalcCommands.xcu
msgctxt ""
@@ -3928,7 +3928,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Hyperlink"
-msgstr ""
+msgstr "Hyperwotkaz wotstronić"
#: CalcCommands.xcu
msgctxt ""
@@ -3937,7 +3937,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Only"
-msgstr ""
+msgstr "Jenož zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3946,7 +3946,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Only Formula"
-msgstr ""
+msgstr "Jenož formlu zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3955,7 +3955,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Formula"
-msgstr ""
+msgstr "~Formla"
#: CalcCommands.xcu
msgctxt ""
@@ -3964,7 +3964,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Only Text"
-msgstr ""
+msgstr "Jenož tekst zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3973,7 +3973,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Text"
-msgstr ""
+msgstr "~Tekst"
#: CalcCommands.xcu
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Only Numbers"
-msgstr ""
+msgstr "Jenož ličby zasadźić"
#: CalcCommands.xcu
msgctxt ""
@@ -3991,7 +3991,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Number"
-msgstr ""
+msgstr "~Ličba"
#: CalcCommands.xcu
msgctxt ""
@@ -4000,7 +4000,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Column"
-msgstr ""
+msgstr "Špalta"
#: CalcCommands.xcu
msgctxt ""
@@ -4009,7 +4009,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row"
-msgstr ""
+msgstr "Linka"
#: CalcCommands.xcu
msgctxt ""
@@ -4018,6 +4018,123 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert..."
+msgstr "~Zasadźić..."
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
msgstr ""
#: CalcWindowState.xcu
@@ -4027,7 +4144,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Detective"
-msgstr ""
+msgstr "Detektiw"
#: CalcWindowState.xcu
msgctxt ""
@@ -4036,7 +4153,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Cell"
-msgstr ""
+msgstr "Cela"
#: CalcWindowState.xcu
msgctxt ""
@@ -4045,7 +4162,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Cell Edit"
-msgstr ""
+msgstr "Celu wobdźěłać"
#: CalcWindowState.xcu
msgctxt ""
@@ -4054,7 +4171,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Chart"
-msgstr ""
+msgstr "Diagram"
#: CalcWindowState.xcu
msgctxt ""
@@ -4063,7 +4180,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Column Header"
-msgstr ""
+msgstr "Hłowa špalty"
#: CalcWindowState.xcu
msgctxt ""
@@ -4072,7 +4189,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shape"
-msgstr ""
+msgstr "Twar"
#: CalcWindowState.xcu
msgctxt ""
@@ -4081,7 +4198,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shape Text"
-msgstr ""
+msgstr "Tekst twara"
#: CalcWindowState.xcu
msgctxt ""
@@ -4090,7 +4207,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr ""
+msgstr "Wodźenski element formulara"
#: CalcWindowState.xcu
msgctxt ""
@@ -4099,7 +4216,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr ""
+msgstr "Formatowanje tekstoweho pola"
#: CalcWindowState.xcu
msgctxt ""
@@ -4108,7 +4225,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image"
-msgstr ""
+msgstr "Wobraz"
#: CalcWindowState.xcu
msgctxt ""
@@ -4117,7 +4234,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Media"
-msgstr ""
+msgstr "Medije"
#: CalcWindowState.xcu
msgctxt ""
@@ -4126,7 +4243,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Symbolowy pask"
#: CalcWindowState.xcu
msgctxt ""
@@ -4135,7 +4252,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OLE Object"
-msgstr ""
+msgstr "OLE-objekt"
#: CalcWindowState.xcu
msgctxt ""
@@ -4144,7 +4261,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Break"
-msgstr ""
+msgstr "Łamanje strony"
#: CalcWindowState.xcu
msgctxt ""
@@ -4153,7 +4270,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Pivotowa tabela"
#: CalcWindowState.xcu
msgctxt ""
@@ -4162,7 +4279,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Ćišćerski přehlad"
#: CalcWindowState.xcu
msgctxt ""
@@ -4171,7 +4288,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Row Header"
-msgstr ""
+msgstr "Hłowowa linka"
#: CalcWindowState.xcu
msgctxt ""
@@ -4180,7 +4297,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Sheet Tabs Bar"
-msgstr ""
+msgstr "Tabelowa rajtarkowa lajsta"
#: CalcWindowState.xcu
msgctxt ""
@@ -4189,7 +4306,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image Filter"
-msgstr ""
+msgstr "Wobrazowy filter"
#: CalcWindowState.xcu
msgctxt ""
@@ -4198,7 +4315,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines"
-msgstr ""
+msgstr "Linije"
#: CalcWindowState.xcu
msgctxt ""
@@ -4207,7 +4324,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "TSCP Classification"
-msgstr ""
+msgstr "TSCP-klasifikacija"
#: CalcWindowState.xcu
msgctxt ""
@@ -4216,7 +4333,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image"
-msgstr ""
+msgstr "Wobraz"
#: CalcWindowState.xcu
msgctxt ""
@@ -4225,7 +4342,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Data Streams"
-msgstr ""
+msgstr "Datowe prudy"
#: CalcWindowState.xcu
msgctxt ""
@@ -4234,7 +4351,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Drawing Object Properties"
-msgstr ""
+msgstr "Kajkosće rysowanskeho objekta"
#: CalcWindowState.xcu
msgctxt ""
@@ -4243,7 +4360,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Ćišćerski přehlad"
#: CalcWindowState.xcu
msgctxt ""
@@ -4252,7 +4369,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D-Settings"
-msgstr ""
+msgstr "3D-nastajenja"
#: CalcWindowState.xcu
msgctxt ""
@@ -4261,7 +4378,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr ""
+msgstr "Formatowanje tekstoweho pola"
#: CalcWindowState.xcu
msgctxt ""
@@ -4270,7 +4387,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr ""
+msgstr "Formularny filter"
#: CalcWindowState.xcu
msgctxt ""
@@ -4279,7 +4396,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr ""
+msgstr "Formularna nawigacija"
#: CalcWindowState.xcu
msgctxt ""
@@ -4288,7 +4405,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr ""
+msgstr "Formularne wodźenske elementy"
#: CalcWindowState.xcu
msgctxt ""
@@ -4297,7 +4414,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr ""
+msgstr "Dalše wodźenske elementy"
#: CalcWindowState.xcu
msgctxt ""
@@ -4306,7 +4423,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr ""
+msgstr "Formularny naćisk"
#: CalcWindowState.xcu
msgctxt ""
@@ -4315,7 +4432,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formatowanje"
#: CalcWindowState.xcu
msgctxt ""
@@ -4324,7 +4441,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Insert"
-msgstr ""
+msgstr "Zasadźić"
#: CalcWindowState.xcu
msgctxt ""
@@ -4333,7 +4450,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Insert Cell"
-msgstr ""
+msgstr "Celu zasadźić"
#: CalcWindowState.xcu
msgctxt ""
@@ -4342,7 +4459,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: CalcWindowState.xcu
msgctxt ""
@@ -4351,7 +4468,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr ""
+msgstr "Pytać"
#: CalcWindowState.xcu
msgctxt ""
@@ -4360,7 +4477,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Formatting"
-msgstr ""
+msgstr "Tekstowe formatowanje"
#: CalcWindowState.xcu
msgctxt ""
@@ -4369,7 +4486,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Tools"
-msgstr ""
+msgstr "Nastroje"
#: CalcWindowState.xcu
msgctxt ""
@@ -4378,7 +4495,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Full Screen"
-msgstr ""
+msgstr "Połna wobrazowka"
#: CalcWindowState.xcu
msgctxt ""
@@ -4387,7 +4504,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr ""
+msgstr "Standard (napohladny modus)"
#: CalcWindowState.xcu
msgctxt ""
@@ -4396,7 +4513,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Drawing"
-msgstr ""
+msgstr "Rysowanka"
#: CalcWindowState.xcu
msgctxt ""
@@ -4405,7 +4522,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Media Playback"
-msgstr ""
+msgstr "Wothrawanje medijow"
#: CalcWindowState.xcu
msgctxt ""
@@ -4414,7 +4531,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Color"
-msgstr ""
+msgstr "Barba"
#: CalcWindowState.xcu
msgctxt ""
@@ -4423,7 +4540,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr ""
+msgstr "Objekty wusměrić"
#: CalcWindowState.xcu
msgctxt ""
@@ -4432,7 +4549,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "Standardne twary"
#: CalcWindowState.xcu
msgctxt ""
@@ -4441,7 +4558,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Block Arrows"
-msgstr ""
+msgstr "Blokowe šipki"
#: CalcWindowState.xcu
msgctxt ""
@@ -4450,7 +4567,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flowchart"
-msgstr ""
+msgstr "Běžaty diagram"
#: CalcWindowState.xcu
msgctxt ""
@@ -4459,7 +4576,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Stars and Banners"
-msgstr ""
+msgstr "Hwěžki a chorhoje"
#: CalcWindowState.xcu
msgctxt ""
@@ -4468,7 +4585,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Symbol Shapes"
-msgstr ""
+msgstr "Symbolowe twary"
#: CalcWindowState.xcu
msgctxt ""
@@ -4477,7 +4594,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Callouts"
-msgstr ""
+msgstr "Legendy"
#: CalcWindowState.xcu
msgctxt ""
@@ -4486,7 +4603,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Fontwork"
-msgstr ""
+msgstr "Fontwork"
#: CalcWindowState.xcu
msgctxt ""
@@ -4495,7 +4612,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Fontwork Shape"
-msgstr ""
+msgstr "Twar fontwork"
#: CalcWindowState.xcu
msgctxt ""
@@ -4504,7 +4621,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Single Mode)"
-msgstr ""
+msgstr "Standard (jednory modus)"
#: CalcWindowState.xcu
msgctxt ""
@@ -4513,7 +4630,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Arrows"
-msgstr ""
+msgstr "Šipki"
#: CalcWindowState.xcu
msgctxt ""
@@ -4522,7 +4639,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr ""
+msgstr "Tastowe skrótšenki za symbolowy pask"
#: ChartCommands.xcu
msgctxt ""
@@ -4531,7 +4648,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Titles..."
-msgstr ""
+msgstr "~Titule..."
#: ChartCommands.xcu
msgctxt ""
@@ -4540,7 +4657,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Position"
-msgstr ""
+msgstr "Pozicija"
#: ChartCommands.xcu
msgctxt ""
@@ -4549,7 +4666,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Legend..."
-msgstr ""
+msgstr "~Legenda..."
#: ChartCommands.xcu
msgctxt ""
@@ -4558,7 +4675,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Axes..."
-msgstr ""
+msgstr "~Wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4567,7 +4684,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Grids..."
-msgstr ""
+msgstr "~Lěsycy..."
#: ChartCommands.xcu
msgctxt ""
@@ -4576,7 +4693,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Data Labels..."
-msgstr ""
+msgstr "~Datowe popisy..."
#: ChartCommands.xcu
msgctxt ""
@@ -4585,7 +4702,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tre~nd Line..."
-msgstr ""
+msgstr "Tre~ndowa linija..."
#: ChartCommands.xcu
msgctxt ""
@@ -4594,7 +4711,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mean ~Value Lines"
-msgstr ""
+msgstr "Linije přerězneje ~hódnoty"
#: ChartCommands.xcu
msgctxt ""
@@ -4603,7 +4720,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "X Error ~Bars..."
-msgstr ""
+msgstr "Zmylkowe hrjady ~X..."
#: ChartCommands.xcu
msgctxt ""
@@ -4612,7 +4729,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Y Error ~Bars..."
-msgstr ""
+msgstr "Zmylkowe hrjady ~Y..."
#: ChartCommands.xcu
msgctxt ""
@@ -4621,7 +4738,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Selection..."
-msgstr ""
+msgstr "Wuběr formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -4630,7 +4747,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Legend"
-msgstr ""
+msgstr "Legendu formatować"
#: ChartCommands.xcu
msgctxt ""
@@ -4639,7 +4756,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Legend..."
-msgstr ""
+msgstr "~Legenda..."
#: ChartCommands.xcu
msgctxt ""
@@ -4648,7 +4765,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart ~Wall..."
-msgstr ""
+msgstr "Diagramowa ~sćěna..."
#: ChartCommands.xcu
msgctxt ""
@@ -4657,7 +4774,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart ~Floor..."
-msgstr ""
+msgstr "~Diagramowe dno..."
#: ChartCommands.xcu
msgctxt ""
@@ -4666,7 +4783,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart ~Area..."
-msgstr ""
+msgstr "Diagramowa pło~nina..."
#: ChartCommands.xcu
msgctxt ""
@@ -4675,7 +4792,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart T~ype..."
-msgstr ""
+msgstr "Diagramowy ~typ..."
#: ChartCommands.xcu
msgctxt ""
@@ -4684,7 +4801,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Data Ranges..."
-msgstr ""
+msgstr "~Datowe wobłuki..."
#: ChartCommands.xcu
msgctxt ""
@@ -4693,7 +4810,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Data Table..."
-msgstr ""
+msgstr "~Datowa tabela..."
#: ChartCommands.xcu
msgctxt ""
@@ -4702,7 +4819,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~3D View..."
-msgstr ""
+msgstr "~3D-napohlad..."
#: ChartCommands.xcu
msgctxt ""
@@ -4711,7 +4828,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bring ~Forward"
-msgstr ""
+msgstr "Dop~rědka"
#: ChartCommands.xcu
msgctxt ""
@@ -4720,7 +4837,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Back~ward"
-msgstr ""
+msgstr "Do~zady"
#: ChartCommands.xcu
msgctxt ""
@@ -4729,7 +4846,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Main Title..."
-msgstr ""
+msgstr "~Hłowny titul..."
#: ChartCommands.xcu
msgctxt ""
@@ -4738,7 +4855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Subtitle..."
-msgstr ""
+msgstr "~Podtitul..."
#: ChartCommands.xcu
msgctxt ""
@@ -4747,7 +4864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~X Axis Title..."
-msgstr ""
+msgstr "Titul ~X-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4756,7 +4873,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Y Axis Title..."
-msgstr ""
+msgstr "Titul ~Y-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4765,7 +4882,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z Axis Title..."
-msgstr ""
+msgstr "Titul ~Z-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4774,7 +4891,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~econdary X Axis Title..."
-msgstr ""
+msgstr "Titul s~ekundarneje X-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4783,7 +4900,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Se~condary Y Axis Title..."
-msgstr ""
+msgstr "Titul se~kundarneje Y-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4792,7 +4909,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~All Titles..."
-msgstr ""
+msgstr "~Wšě titule..."
#: ChartCommands.xcu
msgctxt ""
@@ -4801,7 +4918,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~X Axis..."
-msgstr ""
+msgstr "~X-wóska..."
#: ChartCommands.xcu
msgctxt ""
@@ -4810,7 +4927,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Y Axis..."
-msgstr ""
+msgstr "~Y-wóska..."
#: ChartCommands.xcu
msgctxt ""
@@ -4819,7 +4936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z Axis..."
-msgstr ""
+msgstr "~Z-wóska..."
#: ChartCommands.xcu
msgctxt ""
@@ -4828,7 +4945,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Secondary X Axis..."
-msgstr ""
+msgstr "~Sekundarna X-wóska..."
#: ChartCommands.xcu
msgctxt ""
@@ -4837,7 +4954,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~econdary Y Axis..."
-msgstr ""
+msgstr "S~ekundarna Y-wóska..."
#: ChartCommands.xcu
msgctxt ""
@@ -4846,7 +4963,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~All Axes..."
-msgstr ""
+msgstr "~Wšě wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4855,7 +4972,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Y Axis Major Grid..."
-msgstr ""
+msgstr "Hłowna lěsyca ~Y-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4864,7 +4981,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~X Axis Major Grid..."
-msgstr ""
+msgstr "Hłowna lěsyca ~X-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4873,7 +4990,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z Axis Major Grid..."
-msgstr ""
+msgstr "Hłowna lěsyca ~Z-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4882,7 +4999,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Y Axis Minor ~Grid..."
-msgstr ""
+msgstr "Pomocna ~lěsyca Y-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4891,7 +5008,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "X Axis ~Minor Grid..."
-msgstr ""
+msgstr "Pomocna lě~syca X-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4900,7 +5017,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Z Ax~is Minor Grid..."
-msgstr ""
+msgstr "Po~mocna lěsyca Z-wóski..."
#: ChartCommands.xcu
msgctxt ""
@@ -4909,7 +5026,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~All Grids..."
-msgstr ""
+msgstr "~Wšě lěsycy..."
#: ChartCommands.xcu
msgctxt ""
@@ -4918,7 +5035,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Wall..."
-msgstr ""
+msgstr "Diagramowu sćěnu formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -4927,7 +5044,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Floor..."
-msgstr ""
+msgstr "Diagramowe dno formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -4936,7 +5053,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Chart Area..."
-msgstr ""
+msgstr "Diagramowu płoninu formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -4945,7 +5062,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Titles..."
-msgstr ""
+msgstr "Titule zasadźić..."
#: ChartCommands.xcu
msgctxt ""
@@ -4954,7 +5071,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Title..."
-msgstr ""
+msgstr "Titul formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -4963,7 +5080,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Legend"
-msgstr ""
+msgstr "Legendu zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -4972,7 +5089,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Legend"
-msgstr ""
+msgstr "Legendu zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -4981,7 +5098,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Legend..."
-msgstr ""
+msgstr "Legendu formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -4990,7 +5107,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert/Delete Axes..."
-msgstr ""
+msgstr "Wóski zasadźić/zhašeć..."
#: ChartCommands.xcu
msgctxt ""
@@ -4999,7 +5116,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Axis"
-msgstr ""
+msgstr "Wósku zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5008,7 +5125,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Axis"
-msgstr ""
+msgstr "Wósku zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5017,7 +5134,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Axis..."
-msgstr ""
+msgstr "Wósku formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5026,7 +5143,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Axis Title"
-msgstr ""
+msgstr "Wóskowy titul zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5035,7 +5152,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Major Grid"
-msgstr ""
+msgstr "Hłownu lěsycu zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5044,7 +5161,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Major Grid"
-msgstr ""
+msgstr "Hłownu lěsycu zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5053,7 +5170,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Major Grid..."
-msgstr ""
+msgstr "Hłownu lěsycu formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5062,7 +5179,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Minor Grid"
-msgstr ""
+msgstr "Pomocnu lěsycu zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5071,7 +5188,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Minor Grid"
-msgstr ""
+msgstr "Pomocnu lěsycu zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5080,7 +5197,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Minor Grid..."
-msgstr ""
+msgstr "Pomocnu lěsycu formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5089,7 +5206,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Tre~nd Line..."
-msgstr ""
+msgstr "Tre~ndowu liniju zasadźić..."
#: ChartCommands.xcu
msgctxt ""
@@ -5098,7 +5215,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Tre~nd Line"
-msgstr ""
+msgstr "Tre~ndowu liniju zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5107,7 +5224,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Trend Line..."
-msgstr ""
+msgstr "Trendowu liniju formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5116,7 +5233,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Trend Line ~Equation"
-msgstr ""
+msgstr "~Runicu trendoweje linije zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5125,7 +5242,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert R² and Trend Line Equation"
-msgstr ""
+msgstr "R² a runicu trendoweje linije zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5134,7 +5251,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert R²"
-msgstr ""
+msgstr "R² zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5143,7 +5260,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete R²"
-msgstr ""
+msgstr "R² zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5152,7 +5269,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Trend Line ~Equation"
-msgstr ""
+msgstr "~Runicu trendoweje linije zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5161,7 +5278,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Trend Line Equation..."
-msgstr ""
+msgstr "Runicu trendoweje linije formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5170,7 +5287,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Mean ~Value Line"
-msgstr ""
+msgstr "Liniju přerězneje ~hódnoty zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5179,7 +5296,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Mean ~Value Line"
-msgstr ""
+msgstr "Liniju přerězneje ~hódnoty zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5188,7 +5305,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Mean Value Line..."
-msgstr ""
+msgstr "Liniju přerězneje hódnoty formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5197,7 +5314,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert X Error ~Bars..."
-msgstr ""
+msgstr "Zmylkowe ~hrjady X zasadźić..."
#: ChartCommands.xcu
msgctxt ""
@@ -5206,7 +5323,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete X Error ~Bars"
-msgstr ""
+msgstr "Zmylkowe ~hrjady X zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5215,7 +5332,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format X Error Bars..."
-msgstr ""
+msgstr "Zmylkowe hrjady X formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5224,7 +5341,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Y Error ~Bars..."
-msgstr ""
+msgstr "Zmylkowe ~hrjady Y zasadźić..."
#: ChartCommands.xcu
msgctxt ""
@@ -5233,7 +5350,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Y Error ~Bars"
-msgstr ""
+msgstr "Zmylkowe ~hrjady Y zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5242,7 +5359,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Y Error Bars..."
-msgstr ""
+msgstr "Zmylkowe hrjady Y formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5251,7 +5368,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Data Labels"
-msgstr ""
+msgstr "Datowe popisy zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5260,7 +5377,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Data Labels"
-msgstr ""
+msgstr "Datowe popisy zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5269,7 +5386,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Data Labels..."
-msgstr ""
+msgstr "Datowe popisy formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5278,7 +5395,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Single Data Label"
-msgstr ""
+msgstr "Jedyn datowy popis zasadźić"
#: ChartCommands.xcu
msgctxt ""
@@ -5287,7 +5404,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Single Data Label"
-msgstr ""
+msgstr "Jedyn datowy popis zhašeć"
#: ChartCommands.xcu
msgctxt ""
@@ -5296,7 +5413,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Single Data Label..."
-msgstr ""
+msgstr "Jedyn datowy popis formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5305,7 +5422,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Data Series..."
-msgstr ""
+msgstr "Datowy rjad formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5314,7 +5431,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Data Point..."
-msgstr ""
+msgstr "Datowy dypk formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5323,7 +5440,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset Data Point"
-msgstr ""
+msgstr "Datowy dypk wróćo stajić"
#: ChartCommands.xcu
msgctxt ""
@@ -5332,7 +5449,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset all Data Points"
-msgstr ""
+msgstr "Wšě datowe dypki wróćo stajić"
#: ChartCommands.xcu
msgctxt ""
@@ -5341,7 +5458,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Stock Loss..."
-msgstr ""
+msgstr "Stratu wobstatka formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5350,7 +5467,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Stock Gain..."
-msgstr ""
+msgstr "Dobytk wobstatka formatować..."
#: ChartCommands.xcu
msgctxt ""
@@ -5359,7 +5476,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Chart Element"
-msgstr ""
+msgstr "Diagramowy element wubrać"
#: ChartCommands.xcu
msgctxt ""
@@ -5368,7 +5485,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal Grids"
-msgstr ""
+msgstr "Wodorune lěsycy"
#: ChartCommands.xcu
msgctxt ""
@@ -5377,7 +5494,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scale Text"
-msgstr ""
+msgstr "Tekst skalować"
#: ChartCommands.xcu
msgctxt ""
@@ -5386,7 +5503,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Automatic Layout"
-msgstr ""
+msgstr "Awtomatiske wuhotowanje"
#: ChartCommands.xcu
msgctxt ""
@@ -5395,7 +5512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Update Chart"
-msgstr ""
+msgstr "Diagram aktualizować"
#: ChartCommands.xcu
msgctxt ""
@@ -5404,7 +5521,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legend On/Off"
-msgstr ""
+msgstr "Legenda zapinjena/wupinjena"
#: ChartCommands.xcu
msgctxt ""
@@ -5413,7 +5530,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show/Hide Axis Description(s)"
-msgstr ""
+msgstr "Wóskowe popisy pokazać/schować"
#: ChartCommands.xcu
msgctxt ""
@@ -5422,7 +5539,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Grids"
-msgstr ""
+msgstr "Padorune lěsycy"
#: ChartCommands.xcu
msgctxt ""
@@ -5431,7 +5548,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data in Rows"
-msgstr ""
+msgstr "Daty w rjadach"
#: ChartCommands.xcu
msgctxt ""
@@ -5440,7 +5557,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data in Columns"
-msgstr ""
+msgstr "Daty w špaltach"
#: ChartCommands.xcu
msgctxt ""
@@ -5449,7 +5566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Tool"
-msgstr ""
+msgstr "Nastroj wubrać"
#: ChartCommands.xcu
msgctxt ""
@@ -5458,7 +5575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart Type"
-msgstr ""
+msgstr "Diagramowy typ"
#: ChartCommands.xcu
msgctxt ""
@@ -5467,7 +5584,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Caption Type for Chart Data"
-msgstr ""
+msgstr "Popisanski typ za diagramowe daty"
#: ChartCommands.xcu
msgctxt ""
@@ -5476,7 +5593,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legend Position"
-msgstr ""
+msgstr "Pozicija legendy"
#: ChartCommands.xcu
msgctxt ""
@@ -5485,7 +5602,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default Colors for Data Series"
-msgstr ""
+msgstr "Standardne barby za datowe rjady"
#: ChartCommands.xcu
msgctxt ""
@@ -5494,7 +5611,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bar Width"
-msgstr ""
+msgstr "Šěrokosć hrjady"
#: ChartCommands.xcu
msgctxt ""
@@ -5503,7 +5620,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number of lines in combination chart"
-msgstr ""
+msgstr "Ličba linijow w kombinowanym diagramje"
#: ChartCommands.xcu
msgctxt ""
@@ -5512,7 +5629,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt..."
-msgstr ""
+msgstr "Te~kst..."
#: ChartCommands.xcu
msgctxt ""
@@ -5521,7 +5638,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Description..."
-msgstr ""
+msgstr "Wopisanje..."
#: ChartCommands.xcu
msgctxt ""
@@ -5530,7 +5647,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Name..."
-msgstr ""
+msgstr "Mjeno..."
#: ChartCommands.xcu
msgctxt ""
@@ -5539,7 +5656,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Ends with Arrow"
-msgstr ""
+msgstr "Linija ze šipkowym kónčkom"
#: ChartCommands.xcu
msgctxt ""
@@ -5548,7 +5665,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Arrange~ment"
-msgstr ""
+msgstr "Po~rjad"
#: ChartCommands.xcu
msgctxt ""
@@ -5557,7 +5674,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Title"
-msgstr ""
+msgstr "~Titul"
#: ChartCommands.xcu
msgctxt ""
@@ -5566,7 +5683,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "A~xis"
-msgstr ""
+msgstr "~Wóska"
#: ChartCommands.xcu
msgctxt ""
@@ -5575,7 +5692,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Grid"
-msgstr ""
+msgstr "~Lěsyca"
#: ChartWindowState.xcu
msgctxt ""
@@ -5584,7 +5701,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shape"
-msgstr ""
+msgstr "Twar"
#: ChartWindowState.xcu
msgctxt ""
@@ -5593,7 +5710,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shape Text"
-msgstr ""
+msgstr "Tekst twara"
#: ChartWindowState.xcu
msgctxt ""
@@ -5602,7 +5719,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: ChartWindowState.xcu
msgctxt ""
@@ -5611,7 +5728,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formatowanje"
#: ChartWindowState.xcu
msgctxt ""
@@ -5620,7 +5737,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Drawing"
-msgstr ""
+msgstr "Rysowanka"
#: ChartWindowState.xcu
msgctxt ""
@@ -5629,7 +5746,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "Standardne twary"
#: ChartWindowState.xcu
msgctxt ""
@@ -5638,7 +5755,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Symbol Shapes"
-msgstr ""
+msgstr "Symbolowe twary"
#: ChartWindowState.xcu
msgctxt ""
@@ -5647,7 +5764,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Block Arrows"
-msgstr ""
+msgstr "Blokowe šipki"
#: ChartWindowState.xcu
msgctxt ""
@@ -5656,7 +5773,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flowchart"
-msgstr ""
+msgstr "Běžaty diagram"
#: ChartWindowState.xcu
msgctxt ""
@@ -5665,7 +5782,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Callouts"
-msgstr ""
+msgstr "Legendy"
#: ChartWindowState.xcu
msgctxt ""
@@ -5674,7 +5791,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Stars and Banners"
-msgstr ""
+msgstr "Hwěžki a chorhoje"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -5683,7 +5800,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Explorer"
-msgstr ""
+msgstr "Explorer"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -5692,7 +5809,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Data"
-msgstr ""
+msgstr "Tabelowe daty"
#: DbQueryWindowState.xcu
msgctxt ""
@@ -5701,7 +5818,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Design"
-msgstr ""
+msgstr "Design"
#: DbQueryWindowState.xcu
msgctxt ""
@@ -5710,7 +5827,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SQL"
-msgstr ""
+msgstr "SQL"
#: DbQueryWindowState.xcu
msgctxt ""
@@ -5719,7 +5836,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Query Design"
-msgstr ""
+msgstr "Wotprašowanski naćisk"
#: DbRelationWindowState.xcu
msgctxt ""
@@ -5728,7 +5845,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5737,7 +5854,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Report"
-msgstr ""
+msgstr "Rozprawa"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5746,7 +5863,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5755,7 +5872,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formatowanje"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5764,7 +5881,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Report Controls"
-msgstr ""
+msgstr "Wodźenske elementy rozprawy"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5773,7 +5890,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Drawing objects"
-msgstr ""
+msgstr "Rysowanske objekty"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5782,7 +5899,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Align"
-msgstr ""
+msgstr "Wusměrić"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5791,7 +5908,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Align at Section"
-msgstr ""
+msgstr "Na wotrězku wusměrić"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5800,7 +5917,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shrink at Section"
-msgstr ""
+msgstr "Na wotrězku pomjeńšić"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5809,7 +5926,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Object Resizing"
-msgstr ""
+msgstr "Wulkosć objekta změnić"
#: DbTableDataWindowState.xcu
msgctxt ""
@@ -5818,7 +5935,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Data"
-msgstr ""
+msgstr "Tabelowe daty"
#: DbTableWindowState.xcu
msgctxt ""
@@ -5827,7 +5944,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: DbuCommands.xcu
msgctxt ""
@@ -5836,7 +5953,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear Query"
-msgstr ""
+msgstr "Wotprašowanje zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -5845,7 +5962,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Relation..."
-msgstr ""
+msgstr "Nowa relacija..."
#: DbuCommands.xcu
msgctxt ""
@@ -5854,7 +5971,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add Tables..."
-msgstr ""
+msgstr "Tabele přidać..."
#: DbuCommands.xcu
msgctxt ""
@@ -5863,7 +5980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Index Design..."
-msgstr ""
+msgstr "~Indeksowy naćisk..."
#: DbuCommands.xcu
msgctxt ""
@@ -5872,7 +5989,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Switch Design View On/Off"
-msgstr ""
+msgstr "Designowy modus přepinać"
#: DbuCommands.xcu
msgctxt ""
@@ -5881,7 +5998,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Functions"
-msgstr ""
+msgstr "Funkcije"
#: DbuCommands.xcu
msgctxt ""
@@ -5890,7 +6007,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alias"
-msgstr ""
+msgstr "Alias"
#: DbuCommands.xcu
msgctxt ""
@@ -5899,7 +6016,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table name"
-msgstr ""
+msgstr "Tabelowe mjeno"
#: DbuCommands.xcu
msgctxt ""
@@ -5908,7 +6025,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Jednozmyslne hódnoty"
#: DbuCommands.xcu
msgctxt ""
@@ -5917,7 +6034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Limit"
-msgstr ""
+msgstr "Limit"
#: DbuCommands.xcu
msgctxt ""
@@ -5926,7 +6043,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Query Properties"
-msgstr ""
+msgstr "Kajkosće wotprašowanja"
#: DbuCommands.xcu
msgctxt ""
@@ -5935,7 +6052,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste ~Special..."
-msgstr ""
+msgstr "Wo~bsah zasadźić..."
#: DbuCommands.xcu
msgctxt ""
@@ -5944,7 +6061,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -5953,7 +6070,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename..."
-msgstr ""
+msgstr "Přemjenować..."
#: DbuCommands.xcu
msgctxt ""
@@ -5962,7 +6079,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit..."
-msgstr ""
+msgstr "Wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -5971,7 +6088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit in SQL View..."
-msgstr ""
+msgstr "W SQL-napohledźe wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -5980,7 +6097,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Database Object..."
-msgstr ""
+msgstr "Objekt datoweje banki wočinić..."
#: DbuCommands.xcu
msgctxt ""
@@ -5989,7 +6106,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Open..."
-msgstr ""
+msgstr "Wočinić..."
#: DbuCommands.xcu
msgctxt ""
@@ -5998,7 +6115,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -6007,7 +6124,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename..."
-msgstr ""
+msgstr "Přemjenować..."
#: DbuCommands.xcu
msgctxt ""
@@ -6016,7 +6133,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit..."
-msgstr ""
+msgstr "Wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -6025,7 +6142,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Database Object..."
-msgstr ""
+msgstr "Objekt datoweje banki wočinić..."
#: DbuCommands.xcu
msgctxt ""
@@ -6034,7 +6151,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -6043,7 +6160,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename..."
-msgstr ""
+msgstr "Přemjenować..."
#: DbuCommands.xcu
msgctxt ""
@@ -6052,7 +6169,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit..."
-msgstr ""
+msgstr "Wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -6061,7 +6178,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Database Object..."
-msgstr ""
+msgstr "Objekt datoweje banki wočinić..."
#: DbuCommands.xcu
msgctxt ""
@@ -6070,7 +6187,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -6079,7 +6196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename..."
-msgstr ""
+msgstr "Přemjenować..."
#: DbuCommands.xcu
msgctxt ""
@@ -6088,7 +6205,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit..."
-msgstr ""
+msgstr "Wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -6097,7 +6214,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Database Object..."
-msgstr ""
+msgstr "Objekt datoweje banki wočinić..."
#: DbuCommands.xcu
msgctxt ""
@@ -6106,7 +6223,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -6115,7 +6232,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename..."
-msgstr ""
+msgstr "Přemjenować..."
#: DbuCommands.xcu
msgctxt ""
@@ -6124,7 +6241,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit..."
-msgstr ""
+msgstr "Wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -6133,7 +6250,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Database Object..."
-msgstr ""
+msgstr "Objekt datoweje banki wočinić..."
#: DbuCommands.xcu
msgctxt ""
@@ -6142,7 +6259,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Create as View"
-msgstr ""
+msgstr "Jako napohlad wutworić"
#: DbuCommands.xcu
msgctxt ""
@@ -6151,7 +6268,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Wizard..."
-msgstr ""
+msgstr "Formularny asistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6160,7 +6277,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Wizard..."
-msgstr ""
+msgstr "Tabelowy asistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6169,7 +6286,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Query Wizard..."
-msgstr ""
+msgstr "Wotprašowanski asistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6178,7 +6295,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Wizard..."
-msgstr ""
+msgstr "Formularny asistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6187,7 +6304,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr ""
+msgstr "Rozprawa..."
#: DbuCommands.xcu
msgctxt ""
@@ -6196,7 +6313,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report Wizard..."
-msgstr ""
+msgstr "Rozprawniski asistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6205,7 +6322,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report Wizard..."
-msgstr ""
+msgstr "Rozprawniski asistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6214,7 +6331,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select All"
-msgstr ""
+msgstr "Wšo wubrać"
#: DbuCommands.xcu
msgctxt ""
@@ -6223,7 +6340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Properties..."
-msgstr ""
+msgstr "Kajkosće..."
#: DbuCommands.xcu
msgctxt ""
@@ -6232,7 +6349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connection Type..."
-msgstr ""
+msgstr "Zwiskowy typ..."
#: DbuCommands.xcu
msgctxt ""
@@ -6241,7 +6358,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Advanced Settings..."
-msgstr ""
+msgstr "Rozšěrjene nastajenja..."
#: DbuCommands.xcu
msgctxt ""
@@ -6250,7 +6367,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tables"
-msgstr ""
+msgstr "Tabele"
#: DbuCommands.xcu
msgctxt ""
@@ -6259,7 +6376,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Queries"
-msgstr ""
+msgstr "Wotprašowanja"
#: DbuCommands.xcu
msgctxt ""
@@ -6268,7 +6385,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Forms"
-msgstr ""
+msgstr "Formulary"
#: DbuCommands.xcu
msgctxt ""
@@ -6277,7 +6394,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reports"
-msgstr ""
+msgstr "Rozprawy"
#: DbuCommands.xcu
msgctxt ""
@@ -6286,7 +6403,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ascending"
-msgstr ""
+msgstr "Postupowacy"
#: DbuCommands.xcu
msgctxt ""
@@ -6295,7 +6412,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Descending"
-msgstr ""
+msgstr "Spadowacy"
#: DbuCommands.xcu
msgctxt ""
@@ -6304,7 +6421,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "None"
-msgstr ""
+msgstr "Žadyn"
#: DbuCommands.xcu
msgctxt ""
@@ -6313,7 +6430,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Document Information"
-msgstr ""
+msgstr "Dokumentowe informacije"
#: DbuCommands.xcu
msgctxt ""
@@ -6322,7 +6439,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: DbuCommands.xcu
msgctxt ""
@@ -6331,7 +6448,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form..."
-msgstr ""
+msgstr "Formular..."
#: DbuCommands.xcu
msgctxt ""
@@ -6340,7 +6457,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Query (Design View)..."
-msgstr ""
+msgstr "Wotprašowanje (naćiskowy napohlad)..."
#: DbuCommands.xcu
msgctxt ""
@@ -6349,7 +6466,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Query (Design View)"
-msgstr ""
+msgstr "Nowe wotp~rašowanje (naćiskowy napohlad)"
#: DbuCommands.xcu
msgctxt ""
@@ -6358,7 +6475,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Query (SQL View)..."
-msgstr ""
+msgstr "Wotprašowanje (SQL-napohlad)..."
#: DbuCommands.xcu
msgctxt ""
@@ -6367,7 +6484,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New Query (~SQL View)"
-msgstr ""
+msgstr "Nowe wotprašowanje (~SQL-napohlad)"
#: DbuCommands.xcu
msgctxt ""
@@ -6376,7 +6493,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Design..."
-msgstr ""
+msgstr "Tabelowy naćisk..."
#: DbuCommands.xcu
msgctxt ""
@@ -6385,7 +6502,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Table Design"
-msgstr ""
+msgstr "Nowy ~tabelowy naćisk"
#: DbuCommands.xcu
msgctxt ""
@@ -6394,7 +6511,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Design..."
-msgstr ""
+msgstr "Napohladny naćisk..."
#: DbuCommands.xcu
msgctxt ""
@@ -6403,7 +6520,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~View Design"
-msgstr ""
+msgstr "Nowy napo~hladny naćisk"
#: DbuCommands.xcu
msgctxt ""
@@ -6412,7 +6529,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View (Simple)..."
-msgstr ""
+msgstr "Napohlad (jednory)..."
#: DbuCommands.xcu
msgctxt ""
@@ -6421,7 +6538,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Folder..."
-msgstr ""
+msgstr "Rjadowak..."
#: DbuCommands.xcu
msgctxt ""
@@ -6430,7 +6547,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Relationships..."
-msgstr ""
+msgstr "Poćahi..."
#: DbuCommands.xcu
msgctxt ""
@@ -6439,7 +6556,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "User Administration..."
-msgstr ""
+msgstr "Wužiwarska administracija..."
#: DbuCommands.xcu
msgctxt ""
@@ -6448,7 +6565,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Filter..."
-msgstr ""
+msgstr "Tabelowy filter..."
#: DbuCommands.xcu
msgctxt ""
@@ -6457,7 +6574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Tables"
-msgstr ""
+msgstr "Tabele aktualizować"
#: DbuCommands.xcu
msgctxt ""
@@ -6466,7 +6583,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SQL..."
-msgstr ""
+msgstr "SQL..."
#: DbuCommands.xcu
msgctxt ""
@@ -6475,7 +6592,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Migrate Macros ..."
-msgstr ""
+msgstr "Makra přenošować..."
#: DbuCommands.xcu
msgctxt ""
@@ -6484,7 +6601,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Data"
-msgstr ""
+msgstr "Daty wobdźěłać"
#: DbuCommands.xcu
msgctxt ""
@@ -6493,7 +6610,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Mail Merge..."
-msgstr ""
+msgstr "~Serijowy ćišć..."
#: DbuCommands.xcu
msgctxt ""
@@ -6502,7 +6619,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data to Text..."
-msgstr ""
+msgstr "Daty do teksta..."
#: DbuCommands.xcu
msgctxt ""
@@ -6511,7 +6628,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data to Fields"
-msgstr ""
+msgstr "Daty do polow"
#: DbuCommands.xcu
msgctxt ""
@@ -6520,7 +6637,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data Source of Current Document"
-msgstr ""
+msgstr "Datowe žórło aktualneho dokumenta"
#: DbuCommands.xcu
msgctxt ""
@@ -6529,7 +6646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report As E-Mail..."
-msgstr ""
+msgstr "Rozprawa jako e-mejl..."
#: DbuCommands.xcu
msgctxt ""
@@ -6538,7 +6655,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report to Text Document..."
-msgstr ""
+msgstr "Rozprawa do tekstoweho dokumenta..."
#: DbuCommands.xcu
msgctxt ""
@@ -6547,7 +6664,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete ~Record"
-msgstr ""
+msgstr "Datowu sadźbu ~zhašeć"
#: DbuCommands.xcu
msgctxt ""
@@ -6556,7 +6673,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr ""
+msgstr "~Datowa sadźba"
#: DbuCommands.xcu
msgctxt ""
@@ -6565,7 +6682,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Preview"
-msgstr ""
+msgstr "Přehlad"
#: DbuCommands.xcu
msgctxt ""
@@ -6574,7 +6691,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rebuild"
-msgstr ""
+msgstr "Znowa natwarić"
#: DbuCommands.xcu
msgctxt ""
@@ -6583,7 +6700,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr ""
+msgstr "Rozprawa..."
#: DbuCommands.xcu
msgctxt ""
@@ -6592,7 +6709,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit ~Database File..."
-msgstr ""
+msgstr "~Dataju datoweje banki wobdźěłać..."
#: DbuCommands.xcu
msgctxt ""
@@ -6601,7 +6718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Disco~nnect"
-msgstr ""
+msgstr "Zwisk dźě~lić"
#: DbuCommands.xcu
msgctxt ""
@@ -6610,7 +6727,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Registered databases ..."
-msgstr ""
+msgstr "Zregistrowane datowe banki ..."
#: DbuCommands.xcu
msgctxt ""
@@ -6619,7 +6736,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Database"
-msgstr ""
+msgstr "Datowa banka"
#: DbuCommands.xcu
msgctxt ""
@@ -6628,7 +6745,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Database Objects"
-msgstr ""
+msgstr "Objekty datoweje banki"
#: DbuCommands.xcu
msgctxt ""
@@ -6637,7 +6754,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort"
-msgstr ""
+msgstr "Sortěrować"
#: DbuCommands.xcu
msgctxt ""
@@ -6646,7 +6763,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Preview"
-msgstr ""
+msgstr "Přehlad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6655,7 +6772,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Close ~Object"
-msgstr ""
+msgstr "~Objekt začinić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6664,7 +6781,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Black & White View"
-msgstr ""
+msgstr "Čornoběły napohlad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6673,7 +6790,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~lide"
-msgstr ""
+msgstr "Fo~lija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6682,7 +6799,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Navigate"
-msgstr ""
+msgstr "Nawigować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6691,7 +6808,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move"
-msgstr ""
+msgstr "Přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6700,7 +6817,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename Page"
-msgstr ""
+msgstr "Stronu přemjenować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6709,7 +6826,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename Slide"
-msgstr ""
+msgstr "Foliju přemjenować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6718,7 +6835,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rename Layer"
-msgstr ""
+msgstr "Runinu pře~mjenować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6727,7 +6844,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from ~First Slide"
-msgstr ""
+msgstr "Z p~rěnjej foliju započeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6736,7 +6853,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from C~urrent Slide"
-msgstr ""
+msgstr "Z ~aktualnej foliju započeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6745,7 +6862,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump to Last Edited Slide"
-msgstr ""
+msgstr "K poslednjej wobdźěłanej foliji přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6754,7 +6871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Impress R~emote"
-msgstr ""
+msgstr "Impress z~daloka wodźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6763,7 +6880,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rehearse Timings"
-msgstr ""
+msgstr "Časowy wot~běh wupruwować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6772,7 +6889,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Photo Album"
-msgstr ""
+msgstr "Fotoalbum"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6781,7 +6898,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SlideTransition"
-msgstr ""
+msgstr "Folijowy přechad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6790,7 +6907,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sho~w Slide"
-msgstr ""
+msgstr "Foliju po~kazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6799,7 +6916,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide Slide"
-msgstr ""
+msgstr "Foliju s~chować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6808,7 +6925,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt..."
-msgstr ""
+msgstr "Te~kst..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6817,7 +6934,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slides per Row"
-msgstr ""
+msgstr "Folije na rjad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6826,7 +6943,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fit Text in Textbox Size"
-msgstr ""
+msgstr "Tekst na wulkosć tekstoweho pola přiměrić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6835,7 +6952,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fit Vertical Text to Frame"
-msgstr ""
+msgstr "Padoruny tekst na wobłuk přiměrić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6844,7 +6961,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "3D Objects"
-msgstr ""
+msgstr "3D-objekty"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6853,7 +6970,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cube"
-msgstr ""
+msgstr "Kóstka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6862,7 +6979,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sphere"
-msgstr ""
+msgstr "Kula"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6871,7 +6988,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cylinder"
-msgstr ""
+msgstr "Cylinder"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6880,7 +6997,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cone"
-msgstr ""
+msgstr "Kehel"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6889,7 +7006,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pyramid"
-msgstr ""
+msgstr "Pyramida"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6898,7 +7015,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Glue Points"
-msgstr ""
+msgstr "~Lěpjate dypki"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6907,7 +7024,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Glue Points Functions"
-msgstr ""
+msgstr "Funkcije lěpjatych dypkow pokazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6916,7 +7033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Glue Point"
-msgstr ""
+msgstr "Lěpjaty dypk zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6925,7 +7042,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Relative"
-msgstr ""
+msgstr "Relatiwny lěpjaty dypk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6934,7 +7051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit Direction"
-msgstr ""
+msgstr "Wustupowy směr"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6943,7 +7060,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Horizontal Center"
-msgstr ""
+msgstr "Lěpjaty dypk wodorunje centrowany"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6952,7 +7069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Horizontal Left"
-msgstr ""
+msgstr "Lěpjaty dypk wodorunje nalěwo"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6961,7 +7078,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Horizontal Right"
-msgstr ""
+msgstr "Lěpjaty dypk wodorunje naprawo"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6970,7 +7087,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Vertical Center"
-msgstr ""
+msgstr "Lěpjaty dypk padorunje centrowany"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6979,7 +7096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Vertical Top"
-msgstr ""
+msgstr "Lěpjaty dypk padorunje horjeka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6988,7 +7105,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glue Point Vertical Bottom"
-msgstr ""
+msgstr "Lěpjaty dypk padorunje deleka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6997,7 +7114,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shell"
-msgstr ""
+msgstr "Šklička"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7006,7 +7123,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Torus"
-msgstr ""
+msgstr "Torus"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7015,7 +7132,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Half-Sphere"
-msgstr ""
+msgstr "Połkula"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7024,7 +7141,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit Direction Left"
-msgstr ""
+msgstr "Wustupowy směr nalěwo"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7033,7 +7150,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit Direction Right"
-msgstr ""
+msgstr "Wustupowy směr naprawo"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7042,7 +7159,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit Direction Top"
-msgstr ""
+msgstr "Wustupowy směr horjeka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7051,7 +7168,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit Direction Bottom"
-msgstr ""
+msgstr "Wustupowy směr deleka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7060,7 +7177,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert"
-msgstr ""
+msgstr "Zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7069,7 +7186,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cross-fading..."
-msgstr ""
+msgstr "Přeblendować..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7078,7 +7195,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dimen~sions..."
-msgstr ""
+msgstr "Wot~měry..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7087,7 +7204,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grid to ~Front"
-msgstr ""
+msgstr "~Lěsyca do prědka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7096,7 +7213,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Display Snap Lines"
-msgstr ""
+msgstr "Łójenske linije ~zwobraznić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7105,7 +7222,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap Lines to ~Front"
-msgstr ""
+msgstr "Łójenske linije do p~rědka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7114,7 +7231,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "In Front of ~Object"
-msgstr ""
+msgstr "Před ~objekt"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7123,7 +7240,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Animacija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7132,7 +7249,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Transition"
-msgstr ""
+msgstr "Folijowy přechad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7141,7 +7258,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Connector..."
-msgstr ""
+msgstr "~Zwjazowak..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7150,7 +7267,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~lide Show Settings..."
-msgstr ""
+msgstr "~Nastajenja prezentacije..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7159,7 +7276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation"
-msgstr ""
+msgstr "~Dźělenje złóžkow"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7168,7 +7285,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset Routing"
-msgstr ""
+msgstr "Běh linijow wróćo stajić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7177,7 +7294,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate Page"
-msgstr ""
+msgstr "Stronu podwojić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7186,7 +7303,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate ~Slide"
-msgstr ""
+msgstr "~Foliju podwojić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7195,7 +7312,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xpand Slide"
-msgstr ""
+msgstr "Folija z ~rozrjada"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7204,7 +7321,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Su~mmary Slide"
-msgstr ""
+msgstr "Pře~hladna folija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7213,7 +7330,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Exit All Groups"
-msgstr ""
+msgstr "Wšě skupiny wopušćić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7222,7 +7339,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Folijowy ~mištr"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7231,7 +7348,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Noticowy m~ištr"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7240,7 +7357,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Slide Direct"
-msgstr ""
+msgstr "Foliju direktnje zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7249,7 +7366,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dat~e (variable)"
-msgstr ""
+msgstr "Da~tum (wariabelny)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7258,7 +7375,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Date (fixed)"
-msgstr ""
+msgstr "~Datum (njezměnity)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7267,7 +7384,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "T~ime (variable)"
-msgstr ""
+msgstr "Čas (~wariabelny)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7276,7 +7393,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Time (fixed)"
-msgstr ""
+msgstr "Čas (~njezměnity)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7285,7 +7402,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Number"
-msgstr ""
+msgstr "Či~sło strony"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7294,7 +7411,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Tit~le"
-msgstr ""
+msgstr "~Titul strony"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7303,7 +7420,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page ~Count"
-msgstr ""
+msgstr "~Ličba stronow"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7312,7 +7429,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ields..."
-msgstr ""
+msgstr "~Pola..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7321,7 +7438,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~File Name"
-msgstr ""
+msgstr "~Datajowe mjeno"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7330,7 +7447,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Author"
-msgstr ""
+msgstr "~Awtor"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7339,7 +7456,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Custom Slide Show..."
-msgstr ""
+msgstr "~Swójska prezentacija..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7348,7 +7465,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Color"
-msgstr ""
+msgstr "~Barba"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7357,7 +7474,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Grayscale"
-msgstr ""
+msgstr "Wot~sćiny šěrje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7366,7 +7483,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Black and White"
-msgstr ""
+msgstr "Čorno~běły"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7375,7 +7492,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Color"
-msgstr ""
+msgstr "~Barba"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7384,7 +7501,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Grayscale"
-msgstr ""
+msgstr "Wot~sćiny šěrje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7393,7 +7510,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Black and White"
-msgstr ""
+msgstr "Čorno~běły"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7402,7 +7519,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To 3~D"
-msgstr ""
+msgstr "Do ~3D"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7411,7 +7528,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To 3D ~Rotation Object"
-msgstr ""
+msgstr "Do ~rotaciskeho objekta 3D"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7420,7 +7537,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To ~Bitmap"
-msgstr ""
+msgstr "Do ~bitmapa"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7429,7 +7546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To ~Metafile"
-msgstr ""
+msgstr "Do ~metadataje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7438,7 +7555,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To C~ontour"
-msgstr ""
+msgstr "Do ~kontury"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7447,7 +7564,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyperlink..."
-msgstr ""
+msgstr "~Hyperwotkaz..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7456,7 +7573,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide Last Level"
-msgstr ""
+msgstr "~Poslednju runinu schować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7465,7 +7582,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show Next Level"
-msgstr ""
+msgstr "Při~chodnu runinu pokazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7474,7 +7591,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Page"
-msgstr ""
+msgstr "Stronu formatować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7483,7 +7600,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Page Properties..."
-msgstr ""
+msgstr "~Kajkosće strony..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7492,7 +7609,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Slide"
-msgstr ""
+msgstr "Foliju formatować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7501,7 +7618,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Properties..."
-msgstr ""
+msgstr "Folijowe kajkosće..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7510,7 +7627,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste ~Special..."
-msgstr ""
+msgstr "Wob~sah zasadźić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7519,7 +7636,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicat~e..."
-msgstr ""
+msgstr "Po~dwojić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7528,7 +7645,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lin~ks..."
-msgstr ""
+msgstr "~Zwjazanja..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7537,7 +7654,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "In 3D Rotation Object"
-msgstr ""
+msgstr "W rotaciskim objekće 3D"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7546,7 +7663,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Drawing View"
-msgstr ""
+msgstr "~Rysowanski napohlad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7555,7 +7672,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Outline"
-msgstr ""
+msgstr "Ro~zrjad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7564,7 +7681,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~High Contrast"
-msgstr ""
+msgstr "Wyso~ki kontrast"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7573,7 +7690,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sli~de Sorter"
-msgstr ""
+msgstr "Fo~lijowe sortěrowanje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7582,7 +7699,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~High Contrast"
-msgstr ""
+msgstr "Wyso~ki kontrast"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7591,7 +7708,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Page"
-msgstr ""
+msgstr "Nowa strona"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7600,7 +7717,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Slide"
-msgstr ""
+msgstr "~Nowa folija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7609,7 +7726,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~File..."
-msgstr ""
+msgstr "~Dataja..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7618,7 +7735,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shift"
-msgstr ""
+msgstr "Přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7627,7 +7744,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pixel Mode"
-msgstr ""
+msgstr "Pikselowy modus"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7636,7 +7753,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Arrange"
-msgstr ""
+msgstr "Rjadować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7645,7 +7762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comb~ine"
-msgstr ""
+msgstr "~Kombinować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7654,7 +7771,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector"
-msgstr ""
+msgstr "Zwjazowak"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7663,7 +7780,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bring ~Forward"
-msgstr ""
+msgstr "D~oprědka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7672,7 +7789,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Back~ward"
-msgstr ""
+msgstr "Do~zady"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7681,7 +7798,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Vertically"
-msgstr ""
+msgstr "~Padorunje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7690,7 +7807,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Horizontally"
-msgstr ""
+msgstr "W~odorunje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7699,7 +7816,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To ~Curve"
-msgstr ""
+msgstr "Do ~křiwki"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7708,7 +7825,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To ~Polygon"
-msgstr ""
+msgstr "Do po~lygon"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7717,7 +7834,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert Snap Point/Line..."
-msgstr ""
+msgstr "Łójenski dypk/łójensku liniju zasadźić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7726,7 +7843,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr ""
+msgstr "~Lineale"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7735,7 +7852,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "View ~Rulers"
-msgstr ""
+msgstr "~Lineale pokazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7744,7 +7861,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Layer"
-msgstr ""
+msgstr "Worštu zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7753,7 +7870,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Layer..."
-msgstr ""
+msgstr "~Woršta..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7762,7 +7879,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Insert Layer..."
-msgstr ""
+msgstr "Worštu ~zasadźić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7771,7 +7888,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Layout"
-msgstr ""
+msgstr "Folijowe w~uhotowanje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7780,7 +7897,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Modify Layer"
-msgstr ""
+msgstr "Worštu změnić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7789,7 +7906,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Layer..."
-msgstr ""
+msgstr "~Woršta..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7798,7 +7915,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Modify Layer..."
-msgstr ""
+msgstr "Worštu z~měnić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7807,7 +7924,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Normal"
-msgstr ""
+msgstr "~Normalny"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7816,7 +7933,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Layer"
-msgstr ""
+msgstr "~Woršta"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7825,7 +7942,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master"
-msgstr ""
+msgstr "~Mištr"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7834,7 +7951,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Effects"
-msgstr ""
+msgstr "Folijowe efekty"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7843,7 +7960,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoTransition"
-msgstr ""
+msgstr "Awtomatiski přechad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7852,7 +7969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Time"
-msgstr ""
+msgstr "Čas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7861,7 +7978,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector"
-msgstr ""
+msgstr "Zwjazowak"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7870,7 +7987,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Allow Interaction"
-msgstr ""
+msgstr "Interakciju dowolić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7879,7 +7996,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Animated Image..."
-msgstr ""
+msgstr "Animěrowany wobraz..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7888,7 +8005,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Interaction..."
-msgstr ""
+msgstr "~Interakcija..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7897,7 +8014,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Master D~esign..."
-msgstr ""
+msgstr "Mištrowa pře~dłoha..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7906,7 +8023,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Layout"
-msgstr ""
+msgstr "Folijowe wuhotowanje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7915,7 +8032,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Noticy"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7924,7 +8041,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Views"
-msgstr ""
+msgstr "Napohlady pokazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7933,7 +8050,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Napohlady ~rajtarkoweje lajsty"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7942,7 +8059,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Views Tab Bar Visibility"
-msgstr ""
+msgstr "Widźomnosć rajtarkoweje lajsty přepinać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7951,7 +8068,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Mištr ~cedlow do ruki"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7960,7 +8077,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "D~elete Page"
-msgstr ""
+msgstr "Stronu z~hašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7969,7 +8086,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Slide"
-msgstr ""
+msgstr "Foliju ~zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7978,7 +8095,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Layer"
-msgstr ""
+msgstr "Worštu zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7987,7 +8104,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spl~it"
-msgstr ""
+msgstr "Roz~dźělić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7996,7 +8113,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide/Layer"
-msgstr ""
+msgstr "Folija/woršta"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8005,7 +8122,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Layout"
-msgstr ""
+msgstr "Wuhotowanje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8014,7 +8131,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set in Circle (perspective)"
-msgstr ""
+msgstr "Na kruh stajić (perspektiwny)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8023,7 +8140,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set to circle (slant)"
-msgstr ""
+msgstr "Na kruh stajić (znašika stajić)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8032,7 +8149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set in Circle (distort)"
-msgstr ""
+msgstr "Na kruh stajić (skrjeslić)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8041,7 +8158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onnect"
-msgstr ""
+msgstr "~Zwjazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8050,7 +8167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Break"
-msgstr ""
+msgstr "Ła~mać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8059,7 +8176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Effects"
-msgstr ""
+msgstr "Efekty"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8068,7 +8185,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparenca"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8077,7 +8194,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gradient"
-msgstr ""
+msgstr "Přechod"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8086,7 +8203,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distort"
-msgstr ""
+msgstr "Skrjeslić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8095,7 +8212,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Be~hind Object"
-msgstr ""
+msgstr "~Za objekt"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8104,7 +8221,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Reverse"
-msgstr ""
+msgstr "W~uměnić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8113,7 +8230,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector Starts with Arrow"
-msgstr ""
+msgstr "Zwjazowak so ze šipku započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8122,7 +8239,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector Ends with Arrow"
-msgstr ""
+msgstr "Zwjazowak so ze šipku kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8131,7 +8248,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector with Arrows"
-msgstr ""
+msgstr "Zwjazowak ze šipkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8140,7 +8257,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector Starts with Circle"
-msgstr ""
+msgstr "Zwjazowak so z kružkom započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8149,7 +8266,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector Ends with Circle"
-msgstr ""
+msgstr "Zwjazowak so z kružkom kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8158,7 +8275,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector with Circles"
-msgstr ""
+msgstr "Zwjazowak z kružkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8167,7 +8284,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8176,7 +8293,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector"
-msgstr ""
+msgstr "Direktny zwjazowak"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8185,7 +8302,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rectangle"
-msgstr ""
+msgstr "Praworóžk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8194,7 +8311,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector starts with Arrow"
-msgstr ""
+msgstr "Direktny zwjazowak so ze šipku započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8203,7 +8320,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ellipse"
-msgstr ""
+msgstr "Elipsa"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8212,7 +8329,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector ends with Arrow"
-msgstr ""
+msgstr "Direktny zwjazowak so ze šipku kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8221,7 +8338,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector with Arrows"
-msgstr ""
+msgstr "Direktny zwjazowak ze šipkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8230,7 +8347,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector starts with Circle"
-msgstr ""
+msgstr "Direktny zwjazowak so z kružkom započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8239,7 +8356,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector ends with Circle"
-msgstr ""
+msgstr "Direktny zwjazowak so z kružkom kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8248,7 +8365,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Straight Connector with Circles"
-msgstr ""
+msgstr "Direktny zwjazowak z kružkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8257,7 +8374,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector"
-msgstr ""
+msgstr "Křiwkowy zwjazowak"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8266,7 +8383,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector Starts with Arrow"
-msgstr ""
+msgstr "Křiwkowy zwjazowak so ze šipku započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8275,7 +8392,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector Ends with Arrow"
-msgstr ""
+msgstr "Křiwkowy zwjazowak so ze šipku kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8284,7 +8401,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector with Arrows"
-msgstr ""
+msgstr "Křiwkowy zwjazowak ze šipkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8293,7 +8410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector Starts with Circle"
-msgstr ""
+msgstr "Křiwkowy zwjazowak so z kružkom započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8302,7 +8419,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector Ends with Circle"
-msgstr ""
+msgstr "Křiwkowy zwjazowak so z kružkom kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8311,7 +8428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved Connector with Circles"
-msgstr ""
+msgstr "Křiwkowy zwjazowak z kružkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8320,7 +8437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector"
-msgstr ""
+msgstr "Linijowy zwjazowak"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8329,7 +8446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector Starts with Arrow"
-msgstr ""
+msgstr "Linijowy zwjazowak so ze šipku započina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8338,7 +8455,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector Ends with Arrow"
-msgstr ""
+msgstr "Linijopwy zwjazowak so ze šipku kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8347,7 +8464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector with Arrows"
-msgstr ""
+msgstr "Linijowy zwjazowak ze šipkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8356,7 +8473,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector Starts with Circle"
-msgstr ""
+msgstr "Linijowy zwjazowak z kružkom"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8365,7 +8482,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector Ends with Circle"
-msgstr ""
+msgstr "Linijowy zwjazowak so z kružkom kónči"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8374,7 +8491,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Connector with Circles"
-msgstr ""
+msgstr "Linijowy zwjazowak z kružkami"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8383,7 +8500,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Image Placeholders"
-msgstr ""
+msgstr "Zastupowace symbole za wobrazy"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8392,7 +8509,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contour Mode"
-msgstr ""
+msgstr "Wobrysowy modus"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8401,7 +8518,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Placeholders"
-msgstr ""
+msgstr "Zastupowacy tekst"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8410,7 +8527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Contour Only"
-msgstr ""
+msgstr "Jenož wobrys"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8419,7 +8536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Modify Object with Attributes"
-msgstr ""
+msgstr "Objekt z atributami změnić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8428,7 +8545,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap to Snap Lines"
-msgstr ""
+msgstr "~Na łójenskich linijach łójić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8437,7 +8554,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Page Margins"
-msgstr ""
+msgstr "Na kromach strony łójić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8446,7 +8563,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Object Border"
-msgstr ""
+msgstr "Na objektowym ramiku łójić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8455,7 +8572,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Object Points"
-msgstr ""
+msgstr "Na objektowych dypkach łójić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8464,7 +8581,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Allow Quick Editing"
-msgstr ""
+msgstr "Spěšne wobdźěłowanje dowolić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8473,7 +8590,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Text Area Only"
-msgstr ""
+msgstr "Jenož tekstowy wobłuk wubrać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8482,7 +8599,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double-click to edit Text"
-msgstr ""
+msgstr "Klikńće dwójce, zo byšće tekst wobdźěłował"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8491,7 +8608,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Save..."
-msgstr ""
+msgstr "~Składować..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8500,7 +8617,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Replace..."
-msgstr ""
+msgstr "~Narunać..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8509,7 +8626,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Co~mpress..."
-msgstr ""
+msgstr "~Komprimować..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8518,7 +8635,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Background Image..."
-msgstr ""
+msgstr "Pozadkowy wobraz nastajić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8527,7 +8644,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Background Image..."
-msgstr ""
+msgstr "Pozadkowy wobraz składować..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8536,7 +8653,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Master Background"
-msgstr ""
+msgstr "Mištrowy pozadk zwobraznić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8545,7 +8662,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Master Objects"
-msgstr ""
+msgstr "Mištrowe objekty zwobraznić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8554,7 +8671,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~dit Style..."
-msgstr ""
+msgstr "Stil wob~dźěłać..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8563,7 +8680,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rotation Mode after Clicking Object"
-msgstr ""
+msgstr "Rotaciski modus po kliknjenju na objekt"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8572,7 +8689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr ""
+msgstr "Kiwknyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8581,7 +8698,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Master"
-msgstr ""
+msgstr "Nowy mištr"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8590,7 +8707,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Master"
-msgstr ""
+msgstr "Mištr zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8599,7 +8716,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename Master"
-msgstr ""
+msgstr "Mištr přemjenować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8608,7 +8725,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Close Master View"
-msgstr ""
+msgstr "Globalny napohlad začinić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8617,7 +8734,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~Microsoft PowerPoint Presentation..."
-msgstr ""
+msgstr "~Microsoft PowerPoint-Präsentation jako e-mejl..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8626,7 +8743,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~OpenDocument Presentation..."
-msgstr ""
+msgstr "Prezentacija ~OpenDocument jako e-mejl..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8635,7 +8752,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)"
-msgstr ""
+msgstr "Powjetšić a machać (STRG za pomjeńšenje, UMSCH za machanje)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8644,7 +8761,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Modify"
-msgstr ""
+msgstr "~Změnić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8653,7 +8770,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wor~kspace"
-msgstr ""
+msgstr "~Dźěłowy wobłuk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8662,7 +8779,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Flip"
-msgstr ""
+msgstr "~Kiwknyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8671,7 +8788,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pre~view Mode"
-msgstr ""
+msgstr "Přehladny modus"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8680,7 +8797,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "La~yer"
-msgstr ""
+msgstr "W~oršta"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8689,7 +8806,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Convert"
-msgstr ""
+msgstr "~Přetworić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8698,7 +8815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Arrange"
-msgstr ""
+msgstr "Po~rjad"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8707,7 +8824,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Color/Grayscale"
-msgstr ""
+msgstr "~Barba/Wotsćiny šěrje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8716,7 +8833,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Slide Show"
-msgstr ""
+msgstr "~Prezentacija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8725,7 +8842,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Group"
-msgstr ""
+msgstr "~Skupina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8734,7 +8851,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sen~d"
-msgstr ""
+msgstr "Pó~słać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8743,7 +8860,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styl~es"
-msgstr ""
+msgstr "Pře~dłohi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8752,7 +8869,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap Lines"
-msgstr ""
+msgstr "Łójenske ~linije"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8761,7 +8878,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master"
-msgstr ""
+msgstr "~Mištr"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8770,7 +8887,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Lay~outs"
-msgstr ""
+msgstr "Mištrowe wu~hotowanja"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8779,7 +8896,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master Elements..."
-msgstr ""
+msgstr "~Mištrowe elementy..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8788,7 +8905,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes Master Layout..."
-msgstr ""
+msgstr "Wuhotowanska předłoha za noticy..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8797,7 +8914,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Handout Master Layout..."
-msgstr ""
+msgstr "Wuhotowanska předłoha za cedle do ruki..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8806,7 +8923,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Header and Footer..."
-msgstr ""
+msgstr "~Hłowowa a nohowa linka..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8815,7 +8932,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "P~age Number..."
-msgstr ""
+msgstr "Čisło s~trony..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8824,7 +8941,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Date and ~Time..."
-msgstr ""
+msgstr "~Datum a čas..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8833,7 +8950,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Normal"
-msgstr ""
+msgstr "~Normalny"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8842,7 +8959,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sli~de Sorter"
-msgstr ""
+msgstr "Fo~lijowe sortěrowanje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8851,7 +8968,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Folijowy wo~błuk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8860,7 +8977,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Pane"
-msgstr ""
+msgstr "Wobłuk ~strony"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8869,7 +8986,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tas~k Pane"
-msgstr ""
+msgstr "Nadaw~kowy wobłuk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8878,7 +8995,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Cells"
-msgstr ""
+msgstr "Cele zwjazać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8887,7 +9004,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Cells"
-msgstr ""
+msgstr "Cele dźělić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8896,7 +9013,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimize"
-msgstr ""
+msgstr "Optiměrować"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8905,7 +9022,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Columns Evenly"
-msgstr ""
+msgstr "Špalty runostajnje rozměstnić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8914,7 +9031,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Rows Equally "
-msgstr ""
+msgstr "Linki runostajnje rozměstnić "
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8923,7 +9040,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row"
-msgstr ""
+msgstr "Linku zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8932,7 +9049,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Below"
-msgstr ""
+msgstr "Linku pod tym zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8941,7 +9058,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Above"
-msgstr ""
+msgstr "Linku nad tym zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8950,7 +9067,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Linki zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8959,7 +9076,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Rows..."
-msgstr ""
+msgstr "~Linki..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8968,7 +9085,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Rows..."
-msgstr ""
+msgstr "Linki zasadźić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8977,7 +9094,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column"
-msgstr ""
+msgstr "Špaltu zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8986,7 +9103,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Right"
-msgstr ""
+msgstr "Špaltu naprawo zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8995,7 +9112,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Left"
-msgstr ""
+msgstr "Špaltu nalěwo zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9004,7 +9121,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Columns"
-msgstr ""
+msgstr "Špalty zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9013,7 +9130,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Columns..."
-msgstr ""
+msgstr "Špa~lty..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9022,7 +9139,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Columns..."
-msgstr ""
+msgstr "Špalty zasadźić..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9031,7 +9148,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Row"
-msgstr ""
+msgstr "Linku zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9040,7 +9157,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Rows"
-msgstr ""
+msgstr "~Linki"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9049,7 +9166,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Delete Row"
-msgstr ""
+msgstr "Linku zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9058,7 +9175,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Column"
-msgstr ""
+msgstr "Špaltu zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9067,7 +9184,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Columns"
-msgstr ""
+msgstr "Špa~lty"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9076,7 +9193,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Delete Column"
-msgstr ""
+msgstr "Špaltu zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9085,7 +9202,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "Tabelu wubrać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9094,7 +9211,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr ""
+msgstr "~Tabela"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9103,7 +9220,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Column"
-msgstr ""
+msgstr "Špaltu wubrać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9112,7 +9229,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Columns"
-msgstr ""
+msgstr "Špa~lty"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9121,7 +9238,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Select Column"
-msgstr ""
+msgstr "Špaltu wubrać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9130,7 +9247,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Linki wubrać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9139,7 +9256,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Rows"
-msgstr ""
+msgstr "~Linki"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9148,7 +9265,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Linki wubrać"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9157,7 +9274,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ta~ble Properties..."
-msgstr ""
+msgstr "Ta~belowe kajkosće..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9166,7 +9283,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9175,7 +9292,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "So~rt..."
-msgstr ""
+msgstr "S~ortěrować..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9184,7 +9301,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Table..."
-msgstr ""
+msgstr "~Tabela..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9193,7 +9310,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Underline "
-msgstr ""
+msgstr "Dwójce podšmórnyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9202,7 +9319,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comme~nt"
-msgstr ""
+msgstr "~Komentar"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9211,7 +9328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Comment"
-msgstr ""
+msgstr "Komentar ~zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9220,7 +9337,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete ~All Comments"
-msgstr ""
+msgstr "~Wšě komentary zhašeć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9229,7 +9346,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Next Comment"
-msgstr ""
+msgstr "Přichodny komentar"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9238,7 +9355,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Previous Comment"
-msgstr ""
+msgstr "Předchadny komentar"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9247,7 +9364,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Autofit Text"
-msgstr ""
+msgstr "Tekst awtomatisce přiměrić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9256,7 +9373,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Slide"
-msgstr ""
+msgstr "Foliju zasadźić"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9265,7 +9382,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Minimize ~Presentation..."
-msgstr ""
+msgstr "~Prezentaciju miniměrować..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9274,7 +9391,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to First Page"
-msgstr ""
+msgstr "K prěnjej stronje přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9283,7 +9400,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To First Page"
-msgstr ""
+msgstr "K prěnjej stronje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9292,7 +9409,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to First Slide"
-msgstr ""
+msgstr "K prěnjej foliji přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9301,7 +9418,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To First Slide"
-msgstr ""
+msgstr "K prěnjej foliji"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9310,7 +9427,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Previous Page"
-msgstr ""
+msgstr "K předchadnej stronje přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9319,7 +9436,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Previous Page"
-msgstr ""
+msgstr "K předchadnej stronje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9328,7 +9445,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Previous Slide"
-msgstr ""
+msgstr "K předchadnej foliji přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9337,7 +9454,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Previous Slide"
-msgstr ""
+msgstr "K předchadnej foliji"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9346,7 +9463,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Next Page"
-msgstr ""
+msgstr "K přichodnej stronje přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9355,7 +9472,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Next Page"
-msgstr ""
+msgstr "K přichodnej stronje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9364,7 +9481,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Next Slide"
-msgstr ""
+msgstr "K přichodnej foliji přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9373,7 +9490,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Next Slide"
-msgstr ""
+msgstr "K přichodnej foliji"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9382,7 +9499,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Last Page"
-msgstr ""
+msgstr "K poslednjej stronje přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9391,7 +9508,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Last Page"
-msgstr ""
+msgstr "K poslednjej stronje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9400,7 +9517,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Last Slide"
-msgstr ""
+msgstr "K poslednjej foliji přeńć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9409,7 +9526,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Last Slide"
-msgstr ""
+msgstr "K poslednjej foliji"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9418,7 +9535,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page to Start"
-msgstr ""
+msgstr "Stronu na spočatk přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9427,7 +9544,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page to Start"
-msgstr ""
+msgstr "Strona na spočatk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9436,7 +9553,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide to Start"
-msgstr ""
+msgstr "Foliju na spočatk přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9445,7 +9562,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide to Start"
-msgstr ""
+msgstr "Folija na spočatk"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9454,7 +9571,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page Up"
-msgstr ""
+msgstr "Stronu horje přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9463,7 +9580,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page Up"
-msgstr ""
+msgstr "Strona horje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9472,7 +9589,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide Up"
-msgstr ""
+msgstr "Foliju horje přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9481,7 +9598,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Up"
-msgstr ""
+msgstr "Folija horje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9490,7 +9607,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page Down"
-msgstr ""
+msgstr "Stronu dele přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9499,7 +9616,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page Down"
-msgstr ""
+msgstr "Strona dele"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9508,7 +9625,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide Down"
-msgstr ""
+msgstr "Foliju dele přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9517,7 +9634,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Down"
-msgstr ""
+msgstr "Folija dele"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9526,7 +9643,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page to End"
-msgstr ""
+msgstr "Stronu na kónc přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9535,7 +9652,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page to End"
-msgstr ""
+msgstr "Strona na kónc"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9544,7 +9661,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Slide to End"
-msgstr ""
+msgstr "Foliju na kónc přesunyć"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9553,7 +9670,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide to End"
-msgstr ""
+msgstr "Folija na kónc"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9562,7 +9679,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Blank Slide"
-msgstr ""
+msgstr "Prózdna folija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9571,7 +9688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Only"
-msgstr ""
+msgstr "Jenož titul"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9580,7 +9697,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Titulna folija"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9589,7 +9706,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content"
-msgstr ""
+msgstr "Titul a wobsah"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9598,7 +9715,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Centered Text"
-msgstr ""
+msgstr "Centrowany tekst"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9607,7 +9724,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title and 2 Content"
-msgstr ""
+msgstr "Titul a 2 wobsahaj"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9616,7 +9733,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content and 2 Content"
-msgstr ""
+msgstr "Titul, wobsah a 2 wobsahaj"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9625,7 +9742,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Content and Content"
-msgstr ""
+msgstr "Titul, 2 wobsahaj a wobsah"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9634,7 +9751,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content over Content"
-msgstr ""
+msgstr "Titul, wobsah nad wobsahom"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9643,7 +9760,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Content over Content"
-msgstr ""
+msgstr "Titul, 2 wobsahaj nad wobsahom"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9652,7 +9769,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 4 Content"
-msgstr ""
+msgstr "Titul, 4 wobsahi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9661,7 +9778,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 6 Content"
-msgstr ""
+msgstr "Titul, 6 wobsahow"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9670,7 +9787,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Vertical Text"
-msgstr ""
+msgstr "Padoruny titul, padoruny tekst"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9679,7 +9796,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Text, Chart"
-msgstr ""
+msgstr "Padoruny titul, tekst, diagram"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9688,7 +9805,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Vertical Text"
-msgstr ""
+msgstr "Titul, padoruny tekst"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9697,7 +9814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Vertical Text, Clipart"
-msgstr ""
+msgstr "Titul, 2 padorunej tekstaj, wupyšny wobraz"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9706,7 +9823,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Layout"
-msgstr ""
+msgstr "Folijowe wuhotowanje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9715,7 +9832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pag~e"
-msgstr ""
+msgstr "~Strona"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9724,7 +9841,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slid~e Features"
-msgstr ""
+msgstr "~Folijowe funkcije"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9733,7 +9850,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Cell"
-msgstr ""
+msgstr "~Cela"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9742,7 +9859,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Row"
-msgstr ""
+msgstr "~Linka"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9751,7 +9868,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mn"
-msgstr ""
+msgstr "Špa~lta"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9760,7 +9877,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Presentation ~Object..."
-msgstr ""
+msgstr "~Prezentaciski objekt..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9769,7 +9886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hanging Indent"
-msgstr ""
+msgstr "Wisace zasunjenje"
#: DrawWindowState.xcu
msgctxt ""
@@ -9778,7 +9895,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Object"
-msgstr ""
+msgstr "3D-objekt"
#: DrawWindowState.xcu
msgctxt ""
@@ -9787,7 +9904,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene"
-msgstr ""
+msgstr "3D-scena"
#: DrawWindowState.xcu
msgctxt ""
@@ -9796,7 +9913,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene (group)"
-msgstr ""
+msgstr "3D-scena (skupina)"
#: DrawWindowState.xcu
msgctxt ""
@@ -9805,7 +9922,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Connector/Freeform Line"
-msgstr ""
+msgstr "Zwjazowak/wolnoručna linja"
#: DrawWindowState.xcu
msgctxt ""
@@ -9814,7 +9931,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Curve"
-msgstr ""
+msgstr "Křiwka"
#: DrawWindowState.xcu
msgctxt ""
@@ -9823,7 +9940,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shape"
-msgstr ""
+msgstr "Twar"
#: DrawWindowState.xcu
msgctxt ""
@@ -9832,7 +9949,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Shape Text"
-msgstr ""
+msgstr "Tekst twara"
#: DrawWindowState.xcu
msgctxt ""
@@ -9841,7 +9958,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Control"
-msgstr ""
+msgstr "Formularny wodźenski element"
#: DrawWindowState.xcu
msgctxt ""
@@ -9850,7 +9967,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr ""
+msgstr "Formatowanje tekstoweho pola"
#: DrawWindowState.xcu
msgctxt ""
@@ -9859,7 +9976,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Glue Point"
-msgstr ""
+msgstr "Lěpjaty dypk"
#: DrawWindowState.xcu
msgctxt ""
@@ -9868,7 +9985,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image"
-msgstr ""
+msgstr "Wobraz"
#: DrawWindowState.xcu
msgctxt ""
@@ -9877,7 +9994,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Group"
-msgstr ""
+msgstr "Skupina"
#: DrawWindowState.xcu
msgctxt ""
@@ -9886,7 +10003,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Layer Tabs bar"
-msgstr ""
+msgstr "Symbolowa lajsta worštow"
#: DrawWindowState.xcu
msgctxt ""
@@ -9895,7 +10012,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Line/Arrow"
-msgstr ""
+msgstr "Linija/šipka"
#: DrawWindowState.xcu
msgctxt ""
@@ -9904,7 +10021,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Dimension Line"
-msgstr ""
+msgstr "Měrjenska linija"
#: DrawWindowState.xcu
msgctxt ""
@@ -9913,7 +10030,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Media"
-msgstr ""
+msgstr "Medije"
#: DrawWindowState.xcu
msgctxt ""
@@ -9922,7 +10039,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Multiple Selection"
-msgstr ""
+msgstr "Wjacory wuběr"
#: DrawWindowState.xcu
msgctxt ""
@@ -9931,7 +10048,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OLE Object"
-msgstr ""
+msgstr "OLE-objekt"
#: DrawWindowState.xcu
msgctxt ""
@@ -9940,7 +10057,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page"
-msgstr ""
+msgstr "Strona"
#: DrawWindowState.xcu
msgctxt ""
@@ -9949,7 +10066,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Pane"
-msgstr ""
+msgstr "Wobłuk strony"
#: DrawWindowState.xcu
msgctxt ""
@@ -9958,7 +10075,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Pane (no selection)"
-msgstr ""
+msgstr "Wobłuk strony (žadyn wuběr)"
#: DrawWindowState.xcu
msgctxt ""
@@ -9967,7 +10084,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane"
-msgstr ""
+msgstr "Wobłuk folijoweho mištra"
#: DrawWindowState.xcu
msgctxt ""
@@ -9976,7 +10093,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr ""
+msgstr "Wobłuk folijoweho mištra (žadyn wuběr)"
#: DrawWindowState.xcu
msgctxt ""
@@ -9985,7 +10102,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#: DrawWindowState.xcu
msgctxt ""
@@ -9994,7 +10111,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Text"
-msgstr ""
+msgstr "Tabelowy tekst"
#: DrawWindowState.xcu
msgctxt ""
@@ -10003,7 +10120,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box (drawing)"
-msgstr ""
+msgstr "Tekstowe polo (rysowanka)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10012,7 +10129,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D-Settings"
-msgstr ""
+msgstr "3D-nastajenja"
#: DrawWindowState.xcu
msgctxt ""
@@ -10021,7 +10138,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image"
-msgstr ""
+msgstr "Wobraz"
#: DrawWindowState.xcu
msgctxt ""
@@ -10030,7 +10147,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Options"
-msgstr ""
+msgstr "Nastajenja"
#: DrawWindowState.xcu
msgctxt ""
@@ -10039,7 +10156,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: DrawWindowState.xcu
msgctxt ""
@@ -10048,7 +10165,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr ""
+msgstr "Pytać"
#: DrawWindowState.xcu
msgctxt ""
@@ -10057,7 +10174,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Line and Filling"
-msgstr ""
+msgstr "Linija a pjelnjenka"
#: DrawWindowState.xcu
msgctxt ""
@@ -10066,7 +10183,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Drawing"
-msgstr ""
+msgstr "Rysowanka"
#: DrawWindowState.xcu
msgctxt ""
@@ -10075,7 +10192,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D-Objects"
-msgstr ""
+msgstr "3D-objekty"
#: DrawWindowState.xcu
msgctxt ""
@@ -10084,7 +10201,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Align Objects"
-msgstr ""
+msgstr "Objekty wusměrić"
#: DrawWindowState.xcu
msgctxt ""
@@ -10093,7 +10210,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Arrows"
-msgstr ""
+msgstr "Šipki"
#: DrawWindowState.xcu
msgctxt ""
@@ -10102,7 +10219,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Points"
-msgstr ""
+msgstr "Dypki wobdźěłać"
#: DrawWindowState.xcu
msgctxt ""
@@ -10111,7 +10228,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mode"
-msgstr ""
+msgstr "Modus"
#: DrawWindowState.xcu
msgctxt ""
@@ -10120,7 +10237,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Connectors"
-msgstr ""
+msgstr "Zwjazowaki"
#: DrawWindowState.xcu
msgctxt ""
@@ -10129,7 +10246,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Circles and Ovals"
-msgstr ""
+msgstr "Kružki a elipsy (zestarjene)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10138,7 +10255,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Fontwork"
-msgstr ""
+msgstr "Fontwork"
#: DrawWindowState.xcu
msgctxt ""
@@ -10147,7 +10264,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Fontwork Shape"
-msgstr ""
+msgstr "Twar fontwork"
#: DrawWindowState.xcu
msgctxt ""
@@ -10156,7 +10273,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr ""
+msgstr "Formatowanje tekstoweho pola"
#: DrawWindowState.xcu
msgctxt ""
@@ -10165,7 +10282,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Filter"
-msgstr ""
+msgstr "Formularny filter"
#: DrawWindowState.xcu
msgctxt ""
@@ -10174,7 +10291,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Navigation"
-msgstr ""
+msgstr "Formularna nawigacija"
#: DrawWindowState.xcu
msgctxt ""
@@ -10183,7 +10300,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Controls"
-msgstr ""
+msgstr "Formularne wodźenske elementy"
#: DrawWindowState.xcu
msgctxt ""
@@ -10192,7 +10309,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "More Controls"
-msgstr ""
+msgstr "Dalše wodźenske elementy"
#: DrawWindowState.xcu
msgctxt ""
@@ -10201,7 +10318,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Form Design"
-msgstr ""
+msgstr "Formularny naćisk"
#: DrawWindowState.xcu
msgctxt ""
@@ -10210,7 +10327,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Glue Points"
-msgstr ""
+msgstr "Lěpjate dypki"
#: DrawWindowState.xcu
msgctxt ""
@@ -10219,7 +10336,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Image Filter"
-msgstr ""
+msgstr "Wobrazowy filter"
#: DrawWindowState.xcu
msgctxt ""
@@ -10228,7 +10345,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Insert"
-msgstr ""
+msgstr "Zasadźić"
#: DrawWindowState.xcu
msgctxt ""
@@ -10237,7 +10354,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines"
-msgstr ""
+msgstr "Linije"
#: DrawWindowState.xcu
msgctxt ""
@@ -10246,7 +10363,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Position"
-msgstr ""
+msgstr "Pozicija"
#: DrawWindowState.xcu
msgctxt ""
@@ -10255,7 +10372,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Rectangles"
-msgstr ""
+msgstr "Praworóžki (zestarjene)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10264,7 +10381,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: DrawWindowState.xcu
msgctxt ""
@@ -10273,7 +10390,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Formatting"
-msgstr ""
+msgstr "Tekstowe formatowanje"
#: DrawWindowState.xcu
msgctxt ""
@@ -10282,7 +10399,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#: DrawWindowState.xcu
msgctxt ""
@@ -10291,7 +10408,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Skalowanje"
#: DrawWindowState.xcu
msgctxt ""
@@ -10300,7 +10417,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "Standardne twary"
#: DrawWindowState.xcu
msgctxt ""
@@ -10309,7 +10426,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Block Arrows"
-msgstr ""
+msgstr "Blokowe šipki"
#: DrawWindowState.xcu
msgctxt ""
@@ -10318,7 +10435,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flowchart"
-msgstr ""
+msgstr "Běžaty diagram"
#: DrawWindowState.xcu
msgctxt ""
@@ -10327,7 +10444,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Symbol Shapes"
-msgstr ""
+msgstr "Symbolowe twary"
#: DrawWindowState.xcu
msgctxt ""
@@ -10336,7 +10453,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Callouts"
-msgstr ""
+msgstr "Legendy"
#: DrawWindowState.xcu
msgctxt ""
@@ -10345,7 +10462,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Stars and Banners"
-msgstr ""
+msgstr "Hwěžki a chorhoje"
#: DrawWindowState.xcu
msgctxt ""
@@ -10354,7 +10471,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Full Screen"
-msgstr ""
+msgstr "Połna wobrazowka"
#: DrawWindowState.xcu
msgctxt ""
@@ -10363,7 +10480,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr ""
+msgstr "Standard (napohladny modus)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10372,7 +10489,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Media Playback"
-msgstr ""
+msgstr "Wothrawanje medijow"
#: DrawWindowState.xcu
msgctxt ""
@@ -10381,7 +10498,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Color"
-msgstr ""
+msgstr "Barba"
#: DrawWindowState.xcu
msgctxt ""
@@ -10390,7 +10507,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentary"
#: DrawWindowState.xcu
msgctxt ""
@@ -10399,7 +10516,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Master View"
-msgstr ""
+msgstr "Mištrowy napohlad"
#: DrawWindowState.xcu
msgctxt ""
@@ -10408,7 +10525,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr ""
+msgstr "Optiměrować"
#: Effects.xcu
msgctxt ""
@@ -10417,7 +10534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Appear"
-msgstr ""
+msgstr "Jewić so"
#: Effects.xcu
msgctxt ""
@@ -10426,7 +10543,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fly In"
-msgstr ""
+msgstr "Zalećeć"
#: Effects.xcu
msgctxt ""
@@ -10435,7 +10552,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian Blinds"
-msgstr ""
+msgstr "Žaluzija"
#: Effects.xcu
msgctxt ""
@@ -10444,7 +10561,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Box"
-msgstr ""
+msgstr "Kašćik"
#: Effects.xcu
msgctxt ""
@@ -10453,7 +10570,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Checkerboard"
-msgstr ""
+msgstr "Šachownica"
#: Effects.xcu
msgctxt ""
@@ -10462,7 +10579,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Circle"
-msgstr ""
+msgstr "Kružk"
#: Effects.xcu
msgctxt ""
@@ -10471,7 +10588,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Padoruna elipsa"
#: Effects.xcu
msgctxt ""
@@ -10480,7 +10597,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fly in Slow"
-msgstr ""
+msgstr "Pomału zalećeć"
#: Effects.xcu
msgctxt ""
@@ -10489,7 +10606,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Diamond"
-msgstr ""
+msgstr "Kósnik"
#: Effects.xcu
msgctxt ""
@@ -10498,7 +10615,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dissolve In"
-msgstr ""
+msgstr "Rozpušćić"
#: Effects.xcu
msgctxt ""
@@ -10507,7 +10624,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fade In"
-msgstr ""
+msgstr "Mjechke jewjenje"
#: Effects.xcu
msgctxt ""
@@ -10516,7 +10633,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flash Once"
-msgstr ""
+msgstr "Jónkróćny zabłysk"
#: Effects.xcu
msgctxt ""
@@ -10525,7 +10642,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Peek In"
-msgstr ""
+msgstr "Nutř kuknyć"
#: Effects.xcu
msgctxt ""
@@ -10534,7 +10651,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Plus"
-msgstr ""
+msgstr "Plus"
#: Effects.xcu
msgctxt ""
@@ -10543,7 +10660,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random Bars"
-msgstr ""
+msgstr "Připadne hrjady"
#: Effects.xcu
msgctxt ""
@@ -10552,7 +10669,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spiral In"
-msgstr ""
+msgstr "Spirala nutř"
#: Effects.xcu
msgctxt ""
@@ -10561,7 +10678,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split"
-msgstr ""
+msgstr "Dźělić"
#: Effects.xcu
msgctxt ""
@@ -10570,7 +10687,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stretchy"
-msgstr ""
+msgstr "Rozćahnyć"
#: Effects.xcu
msgctxt ""
@@ -10579,7 +10696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Diagonal Squares"
-msgstr ""
+msgstr "Diagonalne kwadraty"
#: Effects.xcu
msgctxt ""
@@ -10588,7 +10705,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Swivel"
-msgstr ""
+msgstr "Wjerćeć"
#: Effects.xcu
msgctxt ""
@@ -10597,7 +10714,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wedge"
-msgstr ""
+msgstr "Klin"
#: Effects.xcu
msgctxt ""
@@ -10606,7 +10723,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wheel"
-msgstr ""
+msgstr "Koleso"
#: Effects.xcu
msgctxt ""
@@ -10615,7 +10732,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wipe"
-msgstr ""
+msgstr "Trěć"
#: Effects.xcu
msgctxt ""
@@ -10624,7 +10741,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Skalowanje"
#: Effects.xcu
msgctxt ""
@@ -10633,7 +10750,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random Effects"
-msgstr ""
+msgstr "Připadne efekty"
#: Effects.xcu
msgctxt ""
@@ -10642,7 +10759,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Boomerang"
-msgstr ""
+msgstr "Bumerang"
#: Effects.xcu
msgctxt ""
@@ -10651,7 +10768,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bounce"
-msgstr ""
+msgstr "Skakać"
#: Effects.xcu
msgctxt ""
@@ -10660,7 +10777,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colored Lettering"
-msgstr ""
+msgstr "Wobarbjene pismo"
#: Effects.xcu
msgctxt ""
@@ -10669,7 +10786,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Movie Credits"
-msgstr ""
+msgstr "Zadnje titule filma"
#: Effects.xcu
msgctxt ""
@@ -10678,7 +10795,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ease In"
-msgstr ""
+msgstr "So nutř sunyć"
#: Effects.xcu
msgctxt ""
@@ -10687,7 +10804,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Float"
-msgstr ""
+msgstr "Płuwać"
#: Effects.xcu
msgctxt ""
@@ -10696,7 +10813,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Turn and Grow"
-msgstr ""
+msgstr "Wobroćić a rosć"
#: Effects.xcu
msgctxt ""
@@ -10705,7 +10822,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Put on the Brakes"
-msgstr ""
+msgstr "Borzdźić"
#: Effects.xcu
msgctxt ""
@@ -10714,7 +10831,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pinwheel"
-msgstr ""
+msgstr "Wětrnik"
#: Effects.xcu
msgctxt ""
@@ -10723,7 +10840,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rise Up"
-msgstr ""
+msgstr "Zběhnyć"
#: Effects.xcu
msgctxt ""
@@ -10732,7 +10849,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Falling In"
-msgstr ""
+msgstr "Nutř padać"
#: Effects.xcu
msgctxt ""
@@ -10741,7 +10858,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Thread"
-msgstr ""
+msgstr "Nitka"
#: Effects.xcu
msgctxt ""
@@ -10750,7 +10867,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unfold"
-msgstr ""
+msgstr "Rozfałdować"
#: Effects.xcu
msgctxt ""
@@ -10759,7 +10876,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Whip"
-msgstr ""
+msgstr "Mjesć"
#: Effects.xcu
msgctxt ""
@@ -10768,7 +10885,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ascend"
-msgstr ""
+msgstr "Postupować"
#: Effects.xcu
msgctxt ""
@@ -10777,7 +10894,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center Revolve"
-msgstr ""
+msgstr "Spirala do srjedźišća"
#: Effects.xcu
msgctxt ""
@@ -10786,7 +10903,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fade in and Swivel"
-msgstr ""
+msgstr "Mjechke zablendowanje a wjerćeć"
#: Effects.xcu
msgctxt ""
@@ -10795,7 +10912,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Descend"
-msgstr ""
+msgstr "Spadować"
#: Effects.xcu
msgctxt ""
@@ -10804,7 +10921,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sling"
-msgstr ""
+msgstr "Wlečwo"
#: Effects.xcu
msgctxt ""
@@ -10813,7 +10930,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spin In"
-msgstr ""
+msgstr "Wjerćeć so"
#: Effects.xcu
msgctxt ""
@@ -10822,7 +10939,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Compress"
-msgstr ""
+msgstr "Komprimować"
#: Effects.xcu
msgctxt ""
@@ -10831,7 +10948,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Magnify"
-msgstr ""
+msgstr "Lupa"
#: Effects.xcu
msgctxt ""
@@ -10840,7 +10957,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curve Up"
-msgstr ""
+msgstr "Křiwka horje"
#: Effects.xcu
msgctxt ""
@@ -10849,7 +10966,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fade in and Zoom"
-msgstr ""
+msgstr "Mjechke zablendowanje a skalować"
#: Effects.xcu
msgctxt ""
@@ -10858,7 +10975,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glide"
-msgstr ""
+msgstr "Sunyć so"
#: Effects.xcu
msgctxt ""
@@ -10867,7 +10984,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Expand"
-msgstr ""
+msgstr "Rozćahnyć"
#: Effects.xcu
msgctxt ""
@@ -10876,7 +10993,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr ""
+msgstr "Kiwknyć"
#: Effects.xcu
msgctxt ""
@@ -10885,7 +11002,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fold"
-msgstr ""
+msgstr "Fałdować"
#: Effects.xcu
msgctxt ""
@@ -10894,7 +11011,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Fill Color"
-msgstr ""
+msgstr "Pjelnjensku barbu změnić"
#: Effects.xcu
msgctxt ""
@@ -10903,7 +11020,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Font"
-msgstr ""
+msgstr "Pismo změnić"
#: Effects.xcu
msgctxt ""
@@ -10912,7 +11029,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Font Color"
-msgstr ""
+msgstr "Pismowu barbu změnić"
#: Effects.xcu
msgctxt ""
@@ -10921,7 +11038,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Font Size"
-msgstr ""
+msgstr "Pismowu wulkosć změnić"
#: Effects.xcu
msgctxt ""
@@ -10930,7 +11047,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Font Style"
-msgstr ""
+msgstr "Pismowy rěz změnić"
#: Effects.xcu
msgctxt ""
@@ -10939,7 +11056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grow and Shrink"
-msgstr ""
+msgstr "Powjetšić a pomjeńšić"
#: Effects.xcu
msgctxt ""
@@ -10948,7 +11065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Line Color"
-msgstr ""
+msgstr "Linijowu barbu změnić"
#: Effects.xcu
msgctxt ""
@@ -10957,7 +11074,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spin"
-msgstr ""
+msgstr "Wjerćeć"
#: Effects.xcu
msgctxt ""
@@ -10966,7 +11083,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparenca"
#: Effects.xcu
msgctxt ""
@@ -26696,15 +26813,6 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/hsb/sc/source/ui/src.po b/source/hsb/sc/source/ui/src.po
index 770cfabf5ec..a7ee3e353aa 100644
--- a/source/hsb/sc/source/ui/src.po
+++ b/source/hsb/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-08 21:28+0000\n"
"Last-Translator: milupo <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2671,7 +2671,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2836,7 +2836,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/hsb/sfx2/source/view.po b/source/hsb/sfx2/source/view.po
index fe9fb5e6997..e5815a1f02a 100644
--- a/source/hsb/sfx2/source/view.po
+++ b/source/hsb/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-16 12:01+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -252,6 +252,14 @@ msgstr "Tutón dokument ma njepłaćiwu signaturu."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/hsb/svtools/source/control.po b/source/hsb/svtools/source/control.po
index a78e5ac5b51..2e28241d116 100644
--- a/source/hsb/svtools/source/control.po
+++ b/source/hsb/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-28 11:43+0000\n"
"Last-Translator: milupo <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "Čorny kursiwny"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/hsb/svtools/source/misc.po b/source/hsb/svtools/source/misc.po
index f0d3cf7e407..e787e1dda27 100644
--- a/source/hsb/svtools/source/misc.po
+++ b/source/hsb/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-16 12:38+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3179,10 +3179,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kitubašćina"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3904,6 +3904,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibešćina"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hsb/sw/source/core/undo.po b/source/hsb/sw/source/core/undo.po
index eedf7c65754..c7aafc68bb6 100644
--- a/source/hsb/sw/source/core/undo.po
+++ b/source/hsb/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-13 15:17+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -890,42 +890,82 @@ msgstr "łamanje špalty"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 zasadźić"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 zhašeć"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributy buchu změnjene"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabela je so změniła"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil je so změnił"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/hsb/sw/source/uibase/docvw.po b/source/hsb/sw/source/uibase/docvw.po
index 80633abe200..5439b0073a1 100644
--- a/source/hsb/sw/source/uibase/docvw.po
+++ b/source/hsb/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-10 13:27+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr "Nałožene wotstawkowe předłohi"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/hsb/sw/source/uibase/ribbar.po b/source/hsb/sw/source/uibase/ribbar.po
index c927d904bac..86f4e4db02d 100644
--- a/source/hsb/sw/source/uibase/ribbar.po
+++ b/source/hsb/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-08 20:39+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formlowy tekst"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/hsb/sw/source/uibase/uiview.po b/source/hsb/sw/source/uibase/uiview.po
index 95f3b16a886..7044991660c 100644
--- a/source/hsb/sw/source/uibase/uiview.po
+++ b/source/hsb/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-08 11:32+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr "Žórło ~eksportować..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/hsb/sw/uiconfig/swriter/ui.po b/source/hsb/sw/uiconfig/swriter/ui.po
index 3a0fcc5869e..283b362c9b1 100644
--- a/source/hsb/sw/uiconfig/swriter/ui.po
+++ b/source/hsb/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-29 21:38+0000\n"
+"PO-Revision-Date: 2017-06-07 21:24+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496093881.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496870646.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5327,7 +5327,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Wopisanje:"
#: frmaddpage.ui
msgctxt ""
@@ -7928,7 +7928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Komentar wobdźěłać..."
#: managechangessidebar.ui
msgctxt ""
@@ -7937,7 +7937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Sortěrować po"
#: managechangessidebar.ui
msgctxt ""
@@ -7946,7 +7946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Akcija"
#: managechangessidebar.ui
msgctxt ""
@@ -7955,7 +7955,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Awtor"
#: managechangessidebar.ui
msgctxt ""
@@ -7964,7 +7964,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: managechangessidebar.ui
msgctxt ""
@@ -7973,7 +7973,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Komentar"
#: managechangessidebar.ui
msgctxt ""
@@ -7982,7 +7982,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Dokumentowa pozicija"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11946,7 +11946,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Zwobraznjenski porjad LibreOffice 4.3 za zakótwjenja wužiwać (w aktualnym dokumenće)"
#: optcompatpage.ui
msgctxt ""
@@ -11955,7 +11955,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Wužiwarske nastajenja>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/hsb/xmlsecurity/uiconfig/ui.po b/source/hsb/xmlsecurity/uiconfig/ui.po
index 95ae80f09af..b1e97403a7a 100644
--- a/source/hsb/xmlsecurity/uiconfig/ui.po
+++ b/source/hsb/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-13 15:32+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -171,6 +171,15 @@ msgstr "Wotstronić"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/hu/accessibility/source/helper.po b/source/hu/accessibility/source/helper.po
index 76b85c9bff8..2a680c247b8 100644
--- a/source/hu/accessibility/source/helper.po
+++ b/source/hu/accessibility/source/helper.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-07-03 10:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-10 17:39+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1404381927.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116357.000000\n"
#: accessiblestrings.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"RID_STR_ACC_COLUMN_NUM\n"
"string.text"
msgid "Column %COLUMNNUMBER"
-msgstr ""
+msgstr "%COLUMNNUMBER. oszlop"
#: accessiblestrings.src
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"RID_STR_ACC_ROW_NUM\n"
"string.text"
msgid "Row %ROWNUMBER"
-msgstr ""
+msgstr "%ROWNUMBER. sor"
diff --git a/source/hu/avmedia/source/framework.po b/source/hu/avmedia/source/framework.po
index 4f9cc292f9d..0b525886d05 100644
--- a/source/hu/avmedia/source/framework.po
+++ b/source/hu/avmedia/source/framework.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-09 09:03+0000\n"
+"PO-Revision-Date: 2017-06-10 17:37+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483952639.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116246.000000\n"
#: mediacontrol.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"AVMEDIA_STR_LOOP\n"
"string.text"
msgid "Repeat"
-msgstr ""
+msgstr "Ismétlés"
#: mediacontrol.src
msgctxt ""
diff --git a/source/hu/basctl/uiconfig/basicide/ui.po b/source/hu/basctl/uiconfig/basicide/ui.po
index 17b285ef7ea..24e6ccc86d5 100644
--- a/source/hu/basctl/uiconfig/basicide/ui.po
+++ b/source/hu/basctl/uiconfig/basicide/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 23:02+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-10 17:44+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: none\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462143753.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116685.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Breakpoints..."
-msgstr ""
+msgstr "Töréspontok kezelése..."
#: breakpointmenus.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Active"
-msgstr ""
+msgstr "_Aktív"
#: breakpointmenus.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Properties..."
-msgstr ""
+msgstr "_Tulajdonságok…"
#: defaultlanguage.ui
msgctxt ""
diff --git a/source/hu/chart2/uiconfig/ui.po b/source/hu/chart2/uiconfig/ui.po
index 8e0663a733e..f09ad2ee68c 100644
--- a/source/hu/chart2/uiconfig/ui.po
+++ b/source/hu/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-09 10:19+0000\n"
+"PO-Revision-Date: 2017-06-10 17:47+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483957175.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116838.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Left"
-msgstr ""
+msgstr "Adatsor mozgatása balra"
#: chartdatadialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Right"
-msgstr ""
+msgstr "Adatsor mozgatása jobbra"
#: chartdatadialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Up"
-msgstr ""
+msgstr "Sor mozgatása felfelé"
#: chartdatadialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Down"
-msgstr ""
+msgstr "Sor mozgatása lefelé"
#: charttypedialog.ui
msgctxt ""
diff --git a/source/hu/cui/source/dialogs.po b/source/hu/cui/source/dialogs.po
index f68543b21b2..ce58ed62c4e 100644
--- a/source/hu/cui/source/dialogs.po
+++ b/source/hu/cui/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-08 20:31+0000\n"
+"PO-Revision-Date: 2017-06-20 10:36+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483907480.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497954996.000000\n"
#: cuires.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"RID_SVXSTR_BASICMACROS\n"
"string.text"
msgid "BASIC Macros"
-msgstr ""
+msgstr "BASIC-makrók"
#: cuires.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"RID_SVXSTR_GROUP_STYLES\n"
"string.text"
msgid "Styles"
-msgstr ""
+msgstr "Stílusok"
#: fmsearch.src
msgctxt ""
diff --git a/source/hu/cui/source/tabpages.po b/source/hu/cui/source/tabpages.po
index 16ae1c78c14..68cbd9c921f 100644
--- a/source/hu/cui/source/tabpages.po
+++ b/source/hu/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-08 20:31+0000\n"
+"PO-Revision-Date: 2017-06-20 14:39+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483907468.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497969557.000000\n"
#: border.src
msgctxt ""
@@ -387,7 +387,7 @@ msgctxt ""
"RID_SVXSTR_BOLD_UNDER\n"
"string.text"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr ""
+msgstr "Automatikus *félkövér*, /dőlt/ és _aláhúzott_"
#: strings.src
msgctxt ""
@@ -547,7 +547,7 @@ msgctxt ""
"RID_SVXSTR_STARTQUOTE\n"
"string.text"
msgid "Start Quote"
-msgstr ""
+msgstr "Kezdő idézőjel"
#: strings.src
msgctxt ""
@@ -555,4 +555,4 @@ msgctxt ""
"RID_SVXSTR_ENDQUOTE\n"
"string.text"
msgid "End Quote"
-msgstr ""
+msgstr "Záró idézőjel"
diff --git a/source/hu/cui/uiconfig/ui.po b/source/hu/cui/uiconfig/ui.po
index 98987dcf032..dcdc4176769 100644
--- a/source/hu/cui/uiconfig/ui.po
+++ b/source/hu/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-10 21:17+0000\n"
+"PO-Revision-Date: 2017-06-20 10:35+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484083022.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497954925.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "See Log: $GITHASH"
-msgstr ""
+msgstr "Lásd a naplót: $GITHASH"
#: aboutdialog.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copyright © 2000–2017 LibreOffice contributors."
-msgstr ""
+msgstr "Copyright © 2000 – 2017 a LibreOffice hozzájárulói."
#: aboutdialog.ui
msgctxt ""
@@ -2237,7 +2237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Tulajdonságok"
#: cellalignment.ui
msgctxt ""
@@ -5378,7 +5378,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Properties"
-msgstr ""
+msgstr "Táblázattulajdonságok"
#: formatcellsdialog.ui
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display as icon"
-msgstr ""
+msgstr "Megjelenítés ikonként"
#: insertoleobject.ui
msgctxt ""
@@ -7989,7 +7989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Átnevezés…"
#: menuassignpage.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "Alapértelmezett parancs visszaállítása"
#: menuassignpage.ui
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change Icon..."
-msgstr ""
+msgstr "Ikon módosítása…"
#: menuassignpage.ui
msgctxt ""
@@ -8016,7 +8016,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Icon"
-msgstr ""
+msgstr "Ikon visszaállítása"
#: menuassignpage.ui
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Átnevezés…"
#: menuassignpage.ui
msgctxt ""
@@ -8223,7 +8223,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Törlés"
#: menuassignpage.ui
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Western text only"
-msgstr ""
+msgstr "_Csak nyugati szöveg"
#: optasianpage.ui
msgctxt ""
@@ -10792,7 +10792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Complex _text layout:"
-msgstr ""
+msgstr "_Komplex szöveg:"
#: optlanguagespage.ui
msgctxt ""
diff --git a/source/hu/desktop/source/deployment/gui.po b/source/hu/desktop/source/deployment/gui.po
index 50ed9bfd4b6..c5a4edae348 100644
--- a/source/hu/desktop/source/deployment/gui.po
+++ b/source/hu/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 22:27+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-03-14 17:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467671273.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1426355027.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/hu/editeng/uiconfig/ui.po b/source/hu/editeng/uiconfig/ui.po
index 88c5447cec0..e057fe44d35 100644
--- a/source/hu/editeng/uiconfig/ui.po
+++ b/source/hu/editeng/uiconfig/ui.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-06-20 08:20+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: hu\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497946851.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -20,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_gnore All"
-msgstr ""
+msgstr "Mindent _mellőz"
#: spellmenu.ui
msgctxt ""
@@ -29,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_Hozzáadás a szótárhoz"
#: spellmenu.ui
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_Hozzáadás a szótárhoz"
#: spellmenu.ui
msgctxt ""
@@ -47,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr ""
+msgstr "_Helyesírás-ellenőrzés…"
#: spellmenu.ui
msgctxt ""
@@ -56,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoCorrect _To"
-msgstr ""
+msgstr "Aut_omatikus javítás erre"
#: spellmenu.ui
msgctxt ""
@@ -65,4 +68,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Correct Options..."
-msgstr ""
+msgstr "A_utomatikus javítás beállításai…"
diff --git a/source/hu/extensions/source/update/check/org/openoffice/Office.po b/source/hu/extensions/source/update/check/org/openoffice/Office.po
index d3aa5f9b77a..4f8769e04e1 100644
--- a/source/hu/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/hu/extensions/source/update/check/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-05-23 23:38+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-10 17:38+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352314.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116307.000000\n"
#: Addons.xcu
msgctxt ""
@@ -23,4 +23,4 @@ msgctxt ""
"Title\n"
"value.text"
msgid "~Check for Updates..."
-msgstr ""
+msgstr "~Frissítések keresése…"
diff --git a/source/hu/filter/source/config/fragments/filters.po b/source/hu/filter/source/config/fragments/filters.po
index 98c8ab2ee10..de4804f66bc 100644
--- a/source/hu/filter/source/config/fragments/filters.po
+++ b/source/hu/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-09 10:16+0000\n"
+"PO-Revision-Date: 2017-06-21 11:08+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483956992.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498043285.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO sorhalmaz XML"
#: AbiWord.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 1-4 and 95's"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4 és 95"
#: PublisherDocument.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Örökölt StarOffice bemutató"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/hu/filter/source/config/fragments/types.po b/source/hu/filter/source/config/fragments/types.po
index a94bc023076..5bdbfcfcd34 100644
--- a/source/hu/filter/source/config/fragments/types.po
+++ b/source/hu/filter/source/config/fragments/types.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2015-11-17 23:49+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-21 11:09+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447804173.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498043350.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO sorhalmaz XML"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/hu/filter/uiconfig/ui.po b/source/hu/filter/uiconfig/ui.po
index 7335f692b63..5586bf883c7 100644
--- a/source/hu/filter/uiconfig/ui.po
+++ b/source/hu/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-09 10:20+0000\n"
+"PO-Revision-Date: 2017-06-20 08:21+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483957208.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497946893.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "_Kijelölés/kijelölt munkalapok"
#: pdfgeneralpage.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Referencia XObject-ek használata"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared.po b/source/hu/helpcontent2/source/text/sbasic/shared.po
index f8279cc8f0e..339eff70e87 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-10 09:19+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Hibakódok</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Ez a futásidejű függvény a használandó alapértelmezett komponenskontextussal tér vissza, amikor az XmultiServiceFactory-n keresztül példányosít szolgáltatásokat. További információért lásd a <item type=\"literal\">Professional UNO</item> fejezetet a <item type=\"literal\">Developer's Guide</item> kézikönyvben az <link href=\"http://api.libreoffice.org\">api.openoffice.org</link> webhelyen."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/shared/00.po b/source/hu/helpcontent2/source/text/shared/00.po
index 0a76da0a87a..55fa346c388 100644
--- a/source/hu/helpcontent2/source/text/shared/00.po
+++ b/source/hu/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-03-16 23:37+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/hu/helpcontent2/source/text/shared/01.po b/source/hu/helpcontent2/source/text/shared/01.po
index 93298fe544d..4d85d672275 100644
--- a/source/hu/helpcontent2/source/text/shared/01.po
+++ b/source/hu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-08-31 08:19+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Válassza ki a bekezdésstílust vagy vázlatszintet, amelyet a forrásdokumentum aldokumentumokra választásánál kíván használni.</ahelp> Alapértelmezésben minden vázlatszinthez létrejön egy új dokumentum."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Válassza ki a Writer-dokumentum könyvjelzőinek exportálásához PDF-könyvjelzőkként. Minden vázlatszintű bekezdéshez (Eszközök - Vázlatszintek számozása) és minden tartalomjegyzék-bejegyzéshez, amelyhez hiperhivatkozás lett hozzárendelve a forrásdokumentumban, létrejön könyvjelző.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/shared/optionen.po b/source/hu/helpcontent2/source/text/shared/optionen.po
index 4008314ea37..4791ac2dd4f 100644
--- a/source/hu/helpcontent2/source/text/shared/optionen.po
+++ b/source/hu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-04-25 06:13+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/hu/helpcontent2/source/text/swriter.po b/source/hu/helpcontent2/source/text/swriter.po
index 38aa67a6e52..0b3d92b0ef2 100644
--- a/source/hu/helpcontent2/source/text/swriter.po
+++ b/source/hu/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-03-02 12:20+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Vázlatszintek számozása\">Vázlatszintek számozása</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/swriter/00.po b/source/hu/helpcontent2/source/text/swriter/00.po
index 088fdf32c84..d84a5b196c1 100644
--- a/source/hu/helpcontent2/source/text/swriter/00.po
+++ b/source/hu/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-01 14:32+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget.</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Válassza az <emph>Eszközök - Vázlatszintek számozása - Számozás</emph> fület. </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Válassza az <emph>Eszközök - Sorszámozás</emph> lehetőséget (kivéve HTML formátum)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/swriter/01.po b/source/hu/helpcontent2/source/text/swriter/01.po
index 716f8761bf1..04414493223 100644
--- a/source/hu/helpcontent2/source/text/swriter/01.po
+++ b/source/hu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-10-05 09:03+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Az <emph>1</emph>-es elemre kattintva a Navigátorban kizárólag a legfelső szintű címsorok fognak megjelenni, míg a <emph>10</emph>-es elemre kattintva az összes címsor megtekinthető.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Ha az „Elválasztó nélküli fejezetszám” értéket választja egy fejezetmezőnek, a fejezetszám számára az <link href=\"text/swriter/01/06060000.xhp\" name=\"Eszközök - Vázlatszintek számozása\"><emph>Eszközök - Vázlatszintek számozása</emph></link> menüben megadott elválasztók nem jelennek meg."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Beszúrja a fejezetszámot. Ha fejezetszámozást szeretne egy címsorstílushoz társítani, válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Vázlatszintek számozása"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Vázlatszintek számozása"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "A vázlatszintek számozása bekezdésstílusokhoz kötődik. Alapértelmezésben a \"Címsor\" bekezdésstílusok (1-10) a megfelelő vázlatszintekhez (1-10) vannak rendelve. Szükség esetén eltérő bekezdésstílusokat rendelhet hozzá az egyes vázlatszintekhez."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ha számozott címsorokat szeretne, válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget a számozás bekezdésstílushoz rendeléséhez. Ne használja a Formázás eszköztár Számozás ikonját."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Ha ki szeretné emelni a vázlatszint számozását a képernyőn, válassza a <emph>Nézet - </emph><emph>Mezők árnyalása</emph> lehetőséget."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Ment vagy betölt egy vázlatszámformátumot. A mentett vázlatszámformátumok minden szöveges dokumentumban rendelkezésre állnak.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "A <emph>Formátum</emph> gomb csak a vázlatszint-számozáshoz érhető el. A számozott illetve felsorolásjeles listákat a bekezdés Számozási stílusának módosításával lehet formázni."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">A megnyíló párbeszédablakban a kijelölt vázlatszint aktuális beállításait mentheti. Ezt követően ezeket a beállításokat akár egy másik dokumentumból is betöltheti.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Kattintson a módosítani kívánt vázlatszintre, majd határozza meg a szinthez tartozó számozási beállításokat.</ahelp> A számozási beállítások (a bekezdésstílus kivételével) összes vázlatszinthez való hozzárendeléséhez kattintson az \"1-10\" lehetőségre."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Válassza ki a kijelölt vázlatszinthez hozzárendelni kívánt bekezdésstílust.</ahelp> Ha a \"Nincs\" lehetőséget választja, akkor a kijelölt vázlatszint nem kerül meghatározásra."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Új címblokk"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Új címblokk"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Címzéselemek"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Címzéselem áthúzása az alsó mezőbe"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/swriter/guide.po b/source/hu/helpcontent2/source/text/swriter/guide.po
index 8c4bf093d3c..b0cff208e52 100644
--- a/source/hu/helpcontent2/source/text/swriter/guide.po
+++ b/source/hu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-08-31 08:35+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "A Navigátor segítségével átrendezheti egy dokumentum fejléceinek és az alájuk tartozó szövegrészek sorrendjét. A címsorszinteket elő is léptetheti vagy le is fokozhatja. A funkció használatához formázza a dokumentum címsorait az egyik előre definiált bekezdésstílussal. Egyedi bekezdésstílus címsorokhoz való használatához válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget, válassza ki a stílust a <emph>Bekezdésstílus</emph> mezőből, és kattintson duplán egy számra a <emph>Szintek</emph> listában."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Vázlatszintek számozása"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>vázlatszintek;számozás</bookmark_value> <bookmark_value>törlés;címsorszámozás</bookmark_value> <bookmark_value>fejezetszámozás</bookmark_value><bookmark_value>címsorok; számozás/bekezdésstílusok</bookmark_value><bookmark_value>számozás;címsorok</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Vázlatszintek számozása\">Vázlatszintek számozása</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Módosíthatja a címsorhierarchiát, vagy a hierarchiában egy címsorszintet rendelhet egy egyéni bekezdésstílushoz. Ezenkívül fejezet- és szakaszszámozást is hozzáadhat a címsor-bekezdésstílusokhoz. Alapértelmezésben a \"Címsor 1\" bekezdésstílus található a vázlathierarchia tetején."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Válassza az <item type=\"menuitem\">Eszközök - Vázlatszintek számozása</item> lehetőséget, majd kattintson a <item type=\"menuitem\">Számozás</item> fülre."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Az automatikus számozás címsorbekezdésről való eltávolításához"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Válassza az <item type=\"menuitem\">Eszközök - Vázlatszintek számozása</item> lehetőséget, majd kattintson a <item type=\"menuitem\">Számozás</item> fülre."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Mielőtt fejezetinformációt tudna beszúrni egy élőfejbe vagy élőlábba, meg kell határoznia a fejezetcímekhez használni kívánt bekezdésstílusokban a vázlatszintek számozásának beállításait."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>tárgymutató, bejegyzések megadása</bookmark_value> <bookmark_value>tartalomjegyzék; bejegyzések megadása</bookmark_value> <bookmark_value>bejegyzések; megadás tárgymutatókban/tartalomjegyzékekben</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Válassza a <emph>Beszúrás - Tartalomjegyzék és tárgymutató - Jegyzékbejegyzés</emph> lehetőséget, majd tegye az alábbiak egyikét:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget, majd kattintson a <emph>Számozás</emph> fülre."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Ha egy másik bekezdésstílust akar használni tartalomjegyzék-bejegyzésként, jelölje be a <item type=\"menuitem\">Stílusok</item> jelölőnégyzetet a <item type=\"menuitem\">Létrehozás forrása</item> területen, majd kattintson a jelölőnégyzet melletti <item type=\"menuitem\">Stílusok hozzárendelése</item> gombra. A <item type=\"menuitem\">Stílusok hozzárendelése</item> ablakban kattintson a stílusra a listában, majd a bekezdésstílus vázlatszintjének megadásához kattintson a <item type=\"menuitem\">>></item> vagy a <item type=\"menuitem\"><<</item> gombra."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>számozás; eltávolítás/megszakítás</bookmark_value> <bookmark_value>felsorolásjellel ellátott lista; megszakítás</bookmark_value> <bookmark_value>listák; számozás eltávolítása/megszakítása</bookmark_value> <bookmark_value>törlés;számozás listákban</bookmark_value> <bookmark_value>számozott listák megszakítása</bookmark_value> <bookmark_value>módosítás;számozás kezdőszáma listáknál</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ha számozott címsorokat szeretne, válassza az <emph>Eszközök - Vázlatszintek számozása</emph> lehetőséget a számozás bekezdésstílushoz rendeléséhez. Ne használja a Formázás eszköztár Számozás ikonját."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/hu/librelogo/source/pythonpath.po b/source/hu/librelogo/source/pythonpath.po
index 9f41aae5a47..76d2e7736f0 100644
--- a/source/hu/librelogo/source/pythonpath.po
+++ b/source/hu/librelogo/source/pythonpath.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2014-08-06 08:31+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-10 17:38+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: none\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1407313892.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116331.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"ERR_NAME\n"
"property.text"
msgid "Unknown name: “%s”."
-msgstr ""
+msgstr "Ismeretlen név: „%s”."
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
index f7df63be863..a12a7a6572d 100644
--- a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-19 00:36+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Témaválasztás"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Beszúrás…"
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "T~ulajdonságok…"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objektum…"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/hu/reportdesign/uiconfig/dbreport/ui.po b/source/hu/reportdesign/uiconfig/dbreport/ui.po
index af13d4e510a..91736abb101 100644
--- a/source/hu/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/hu/reportdesign/uiconfig/dbreport/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-08 20:34+0000\n"
+"PO-Revision-Date: 2017-06-10 17:41+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483907667.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116484.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -626,7 +626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Törlés"
#: navigatormenu.ui
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sorting and Grouping..."
-msgstr ""
+msgstr "Rendezés és csoportosítás…"
#: navigatormenu.ui
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Header/Footer..."
-msgstr ""
+msgstr "Oldal élőfej/élőláb…"
#: navigatormenu.ui
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Report Header/Footer..."
-msgstr ""
+msgstr "Jelentés élőfeje/élőlába…"
#: navigatormenu.ui
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Function"
-msgstr ""
+msgstr "Új függvény"
#: navigatormenu.ui
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Tulajdonságok..."
#: navigatormenu.ui
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Törlés"
#: pagedialog.ui
msgctxt ""
diff --git a/source/hu/sc/source/ui/src.po b/source/hu/sc/source/ui/src.po
index 3823ef7fb92..1a3d5edf507 100644
--- a/source/hu/sc/source/ui/src.po
+++ b/source/hu/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-10 23:56+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Tartomány áthelyezve: #1 --> #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Egymásba ágyazott tömbök nem támogatottak."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/hu/scp2/source/calc.po b/source/hu/scp2/source/calc.po
index 077e3cbf9c2..0c8fbd20113 100644
--- a/source/hu/scp2/source/calc.po
+++ b/source/hu/scp2/source/calc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-05-01 23:06+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-20 08:05+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462143960.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497945910.000000\n"
#: folderitem_calc.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WEBQUERY\n"
"LngText.text"
msgid "Microsoft Excel Web Query File"
-msgstr ""
+msgstr "Microsoft Excel-weblekérdezésfájl"
#: registryitem_calc.ulf
msgctxt ""
diff --git a/source/hu/scp2/source/ooo.po b/source/hu/scp2/source/ooo.po
index a9d1b88771e..fe8cedd6a83 100644
--- a/source/hu/scp2/source/ooo.po
+++ b/source/hu/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-09 10:07+0000\n"
+"PO-Revision-Date: 2017-06-20 08:10+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483956441.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497946204.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Felső szorb"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Telepíti a Felső szorb felhasználói felületet"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/hu/sd/source/core.po b/source/hu/sd/source/core.po
index 12d894f5b7d..c5a758763eb 100644
--- a/source/hu/sd/source/core.po
+++ b/source/hu/sd/source/core.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-01-09 11:25+0000\n"
+"PO-Revision-Date: 2017-06-17 22:59+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <kde-i18n-doc@kde.org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483961115.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497740399.000000\n"
#: glob.src
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"File format error found at $(ARG1)(row,col).\n"
"itemlist.text"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
+msgstr "Fájlformátumhiba ezen a helyen: $(ARG1)(sor, oszlop)."
#: glob.src
msgctxt ""
@@ -504,7 +504,7 @@ msgctxt ""
"Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col).\n"
"itemlist.text"
msgid "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col)."
-msgstr ""
+msgstr "Formátumhiba a fájlban, a(z) $(ARG1) aldokumentum $(ARG2)(sor,oszlop) helyén."
#: glob.src
msgctxt ""
diff --git a/source/hu/sd/source/ui/app.po b/source/hu/sd/source/ui/app.po
index 7682d2fe28c..b68f01eee08 100644
--- a/source/hu/sd/source/ui/app.po
+++ b/source/hu/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-01-09 11:25+0000\n"
+"PO-Revision-Date: 2017-06-17 22:58+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483961156.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497740334.000000\n"
#: res_bmp.src
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"STR_HTMLEXP_SETGRAPHIC\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Kép"
#: strings.src
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"STR_DRAW_GRAF_TOOLBOX\n"
"string.text"
msgid "Image Object Bar"
-msgstr ""
+msgstr "Képobjektum sáv"
#: strings.src
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"STR_UNDO_GRAFFILTER\n"
"string.text"
msgid "Image filter"
-msgstr ""
+msgstr "Képszűrő"
#: strings.src
msgctxt ""
@@ -2058,7 +2058,7 @@ msgctxt ""
"STR_GRAPHICS_STYLE_FAMILY\n"
"string.text"
msgid "Drawing Styles"
-msgstr ""
+msgstr "Rajzstílusok"
#: strings.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "A(z) „%FILENAME” helyi célkönyvtár nem üres. Néhány fájl esetleg felülíródhat. Biztosan folytatni kívánja a műveletet?"
#: toolbox.src
msgctxt ""
diff --git a/source/hu/sd/source/ui/view.po b/source/hu/sd/source/ui/view.po
index 615e86e25aa..d16f0b7ae75 100644
--- a/source/hu/sd/source/ui/view.po
+++ b/source/hu/sd/source/ui/view.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-07-11 12:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 22:59+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468239378.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497740340.000000\n"
#: DocumentRenderer.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_GROUP_NAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr ""
+msgstr "%PRODUCTNAME %s"
#: DocumentRenderer.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PRINT_GROUP\n"
"string.text"
msgid "Print"
-msgstr ""
+msgstr "Nyomtatás"
#: DocumentRenderer.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_CONTENT\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Dokumentum"
#: DocumentRenderer.src
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"Slides\n"
"itemlist.text"
msgid "Slides"
-msgstr ""
+msgstr "Diák"
#: DocumentRenderer.src
msgctxt ""
@@ -56,7 +56,7 @@ msgctxt ""
"Handouts\n"
"itemlist.text"
msgid "Handouts"
-msgstr ""
+msgstr "Emlékeztetők"
#: DocumentRenderer.src
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"Notes\n"
"itemlist.text"
msgid "Notes"
-msgstr ""
+msgstr "Jegyzetek"
#: DocumentRenderer.src
msgctxt ""
@@ -74,7 +74,7 @@ msgctxt ""
"Outline\n"
"itemlist.text"
msgid "Outline"
-msgstr ""
+msgstr "Vázlat"
#: DocumentRenderer.src
msgctxt ""
@@ -82,7 +82,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_SLIDESPERPAGE\n"
"string.text"
msgid "Slides per page"
-msgstr ""
+msgstr "Dia oldalanként"
#: DocumentRenderer.src
msgctxt ""
@@ -91,7 +91,7 @@ msgctxt ""
"According to layout\n"
"itemlist.text"
msgid "According to layout"
-msgstr ""
+msgstr "Elrendezés szerint"
#: DocumentRenderer.src
msgctxt ""
@@ -100,7 +100,7 @@ msgctxt ""
"1\n"
"itemlist.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: DocumentRenderer.src
msgctxt ""
@@ -109,7 +109,7 @@ msgctxt ""
"2\n"
"itemlist.text"
msgid "2"
-msgstr ""
+msgstr "2"
#: DocumentRenderer.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"3\n"
"itemlist.text"
msgid "3"
-msgstr ""
+msgstr "3"
#: DocumentRenderer.src
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"4\n"
"itemlist.text"
msgid "4"
-msgstr ""
+msgstr "4"
#: DocumentRenderer.src
msgctxt ""
@@ -136,7 +136,7 @@ msgctxt ""
"6\n"
"itemlist.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: DocumentRenderer.src
msgctxt ""
@@ -145,7 +145,7 @@ msgctxt ""
"9\n"
"itemlist.text"
msgid "9"
-msgstr ""
+msgstr "9"
#: DocumentRenderer.src
msgctxt ""
@@ -153,7 +153,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_ORDER\n"
"string.text"
msgid "Order"
-msgstr ""
+msgstr "Rendezés"
#: DocumentRenderer.src
msgctxt ""
@@ -162,7 +162,7 @@ msgctxt ""
"Left to right, then down\n"
"itemlist.text"
msgid "Left to right, then down"
-msgstr ""
+msgstr "Balról jobbra, majd le"
#: DocumentRenderer.src
msgctxt ""
@@ -171,7 +171,7 @@ msgctxt ""
"Top to bottom, then right\n"
"itemlist.text"
msgid "Top to bottom, then right"
-msgstr ""
+msgstr "Fentről lefelé, majd jobbra"
#: DocumentRenderer.src
msgctxt ""
@@ -179,7 +179,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT\n"
"string.text"
msgid "~Contents"
-msgstr ""
+msgstr "~Tartalom"
#: DocumentRenderer.src
msgctxt ""
@@ -187,7 +187,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_IS_PRINT_NAME\n"
"string.text"
msgid "~Slide name"
-msgstr ""
+msgstr "~Dia neve"
#: DocumentRenderer.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"STR_DRAW_PRINT_UI_IS_PRINT_NAME\n"
"string.text"
msgid "P~age name"
-msgstr ""
+msgstr "~Oldal neve"
#: DocumentRenderer.src
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_IS_PRINT_DATE\n"
"string.text"
msgid "~Date and time"
-msgstr ""
+msgstr "~Dátum és idő"
#: DocumentRenderer.src
msgctxt ""
@@ -211,7 +211,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN\n"
"string.text"
msgid "Hidden pages"
-msgstr ""
+msgstr "Rejtett oldalak"
#: DocumentRenderer.src
msgctxt ""
@@ -219,7 +219,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_QUALITY\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Szín"
#: DocumentRenderer.src
msgctxt ""
@@ -228,7 +228,7 @@ msgctxt ""
"Original colors\n"
"itemlist.text"
msgid "Original colors"
-msgstr ""
+msgstr "Eredeti színek"
#: DocumentRenderer.src
msgctxt ""
@@ -237,7 +237,7 @@ msgctxt ""
"Grayscale\n"
"itemlist.text"
msgid "Grayscale"
-msgstr ""
+msgstr "Szürkeárnyalatos"
#: DocumentRenderer.src
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"Black & white\n"
"itemlist.text"
msgid "Black & white"
-msgstr ""
+msgstr "Fekete-fehér"
#: DocumentRenderer.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAGE_OPTIONS\n"
"string.text"
msgid "~Size"
-msgstr ""
+msgstr "~Méret"
#: DocumentRenderer.src
msgctxt ""
@@ -263,7 +263,7 @@ msgctxt ""
"Original size\n"
"itemlist.text"
msgid "Original size"
-msgstr ""
+msgstr "Eredeti méret"
#: DocumentRenderer.src
msgctxt ""
@@ -272,7 +272,7 @@ msgctxt ""
"Fit to printable page\n"
"itemlist.text"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Igazítás az oldal méretéhez"
#: DocumentRenderer.src
msgctxt ""
@@ -281,7 +281,7 @@ msgctxt ""
"Distribute on multiple sheets of paper\n"
"itemlist.text"
msgid "Distribute on multiple sheets of paper"
-msgstr ""
+msgstr "Elosztás több papírlapra"
#: DocumentRenderer.src
msgctxt ""
@@ -290,7 +290,7 @@ msgctxt ""
"Tile sheet of paper with repeated slides\n"
"itemlist.text"
msgid "Tile sheet of paper with repeated slides"
-msgstr ""
+msgstr "Diák mozaikelrendezése a papírlapon"
#: DocumentRenderer.src
msgctxt ""
@@ -299,7 +299,7 @@ msgctxt ""
"Original size\n"
"itemlist.text"
msgid "Original size"
-msgstr ""
+msgstr "Eredeti méret"
#: DocumentRenderer.src
msgctxt ""
@@ -308,7 +308,7 @@ msgctxt ""
"Fit to printable page\n"
"itemlist.text"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Igazítás az oldal méretéhez"
#: DocumentRenderer.src
msgctxt ""
@@ -317,7 +317,7 @@ msgctxt ""
"Distribute on multiple sheets of paper\n"
"itemlist.text"
msgid "Distribute on multiple sheets of paper"
-msgstr ""
+msgstr "Elosztás több papírlapra"
#: DocumentRenderer.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"Tile sheet of paper with repeated pages\n"
"itemlist.text"
msgid "Tile sheet of paper with repeated pages"
-msgstr ""
+msgstr "Oldalak mozaikelrendezése a papírlapon"
#: DocumentRenderer.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_BROCHURE\n"
"string.text"
msgid "Brochure"
-msgstr ""
+msgstr "Brosúra"
#: DocumentRenderer.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAGE_SIDES\n"
"string.text"
msgid "Page sides"
-msgstr ""
+msgstr "Oldalak"
#: DocumentRenderer.src
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE\n"
"string.text"
msgid "Include"
-msgstr ""
+msgstr "Hatókör"
#: DocumentRenderer.src
msgctxt ""
@@ -359,7 +359,7 @@ msgctxt ""
"All pages\n"
"itemlist.text"
msgid "All pages"
-msgstr ""
+msgstr "Összes oldal"
#: DocumentRenderer.src
msgctxt ""
@@ -368,7 +368,7 @@ msgctxt ""
"Front sides / right pages\n"
"itemlist.text"
msgid "Front sides / right pages"
-msgstr ""
+msgstr "Előoldalak / páratlan oldalak"
#: DocumentRenderer.src
msgctxt ""
@@ -377,7 +377,7 @@ msgctxt ""
"Back sides / left pages\n"
"itemlist.text"
msgid "Back sides / left pages"
-msgstr ""
+msgstr "Hátoldalak / páros oldalak"
#: DocumentRenderer.src
msgctxt ""
@@ -385,7 +385,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAPER_TRAY\n"
"string.text"
msgid "~Use only paper tray from printer preferences"
-msgstr ""
+msgstr "Papírtálca-vá~lasztás a nyomtató beállításai szerint"
#: DocumentRenderer.src
msgctxt ""
@@ -393,7 +393,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAGE_RANGE\n"
"string.text"
msgid "Print range"
-msgstr ""
+msgstr "Nyomtatási tartomány"
#: DocumentRenderer.src
msgctxt ""
@@ -402,7 +402,7 @@ msgctxt ""
"~All slides\n"
"itemlist.text"
msgid "~All slides"
-msgstr ""
+msgstr "Ö~sszes dia"
#: DocumentRenderer.src
msgctxt ""
@@ -411,7 +411,7 @@ msgctxt ""
"~Slides\n"
"itemlist.text"
msgid "~Slides"
-msgstr ""
+msgstr "~Diák"
#: DocumentRenderer.src
msgctxt ""
@@ -420,7 +420,7 @@ msgctxt ""
"Se~lection\n"
"itemlist.text"
msgid "Se~lection"
-msgstr ""
+msgstr "~Kijelölés"
#: DocumentRenderer.src
msgctxt ""
@@ -429,7 +429,7 @@ msgctxt ""
"~All pages\n"
"itemlist.text"
msgid "~All pages"
-msgstr ""
+msgstr "Ö~sszes oldal"
#: DocumentRenderer.src
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"Pa~ges\n"
"itemlist.text"
msgid "Pa~ges"
-msgstr ""
+msgstr "Ol~dalak"
#: DocumentRenderer.src
msgctxt ""
@@ -447,4 +447,4 @@ msgctxt ""
"Se~lection\n"
"itemlist.text"
msgid "Se~lection"
-msgstr ""
+msgstr "~Kijelölés"
diff --git a/source/hu/sd/uiconfig/sdraw/ui.po b/source/hu/sd/uiconfig/sdraw/ui.po
index 3e92a15f620..703c457fb8e 100644
--- a/source/hu/sd/uiconfig/sdraw/ui.po
+++ b/source/hu/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-01-08 20:48+0000\n"
+"PO-Revision-Date: 2017-06-17 22:42+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: none\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483908535.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497739341.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Kiemelés"
#: insertlayer.ui
msgctxt ""
diff --git a/source/hu/sd/uiconfig/simpress/ui.po b/source/hu/sd/uiconfig/simpress/ui.po
index ee173f6bbed..83732155d16 100644
--- a/source/hu/sd/uiconfig/simpress/ui.po
+++ b/source/hu/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-01-08 22:57+0000\n"
+"PO-Revision-Date: 2017-06-17 22:42+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: none\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483916256.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497739323.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Reply"
-msgstr ""
+msgstr "_Válasz"
#: annotationmenu.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Bold"
-msgstr ""
+msgstr "_Félkövér"
#: annotationmenu.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Italic"
-msgstr ""
+msgstr "_Dőlt"
#: annotationmenu.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Underline"
-msgstr ""
+msgstr "A_láhúzott"
#: annotationmenu.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Strikethrough"
-msgstr ""
+msgstr "Á_thúzott"
#: annotationmenu.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "_Másolás"
#: annotationmenu.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Paste"
-msgstr ""
+msgstr "_Beillesztés"
#: annotationmenu.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete Comment"
-msgstr ""
+msgstr "M_egjegyzés törlése"
#: annotationmenu.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete All Comments b_y %1"
-msgstr ""
+msgstr "%1 min_den megjegyzésének törlése"
#: annotationmenu.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete _All Comments"
-msgstr ""
+msgstr "_Minden megjegyzés törlése"
#: annotationtagmenu.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Reply"
-msgstr ""
+msgstr "_Válasz"
#: annotationtagmenu.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete Comment"
-msgstr ""
+msgstr "M_egjegyzés törlése"
#: annotationtagmenu.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete All Comments b_y %1"
-msgstr ""
+msgstr "%1 min_den megjegyzésének törlése"
#: annotationtagmenu.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete _All Comments"
-msgstr ""
+msgstr "_Minden megjegyzés törlése"
#: currentmastermenu.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply to All Slides"
-msgstr ""
+msgstr "_Alkalmazás az összes diára"
#: currentmastermenu.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply to _Selected Slides"
-msgstr ""
+msgstr "Alkalmazás a _kijelölt diákra"
#: currentmastermenu.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit Master..."
-msgstr ""
+msgstr "Mint_a szerkesztése..."
#: currentmastermenu.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_elete Master"
-msgstr ""
+msgstr "_Minta törlése"
#: currentmastermenu.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _Large Preview"
-msgstr ""
+msgstr "Nagy _előnézet megjelenítése"
#: currentmastermenu.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show S_mall Preview"
-msgstr ""
+msgstr "Kis előnézet _megjelenítése"
#: customanimationeffecttab.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delay:"
-msgstr ""
+msgstr "_Késleltetés:"
#: customanimationspanel.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0.0"
-msgstr ""
+msgstr "0.0"
#: customanimationspanel.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delay:"
-msgstr ""
+msgstr "_Késleltetés:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0.0"
-msgstr ""
+msgstr "0.0"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start On _Click"
-msgstr ""
+msgstr "Indítás _kattintásra"
#: effectmenu.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start _With Previous"
-msgstr ""
+msgstr "Indítás az _előzővel"
#: effectmenu.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start _After Previous"
-msgstr ""
+msgstr "Indítás az előző _után"
#: effectmenu.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Effect Options..."
-msgstr ""
+msgstr "_Hatás beállításai…"
#: effectmenu.ui
msgctxt ""
@@ -1499,7 +1499,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Timing..."
-msgstr ""
+msgstr "_Időzítés…"
#: effectmenu.ui
msgctxt ""
@@ -1508,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Remove"
-msgstr ""
+msgstr "_Eltávolítás"
#: fontsizemenu.ui
msgctxt ""
@@ -1517,7 +1517,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiny"
-msgstr ""
+msgstr "Apró"
#: fontsizemenu.ui
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Smaller"
-msgstr ""
+msgstr "Kisebb"
#: fontsizemenu.ui
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Larger"
-msgstr ""
+msgstr "Nagyobb"
#: fontsizemenu.ui
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extra Large"
-msgstr ""
+msgstr "Nagyon nagy"
#: fontstylemenu.ui
msgctxt ""
@@ -1553,7 +1553,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bold"
-msgstr ""
+msgstr "Félkövér"
#: fontstylemenu.ui
msgctxt ""
@@ -1562,7 +1562,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Italic"
-msgstr ""
+msgstr "Dőlt"
#: fontstylemenu.ui
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Underlined"
-msgstr ""
+msgstr "Aláhúzott"
#: headerfooterdialog.ui
msgctxt ""
@@ -1841,7 +1841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply to _Selected Slides"
-msgstr ""
+msgstr "Alkalmazás a _kijelölt diákra"
#: layoutmenu.ui
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Insert Slide"
-msgstr ""
+msgstr "_Dia beszúrása"
#: masterlayoutdlg.ui
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply to All Slides"
-msgstr ""
+msgstr "_Alkalmazás az összes diára"
#: mastermenu.ui
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply to _Selected Slides"
-msgstr ""
+msgstr "Alkalmazás a _kijelölt diákra"
#: mastermenu.ui
msgctxt ""
@@ -1940,7 +1940,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _Large Preview"
-msgstr ""
+msgstr "Nagy _előnézet megjelenítése"
#: mastermenu.ui
msgctxt ""
@@ -1949,7 +1949,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show S_mall Preview"
-msgstr ""
+msgstr "Kis előnézet _megjelenítése"
#: navigatorpanel.ui
msgctxt ""
@@ -2408,7 +2408,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Szöveg"
#: notebookbar_groups.ui
msgctxt ""
@@ -4028,7 +4028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Quarter Spin"
-msgstr ""
+msgstr "Negyedfordulat"
#: rotatemenu.ui
msgctxt ""
@@ -4037,7 +4037,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Half Spin"
-msgstr ""
+msgstr "Félfordulat"
#: rotatemenu.ui
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Full Spin"
-msgstr ""
+msgstr "Teljes fordulat"
#: rotatemenu.ui
msgctxt ""
@@ -4055,7 +4055,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Two Spins"
-msgstr ""
+msgstr "Duplafordulat"
#: rotatemenu.ui
msgctxt ""
@@ -4064,7 +4064,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clockwise"
-msgstr ""
+msgstr "Jobbra forgó"
#: rotatemenu.ui
msgctxt ""
@@ -4073,7 +4073,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Counter-clockwise"
-msgstr ""
+msgstr "Balra forgó"
#: scalemenu.ui
msgctxt ""
@@ -4082,7 +4082,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiny"
-msgstr ""
+msgstr "Apró"
#: scalemenu.ui
msgctxt ""
@@ -4091,7 +4091,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Smaller"
-msgstr ""
+msgstr "Kisebb"
#: scalemenu.ui
msgctxt ""
@@ -4100,7 +4100,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Larger"
-msgstr ""
+msgstr "Nagyobb"
#: scalemenu.ui
msgctxt ""
@@ -4109,7 +4109,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extra Large"
-msgstr ""
+msgstr "Nagyon nagy"
#: scalemenu.ui
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal"
-msgstr ""
+msgstr "Vízszintes"
#: scalemenu.ui
msgctxt ""
@@ -4127,7 +4127,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical"
-msgstr ""
+msgstr "Függőleges"
#: scalemenu.ui
msgctxt ""
@@ -4136,7 +4136,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Both"
-msgstr ""
+msgstr "Mindkettő"
#: sdviewpage.ui
msgctxt ""
@@ -4271,7 +4271,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Close Master View"
-msgstr ""
+msgstr "Mintanézet bezárása"
#: slidecontextmenu.ui
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Next"
-msgstr ""
+msgstr "_Következő"
#: slidecontextmenu.ui
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Previous"
-msgstr ""
+msgstr "_Előző"
#: slidecontextmenu.ui
msgctxt ""
@@ -4298,7 +4298,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Go to Slide"
-msgstr ""
+msgstr "_Ugrás diára"
#: slidecontextmenu.ui
msgctxt ""
@@ -4307,7 +4307,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_First Slide"
-msgstr ""
+msgstr "_Első dia"
#: slidecontextmenu.ui
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Last Slide"
-msgstr ""
+msgstr "_Utolsó dia"
#: slidecontextmenu.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "~Rajzolás az egérmutatóval"
#: slidecontextmenu.ui
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Pen Width"
-msgstr ""
+msgstr "_Toll szélessége"
#: slidecontextmenu.ui
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thin"
-msgstr ""
+msgstr "_Nagyon vékony"
#: slidecontextmenu.ui
msgctxt ""
@@ -4352,7 +4352,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Thin"
-msgstr ""
+msgstr "_Vékony"
#: slidecontextmenu.ui
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Normal"
-msgstr ""
+msgstr "_Normál"
#: slidecontextmenu.ui
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Thick"
-msgstr ""
+msgstr "_Vastag"
#: slidecontextmenu.ui
msgctxt ""
@@ -4379,7 +4379,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thick"
-msgstr ""
+msgstr "_Nagyon vastag"
#: slidecontextmenu.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "_Toll színének változtatása…"
#: slidecontextmenu.ui
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "_Minden tinta törlése a dián"
#: slidecontextmenu.ui
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Screen"
-msgstr ""
+msgstr "_Képernyő"
#: slidecontextmenu.ui
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Black"
-msgstr ""
+msgstr "_Fekete"
#: slidecontextmenu.ui
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_White"
-msgstr ""
+msgstr "Fe_hér"
#: slidecontextmenu.ui
msgctxt ""
@@ -4433,7 +4433,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "E_dit Presentation"
-msgstr ""
+msgstr "Bem_utató szerkesztése"
#: slidecontextmenu.ui
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End Show"
-msgstr ""
+msgstr "_Vége"
#: slidedesigndialog.ui
msgctxt ""
diff --git a/source/hu/setup_native/source/mac.po b/source/hu/setup_native/source/mac.po
index f3d577a2032..d222cfb1974 100644
--- a/source/hu/setup_native/source/mac.po
+++ b/source/hu/setup_native/source/mac.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-05-23 23:40+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-10 17:42+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352431.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497116565.000000\n"
#: macinstall.ulf
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"IdentifyQText\n"
"LngText.text"
msgid "Installation failed; most likely your account does not have the necessary privileges."
-msgstr ""
+msgstr "A telepítés nem sikerült; valószínűleg a fiókja nem rendelkezik a szükséges jogosultságokkal."
#: macinstall.ulf
msgctxt ""
diff --git a/source/hu/sfx2/source/view.po b/source/hu/sfx2/source/view.po
index 5b3512a4a09..acd6e426273 100644
--- a/source/hu/sfx2/source/view.po
+++ b/source/hu/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-08 20:47+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/hu/svtools/source/control.po b/source/hu/svtools/source/control.po
index f1e21721702..a5ab98a929d 100644
--- a/source/hu/svtools/source/control.po
+++ b/source/hu/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-27 09:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Gót dőlt"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/hu/svtools/source/misc.po b/source/hu/svtools/source/misc.po
index 413af3af27f..4d10bfa172d 100644
--- a/source/hu/svtools/source/misc.po
+++ b/source/hu/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-09 10:31+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/hu/sw/source/core/undo.po b/source/hu/sw/source/core/undo.po
index b3dae8ebd4b..942dd5ec2be 100644
--- a/source/hu/sw/source/core/undo.po
+++ b/source/hu/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-07 14:24+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "hasábtörés"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 beszúrása"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 törlése"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Jellemzők megváltoztak"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "A táblázat megváltozott"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "A stílus megváltozott"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/hu/sw/source/uibase/docvw.po b/source/hu/sw/source/uibase/docvw.po
index b1a3a0726cc..400d05fc897 100644
--- a/source/hu/sw/source/uibase/docvw.po
+++ b/source/hu/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-03-08 22:18+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Alkalmazott bekezdésstílusok"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/hu/sw/source/uibase/ribbar.po b/source/hu/sw/source/uibase/ribbar.po
index 73593349cfb..7a6bf89e87e 100644
--- a/source/hu/sw/source/uibase/ribbar.po
+++ b/source/hu/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-07 14:23+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Képlet szövege"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/hu/sw/source/uibase/uiview.po b/source/hu/sw/source/uibase/uiview.po
index a3180cb5780..893d333d3a2 100644
--- a/source/hu/sw/source/uibase/uiview.po
+++ b/source/hu/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 08:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Forrás exportálása..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/hu/uui/source.po b/source/hu/uui/source.po
index 67d939a3346..773ca6e38ac 100644
--- a/source/hu/uui/source.po
+++ b/source/hu/uui/source.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2015-07-27 09:33+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-20 08:31+0000\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1437989608.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497947498.000000\n"
#: alreadyopen.src
msgctxt ""
@@ -644,6 +644,14 @@ msgid ""
"\n"
"Should %PRODUCTNAME repair the file?\n"
msgstr ""
+"A(z) „$(ARG1)” fájl sérült, ezért nem nyitható meg. A %PRODUCTNAME megpróbálhatja kijavítani a fájlt.\n"
+"\n"
+"A sérülést a dokumentum manipulálása vagy a dokumentum szerkezetének adatátvitel közbeni károsodása okozhatta.\n"
+"\n"
+"Javasoljuk, hogy ne bízzon meg a kijavított dokumentum tartalmában.\n"
+"A dokumentum makróinak futtatása tiltva lesz.\n"
+"\n"
+"Javítsa a %PRODUCTNAME a fájlt?\n"
#: ids.src
msgctxt ""
diff --git a/source/hu/vcl/source/src.po b/source/hu/vcl/source/src.po
index de8dd14a59c..1796f75b68e 100644
--- a/source/hu/vcl/source/src.po
+++ b/source/hu/vcl/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-01-09 10:01+0000\n"
+"PO-Revision-Date: 2017-06-20 08:11+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483956068.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497946306.000000\n"
#: app.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"SV_APP_CPUTHREADS\n"
"string.text"
msgid "CPU threads: "
-msgstr ""
+msgstr "CPU szálak: "
#: app.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"SV_APP_OSVERSION\n"
"string.text"
msgid "OS: "
-msgstr ""
+msgstr "OS: "
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"SV_APP_UIRENDER\n"
"string.text"
msgid "UI render: "
-msgstr ""
+msgstr "Felületmegjelenítés: "
#: app.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"SV_BUTTONTEXT_SCREENSHOT\n"
"string.text"
msgid "~Screenshot"
-msgstr ""
+msgstr "~Képernyőkép"
#: fpicker.src
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"SV_HELPTEXT_SCREENSHOT\n"
"string.text"
msgid "Take and annotate a screenshot"
-msgstr ""
+msgstr "Képernyőkép készítése és feliratozása"
#: helptext.src
msgctxt ""
diff --git a/source/hu/xmlsecurity/uiconfig/ui.po b/source/hu/xmlsecurity/uiconfig/ui.po
index f37f64fbeaf..b58cc182f6c 100644
--- a/source/hu/xmlsecurity/uiconfig/ui.po
+++ b/source/hu/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-09 10:06+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-10 17:37+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483956368.000000\n"
+"X-POOTLE-MTIME: 1497116272.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Issued to: "
-msgstr ""
+msgstr "Tulajdonos: "
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Eltávolítás"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/id/accessibility/source/helper.po b/source/id/accessibility/source/helper.po
index e0726918f13..291debd2d7a 100644
--- a/source/id/accessibility/source/helper.po
+++ b/source/id/accessibility/source/helper.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-05-15 08:44+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 08:24+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1400143444.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497601464.000000\n"
#: accessiblestrings.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"RID_STR_ACC_COLUMN_NUM\n"
"string.text"
msgid "Column %COLUMNNUMBER"
-msgstr ""
+msgstr "Kolom %COLUMNNUMBER"
#: accessiblestrings.src
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"RID_STR_ACC_ROW_NUM\n"
"string.text"
msgid "Row %ROWNUMBER"
-msgstr ""
+msgstr "Baris %ROWNUMBER"
diff --git a/source/id/avmedia/source/framework.po b/source/id/avmedia/source/framework.po
index e6d8f9ea519..9ad1c6bcba5 100644
--- a/source/id/avmedia/source/framework.po
+++ b/source/id/avmedia/source/framework.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-22 10:38+0000\n"
+"PO-Revision-Date: 2017-06-16 08:22+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482403115.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497601359.000000\n"
#: mediacontrol.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"AVMEDIA_STR_LOOP\n"
"string.text"
msgid "Repeat"
-msgstr ""
+msgstr "Ulangi"
#: mediacontrol.src
msgctxt ""
diff --git a/source/id/basctl/uiconfig/basicide/ui.po b/source/id/basctl/uiconfig/basicide/ui.po
index 6538473f8c2..36eb469c767 100644
--- a/source/id/basctl/uiconfig/basicide/ui.po
+++ b/source/id/basctl/uiconfig/basicide/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 23:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 08:25+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462144132.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497601502.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Breakpoints..."
-msgstr ""
+msgstr "Kelola Breakpoint..."
#: breakpointmenus.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Active"
-msgstr ""
+msgstr "_Aktif"
#: breakpointmenus.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Properties..."
-msgstr ""
+msgstr "_Properti..."
#: defaultlanguage.ui
msgctxt ""
diff --git a/source/id/chart2/uiconfig/ui.po b/source/id/chart2/uiconfig/ui.po
index 3669c6f4767..ce00ac8c0c5 100644
--- a/source/id/chart2/uiconfig/ui.po
+++ b/source/id/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-22 11:00+0000\n"
+"PO-Revision-Date: 2017-06-16 08:34+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482404432.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497602073.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Left"
-msgstr ""
+msgstr "Pindahkan Seri Ke Kiri"
#: chartdatadialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Right"
-msgstr ""
+msgstr "Pindahkan Seri Ke Kanan"
#: chartdatadialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Up"
-msgstr ""
+msgstr "Pindahkan Baris Naik"
#: chartdatadialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Down"
-msgstr ""
+msgstr "Pindahkan Baris Turun"
#: charttypedialog.ui
msgctxt ""
diff --git a/source/id/cui/source/dialogs.po b/source/id/cui/source/dialogs.po
index 6b965d858ce..9a25a42a697 100644
--- a/source/id/cui/source/dialogs.po
+++ b/source/id/cui/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-24 12:10+0000\n"
+"PO-Revision-Date: 2017-06-16 13:25+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482581409.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497619542.000000\n"
#: cuires.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"RID_SVXSTR_BASICMACROS\n"
"string.text"
msgid "BASIC Macros"
-msgstr ""
+msgstr "Makro BASIC"
#: cuires.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"RID_SVXSTR_GROUP_STYLES\n"
"string.text"
msgid "Styles"
-msgstr ""
+msgstr "Gaya"
#: fmsearch.src
msgctxt ""
diff --git a/source/id/cui/source/options.po b/source/id/cui/source/options.po
index 7fbd1e25ee2..f934dae0f3f 100644
--- a/source/id/cui/source/options.po
+++ b/source/id/cui/source/options.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-24 12:23+0000\n"
+"PO-Revision-Date: 2017-06-16 13:25+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482582204.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497619549.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -1031,7 +1031,6 @@ msgid "Compatibility"
msgstr "Kompatibilitas"
#: treeopt.src
-#, fuzzy
msgctxt ""
"treeopt.src\n"
"SID_SW_EDITOPTIONS\n"
diff --git a/source/id/cui/source/tabpages.po b/source/id/cui/source/tabpages.po
index 8ec47c8405e..bca6d7a5ade 100644
--- a/source/id/cui/source/tabpages.po
+++ b/source/id/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-24 12:25+0000\n"
+"PO-Revision-Date: 2017-06-16 13:26+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482582356.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497619604.000000\n"
#: border.src
msgctxt ""
@@ -386,7 +386,7 @@ msgctxt ""
"RID_SVXSTR_BOLD_UNDER\n"
"string.text"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr ""
+msgstr "Otomatiskan *tebal*, /miring/, -coret-, dan _garisbawah_"
#: strings.src
msgctxt ""
@@ -546,7 +546,7 @@ msgctxt ""
"RID_SVXSTR_STARTQUOTE\n"
"string.text"
msgid "Start Quote"
-msgstr ""
+msgstr "Awal Kutip"
#: strings.src
msgctxt ""
@@ -554,4 +554,4 @@ msgctxt ""
"RID_SVXSTR_ENDQUOTE\n"
"string.text"
msgid "End Quote"
-msgstr ""
+msgstr "Akhir Kutip"
diff --git a/source/id/cui/uiconfig/ui.po b/source/id/cui/uiconfig/ui.po
index 0c602eea81d..1f4f1cc6873 100644
--- a/source/id/cui/uiconfig/ui.po
+++ b/source/id/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-25 14:45+0000\n"
+"PO-Revision-Date: 2017-06-16 13:32+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482677122.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497619956.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "See Log: $GITHASH"
-msgstr ""
+msgstr "Lihat Log: $GITHASH"
#: aboutdialog.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copyright © 2000–2017 LibreOffice contributors."
-msgstr ""
+msgstr "Hak Cipta © 2000–2017 para kontributor LibreOffice."
#: aboutdialog.ui
msgctxt ""
@@ -2237,7 +2237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Properti"
#: cellalignment.ui
msgctxt ""
@@ -5378,7 +5378,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Properties"
-msgstr ""
+msgstr "Properti Tabel"
#: formatcellsdialog.ui
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display as icon"
-msgstr ""
+msgstr "Tampilkan sebagai ikon"
#: insertoleobject.ui
msgctxt ""
@@ -7989,7 +7989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Ubah Nama..."
#: menuassignpage.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "Pulihkan Perintah Baku"
#: menuassignpage.ui
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change Icon..."
-msgstr ""
+msgstr "Ubah Ikon..."
#: menuassignpage.ui
msgctxt ""
@@ -8016,7 +8016,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Icon"
-msgstr ""
+msgstr "Reset Ikon"
#: menuassignpage.ui
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Ubah Nama..."
#: menuassignpage.ui
msgctxt ""
@@ -8223,7 +8223,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Hapus"
#: menuassignpage.ui
msgctxt ""
@@ -8538,7 +8538,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "Berapa panjang den_ominator:"
#: numberingformatpage.ui
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Western text only"
-msgstr ""
+msgstr "Hanya teks _barat"
#: optasianpage.ui
msgctxt ""
@@ -10792,7 +10792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Complex _text layout:"
-msgstr ""
+msgstr "_Tata letak teks kompleks:"
#: optlanguagespage.ui
msgctxt ""
@@ -12490,7 +12490,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Sifr"
-msgstr ""
+msgstr "Sifr"
#: optviewpage.ui
msgctxt ""
@@ -12499,7 +12499,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Breeze"
-msgstr ""
+msgstr "Angin Sepoi"
#: optviewpage.ui
msgctxt ""
@@ -12508,7 +12508,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Tango Testing"
-msgstr ""
+msgstr "Pengujian Tango"
#: optviewpage.ui
msgctxt ""
@@ -13423,7 +13423,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Di depan"
#: paratabspage.ui
msgctxt ""
@@ -13576,7 +13576,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "points"
-msgstr ""
+msgstr "poin"
#: paratabspage.ui
msgctxt ""
@@ -13585,7 +13585,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "dashes"
-msgstr ""
+msgstr "garis putus"
#: paratabspage.ui
msgctxt ""
@@ -13594,7 +13594,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "underscores"
-msgstr ""
+msgstr "garis bawah"
#: password.ui
msgctxt ""
diff --git a/source/id/dbaccess/source/ui/browser.po b/source/id/dbaccess/source/ui/browser.po
index 7507dd4264c..98eccc2317b 100644
--- a/source/id/dbaccess/source/ui/browser.po
+++ b/source/id/dbaccess/source/ui/browser.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-07-09 01:38+0000\n"
+"PO-Revision-Date: 2017-06-16 13:30+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468028337.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497619849.000000\n"
#: sbabrw.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_STR_COLUMN_FORMAT\n"
"string.text"
msgid "Column ~Format..."
-msgstr ""
+msgstr "~Format Kolom..."
#: sbagrid.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"RID_STR_COLUMN_WIDTH\n"
"string.text"
msgid "Column ~Width..."
-msgstr ""
+msgstr "~Lebar Kolom..."
#: sbagrid.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"RID_STR_TABLE_FORMAT\n"
"string.text"
msgid "Table Format..."
-msgstr ""
+msgstr "Format Tabel..."
#: sbagrid.src
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"RID_STR_ROW_HEIGHT\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Tinggi Baris..."
#: sbagrid.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"RID_STR_COPY\n"
"string.text"
msgid "~Copy"
-msgstr ""
+msgstr "~Salin"
#: sbagrid.src
msgctxt ""
diff --git a/source/id/dbaccess/uiconfig/ui.po b/source/id/dbaccess/uiconfig/ui.po
index 0847781c3b8..6661cb7e4e4 100644
--- a/source/id/dbaccess/uiconfig/ui.po
+++ b/source/id/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-07-09 04:01+0000\n"
+"PO-Revision-Date: 2017-06-16 13:31+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468036878.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497619907.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: joinviewmenu.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: joinviewmenu.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit..."
-msgstr ""
+msgstr "Sunting..."
#: keymenu.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Kunci Utama"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1937,7 +1937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column _Width..."
-msgstr ""
+msgstr "_Lebar Kolom..."
#: querycolmenu.ui
msgctxt ""
@@ -1946,7 +1946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: queryfilterdialog.ui
msgctxt ""
@@ -2162,7 +2162,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Fungsi"
#: queryfuncmenu.ui
msgctxt ""
@@ -2171,7 +2171,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table Name"
-msgstr ""
+msgstr "Nama Tabel"
#: queryfuncmenu.ui
msgctxt ""
@@ -2180,7 +2180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alias"
-msgstr ""
+msgstr "Alias"
#: queryfuncmenu.ui
msgctxt ""
@@ -2189,7 +2189,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Nilai Unik"
#: querypropertiesdialog.ui
msgctxt ""
@@ -2954,7 +2954,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cu_t"
-msgstr ""
+msgstr "Po_tong"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2963,7 +2963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "_Salin"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2972,7 +2972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Paste"
-msgstr ""
+msgstr "Tem_pel"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2981,7 +2981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Sisipkan Baris"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2999,7 +2999,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Kunci Utama"
#: tabledesignsavemodifieddialog.ui
msgctxt ""
diff --git a/source/id/desktop/source/deployment/gui.po b/source/id/desktop/source/deployment/gui.po
index 44ba099da0d..0e6bae997d9 100644
--- a/source/id/desktop/source/deployment/gui.po
+++ b/source/id/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 23:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-18 02:17+0000\n"
+"Last-Translator: Singgih Octafianto <singgih.octafianto@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467673725.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1418869046.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/id/editeng/source/editeng.po b/source/id/editeng/source/editeng.po
index 71544b00fef..02471235b5c 100644
--- a/source/id/editeng/source/editeng.po
+++ b/source/id/editeng/source/editeng.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-05-16 18:50+0000\n"
+"PO-Revision-Date: 2017-06-16 23:52+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463424603.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657121.000000\n"
#: editeng.src
msgctxt ""
@@ -110,4 +110,4 @@ msgctxt ""
"RID_SVXSTR_AUTOMATIC\n"
"string.text"
msgid "Automatic"
-msgstr ""
+msgstr "Otomatis"
diff --git a/source/id/editeng/source/items.po b/source/id/editeng/source/items.po
index d738a1085b0..b018ca9cd65 100644
--- a/source/id/editeng/source/items.po
+++ b/source/id/editeng/source/items.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-05-15 08:44+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 23:58+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1400143472.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657503.000000\n"
#: page.src
msgctxt ""
@@ -1623,7 +1623,7 @@ msgctxt ""
"RID_SVXITEMS_TEXTROTATE_OFF\n"
"string.text"
msgid "Text is not rotated"
-msgstr ""
+msgstr "Teks tidak diputar"
#: svxitems.src
msgctxt ""
@@ -1631,7 +1631,7 @@ msgctxt ""
"RID_SVXITEMS_TEXTROTATE\n"
"string.text"
msgid "Text is rotated by $(ARG1)°"
-msgstr ""
+msgstr "Teks diputar sebanyak $(ARG1)°"
#: svxitems.src
msgctxt ""
diff --git a/source/id/editeng/uiconfig/ui.po b/source/id/editeng/uiconfig/ui.po
index 88c5447cec0..dfad81a850e 100644
--- a/source/id/editeng/uiconfig/ui.po
+++ b/source/id/editeng/uiconfig/ui.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-06-16 23:59+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657560.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -20,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_gnore All"
-msgstr ""
+msgstr "A_baikan Semua"
#: spellmenu.ui
msgctxt ""
@@ -29,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "T_ambah ke Kamus"
#: spellmenu.ui
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "T_ambah ke Kamus"
#: spellmenu.ui
msgctxt ""
@@ -47,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr ""
+msgstr "_Periksa Ejaan..."
#: spellmenu.ui
msgctxt ""
@@ -56,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoCorrect _To"
-msgstr ""
+msgstr "Koreksi O_tomatis Jadi"
#: spellmenu.ui
msgctxt ""
@@ -65,4 +68,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Correct Options..."
-msgstr ""
+msgstr "Opsi _Koreksi Otomatis..."
diff --git a/source/id/extensions/source/propctrlr.po b/source/id/extensions/source/propctrlr.po
index dce4b25890f..99b54090c16 100644
--- a/source/id/extensions/source/propctrlr.po
+++ b/source/id/extensions/source/propctrlr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-25 14:46+0000\n"
+"PO-Revision-Date: 2017-06-16 13:38+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482677176.000000\n"
+"X-POOTLE-MTIME: 1497620288.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -973,7 +973,7 @@ msgctxt ""
"Tablefields\n"
"itemlist.text"
msgid "Tablefields"
-msgstr ""
+msgstr "Ruas tabel"
#: formres.src
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"Get\n"
"itemlist.text"
msgid "Get"
-msgstr ""
+msgstr "Get"
#: formres.src
msgctxt ""
@@ -1135,7 +1135,7 @@ msgctxt ""
"Post\n"
"itemlist.text"
msgid "Post"
-msgstr ""
+msgstr "Post"
#: formres.src
msgctxt ""
@@ -1153,7 +1153,7 @@ msgctxt ""
"Multipart\n"
"itemlist.text"
msgid "Multipart"
-msgstr ""
+msgstr "Multipart"
#: formres.src
msgctxt ""
@@ -1450,7 +1450,7 @@ msgctxt ""
"Multi\n"
"itemlist.text"
msgid "Multi"
-msgstr ""
+msgstr "Multi"
#: formres.src
msgctxt ""
@@ -2076,7 +2076,7 @@ msgctxt ""
"Single-line\n"
"itemlist.text"
msgid "Single-line"
-msgstr ""
+msgstr "Single-line"
#: formres.src
msgctxt ""
@@ -2085,7 +2085,7 @@ msgctxt ""
"Multi-line\n"
"itemlist.text"
msgid "Multi-line"
-msgstr ""
+msgstr "Multi-line"
#: formres.src
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"Multi-line with formatting\n"
"itemlist.text"
msgid "Multi-line with formatting"
-msgstr ""
+msgstr "Multibaris dengan pemformatan"
#: formres.src
msgctxt ""
@@ -2507,7 +2507,7 @@ msgctxt ""
"Collapse\n"
"itemlist.text"
msgid "Collapse"
-msgstr ""
+msgstr "Kuncupkan"
#: formres.src
msgctxt ""
@@ -2755,7 +2755,7 @@ msgctxt ""
"When focused\n"
"itemlist.text"
msgid "When focused"
-msgstr ""
+msgstr "Saat fokus"
#: formres.src
msgctxt ""
@@ -3093,7 +3093,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "Ya"
#: propres.src
msgctxt ""
diff --git a/source/id/extensions/source/update/check/org/openoffice/Office.po b/source/id/extensions/source/update/check/org/openoffice/Office.po
index 9b6a647190f..f7fbf617e4a 100644
--- a/source/id/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/id/extensions/source/update/check/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-05-23 23:40+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 13:38+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352406.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497620296.000000\n"
#: Addons.xcu
msgctxt ""
@@ -23,4 +23,4 @@ msgctxt ""
"Title\n"
"value.text"
msgid "~Check for Updates..."
-msgstr ""
+msgstr "~Periksa Pembaruan..."
diff --git a/source/id/filter/source/config/fragments/filters.po b/source/id/filter/source/config/fragments/filters.po
index 17b5d03cad8..09f72c5681d 100644
--- a/source/id/filter/source/config/fragments/filters.po
+++ b/source/id/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-12-22 11:17+0000\n"
+"PO-Revision-Date: 2017-06-17 00:00+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482405478.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657634.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "XML Rowset ADO"
#: AbiWord.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "VBA XML Microsoft Word 2007-2013"
#: MS_Word_95.xcu
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 1-4 and 95's"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4 dan 95"
#: PublisherDocument.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Presentasi StarOffice Warisan"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/id/filter/source/config/fragments/types.po b/source/id/filter/source/config/fragments/types.po
index c815d993981..d9ffb4db4d2 100644
--- a/source/id/filter/source/config/fragments/types.po
+++ b/source/id/filter/source/config/fragments/types.po
@@ -4,8 +4,8 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2015-11-22 10:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 00:00+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1448189974.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657641.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "XML Rowset ADO"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "VBA XML Microsoft Word 2007-2013"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/id/filter/uiconfig/ui.po b/source/id/filter/uiconfig/ui.po
index d9d7d778fb5..ad57837923b 100644
--- a/source/id/filter/uiconfig/ui.po
+++ b/source/id/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-22 11:19+0000\n"
+"PO-Revision-Date: 2017-06-17 00:01+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482405582.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657699.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "Lembar kerja _pilihan"
#: pdfgeneralpage.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Gunakan XObjects acuan"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/id/formula/source/core/resource.po b/source/id/formula/source/core/resource.po
index 5db7b54606d..341103f728e 100644
--- a/source/id/formula/source/core/resource.po
+++ b/source/id/formula/source/core/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-22 10:39+0000\n"
+"PO-Revision-Date: 2017-06-16 08:23+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482403171.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497601385.000000\n"
#: core_resource.src
msgctxt ""
@@ -3668,4 +3668,4 @@ msgctxt ""
"ROUNDSIG\n"
"itemlist.text"
msgid "ROUNDSIG"
-msgstr ""
+msgstr "ROUNDSIG"
diff --git a/source/id/framework/source/classes.po b/source/id/framework/source/classes.po
index 8c52f7483b1..79caa7129e7 100644
--- a/source/id/framework/source/classes.po
+++ b/source/id/framework/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-18 11:02+0200\n"
-"PO-Revision-Date: 2016-12-22 10:36+0000\n"
+"PO-Revision-Date: 2017-06-16 13:36+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482402967.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497620176.000000\n"
#: resource.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_TOOLBAR_VISIBLE_BUTTONS\n"
"string.text"
msgid "Visible ~Buttons"
-msgstr ""
+msgstr "Tom~bol yang Tampak"
#: resource.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_TOOLBAR_CUSTOMIZE_TOOLBAR\n"
"string.text"
msgid "~Customize Toolbar..."
-msgstr ""
+msgstr "~Gubah Bilah Alat..."
#: resource.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_TOOLBAR\n"
"string.text"
msgid "~Dock Toolbar"
-msgstr ""
+msgstr "~Tambatkan Bilah Alat"
#: resource.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_ALL_TOOLBARS\n"
"string.text"
msgid "Dock ~All Toolbars"
-msgstr ""
+msgstr "Tambatkan Semu~a Bilah Alat"
#: resource.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TOOLBAR_LOCK_TOOLBAR\n"
"string.text"
msgid "~Lock Toolbar Position"
-msgstr ""
+msgstr "Kunci Posisi Bilah A~lat"
#: resource.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_TOOLBAR_CLOSE_TOOLBAR\n"
"string.text"
msgid "Close ~Toolbar"
-msgstr ""
+msgstr "~Tutup Bilah Alat"
#: resource.src
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/sbasic/shared.po b/source/id/helpcontent2/source/text/sbasic/shared.po
index 00c5cd40fc0..f80159bff6d 100644
--- a/source/id/helpcontent2/source/text/sbasic/shared.po
+++ b/source/id/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 03:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Kode Kesalahan </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/id/helpcontent2/source/text/scalc.po b/source/id/helpcontent2/source/text/scalc.po
index 344e30105c6..f8a8d2a937c 100644
--- a/source/id/helpcontent2/source/text/scalc.po
+++ b/source/id/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-07-16 01:28+0000\n"
+"PO-Revision-Date: 2017-06-09 09:03+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468632525.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496999017.000000\n"
#: main0000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id033020170228348624\n"
"help.text"
msgid "Show Formula"
-msgstr ""
+msgstr "Tampilkan Rumus"
#: main0103.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id03302017024610704\n"
"help.text"
msgid "Display the cell formula expression instead of the calculated result."
-msgstr ""
+msgstr "Tampilkan persamaan rumus sel bukan hasil perhitungannya."
#: main0103.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galeri</link>"
#: main0103.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared.po b/source/id/helpcontent2/source/text/shared.po
index c1af722f24a..db5a3c9bc18 100644
--- a/source/id/helpcontent2/source/text/shared.po
+++ b/source/id/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-08 12:43+0000\n"
+"PO-Revision-Date: 2017-06-20 02:41+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494247391.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497926496.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Pilih suatu kedalaman ekstrusi."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Pilih sebuah metoda ekstrusi paralel atau perspektif."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Pilih suatu arah pencahayaan."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Pilih suatu intensitas pencahayaan."
#: 3dsettings_toolbar.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared/00.po b/source/id/helpcontent2/source/text/shared/00.po
index 106017c3502..cb23f0f0e86 100644
--- a/source/id/helpcontent2/source/text/shared/00.po
+++ b/source/id/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-14 15:01+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index 1487023207d..e85bfb26fb5 100644
--- a/source/id/helpcontent2/source/text/shared/01.po
+++ b/source/id/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo 4.3 help shared/01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 16:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Indonesian <id@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/id/helpcontent2/source/text/shared/optionen.po b/source/id/helpcontent2/source/text/shared/optionen.po
index 5cd4b8b20c4..f7662171bf9 100644
--- a/source/id/helpcontent2/source/text/shared/optionen.po
+++ b/source/id/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-09-03 02:45+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/id/helpcontent2/source/text/swriter.po b/source/id/helpcontent2/source/text/swriter.po
index 15b2f84fd21..8eb0b8d6f7a 100644
--- a/source/id/helpcontent2/source/text/swriter.po
+++ b/source/id/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-08 12:42+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-09 08:42+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494247355.000000\n"
+"X-POOTLE-MTIME: 1496997732.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Penomoran Ikhtisar</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_idN1071D\n"
"help.text"
msgid "Break Across Pages"
-msgstr ""
+msgstr "Putus Lintas Halaman"
#: main0110.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/swriter/00.po b/source/id/helpcontent2/source/text/swriter/00.po
index a4f4cbcf1a7..61b27790a0b 100644
--- a/source/id/helpcontent2/source/text/swriter/00.po
+++ b/source/id/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-11-29 18:47+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Pilih <emph>Perkakas - Penomoran Kerangka</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Pilih <emph>Perkakas - Penomoran Kerangka - tab Penomoran</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Pilih <emph>Perkakas - Penomoran Baris</emph> (bukan untuk format HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/swriter/01.po b/source/id/helpcontent2/source/text/swriter/01.po
index 4c9c63b2a22..510a6ab137b 100644
--- a/source/id/helpcontent2/source/text/swriter/01.po
+++ b/source/id/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: swriter 3.6\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-11-29 18:53+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesia <id@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Klik <emph>1 </emph>untuk menilik heading dengan derajat tertinggi dalam jendela Navigator, dan klik <emph>10</emph> untuk menilik semua heading.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Penomoran Baris"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Penomoran Baris"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Blok Alamat Baru"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Blok Alamat Baru"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elemen Alamat"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/id/helpcontent2/source/text/swriter/guide.po b/source/id/helpcontent2/source/text/swriter/guide.po
index 6b2b6f8dea8..6fdc074a087 100644
--- a/source/id/helpcontent2/source/text/swriter/guide.po
+++ b/source/id/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-20 09:12+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Anda dapat memindah tajuk dan teks subordinat naik dan turun dalam suatu teks dokumen dengan memakai Navigator. Anda juga dapat menaikkan dan menurunkan tingkat tajuk. Untuk memakai fitur ini, formatlah tajuk pada dokumen Anda dengan satu dari gaya paragraf tajuk yang terpradefinisi. Untuk memakai gaya paragraf ubahan bagi suatu tajuk, pilih <emph>Alat - Penomoran Ikhtisar</emph>, pilih gaya dalam kotak <emph>Gaya Paragraf</emph>, lalu klik ganda suatu bilangan dalam daftar <emph>Tingkat</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Penomoran Baris"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,15 +2917,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Penomoran Ikhtisar</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Pilih <item type=\"menuitem\">Format - Rangka/Objek</item>, lalu klik tab <item type=\"menuitem\">Opsi</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Pilih <item type=\"menuitem\">Format - Rangka/Objek</item>, lalu klik tab <item type=\"menuitem\">Opsi</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/id/librelogo/source/pythonpath.po b/source/id/librelogo/source/pythonpath.po
index 37a1db55145..14f8d0d28d4 100644
--- a/source/id/librelogo/source/pythonpath.po
+++ b/source/id/librelogo/source/pythonpath.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2014-05-15 08:44+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 08:23+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1400143480.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497601424.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"ERR_NAME\n"
"property.text"
msgid "Unknown name: “%s”."
-msgstr ""
+msgstr "Nama tak dikenal: \"%s\"."
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
index 34e551ddedf..f22a04071c7 100644
--- a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-12-31 10:56+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 17:49+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483181809.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498067379.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Module"
-msgstr ""
+msgstr "Modul BASIC"
#: BasicIDECommands.xcu
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Dialog"
-msgstr ""
+msgstr "Dialog BASIC"
#: BasicIDECommands.xcu
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Hapus"
#: BasicIDECommands.xcu
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename"
-msgstr ""
+msgstr "Ubah Nama"
#: BasicIDECommands.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide"
-msgstr ""
+msgstr "Sembunyikan"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Tab Bar"
-msgstr ""
+msgstr "Bilah Tab"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Pilih Tema"
+msgid "Spreadsheet Theme"
+msgstr "Tema Lembar Kerja"
#: CalcCommands.xcu
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Protection"
-msgstr ""
+msgstr "Proteksi Sel"
#: CalcCommands.xcu
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Cell Reference Types"
-msgstr ""
+msgstr "Sikluskan Tipe Acuan Sel"
#: CalcCommands.xcu
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show All Comments"
-msgstr ""
+msgstr "Tampilkan Semua Komentar"
#: CalcCommands.xcu
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide All Comments"
-msgstr ""
+msgstr "Sembunyikan Semua Komentar"
#: CalcCommands.xcu
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete All Comments"
-msgstr ""
+msgstr "Hapus Semua Komentar"
#: CalcCommands.xcu
msgctxt ""
@@ -2408,7 +2408,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Shee~t from File..."
-msgstr ""
+msgstr "Sisipkan ~Lembar Kerja dari Berkas..."
#: CalcCommands.xcu
msgctxt ""
@@ -3200,7 +3200,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Sheet at End..."
-msgstr ""
+msgstr "Sisipkan Lembar di Akhir..."
#: CalcCommands.xcu
msgctxt ""
@@ -3704,7 +3704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Named Ranges and Expressions"
-msgstr ""
+msgstr "Ekspresi dan Re~ntang Bernama"
#: CalcCommands.xcu
msgctxt ""
@@ -3812,7 +3812,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comments"
-msgstr ""
+msgstr "~Komentar Sel"
#: CalcCommands.xcu
msgctxt ""
@@ -3911,7 +3911,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export as Image"
-msgstr ""
+msgstr "Ekspor sebagai Citra"
#: CalcCommands.xcu
msgctxt ""
@@ -4001,7 +4001,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Column"
-msgstr ""
+msgstr "Kolom"
#: CalcCommands.xcu
msgctxt ""
@@ -4010,7 +4010,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row"
-msgstr ""
+msgstr "Baris"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "S~isipkan..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Baku"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Aksen 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Aksen 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Aksen 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Tajuk 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Tajuk 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Buruk"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Kesalahan"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Baik"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Netral"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Peringatan"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Catatan kaki"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Catatan"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -4127,7 +4244,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Bilah catatan"
#: CalcWindowState.xcu
msgctxt ""
@@ -4523,7 +4640,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr ""
+msgstr "Pintasan bilah catatan"
#: ChartCommands.xcu
msgctxt ""
@@ -5684,7 +5801,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Explorer"
-msgstr ""
+msgstr "Penelusur"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -5738,7 +5855,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Report"
-msgstr ""
+msgstr "Laporan"
#: DbReportWindowState.xcu
msgctxt ""
@@ -5990,7 +6107,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Open..."
-msgstr ""
+msgstr "Buka..."
#: DbuCommands.xcu
msgctxt ""
@@ -6188,7 +6305,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr ""
+msgstr "Laporan..."
#: DbuCommands.xcu
msgctxt ""
@@ -6350,7 +6467,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Query (Design View)"
-msgstr ""
+msgstr "Kuiri ~Baru (Tampilan Desain)"
#: DbuCommands.xcu
msgctxt ""
@@ -6368,7 +6485,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New Query (~SQL View)"
-msgstr ""
+msgstr "Kuiri Baru (Tampilan ~SQL)"
#: DbuCommands.xcu
msgctxt ""
@@ -6386,7 +6503,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Table Design"
-msgstr ""
+msgstr "Disain ~Tabel Baru"
#: DbuCommands.xcu
msgctxt ""
@@ -6404,7 +6521,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~View Design"
-msgstr ""
+msgstr "Disain ~View Baru"
#: DbuCommands.xcu
msgctxt ""
@@ -6575,7 +6692,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rebuild"
-msgstr ""
+msgstr "Bangun Ulang"
#: DbuCommands.xcu
msgctxt ""
@@ -6593,7 +6710,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit ~Database File..."
-msgstr ""
+msgstr "Sunting Berkas Basis ~Data..."
#: DbuCommands.xcu
msgctxt ""
@@ -6602,7 +6719,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Disco~nnect"
-msgstr ""
+msgstr "Putuska~n"
#: DbuCommands.xcu
msgctxt ""
@@ -6611,7 +6728,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Registered databases ..."
-msgstr ""
+msgstr "Basis data yang terdaftar ..."
#: DbuCommands.xcu
msgctxt ""
@@ -6728,7 +6845,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from ~First Slide"
-msgstr ""
+msgstr "Mulai dari Salindia ~Pertama"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6737,7 +6854,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from C~urrent Slide"
-msgstr ""
+msgstr "M~ulai dari Salindia Kini"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6746,7 +6863,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump to Last Edited Slide"
-msgstr ""
+msgstr "Lompat ke Salindia yang Terakhir Disunting"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6818,7 +6935,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slides per Row"
-msgstr ""
+msgstr "Salindia per Baris"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6908,7 +7025,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Glue Points Functions"
-msgstr ""
+msgstr "Tampilkan Fungsi Titik Lekat"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7124,7 +7241,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Animasi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Induk Salindia"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Induk C~atatan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7601,7 +7718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Slide"
-msgstr ""
+msgstr "Sali~ndia Baru"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "~Catatan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7925,7 +8042,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Views"
-msgstr ""
+msgstr "Tampilkan Tilikan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "~Bilah Tab Tilikan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7943,7 +8060,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Views Tab Bar Visibility"
-msgstr ""
+msgstr "Jungkitkan Kenampakan Bilah Tab Tilikan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7970,7 +8087,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Slide"
-msgstr ""
+msgstr "Hapus Salin~dia"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8780,7 +8897,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master Elements..."
-msgstr ""
+msgstr "Ele~men Induk..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "~Panel Salindia"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8933,7 +9050,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Below"
-msgstr ""
+msgstr "Sisipkan Baris Di Bawah"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8942,7 +9059,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Above"
-msgstr ""
+msgstr "Sisipkan Baris Di Atas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8987,7 +9104,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Right"
-msgstr ""
+msgstr "Sisipkan Kolom Di Kanan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8996,7 +9113,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Left"
-msgstr ""
+msgstr "Sisipkan Kolom Di Kiri"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9563,7 +9680,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Blank Slide"
-msgstr ""
+msgstr "Salindia Kosong"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9572,7 +9689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Only"
-msgstr ""
+msgstr "Hanya Judul"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9581,7 +9698,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Salindia Judul"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9608,7 +9725,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title and 2 Content"
-msgstr ""
+msgstr "Judul dan 2 Isi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9617,7 +9734,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content and 2 Content"
-msgstr ""
+msgstr "Judul, Isi, dan 2 Isi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9626,7 +9743,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Content and Content"
-msgstr ""
+msgstr "Judul, 2 Isi, dan Isi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9635,7 +9752,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content over Content"
-msgstr ""
+msgstr "Judul, Isi di atas Isi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9644,7 +9761,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Content over Content"
-msgstr ""
+msgstr "Judul, 2 Isi di atas Isi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9671,7 +9788,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Vertical Text"
-msgstr ""
+msgstr "Judul Vertikal, Teks Vertikal"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9680,7 +9797,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Text, Chart"
-msgstr ""
+msgstr "Judul Vertikal, Teks, Bagan"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9689,7 +9806,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Vertical Text"
-msgstr ""
+msgstr "Judul, Teks Vertikal"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9698,7 +9815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Vertical Text, Clipart"
-msgstr ""
+msgstr "Judul, 2 Teks Vertikal, Klip Seni"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9770,7 +9887,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hanging Indent"
-msgstr ""
+msgstr "Indentasi Gantung"
#: DrawWindowState.xcu
msgctxt ""
@@ -9968,7 +10085,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane"
-msgstr ""
+msgstr "Panel Induk Halaman"
#: DrawWindowState.xcu
msgctxt ""
@@ -9977,7 +10094,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr ""
+msgstr "Panel Induk Halaman (tanpa seleksi)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10472,7 +10589,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Lonjong Vertikal"
#: Effects.xcu
msgctxt ""
@@ -13079,7 +13196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Honeycomb"
-msgstr ""
+msgstr "Sarang tawon"
#: Effects.xcu
msgctxt ""
@@ -13279,7 +13396,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Horizontal"
-msgstr ""
+msgstr "Lonjong Horisontal"
#: Effects.xcu
msgctxt ""
@@ -13288,7 +13405,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Lonjong Vertikal"
#: Effects.xcu
msgctxt ""
@@ -13345,24 +13462,22 @@ msgid "Vertical Out"
msgstr "Vertikal Keluar"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.cw-1-spoke\n"
"Label\n"
"value.text"
msgid "Clockwise 1 Spoke"
-msgstr "Searah jam"
+msgstr "Searah Jam 1 Jejari"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.cw-2-spoke\n"
"Label\n"
"value.text"
msgid "Clockwise 2 Spokes"
-msgstr "Searah jam"
+msgstr "Searah Jam 2 Jejari"
#: Effects.xcu
#, fuzzy
@@ -26727,15 +26842,6 @@ msgstr "~Properti..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objek..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/id/reportdesign/uiconfig/dbreport/ui.po b/source/id/reportdesign/uiconfig/dbreport/ui.po
index 51669b3b026..74bee0145b7 100644
--- a/source/id/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/id/reportdesign/uiconfig/dbreport/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-12-22 14:50+0000\n"
+"PO-Revision-Date: 2017-06-16 08:35+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482418224.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497602145.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -626,7 +626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: navigatormenu.ui
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sorting and Grouping..."
-msgstr ""
+msgstr "Pengurutan dan Pengelompokan..."
#: navigatormenu.ui
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Header/Footer..."
-msgstr ""
+msgstr "Kaki/Kepala Halaman..."
#: navigatormenu.ui
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Report Header/Footer..."
-msgstr ""
+msgstr "Kepala/Kaki Laporan..."
#: navigatormenu.ui
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Function"
-msgstr ""
+msgstr "Fungsi Baru"
#: navigatormenu.ui
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Properti..."
#: navigatormenu.ui
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: pagedialog.ui
msgctxt ""
diff --git a/source/id/sc/source/core/src.po b/source/id/sc/source/core/src.po
index f21b565ed05..b6f377952b5 100644
--- a/source/id/sc/source/core/src.po
+++ b/source/id/sc/source/core/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-05-23 23:40+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-19 15:59+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352456.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497887949.000000\n"
#: compiler.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"Database\n"
"itemlist.text"
msgid "Database"
-msgstr ""
+msgstr "Basis Data"
#: compiler.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"Date&Time\n"
"itemlist.text"
msgid "Date&Time"
-msgstr ""
+msgstr "Tanggal&Waktu"
#: compiler.src
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"Financial\n"
"itemlist.text"
msgid "Financial"
-msgstr ""
+msgstr "Finansial"
#: compiler.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"Information\n"
"itemlist.text"
msgid "Information"
-msgstr ""
+msgstr "Informasi"
#: compiler.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"Logical\n"
"itemlist.text"
msgid "Logical"
-msgstr ""
+msgstr "Lojik"
#: compiler.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Mathematical\n"
"itemlist.text"
msgid "Mathematical"
-msgstr ""
+msgstr "Matematis"
#: compiler.src
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"Array\n"
"itemlist.text"
msgid "Array"
-msgstr ""
+msgstr "Larik"
#: compiler.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"Statistical\n"
"itemlist.text"
msgid "Statistical"
-msgstr ""
+msgstr "Statistika"
#: compiler.src
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"Spreadsheet\n"
"itemlist.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Lembar Kerja"
#: compiler.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"Text\n"
"itemlist.text"
msgid "Text"
-msgstr ""
+msgstr "Teks"
#: compiler.src
msgctxt ""
diff --git a/source/id/sc/source/ui/StatisticsDialogs.po b/source/id/sc/source/ui/StatisticsDialogs.po
index 7395e16c98d..bbc8fa909ab 100644
--- a/source/id/sc/source/ui/StatisticsDialogs.po
+++ b/source/id/sc/source/ui/StatisticsDialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-07-10 06:45+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-20 17:35+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468133136.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497980114.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MOVING_AVERAGE_UNDO_NAME\n"
"string.text"
msgid "Moving Average"
-msgstr ""
+msgstr "Rerata Bergerak"
#: StatisticsDialogs.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_EXPONENTIAL_SMOOTHING_UNDO_NAME\n"
"string.text"
msgid "Exponential Smoothing"
-msgstr ""
+msgstr "Penghalusan Eksponensial"
#: StatisticsDialogs.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_ANALYSIS_OF_VARIANCE_UNDO_NAME\n"
"string.text"
msgid "Analysis of Variance"
-msgstr ""
+msgstr "Analisis Variansi"
#: StatisticsDialogs.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_ANOVA_SINGLE_FACTOR_LABEL\n"
"string.text"
msgid "ANOVA - Single Factor"
-msgstr ""
+msgstr "ANOVA - Faktor Tunggal"
#: StatisticsDialogs.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_ANOVA_TWO_FACTOR_LABEL\n"
"string.text"
msgid "ANOVA - Two Factor"
-msgstr ""
+msgstr "ANOVA - Dua Faktor"
#: StatisticsDialogs.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_ANOVA_LABEL_GROUPS\n"
"string.text"
msgid "Groups"
-msgstr ""
+msgstr "Grup"
#: StatisticsDialogs.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_ANOVA_LABEL_BETWEEN_GROUPS\n"
"string.text"
msgid "Between Groups"
-msgstr ""
+msgstr "Antara Grup"
#: StatisticsDialogs.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_ANOVA_LABEL_WITHIN_GROUPS\n"
"string.text"
msgid "Within Groups"
-msgstr ""
+msgstr "Dalam Grup"
#: StatisticsDialogs.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_ANOVA_LABEL_SOURCE_OF_VARIATION\n"
"string.text"
msgid "Source of Variation"
-msgstr ""
+msgstr "Sumber Variasi"
#: StatisticsDialogs.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_ANOVA_LABEL_SS\n"
"string.text"
msgid "SS"
-msgstr ""
+msgstr "SS"
#: StatisticsDialogs.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_ANOVA_LABEL_DF\n"
"string.text"
msgid "df"
-msgstr ""
+msgstr "df"
#: StatisticsDialogs.src
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_ANOVA_LABEL_MS\n"
"string.text"
msgid "MS"
-msgstr ""
+msgstr "MS"
#: StatisticsDialogs.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_ANOVA_LABEL_F\n"
"string.text"
msgid "F"
-msgstr ""
+msgstr "F"
#: StatisticsDialogs.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_ANOVA_LABEL_P_VALUE\n"
"string.text"
msgid "P-value"
-msgstr ""
+msgstr "Nilai-P"
#: StatisticsDialogs.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_ANOVA_LABEL_F_CRITICAL\n"
"string.text"
msgid "F critical"
-msgstr ""
+msgstr "F kritis"
#: StatisticsDialogs.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"STR_ANOVA_LABEL_TOTAL\n"
"string.text"
msgid "Total"
-msgstr ""
+msgstr "Total"
#: StatisticsDialogs.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"STR_CORRELATION_UNDO_NAME\n"
"string.text"
msgid "Correlation"
-msgstr ""
+msgstr "Korelasi"
#: StatisticsDialogs.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_CORRELATION_LABEL\n"
"string.text"
msgid "Correlations"
-msgstr ""
+msgstr "Korelasi"
#: StatisticsDialogs.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"STR_COVARIANCE_UNDO_NAME\n"
"string.text"
msgid "Covariance"
-msgstr ""
+msgstr "Kovariansi"
#: StatisticsDialogs.src
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"STR_COVARIANCE_LABEL\n"
"string.text"
msgid "Covariances"
-msgstr ""
+msgstr "Kovariansi"
#: StatisticsDialogs.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"STR_DESCRIPTIVE_STATISTICS_UNDO_NAME\n"
"string.text"
msgid "Descriptive Statistics"
-msgstr ""
+msgstr "Statistik Deskriptif"
#: StatisticsDialogs.src
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"STRID_CALC_MEAN\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Rerata"
#: StatisticsDialogs.src
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"STRID_CALC_STD_ERROR\n"
"string.text"
msgid "Standard Error"
-msgstr ""
+msgstr "Galat Standar"
#: StatisticsDialogs.src
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"STRID_CALC_MODE\n"
"string.text"
msgid "Mode"
-msgstr ""
+msgstr "Mode"
#: StatisticsDialogs.src
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"STRID_CALC_MEDIAN\n"
"string.text"
msgid "Median"
-msgstr ""
+msgstr "Median"
#: StatisticsDialogs.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"STRID_CALC_VARIANCE\n"
"string.text"
msgid "Variance"
-msgstr ""
+msgstr "Variansi"
#: StatisticsDialogs.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"STRID_CALC_STD_DEVIATION\n"
"string.text"
msgid "Standard Deviation"
-msgstr ""
+msgstr "Deviasi Standar"
#: StatisticsDialogs.src
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"STRID_CALC_KURTOSIS\n"
"string.text"
msgid "Kurtosis"
-msgstr ""
+msgstr "Kurtosis"
#: StatisticsDialogs.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STRID_CALC_RANGE\n"
"string.text"
msgid "Range"
-msgstr ""
+msgstr "Rentang"
#: StatisticsDialogs.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"STRID_CALC_MIN\n"
"string.text"
msgid "Minimum"
-msgstr ""
+msgstr "Minimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STRID_CALC_MAX\n"
"string.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"STRID_CALC_SUM\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Jumlah"
#: StatisticsDialogs.src
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"STRID_CALC_COUNT\n"
"string.text"
msgid "Count"
-msgstr ""
+msgstr "Cacah"
#: StatisticsDialogs.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"STRID_CALC_FIRST_QUARTILE\n"
"string.text"
msgid "First Quartile "
-msgstr ""
+msgstr "Kuartil Pertama "
#: StatisticsDialogs.src
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"STRID_CALC_THIRD_QUARTILE\n"
"string.text"
msgid "Third Quartile"
-msgstr ""
+msgstr "Kuartil Ke Tiga"
#: StatisticsDialogs.src
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"STR_DISTRIBUTION_UNIFORM_REAL\n"
"string.text"
msgid "Uniform"
-msgstr ""
+msgstr "Seragam"
#: StatisticsDialogs.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"STR_DISTRIBUTION_UNIFORM_INTEGER\n"
"string.text"
msgid "Uniform Integer"
-msgstr ""
+msgstr "Bilangan Bulat Seragam"
#: StatisticsDialogs.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_DISTRIBUTION_NORMAL\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Normal"
#: StatisticsDialogs.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_DISTRIBUTION_CAUCHY\n"
"string.text"
msgid "Cauchy"
-msgstr ""
+msgstr "Cauchy"
#: StatisticsDialogs.src
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"STR_DISTRIBUTION_BERNOULLI\n"
"string.text"
msgid "Bernoulli"
-msgstr ""
+msgstr "Bernoulli"
#: StatisticsDialogs.src
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"STR_DISTRIBUTION_BINOMIAL\n"
"string.text"
msgid "Binomial"
-msgstr ""
+msgstr "Binomial"
#: StatisticsDialogs.src
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"STR_DISTRIBUTION_NEGATIVE_BINOMIAL\n"
"string.text"
msgid "Negative Binomial"
-msgstr ""
+msgstr "Binomial Negatif"
#: StatisticsDialogs.src
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"STR_DISTRIBUTION_CHI_SQUARED\n"
"string.text"
msgid "Chi Squared"
-msgstr ""
+msgstr "Chi Squared"
#: StatisticsDialogs.src
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"STR_DISTRIBUTION_GEOMETRIC\n"
"string.text"
msgid "Geometric"
-msgstr ""
+msgstr "Geometris"
#: StatisticsDialogs.src
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"STR_RNG_PARAMETER_MINIMUM\n"
"string.text"
msgid "Minimum"
-msgstr ""
+msgstr "Minimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"STR_RNG_PARAMETER_MAXIMUM\n"
"string.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: StatisticsDialogs.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"STR_RNG_PARAMETER_MEAN\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Rerata"
#: StatisticsDialogs.src
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_DEVIATION\n"
"string.text"
msgid "Standard Deviation"
-msgstr ""
+msgstr "Deviasi Standar"
#: StatisticsDialogs.src
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_MEDIAN\n"
"string.text"
msgid "Median"
-msgstr ""
+msgstr "Median"
#: StatisticsDialogs.src
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_SIGMA\n"
"string.text"
msgid "Sigma"
-msgstr ""
+msgstr "Sigma"
#: StatisticsDialogs.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_NU_VALUE\n"
"string.text"
msgid "nu Value"
-msgstr ""
+msgstr "Nilai nu"
#: StatisticsDialogs.src
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"STR_SAMPLING_UNDO_NAME\n"
"string.text"
msgid "Sampling"
-msgstr ""
+msgstr "Pencuplikan"
#: StatisticsDialogs.src
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"STR_FTEST\n"
"string.text"
msgid "F-test"
-msgstr ""
+msgstr "F-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"STR_FTEST_UNDO_NAME\n"
"string.text"
msgid "F-test"
-msgstr ""
+msgstr "F-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"STR_TTEST\n"
"string.text"
msgid "t-test"
-msgstr ""
+msgstr "t-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"STR_TTEST_UNDO_NAME\n"
"string.text"
msgid "t-test"
-msgstr ""
+msgstr "t-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"STR_ZTEST\n"
"string.text"
msgid "z-test"
-msgstr ""
+msgstr "z-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"STR_ZTEST_UNDO_NAME\n"
"string.text"
msgid "z-test"
-msgstr ""
+msgstr "z-test"
#: StatisticsDialogs.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"STR_CHI_SQUARE_TEST\n"
"string.text"
msgid "Test of Independence (Chi-Square)"
-msgstr ""
+msgstr "Uji Independensi (Chi-Square)"
#: StatisticsDialogs.src
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"STR_REGRESSION_UNDO_NAME\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regresi"
#: StatisticsDialogs.src
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"STR_REGRESSION\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regresi"
#: StatisticsDialogs.src
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"STR_COLUMN_LABEL_TEMPLATE\n"
"string.text"
msgid "Column %NUMBER%"
-msgstr ""
+msgstr "Kolom %NUMBER%"
#: StatisticsDialogs.src
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"STR_ROW_LABEL_TEMPLATE\n"
"string.text"
msgid "Row %NUMBER%"
-msgstr ""
+msgstr "Baris %NUMBER%"
#: StatisticsDialogs.src
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"STR_LABEL_ALPHA\n"
"string.text"
msgid "Alpha"
-msgstr ""
+msgstr "Alfa"
#: StatisticsDialogs.src
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"STR_VARIABLE_1_LABEL\n"
"string.text"
msgid "Variable 1"
-msgstr ""
+msgstr "Variabel 1"
#: StatisticsDialogs.src
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"STR_VARIABLE_2_LABEL\n"
"string.text"
msgid "Variable 2"
-msgstr ""
+msgstr "Variabel 2"
#: StatisticsDialogs.src
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL\n"
"string.text"
msgid "Hypothesized Mean Difference"
-msgstr ""
+msgstr "Perbedaan Rerata Terhipotesakan"
#: StatisticsDialogs.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"STR_OBSERVATIONS_LABEL\n"
"string.text"
msgid "Observations"
-msgstr ""
+msgstr "Observasi"
#: StatisticsDialogs.src
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"STR_OBSERVED_MEAN_DIFFERENCE_LABEL\n"
"string.text"
msgid "Observed Mean Difference"
-msgstr ""
+msgstr "Perbedaan Rerata Teramati"
#: StatisticsDialogs.src
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"STR_DEGREES_OF_FREEDOM_LABEL\n"
"string.text"
msgid "df"
-msgstr ""
+msgstr "df"
#: StatisticsDialogs.src
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"STR_P_VALUE_LABEL\n"
"string.text"
msgid "P-value"
-msgstr ""
+msgstr "Nilai P"
#: StatisticsDialogs.src
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"STR_CRITICAL_VALUE_LABEL\n"
"string.text"
msgid "Critical Value"
-msgstr ""
+msgstr "Nilai Kritis"
#: StatisticsDialogs.src
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"STR_TEST_STATISTIC_LABEL\n"
"string.text"
msgid "Test Statistic"
-msgstr ""
+msgstr "Statistik Uji"
#: StatisticsDialogs.src
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"STR_LABEL_LINEAR\n"
"string.text"
msgid "Linear"
-msgstr ""
+msgstr "Linier"
#: StatisticsDialogs.src
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"STR_LABEL_LOGARITHMIC\n"
"string.text"
msgid "Logarithmic"
-msgstr ""
+msgstr "Logaritmik"
#: StatisticsDialogs.src
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"STR_LABEL_POWER\n"
"string.text"
msgid "Power"
-msgstr ""
+msgstr "Pangkat"
#: StatisticsDialogs.src
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"STR_LABEL_REGRESSION_MODEL\n"
"string.text"
msgid "Regression Model"
-msgstr ""
+msgstr "Model Regresi"
#: StatisticsDialogs.src
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"STR_LABEL_RSQUARED\n"
"string.text"
msgid "R^2"
-msgstr ""
+msgstr "R^2"
#: StatisticsDialogs.src
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"STR_LABEL_SLOPE\n"
"string.text"
msgid "Slope"
-msgstr ""
+msgstr "Kemiringan"
#: StatisticsDialogs.src
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"STR_LABEL_INTERCEPT\n"
"string.text"
msgid "Intercept"
-msgstr ""
+msgstr "Titik Potong"
#: StatisticsDialogs.src
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"STR_FTEST_P_RIGHT_TAIL\n"
"string.text"
msgid "P (F<=f) right-tail"
-msgstr ""
+msgstr "P (F<=f) ekor kanan"
#: StatisticsDialogs.src
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"STR_FTEST_F_CRITICAL_RIGHT_TAIL\n"
"string.text"
msgid "F Critical right-tail"
-msgstr ""
+msgstr "F Kritis ekor kanan"
#: StatisticsDialogs.src
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"STR_FTEST_P_LEFT_TAIL\n"
"string.text"
msgid "P (F<=f) left-tail"
-msgstr ""
+msgstr "P (F<=f) ekor kiri"
#: StatisticsDialogs.src
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"STR_FTEST_F_CRITICAL_LEFT_TAIL\n"
"string.text"
msgid "F Critical left-tail"
-msgstr ""
+msgstr "F Kritis ekor kiri"
#: StatisticsDialogs.src
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"STR_FTEST_P_TWO_TAIL\n"
"string.text"
msgid "P two-tail"
-msgstr ""
+msgstr "P ekor dua"
#: StatisticsDialogs.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"STR_FTEST_F_CRITICAL_TWO_TAIL\n"
"string.text"
msgid "F Critical two-tail"
-msgstr ""
+msgstr "F Kritis ekor dua"
#: StatisticsDialogs.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"STR_TTEST_PEARSON_CORRELATION\n"
"string.text"
msgid "Pearson Correlation"
-msgstr ""
+msgstr "Korelasi Pearson"
#: StatisticsDialogs.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"STR_TTEST_VARIANCE_OF_THE_DIFFERENCES\n"
"string.text"
msgid "Variance of the Differences"
-msgstr ""
+msgstr "Variansi Perbedaan"
#: StatisticsDialogs.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"STR_TTEST_T_STAT\n"
"string.text"
msgid "t Stat"
-msgstr ""
+msgstr "t Stat"
#: StatisticsDialogs.src
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"STR_TTEST_P_ONE_TAIL\n"
"string.text"
msgid "P (T<=t) one-tail"
-msgstr ""
+msgstr "P (T<=t) ekor satu"
#: StatisticsDialogs.src
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"STR_TTEST_T_CRITICAL_ONE_TAIL\n"
"string.text"
msgid "t Critical one-tail"
-msgstr ""
+msgstr "t Kritis ekor satu"
#: StatisticsDialogs.src
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"STR_TTEST_P_TWO_TAIL\n"
"string.text"
msgid "P (T<=t) two-tail"
-msgstr ""
+msgstr "P (T<=t) ekor dua"
#: StatisticsDialogs.src
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"STR_TTEST_T_CRITICAL_TWO_TAIL\n"
"string.text"
msgid "t Critical two-tail"
-msgstr ""
+msgstr "t Kritis ekor dua"
#: StatisticsDialogs.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"STR_ZTEST_Z_VALUE\n"
"string.text"
msgid "z"
-msgstr ""
+msgstr "z"
#: StatisticsDialogs.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"STR_ZTEST_KNOWN_VARIANCE\n"
"string.text"
msgid "Known Variance"
-msgstr ""
+msgstr "Variansi Yang Diketahui"
#: StatisticsDialogs.src
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"STR_ZTEST_P_ONE_TAIL\n"
"string.text"
msgid "P (Z<=z) one-tail"
-msgstr ""
+msgstr "P (Z<=z) ekor satu"
#: StatisticsDialogs.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"STR_ZTEST_Z_CRITICAL_ONE_TAIL\n"
"string.text"
msgid "z Critical one-tail"
-msgstr ""
+msgstr "z Kritis ekor satu"
#: StatisticsDialogs.src
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"STR_ZTEST_P_TWO_TAIL\n"
"string.text"
msgid "P (Z<=z) two-tail"
-msgstr ""
+msgstr "P (Z<=z) ekor dua"
#: StatisticsDialogs.src
msgctxt ""
@@ -838,4 +838,4 @@ msgctxt ""
"STR_ZTEST_Z_CRITICAL_TWO_TAIL\n"
"string.text"
msgid "z Critical two-tail"
-msgstr ""
+msgstr "z Kritis ekor dua"
diff --git a/source/id/sc/source/ui/cctrl.po b/source/id/sc/source/ui/cctrl.po
index 6b03e687b52..06625753598 100644
--- a/source/id/sc/source/ui/cctrl.po
+++ b/source/id/sc/source/ui/cctrl.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-07-10 06:45+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-20 17:36+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468133143.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497980170.000000\n"
#: checklistmenu.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MENU_SORT_ASC\n"
"string.text"
msgid "Sort Ascending"
-msgstr ""
+msgstr "Urut Naik"
#: checklistmenu.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MENU_SORT_DESC\n"
"string.text"
msgid "Sort Descending"
-msgstr ""
+msgstr "Urut Turun"
#: checklistmenu.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_MENU_SORT_CUSTOM\n"
"string.text"
msgid "Custom Sort"
-msgstr ""
+msgstr "Urut Ubahan"
#: checklistmenu.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_BTN_TOGGLE_ALL\n"
"string.text"
msgid "All"
-msgstr ""
+msgstr "Semua"
#: checklistmenu.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_BTN_SELECT_CURRENT\n"
"string.text"
msgid "Show only the current item."
-msgstr ""
+msgstr "Menampilkan hanya butir kini."
#: checklistmenu.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_BTN_UNSELECT_CURRENT\n"
"string.text"
msgid "Hide only the current item."
-msgstr ""
+msgstr "Menyembunyikan hanya item kini."
#: checklistmenu.src
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"STR_EDIT_SEARCH_ITEMS\n"
"string.text"
msgid "Search items..."
-msgstr ""
+msgstr "Cari item..."
diff --git a/source/id/sc/source/ui/navipi.po b/source/id/sc/source/ui/navipi.po
index e432ebe011b..0c4db9e7cee 100644
--- a/source/id/sc/source/ui/navipi.po
+++ b/source/id/sc/source/ui/navipi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-31 12:12+0000\n"
+"PO-Revision-Date: 2017-06-20 17:36+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483186353.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497980175.000000\n"
#: navipi.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"SCSTR_DISPLAY\n"
"string.text"
msgid "Display"
-msgstr ""
+msgstr "Tampilan"
#: navipi.src
msgctxt ""
diff --git a/source/id/sc/source/ui/src.po b/source/id/sc/source/ui/src.po
index 9d9d3c69163..9d944025ed7 100644
--- a/source/id/sc/source/ui/src.po
+++ b/source/id/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: sc-source-ui-src master\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-15 04:01+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 17:50+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484452907.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497981045.000000\n"
#: globstr.src
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"STR_UNDO_SHOWALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Show All Comments"
-msgstr ""
+msgstr "Tampilkan Semua Komentar"
#: globstr.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"STR_UNDO_HIDEALLNOTES+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Hide All Comments"
-msgstr ""
+msgstr "Sembunyikan Semua Komentar"
#: globstr.src
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"STR_UNDO_UNPROTECT_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Unprotect sheet"
-msgstr ""
+msgstr "Buka proteksi lembar kerja"
#: globstr.src
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"STR_UNDO_UNPROTECT_DOC+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Unprotect document"
-msgstr ""
+msgstr "Buka proteksi dokumen"
#: globstr.src
msgctxt ""
@@ -924,7 +924,7 @@ msgctxt ""
"STR_TABLE_DEF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sheet"
-msgstr ""
+msgstr "Lembar"
#: globstr.src
msgctxt ""
@@ -980,7 +980,7 @@ msgctxt ""
"STR_PIVOT_REMOVE_PIVOTCHART+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "There is at least one pivot chart associated with this pivot table. Should remove all or abort?"
-msgstr ""
+msgstr "Ada paling tidak satu diagram pivot yang terkait dengan tabel pivot ini. Mesti hapus semua atau gugurkan?"
#: globstr.src
msgctxt ""
@@ -996,7 +996,7 @@ msgctxt ""
"STR_PIVOT_TOTAL+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Total"
-msgstr ""
+msgstr "Total"
#: globstr.src
msgctxt ""
@@ -1210,7 +1210,7 @@ msgctxt ""
"STR_FUN_TEXT_SUM+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Jumlah"
#: globstr.src
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"STR_STYLENAME_STANDARD+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Baku"
#: globstr.src
msgctxt ""
@@ -1964,7 +1964,7 @@ msgctxt ""
"STR_UNDO_RENAME_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Ubah Nama Lembar"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Jangkauan dipindah dari #1 ke #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,6 +2710,11 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
+"Aksi ini menyebabkan keluar dari perubahan mode rekam.\n"
+"Semua informasi tentang perubahan tersebut akan hilang.\n"
+"\n"
+"Keluar dari perubahan mode rekam?\n"
+"\n"
#: globstr.src
msgctxt ""
@@ -2866,10 +2871,10 @@ msgstr "Larik bersarang tidak didukung."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr ""
+msgstr "Teks ke Kolom"
#: globstr.src
msgctxt ""
@@ -3151,7 +3156,7 @@ msgctxt ""
"STR_HEADER_NAME+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Name"
-msgstr ""
+msgstr "Nama"
#: globstr.src
msgctxt ""
@@ -3757,7 +3762,7 @@ msgctxt ""
"STR_CTRLCLICKHYPERLINK+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "%s-click to follow hyperlink:"
-msgstr ""
+msgstr "Klik-%s untuk mengikuti tautan:"
#: globstr.src
msgctxt ""
@@ -3797,7 +3802,7 @@ msgctxt ""
"STR_UNDO_CONDFORMAT_LIST+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Conditional Formats"
-msgstr ""
+msgstr "Format Bersyarat"
#: globstr.src
msgctxt ""
@@ -3917,7 +3922,7 @@ msgctxt ""
"STR_TEXT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Teks"
#: globstr.src
msgctxt ""
@@ -3925,7 +3930,7 @@ msgctxt ""
"STR_QUERY_PIVOTTABLE_DELTAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-msgstr ""
+msgstr "Lembar yang dipilih mengandung data sumber dari tabel pivot terkait yang akan hilang. Anda yakin hendak menghapus lembar yang dipilih?"
#: globstr.src
msgctxt ""
@@ -3933,7 +3938,7 @@ msgctxt ""
"STR_ERR_NAME_INVALID_CELL_REF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
-msgstr ""
+msgstr "Nama tidak valid. Acuan ke suatu sel, atau rentang dari sel tidak diizinkan."
#: scfuncs.src
msgctxt ""
@@ -5593,6 +5598,8 @@ msgid ""
"Calculates the calendar week corresponding to the given date.\n"
"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
msgstr ""
+"Menghitung minggu kalender sesuai dengan tanggal yang diberikan.\n"
+"Fungsi ini hanya menyediakan interoperabilitas dengan %PRODUCTNAME 5.0 dan sebelumnya serta OpenOffice.org."
#: scfuncs.src
msgctxt ""
@@ -9849,7 +9856,7 @@ msgctxt ""
"Function\n"
"itemlist.text"
msgid "Function"
-msgstr ""
+msgstr "Fungsi"
#: scfuncs.src
msgctxt ""
@@ -10231,6 +10238,8 @@ msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Membulatkan sebuah bilangan dari nol ke kelipatan signifikansi terdekat.\n"
+"Fungsi ini ada untuk interoperabilitas dengan Microsoft Excel 2007 atau versi lebih lama."
#: scfuncs.src
msgctxt ""
@@ -10558,6 +10567,8 @@ msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Membulatkan bilangan menuju nol ke kelipatan terdekat dari nilai absolut signifikansi.\n"
+"Fungsi ini ada untuk interoperabilitas dengan Microsoft Excel 2007 atau versi sebelumnya."
#: scfuncs.src
msgctxt ""
@@ -20781,7 +20792,7 @@ msgctxt ""
"min_range\n"
"itemlist.text"
msgid "min_range"
-msgstr ""
+msgstr "rentang_min"
#: scfuncs.src
msgctxt ""
@@ -20844,7 +20855,7 @@ msgctxt ""
"max_range\n"
"itemlist.text"
msgid "max_range"
-msgstr ""
+msgstr "rentang_maks"
#: scfuncs.src
msgctxt ""
@@ -21861,7 +21872,7 @@ msgctxt ""
"text\n"
"itemlist.text"
msgid "text"
-msgstr ""
+msgstr "teks"
#: scfuncs.src
msgctxt ""
@@ -22221,7 +22232,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Bilangan bulat positif kurang dari 2^48."
#: scfuncs.src
msgctxt ""
@@ -22257,7 +22268,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Bilangan bulat positif kurang dari 2^48."
#: scfuncs.src
msgctxt ""
@@ -22293,7 +22304,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Bilangan bulat positif kurang dari 2^48."
#: scfuncs.src
msgctxt ""
@@ -22860,7 +22871,7 @@ msgctxt ""
"Rounds a number to predefined significant digits.\n"
"itemlist.text"
msgid "Rounds a number to predefined significant digits."
-msgstr ""
+msgstr "Membulatkan suatu bilangan ke dijit signifikan yang terpradefinisi."
#: scfuncs.src
msgctxt ""
@@ -22869,7 +22880,7 @@ msgctxt ""
"value\n"
"itemlist.text"
msgid "value"
-msgstr ""
+msgstr "nilai"
#: scfuncs.src
msgctxt ""
@@ -22878,7 +22889,7 @@ msgctxt ""
"The number to be rounded.\n"
"itemlist.text"
msgid "The number to be rounded."
-msgstr ""
+msgstr "Bilangan yang akan dibulatkan."
#: scfuncs.src
msgctxt ""
@@ -22887,7 +22898,7 @@ msgctxt ""
"digits\n"
"itemlist.text"
msgid "digits"
-msgstr ""
+msgstr "dijit"
#: scfuncs.src
msgctxt ""
@@ -22896,7 +22907,7 @@ msgctxt ""
"The number of significant digits to which value is to be rounded.\n"
"itemlist.text"
msgid "The number of significant digits to which value is to be rounded."
-msgstr ""
+msgstr "Banyaknya dijit signifikan bagi nilai yang akan dibulatkan."
#: scstring.src
msgctxt ""
diff --git a/source/id/sc/uiconfig/scalc/ui.po b/source/id/sc/uiconfig/scalc/ui.po
index 80b2a74ff58..5444bf5783b 100644
--- a/source/id/sc/uiconfig/scalc/ui.po
+++ b/source/id/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-14 12:40+0000\n"
+"PO-Revision-Date: 2017-06-21 15:14+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484397646.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498058050.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -432,6 +432,9 @@ msgid ""
"\n"
"Select 'Protect Sheet' from the 'Tools' menu."
msgstr ""
+"Proteksi sel hanya efektif setelah lembar saat ini telah diproteksi.\n"
+"\n"
+"Pilih 'Proteksi Lembar' dari menu 'Perkakas'."
#: cellprotectionpage.ui
msgctxt ""
@@ -719,7 +722,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "All Cells"
-msgstr ""
+msgstr "Semua Sel"
#: conditionalentry.ui
msgctxt ""
@@ -728,7 +731,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Cell value is"
-msgstr ""
+msgstr "Nilai sel adalah"
#: conditionalentry.ui
msgctxt ""
@@ -737,7 +740,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Formula is"
-msgstr ""
+msgstr "Fungsinya adalah"
#: conditionalentry.ui
msgctxt ""
@@ -746,7 +749,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Date is"
-msgstr ""
+msgstr "Tanggalnya adalah"
#: conditionalentry.ui
msgctxt ""
@@ -755,7 +758,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply Style:"
-msgstr ""
+msgstr "Terapkan Gaya:"
#: conditionalentry.ui
msgctxt ""
@@ -764,7 +767,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "New Style..."
-msgstr ""
+msgstr "Gaya Baru..."
#: conditionalentry.ui
msgctxt ""
@@ -773,7 +776,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enter a value:"
-msgstr ""
+msgstr "Masukkan suatu nilai:"
#: conditionalentry.ui
msgctxt ""
@@ -782,7 +785,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "More Options..."
-msgstr ""
+msgstr "Opsi Lain..."
#: conditionalentry.ui
msgctxt ""
@@ -791,7 +794,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Otomatis"
#: conditionalentry.ui
msgctxt ""
@@ -800,7 +803,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: conditionalentry.ui
msgctxt ""
@@ -809,7 +812,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Maks"
#: conditionalentry.ui
msgctxt ""
@@ -818,7 +821,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Persentil"
#: conditionalentry.ui
msgctxt ""
@@ -827,7 +830,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Nilai"
#: conditionalentry.ui
msgctxt ""
@@ -836,7 +839,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Persen"
#: conditionalentry.ui
msgctxt ""
@@ -845,7 +848,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Rumus"
#: conditionalentry.ui
msgctxt ""
@@ -854,7 +857,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Otomatis"
#: conditionalentry.ui
msgctxt ""
@@ -863,7 +866,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: conditionalentry.ui
msgctxt ""
@@ -872,7 +875,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Maks"
#: conditionalentry.ui
msgctxt ""
@@ -881,7 +884,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Persentil"
#: conditionalentry.ui
msgctxt ""
@@ -890,7 +893,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Nilai"
#: conditionalentry.ui
msgctxt ""
@@ -899,7 +902,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Persen"
#: conditionalentry.ui
msgctxt ""
@@ -908,7 +911,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Rumus"
#: conditionalentry.ui
msgctxt ""
@@ -917,7 +920,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Otomatis"
#: conditionalentry.ui
msgctxt ""
@@ -926,7 +929,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: conditionalentry.ui
msgctxt ""
@@ -935,7 +938,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Maks"
#: conditionalentry.ui
msgctxt ""
@@ -944,7 +947,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Persentil"
#: conditionalentry.ui
msgctxt ""
@@ -953,7 +956,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Nilai"
#: conditionalentry.ui
msgctxt ""
@@ -962,7 +965,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Persen"
#: conditionalentry.ui
msgctxt ""
@@ -971,7 +974,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Rumus"
#: conditionalentry.ui
msgctxt ""
@@ -980,7 +983,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "Contoh"
#: conditionalentry.ui
msgctxt ""
@@ -989,7 +992,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "equal to"
-msgstr ""
+msgstr "sama dengan"
#: conditionalentry.ui
msgctxt ""
@@ -998,7 +1001,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "less than"
-msgstr ""
+msgstr "kurang dari"
#: conditionalentry.ui
msgctxt ""
@@ -1007,7 +1010,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "greater than"
-msgstr ""
+msgstr "lebih dari"
#: conditionalentry.ui
msgctxt ""
@@ -1016,7 +1019,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "less than or equal to"
-msgstr ""
+msgstr "kurang dari atau sama dengan"
#: conditionalentry.ui
msgctxt ""
@@ -1025,7 +1028,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "greater than or equal to"
-msgstr ""
+msgstr "lebih dari atau sama dengan"
#: conditionalentry.ui
msgctxt ""
@@ -1034,7 +1037,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "not equal to"
-msgstr ""
+msgstr "tak sama dengan"
#: conditionalentry.ui
msgctxt ""
@@ -1043,7 +1046,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "between"
-msgstr ""
+msgstr "diantara"
#: conditionalentry.ui
msgctxt ""
@@ -1052,7 +1055,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "not between"
-msgstr ""
+msgstr "tidak diantara"
#: conditionalentry.ui
msgctxt ""
@@ -1061,7 +1064,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "duplicate"
-msgstr ""
+msgstr "duplikat"
#: conditionalentry.ui
msgctxt ""
@@ -1070,7 +1073,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "not duplicate"
-msgstr ""
+msgstr "tidak duplikat"
#: conditionalentry.ui
msgctxt ""
@@ -1079,7 +1082,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "top 10 elements"
-msgstr ""
+msgstr "10 elemen teratas"
#: conditionalentry.ui
msgctxt ""
@@ -1088,7 +1091,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "bottom 10 elements"
-msgstr ""
+msgstr "10 elemen terbawah"
#: conditionalentry.ui
msgctxt ""
@@ -1097,7 +1100,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "top 10 percent"
-msgstr ""
+msgstr "10 persen teratas"
#: conditionalentry.ui
msgctxt ""
@@ -1106,7 +1109,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "bottom 10 percent"
-msgstr ""
+msgstr "10 persen terbawah"
#: conditionalentry.ui
msgctxt ""
@@ -1115,7 +1118,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "above average"
-msgstr ""
+msgstr "di atas rata-rata"
#: conditionalentry.ui
msgctxt ""
@@ -1124,7 +1127,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "below average"
-msgstr ""
+msgstr "di bawah rata-rata"
#: conditionalentry.ui
msgctxt ""
@@ -1133,7 +1136,7 @@ msgctxt ""
"16\n"
"stringlist.text"
msgid "above or equal average"
-msgstr ""
+msgstr "di atas atau sama dengan rata-rata"
#: conditionalentry.ui
msgctxt ""
@@ -1142,7 +1145,7 @@ msgctxt ""
"17\n"
"stringlist.text"
msgid "below or equal average"
-msgstr ""
+msgstr "di bawah atau sama dengan rata-rata"
#: conditionalentry.ui
msgctxt ""
@@ -1151,7 +1154,7 @@ msgctxt ""
"18\n"
"stringlist.text"
msgid "Error"
-msgstr ""
+msgstr "Galat"
#: conditionalentry.ui
msgctxt ""
@@ -1160,7 +1163,7 @@ msgctxt ""
"19\n"
"stringlist.text"
msgid "No Error"
-msgstr ""
+msgstr "Tanpa Galat"
#: conditionalentry.ui
msgctxt ""
@@ -1169,7 +1172,7 @@ msgctxt ""
"20\n"
"stringlist.text"
msgid "Begins with"
-msgstr ""
+msgstr "Diawali dengan"
#: conditionalentry.ui
msgctxt ""
@@ -1178,7 +1181,7 @@ msgctxt ""
"21\n"
"stringlist.text"
msgid "Ends with"
-msgstr ""
+msgstr "Diakhiri dengan"
#: conditionalentry.ui
msgctxt ""
@@ -1187,7 +1190,7 @@ msgctxt ""
"22\n"
"stringlist.text"
msgid "Contains"
-msgstr ""
+msgstr "Mengandung"
#: conditionalentry.ui
msgctxt ""
@@ -1196,7 +1199,7 @@ msgctxt ""
"23\n"
"stringlist.text"
msgid "Not Contains"
-msgstr ""
+msgstr "Tidak Mengandung"
#: conditionalentry.ui
msgctxt ""
@@ -1205,7 +1208,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Today"
-msgstr ""
+msgstr "Hari ini"
#: conditionalentry.ui
msgctxt ""
@@ -1214,7 +1217,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Yesterday"
-msgstr ""
+msgstr "Kemarin"
#: conditionalentry.ui
msgctxt ""
@@ -1223,7 +1226,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Tomorrow"
-msgstr ""
+msgstr "Besok"
#: conditionalentry.ui
msgctxt ""
@@ -1232,7 +1235,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Last 7 days"
-msgstr ""
+msgstr "7 hari terakhir"
#: conditionalentry.ui
msgctxt ""
@@ -1241,7 +1244,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "This week"
-msgstr ""
+msgstr "Minggu ini"
#: conditionalentry.ui
msgctxt ""
@@ -1250,7 +1253,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Last week"
-msgstr ""
+msgstr "Minggu lalu"
#: conditionalentry.ui
msgctxt ""
@@ -1259,7 +1262,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Next week"
-msgstr ""
+msgstr "Minggu depan"
#: conditionalentry.ui
msgctxt ""
@@ -1268,7 +1271,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "This month"
-msgstr ""
+msgstr "Bulan ini"
#: conditionalentry.ui
msgctxt ""
@@ -1277,7 +1280,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Last month"
-msgstr ""
+msgstr "Bulan lalu"
#: conditionalentry.ui
msgctxt ""
@@ -1286,7 +1289,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Next month"
-msgstr ""
+msgstr "Bulan depan"
#: conditionalentry.ui
msgctxt ""
@@ -1295,7 +1298,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "This year"
-msgstr ""
+msgstr "Tahun ini"
#: conditionalentry.ui
msgctxt ""
@@ -1304,7 +1307,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Last year"
-msgstr ""
+msgstr "Tahun lalu"
#: conditionalentry.ui
msgctxt ""
@@ -1313,7 +1316,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Next year"
-msgstr ""
+msgstr "Tahun depan"
#: conditionalentry.ui
msgctxt ""
@@ -1322,7 +1325,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Color Scale (2 Entries)"
-msgstr ""
+msgstr "Skala Warna (2 Entri)"
#: conditionalentry.ui
msgctxt ""
@@ -1331,7 +1334,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Color Scale (3 Entries)"
-msgstr ""
+msgstr "Skala Warna (3 Entri)"
#: conditionalentry.ui
msgctxt ""
@@ -1340,7 +1343,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Data Bar"
-msgstr ""
+msgstr "Bilah Data"
#: conditionalentry.ui
msgctxt ""
@@ -1349,7 +1352,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Icon Set"
-msgstr ""
+msgstr "Set Ikon"
#: conditionalentry.ui
msgctxt ""
@@ -1358,7 +1361,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "3 Arrows"
-msgstr ""
+msgstr "3 Panah"
#: conditionalentry.ui
msgctxt ""
@@ -1367,7 +1370,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "3 Gray Arrows"
-msgstr ""
+msgstr "3 Panah Kelabu"
#: conditionalentry.ui
msgctxt ""
@@ -1376,7 +1379,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "3 Flags"
-msgstr ""
+msgstr "3 Bendera"
#: conditionalentry.ui
msgctxt ""
@@ -1385,7 +1388,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "3 Traffic Lights 1"
-msgstr ""
+msgstr "3 Lampu Lalu Lintas 1"
#: conditionalentry.ui
msgctxt ""
@@ -1394,7 +1397,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "3 Traffic Lights 2"
-msgstr ""
+msgstr "3 Lampu Lalu Lintas 2"
#: conditionalentry.ui
msgctxt ""
@@ -1403,7 +1406,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "3 Signs"
-msgstr ""
+msgstr "3 Tanda"
#: conditionalentry.ui
msgctxt ""
@@ -1412,7 +1415,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "3 Symbols 1"
-msgstr ""
+msgstr "3 Simbol 1"
#: conditionalentry.ui
msgctxt ""
@@ -1421,7 +1424,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "3 Symbols 2"
-msgstr ""
+msgstr "3 Simbol 2"
#: conditionalentry.ui
msgctxt ""
@@ -1430,7 +1433,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "3 Smileys"
-msgstr ""
+msgstr "3 Smiley"
#: conditionalentry.ui
msgctxt ""
@@ -1439,7 +1442,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "3 Stars"
-msgstr ""
+msgstr "3 Bintang"
#: conditionalentry.ui
msgctxt ""
@@ -1448,7 +1451,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "3 Triangles"
-msgstr ""
+msgstr "3 Segi Tiga"
#: conditionalentry.ui
msgctxt ""
@@ -1457,7 +1460,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "3 Colored Smileys"
-msgstr ""
+msgstr "3 Smiley Berwarna"
#: conditionalentry.ui
msgctxt ""
@@ -1466,7 +1469,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "4 Arrows"
-msgstr ""
+msgstr "4 Panah"
#: conditionalentry.ui
msgctxt ""
@@ -1475,7 +1478,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "4 Gray Arrows"
-msgstr ""
+msgstr "4 Panah Kelabu"
#: conditionalentry.ui
msgctxt ""
@@ -1484,7 +1487,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "4 Circles Red to Black"
-msgstr ""
+msgstr "4 Lingkaran Merah ke Hitam"
#: conditionalentry.ui
msgctxt ""
@@ -1493,7 +1496,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "4 Ratings"
-msgstr ""
+msgstr "4 Peringkat"
#: conditionalentry.ui
msgctxt ""
@@ -1502,7 +1505,7 @@ msgctxt ""
"16\n"
"stringlist.text"
msgid "4 Traffic Lights"
-msgstr ""
+msgstr "4 Lampu Lalu Lintas"
#: conditionalentry.ui
msgctxt ""
@@ -1511,7 +1514,7 @@ msgctxt ""
"17\n"
"stringlist.text"
msgid "5 Arrows"
-msgstr ""
+msgstr "5 Panah"
#: conditionalentry.ui
msgctxt ""
@@ -1520,7 +1523,7 @@ msgctxt ""
"18\n"
"stringlist.text"
msgid "5 Gray Arrows"
-msgstr ""
+msgstr "5 Panah Kelabu"
#: conditionalentry.ui
msgctxt ""
@@ -1529,7 +1532,7 @@ msgctxt ""
"19\n"
"stringlist.text"
msgid "5 Ratings"
-msgstr ""
+msgstr "5 Peringkat"
#: conditionalentry.ui
msgctxt ""
@@ -1547,7 +1550,7 @@ msgctxt ""
"21\n"
"stringlist.text"
msgid "5 Boxes"
-msgstr ""
+msgstr "5 Kotak"
#: conditionalformatdialog.ui
msgctxt ""
@@ -1592,7 +1595,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " >= "
-msgstr ""
+msgstr " >= "
#: conditionaliconset.ui
msgctxt ""
@@ -1601,7 +1604,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Nilai"
#: conditionaliconset.ui
msgctxt ""
@@ -1610,7 +1613,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Persen"
#: conditionaliconset.ui
msgctxt ""
@@ -1619,7 +1622,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Persentil"
#: conditionaliconset.ui
msgctxt ""
@@ -1628,7 +1631,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Rumus"
#: conflictsdialog.ui
msgctxt ""
@@ -3464,7 +3467,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Hyperlink"
-msgstr ""
+msgstr "Sisip sebagai Taut-Luar"
#: dropmenu.ui
msgctxt ""
@@ -3473,7 +3476,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Link"
-msgstr ""
+msgstr "Sisipkan sebagai Tautan"
#: dropmenu.ui
msgctxt ""
@@ -3482,7 +3485,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Copy"
-msgstr ""
+msgstr "Sisipkan sebagai Salinan"
#: erroralerttabpage.ui
msgctxt ""
@@ -3896,7 +3899,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "No Border"
-msgstr ""
+msgstr "Tanpa Batas"
#: floatingborderstyle.ui
msgctxt ""
@@ -3905,7 +3908,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "All Borders"
-msgstr ""
+msgstr "Semua Batas"
#: floatingborderstyle.ui
msgctxt ""
@@ -3914,7 +3917,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Outside Borders"
-msgstr ""
+msgstr "Di Luar Perbatasan"
#: floatingborderstyle.ui
msgctxt ""
@@ -3923,7 +3926,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Thick Box Border"
-msgstr ""
+msgstr "Batas Kotak Tebal"
#: floatingborderstyle.ui
msgctxt ""
@@ -3932,7 +3935,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Thick Bottom Border"
-msgstr ""
+msgstr "Batas Bawah Tebal"
#: floatingborderstyle.ui
msgctxt ""
@@ -3941,7 +3944,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Double Bottom Border"
-msgstr ""
+msgstr "Batas Bawah Ganda"
#: floatingborderstyle.ui
msgctxt ""
@@ -3950,7 +3953,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top and Thick Bottom Borders"
-msgstr ""
+msgstr "Batas Bawah Tebal dan Atas"
#: floatingborderstyle.ui
msgctxt ""
@@ -3959,7 +3962,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top and Double Bottom Borders"
-msgstr ""
+msgstr "Batas Bawah Ganda dan Atas"
#: floatingborderstyle.ui
msgctxt ""
@@ -3968,7 +3971,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Left Border"
-msgstr ""
+msgstr "Batas Kiri"
#: floatingborderstyle.ui
msgctxt ""
@@ -3977,7 +3980,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Right Border"
-msgstr ""
+msgstr "Batas Kanan"
#: floatingborderstyle.ui
msgctxt ""
@@ -3986,7 +3989,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top Border"
-msgstr ""
+msgstr "Batas Atas"
#: floatingborderstyle.ui
msgctxt ""
@@ -3995,7 +3998,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Bottom Border"
-msgstr ""
+msgstr "Batas Bawah"
#: floatingborderstyle.ui
msgctxt ""
@@ -4004,7 +4007,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Diagonal Up Border"
-msgstr ""
+msgstr "Batas Diagonal Naik"
#: floatingborderstyle.ui
msgctxt ""
@@ -4013,7 +4016,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Diagonal Down Border"
-msgstr ""
+msgstr "Batas Diagonal Turun"
#: floatingborderstyle.ui
msgctxt ""
@@ -4022,7 +4025,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top and Bottom Borders"
-msgstr ""
+msgstr "Batas Atas dan Bawah"
#: floatingborderstyle.ui
msgctxt ""
@@ -4031,7 +4034,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Left and Right Borders"
-msgstr ""
+msgstr "Batas Kiri dan Kanan"
#: floatinglinestyle.ui
msgctxt ""
@@ -4040,7 +4043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_More Options..."
-msgstr ""
+msgstr "_Opsi Lain..."
#: footerdialog.ui
msgctxt ""
@@ -4256,7 +4259,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Function into calculation sheet"
-msgstr ""
+msgstr "Sisipkan Fungsi pada lembar kalkulasi"
#: functionpanel.ui
msgctxt ""
@@ -4265,7 +4268,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Last Used"
-msgstr ""
+msgstr "Terakhir Dipakai"
#: functionpanel.ui
msgctxt ""
@@ -4274,7 +4277,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "All"
-msgstr ""
+msgstr "Semua"
#: functionpanel.ui
msgctxt ""
@@ -4283,7 +4286,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Database"
-msgstr ""
+msgstr "Basis Data"
#: functionpanel.ui
msgctxt ""
@@ -4292,7 +4295,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Date&Time"
-msgstr ""
+msgstr "Tanggal&Waktu"
#: functionpanel.ui
msgctxt ""
@@ -4301,7 +4304,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Financial"
-msgstr ""
+msgstr "Finansial"
#: functionpanel.ui
msgctxt ""
@@ -4310,7 +4313,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Information"
-msgstr ""
+msgstr "Informasi"
#: functionpanel.ui
msgctxt ""
@@ -4319,7 +4322,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Logical"
-msgstr ""
+msgstr "Lojik"
#: functionpanel.ui
msgctxt ""
@@ -4328,7 +4331,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Mathematical"
-msgstr ""
+msgstr "Matematik"
#: functionpanel.ui
msgctxt ""
@@ -4337,7 +4340,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Array"
-msgstr ""
+msgstr "Larik"
#: functionpanel.ui
msgctxt ""
@@ -4346,7 +4349,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Statistical"
-msgstr ""
+msgstr "Statistika"
#: functionpanel.ui
msgctxt ""
@@ -4355,7 +4358,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Lembar Kerja"
#: functionpanel.ui
msgctxt ""
@@ -4364,7 +4367,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Text"
-msgstr ""
+msgstr "Teks"
#: functionpanel.ui
msgctxt ""
@@ -4373,7 +4376,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Add-in"
-msgstr ""
+msgstr "Add-in"
#: functionpanel.ui
msgctxt ""
@@ -4382,7 +4385,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "label"
-msgstr ""
+msgstr "label"
#: goalseekdlg.ui
msgctxt ""
@@ -5336,7 +5339,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Merge Cells"
-msgstr ""
+msgstr "Gabungkan Sel"
#: mergecellsdialog.ui
msgctxt ""
@@ -5345,7 +5348,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Some cells are not empty."
-msgstr ""
+msgstr "Beberapa sel tidak kosong."
#: mergecellsdialog.ui
msgctxt ""
@@ -5354,7 +5357,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move the contents of the hidden cells into the first cell"
-msgstr ""
+msgstr "Pindahkan isi sel-sel tersembunyi ke dalam sel pertama"
#: mergecellsdialog.ui
msgctxt ""
@@ -5363,7 +5366,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Keep the contents of the hidden cells"
-msgstr ""
+msgstr "Pertahankan isi sel-sel tersembunyi"
#: mergecellsdialog.ui
msgctxt ""
@@ -5372,7 +5375,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Empty the contents of the hidden cells"
-msgstr ""
+msgstr "Kosongkan isi sel-sel tersembunyi"
#: movecopysheet.ui
msgctxt ""
@@ -5669,7 +5672,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column:"
-msgstr ""
+msgstr "Kolom:"
#: navigatorpanel.ui
msgctxt ""
@@ -5678,7 +5681,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row:"
-msgstr ""
+msgstr "Baris:"
#: navigatorpanel.ui
msgctxt ""
@@ -5687,7 +5690,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Column"
-msgstr ""
+msgstr "Kolom"
#: navigatorpanel.ui
msgctxt ""
@@ -5696,7 +5699,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Row"
-msgstr ""
+msgstr "Baris"
#: navigatorpanel.ui
msgctxt ""
@@ -5705,7 +5708,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Data Range"
-msgstr ""
+msgstr "Rentang Data"
#: navigatorpanel.ui
msgctxt ""
@@ -5714,7 +5717,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Start"
-msgstr ""
+msgstr "Awal"
#: navigatorpanel.ui
msgctxt ""
@@ -5723,7 +5726,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "End"
-msgstr ""
+msgstr "Akhir"
#: navigatorpanel.ui
msgctxt ""
@@ -5732,7 +5735,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Contents"
-msgstr ""
+msgstr "Isi"
#: navigatorpanel.ui
msgctxt ""
@@ -5741,7 +5744,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle"
-msgstr ""
+msgstr "Jungkit"
#: navigatorpanel.ui
msgctxt ""
@@ -5750,7 +5753,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Scenarios"
-msgstr ""
+msgstr "Skenario"
#: navigatorpanel.ui
msgctxt ""
@@ -5759,7 +5762,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Mode Seret"
#: navigatorpanel.ui
msgctxt ""
@@ -5768,7 +5771,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Dokumen"
#: navigatorpanel.ui
msgctxt ""
@@ -5777,7 +5780,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Jendela Aktif"
#: nosolutiondialog.ui
msgctxt ""
@@ -5804,7 +5807,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Berkas"
#: notebookbar.ui
msgctxt ""
@@ -5813,7 +5816,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clone"
-msgstr ""
+msgstr "Klon"
#: notebookbar.ui
msgctxt ""
@@ -5822,7 +5825,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the borders of the selected cells."
-msgstr ""
+msgstr "Nyatakan tepi sel yang dipilih."
#: notebookbar.ui
msgctxt ""
@@ -5831,7 +5834,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Vertical Alignment"
-msgstr ""
+msgstr "Perataan Vertikal"
#: notebookbar.ui
msgctxt ""
@@ -5840,7 +5843,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Perataan Horisontal"
#: notebookbar.ui
msgctxt ""
@@ -5849,7 +5852,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Indentasi"
#: notebookbar.ui
msgctxt ""
@@ -5858,7 +5861,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Naikkan Indentasi"
#: notebookbar.ui
msgctxt ""
@@ -5867,7 +5870,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Turunkan Indentasi"
#: notebookbar.ui
msgctxt ""
@@ -5876,7 +5879,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Beranda"
#: notebookbar.ui
msgctxt ""
@@ -5885,7 +5888,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Sisipkan Audio atau Video"
#: notebookbar.ui
msgctxt ""
@@ -5894,7 +5897,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Simbol"
#: notebookbar.ui
msgctxt ""
@@ -5903,7 +5906,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Sisipkan"
#: notebookbar.ui
msgctxt ""
@@ -5912,7 +5915,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Toggle Grid Lines"
-msgstr ""
+msgstr "Jungkitkan Garis Kisi"
#: notebookbar.ui
msgctxt ""
@@ -5921,7 +5924,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Layout"
-msgstr ""
+msgstr "Tata Letak Halaman"
#: notebookbar.ui
msgctxt ""
@@ -5930,7 +5933,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data"
-msgstr ""
+msgstr "Data"
#: notebookbar.ui
msgctxt ""
@@ -5939,7 +5942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "Periksa Ejaan Otomatis"
#: notebookbar.ui
msgctxt ""
@@ -5948,7 +5951,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Tinjau"
#: notebookbar.ui
msgctxt ""
@@ -5957,7 +5960,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Toggle Grid Lines"
-msgstr ""
+msgstr "Jungkitkan Garis Kisi"
#: notebookbar.ui
msgctxt ""
@@ -5966,7 +5969,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Tilik"
#: notebookbar.ui
msgctxt ""
@@ -5975,7 +5978,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Citra"
#: notebookbar_groups.ui
msgctxt ""
@@ -5984,7 +5987,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Taut Luar"
#: notebookbar_groups.ui
msgctxt ""
@@ -5993,7 +5996,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Catatan kaki"
#: notebookbar_groups.ui
msgctxt ""
@@ -6002,7 +6005,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Catatan akhir"
#: notebookbar_groups.ui
msgctxt ""
@@ -6011,7 +6014,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Tanda taut"
#: notebookbar_groups.ui
msgctxt ""
@@ -6020,7 +6023,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Acuan silang"
#: notebookbar_groups.ui
msgctxt ""
@@ -6029,7 +6032,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Baku"
#: notebookbar_groups.ui
msgctxt ""
@@ -6038,7 +6041,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Aksen 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6047,7 +6050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Aksen 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6056,7 +6059,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Aksen 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -6065,7 +6068,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Tajuk 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6074,7 +6077,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Tajuk 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6083,7 +6086,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Good"
-msgstr ""
+msgstr "Baik"
#: notebookbar_groups.ui
msgctxt ""
@@ -6092,7 +6095,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Neutral"
-msgstr ""
+msgstr "Netral"
#: notebookbar_groups.ui
msgctxt ""
@@ -6101,7 +6104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bad"
-msgstr ""
+msgstr "Buruk"
#: notebookbar_groups.ui
msgctxt ""
@@ -6110,7 +6113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Warning"
-msgstr ""
+msgstr "Peringatan"
#: notebookbar_groups.ui
msgctxt ""
@@ -6119,7 +6122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error"
-msgstr ""
+msgstr "Kesalahan"
#: notebookbar_groups.ui
msgctxt ""
@@ -6128,7 +6131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Note"
-msgstr ""
+msgstr "Catatan"
#: notebookbar_groups.ui
msgctxt ""
@@ -6137,7 +6140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Catatan kaki"
#: notebookbar_groups.ui
msgctxt ""
@@ -6146,7 +6149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Nihil"
#: notebookbar_groups.ui
msgctxt ""
@@ -6155,7 +6158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Baku"
#: notebookbar_groups.ui
msgctxt ""
@@ -6164,7 +6167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Gaya 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6173,7 +6176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Gaya 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6182,7 +6185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Gaya 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -6191,7 +6194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Gaya 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -6200,7 +6203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Berkas"
#: notebookbar_groups.ui
msgctxt ""
@@ -6209,7 +6212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Papan klip"
#: notebookbar_groups.ui
msgctxt ""
@@ -6218,10 +6221,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Gaya"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -6231,7 +6233,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -6247,7 +6248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Kiri"
#: notebookbar_groups.ui
msgctxt ""
@@ -6256,7 +6257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "Tengah"
#: notebookbar_groups.ui
msgctxt ""
@@ -6265,7 +6266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Kanan"
#: notebookbar_groups.ui
msgctxt ""
@@ -6274,7 +6275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Teks"
#: notebookbar_groups.ui
msgctxt ""
@@ -6283,7 +6284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge"
-msgstr ""
+msgstr "Gabung"
#: notebookbar_groups.ui
msgctxt ""
@@ -6292,7 +6293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Split"
-msgstr ""
+msgstr "Pecah"
#: notebookbar_groups.ui
msgctxt ""
@@ -6301,7 +6302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Conditional"
-msgstr ""
+msgstr "Bersyarat"
#: notebookbar_groups.ui
msgctxt ""
@@ -6310,7 +6311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Top"
-msgstr ""
+msgstr "Atas"
#: notebookbar_groups.ui
msgctxt ""
@@ -6319,7 +6320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "Tengah"
#: notebookbar_groups.ui
msgctxt ""
@@ -6328,7 +6329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bottom"
-msgstr ""
+msgstr "Bawah"
#: notebookbar_groups.ui
msgctxt ""
@@ -6337,7 +6338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Lembar kerja"
#: notebookbar_groups.ui
msgctxt ""
@@ -6346,7 +6347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Bentuk"
#: notebookbar_groups.ui
msgctxt ""
@@ -6355,7 +6356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Tautan"
#: notebookbar_groups.ui
msgctxt ""
@@ -6364,7 +6365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Sisipkan"
#: notebookbar_groups.ui
msgctxt ""
@@ -6373,7 +6374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Gaya"
#: notebookbar_groups.ui
msgctxt ""
@@ -6382,7 +6383,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Reset"
#: notebookbar_groups.ui
msgctxt ""
@@ -6391,7 +6392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Tekuk"
#: notebookbar_groups.ui
msgctxt ""
@@ -6400,7 +6401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Kunci"
#: notebookbar_groups.ui
msgctxt ""
@@ -6409,7 +6410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Citra"
#: notebookbar_groups.ui
msgctxt ""
@@ -6418,7 +6419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Nihil"
#: notebookbar_groups.ui
msgctxt ""
@@ -6427,7 +6428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Optimal"
#: notebookbar_groups.ui
msgctxt ""
@@ -6436,7 +6437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Paralel"
#: notebookbar_groups.ui
msgctxt ""
@@ -6445,7 +6446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Sebelum"
#: notebookbar_groups.ui
msgctxt ""
@@ -6454,7 +6455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Setelah"
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/id/scaddins/source/analysis.po b/source/id/scaddins/source/analysis.po
index 4747bf3ca2d..87cf35f5456 100644
--- a/source/id/scaddins/source/analysis.po
+++ b/source/id/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-07-09 01:34+0000\n"
+"PO-Revision-Date: 2017-06-16 23:48+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468028081.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497656924.000000\n"
#: analysis.src
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"Complex number\n"
"itemlist.text"
msgid "Complex number"
-msgstr ""
+msgstr "Bilangan kompleks"
#: analysis.src
msgctxt ""
@@ -2032,7 +2032,7 @@ msgctxt ""
"Complex number 1\n"
"itemlist.text"
msgid "Complex number 1"
-msgstr ""
+msgstr "Bilangan kompleks 1"
#: analysis.src
msgctxt ""
@@ -2041,7 +2041,7 @@ msgctxt ""
"Complex number 2\n"
"itemlist.text"
msgid "Complex number 2"
-msgstr ""
+msgstr "Bilangan kompleks 2"
#: analysis.src
msgctxt ""
diff --git a/source/id/scaddins/source/datefunc.po b/source/id/scaddins/source/datefunc.po
index 2c331427561..b17828fff52 100644
--- a/source/id/scaddins/source/datefunc.po
+++ b/source/id/scaddins/source/datefunc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-05-23 23:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 23:49+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352483.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497656961.000000\n"
#: datefunc.src
msgctxt ""
@@ -346,7 +346,7 @@ msgctxt ""
"DATE_FUNCNAME_DiffWeeks\n"
"string.text"
msgid "WEEKS"
-msgstr ""
+msgstr "WEEKS"
#: datefunc.src
msgctxt ""
@@ -354,7 +354,7 @@ msgctxt ""
"DATE_FUNCNAME_DiffMonths\n"
"string.text"
msgid "MONTHS"
-msgstr ""
+msgstr "MONTHS"
#: datefunc.src
msgctxt ""
@@ -362,7 +362,7 @@ msgctxt ""
"DATE_FUNCNAME_DiffYears\n"
"string.text"
msgid "YEARS"
-msgstr ""
+msgstr "YEARS"
#: datefunc.src
msgctxt ""
@@ -370,7 +370,7 @@ msgctxt ""
"DATE_FUNCNAME_IsLeapYear\n"
"string.text"
msgid "ISLEAPYEAR"
-msgstr ""
+msgstr "ISLEAPYEAR"
#: datefunc.src
msgctxt ""
@@ -378,7 +378,7 @@ msgctxt ""
"DATE_FUNCNAME_DaysInMonth\n"
"string.text"
msgid "DAYSINMONTH"
-msgstr ""
+msgstr "DAYSINMONTH"
#: datefunc.src
msgctxt ""
@@ -386,7 +386,7 @@ msgctxt ""
"DATE_FUNCNAME_DaysInYear\n"
"string.text"
msgid "DAYSINYEAR"
-msgstr ""
+msgstr "DAYSINYEAR"
#: datefunc.src
msgctxt ""
@@ -394,7 +394,7 @@ msgctxt ""
"DATE_FUNCNAME_WeeksInYear\n"
"string.text"
msgid "WEEKSINYEAR"
-msgstr ""
+msgstr "WEEKSINYEAR"
#: datefunc.src
msgctxt ""
@@ -402,4 +402,4 @@ msgctxt ""
"DATE_FUNCNAME_Rot13\n"
"string.text"
msgid "ROT13"
-msgstr ""
+msgstr "ROT13"
diff --git a/source/id/scaddins/source/pricing.po b/source/id/scaddins/source/pricing.po
index 605bcabf899..9b89fb0b989 100644
--- a/source/id/scaddins/source/pricing.po
+++ b/source/id/scaddins/source/pricing.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-05-01 23:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 23:49+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462144318.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497656972.000000\n"
#: pricing.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptBarrier\n"
"string.text"
msgid "OPT_BARRIER"
-msgstr ""
+msgstr "OPT_BARRIER"
#: pricing.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptTouch\n"
"string.text"
msgid "OPT_TOUCH"
-msgstr ""
+msgstr "OPT_TOUCH"
#: pricing.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbHit\n"
"string.text"
msgid "OPT_PROB_HIT"
-msgstr ""
+msgstr "OPT_PROB_HIT"
#: pricing.src
msgctxt ""
@@ -766,4 +766,4 @@ msgctxt ""
"PRICING_FUNCNAME_OptProbInMoney\n"
"string.text"
msgid "OPT_PROB_INMONEY"
-msgstr ""
+msgstr "OPT_PROB_INMONEY"
diff --git a/source/id/scp2/source/calc.po b/source/id/scp2/source/calc.po
index a35be98ffe8..67f6b2c6fe2 100644
--- a/source/id/scp2/source/calc.po
+++ b/source/id/scp2/source/calc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-12-14 10:36+0000\n"
+"PO-Revision-Date: 2017-06-16 08:36+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1387017414.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497602209.000000\n"
#: folderitem_calc.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WEBQUERY\n"
"LngText.text"
msgid "Microsoft Excel Web Query File"
-msgstr ""
+msgstr "Berkas Kuiri Web Microsoft Excel"
#: registryitem_calc.ulf
msgctxt ""
diff --git a/source/id/scp2/source/ooo.po b/source/id/scp2/source/ooo.po
index fc6e19efc42..abc416cadba 100644
--- a/source/id/scp2/source/ooo.po
+++ b/source/id/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-12-22 10:53+0000\n"
+"PO-Revision-Date: 2017-06-16 08:37+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482404033.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497602225.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Sorbia Atas"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Pasang antarmuka pengguna Sorbia Atas"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/id/sd/source/core.po b/source/id/sd/source/core.po
index 4a5cbd50f35..c550f9cf37b 100644
--- a/source/id/sd/source/core.po
+++ b/source/id/sd/source/core.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-27 03:34+0000\n"
+"PO-Revision-Date: 2017-06-17 07:42+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482809650.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497685346.000000\n"
#: glob.src
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"File format error found at $(ARG1)(row,col).\n"
"itemlist.text"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
+msgstr "Kesalahan format berkas ditemukan pada $(ARG1)(row,col)."
#: glob.src
msgctxt ""
@@ -504,7 +504,7 @@ msgctxt ""
"Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col).\n"
"itemlist.text"
msgid "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col)."
-msgstr ""
+msgstr "Kesalahan format ditemukan dalam berkas pada subdokumen $(ARG1) di posisi $(ARG2)(baris,kolom)."
#: glob.src
msgctxt ""
diff --git a/source/id/sd/source/ui/animations.po b/source/id/sd/source/ui/animations.po
index 27df4cd747a..36b5c49f876 100644
--- a/source/id/sd/source/ui/animations.po
+++ b/source/id/sd/source/ui/animations.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-12-27 03:35+0000\n"
+"PO-Revision-Date: 2017-06-17 07:42+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482809737.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497685371.000000\n"
#: CustomAnimation.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SPOKES_PROPERTY\n"
"string.text"
msgid "Spokes:"
-msgstr ""
+msgstr "Jari-jari:"
#: CustomAnimation.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY\n"
"string.text"
msgid "Typeface:"
-msgstr ""
+msgstr "Typeface:"
#: CustomAnimation.src
msgctxt ""
diff --git a/source/id/sd/source/ui/app.po b/source/id/sd/source/ui/app.po
index 91c488b32aa..df31d146c69 100644
--- a/source/id/sd/source/ui/app.po
+++ b/source/id/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2016-12-27 03:36+0000\n"
+"PO-Revision-Date: 2017-06-17 07:43+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482809774.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497685421.000000\n"
#: res_bmp.src
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"STR_HTMLEXP_SETGRAPHIC\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Citra"
#: strings.src
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"STR_DRAW_GRAF_TOOLBOX\n"
"string.text"
msgid "Image Object Bar"
-msgstr ""
+msgstr "Bilah Objek Citra"
#: strings.src
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"STR_UNDO_GRAFFILTER\n"
"string.text"
msgid "Image filter"
-msgstr ""
+msgstr "Penyaring citra"
#: strings.src
msgctxt ""
@@ -2058,7 +2058,7 @@ msgctxt ""
"STR_GRAPHICS_STYLE_FAMILY\n"
"string.text"
msgid "Drawing Styles"
-msgstr ""
+msgstr "Gaya Menggambar"
#: strings.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "Direktori lokal '%FILENAME' yang dituju tidak kosong. Beberapa berkas bisa tertimpa. Anda hendak melanjutkan?"
#: toolbox.src
msgctxt ""
diff --git a/source/id/sd/source/ui/view.po b/source/id/sd/source/ui/view.po
index cd82cf5d65d..243de3dddf5 100644
--- a/source/id/sd/source/ui/view.po
+++ b/source/id/sd/source/ui/view.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-07-23 03:57+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-20 12:58+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1469246241.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497963498.000000\n"
#: DocumentRenderer.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_GROUP_NAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr ""
+msgstr "%PRODUCTNAME %s"
#: DocumentRenderer.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PRINT_GROUP\n"
"string.text"
msgid "Print"
-msgstr ""
+msgstr "Cetak"
#: DocumentRenderer.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_CONTENT\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Dokumen"
#: DocumentRenderer.src
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"Slides\n"
"itemlist.text"
msgid "Slides"
-msgstr ""
+msgstr "Salindia"
#: DocumentRenderer.src
msgctxt ""
@@ -56,7 +56,7 @@ msgctxt ""
"Handouts\n"
"itemlist.text"
msgid "Handouts"
-msgstr ""
+msgstr "Handout"
#: DocumentRenderer.src
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"Notes\n"
"itemlist.text"
msgid "Notes"
-msgstr ""
+msgstr "Catatan"
#: DocumentRenderer.src
msgctxt ""
@@ -74,7 +74,7 @@ msgctxt ""
"Outline\n"
"itemlist.text"
msgid "Outline"
-msgstr ""
+msgstr "Kerangka"
#: DocumentRenderer.src
msgctxt ""
@@ -82,7 +82,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_SLIDESPERPAGE\n"
"string.text"
msgid "Slides per page"
-msgstr ""
+msgstr "Salindia per halaman"
#: DocumentRenderer.src
msgctxt ""
@@ -91,7 +91,7 @@ msgctxt ""
"According to layout\n"
"itemlist.text"
msgid "According to layout"
-msgstr ""
+msgstr "Menurut tata letak"
#: DocumentRenderer.src
msgctxt ""
@@ -100,7 +100,7 @@ msgctxt ""
"1\n"
"itemlist.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: DocumentRenderer.src
msgctxt ""
@@ -109,7 +109,7 @@ msgctxt ""
"2\n"
"itemlist.text"
msgid "2"
-msgstr ""
+msgstr "2"
#: DocumentRenderer.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"3\n"
"itemlist.text"
msgid "3"
-msgstr ""
+msgstr "3"
#: DocumentRenderer.src
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"4\n"
"itemlist.text"
msgid "4"
-msgstr ""
+msgstr "4"
#: DocumentRenderer.src
msgctxt ""
@@ -136,7 +136,7 @@ msgctxt ""
"6\n"
"itemlist.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: DocumentRenderer.src
msgctxt ""
@@ -145,7 +145,7 @@ msgctxt ""
"9\n"
"itemlist.text"
msgid "9"
-msgstr ""
+msgstr "9"
#: DocumentRenderer.src
msgctxt ""
@@ -153,7 +153,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_ORDER\n"
"string.text"
msgid "Order"
-msgstr ""
+msgstr "Urutan"
#: DocumentRenderer.src
msgctxt ""
@@ -162,7 +162,7 @@ msgctxt ""
"Left to right, then down\n"
"itemlist.text"
msgid "Left to right, then down"
-msgstr ""
+msgstr "Kiri ke kanan, lalu turun"
#: DocumentRenderer.src
msgctxt ""
@@ -171,7 +171,7 @@ msgctxt ""
"Top to bottom, then right\n"
"itemlist.text"
msgid "Top to bottom, then right"
-msgstr ""
+msgstr "Atas ke bawah, lalu kanan"
#: DocumentRenderer.src
msgctxt ""
@@ -179,7 +179,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT\n"
"string.text"
msgid "~Contents"
-msgstr ""
+msgstr "~Isi"
#: DocumentRenderer.src
msgctxt ""
@@ -187,7 +187,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_IS_PRINT_NAME\n"
"string.text"
msgid "~Slide name"
-msgstr ""
+msgstr "Nama ~salindia"
#: DocumentRenderer.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"STR_DRAW_PRINT_UI_IS_PRINT_NAME\n"
"string.text"
msgid "P~age name"
-msgstr ""
+msgstr "Nama h~alaman"
#: DocumentRenderer.src
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_IS_PRINT_DATE\n"
"string.text"
msgid "~Date and time"
-msgstr ""
+msgstr "Tanggal ~dan waktu"
#: DocumentRenderer.src
msgctxt ""
@@ -211,7 +211,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN\n"
"string.text"
msgid "Hidden pages"
-msgstr ""
+msgstr "Halaman tersembunyi"
#: DocumentRenderer.src
msgctxt ""
@@ -219,7 +219,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_QUALITY\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Warna"
#: DocumentRenderer.src
msgctxt ""
@@ -228,7 +228,7 @@ msgctxt ""
"Original colors\n"
"itemlist.text"
msgid "Original colors"
-msgstr ""
+msgstr "Warna asli"
#: DocumentRenderer.src
msgctxt ""
@@ -237,7 +237,7 @@ msgctxt ""
"Grayscale\n"
"itemlist.text"
msgid "Grayscale"
-msgstr ""
+msgstr "Skala abu-abu"
#: DocumentRenderer.src
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"Black & white\n"
"itemlist.text"
msgid "Black & white"
-msgstr ""
+msgstr "Hitam & putih"
#: DocumentRenderer.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAGE_OPTIONS\n"
"string.text"
msgid "~Size"
-msgstr ""
+msgstr "~Ukuran"
#: DocumentRenderer.src
msgctxt ""
@@ -263,7 +263,7 @@ msgctxt ""
"Original size\n"
"itemlist.text"
msgid "Original size"
-msgstr ""
+msgstr "Ukuran asli"
#: DocumentRenderer.src
msgctxt ""
@@ -272,7 +272,7 @@ msgctxt ""
"Fit to printable page\n"
"itemlist.text"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Paskan ke halaman yang dapat dicetak"
#: DocumentRenderer.src
msgctxt ""
@@ -281,7 +281,7 @@ msgctxt ""
"Distribute on multiple sheets of paper\n"
"itemlist.text"
msgid "Distribute on multiple sheets of paper"
-msgstr ""
+msgstr "Sebarkan pada sejumlah lembar kertas"
#: DocumentRenderer.src
msgctxt ""
@@ -290,7 +290,7 @@ msgctxt ""
"Tile sheet of paper with repeated slides\n"
"itemlist.text"
msgid "Tile sheet of paper with repeated slides"
-msgstr ""
+msgstr "Jajaran lembaran kertas dengan salindia yang diulang"
#: DocumentRenderer.src
msgctxt ""
@@ -299,7 +299,7 @@ msgctxt ""
"Original size\n"
"itemlist.text"
msgid "Original size"
-msgstr ""
+msgstr "Ukuran asli"
#: DocumentRenderer.src
msgctxt ""
@@ -308,7 +308,7 @@ msgctxt ""
"Fit to printable page\n"
"itemlist.text"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Paskan ke halaman yang dapat dicetak"
#: DocumentRenderer.src
msgctxt ""
@@ -317,7 +317,7 @@ msgctxt ""
"Distribute on multiple sheets of paper\n"
"itemlist.text"
msgid "Distribute on multiple sheets of paper"
-msgstr ""
+msgstr "Sebarkan pada sejumlah lembar kertas"
#: DocumentRenderer.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"Tile sheet of paper with repeated pages\n"
"itemlist.text"
msgid "Tile sheet of paper with repeated pages"
-msgstr ""
+msgstr "Jajaran lembaran kertas dengan halaman yang diulang"
#: DocumentRenderer.src
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_BROCHURE\n"
"string.text"
msgid "Brochure"
-msgstr ""
+msgstr "Brosur"
#: DocumentRenderer.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAGE_SIDES\n"
"string.text"
msgid "Page sides"
-msgstr ""
+msgstr "Sisi halaman"
#: DocumentRenderer.src
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE\n"
"string.text"
msgid "Include"
-msgstr ""
+msgstr "Termasuk"
#: DocumentRenderer.src
msgctxt ""
@@ -359,7 +359,7 @@ msgctxt ""
"All pages\n"
"itemlist.text"
msgid "All pages"
-msgstr ""
+msgstr "Semua halaman"
#: DocumentRenderer.src
msgctxt ""
@@ -368,7 +368,7 @@ msgctxt ""
"Front sides / right pages\n"
"itemlist.text"
msgid "Front sides / right pages"
-msgstr ""
+msgstr "Sisi depan / halaman kanan"
#: DocumentRenderer.src
msgctxt ""
@@ -377,7 +377,7 @@ msgctxt ""
"Back sides / left pages\n"
"itemlist.text"
msgid "Back sides / left pages"
-msgstr ""
+msgstr "Sisi belakang / halaman kiri"
#: DocumentRenderer.src
msgctxt ""
@@ -385,7 +385,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAPER_TRAY\n"
"string.text"
msgid "~Use only paper tray from printer preferences"
-msgstr ""
+msgstr "Hanya g~unakan baki kertas dari preferensi pencetak"
#: DocumentRenderer.src
msgctxt ""
@@ -393,7 +393,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_PAGE_RANGE\n"
"string.text"
msgid "Print range"
-msgstr ""
+msgstr "Rentang cetak"
#: DocumentRenderer.src
msgctxt ""
@@ -402,7 +402,7 @@ msgctxt ""
"~All slides\n"
"itemlist.text"
msgid "~All slides"
-msgstr ""
+msgstr "Semu~a salindia"
#: DocumentRenderer.src
msgctxt ""
@@ -411,7 +411,7 @@ msgctxt ""
"~Slides\n"
"itemlist.text"
msgid "~Slides"
-msgstr ""
+msgstr "~Salindia"
#: DocumentRenderer.src
msgctxt ""
@@ -420,7 +420,7 @@ msgctxt ""
"Se~lection\n"
"itemlist.text"
msgid "Se~lection"
-msgstr ""
+msgstr "Se~leksi"
#: DocumentRenderer.src
msgctxt ""
@@ -429,7 +429,7 @@ msgctxt ""
"~All pages\n"
"itemlist.text"
msgid "~All pages"
-msgstr ""
+msgstr "Semu~a halaman"
#: DocumentRenderer.src
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"Pa~ges\n"
"itemlist.text"
msgid "Pa~ges"
-msgstr ""
+msgstr "~Halaman"
#: DocumentRenderer.src
msgctxt ""
@@ -447,4 +447,4 @@ msgctxt ""
"Se~lection\n"
"itemlist.text"
msgid "Se~lection"
-msgstr ""
+msgstr "Se~leksi"
diff --git a/source/id/sd/uiconfig/sdraw/ui.po b/source/id/sd/uiconfig/sdraw/ui.po
index f728bd496a1..7b118752c74 100644
--- a/source/id/sd/uiconfig/sdraw/ui.po
+++ b/source/id/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-27 03:36+0000\n"
+"PO-Revision-Date: 2017-06-20 12:58+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482809797.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497963510.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparansi"
#: drawparadialog.ui
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Penyorotan"
#: insertlayer.ui
msgctxt ""
diff --git a/source/id/sd/uiconfig/simpress/ui.po b/source/id/sd/uiconfig/simpress/ui.po
index a36b0c9301a..9d4a3c03645 100644
--- a/source/id/sd/uiconfig/simpress/ui.po
+++ b/source/id/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2016-12-27 06:45+0000\n"
+"PO-Revision-Date: 2017-06-20 12:59+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482821125.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497963546.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Reply"
-msgstr ""
+msgstr "_Jawaban"
#: annotationmenu.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Bold"
-msgstr ""
+msgstr "Te_bal"
#: annotationmenu.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Italic"
-msgstr ""
+msgstr " M_iring"
#: annotationmenu.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Underline"
-msgstr ""
+msgstr "_Garis bawah"
#: annotationmenu.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Strikethrough"
-msgstr ""
+msgstr "Garis _coret"
#: annotationmenu.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "_Salin"
#: annotationmenu.ui
msgctxt ""
diff --git a/source/id/setup_native/source/mac.po b/source/id/setup_native/source/mac.po
index a1eef558957..3fdd3a22c3c 100644
--- a/source/id/setup_native/source/mac.po
+++ b/source/id/setup_native/source/mac.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2013-05-23 23:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 08:36+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352501.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497602184.000000\n"
#: macinstall.ulf
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"IdentifyQText\n"
"LngText.text"
msgid "Installation failed; most likely your account does not have the necessary privileges."
-msgstr ""
+msgstr "Instalasi gagal; paling mungkin akun Anda tidak memiliki hak akses yang diperlukan."
#: macinstall.ulf
msgctxt ""
diff --git a/source/id/sfx2/source/dialog.po b/source/id/sfx2/source/dialog.po
index e27b0dc8fde..dd08d08c6f9 100644
--- a/source/id/sfx2/source/dialog.po
+++ b/source/id/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-12-27 06:47+0000\n"
+"PO-Revision-Date: 2017-06-17 07:08+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482821278.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497683297.000000\n"
#: dialog.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"Matter\n"
"itemlist.text"
msgid "Matter"
-msgstr ""
+msgstr "Masalah"
#: dinfdlg.src
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"Purpose\n"
"itemlist.text"
msgid "Purpose"
-msgstr ""
+msgstr "Tujuan"
#: dinfdlg.src
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"DateTime\n"
"itemlist.text"
msgid "DateTime"
-msgstr ""
+msgstr "TanggalWaktu"
#: dinfdlg.src
msgctxt ""
@@ -548,7 +548,7 @@ msgctxt ""
"STR_PB_COMPAREDOC\n"
"string.text"
msgid "Compare to"
-msgstr ""
+msgstr "Bandingkan dengan"
#: filedlghelper.src
msgctxt ""
@@ -556,7 +556,7 @@ msgctxt ""
"STR_PB_MERGEDOC\n"
"string.text"
msgid "Merge with"
-msgstr ""
+msgstr "Gabungkan dengan"
#: newstyle.src
msgctxt ""
@@ -620,7 +620,7 @@ msgctxt ""
"STR_STYLE_FILL_FORMAT_MODE\n"
"string.text"
msgid "Fill Format Mode"
-msgstr ""
+msgstr "Modus Format Isian"
#: templdlg.src
msgctxt ""
@@ -628,7 +628,7 @@ msgctxt ""
"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
"string.text"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Gaya Baru dari Seleksi"
#: templdlg.src
msgctxt ""
@@ -636,7 +636,7 @@ msgctxt ""
"STR_STYLE_UPDATE_STYLE\n"
"string.text"
msgid "Update Style"
-msgstr ""
+msgstr "Perbarui Gaya"
#: versdlg.src
msgctxt ""
diff --git a/source/id/sfx2/source/doc.po b/source/id/sfx2/source/doc.po
index 9bbbfeaa08f..6812824f97e 100644
--- a/source/id/sfx2/source/doc.po
+++ b/source/id/sfx2/source/doc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-12-27 06:48+0000\n"
+"PO-Revision-Date: 2017-06-17 07:10+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482821291.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497683436.000000\n"
#: doc.src
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"STR_TEMPLATE_SELECTION\n"
"string.text"
msgid "Select a Template"
-msgstr ""
+msgstr "Pilih sebuah Templat"
#: doc.src
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"STR_QMSG_ERROR_OPENING_FILE\n"
"string.text"
msgid "An error occurred during opening the file. This may be caused by incorrect file contents.\n"
-msgstr ""
+msgstr "Terjadi kesalahan saat membuka berkas. Ini mungkin disebabkan oleh isi berkas yang salah.\n"
#: doc.src
msgctxt ""
@@ -472,7 +472,7 @@ msgctxt ""
"STR_QMSG_ERROR_OPENING_FILE_DETAILS\n"
"string.text"
msgid "The error details are:\n"
-msgstr ""
+msgstr "Rincian kesalahannya:\n"
#: doc.src
msgctxt ""
@@ -485,6 +485,10 @@ msgid ""
"\n"
"Do you want to ignore the error and attempt to continue loading the file?"
msgstr ""
+"\n"
+"Melanjutkan mengimpor bisa menyebabkan kehilangan data atau kerusakan, dan aplikasi bisa menjadi tidak stabil atau kres.\n"
+"\n"
+"Anda hendak mengabaikan kesalahan dan mencoba melanjutkan memuat berkas?"
#: doctempl.src
msgctxt ""
diff --git a/source/id/sfx2/source/sidebar.po b/source/id/sfx2/source/sidebar.po
index 0534be3fda4..38ee7c80acf 100644
--- a/source/id/sfx2/source/sidebar.po
+++ b/source/id/sfx2/source/sidebar.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-27 06:48+0000\n"
+"PO-Revision-Date: 2017-06-17 07:10+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482821315.000000\n"
+"X-POOTLE-MTIME: 1497683439.000000\n"
#: Sidebar.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"SFX_STR_SIDEBAR_CUSTOMIZATION\n"
"string.text"
msgid "Customization"
-msgstr ""
+msgstr "Kustomisasi"
#: Sidebar.src
msgctxt ""
diff --git a/source/id/sfx2/source/view.po b/source/id/sfx2/source/view.po
index 05eca4c4ce3..9ffb720c1d9 100644
--- a/source/id/sfx2/source/view.po
+++ b/source/id/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-27 06:49+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-17 07:11+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482821368.000000\n"
+"X-POOTLE-MTIME: 1497683506.000000\n"
#: view.src
msgctxt ""
@@ -224,7 +224,7 @@ msgctxt ""
"STR_CHECKOUT\n"
"string.text"
msgid "Check Out"
-msgstr ""
+msgstr "Check Out"
#: view.src
msgctxt ""
@@ -248,6 +248,14 @@ msgctxt ""
"STR_SIGNATURE_BROKEN\n"
"string.text"
msgid "This document has an invalid signature."
+msgstr "Dokumen ini punya tanda tangan yang tidak valid."
+
+#: view.src
+msgctxt ""
+"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
msgstr ""
#: view.src
@@ -256,7 +264,7 @@ msgctxt ""
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
-msgstr ""
+msgstr "Tanda tangan OK, tapi sertifikat tidak dapat divalidasi."
#: view.src
msgctxt ""
@@ -264,7 +272,7 @@ msgctxt ""
"STR_SIGNATURE_PARTIAL_OK\n"
"string.text"
msgid "The signature is OK, but the document is only partially signed."
-msgstr ""
+msgstr "Tanda tangan OK, tapi dokumen hanya ditandatangani sebagian."
#: view.src
msgctxt ""
@@ -272,7 +280,7 @@ msgctxt ""
"STR_SIGNATURE_OK\n"
"string.text"
msgid "This document is digitally signed and the signature is valid."
-msgstr ""
+msgstr "Dokumen ini ditandatangani secara dijital dan tanda tangan valid."
#: view.src
msgctxt ""
@@ -280,4 +288,4 @@ msgctxt ""
"STR_SIGNATURE_SHOW\n"
"string.text"
msgid "Show Signatures"
-msgstr ""
+msgstr "Tampilkan Tanda Tangan"
diff --git a/source/id/sfx2/uiconfig/ui.po b/source/id/sfx2/uiconfig/ui.po
index c5134be32dd..34b91584d45 100644
--- a/source/id/sfx2/uiconfig/ui.po
+++ b/source/id/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-12-27 06:52+0000\n"
+"PO-Revision-Date: 2017-06-17 07:12+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482821551.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497683527.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display"
-msgstr ""
+msgstr "Tampilan"
#: bookmarkmenu.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Ubah Nama..."
#: bookmarkmenu.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Hapus"
#: checkin.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME Help Not Installed"
-msgstr ""
+msgstr "Bantuan %PRODUCTNAME Tidak Terpasang"
#: helpmanual.ui
msgctxt ""
diff --git a/source/id/starmath/source.po b/source/id/starmath/source.po
index aadc7baeb24..bc8e544237c 100644
--- a/source/id/starmath/source.po
+++ b/source/id/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: libo_ui/starmath/source.po 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-12-22 10:57+0000\n"
+"PO-Revision-Date: 2017-06-19 11:48+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: id <id@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482404227.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497872899.000000\n"
#: commands.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"RID_XODIVIDEY_HELP\n"
"string.text"
msgid "Circled Slash"
-msgstr ""
+msgstr "Garis Miring Dilingkari"
#: commands.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"RID_XODOTY_HELP\n"
"string.text"
msgid "Circled Dot"
-msgstr ""
+msgstr "Titik Dilingkari"
#: commands.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"RID_XOMINUSY_HELP\n"
"string.text"
msgid "Circled Minus"
-msgstr ""
+msgstr "Minus Dilingkari"
#: commands.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_XOPLUSY_HELP\n"
"string.text"
msgid "Circled Plus"
-msgstr ""
+msgstr "Plus Dilingkari"
#: commands.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"RID_XDEFY_HELP\n"
"string.text"
msgid "Is Defined As"
-msgstr ""
+msgstr "Didefinisikan Sebagai"
#: commands.src
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"RID_LIMINFX_HELP\n"
"string.text"
msgid "Limit Inferior"
-msgstr ""
+msgstr "Limit Inferior"
#: commands.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"RID_LIMINF_FROMX_HELP\n"
"string.text"
msgid "Limit Inferior Subscript Bottom"
-msgstr ""
+msgstr "Limit Inferior Subskrip Bawah"
#: commands.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"RID_LIMINF_TOX_HELP\n"
"string.text"
msgid "Limit Inferior Superscript Top"
-msgstr ""
+msgstr "Limit Inferior Superskrip Atas"
#: commands.src
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"RID_LIMINF_FROMTOX_HELP\n"
"string.text"
msgid "Limit Inferior Sup/Sub script"
-msgstr ""
+msgstr "Limit Inferior Sup/Sub skrip"
#: commands.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"RID_LIMSUPX_HELP\n"
"string.text"
msgid "Limit Superior"
-msgstr ""
+msgstr "Limit Superior"
#: commands.src
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"RID_LIMSUP_FROMX_HELP\n"
"string.text"
msgid "Limit Superior Subscript Bottom"
-msgstr ""
+msgstr "Limit Superior Subskrip Bawah"
#: commands.src
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"RID_LIMSUP_TOX_HELP\n"
"string.text"
msgid "Limit Superior Superscript Top"
-msgstr ""
+msgstr "Limit Superior Superskrip Atas"
#: commands.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"RID_LIMSUP_FROMTOX_HELP\n"
"string.text"
msgid "Limit Superior Sup/Sub script"
-msgstr ""
+msgstr "Limit Superior Sup/Sub skrip"
#: commands.src
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"RID_ERR_UNEXPECTEDTOKEN\n"
"string.text"
msgid "Unexpected token"
-msgstr ""
+msgstr "Token tidak terduga"
#: smres.src
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"RID_ERR_PARENTMISMATCH\n"
"string.text"
msgid "Left and right symbols mismatched"
-msgstr ""
+msgstr "Simbol kiri dan kanan tidak cocok"
#: smres.src
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"RID_ERR_FONTEXPECTED\n"
"string.text"
msgid "'fixed', 'sans', or 'serif' expected"
-msgstr ""
+msgstr "diharapkan 'fixed', 'sans', atau 'serif'"
#: smres.src
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"RID_ERR_SIZEEXPECTED\n"
"string.text"
msgid "'size' followed by an unexpected token"
-msgstr ""
+msgstr "'size' diikuti oleh token yang tidak terduga"
#: smres.src
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"RID_ERR_DOUBLEALIGN\n"
"string.text"
msgid "Double aligning is not allowed"
-msgstr ""
+msgstr "Perataan ganda tidak diizinkan"
#: smres.src
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"RID_ERR_DOUBLESUBSUPSCRIPT\n"
"string.text"
msgid "Double sub/superscripts is not allowed"
-msgstr ""
+msgstr "Sub/superskrip ganda tidak diizinkan"
#: smres.src
msgctxt ""
diff --git a/source/id/svtools/source/control.po b/source/id/svtools/source/control.po
index acbcb7b5578..447c7557969 100644
--- a/source/id/svtools/source/control.po
+++ b/source/id/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-08-01 11:34+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Miring Hitam"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/id/svtools/source/dialogs.po b/source/id/svtools/source/dialogs.po
index 9c83d64b791..b26a842543d 100644
--- a/source/id/svtools/source/dialogs.po
+++ b/source/id/svtools/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-25 13:52+0200\n"
-"PO-Revision-Date: 2016-05-16 18:43+0000\n"
+"PO-Revision-Date: 2017-06-17 00:26+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463424228.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497659178.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_FORMAT_ID_RICHTEXT\n"
"string.text"
msgid "Formatted text [Richtext]"
-msgstr ""
+msgstr "Teks terformat [Richtext]"
#: formats.src
msgctxt ""
@@ -847,7 +847,7 @@ msgctxt ""
"General OLE error.\n"
"itemlist.text"
msgid "General OLE error."
-msgstr ""
+msgstr "Kesalahan umum OLE."
#: so3res.src
msgctxt ""
@@ -856,7 +856,7 @@ msgctxt ""
"False.\n"
"itemlist.text"
msgid "False."
-msgstr ""
+msgstr "Salah."
#: so3res.src
msgctxt ""
@@ -865,7 +865,7 @@ msgctxt ""
"Data not available at this time.\n"
"itemlist.text"
msgid "Data not available at this time."
-msgstr ""
+msgstr "Data tidak tersedia untuk saat ini."
#: so3res.src
msgctxt ""
@@ -874,7 +874,7 @@ msgctxt ""
"The action cannot be executed in the object's current state.\n"
"itemlist.text"
msgid "The action cannot be executed in the object's current state."
-msgstr ""
+msgstr "Aksi tak dapat dieksekusi dalam keadaan objek saat ini."
#: so3res.src
msgctxt ""
@@ -883,7 +883,7 @@ msgctxt ""
"The object does not support any actions.\n"
"itemlist.text"
msgid "The object does not support any actions."
-msgstr ""
+msgstr "Objek tersebut tidak mendukung aksi apapun."
#: so3res.src
msgctxt ""
@@ -892,7 +892,7 @@ msgctxt ""
"Object does not support this action.\n"
"itemlist.text"
msgid "Object does not support this action."
-msgstr ""
+msgstr "Objek tidak mendukung aksi ini."
#: so3res.src
msgctxt ""
@@ -901,7 +901,7 @@ msgctxt ""
"$(ERR) activating object\n"
"itemlist.text"
msgid "$(ERR) activating object"
-msgstr ""
+msgstr "$(ERR) mengaktifkan objek"
#: so3res.src
msgctxt ""
diff --git a/source/id/svtools/source/misc.po b/source/id/svtools/source/misc.po
index ed977c49d7a..a9a34b7c928 100644
--- a/source/id/svtools/source/misc.po
+++ b/source/id/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-22 11:25+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-17 00:27+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482405925.000000\n"
+"X-POOTLE-MTIME: 1497659240.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3885,7 +3885,7 @@ msgctxt ""
"English (Malaysia)\n"
"itemlist.text"
msgid "English (Malaysia)"
-msgstr ""
+msgstr "Inggris (Malaysia)"
#: langtab.src
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"Manchu\n"
"itemlist.text"
msgid "Manchu"
-msgstr ""
+msgstr "Manchu"
#: langtab.src
msgctxt ""
@@ -3903,6 +3903,15 @@ msgctxt ""
"Xibe\n"
"itemlist.text"
msgid "Xibe"
+msgstr "Xibe"
+
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#: svtools.src
@@ -3967,7 +3976,7 @@ msgctxt ""
"STR_SVT_ESTIMATED_SIZE_PIX_1\n"
"string.text"
msgid "The image needs about %1 KB of memory."
-msgstr ""
+msgstr "Citra memerlukan memori sekitar %1 KB."
#: svtools.src
msgctxt ""
@@ -3975,7 +3984,7 @@ msgctxt ""
"STR_SVT_ESTIMATED_SIZE_PIX_2\n"
"string.text"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
-msgstr ""
+msgstr "Citra memerlukan memori sekitar %1 KB, ukuran berkas adalah %2 KB."
#: svtools.src
msgctxt ""
@@ -3991,7 +4000,7 @@ msgctxt ""
"STR_SVT_HOST\n"
"string.text"
msgid "host"
-msgstr ""
+msgstr "host"
#: svtools.src
msgctxt ""
@@ -3999,7 +4008,7 @@ msgctxt ""
"STR_SVT_PORT\n"
"string.text"
msgid "port"
-msgstr ""
+msgstr "port"
#: svtools.src
msgctxt ""
diff --git a/source/id/svtools/uiconfig/ui.po b/source/id/svtools/uiconfig/ui.po
index 1197f4caae7..982cd88367c 100644
--- a/source/id/svtools/uiconfig/ui.po
+++ b/source/id/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-12-22 11:26+0000\n"
+"PO-Revision-Date: 2017-06-17 00:27+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482405965.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497659246.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: fileviewmenu.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr ""
+msgstr "_Ubah Nama"
#: graphicexport.ui
msgctxt ""
diff --git a/source/id/sw/source/core/undo.po b/source/id/sw/source/core/undo.po
index 6aee308fba8..bf49b3980c5 100644
--- a/source/id/sw/source/core/undo.po
+++ b/source/id/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-26 04:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-17 12:03+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482727016.000000\n"
+"X-POOTLE-MTIME: 1497701005.000000\n"
#: undo.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"STR_START_QUOTE\n"
"string.text"
msgid "“"
-msgstr ""
+msgstr "\""
#: undo.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"STR_END_QUOTE\n"
"string.text"
msgid "”"
-msgstr ""
+msgstr "\""
#: undo.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"STR_YIELDS\n"
"string.text"
msgid "→"
-msgstr ""
+msgstr "→"
#: undo.src
msgctxt ""
@@ -891,42 +891,82 @@ msgstr "pemutus kolom"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Menyisipkan $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Menghapus $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atribut diubah"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabel diubah"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Gaya diubah"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
@@ -1206,7 +1246,7 @@ msgctxt ""
"STR_GRAPHIC\n"
"string.text"
msgid "image"
-msgstr ""
+msgstr "citra"
#: undo.src
msgctxt ""
diff --git a/source/id/sw/source/ui/app.po b/source/id/sw/source/ui/app.po
index 13a8d69c7e5..7b0c9000c0d 100644
--- a/source/id/sw/source/ui/app.po
+++ b/source/id/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-26 04:52+0000\n"
+"PO-Revision-Date: 2017-06-17 12:03+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482727956.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497701013.000000\n"
#: app.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"STR_BOOKMARK_DEF_NAME\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Tanda Taut"
#: app.src
msgctxt ""
diff --git a/source/id/sw/source/ui/dbui.po b/source/id/sw/source/ui/dbui.po
index 2126af458ba..214bd72d576 100644
--- a/source/id/sw/source/ui/dbui.po
+++ b/source/id/sw/source/ui/dbui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-07-12 06:07+0000\n"
+"PO-Revision-Date: 2017-06-17 12:03+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468303626.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497701033.000000\n"
#: dbui.src
msgctxt ""
@@ -322,7 +322,7 @@ msgctxt ""
"ST_MMWTITLE\n"
"string.text"
msgid "Mail Merge Wizard"
-msgstr ""
+msgstr "Wisaya Surat Massal"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/id/sw/source/ui/utlui.po b/source/id/sw/source/ui/utlui.po
index 61be9e6af75..817a8fba0cd 100644
--- a/source/id/sw/source/ui/utlui.po
+++ b/source/id/sw/source/ui/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: utlui lo-4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-03 22:00+0000\n"
+"PO-Revision-Date: 2017-06-17 12:07+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493848839.000000\n"
+"X-POOTLE-MTIME: 1497701258.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_LAVENDER\n"
"string.text"
msgid "Currency Lavender"
-msgstr ""
+msgstr "Lavender Mata Uang"
#: poolfmt.src
msgctxt ""
@@ -1551,7 +1551,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_TURQUOISE\n"
"string.text"
msgid "Currency Turquoise"
-msgstr ""
+msgstr "Biru-Hijau Mata Uang"
#: poolfmt.src
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"STR_TABSTYLE_TURQUOISE\n"
"string.text"
msgid "Turquoise"
-msgstr ""
+msgstr "Biru-hijau"
#: poolfmt.src
msgctxt ""
@@ -1608,7 +1608,7 @@ msgctxt ""
"Remove empty paragraphs\n"
"itemlist.text"
msgid "Remove empty paragraphs"
-msgstr ""
+msgstr "Buang paragraf kosong"
#: utlui.src
msgctxt ""
@@ -1617,7 +1617,7 @@ msgctxt ""
"Use replacement table\n"
"itemlist.text"
msgid "Use replacement table"
-msgstr ""
+msgstr "Pakai tabel penggantian"
#: utlui.src
msgctxt ""
@@ -1626,7 +1626,7 @@ msgctxt ""
"Correct TWo INitial CApitals\n"
"itemlist.text"
msgid "Correct TWo INitial CApitals"
-msgstr ""
+msgstr "Koreksi DUa KApital AWal"
#: utlui.src
msgctxt ""
@@ -1635,7 +1635,7 @@ msgctxt ""
"Capitalize first letter of sentences\n"
"itemlist.text"
msgid "Capitalize first letter of sentences"
-msgstr ""
+msgstr "Kapitalkan huruf pertama kalimat"
#: utlui.src
msgctxt ""
@@ -1644,7 +1644,7 @@ msgctxt ""
"Replace \"standard\" quotes with %1 \\bcustom%2 quotes\n"
"itemlist.text"
msgid "Replace \"standard\" quotes with %1 \\bcustom%2 quotes"
-msgstr ""
+msgstr "Ganti kutipan \"standar\" dengan kutipan %1 \\bubahan%2"
#: utlui.src
msgctxt ""
@@ -1653,7 +1653,7 @@ msgctxt ""
"Replace Custom Styles\n"
"itemlist.text"
msgid "Replace Custom Styles"
-msgstr ""
+msgstr "Ganti Gaya Ubahan"
#: utlui.src
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"Bullets replaced\n"
"itemlist.text"
msgid "Bullets replaced"
-msgstr ""
+msgstr "Bulatan diganti"
#: utlui.src
msgctxt ""
@@ -1671,7 +1671,7 @@ msgctxt ""
"Automatic _underline_\n"
"itemlist.text"
msgid "Automatic _underline_"
-msgstr ""
+msgstr "Otomatis _digarisbawahi_"
#: utlui.src
msgctxt ""
@@ -1680,7 +1680,7 @@ msgctxt ""
"Automatic *bold*\n"
"itemlist.text"
msgid "Automatic *bold*"
-msgstr ""
+msgstr "Otomatis *ditebalkan*"
#: utlui.src
msgctxt ""
@@ -1689,7 +1689,7 @@ msgctxt ""
"Replace 1/2 ... with ½ ...\n"
"itemlist.text"
msgid "Replace 1/2 ... with ½ ..."
-msgstr ""
+msgstr "Ganti 1/2 ... dengan ½ ..."
#: utlui.src
msgctxt ""
@@ -1698,7 +1698,7 @@ msgctxt ""
"URL recognition\n"
"itemlist.text"
msgid "URL recognition"
-msgstr ""
+msgstr "Pengenalan URL"
#: utlui.src
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"Replace dashes\n"
"itemlist.text"
msgid "Replace dashes"
-msgstr ""
+msgstr "Ganti tanda hubung"
#: utlui.src
msgctxt ""
@@ -1716,7 +1716,7 @@ msgctxt ""
"Replace 1st... with 1^st...\n"
"itemlist.text"
msgid "Replace 1st... with 1^st..."
-msgstr ""
+msgstr "Ganti 1st... dengan 1^st..."
#: utlui.src
msgctxt ""
@@ -1725,7 +1725,7 @@ msgctxt ""
"Combine single line paragraphs\n"
"itemlist.text"
msgid "Combine single line paragraphs"
-msgstr ""
+msgstr "Gabungkan paragraf baris tunggal"
#: utlui.src
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"Set \"Text body\" Style\n"
"itemlist.text"
msgid "Set \"Text body\" Style"
-msgstr ""
+msgstr "Atur Gaya \"Tubuh teks\""
#: utlui.src
msgctxt ""
@@ -1743,7 +1743,7 @@ msgctxt ""
"Set \"Text body indent\" Style\n"
"itemlist.text"
msgid "Set \"Text body indent\" Style"
-msgstr ""
+msgstr "Atur Gaya \"Indentasi tubuh teks\""
#: utlui.src
msgctxt ""
@@ -1752,7 +1752,7 @@ msgctxt ""
"Set \"Hanging indent\" Style\n"
"itemlist.text"
msgid "Set \"Hanging indent\" Style"
-msgstr ""
+msgstr "Atur Gaya \"Indentasi gantung\""
#: utlui.src
msgctxt ""
@@ -1761,7 +1761,7 @@ msgctxt ""
"Set \"Heading $(ARG1)\" Style\n"
"itemlist.text"
msgid "Set \"Heading $(ARG1)\" Style"
-msgstr ""
+msgstr "Atur Gaya \"Tajuk $(ARG1)\""
#: utlui.src
msgctxt ""
@@ -1770,7 +1770,7 @@ msgctxt ""
"Set \"Bullet\" or \"Numbering\" Style\n"
"itemlist.text"
msgid "Set \"Bullet\" or \"Numbering\" Style"
-msgstr ""
+msgstr "Atur Gaya \"Bulatan\" atau \"Penomoran\""
#: utlui.src
msgctxt ""
@@ -1779,7 +1779,7 @@ msgctxt ""
"Combine paragraphs\n"
"itemlist.text"
msgid "Combine paragraphs"
-msgstr ""
+msgstr "Gabungkan paragraf"
#: utlui.src
msgctxt ""
@@ -1788,7 +1788,7 @@ msgctxt ""
"Add non breaking space\n"
"itemlist.text"
msgid "Add non breaking space"
-msgstr ""
+msgstr "Tambah spasi tak putus"
#: utlui.src
msgctxt ""
diff --git a/source/id/sw/source/uibase/docvw.po b/source/id/sw/source/uibase/docvw.po
index 4ec2c37e346..46736deafd0 100644
--- a/source/id/sw/source/uibase/docvw.po
+++ b/source/id/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 23:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Gaya Paragraf yang Diterapkan"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/id/sw/source/uibase/ribbar.po b/source/id/sw/source/uibase/ribbar.po
index 0cd059dea62..477d113d0c0 100644
--- a/source/id/sw/source/uibase/ribbar.po
+++ b/source/id/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-27 13:08+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Teks Rumus"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/id/sw/source/uibase/uiview.po b/source/id/sw/source/uibase/uiview.po
index 1117968571b..d2fee9dc285 100644
--- a/source/id/sw/source/uibase/uiview.po
+++ b/source/id/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 23:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Ekspor sumber..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/id/sw/source/uibase/utlui.po b/source/id/sw/source/uibase/utlui.po
index 3cd234516a6..2647a4e0fe3 100644
--- a/source/id/sw/source/uibase/utlui.po
+++ b/source/id/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-12-27 13:10+0000\n"
+"PO-Revision-Date: 2017-06-17 12:13+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482844228.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497701597.000000\n"
#: attrdesc.src
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"STR_POSTIT_PAGE\n"
"string.text"
msgid "Page"
-msgstr ""
+msgstr "Halaman"
#: initui.src
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"STR_POSTIT_LINE\n"
"string.text"
msgid "Line"
-msgstr ""
+msgstr "Garis"
#: initui.src
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"STR_POSTIT_AUTHOR\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Penulis"
#: initui.src
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"STR_CALC_SYNTAX\n"
"string.text"
msgid "** Syntax Error **"
-msgstr ""
+msgstr "** Salah Sintaks **"
#: initui.src
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"STR_CALC_ZERODIV\n"
"string.text"
msgid "** Division by zero **"
-msgstr ""
+msgstr "** Pembagian oleh nol **"
#: initui.src
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"STR_CALC_BRACK\n"
"string.text"
msgid "** Wrong use of brackets **"
-msgstr ""
+msgstr "** Penggunaan kurung yang salah **"
#: initui.src
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"STR_CALC_POW\n"
"string.text"
msgid "** Square function overflow **"
-msgstr ""
+msgstr "** Fungsi kuadrat overflow **"
#: initui.src
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"STR_CALC_OVERFLOW\n"
"string.text"
msgid "** Overflow **"
-msgstr ""
+msgstr "** Overflow **"
#: initui.src
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"STR_CALC_DEFAULT\n"
"string.text"
msgid "** Error **"
-msgstr ""
+msgstr "** Kesalahan **"
#: initui.src
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"STR_CALC_ERROR\n"
"string.text"
msgid "** Expression is faulty **"
-msgstr ""
+msgstr "** Ekspresi bermasalah **"
#: initui.src
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"STR_GETREFFLD_REFITEMNOTFOUND\n"
"string.text"
msgid "Error: Reference source not found"
-msgstr ""
+msgstr "Galat: Sumber acuan tak ditemukan"
#: initui.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"STR_TEMPLATE_NONE\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Nihil"
#: initui.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"STR_FIELD_FIXED\n"
"string.text"
msgid "(fixed)"
-msgstr ""
+msgstr "(tetap)"
#: initui.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"STR_DURATION_FORMAT\n"
"string.text"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
-msgstr ""
+msgstr " T: %1 B: %2 H: %3 J: %4 M: %5 D: %6"
#: initui.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"STR_TOI\n"
"string.text"
msgid "Alphabetical Index"
-msgstr ""
+msgstr "Indeks Alfabetis"
#: initui.src
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"STR_TOU\n"
"string.text"
msgid "User-Defined"
-msgstr ""
+msgstr "Tentuan-Pengguna"
#: initui.src
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"STR_TOC\n"
"string.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Daftar Isi"
#: initui.src
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"STR_TOX_AUTH\n"
"string.text"
msgid "Bibliography"
-msgstr ""
+msgstr "Bibliografi"
#: initui.src
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"STR_TOX_CITATION\n"
"string.text"
msgid "Citation"
-msgstr ""
+msgstr "Sitasi"
#: initui.src
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"STR_TOX_TBL\n"
"string.text"
msgid "Index of Tables"
-msgstr ""
+msgstr "Daftar Tabel"
#: initui.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"STR_TOX_OBJ\n"
"string.text"
msgid "Table of Objects"
-msgstr ""
+msgstr "Tabel Objek"
#: initui.src
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"STR_TOX_ILL\n"
"string.text"
msgid "Illustration Index"
-msgstr ""
+msgstr "Daftar Gambar"
#: initui.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"STR_LINK_CTRL_CLICK\n"
"string.text"
msgid "%s-Click to follow link"
-msgstr ""
+msgstr "Klik-%s untuk mengikuti tautan"
#: initui.src
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"STR_LINK_CLICK\n"
"string.text"
msgid "Click to follow link"
-msgstr ""
+msgstr "Klik untuk mengikuti tautan"
#: initui.src
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"FLD_DOCINFO_TITEL\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Judul"
#: initui.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"FLD_DOCINFO_THEMA\n"
"string.text"
msgid "Subject"
-msgstr ""
+msgstr "Subjek"
#: initui.src
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"FLD_DOCINFO_KEYS\n"
"string.text"
msgid "Keywords"
-msgstr ""
+msgstr "Kata Kunci"
#: initui.src
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"FLD_DOCINFO_COMMENT\n"
"string.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentar"
#: initui.src
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"FLD_DOCINFO_CREATE\n"
"string.text"
msgid "Created"
-msgstr ""
+msgstr "Dibuat"
#: initui.src
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"FLD_DOCINFO_CHANGE\n"
"string.text"
msgid "Modified"
-msgstr ""
+msgstr "Diubah"
#: initui.src
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"FLD_DOCINFO_PRINT\n"
"string.text"
msgid "Last printed"
-msgstr ""
+msgstr "Terakhir dicetak"
#: initui.src
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"FLD_DOCINFO_DOCNO\n"
"string.text"
msgid "Revision number"
-msgstr ""
+msgstr "Nomor revisi"
#: initui.src
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"FLD_DOCINFO_EDIT\n"
"string.text"
msgid "Total editing time"
-msgstr ""
+msgstr "Total waktu sunting"
#: initui.src
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"STR_PAGEDESC_NAME\n"
"string.text"
msgid "Convert $(ARG1)"
-msgstr ""
+msgstr "Konversikan $(ARG1)"
#: initui.src
msgctxt ""
diff --git a/source/id/sw/uiconfig/swriter/ui.po b/source/id/sw/uiconfig/swriter/ui.po
index db5880b64fc..9f36590934f 100644
--- a/source/id/sw/uiconfig/swriter/ui.po
+++ b/source/id/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-12-31 07:50+0000\n"
+"PO-Revision-Date: 2017-06-17 21:56+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483170631.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497736602.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Not Equal"
-msgstr ""
+msgstr "Tidak Sama"
#: inputwinmenu.ui
msgctxt ""
@@ -6183,7 +6183,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Less Than or Equal"
-msgstr ""
+msgstr "Kurang Dari atau Sama"
#: inputwinmenu.ui
msgctxt ""
@@ -6192,7 +6192,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Greater Than or Equal"
-msgstr ""
+msgstr "Lebih Dari atau Sama"
#: inputwinmenu.ui
msgctxt ""
@@ -6201,7 +6201,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Less"
-msgstr ""
+msgstr "Kurang"
#: inputwinmenu.ui
msgctxt ""
@@ -6210,7 +6210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Greater"
-msgstr ""
+msgstr "Lebih Besar"
#: inputwinmenu.ui
msgctxt ""
@@ -6219,7 +6219,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean Or"
-msgstr ""
+msgstr "Boolean Or"
#: inputwinmenu.ui
msgctxt ""
@@ -6228,7 +6228,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean Xor"
-msgstr ""
+msgstr "Boolean Xor"
#: inputwinmenu.ui
msgctxt ""
@@ -6237,7 +6237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean And"
-msgstr ""
+msgstr "Boolean And"
#: inputwinmenu.ui
msgctxt ""
@@ -6246,7 +6246,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Boolean Not"
-msgstr ""
+msgstr "Boolean Not"
#: inputwinmenu.ui
msgctxt ""
@@ -6255,7 +6255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Statistical Functions"
-msgstr ""
+msgstr "Fungsi Statistika"
#: inputwinmenu.ui
msgctxt ""
@@ -6264,7 +6264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Rerata"
#: inputwinmenu.ui
msgctxt ""
@@ -6273,7 +6273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Minimum"
-msgstr ""
+msgstr "Minimum"
#: inputwinmenu.ui
msgctxt ""
@@ -6282,7 +6282,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: inputwinmenu.ui
msgctxt ""
@@ -6291,7 +6291,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Fungsi"
#: inputwinmenu.ui
msgctxt ""
@@ -6300,7 +6300,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sine"
-msgstr ""
+msgstr "Sinus"
#: inputwinmenu.ui
msgctxt ""
@@ -6309,7 +6309,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cosine"
-msgstr ""
+msgstr "Kosinus"
#: inputwinmenu.ui
msgctxt ""
@@ -6318,7 +6318,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tangent"
-msgstr ""
+msgstr "Tangen"
#: inputwinmenu.ui
msgctxt ""
@@ -6327,7 +6327,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Arcsine"
-msgstr ""
+msgstr "Arcsinus"
#: inputwinmenu.ui
msgctxt ""
@@ -6336,7 +6336,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Arccosine"
-msgstr ""
+msgstr "Arccosinus"
#: inputwinmenu.ui
msgctxt ""
@@ -6345,7 +6345,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Arctangent"
-msgstr ""
+msgstr "Arctangen"
#: insertautotextdialog.ui
msgctxt ""
@@ -7830,7 +7830,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sa_ve as individual documents"
-msgstr ""
+msgstr "Simpan sebagai dokumen indi_vidual"
#: mailmerge.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Sunting Komentar..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Urut Berdasarkan"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Aksi"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Penulis"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Tanggal"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Komentar"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Posisi Dokumen"
#: mergeconnectdialog.ui
msgctxt ""
@@ -8707,14 +8707,13 @@ msgid "Plain Text"
msgstr "Teks Polos"
#: mmresultprintdialog.ui
-#, fuzzy
msgctxt ""
"mmresultprintdialog.ui\n"
"MMResultPrintDialog\n"
"title\n"
"string.text"
msgid "Print merged document"
-msgstr "Cetak dokumen ga_bungan"
+msgstr "Cetak dokumen gabungan"
#: mmresultprintdialog.ui
msgctxt ""
@@ -8789,14 +8788,13 @@ msgid "Print records"
msgstr "Cetak rekaman"
#: mmresultsavedialog.ui
-#, fuzzy
msgctxt ""
"mmresultsavedialog.ui\n"
"MMResultSaveDialog\n"
"title\n"
"string.text"
msgid "Save merged document"
-msgstr "Simpan doku_men gabungan"
+msgstr "Simpan dokumen gabungan"
#: mmresultsavedialog.ui
msgctxt ""
diff --git a/source/id/uui/source.po b/source/id/uui/source.po
index 7aad14eddaf..bb439048828 100644
--- a/source/id/uui/source.po
+++ b/source/id/uui/source.po
@@ -4,8 +4,8 @@ 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: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2015-08-01 12:19+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 00:19+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1438431581.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497658742.000000\n"
#: alreadyopen.src
msgctxt ""
@@ -644,6 +644,14 @@ msgid ""
"\n"
"Should %PRODUCTNAME repair the file?\n"
msgstr ""
+"Berkas '$(ARG1)' terkorupsi atau rusak dan tak dapat dibuka. %PRODUCTNAME bisa mencoba untuk memperbaiki berkas tersebut.\n"
+"\n"
+"Kerusakan yang terjadi bisa disebabkan oleh manipulasi atau kerusakan struktural dokumen akibat adanya masalah dalam transmisi data.\n"
+"\n"
+"Kami menyarankan Anda untuk tidak begitu saja mempercayai isi dokumen yang telah diperbaiki.\n"
+"Eksekusi makro ditiadakan bagi dokumen tersebut.\n"
+"\n"
+"Apakah %PRODUCTNAME harus memperbaiki berkas ini?\n"
#: ids.src
msgctxt ""
diff --git a/source/id/vcl/source/src.po b/source/id/vcl/source/src.po
index 7cebefd2017..a6e17300482 100644
--- a/source/id/vcl/source/src.po
+++ b/source/id/vcl/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-22 06:55+0000\n"
+"PO-Revision-Date: 2017-06-16 23:50+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482389730.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657045.000000\n"
#: app.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"SV_APP_CPUTHREADS\n"
"string.text"
msgid "CPU threads: "
-msgstr ""
+msgstr "Thread CPU: "
#: app.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"SV_APP_OSVERSION\n"
"string.text"
msgid "OS: "
-msgstr ""
+msgstr "OS: "
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"SV_APP_UIRENDER\n"
"string.text"
msgid "UI render: "
-msgstr ""
+msgstr "Render UI: "
#: app.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"SV_BUTTONTEXT_SCREENSHOT\n"
"string.text"
msgid "~Screenshot"
-msgstr ""
+msgstr "~Cuplikan layar"
#: fpicker.src
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"SV_HELPTEXT_SCREENSHOT\n"
"string.text"
msgid "Take and annotate a screenshot"
-msgstr ""
+msgstr "Ambil cuplikan layar dan bubuhi keterangan"
#: helptext.src
msgctxt ""
diff --git a/source/id/vcl/uiconfig/ui.po b/source/id/vcl/uiconfig/ui.po
index b3aa2821b9f..52247766d26 100644
--- a/source/id/vcl/uiconfig/ui.po
+++ b/source/id/vcl/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 23:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-16 23:51+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: none\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462144440.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497657101.000000\n"
#: cupspassworddialog.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Undo"
-msgstr ""
+msgstr "_Tak Jadi"
#: editmenu.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cu_t"
-msgstr ""
+msgstr "Po_tong"
#: editmenu.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "_Salin"
#: editmenu.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Paste"
-msgstr ""
+msgstr "Tem_pel"
#: editmenu.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Hapus"
#: editmenu.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select _All"
-msgstr ""
+msgstr "Pilih Semu_a"
#: editmenu.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Special Character..."
-msgstr ""
+msgstr "Karakter Khu_sus..."
#: errornocontentdialog.ui
msgctxt ""
diff --git a/source/id/wizards/source/formwizard.po b/source/id/wizards/source/formwizard.po
index e447650bf14..8aacc21e6f5 100644
--- a/source/id/wizards/source/formwizard.po
+++ b/source/id/wizards/source/formwizard.po
@@ -4,8 +4,8 @@ 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: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2015-11-22 10:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-17 00:21+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1448189027.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497658892.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "Tidak ada basis data yang telah terpasang. Paling tidak satu basis data diperlukan sebelum wisaya untuk formulir dapat dimulai."
#: dbwizres.src
msgctxt ""
@@ -268,7 +268,7 @@ msgctxt ""
"RID_DB_COMMON_START + 9\n"
"string.text"
msgid "The database does not contain any tables."
-msgstr ""
+msgstr "Basis data tidak memuat tabel apapun."
#: dbwizres.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"RID_DB_COMMON_START + 10\n"
"string.text"
msgid "This title already exists in the database. Please enter another name."
-msgstr ""
+msgstr "Judul ini sudah ada dalam basis data. Harap masukkan nama lain."
#: dbwizres.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"RID_DB_COMMON_START + 11\n"
"string.text"
msgid "The title must not contain any spaces or special characters."
-msgstr ""
+msgstr "Judul tidak boleh mengandung spasi atau karakter khusus."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Layanan basis data (com.sun.data.DatabaseEngine) tidak dapat diinstansiasi."
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "Kuiri atau tabel yang dipilih tidak dapat dibuka."
#: dbwizres.src
msgctxt ""
diff --git a/source/id/xmlsecurity/uiconfig/ui.po b/source/id/xmlsecurity/uiconfig/ui.po
index 15b810462ca..8fe485d7f46 100644
--- a/source/id/xmlsecurity/uiconfig/ui.po
+++ b/source/id/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-22 10:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-16 08:23+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482402989.000000\n"
+"X-POOTLE-MTIME: 1497601404.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Issued to: "
-msgstr ""
+msgstr "Diterbitkan untuk: "
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Hapus"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/is/chart2/uiconfig/ui.po b/source/is/chart2/uiconfig/ui.po
index 797912c59c8..fad38f0b344 100644
--- a/source/is/chart2/uiconfig/ui.po
+++ b/source/is/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-05 08:41+0000\n"
+"PO-Revision-Date: 2017-06-20 12:12+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483605679.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497960730.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Left"
-msgstr ""
+msgstr "Færa gagnarunu til vinstri"
#: chartdatadialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Right"
-msgstr ""
+msgstr "Færa gagnarunu til hægri"
#: chartdatadialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Up"
-msgstr ""
+msgstr "Færa röð upp"
#: chartdatadialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Down"
-msgstr ""
+msgstr "Færa röð niður"
#: charttypedialog.ui
msgctxt ""
diff --git a/source/is/cui/source/dialogs.po b/source/is/cui/source/dialogs.po
index c692f29245f..bbcf3b2342f 100644
--- a/source/is/cui/source/dialogs.po
+++ b/source/is/cui/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-05 09:34+0000\n"
+"PO-Revision-Date: 2017-06-20 12:16+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483608863.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497960993.000000\n"
#: cuires.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"RID_SVXSTR_BASICMACROS\n"
"string.text"
msgid "BASIC Macros"
-msgstr ""
+msgstr "BASIC fjölvar"
#: cuires.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"RID_SVXSTR_GROUP_STYLES\n"
"string.text"
msgid "Styles"
-msgstr ""
+msgstr "Stílar"
#: fmsearch.src
msgctxt ""
diff --git a/source/is/cui/source/tabpages.po b/source/is/cui/source/tabpages.po
index d1f6ce72ac3..d5a1d928229 100644
--- a/source/is/cui/source/tabpages.po
+++ b/source/is/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: tabpages\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-05 09:35+0000\n"
+"PO-Revision-Date: 2017-06-20 12:16+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483608901.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497960997.000000\n"
#: border.src
msgctxt ""
@@ -386,7 +386,7 @@ msgctxt ""
"RID_SVXSTR_BOLD_UNDER\n"
"string.text"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr ""
+msgstr "Sjálfvirk *feitletrun*, /skáletrun/, -gegnumstrikun- og _undirstrikun_"
#: strings.src
msgctxt ""
@@ -546,7 +546,7 @@ msgctxt ""
"RID_SVXSTR_STARTQUOTE\n"
"string.text"
msgid "Start Quote"
-msgstr ""
+msgstr "Byrja tilvitnun"
#: strings.src
msgctxt ""
@@ -554,4 +554,4 @@ msgctxt ""
"RID_SVXSTR_ENDQUOTE\n"
"string.text"
msgid "End Quote"
-msgstr ""
+msgstr "Enda tilvitnun"
diff --git a/source/is/cui/uiconfig/ui.po b/source/is/cui/uiconfig/ui.po
index 45e6331b7b4..49c39681edf 100644
--- a/source/is/cui/uiconfig/ui.po
+++ b/source/is/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-09 14:13+0000\n"
+"PO-Revision-Date: 2017-06-20 12:14+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483971195.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497960888.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "See Log: $GITHASH"
-msgstr ""
+msgstr "Sjá í annál: $GITHASH"
#: aboutdialog.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copyright © 2000–2017 LibreOffice contributors."
-msgstr ""
+msgstr "Höfundarréttur © 2000 - 2017, þátttakendur í LibreOffice."
#: aboutdialog.ui
msgctxt ""
@@ -2237,7 +2237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Eiginleikar"
#: cellalignment.ui
msgctxt ""
@@ -5378,7 +5378,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Table Properties"
-msgstr ""
+msgstr "Eiginleikar töflu"
#: formatcellsdialog.ui
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display as icon"
-msgstr ""
+msgstr "Birta sem táknmynd"
#: insertoleobject.ui
msgctxt ""
@@ -7989,7 +7989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Endurnefna..."
#: menuassignpage.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "Endurheimta sjálfgefna skipun"
#: menuassignpage.ui
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change Icon..."
-msgstr ""
+msgstr "Breyta táknmynd..."
#: menuassignpage.ui
msgctxt ""
@@ -8016,7 +8016,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Icon"
-msgstr ""
+msgstr "Endurstilla táknmynd"
#: menuassignpage.ui
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "Endurnefna..."
#: menuassignpage.ui
msgctxt ""
@@ -8223,7 +8223,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Eyða"
#: menuassignpage.ui
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Western text only"
-msgstr ""
+msgstr "Einungis _vestrænir stafir"
#: optasianpage.ui
msgctxt ""
@@ -10792,7 +10792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Complex _text layout:"
-msgstr ""
+msgstr "Flókin _textaframsetning (CTL):"
#: optlanguagespage.ui
msgctxt ""
diff --git a/source/is/dbaccess/source/ui/browser.po b/source/is/dbaccess/source/ui/browser.po
index 80fe2c9a214..06091f4a667 100644
--- a/source/is/dbaccess/source/ui/browser.po
+++ b/source/is/dbaccess/source/ui/browser.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-09 14:17+0000\n"
+"PO-Revision-Date: 2017-06-20 12:20+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483971420.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961201.000000\n"
#: sbabrw.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_STR_COLUMN_FORMAT\n"
"string.text"
msgid "Column ~Format..."
-msgstr ""
+msgstr "Snið ~dálks..."
#: sbagrid.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"RID_STR_COLUMN_WIDTH\n"
"string.text"
msgid "Column ~Width..."
-msgstr ""
+msgstr "Dálk~breidd..."
#: sbagrid.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"RID_STR_TABLE_FORMAT\n"
"string.text"
msgid "Table Format..."
-msgstr ""
+msgstr "Snið töflu..."
#: sbagrid.src
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"RID_STR_ROW_HEIGHT\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Hæð raðar..."
#: sbagrid.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"RID_STR_COPY\n"
"string.text"
msgid "~Copy"
-msgstr ""
+msgstr "~Afrita"
#: sbagrid.src
msgctxt ""
diff --git a/source/is/dbaccess/uiconfig/ui.po b/source/is/dbaccess/uiconfig/ui.po
index 34d904870e5..431b0362d3d 100644
--- a/source/is/dbaccess/uiconfig/ui.po
+++ b/source/is/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-09 14:16+0000\n"
+"PO-Revision-Date: 2017-06-20 12:19+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483971373.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961179.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "E_yða"
#: joinviewmenu.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "E_yða"
#: joinviewmenu.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit..."
-msgstr ""
+msgstr "Breyta..."
#: keymenu.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Aðallykill"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1937,7 +1937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column _Width..."
-msgstr ""
+msgstr "_Dálkbreidd..."
#: querycolmenu.ui
msgctxt ""
@@ -1946,7 +1946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "E_yða"
#: queryfilterdialog.ui
msgctxt ""
@@ -2162,7 +2162,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Föll"
#: queryfuncmenu.ui
msgctxt ""
@@ -2171,7 +2171,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table Name"
-msgstr ""
+msgstr "Heiti töflu"
#: queryfuncmenu.ui
msgctxt ""
@@ -2180,7 +2180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alias"
-msgstr ""
+msgstr "Samheiti"
#: queryfuncmenu.ui
msgctxt ""
@@ -2189,7 +2189,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Aðgreind gildi"
#: querypropertiesdialog.ui
msgctxt ""
@@ -2954,7 +2954,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cu_t"
-msgstr ""
+msgstr "_Klippa"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2963,7 +2963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "_Afrita"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2972,7 +2972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Paste"
-msgstr ""
+msgstr "_Líma"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2981,7 +2981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "E_yða"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Setja inn raðir"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2999,7 +2999,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Aðallykill"
#: tabledesignsavemodifieddialog.ui
msgctxt ""
diff --git a/source/is/desktop/source/deployment/gui.po b/source/is/desktop/source/deployment/gui.po
index 769e33e8310..54bfd2f9733 100644
--- a/source/is/desktop/source/deployment/gui.po
+++ b/source/is/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 23:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-11-26 08:55+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467674413.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1416992145.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/is/editeng/source/editeng.po b/source/is/editeng/source/editeng.po
index bccccb3baf0..12a722baadc 100644
--- a/source/is/editeng/source/editeng.po
+++ b/source/is/editeng/source/editeng.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: editeng\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-01-04 13:09+0000\n"
+"PO-Revision-Date: 2017-06-20 12:23+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1451912981.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961415.000000\n"
#: editeng.src
msgctxt ""
@@ -110,4 +110,4 @@ msgctxt ""
"RID_SVXSTR_AUTOMATIC\n"
"string.text"
msgid "Automatic"
-msgstr ""
+msgstr "Sjálfvirkt"
diff --git a/source/is/editeng/source/items.po b/source/is/editeng/source/items.po
index c0a75d3c7d9..ae73ce97200 100644
--- a/source/is/editeng/source/items.po
+++ b/source/is/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-11-20 14:49+0000\n"
+"PO-Revision-Date: 2017-06-20 12:23+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1416494980.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961422.000000\n"
#: page.src
msgctxt ""
@@ -1623,7 +1623,7 @@ msgctxt ""
"RID_SVXITEMS_TEXTROTATE_OFF\n"
"string.text"
msgid "Text is not rotated"
-msgstr ""
+msgstr "Texta ekki snúið"
#: svxitems.src
msgctxt ""
@@ -1631,7 +1631,7 @@ msgctxt ""
"RID_SVXITEMS_TEXTROTATE\n"
"string.text"
msgid "Text is rotated by $(ARG1)°"
-msgstr ""
+msgstr "Texta er snúið um $(ARG1)°"
#: svxitems.src
msgctxt ""
diff --git a/source/is/editeng/uiconfig/ui.po b/source/is/editeng/uiconfig/ui.po
index 88c5447cec0..4dcb1cc92e4 100644
--- a/source/is/editeng/uiconfig/ui.po
+++ b/source/is/editeng/uiconfig/ui.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-06-20 12:23+0000\n"
+"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: is\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961390.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -20,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_gnore All"
-msgstr ""
+msgstr "_Hunsa allt"
#: spellmenu.ui
msgctxt ""
@@ -29,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "Bæt_a við orðasafn"
#: spellmenu.ui
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "Bæt_a við orðasafn"
#: spellmenu.ui
msgctxt ""
@@ -47,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr ""
+msgstr "_Skoða stafsetningu..."
#: spellmenu.ui
msgctxt ""
@@ -56,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoCorrect _To"
-msgstr ""
+msgstr "Sjálfvirk _leiðrétting sem"
#: spellmenu.ui
msgctxt ""
@@ -65,4 +68,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Correct Options..."
-msgstr ""
+msgstr "Val_kostir sjálfvirkrar leiðréttingar..."
diff --git a/source/is/filter/source/config/fragments/filters.po b/source/is/filter/source/config/fragments/filters.po
index 0d7b2de13bf..149cb2cc7ea 100644
--- a/source/is/filter/source/config/fragments/filters.po
+++ b/source/is/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-09 14:19+0000\n"
+"PO-Revision-Date: 2017-06-20 12:28+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483971597.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961705.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO XML raðasett"
#: AbiWord.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 1-4 and 95's"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4 og 95-serían"
#: PublisherDocument.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Eldri StarOffice-kynning"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/is/filter/source/config/fragments/types.po b/source/is/filter/source/config/fragments/types.po
index 042831c6aa4..f6553936714 100644
--- a/source/is/filter/source/config/fragments/types.po
+++ b/source/is/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: types\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-01-31 13:10+0000\n"
+"PO-Revision-Date: 2017-06-20 12:28+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1454245803.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961710.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO XML raðasett"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/is/filter/uiconfig/ui.po b/source/is/filter/uiconfig/ui.po
index c488c388c6c..af5583ec3f4 100644
--- a/source/is/filter/uiconfig/ui.po
+++ b/source/is/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-05 13:06+0000\n"
+"PO-Revision-Date: 2017-06-20 12:27+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483621615.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497961677.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "Valið/Valin blöð"
#: pdfgeneralpage.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Nota XObjects tilvísanir"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/is/framework/source/classes.po b/source/is/framework/source/classes.po
index 818cdae78e0..48b915b2a26 100644
--- a/source/is/framework/source/classes.po
+++ b/source/is/framework/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-18 11:02+0200\n"
-"PO-Revision-Date: 2017-01-05 10:02+0000\n"
+"PO-Revision-Date: 2017-06-20 12:52+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483610566.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497963165.000000\n"
#: resource.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_TOOLBAR_VISIBLE_BUTTONS\n"
"string.text"
msgid "Visible ~Buttons"
-msgstr ""
+msgstr "Sýnilegir ~hnappar"
#: resource.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_TOOLBAR_CUSTOMIZE_TOOLBAR\n"
"string.text"
msgid "~Customize Toolbar..."
-msgstr ""
+msgstr "~Sérsníða verkfærastiku..."
#: resource.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_TOOLBAR\n"
"string.text"
msgid "~Dock Toolbar"
-msgstr ""
+msgstr "~Festa verkfærastiku"
#: resource.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_ALL_TOOLBARS\n"
"string.text"
msgid "Dock ~All Toolbars"
-msgstr ""
+msgstr "Festa ~allar verkfærastikur"
#: resource.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TOOLBAR_LOCK_TOOLBAR\n"
"string.text"
msgid "~Lock Toolbar Position"
-msgstr ""
+msgstr "~Læsa staðsetningu verkfærastiku"
#: resource.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_TOOLBAR_CLOSE_TOOLBAR\n"
"string.text"
msgid "Close ~Toolbar"
-msgstr ""
+msgstr "Loka verkfæras~tiku"
#: resource.src
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/sbasic/shared.po b/source/is/helpcontent2/source/text/sbasic/shared.po
index 169cc7ba6e8..f5883359e85 100644
--- a/source/is/helpcontent2/source/text/sbasic/shared.po
+++ b/source/is/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 03:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Villunúmer </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/is/helpcontent2/source/text/shared/00.po b/source/is/helpcontent2/source/text/shared/00.po
index 857bf00c1fb..b415cf82662 100644
--- a/source/is/helpcontent2/source/text/shared/00.po
+++ b/source/is/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 14:03+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index e831881a46e..e5d5f238b97 100644
--- a/source/is/helpcontent2/source/text/shared/01.po
+++ b/source/is/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 06:51+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/is/helpcontent2/source/text/shared/optionen.po b/source/is/helpcontent2/source/text/shared/optionen.po
index 565c6c14b88..271df0615b8 100644
--- a/source/is/helpcontent2/source/text/shared/optionen.po
+++ b/source/is/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 07:07+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/is/helpcontent2/source/text/swriter.po b/source/is/helpcontent2/source/text/swriter.po
index 99687dd42da..ee68a21b8c2 100644
--- a/source/is/helpcontent2/source/text/swriter.po
+++ b/source/is/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: swriter\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-09 13:56+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Tölusetning efnisskipan\">Tölusetning efnisskipan</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/swriter/00.po b/source/is/helpcontent2/source/text/swriter/00.po
index db2c1d78677..2eadf541020 100644
--- a/source/is/helpcontent2/source/text/swriter/00.po
+++ b/source/is/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 15:05+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/is/helpcontent2/source/text/swriter/01.po b/source/is/helpcontent2/source/text/swriter/01.po
index 822b3cc14e2..fa130a5f7ec 100644
--- a/source/is/helpcontent2/source/text/swriter/01.po
+++ b/source/is/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 07:18+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Tölusetning efnisskipan"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Tölusetning efnisskipan"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nýtt nafnaskrársvæði"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nýtt nafnaskrársvæði"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Nafnaskráreiningar"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/is/helpcontent2/source/text/swriter/guide.po b/source/is/helpcontent2/source/text/swriter/guide.po
index f4ca5a24e9d..db5851d3de5 100644
--- a/source/is/helpcontent2/source/text/swriter/guide.po
+++ b/source/is/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-16 11:44+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Tölusetning efnisskipan"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,15 +2917,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Tölusetning efnisskipan\">Tölusetning efnisskipan</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
index 52f3c9af29c..a41293178c5 100644
--- a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-05 08:34+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 12:47+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483605271.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497962850.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Module"
-msgstr ""
+msgstr "BASIC eining"
#: BasicIDECommands.xcu
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Dialog"
-msgstr ""
+msgstr "BASIC gluggi"
#: BasicIDECommands.xcu
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete"
-msgstr ""
+msgstr "Eyða"
#: BasicIDECommands.xcu
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename"
-msgstr ""
+msgstr "Endurnefna"
#: BasicIDECommands.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide"
-msgstr ""
+msgstr "Fela"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Tab Bar"
-msgstr ""
+msgstr "Flipastika"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Veldu þemu"
+msgid "Spreadsheet Theme"
+msgstr "Þema töflureiknis"
#: CalcCommands.xcu
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Protection"
-msgstr ""
+msgstr "Verndun reita"
#: CalcCommands.xcu
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show All Comments"
-msgstr ""
+msgstr "Birta allar athugasemdir"
#: CalcCommands.xcu
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide All Comments"
-msgstr ""
+msgstr "Fela allar athugasemdir"
#: CalcCommands.xcu
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete All Comments"
-msgstr ""
+msgstr "Eyða öllum athugasemdum"
#: CalcCommands.xcu
msgctxt ""
@@ -2408,7 +2408,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Shee~t from File..."
-msgstr ""
+msgstr "Se~tja inn blað úr skrá..."
#: CalcCommands.xcu
msgctxt ""
@@ -3200,7 +3200,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Sheet at End..."
-msgstr ""
+msgstr "Setja inn blað við enda..."
#: CalcCommands.xcu
msgctxt ""
@@ -3812,7 +3812,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comments"
-msgstr ""
+msgstr "Athu~gasemdir reits"
#: CalcCommands.xcu
msgctxt ""
@@ -3911,7 +3911,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export as Image"
-msgstr ""
+msgstr "Flytja út sem mynd"
#: CalcCommands.xcu
msgctxt ""
@@ -4001,7 +4001,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Column"
-msgstr ""
+msgstr "Dálkur"
#: CalcCommands.xcu
msgctxt ""
@@ -4010,7 +4010,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row"
-msgstr ""
+msgstr "Röð"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Setja ~inn..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Sjálfgefið"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Áhersla 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Áhersla 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Áhersla 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Fyrirsögn 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Fyrirsögn 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Vont"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Villa"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Gott"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Hlutlaust"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Aðvörun"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Neðanmálsgrein"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Minnispunktur"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -4127,7 +4244,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Borðastika"
#: CalcWindowState.xcu
msgctxt ""
@@ -4523,7 +4640,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr ""
+msgstr "Flýtilyklar á borðastiku"
#: ChartCommands.xcu
msgctxt ""
@@ -5684,7 +5801,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Explorer"
-msgstr ""
+msgstr "Gagnabygging"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -5738,7 +5855,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Report"
-msgstr ""
+msgstr "Skýrsla"
#: DbReportWindowState.xcu
msgctxt ""
@@ -6593,7 +6710,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit ~Database File..."
-msgstr ""
+msgstr "Breyta ~gagnagrunnsskrá..."
#: DbuCommands.xcu
msgctxt ""
@@ -6602,7 +6719,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Disco~nnect"
-msgstr ""
+msgstr "Afte~ngja"
#: DbuCommands.xcu
msgctxt ""
@@ -6611,7 +6728,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Registered databases ..."
-msgstr ""
+msgstr "Skráðir gagnagrunnar ..."
#: DbuCommands.xcu
msgctxt ""
@@ -6728,7 +6845,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from ~First Slide"
-msgstr ""
+msgstr "Byrja á ~fyrstu skyggnu"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6737,7 +6854,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Start from C~urrent Slide"
-msgstr ""
+msgstr "Byrja á ~núverandi skyggnu"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6746,7 +6863,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump to Last Edited Slide"
-msgstr ""
+msgstr "Fara á síðast breyttu skyggnu"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6818,7 +6935,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slides per Row"
-msgstr ""
+msgstr "Skyggnur í hverri röð"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Yfirskyggna"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "~Yfirskyggna minnispunkta"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7601,7 +7718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Slide"
-msgstr ""
+msgstr "~Ný skyggna"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "~Minnispunktasíða"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7925,7 +8042,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Views"
-msgstr ""
+msgstr "Birting sýna"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Flipastika sýna"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7943,7 +8060,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Views Tab Bar Visibility"
-msgstr ""
+msgstr "Víxla sýnileika flipastiku fyrir sýnir"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Yfirskyggna h~andrits"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7970,7 +8087,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Slide"
-msgstr ""
+msgstr "~Eyða skyggnu"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8780,7 +8897,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master Elements..."
-msgstr ""
+msgstr "~Yfireiningar..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Skyggnus~pjald"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9563,7 +9680,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Blank Slide"
-msgstr ""
+msgstr "Auð skyggna"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9572,7 +9689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Only"
-msgstr ""
+msgstr "Einungis titill"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9581,7 +9698,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Titill skyggnu"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9608,7 +9725,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title and 2 Content"
-msgstr ""
+msgstr "Titill og 2 efni"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9617,7 +9734,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content and 2 Content"
-msgstr ""
+msgstr "Titill, efni og 2 efnishlutar"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9626,7 +9743,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Content and Content"
-msgstr ""
+msgstr "Titill, 2 efnishlutar og efni"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9635,7 +9752,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content over Content"
-msgstr ""
+msgstr "Titill, efni yfir efni"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9644,7 +9761,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Content over Content"
-msgstr ""
+msgstr "Titill, 2 efnishlutar yfir efni"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9671,7 +9788,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Vertical Text"
-msgstr ""
+msgstr "Lóðréttur titill, lóðréttur texti"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9680,7 +9797,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Text, Chart"
-msgstr ""
+msgstr "Lóðréttur titill, texti, graf"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9689,7 +9806,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Vertical Text"
-msgstr ""
+msgstr "Titill, lóðréttur texti"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9698,7 +9815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, 2 Vertical Text, Clipart"
-msgstr ""
+msgstr "Titill, 2 lóðréttir textar, úrklippumynd"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9770,7 +9887,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hanging Indent"
-msgstr ""
+msgstr "Hangandi inndráttur"
#: DrawWindowState.xcu
msgctxt ""
@@ -13829,7 +13946,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Polygon, Filled"
-msgstr ""
+msgstr "Marghyrningur, fylltur"
#: GenericCommands.xcu
msgctxt ""
@@ -13838,7 +13955,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comme~nts"
-msgstr ""
+msgstr "Birta athugase~mdir"
#: GenericCommands.xcu
msgctxt ""
@@ -13847,7 +13964,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Athugasemdir"
#: GenericCommands.xcu
msgctxt ""
@@ -15098,7 +15215,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "6-Point Star, Concave"
-msgstr ""
+msgstr "6 arma stjarna, dælduð"
#: GenericCommands.xcu
msgctxt ""
@@ -15647,7 +15764,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Modules..."
-msgstr ""
+msgstr "Einingar..."
#: GenericCommands.xcu
msgctxt ""
@@ -15827,7 +15944,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~What's This?"
-msgstr ""
+msgstr "Hvað er ~þetta?"
#: GenericCommands.xcu
msgctxt ""
@@ -16223,7 +16340,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Optimal View"
-msgstr ""
+msgstr "Bestuð sýn"
#: GenericCommands.xcu
msgctxt ""
@@ -16340,7 +16457,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Image Mode"
-msgstr ""
+msgstr "Myndahamur"
#: GenericCommands.xcu
msgctxt ""
@@ -16692,7 +16809,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Check Out"
-msgstr ""
+msgstr "Búa til vinnuafrit (check-out)"
#: GenericCommands.xcu
msgctxt ""
@@ -16701,7 +16818,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cancel Checkout..."
-msgstr ""
+msgstr "Hætta við að búa til vinnuafrit..."
#. This is the action to merge a private working copy of the document on a server. It shows a dialog to input some information on the new version to create on the server.
#: GenericCommands.xcu
@@ -16711,7 +16828,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Check In..."
-msgstr ""
+msgstr "Bóka inn vinnuafrit..."
#: GenericCommands.xcu
msgctxt ""
@@ -17755,7 +17872,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xit Group"
-msgstr ""
+msgstr "~Hætta í hópi"
#: GenericCommands.xcu
msgctxt ""
@@ -18331,7 +18448,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Image..."
-msgstr ""
+msgstr "Setja inn mynd..."
#: GenericCommands.xcu
msgctxt ""
@@ -18574,7 +18691,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Document as URL"
-msgstr ""
+msgstr "Vista skjal sem slóð (URL)"
#: GenericCommands.xcu
msgctxt ""
@@ -18691,7 +18808,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Business Cards"
-msgstr ""
+msgstr "Setja inn nafnspjöld"
#: GenericCommands.xcu
msgctxt ""
@@ -18736,7 +18853,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Hyperlink"
-msgstr ""
+msgstr "Setja inn veftengil"
#: GenericCommands.xcu
msgctxt ""
@@ -20095,7 +20212,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Asian Phonetic G~uide..."
-msgstr ""
+msgstr "Asískar ~hljóðfræðileiðbeiningar..."
#: GenericCommands.xcu
msgctxt ""
@@ -20167,7 +20284,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send via ~Bluetooth..."
-msgstr ""
+msgstr "Senda með ~blátannartengingu..."
#: GenericCommands.xcu
msgctxt ""
@@ -20302,7 +20419,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Get Help Online..."
-msgstr ""
+msgstr "~Fá aðstoð á netinu..."
#: GenericCommands.xcu
msgctxt ""
@@ -20311,7 +20428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~User Guides..."
-msgstr ""
+msgstr "~Handbækur notenda..."
#: GenericCommands.xcu
msgctxt ""
@@ -20887,7 +21004,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~About %PRODUCTNAME"
-msgstr ""
+msgstr "U~m %PRODUCTNAME"
#: GenericCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Út~lit verkfærastiku"
#: GenericCommands.xcu
msgctxt ""
@@ -21904,7 +22021,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~haracter..."
-msgstr ""
+msgstr "Sta~fur..."
#: GenericCommands.xcu
msgctxt ""
@@ -22156,7 +22273,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rot~ate or Flip"
-msgstr ""
+msgstr "Snú~a eða fletta"
#: GenericCommands.xcu
msgctxt ""
@@ -22336,7 +22453,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "For All Text"
-msgstr ""
+msgstr "Fyrir allan texta"
#: GenericCommands.xcu
msgctxt ""
@@ -22480,7 +22597,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Restart in Safe Mode..."
-msgstr ""
+msgstr "Endur~ræsa í öryggisham..."
#: ImpressWindowState.xcu
msgctxt ""
@@ -22633,7 +22750,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Borðastika"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23191,7 +23308,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr ""
+msgstr "Flýtilyklar á borðastiku"
#: MathCommands.xcu
msgctxt ""
@@ -23416,7 +23533,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Line"
-msgstr ""
+msgstr "Ný lína"
#: MathCommands.xcu
msgctxt ""
@@ -23425,7 +23542,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Small Gap"
-msgstr ""
+msgstr "Lítið skarð"
#: MathCommands.xcu
msgctxt ""
@@ -23434,7 +23551,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gap"
-msgstr ""
+msgstr "Skarð"
#: MathCommands.xcu
msgctxt ""
@@ -23443,7 +23560,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Unary/Binary Operators"
-msgstr ""
+msgstr "~Einstæðir/Tvíundarvirkjar"
#: MathCommands.xcu
msgctxt ""
@@ -23452,7 +23569,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Relations"
-msgstr ""
+msgstr "~Tengsl"
#: MathCommands.xcu
msgctxt ""
@@ -23461,7 +23578,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Set Operations"
-msgstr ""
+msgstr "~Mengja aðgerðir"
#: MathCommands.xcu
msgctxt ""
@@ -23470,7 +23587,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Functions"
-msgstr ""
+msgstr "~Föll"
#: MathCommands.xcu
msgctxt ""
@@ -23479,7 +23596,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "O~perators"
-msgstr ""
+msgstr "~Aðgerðir"
#: MathCommands.xcu
msgctxt ""
@@ -23488,7 +23605,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Attributes"
-msgstr ""
+msgstr "~Eigindir"
#: MathCommands.xcu
msgctxt ""
@@ -23497,7 +23614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Brackets"
-msgstr ""
+msgstr "~Hornklofar"
#: MathCommands.xcu
msgctxt ""
@@ -23506,7 +23623,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "For~mats"
-msgstr ""
+msgstr "~Snið"
#: MathCommands.xcu
msgctxt ""
@@ -23515,7 +23632,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Others"
-msgstr ""
+msgstr "~Annað"
#: MathWindowState.xcu
msgctxt ""
@@ -23524,7 +23641,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "Breyta spjaldi"
#: MathWindowState.xcu
msgctxt ""
@@ -23533,7 +23650,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "Skoða spjald"
#: MathWindowState.xcu
msgctxt ""
@@ -24073,7 +24190,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Background Color..."
-msgstr ""
+msgstr "Bakgrunnslitur..."
#: ReportCommands.xcu
msgctxt ""
@@ -24874,7 +24991,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single Toolbar"
-msgstr ""
+msgstr "Einföld verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -24910,7 +25027,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single Toolbar"
-msgstr ""
+msgstr "Einföld verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -24946,7 +25063,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single Toolbar"
-msgstr ""
+msgstr "Einföld verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25477,7 +25594,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr ""
+msgstr "Setja inn athugasemd við rakta breytingu"
#: WriterCommands.xcu
msgctxt ""
@@ -26458,7 +26575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rotate 1~80°"
-msgstr ""
+msgstr "Snúa 1~80°"
#: WriterCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Eiginleikar..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Hlutur..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26764,7 +26872,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr ""
+msgstr "Neðanmálsgreinar og e~ftirmálar..."
#: WriterCommands.xcu
msgctxt ""
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Fyrirsagnaraðir endurteknar yfir síður"
#: WriterCommands.xcu
msgctxt ""
@@ -27934,7 +28042,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Section..."
-msgstr ""
+msgstr "Breyta hluta..."
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Leyfa röð að skiptast yfir blaðsíður og dálka"
#: WriterCommands.xcu
msgctxt ""
@@ -28762,7 +28870,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chapter ~Numbering..."
-msgstr ""
+msgstr "Töluset~ning kafla..."
#: WriterCommands.xcu
msgctxt ""
@@ -28771,7 +28879,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Chapter Numbering"
-msgstr ""
+msgstr "Setja tölusetningu kafla"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Áherslumerkjalisti"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Númeraður listi"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Listi með rómverskum tölum"
#: WriterCommands.xcu
msgctxt ""
@@ -29392,7 +29500,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hanging Indent"
-msgstr ""
+msgstr "Hangandi inndráttur"
#: WriterCommands.xcu
msgctxt ""
@@ -29401,7 +29509,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Watermark"
-msgstr ""
+msgstr "Vatnsmerki"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -31219,7 +31327,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "Borðastika"
#: WriterWindowState.xcu
msgctxt ""
@@ -31273,7 +31381,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr ""
+msgstr "Flýtilyklar á borðastiku"
#: WriterWindowState.xcu
msgctxt ""
@@ -31678,7 +31786,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting (Styles)"
-msgstr ""
+msgstr "Snið (stílar)"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/is/reportdesign/uiconfig/dbreport/ui.po b/source/is/reportdesign/uiconfig/dbreport/ui.po
index 7ce0de30f85..541d7ecf56b 100644
--- a/source/is/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/is/reportdesign/uiconfig/dbreport/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-26 14:23+0000\n"
+"PO-Revision-Date: 2017-06-20 12:48+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495808606.000000\n"
+"X-POOTLE-MTIME: 1497962935.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Header/Footer..."
-msgstr ""
+msgstr "Haus/fótur síðu..."
#: navigatormenu.ui
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Report Header/Footer..."
-msgstr ""
+msgstr "Haus/fótur skýrslu..."
#: navigatormenu.ui
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Function"
-msgstr ""
+msgstr "Nýtt fall"
#: navigatormenu.ui
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Eiginleikar..."
#: navigatormenu.ui
msgctxt ""
diff --git a/source/is/sc/source/ui/src.po b/source/is/sc/source/ui/src.po
index 14c5dfd3949..f23c1b03e04 100644
--- a/source/is/sc/source/ui/src.po
+++ b/source/is/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-09 14:53+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -2701,7 +2701,7 @@ msgstr "Svið flutt frá #1 til #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Földuð fylki eru ekki studd."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/is/scp2/source/ooo.po b/source/is/scp2/source/ooo.po
index ceb1271e721..25a82e1fda9 100644
--- a/source/is/scp2/source/ooo.po
+++ b/source/is/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ooo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-05 10:04+0000\n"
+"PO-Revision-Date: 2017-06-20 12:51+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483610695.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497963078.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Efri Sorbían"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Setur upp notendaviðmót á efri-sorbíönsku"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/is/sfx2/source/view.po b/source/is/sfx2/source/view.po
index 9fb4a59b184..e9b2775706c 100644
--- a/source/is/sfx2/source/view.po
+++ b/source/is/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-26 14:32+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495809175.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Þetta skjal er með ógilda undirritun."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/is/svtools/source/control.po b/source/is/svtools/source/control.po
index 2c62a35ee50..f8985e05b6d 100644
--- a/source/is/svtools/source/control.po
+++ b/source/is/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-08-21 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -291,6 +291,110 @@ msgstr "Svart- og skáletrað"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/is/svtools/source/misc.po b/source/is/svtools/source/misc.po
index 756d2a0cadb..c614328604c 100644
--- a/source/is/svtools/source/misc.po
+++ b/source/is/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-26 11:11+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495797093.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/is/svx/source/tbxctrls.po b/source/is/svx/source/tbxctrls.po
index 8936a14d68c..a614ec46ae9 100644
--- a/source/is/svx/source/tbxctrls.po
+++ b/source/is/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: tbxctrls\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-09 01:53+0000\n"
+"PO-Revision-Date: 2017-06-20 12:08+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483926813.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497960490.000000\n"
#: colrctrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_DEFAULT\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Sjálfgefið"
#: tbcontrl.src
msgctxt ""
diff --git a/source/is/sw/source/core/undo.po b/source/is/sw/source/core/undo.po
index 42e49fcf6c9..0976461dc6d 100644
--- a/source/is/sw/source/core/undo.po
+++ b/source/is/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: undo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-26 11:27+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495798048.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "dálkskil"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Setja inn $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Eyða $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Breytt eigindi"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Breytt tafla"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stílbreyting"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/is/sw/source/uibase/docvw.po b/source/is/sw/source/uibase/docvw.po
index 78d7f0ae429..5afb4ea7506 100644
--- a/source/is/sw/source/uibase/docvw.po
+++ b/source/is/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-20 11:19+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Málsgreinastílar sem hefur verið beitt"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/is/sw/source/uibase/ribbar.po b/source/is/sw/source/uibase/ribbar.po
index 2cc3ffc6839..6742dd7ee06 100644
--- a/source/is/sw/source/uibase/ribbar.po
+++ b/source/is/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-05 13:40+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formúlutexti"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/is/sw/source/uibase/uiview.po b/source/is/sw/source/uibase/uiview.po
index af06d9d6b14..d4829501124 100644
--- a/source/is/sw/source/uibase/uiview.po
+++ b/source/is/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 09:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Flytja út uppruna..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/is/xmlsecurity/uiconfig/ui.po b/source/is/xmlsecurity/uiconfig/ui.po
index bd7ac65a5bc..9d9bfc7f147 100644
--- a/source/is/xmlsecurity/uiconfig/ui.po
+++ b/source/is/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-26 11:05+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495796746.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Fjarlægja"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/it/avmedia/source/framework.po b/source/it/avmedia/source/framework.po
index 0e5bb1ee3cf..d26ff61032f 100644
--- a/source/it/avmedia/source/framework.po
+++ b/source/it/avmedia/source/framework.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-10 18:02+0000\n"
+"PO-Revision-Date: 2017-06-19 12:42+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481392951.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497876160.000000\n"
#: mediacontrol.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"AVMEDIA_STR_LOOP\n"
"string.text"
msgid "Repeat"
-msgstr ""
+msgstr "Ripeti"
#: mediacontrol.src
msgctxt ""
diff --git a/source/it/desktop/source/deployment/gui.po b/source/it/desktop/source/deployment/gui.po
index 9d63870a565..29349d3ae9d 100644
--- a/source/it/desktop/source/deployment/gui.po
+++ b/source/it/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 23:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-11-27 12:03+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467674407.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1417089835.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/it/helpcontent2/source/text/sbasic/shared.po b/source/it/helpcontent2/source/text/sbasic/shared.po
index 9df3cfde4e8..1648a8ff49e 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-16 20:34+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Codici di errore</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Questa funzione runtime restituisce il contesto del componente predefinito da utilizzare, se i servizi vengono istanziati tramite XmultiServiceFactory. Per maggiori informazioni, consultate il capitolo <item type=\"literal\">Professional UNO</item> nella <item type=\"literal\">Developer's Guide</item> su <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/it/helpcontent2/source/text/shared/00.po b/source/it/helpcontent2/source/text/shared/00.po
index f04d5107cee..ab01e0a2ff9 100644
--- a/source/it/helpcontent2/source/text/shared/00.po
+++ b/source/it/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-07 14:02+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index 1b174ca6ae5..bd6fe4b8a95 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-20 12:08+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Selezionare lo stile di paragrafo o il livello di struttura da utilizzare per dividere il documento sorgente in sotto-documenti.</ahelp> Per impostazione predefinita, viene creato un nuovo documento per ogni livello 1 di struttura."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Impostare l'esportazione in segnalibri PDF di segnalibri dei documenti Writer. I segnalibri sono creati per tutti i paragrafi della struttura (Strumenti - Numerazione struttura) e per tutte le voci di indice cui si sono assegnati collegamenti ipertestuali nel documento originale.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 1fae8d00cd6..b2ea8f7f72c 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-04-07 14:06+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/it/helpcontent2/source/text/swriter.po b/source/it/helpcontent2/source/text/swriter.po
index 87ff0b604d0..27ef9735955 100644
--- a/source/it/helpcontent2/source/text/swriter.po
+++ b/source/it/helpcontent2/source/text/swriter.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-20 12:19+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numerazione struttura\">Numerazione struttura</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/00.po b/source/it/helpcontent2/source/text/swriter/00.po
index 40999942019..e1a7ea31548 100644
--- a/source/it/helpcontent2/source/text/swriter/00.po
+++ b/source/it/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-01-22 22:27+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Scegliete <emph>Strumenti - Numerazione struttura</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Scegliete <emph>Strumenti - Numerazione struttura</emph>, scheda <emph>Numerazione</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Scegliete <emph>Strumenti - Numerazione righe</emph> (non per il formato HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/01.po b/source/it/helpcontent2/source/text/swriter/01.po
index e407d2df86e..ea6be4ca044 100644
--- a/source/it/helpcontent2/source/text/swriter/01.po
+++ b/source/it/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-04-20 16:10+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Fare clic su <emph>1</emph> per visualizzare solo le intestazioni di primo livello nella finestra del Navigatore, o su <emph>10</emph> per visualizzare tutte le intestazioni.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Se scegliete \"Numero di capitolo senza separatore\" per un comando di campo di tipo Capitolo, i separatori impostati in <link href=\"text/swriter/01/06060000.xhp\" name=\"Strumenti - Numerazione capitolo\"><emph>Strumenti - Numerazione capitolo</emph></link> vengono ignorati."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserisce il numero dei capitoli. Per inserire la numerazione capitolo nell'intestazione o nel piè di pagina, scegliere <emph>Strumenti - Numerazione struttura</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numerazione struttura"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numerazione struttura"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "La numerazione dei capitoli è collegata allo stile del paragrafo. Gli stili di paragrafo \"Intestazione\" (1-10) vengono assegnati automaticamente ai livelli corrispondenti nella struttura (1-10). Volendo, potete assegnare stili di paragrafo differenti ai livelli della struttura."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Per le intestazioni numerate, usate il comando <emph>Strumenti - Numerazione struttura</emph> per assegnare una numerazione a un modello di paragrafo. Non usare l'icona Numerazione sulla barra degli strumenti Formattazione."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Per evidenziare sullo schermo la numerazione dei capitoli, scegliete <emph>Visualizza -</emph> <emph>Sfondo dei campi</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Salva o carica un formato di numerazione dei capitoli. I formati di numerazione salvati sono disponibili per tutti i documenti di testo.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Il pulsante <emph>Forma</emph> è disponibile solo per la numerazione dei capitoli. Per gli elenchi puntati o numerati, modificate lo stile di numerazione del paragrafo."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Apre una finestra di dialogo che permette di salvare le impostazioni attuali per il livello della struttura selezionato. In questo modo è possibile caricare le impostazioni salvate da un altro documento.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Fare clic sul livello della struttura da modificare e specificare le opzioni di numerazione per il livello.</ahelp> Per applicare le opzioni di numerazione, escluso lo stile di paragrafo, a tutti i livelli, fate clic su \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Selezionare lo stile di paragrafo da assegnare al livello selezionato della struttura.</ahelp> Scegliendo \"Nessuno\", il livello della struttura selezionato non viene definito."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nuovo blocco di indirizzi"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nuovo blocco di indirizzi"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementi dell'indirizzo"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Trascinate l'elemento dell'indirizzo nel campo sottostante"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/guide.po b/source/it/helpcontent2/source/text/swriter/guide.po
index f3078b0e14e..721823720c2 100644
--- a/source/it/helpcontent2/source/text/swriter/guide.po
+++ b/source/it/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-04-07 12:31+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Usando il Navigatore, potete spostare le intestazioni e il testo sottostante verso l'alto e verso il basso nel documento. Potete inoltre spostare le intestazioni a un livello superiore o inferiore. Per usare questa funzione, formattate le intestazioni nel documento con uno degli stili di paragrafo predefiniti. Per usare uno stile di paragrafo personalizzato per un'intestazione, scegliete <emph>Strumenti - Numerazione struttura</emph>, selezionate lo stile nella casella di riepilogo <emph>Stile di paragrafo</emph> e fate doppio clic su un numero nell'elenco <emph>Livello</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2902,32 +2902,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numerazione struttura"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>Struttura;numerazione</bookmark_value> <bookmark_value>Eliminare;numeri di intestazione</bookmark_value> <bookmark_value>Capitolo; numerazione</bookmark_value> <bookmark_value>Intestazione;numerazione/stili di paragrafo</bookmark_value> <bookmark_value>Numerazione;intestazioni</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numerazione struttura\">Numerazione struttura</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Potete modificare la gerarchia delle intestazioni oppure assegnare un livello gerarchico a uno stile di paragrafo personalizzato. Potete inoltre aggiungere la numerazione dei capitoli e delle sezioni agli stili di paragrafo per le intestazioni. Nella configurazione predefinita, lo stile di paragrafo \"Intestazione 1\" si trova al primo livello gerarchico della struttura."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2942,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Scegliete <item type=\"menuitem\">Strumenti - Numerazione struttura</item> e fate clic sulla scheda <item type=\"menuitem\">Numerazione</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2966,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Per rimuovere la numerazione automatica da un paragrafo di intestazione:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2998,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Scegliete <item type=\"menuitem\">Strumenti - Numerazione struttura</item> e fate clic sulla scheda <item type=\"menuitem\">Numerazione</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6110,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Per poter inserire informazioni sul capitolo nell'intestazione o nel piè di pagina, dovete prima definire le opzioni di numerazione dei capitoli per lo stile di paragrafo da applicare ai titoli dei capitoli."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6126,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Scegliete <emph>Strumenti - Numerazione struttura</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7126,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>Indice analitico; definire le voci</bookmark_value> <bookmark_value>Indice generale; definire le voci</bookmark_value> <bookmark_value>Voce; definire negli indici analitici/indici generali</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7158,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Scegliete <emph>Inserisci - Indice generale e indice analitico - Voce di indice</emph> e usate una delle procedure seguenti:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7214,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Scegliete <emph>Strumenti - Numerazione struttura</emph> e fate clic sulla scheda <emph>Numerazione</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7838,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Per usare uno stile di paragrafo differente come voce dell'indice generale, selezionate la casella di controllo <item type=\"menuitem\">Altri stili</item> nell'area <item type=\"menuitem\">Crea da</item> e fate clic sul pulsante <item type=\"menuitem\">Assegna stili</item> vicino alla casella di controllo. Nella finestra di dialogo <item type=\"menuitem\">Assegna stili</item>, fate clic sullo stile nell'elenco, quindi su <item type=\"menuitem\">>></item> o sul pulsante <item type=\"menuitem\"><<</item> per definire il livello per lo stile di paragrafo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,8 +8014,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Per usare uno stile di paragrafo differente come voce dell'indice generale, selezionate <item type=\"menuitem\">Altri stili</item> e fate clic sul pulsante <item type=\"menuitem\">Assegna stili</item> vicino alla casella. Fate clic sullo stile nell'elenco, e quindi su <item type=\"menuitem\">>></item> oppure sul pulsante <item type=\"menuitem\"><<</item> per definirne il livello nella struttura."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9486,8 +9486,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>Numerazione; rimuovere/interrompere</bookmark_value><bookmark_value>Elenco puntato; interruzione</bookmark_value><bookmark_value>Elenco; rimuovere/interrompere la numerazione</bookmark_value><bookmark_value>Rimozione; numeri negli elenchi</bookmark_value><bookmark_value>Interruzione di elenchi numerati</bookmark_value><bookmark_value>Modifica; numeri iniziali negli elenchi</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9510,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Per le intestazioni numerate, usate il comando <emph>Strumenti - Numerazione struttura</emph> per assegnare una numerazione a uno stile di paragrafo. Non usare l'icona Numerazione sulla barra degli strumenti Formattazione."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/it/librelogo/source/pythonpath.po b/source/it/librelogo/source/pythonpath.po
index 8021d0a79dc..d26e59b37a4 100644
--- a/source/it/librelogo/source/pythonpath.po
+++ b/source/it/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-06-03 15:16+0000\n"
+"PO-Revision-Date: 2017-06-19 12:43+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496503016.000000\n"
+"X-POOTLE-MTIME: 1497876236.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"ERR_NAME\n"
"property.text"
msgid "Unknown name: “%s”."
-msgstr ""
+msgstr "Nome sconosciuto: “%s”."
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
index 557119d7176..b8f4fa37956 100644
--- a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/it/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-07 14:07+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Selezione tema"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Inserisci..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Proprietà..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Oggetto..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/it/sc/source/ui/src.po b/source/it/sc/source/ui/src.po
index 35ba1ca1ee7..4d63cf65843 100644
--- a/source/it/sc/source/ui/src.po
+++ b/source/it/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-25 21:27+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Area spostata da #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "I vettori incapsulati non sono supportati."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/it/sfx2/source/view.po b/source/it/sfx2/source/view.po
index 6ee63dce12e..8e761d72a1f 100644
--- a/source/it/sfx2/source/view.po
+++ b/source/it/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-26 20:51+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/it/svtools/source/control.po b/source/it/svtools/source/control.po
index b83f71b8909..705b52d0949 100644
--- a/source/it/svtools/source/control.po
+++ b/source/it/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-29 20:08+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -291,6 +291,110 @@ msgstr "Corsivo Black"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/it/svtools/source/misc.po b/source/it/svtools/source/misc.po
index a93699a5338..af8674f428b 100644
--- a/source/it/svtools/source/misc.po
+++ b/source/it/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-29 20:20+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/it/sw/source/core/undo.po b/source/it/sw/source/core/undo.po
index e167399219c..5957be05eec 100644
--- a/source/it/sw/source/core/undo.po
+++ b/source/it/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-29 22:18+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -891,42 +891,82 @@ msgstr "interruzione di colonna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Inserisci $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Elimina $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attributi modificati"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabella modificata"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stile modificato"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/it/sw/source/uibase/docvw.po b/source/it/sw/source/uibase/docvw.po
index a158ade55fe..bba4887d3d8 100644
--- a/source/it/sw/source/uibase/docvw.po
+++ b/source/it/sw/source/uibase/docvw.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: 2017-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-29 22:52+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -59,6 +59,46 @@ msgstr "Stili di paragrafo impostati"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/it/sw/source/uibase/ribbar.po b/source/it/sw/source/uibase/ribbar.po
index 3a3a0647d57..88ec1b54b2a 100644
--- a/source/it/sw/source/uibase/ribbar.po
+++ b/source/it/sw/source/uibase/ribbar.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-31 15:29+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Testo della formula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/it/sw/source/uibase/uiview.po b/source/it/sw/source/uibase/uiview.po
index ea58a2658d6..2d4545bef2d 100644
--- a/source/it/sw/source/uibase/uiview.po
+++ b/source/it/sw/source/uibase/uiview.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 08:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Esporta testo sorgente..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/it/xmlsecurity/uiconfig/ui.po b/source/it/xmlsecurity/uiconfig/ui.po
index c87d8a02db1..6a310569232 100644
--- a/source/it/xmlsecurity/uiconfig/ui.po
+++ b/source/it/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-30 21:33+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-19 12:46+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485812011.000000\n"
+"X-POOTLE-MTIME: 1497876369.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Issued to: "
-msgstr ""
+msgstr "Emesso a: "
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Rimuovi"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ja/avmedia/source/framework.po b/source/ja/avmedia/source/framework.po
index acd851d9f5c..f32e4f4bd54 100644
--- a/source/ja/avmedia/source/framework.po
+++ b/source/ja/avmedia/source/framework.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-14 06:37+0000\n"
-"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
+"PO-Revision-Date: 2017-06-07 13:26+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484375854.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496841989.000000\n"
#: mediacontrol.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"AVMEDIA_STR_LOOP\n"
"string.text"
msgid "Repeat"
-msgstr ""
+msgstr "繰り返し"
#: mediacontrol.src
msgctxt ""
diff --git a/source/ja/basctl/uiconfig/basicide/ui.po b/source/ja/basctl/uiconfig/basicide/ui.po
index 3d0aa98ce67..e14fb013dda 100644
--- a/source/ja/basctl/uiconfig/basicide/ui.po
+++ b/source/ja/basctl/uiconfig/basicide/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 23:26+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2017-06-07 13:27+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: none\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462145176.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496842062.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Breakpoints..."
-msgstr ""
+msgstr "ブレークポイントの管理..."
#: breakpointmenus.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Properties..."
-msgstr ""
+msgstr "プロパティ(_P)..."
#: defaultlanguage.ui
msgctxt ""
diff --git a/source/ja/basic/source/classes.po b/source/ja/basic/source/classes.po
index b44b6bc5ccd..96e2d21d296 100644
--- a/source/ja/basic/source/classes.po
+++ b/source/ja/basic/source/classes.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-03-02 10:53+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2017-06-07 13:28+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1456916033.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496842100.000000\n"
#: sb.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"Invalid number of arguments.\n"
"itemlist.text"
msgid "Invalid number of arguments."
-msgstr ""
+msgstr "引数の数が不正です。"
#: sb.src
msgctxt ""
diff --git a/source/ja/chart2/uiconfig/ui.po b/source/ja/chart2/uiconfig/ui.po
index 23f633a6383..f5a6cc03d96 100644
--- a/source/ja/chart2/uiconfig/ui.po
+++ b/source/ja/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-03-12 05:30+0000\n"
+"PO-Revision-Date: 2017-06-10 02:49+0000\n"
"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489296612.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497062954.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Right"
-msgstr ""
+msgstr "系列を右に移動"
#: chartdatadialog.ui
msgctxt ""
diff --git a/source/ja/cui/source/dialogs.po b/source/ja/cui/source/dialogs.po
index 5a2e58ca83e..eef66f41fd4 100644
--- a/source/ja/cui/source/dialogs.po
+++ b/source/ja/cui/source/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-03-12 05:30+0000\n"
-"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
+"PO-Revision-Date: 2017-06-07 13:29+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489296639.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496842156.000000\n"
#: cuires.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"RID_SVXSTR_BASICMACROS\n"
"string.text"
msgid "BASIC Macros"
-msgstr ""
+msgstr "BASIC マクロ"
#: cuires.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"RID_SVXSTR_GROUP_STYLES\n"
"string.text"
msgid "Styles"
-msgstr ""
+msgstr "スタイル"
#: fmsearch.src
msgctxt ""
diff --git a/source/ja/cui/uiconfig/ui.po b/source/ja/cui/uiconfig/ui.po
index 6f62afe4363..1ecf1e138e9 100644
--- a/source/ja/cui/uiconfig/ui.po
+++ b/source/ja/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-03-18 02:17+0000\n"
+"PO-Revision-Date: 2017-06-10 02:51+0000\n"
"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: none\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489803465.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497063073.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copyright © 2000–2017 LibreOffice contributors."
-msgstr ""
+msgstr "Copyright © 2000–2017 LibreOffice contributors."
#: aboutdialog.ui
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Original"
-msgstr ""
+msgstr "原形で"
#: bitmaptabpage.ui
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Stretched"
-msgstr ""
+msgstr "いっぱいに伸ばす"
#: bitmaptabpage.ui
msgctxt ""
@@ -2237,7 +2237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "プロパティ"
#: cellalignment.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "初期値コマンドに戻す"
#: menuassignpage.ui
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename..."
-msgstr ""
+msgstr "名前の変更..."
#: menuassignpage.ui
msgctxt ""
@@ -8223,7 +8223,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "削除"
#: menuassignpage.ui
msgctxt ""
@@ -10792,7 +10792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Complex _text layout:"
-msgstr ""
+msgstr "複合文字言語(_T):"
#: optlanguagespage.ui
msgctxt ""
diff --git a/source/ja/dbaccess/uiconfig/ui.po b/source/ja/dbaccess/uiconfig/ui.po
index 14587ce4cbf..47d0db07c33 100644
--- a/source/ja/dbaccess/uiconfig/ui.po
+++ b/source/ja/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-03-12 07:28+0000\n"
+"PO-Revision-Date: 2017-06-10 02:52+0000\n"
"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489303720.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497063169.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "削除(_D)"
#: joinviewmenu.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "削除(_D)"
#: joinviewmenu.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit..."
-msgstr ""
+msgstr "編集..."
#: keymenu.ui
msgctxt ""
@@ -1946,7 +1946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "削除(_D)"
#: queryfilterdialog.ui
msgctxt ""
@@ -2162,7 +2162,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "関数"
#: queryfuncmenu.ui
msgctxt ""
@@ -2171,7 +2171,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table Name"
-msgstr ""
+msgstr "テーブル名"
#: queryfuncmenu.ui
msgctxt ""
@@ -2180,7 +2180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alias"
-msgstr ""
+msgstr "エイリアス"
#: queryfuncmenu.ui
msgctxt ""
@@ -2963,7 +2963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Copy"
-msgstr ""
+msgstr "コピー(_C)"
#: tabledesignrowmenu.ui
msgctxt ""
@@ -2981,7 +2981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "削除(_D)"
#: tabledesignrowmenu.ui
msgctxt ""
diff --git a/source/ja/desktop/source/deployment/gui.po b/source/ja/desktop/source/deployment/gui.po
index cc83c31c06a..ab92b99c1ef 100644
--- a/source/ja/desktop/source/deployment/gui.po
+++ b/source/ja/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 23:30+0000\n"
-"Last-Translator: nishbone <ml.nishibori.kiyotaka@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-09-13 12:28+0000\n"
+"Last-Translator: paz Ohhashi <paz.ohhashi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467675016.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1442147302.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ja/editeng/uiconfig/ui.po b/source/ja/editeng/uiconfig/ui.po
index 88c5447cec0..fffed9848cf 100644
--- a/source/ja/editeng/uiconfig/ui.po
+++ b/source/ja/editeng/uiconfig/ui.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-06-07 13:35+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496842526.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -20,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_gnore All"
-msgstr ""
+msgstr "すべて無視する(_G)"
#: spellmenu.ui
msgctxt ""
@@ -29,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "辞書に追加(_A)"
#: spellmenu.ui
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "辞書に追加(_A)"
#: spellmenu.ui
msgctxt ""
@@ -47,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr ""
+msgstr "スペルチェック(_S)..."
#: spellmenu.ui
msgctxt ""
diff --git a/source/ja/framework/source/classes.po b/source/ja/framework/source/classes.po
index 34e2ee8734e..e9afe3c33b8 100644
--- a/source/ja/framework/source/classes.po
+++ b/source/ja/framework/source/classes.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-18 11:02+0200\n"
-"PO-Revision-Date: 2016-12-04 03:39+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2017-06-10 05:44+0000\n"
+"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480822742.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497073452.000000\n"
#: resource.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_TOOLBAR\n"
"string.text"
msgid "~Dock Toolbar"
-msgstr ""
+msgstr "ツールバーを格納(~D)"
#: resource.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_TOOLBAR_DOCK_ALL_TOOLBARS\n"
"string.text"
msgid "Dock ~All Toolbars"
-msgstr ""
+msgstr "すべてのツールバーを格納(~A)"
#: resource.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TOOLBAR_LOCK_TOOLBAR\n"
"string.text"
msgid "~Lock Toolbar Position"
-msgstr ""
+msgstr "ツールバーの位置を固定(~L)"
#: resource.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_TOOLBAR_CLOSE_TOOLBAR\n"
"string.text"
msgid "Close ~Toolbar"
-msgstr ""
+msgstr "ツールバーを閉じる(~T)"
#: resource.src
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/sbasic/shared.po b/source/ja/helpcontent2/source/text/sbasic/shared.po
index e79ec7b0e6f..a1db40255f9 100644
--- a/source/ja/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ja/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 03:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">エラーコード</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "この実行時関数は、XMultiServiceFactory を介してサービスをインスタンス化する場合、使用されるデフォルトのコンポーネントコンテキストを返します。詳細については、<link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> にある『<item type=\"literal\">開発者ガイド</item>』の「<item type=\"literal\">プロフェッショナル UNO</item>」の章を参照してください。"
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ja/helpcontent2/source/text/shared/00.po b/source/ja/helpcontent2/source/text/shared/00.po
index 0a08c57218a..cf4aab9da96 100644
--- a/source/ja/helpcontent2/source/text/shared/00.po
+++ b/source/ja/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-09-06 04:45+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ja/helpcontent2/source/text/shared/01.po b/source/ja/helpcontent2/source/text/shared/01.po
index dea88d589b8..48042137196 100644
--- a/source/ja/helpcontent2/source/text/shared/01.po
+++ b/source/ja/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 07:19+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">ソースドキュメントをサブドキュメントに分割する際に使用する段落スタイル、またはアウトラインレベルを選択します。</ahelp> デフォルトでは、新規ドキュメントは各アウトラインのレベル1 に作成されます。"
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Writer ドキュメントのブックマークを PDF のブックマークとしてエクスポートするように選択します。ブックマークは、すべての章段落 (「ツール」 → 「章番号付け」) およびソースドキュメントでハイパーリンクを割り当てたすべての目次項目で作成されます。</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/shared/optionen.po b/source/ja/helpcontent2/source/text/shared/optionen.po
index 4b7a01032cc..0a968d3f431 100644
--- a/source/ja/helpcontent2/source/text/shared/optionen.po
+++ b/source/ja/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-01-09 11:22+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ja/helpcontent2/source/text/swriter.po b/source/ja/helpcontent2/source/text/swriter.po
index 616a349b8f6..4f0bd305e5d 100644
--- a/source/ja/helpcontent2/source/text/swriter.po
+++ b/source/ja/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-06-28 05:03+0000\n"
"Last-Translator: junichi matsukawa <jr4air@kagaku.xii.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"章番号付け\">章番号付け</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/swriter/00.po b/source/ja/helpcontent2/source/text/swriter/00.po
index 31102dc108d..fd0c401b857 100644
--- a/source/ja/helpcontent2/source/text/swriter/00.po
+++ b/source/ja/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 16:59+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">メニュー <emph>ツール → 章番号付け...</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">メニュー <emph>ツール → 章番号付け → 番号付け</emph> タブ</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>ツール → 行番号付け</emph> (HTML 形式以外)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/swriter/01.po b/source/ja/helpcontent2/source/text/swriter/01.po
index 73afb2a369d..8561f75b427 100644
--- a/source/ja/helpcontent2/source/text/swriter/01.po
+++ b/source/ja/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 08:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\"><emph>1</emph> を選択すると、最上位レベルの見出しだけがナビゲーターウィンドウに表示され、<emph>10</emph> を選択すると、すべてのレベルの見出しが表示されます。</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "<emph>章番号 (区切り記号なし)</emph> を章フィールド用に選択した場合、<link href=\"text/swriter/01/06060000.xhp\" name=\"ツール → 章番号付け\"><emph>ツール → 章番号付け</emph></link> で定義した区切り記号は表示されません。"
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">章番号を挿入します。見出しスタイルに章番号を割り当てるには、メニュー <emph>ツール → 章番号付け</emph> を選択します。</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "章番号付け"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "章番号付け"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "章番号付けは、段落スタイルとリンクしています。標準設定では、章番号付けの各レベル (1 ~ 10) には、段落スタイルの対応する「見出し」レベル (1 ~ 10) がそれぞれ割り当てられています。こうした章番号付けと段落スタイルのレベル間の対応関係は、必要であれば変更することもできます。"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "番号付き見出しが必要な場合は、<emph>「ツール」 → 「章番号付け」</emph> メニューコマンドを使用して、段落スタイルに番号を割り当てます。 書式設定ツールバーの番号付けアイコンは使用しないでください。"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "章番号付け箇所を画面上で強調表示するには、<emph>表示 → </emph><emph>灰色の背景で強調</emph> を選択します。"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">章番号付けフォーマットの、保存または読み込みを行います。ユーザー設定した章番号付けフォーマットを別の文書ドキュメントで使用するには、いったん保存する必要があります。</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>フォーム</emph> ボタンは章番号付けにのみ使用できます。箇条書きまたは番号付き段落の場合、各段落の番号付けスタイルを変更します。"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">現在の章番号付けフォーマットに対する、設定の保存用ダイアログボックスが表示されます。保存した章番号付けのフォーマットは、他のドキュメントでも読み込めます。</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">設定を変更する見出しレベルをクリックして、該当レベルに対する番号付けの各種オプションを指定します。</ahelp>レベル「1-10」を選択すると、段落スタイルを除いたすべての見出しレベルに対して、共通の番号付けオプションが適用されます。"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">選択中の見出しレベルに適用させる段落スタイルを選択します。</ahelp>「なし」を選択した見出しレベルは、未設定として扱われます。"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "新規アドレスブロック"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "新規アドレスブロック"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "アドレス要素"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "アドレス要素を下のフィールドにドラッグ"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/swriter/guide.po b/source/ja/helpcontent2/source/text/swriter/guide.po
index 1d107ca5fd8..7bfef0a12c6 100644
--- a/source/ja/helpcontent2/source/text/swriter/guide.po
+++ b/source/ja/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 08:12+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "ドキュメント内部での見出しおよび見出しに引き続く段落の移動は、ナビゲーター上で操作できます。見出しレベルの上げ下げも、同様な操作で行えます。こうした操作を行う場合は、ドキュメント内で見出しとする部分に対して、見出し用に事前定義された段落スタイルを適用しておく必要があります。見出しにユーザー定義した段落スタイルを使用するのであれば、メニュー <emph>ツール → 章番号付け</emph> を選択して、ボックス <emph>段落スタイル</emph> でスタイルを選び、リスト <emph>レベル</emph> の番号をダブルクリックします。"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "章番号付け"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>アウトライン; 番号付け</bookmark_value><bookmark_value>削除;見出し番号</bookmark_value><bookmark_value>章の番号付け</bookmark_value><bookmark_value>見出し; 番号付け/段落スタイル</bookmark_value><bookmark_value>番号付け; 見出し</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"章番号付け\">章番号付け</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "ユーザー定義した段落スタイルに対しては、見出し階層の変更および、レベルの追加が行えます。また段落スタイルには、章やセクションの番号を追加することもできます。デフォルトの設定では、段落スタイルの「見出し 1」がアウトライン階層の最上層にくるようにされています。"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">ツール → 章番号付け</item>を選択し、<item type=\"menuitem\">番号付け</item>タブをクリックします。"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "見出し段落から自動章番号付けを削除する"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">ツール → 章番号付け</item>を選択し、<item type=\"menuitem\">番号付け</item>タブをクリックします。"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "ヘッダーやフッターに章のタイトル名などの情報を挿入するには、あらかじめ章タイトルの段落スタイルに対して章番号付けオプションを指定しておく必要があります。"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "メニュー <emph>ツール → 章番号付け</emph> を選択します。"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>索引; 項目を登録する</bookmark_value><bookmark_value>目次; 項目を登録する</bookmark_value><bookmark_value>項目; 索引/目次の項目を登録する</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "メニュー <emph>挿入 → 目次と索引 → 目次と索引の項目登録</emph> を選択して、下記のうち必要な操作を行います。"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "メニュー <emph>ツール → 章番号付け</emph> を選択して、<emph>番号付け</emph> タブをクリックします。"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "もし、目次の項目として異なる段落スタイルを使いたいなら、<item type=\"menuitem\">内容</item>領域の<item type=\"menuitem\">その他のスタイル</item>チェックボックスを選択し、そのチェックボックスにある (<item type=\"menuitem\">...</item>) ボタンをクリックします。<item type=\"menuitem\">スタイルの適用</item>ダイアログで、リストの任意のスタイルをクリックし、<item type=\"menuitem\">>></item> か <item type=\"menuitem\"><<</item> ボタンをクリックして、その段落スタイルのアウトラインレベルを定義します。"
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>番号付け; 削除する/中断する</bookmark_value><bookmark_value>箇条書きリスト; 中断する </bookmark_value><bookmark_value>リスト; 番号付けを削除する/中断する</bookmark_value><bookmark_value>削除; リストの番号</bookmark_value><bookmark_value>番号付きリストを中断する</bookmark_value><bookmark_value>変更; リストの開始番号</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "番号付き見出しが必要な場合は、<emph>ツール → 章番号付け</emph> メニューコマンドを使用して、段落スタイルに番号を割り当てます。 書式設定ツールバーの番号付けアイコンは使用しないでください。"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/ja/librelogo/source/pythonpath.po b/source/ja/librelogo/source/pythonpath.po
index d3d25585f6b..3db638d88ac 100644
--- a/source/ja/librelogo/source/pythonpath.po
+++ b/source/ja/librelogo/source/pythonpath.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2015-02-09 10:42+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2017-06-10 05:44+0000\n"
+"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: none\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1423478533.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497073482.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"ERR_NAME\n"
"property.text"
msgid "Unknown name: “%s”."
-msgstr ""
+msgstr "不明な名前: “%s”。"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
index 99aeaf9ea49..7ff0822698a 100644
--- a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-01 16:53+0000\n"
-"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-10 07:28+0000\n"
+"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1491065633.000000\n"
+"X-POOTLE-MTIME: 1497079733.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Module"
-msgstr ""
+msgstr "BASIC モジュール"
#: BasicIDECommands.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "テーマの選択"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Protection"
-msgstr ""
+msgstr "セルの保護"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "挿入(~I)..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -4127,7 +4244,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "ノートブックバー"
#: CalcWindowState.xcu
msgctxt ""
@@ -5684,7 +5801,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Explorer"
-msgstr ""
+msgstr "エクスプローラー"
#: DbBrowserWindowState.xcu
msgctxt ""
@@ -6602,7 +6719,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Disco~nnect"
-msgstr ""
+msgstr "接続を切断する(~N)"
#: DbuCommands.xcu
msgctxt ""
@@ -9617,7 +9734,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content and 2 Content"
-msgstr ""
+msgstr "タイトル、コンテンツ、 2 コンテンツ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9635,7 +9752,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title, Content over Content"
-msgstr ""
+msgstr "タイトル、コンテンツ上にコンテンツ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9680,7 +9797,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Title, Text, Chart"
-msgstr ""
+msgstr "垂直タイトル、テキスト、グラフ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9770,7 +9887,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hanging Indent"
-msgstr ""
+msgstr "本文マイナスインデント"
#: DrawWindowState.xcu
msgctxt ""
@@ -13973,7 +14090,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Basic Shapes"
-msgstr ""
+msgstr "基本シェイプ"
#: GenericCommands.xcu
msgctxt ""
@@ -14000,7 +14117,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "増加"
#: GenericCommands.xcu
msgctxt ""
@@ -14009,7 +14126,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "段落間隔を広くする"
#: GenericCommands.xcu
msgctxt ""
@@ -14018,7 +14135,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "段落間隔を広くする"
#: GenericCommands.xcu
msgctxt ""
@@ -14027,7 +14144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "減少"
#: GenericCommands.xcu
msgctxt ""
@@ -14036,7 +14153,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "段落間隔を狭くする"
#: GenericCommands.xcu
msgctxt ""
@@ -14045,7 +14162,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "段落間隔を狭くする"
#: GenericCommands.xcu
msgctxt ""
@@ -14063,7 +14180,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Arrow"
-msgstr ""
+msgstr "矢印(~A)"
#: GenericCommands.xcu
msgctxt ""
@@ -14090,7 +14207,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Callout Shapes"
-msgstr ""
+msgstr "吹き出しシェイプ"
#: GenericCommands.xcu
msgctxt ""
@@ -14108,7 +14225,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Star Shapes"
-msgstr ""
+msgstr "星型シェイプ"
#: GenericCommands.xcu
msgctxt ""
@@ -15584,7 +15701,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "増加"
#: GenericCommands.xcu
msgctxt ""
@@ -15602,7 +15719,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Font Size"
-msgstr ""
+msgstr "文字の拡大"
#: GenericCommands.xcu
msgctxt ""
@@ -15611,7 +15728,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "減少"
#: GenericCommands.xcu
msgctxt ""
@@ -15629,7 +15746,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Font Size"
-msgstr ""
+msgstr "文字の縮小"
#: GenericCommands.xcu
msgctxt ""
@@ -15935,7 +16052,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Center Horizontally"
-msgstr ""
+msgstr "左右中央揃え"
#: GenericCommands.xcu
msgctxt ""
@@ -16250,7 +16367,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Line"
-msgstr ""
+msgstr "直線"
#: GenericCommands.xcu
msgctxt ""
@@ -16601,7 +16718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Remote"
-msgstr ""
+msgstr "リモートを開く"
#: GenericCommands.xcu
msgctxt ""
@@ -17188,7 +17305,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Cycle Case"
-msgstr ""
+msgstr "大小文字の順次切替"
#: GenericCommands.xcu
msgctxt ""
@@ -17431,7 +17548,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Edit Mode"
-msgstr ""
+msgstr "編集モードの切り替え"
#: GenericCommands.xcu
msgctxt ""
@@ -17566,7 +17683,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr ""
+msgstr "編集"
#: GenericCommands.xcu
msgctxt ""
@@ -17872,7 +17989,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Smart Tags"
-msgstr ""
+msgstr "スマートタグ"
#: GenericCommands.xcu
msgctxt ""
@@ -18403,7 +18520,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Spelling and Grammar..."
-msgstr ""
+msgstr "スペルと文法チェック(~S)..."
#: GenericCommands.xcu
msgctxt ""
@@ -18457,7 +18574,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Draw Functions"
-msgstr ""
+msgstr "図形描画機能の表示"
#: GenericCommands.xcu
msgctxt ""
@@ -18880,7 +18997,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "書式のコピーと貼り付け"
#: GenericCommands.xcu
msgctxt ""
@@ -19852,7 +19969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "減少"
#: GenericCommands.xcu
msgctxt ""
@@ -19861,7 +19978,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "インデントを減らす"
#: GenericCommands.xcu
msgctxt ""
@@ -19870,7 +19987,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "インデントを減らす"
#: GenericCommands.xcu
msgctxt ""
@@ -19879,7 +19996,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "増加"
#: GenericCommands.xcu
msgctxt ""
@@ -20176,7 +20293,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#: GenericCommands.xcu
msgctxt ""
@@ -21787,7 +21904,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Top"
-msgstr ""
+msgstr "上揃え"
#: GenericCommands.xcu
msgctxt ""
@@ -21805,7 +21922,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Center Vertically"
-msgstr ""
+msgstr "上下中央揃え"
#: GenericCommands.xcu
msgctxt ""
@@ -21823,7 +21940,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Bottom"
-msgstr ""
+msgstr "下揃え"
#: GenericCommands.xcu
msgctxt ""
@@ -21841,7 +21958,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "St~yle"
-msgstr ""
+msgstr "スタイル(~Y)"
#: GenericCommands.xcu
msgctxt ""
@@ -21904,7 +22021,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~haracter..."
-msgstr ""
+msgstr "文字(~H)..."
#: GenericCommands.xcu
msgctxt ""
@@ -22435,7 +22552,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select"
-msgstr ""
+msgstr "選択"
#: GenericCommands.xcu
msgctxt ""
@@ -22444,7 +22561,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Special"
-msgstr ""
+msgstr "形式を選択して貼り付け"
#: GenericCommands.xcu
msgctxt ""
@@ -22498,7 +22615,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene"
-msgstr ""
+msgstr "3Dシーン"
#: ImpressWindowState.xcu
msgctxt ""
@@ -22507,7 +22624,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "3D Scene (group)"
-msgstr ""
+msgstr "3Dシーン(グループ)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -22633,7 +22750,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "ノートブックバー"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23182,7 +23299,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Single Mode)"
-msgstr ""
+msgstr "標準 (シングルモード)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23479,7 +23596,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "O~perators"
-msgstr ""
+msgstr "演算子(~P)"
#: MathCommands.xcu
msgctxt ""
@@ -23506,7 +23623,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "For~mats"
-msgstr ""
+msgstr "書式設定(~M)"
#: MathCommands.xcu
msgctxt ""
@@ -24892,7 +25009,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "ノートブックバー"
#: ToolbarMode.xcu
msgctxt ""
@@ -24928,7 +25045,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "ノートブックバー"
#: ToolbarMode.xcu
msgctxt ""
@@ -24955,7 +25072,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "ノートブックバー"
#: WriterCommands.xcu
msgctxt ""
@@ -25162,7 +25279,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Table of Contents, Index or Bibliography"
-msgstr ""
+msgstr "目次、索引または参考文献を挿入"
#: WriterCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "プロパティ(~P)..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -31312,7 +31420,6 @@ msgid "Tools"
msgstr "ツール"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/linesbar\n"
@@ -31679,7 +31786,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting (Styles)"
-msgstr ""
+msgstr "書式設定(スタイル)"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/ja/sc/source/ui/src.po b/source/ja/sc/source/ui/src.po
index ab5c9b2440f..bd356b140db 100644
--- a/source/ja/sc/source/ui/src.po
+++ b/source/ja/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-07 14:21+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2700,7 +2700,7 @@ msgstr "範囲は #1 から #2 へ移動しました。"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2865,7 +2865,7 @@ msgstr "入れ子の配列はサポートされません。"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ja/sfx2/source/view.po b/source/ja/sfx2/source/view.po
index 5a1d0e90a20..07cff75a9e5 100644
--- a/source/ja/sfx2/source/view.po
+++ b/source/ja/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-07 11:39+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494157149.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ja/svtools/source/control.po b/source/ja/svtools/source/control.po
index fdfb41b3755..1c9911be6d8 100644
--- a/source/ja/svtools/source/control.po
+++ b/source/ja/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-04 11:46+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "黒の斜体"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ja/svtools/source/dialogs.po b/source/ja/svtools/source/dialogs.po
index 1d17452a2b0..fb0fe09a9a2 100644
--- a/source/ja/svtools/source/dialogs.po
+++ b/source/ja/svtools/source/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-25 13:52+0200\n"
-"PO-Revision-Date: 2016-05-04 11:44+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2017-06-07 12:56+0000\n"
+"Last-Translator: paz Ohhashi <paz.ohhashi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462362263.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496840194.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -909,7 +909,7 @@ msgctxt ""
"STR_ERROR_OBJNOCREATE\n"
"string.text"
msgid "Object % could not be inserted."
-msgstr "オブジェクト%は挿入できません。"
+msgstr "オブジェクト%は挿入できませんでした。"
#: so3res.src
msgctxt ""
@@ -917,7 +917,7 @@ msgctxt ""
"STR_ERROR_OBJNOCREATE_FROM_FILE\n"
"string.text"
msgid "Object from file % could not be inserted."
-msgstr "ファイル%からのオブジェクトは挿入できません。"
+msgstr "ファイル%からのオブジェクトは挿入できませんでした。"
#: so3res.src
msgctxt ""
@@ -925,7 +925,7 @@ msgctxt ""
"STR_ERROR_OBJNOCREATE_PLUGIN\n"
"string.text"
msgid "Plug-in from document % could not be inserted."
-msgstr "ドキュメント%からのプラグインは挿入できません。"
+msgstr "ドキュメント%からのプラグインは挿入できませんでした。"
#: so3res.src
msgctxt ""
diff --git a/source/ja/svtools/source/misc.po b/source/ja/svtools/source/misc.po
index 87f0030f772..fc74dee7eb6 100644
--- a/source/ja/svtools/source/misc.po
+++ b/source/ja/svtools/source/misc.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-12-08 06:17+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-12 12:36+0000\n"
+"Last-Translator: nishbone <ml.nishibori.kiyotaka@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481177825.000000\n"
+"X-POOTLE-MTIME: 1497270976.000000\n"
#: imagemgr.src
msgctxt ""
@@ -2823,7 +2823,7 @@ msgctxt ""
"Dogri\n"
"itemlist.text"
msgid "Dogri"
-msgstr "ドグリブ語"
+msgstr "ドーグリー語"
#: langtab.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "ベクエル語"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "キトゥバ語"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3633,7 +3633,7 @@ msgctxt ""
"Ladin\n"
"itemlist.text"
msgid "Ladin"
-msgstr "ラテン語"
+msgstr "ラディン語"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ja/svx/source/svdraw.po b/source/ja/svx/source/svdraw.po
index 868ec06a214..6e2ac316935 100644
--- a/source/ja/svx/source/svdraw.po
+++ b/source/ja/svx/source/svdraw.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 11:52+0200\n"
-"PO-Revision-Date: 2016-12-12 02:47+0000\n"
-"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
+"PO-Revision-Date: 2017-06-07 12:57+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481510842.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496840274.000000\n"
#: svdstr.src
msgctxt ""
@@ -2590,7 +2590,7 @@ msgctxt ""
"SIP_XA_FILLBMP_POSOFFSETY\n"
"string.text"
msgid "Tile position Y in %"
-msgstr "%でのタイルの位置"
+msgstr "%でのタイルの位置Y"
#: svdstr.src
msgctxt ""
diff --git a/source/ja/sw/source/core/undo.po b/source/ja/sw/source/core/undo.po
index 127b594cef0..556590592bf 100644
--- a/source/ja/sw/source/core/undo.po
+++ b/source/ja/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-25 10:23+0000\n"
"Last-Translator: jun meguro <jmaguro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "列の区切り"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "挿入 $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "削除 $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "変更された属性"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "表は変更されています"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "変更されたスタイル"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ja/sw/source/uibase/docvw.po b/source/ja/sw/source/uibase/docvw.po
index dde2ea080cf..82f823712b1 100644
--- a/source/ja/sw/source/uibase/docvw.po
+++ b/source/ja/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-19 11:13+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "段落スタイルの設定"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ja/sw/source/uibase/ribbar.po b/source/ja/sw/source/uibase/ribbar.po
index 13482e12eee..084bec1fdfb 100644
--- a/source/ja/sw/source/uibase/ribbar.po
+++ b/source/ja/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-08 23:49+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "数式文字列"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ja/sw/source/uibase/uiview.po b/source/ja/sw/source/uibase/uiview.po
index 61f8b5aa8d3..15e69e7fa1f 100644
--- a/source/ja/sw/source/uibase/uiview.po
+++ b/source/ja/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 08:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "ソーステキストをエクスポートする(~E)..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ja/swext/mediawiki/help.po b/source/ja/swext/mediawiki/help.po
index d60d8d909bd..02b6ba1ec28 100644
--- a/source/ja/swext/mediawiki/help.po
+++ b/source/ja/swext/mediawiki/help.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-02-10 10:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-06-13 10:18+0000\n"
+"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1423565039.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497349098.000000\n"
#: help.tree
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id9647511\n"
"help.text"
msgid "<ahelp hid=\".\">By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wiki Publisher を使用すると、現在の Writer テキストドキュメントを MediaWiki サーバーにアップロードできます。アップロードされた記事は、その Wiki のすべてのユーザーが読むことができます。</ahelp>"
#: wiki.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id7387615\n"
"help.text"
msgid "A wiki account on a supported <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> server"
-msgstr ""
+msgstr "サポートされている <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> サーバーでの Wiki アカウント"
#: wiki.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Wiki Publisherを使用する前に、%PRODUCTNAME でJava 実行環境(JRE)を使えるようにする必要があります。JREの状態を確認するには、 <item type=\"menuitem\"> 「ツール」→「オプション」→「 %PRODUCTNAME 」→詳細 </item>を選択します。そして「Java 実行環境(JRE)を使用」にチェックを入れて大きなリストボックスでJava 実行フォルダーを選択します。もし JREが有効になっていない場合、 JRE 1.4またはそれ以降を有効にして %PRODUCTNAME を再起動してください。"
#: wiki.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id6962187\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> dialog, enter the account information for the wiki."
-msgstr ""
+msgstr "<link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> ダイアログでWikiのアカウント情報を入力します。"
#: wiki.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id5328836\n"
"help.text"
msgid "In the URL text box, enter the address of a wiki that you want to connect to."
-msgstr ""
+msgstr "「URL」テキストボックスに、接続先の Wiki のアドレスを入力します。"
#: wiki.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id5906552\n"
"help.text"
msgid "In the Username box, enter your user ID for your wiki account."
-msgstr ""
+msgstr "「ユーザー名」ボックスに、Wiki アカウントのユーザー ID を入力します。"
#: wiki.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id9297158\n"
"help.text"
msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty."
-msgstr ""
+msgstr "Wiki で匿名書き込みアクセスが許可されている場合は、「ユーザー名」と「パスワード」のボックスを空白のままにしてもかまいません。"
#: wiki.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id8869594\n"
"help.text"
msgid "In the Password box, enter the password for your wiki account, then click OK."
-msgstr ""
+msgstr "「パスワード」ボックスに Wiki アカウントのパスワードを入力して、「OK」をクリックします。"
#: wiki.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id292062\n"
"help.text"
msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item> to enable the master password. “Save password” is unavailable when the master password is not enabled."
-msgstr ""
+msgstr "セッションのたびにパスワードを入力しなくても済むようにパスワードを保存しておくには、「パスワードの保存」をオンにします。保存されているパスワードには、マスターパスワードを使用してアクセスします。マスターパスワードを有効にするには、<item type=\"menuitem\">「ツール」→「オプション」→「%PRODUCTNAME」→「セキュリティ」</item>を選択します。マスターパスワードが有効になっていない場合は、「パスワードの保存」は選択できません。"
#: wiki.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id944853\n"
"help.text"
msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">list of supported formats</link>."
-msgstr ""
+msgstr "Wikiページの内容を書きます。文字書式、見出し、脚注などの書式を使えます。 <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">サポートされている書式のリスト</link>をご覧ください。"
#: wiki.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id2564165\n"
"help.text"
msgid "<emph>MediaWiki server</emph>: Select the wiki."
-msgstr ""
+msgstr "<emph>MediaWiki サーバー</emph>: Wiki を選択します。"
#: wiki.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id5566576\n"
"help.text"
msgid "<emph>Title</emph>: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki."
-msgstr ""
+msgstr "<emph>タイトル</emph>: ページのタイトルを入力します。既存のページのタイトルを入力した場合は、そのページが現在のテキストドキュメントによって上書きされます。Wiki の新しいページを作成するには、新しいタイトルを入力してください。"
#: wiki.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id452284\n"
"help.text"
msgid "<emph>Show in web browser</emph>: Check this box to open your system web browser and show the uploaded wiki page."
-msgstr ""
+msgstr "<emph>Web ブラウザーで表示</emph>: このチェックボックスをオンにすると、システムの Web ブラウザーが開いて、アップロードされた Wiki ページが表示されます。"
#: wiki.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id8346812\n"
"help.text"
msgid "Click <emph>Send</emph>."
-msgstr ""
+msgstr "<emph>送信</emph>をクリックします。"
#: wikiaccount.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id656758\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable to store your password between sessions. The master password must be enabled; see <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">セッションのたびにパスワードを入力しなくても済むように、パスワードを保存しておくことができます。マスターパスワードが有効化されている必要があります。<item type=\"menuitem\">「ツール」→「オプション」→「%PRODUCTNAME」→「セキュリティ」</item>を参照してください。</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “http://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr ""
+msgstr "“http://wiki.documentfoundation.org” のようにWikiサーバーのインターネットアドレスを入力するか、WebブラウザーからURLをコピーします。"
#: wikiaccount.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr ""
+msgstr "Wiki で匿名アクセスが許可されている場合は、アカウントのテキストボックスが空白のままでもかまいません。そうでない場合は、ユーザー名とパスワードを入力してください。"
#: wikiaccount.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id8654133\n"
"help.text"
msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server."
-msgstr ""
+msgstr "次の一覧は、Wiki Publisher から Wiki サーバーにアップロードできるテキストフォーマットの概要をまとめたものです。"
#: wikiformats.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id5630664\n"
"help.text"
msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other."
-msgstr ""
+msgstr "Writer で使用される OpenDocument フォーマットと MediaWiki フォーマットは大きく異なります。一方のフォーマットから他方のフォーマットに変換できるのは、一部の機能だけです。"
#: wikiformats.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id508133\n"
"help.text"
msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine."
-msgstr ""
+msgstr "見出し段落スタイルを Writer ドキュメントの見出しに適用します。Wiki では同じアウトラインレベルの見出しが表示され、Wiki エンジンでの定義に従って書式設定されます。"
#: wikiformats.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3735465\n"
"help.text"
msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links."
-msgstr ""
+msgstr "OpenDocument ネイティブのハイパーリンクは、「外部」Wiki リンクに変換されます。したがって、OpenDocument のリンク機能は、Wiki Web の外にあるサイトへのリンクを作成するときにのみ使用してください。同じ Wiki ドメイン内の別のテーマへの Wiki リンクを作成する場合は、Wiki リンクを使用します。"
#: wikiformats.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr ""
+msgstr "リスト全体で同じリストスタイルが使用されていれば、リストは確実にエクスポートできます。Writer でリストを生成するには、番号付けまたは箇条書きのアイコンを使用してください。番号付けも箇条書き記号も使用しないリストが必要な場合は、<emph>「書式」→「箇条書きと番号付け」</emph>を使用して対応するリストスタイルを定義してください。"
#: wikiformats.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id376598\n"
"help.text"
msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text."
-msgstr ""
+msgstr "Wiki 記事では、明示的なテキスト配置を使用しないことが推奨されていますが、テキストを左、中央、または右に揃えるテキスト配置はサポートされます。"
#: wikiformats.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id1459395\n"
"help.text"
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text."
-msgstr ""
+msgstr "固定幅フォントを使用する段落スタイルは、事前整形テキストとして変換されます。Wiki では、事前整形テキストの周りに枠が表示されます。"
#: wikiformats.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id6397595\n"
"help.text"
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style."
-msgstr ""
+msgstr "文字スタイルを設定すると、段落の一部分の表示方法が変更されます。変換がサポートされているのは太字、斜体、太字斜体、下付き、および上付きです。固定幅フォントはすべて、Wiki タイプライタースタイルに変換されます。"
#: wikiformats.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id5238196\n"
"help.text"
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension."
-msgstr ""
+msgstr "注: 変換時には脚注の新しいスタイル (<ref> タグおよび <references> タグ) が使用されますが、これらのタグを使用するには Cite.php 拡張機能が MediaWiki にインストールされている必要があります。変換結果の中で、これらのタグがプレーンテキストとなっている場合は、Wiki 管理者にこの拡張機能のインストールを依頼してください。"
#: wikiformats.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3541673\n"
"help.text"
msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr ""
+msgstr "Wiki テキストのファイルを 1 つだけ生成する変換方法の場合は、画像はエクスポートできません。ただし、画像がすでにアップロード先の Wiki ドメイン (たとえば Wikimedia Commons) にアップロードされている場合は、その画像をインクルードする有効なイメージタグが変換時に作成されます。画像のキャプションもサポートされます。"
#: wikiformats.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3037202\n"
"help.text"
msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr ""
+msgstr "単純な表は問題なくサポートされます。表のヘッダーは、対応する Wiki スタイルの表ヘッダーに変換されます。ただし、ユーザー定義の表枠線の書式設定、列サイズ、および背景色は無視されます。"
#: wikiformats.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr ""
+msgstr "背景色や枠線のスタイルに関係なく、表は常にシンプルな枠線と太字の見出しを伴うWikiエンジンによって描かれる “prettytable” 形式でエクスポートされます。"
#: wikiformats.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id6255073\n"
"help.text"
msgid "Character set and special characters"
-msgstr ""
+msgstr "文字集合と特殊文字"
#: wikiformats.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr ""
+msgstr "変換結果の文字セットは UTF-8 に固定されています。システムによっては、これがデフォルトの文字セットではないこともあり、その場合は「特殊文字」がデフォルトの設定では化けて見えることがあります。この問題は、エディターを UTF-8 エンコーディングに切り替えれば解決します。エンコーディングの切り替えをサポートしていないエディターの場合は、変換結果を Firefox ブラウザーで表示してブラウザーのエンコーディングを UTF-8 に切り替えてください。これで、変換結果を任意のプログラムへコピー&ペーストできるようになります。"
#: wikisend.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id1743827\n"
"help.text"
msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload."
-msgstr ""
+msgstr "「MediaWiki へ送信」ダイアログでは、現在の Wiki アップロードの設定を指定します。"
#: wikisend.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wiki エントリーのタイトルを入力します。これは、Wiki エントリーの先頭の見出しです。新しいエントリーの場合は、この Wiki にまだ存在しないタイトルを付ける必要があります。既存のタイトルを入力した場合は、アップロードを実行すると既存の Wiki エントリーが上書きされます。</ahelp>"
#: wikisend.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id6592913\n"
"help.text"
msgid "<emph>Show in web browser</emph>: <ahelp hid=\".\">Check this box to open your system web browser and show the uploaded wiki page.</ahelp>"
-msgstr ""
+msgstr "<emph>Web ブラウザーで表示</emph>: <ahelp hid=\".\">このチェックボックスをオンにすると、システムの Web ブラウザーが開いて、アップロードされた Wiki ページが表示されます。</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id1188390\n"
"help.text"
msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to <item type=\"menuitem\">Tools - Options - Internet - MediaWiki</item>."
-msgstr ""
+msgstr "MediaWikiサーバーを追加、編集、削除できます。<item type=\"menuitem\">ツール - オプション - インターネット - MediaWiki</item>にてオプションダイアログを開きます。"
#: wikisettings.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id300607\n"
"help.text"
msgid "<ahelp hid=\".\">Click Add to add a new wiki server.<br/>Select an entry and click Edit to edit the account settings.<br/>Select an entry and click Remove to remove the entry from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">新しい Wiki サーバーを追加するには「追加」をクリックします。<br/>アカウント設定を編集するには、エントリーを選択して「編集」をクリックします。<br/>エントリーを選択して「削除」をクリックすると、そのエントリーがリストから削除されます。</ahelp>"
#: wikisettings.xhp
msgctxt ""
diff --git a/source/ja/xmlsecurity/uiconfig/ui.po b/source/ja/xmlsecurity/uiconfig/ui.po
index 28a0d3f8e88..0d678671c4d 100644
--- a/source/ja/xmlsecurity/uiconfig/ui.po
+++ b/source/ja/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 13:53+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "削除"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ka/desktop/source/deployment/gui.po b/source/ka/desktop/source/deployment/gui.po
index 398d626b692..767828df30c 100644
--- a/source/ka/desktop/source/deployment/gui.po
+++ b/source/ka/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-05-12 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared.po b/source/ka/helpcontent2/source/text/sbasic/shared.po
index 65bf94abf1b..b8a1403ae17 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ka/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 04:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"alt_icon\">ხატულა </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "გაშვების ფუნქცია გამოსაყენებლად აბრუნებს საწყის კომპონენტს,XmultiServiceFactory -ის ინსტანტირების დროს. დამატებითი ინფორმაციისთვის იხილეთ <item type=\"literal\">Professional UNO</item> თავი <item type=\"literal\">პროგრამისტის სახელმძღვანელოში</item> მისამართზე:<link href=\"http://api.openoffice.org\">api.openoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/shared/00.po b/source/ka/helpcontent2/source/text/shared/00.po
index 7d1003796d0..33c841c15ac 100644
--- a/source/ka/helpcontent2/source/text/shared/00.po
+++ b/source/ka/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 15:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/01.po b/source/ka/helpcontent2/source/text/shared/01.po
index 3c993082fbb..5cf2749986a 100644
--- a/source/ka/helpcontent2/source/text/shared/01.po
+++ b/source/ka/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 07:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/optionen.po b/source/ka/helpcontent2/source/text/shared/optionen.po
index fdd144bdae3..7eb3a3f9660 100644
--- a/source/ka/helpcontent2/source/text/shared/optionen.po
+++ b/source/ka/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 07:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ka/helpcontent2/source/text/swriter.po b/source/ka/helpcontent2/source/text/swriter.po
index f1163303628..65a67efc6b8 100644
--- a/source/ka/helpcontent2/source/text/swriter.po
+++ b/source/ka/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 16:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"მონახაზური გადანომვრა\">მონახაზური გადანომვრა</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/swriter/00.po b/source/ka/helpcontent2/source/text/swriter/00.po
index 978b14eca89..749915604c3 100644
--- a/source/ka/helpcontent2/source/text/swriter/00.po
+++ b/source/ka/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 16:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/ka/helpcontent2/source/text/swriter/01.po b/source/ka/helpcontent2/source/text/swriter/01.po
index e3fb1d7d9c9..b0ca7b80197 100644
--- a/source/ka/helpcontent2/source/text/swriter/01.po
+++ b/source/ka/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 08:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph> Navigator ფანჯარაში მხოლოდ ზედა დონის სათაურებისა და <emph>10</emph> ყველა სათაურის სანახავად.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "თუ მონიშნავთ \"თავის ნომერს გამყოფის გარეშე\" თავის ველისთვის,თავის ნომრისთვის განსაზღვრული გამყოფები <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> არ აისახება."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">ჩაურთავს თავის სრულ ზედა კოლონტიტულს, მათ შორის, თუ შესაძლებელია თავის ნომერს. თავის დანომრვის ზედა კოლონტიტულის სტილზე გასააქტიურებლად ამოირჩიეთ<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "მონახაზის დანომრვა"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "მონახაზის დანომრვა"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "მონახაზის დანომრვა დაკავშირებულია პარაგრაფის სტილებთან. ნაგულისხმევი პარამეტრებით, \"ზედა კოლონტიტულის\" პარაგრაფის სტლები (1-10) მიენიჭება შესაბამის მონახაზის ნომრის დონეებს (1-10). თუ გსურთ, მონახაზის ნომრების დონეებს შეგიძლიათ მიანიჭოთ სხვა პარაგრაფის სტილები."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "მონახაზის ნომრების ეკრანის ასახვის ხაზგასასასმელად მონიშნეთ <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">ინახავს ან ტვირთავს მონახაზის ნომრების ფორმატს. შენახული მონახაზის ნომრის ფორმატი ხელმისაწვდომია ყველა ტექსტური დოკუმენტისთვის.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Format</emph> ღილაკი ხელმისაწვდომია მხოლოდ მონახაზის დანომრვისთვის. დანომრილი ან ბულეტებიანი სიის სტილისთვის შეცვალეთ პარაგრაფების დანომრის სტილი."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">ხსნის დიალოგს, სადაც შეგიძლიათ შეინახოთ მიმდინარე პარამეტრები მონიშნული მონახაზის დონისათვის. შეგიძლიათ ჩატვირთოთ ეს პარამეტრები სხვა დოკუმენტიდან.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">დააწკაპუნეთ შესაცვლელი მონახაზის დონეზე და შემდეგ განსაზღვრეთ დანომრვის პარამეტრები ამ დონისათვის.</ahelp>დანომრვის პარამეტრების გასააქტიურებლად, გარდა პარაგრაფის სტილისა, ყველა დონეზე, დააწკაპუნეთ\"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">მონიშნეთ პარაგრაფის სტილი, რომლის გააქტიურებაც გსურთ მონიშნულ მონახაზის დონეზე.</ahelp> თუ დააწკაპუნებთ \"None\"-ზე, მონიშნული მონახაზის დონე არ იქნება განსაზღვრული."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "მისამართთა ახალი ბლოკი"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "მისამართთა ახალი ბლოკი"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "მისამართთა ელემენტები"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "აგდებს მისამართთა ელემენტებს ქვემომდებარე ველში"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/swriter/guide.po b/source/ka/helpcontent2/source/text/swriter/guide.po
index 9d75dd2dcbf..80cb7fc0d9f 100644
--- a/source/ka/helpcontent2/source/text/swriter/guide.po
+++ b/source/ka/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 08:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "მონახაზის დანომრვა"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
index ee7c8d5c67b..287b7225dea 100644
--- a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-03 02:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "თემის არჩევა"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26980,15 +27097,6 @@ msgid "~Properties..."
msgstr "თვისებები..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ka/sc/source/ui/src.po b/source/ka/sc/source/ui/src.po
index b41df54564b..c9cf019fd72 100644
--- a/source/ka/sc/source/ui/src.po
+++ b/source/ka/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 00:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2679,7 +2679,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2844,7 +2844,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ka/sfx2/source/view.po b/source/ka/sfx2/source/view.po
index 404b055b11d..12490750367 100644
--- a/source/ka/sfx2/source/view.po
+++ b/source/ka/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ka/svtools/source/control.po b/source/ka/svtools/source/control.po
index 17a7232f941..6653d632f67 100644
--- a/source/ka/svtools/source/control.po
+++ b/source/ka/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "შავი კურსივი"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ka/svtools/source/misc.po b/source/ka/svtools/source/misc.po
index 18cb881dc7a..19ec98165be 100644
--- a/source/ka/svtools/source/misc.po
+++ b/source/ka/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 16:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,9 +3180,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ka/sw/source/core/undo.po b/source/ka/sw/source/core/undo.po
index a3301bfc819..d53463dad4f 100644
--- a/source/ka/sw/source/core/undo.po
+++ b/source/ka/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-01 23:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -892,42 +892,82 @@ msgstr "სვეტის წყვეტა"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "ჩასმა $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "წაშლა $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "შეცვლილია ატრიბუტები"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "შეცვლილია ცხრლი"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "შეცვლილია სტილი"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ka/sw/source/uibase/docvw.po b/source/ka/sw/source/uibase/docvw.po
index 05764f0fc8a..9063083e963 100644
--- a/source/ka/sw/source/uibase/docvw.po
+++ b/source/ka/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 02:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ka/sw/source/uibase/ribbar.po b/source/ka/sw/source/uibase/ribbar.po
index 66bc8e28893..0b9130d82c6 100644
--- a/source/ka/sw/source/uibase/ribbar.po
+++ b/source/ka/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 10:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ka/sw/source/uibase/uiview.po b/source/ka/sw/source/uibase/uiview.po
index a48075860cf..5c5a6045bab 100644
--- a/source/ka/sw/source/uibase/uiview.po
+++ b/source/ka/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 02:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ka/xmlsecurity/uiconfig/ui.po b/source/ka/xmlsecurity/uiconfig/ui.po
index 5b6490e8880..d61a38a71f6 100644
--- a/source/ka/xmlsecurity/uiconfig/ui.po
+++ b/source/ka/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/kk/desktop/source/deployment/gui.po b/source/kk/desktop/source/deployment/gui.po
index a9b8a45b22a..3d50891abea 100644
--- a/source/kk/desktop/source/deployment/gui.po
+++ b/source/kk/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 23:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 14:03+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467675862.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498053789.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "Кеңейтулерді орнату ағымдағы уақытта сөндірілген. Көбірек білу үшін, жүйелік әкімшіңізге хабарласыңыз."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "Кеңейтулерді өшіру ағымдағы уақытта сөндірілген. Көбірек білу үшін, жүйелік әкімшіңізге хабарласыңыз."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/kk/filter/source/config/fragments/filters.po b/source/kk/filter/source/config/fragments/filters.po
index 35f2da3fea0..5afb4f263dd 100644
--- a/source/kk/filter/source/config/fragments/filters.po
+++ b/source/kk/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-14 12:11+0000\n"
+"PO-Revision-Date: 2017-06-07 14:06+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492171860.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496844406.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/kk/filter/source/config/fragments/types.po b/source/kk/filter/source/config/fragments/types.po
index d0c39d0a3e0..2650e55b8c8 100644
--- a/source/kk/filter/source/config/fragments/types.po
+++ b/source/kk/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-14 12:11+0000\n"
+"PO-Revision-Date: 2017-06-07 14:06+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492171864.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496844409.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
index e6a8debe4c0..23f4b09fb68 100644
--- a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kk/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-20 03:50+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 14:10+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495252222.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054224.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Темаларды таңдау"
+msgid "Spreadsheet Theme"
+msgstr "Эл. кесте темасы"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Кірістіру..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Бастапқы"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Акцент 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Акцент 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Акцент 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Тақырыптама 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Тақырыптама 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Нашар"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Қате"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Жақсы"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Бейтарап"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Ескерту"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Соңдық нұсқама"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Естелік"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Слайдтар ~шебері"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Жазбалар ш~ебері"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Жа~збалар"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Көріністер беттер ~панелі"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Тез~истер шебері"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "С~лайдтар панелі"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Саймандар панелі жай~масы"
#: GenericCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Қас~иеттері..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Объект..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Тақырыптама жолдары беттерде қайталанады"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Беттер арасында бөлінетін ~жол"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Маркерленген тізім"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Нөмірленген тізім"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Рим тізімі"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/kk/sc/source/ui/src.po b/source/kk/sc/source/ui/src.po
index 3528ec90198..15764d29f1e 100644
--- a/source/kk/sc/source/ui/src.po
+++ b/source/kk/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-28 12:58+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 14:10+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495976333.000000\n"
+"X-POOTLE-MTIME: 1498054258.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Аумақ #1 жерінен #2 жеріне жылжытылды"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2871,7 +2871,7 @@ msgstr "Құрамдас массивтерге қолдау жоқ."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "Мәтінді бағандарға"
diff --git a/source/kk/sfx2/source/view.po b/source/kk/sfx2/source/view.po
index df78950c750..30a503d5f9a 100644
--- a/source/kk/sfx2/source/view.po
+++ b/source/kk/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-25 09:06+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 14:11+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493111177.000000\n"
+"X-POOTLE-MTIME: 1498054291.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "Бұл құжаттың қолтаңбасы жарамсыз."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "Қолтаңба дұрыс болған, бірақ, құжат өзгертілген"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/kk/svtools/source/control.po b/source/kk/svtools/source/control.po
index e495cdedcce..34cd24b741b 100644
--- a/source/kk/svtools/source/control.po
+++ b/source/kk/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-06-27 01:54+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 14:12+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1435370091.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054348.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Қара көлбеу"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Тығыздалған"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Тығыздалған жуан"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Тығыздалған жуан көлбеу"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Тығыздалған көлбеу"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Жартылай жуан"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Жартылай жуан көлбеу"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/kk/svtools/source/misc.po b/source/kk/svtools/source/misc.po
index 0a9100182dc..ec9b00bc927 100644
--- a/source/kk/svtools/source/misc.po
+++ b/source/kk/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-20 08:59+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 14:13+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492678761.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054429.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Бэквил"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Китуба"
+msgid "Kituba (Congo)"
+msgstr "Китуба (Конго)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Сибин"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Китуба (Конго Демократиялық Республикасы)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/kk/sw/source/core/undo.po b/source/kk/sw/source/core/undo.po
index 699100616d8..f28e93db015 100644
--- a/source/kk/sw/source/core/undo.po
+++ b/source/kk/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-19 16:03+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 14:14+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492617811.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054492.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "баған ажырауы"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "$1 кірістіру"
@@ -899,7 +899,7 @@ msgstr "$1 кірістіру"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "$1 өшіру"
@@ -907,7 +907,7 @@ msgstr "$1 өшіру"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr "Атрибуттар өзгертілген"
@@ -915,7 +915,7 @@ msgstr "Атрибуттар өзгертілген"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr "Кесте өзгертілген"
@@ -923,10 +923,50 @@ msgstr "Кесте өзгертілген"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Стилі өзгертілген"
+msgstr "Стиль өзгертілген"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Абзац пішімдеуі өзгертілген"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Жолды кірістіру"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Жолды өшіру"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Ұяшықты кірістіру"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Ұяшықты өшіру"
#: undo.src
msgctxt ""
diff --git a/source/kk/sw/source/uibase/docvw.po b/source/kk/sw/source/uibase/docvw.po
index 557b1e213e1..cccee8a178e 100644
--- a/source/kk/sw/source/uibase/docvw.po
+++ b/source/kk/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2014-12-09 08:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 14:15+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1418114687.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054523.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Абзац стилі іске асырылған"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Абзац пішімдеуі өзгертілген"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Жол кірістірілген"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Жол өшірілген"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Ұяшық кірістірілген"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Ұяшық өшірілген"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/kk/sw/source/uibase/ribbar.po b/source/kk/sw/source/uibase/ribbar.po
index c5f6f1af9f0..6c089611d78 100644
--- a/source/kk/sw/source/uibase/ribbar.po
+++ b/source/kk/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-28 07:34+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 14:15+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482910443.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054528.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Формула мәтіні"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Мәтіндік формула"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/kk/sw/source/uibase/uiview.po b/source/kk/sw/source/uibase/uiview.po
index 64c51717e8d..620e41a0e5b 100644
--- a/source/kk/sw/source/uibase/uiview.po
+++ b/source/kk/sw/source/uibase/uiview.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-11 10:49+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-21 14:15+0000\n"
+"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457693361.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054553.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Бастапқы мәтінді экспорттау..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "Қайнар көзінің көшірмесін ~экспорттау..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/kk/sw/uiconfig/swriter/ui.po b/source/kk/sw/uiconfig/swriter/ui.po
index 844fa2e08c2..40df8b6e38f 100644
--- a/source/kk/sw/uiconfig/swriter/ui.po
+++ b/source/kk/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 01:37+0000\n"
+"PO-Revision-Date: 2017-06-07 14:09+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: none\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496108234.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496844561.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Сипаттамасы:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Түсіндірмені түзету..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Бойынша сұрыптау"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Әрекет"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Автор"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Күні"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Түсіндірме"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Құжат орналасуы"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "LibreOffice 4.3 байланыс суреттеу ретін қолдану (ағымдағы құжатта)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Пайдаланушы баптаулары>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/kk/xmlsecurity/uiconfig/ui.po b/source/kk/xmlsecurity/uiconfig/ui.po
index 18f49ba27a5..25226526aca 100644
--- a/source/kk/xmlsecurity/uiconfig/ui.po
+++ b/source/kk/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-14 12:13+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 14:16+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492172008.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498054573.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Өшіру"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Сертификаттар басқарушысын іске қосу..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/km/desktop/source/deployment/gui.po b/source/km/desktop/source/deployment/gui.po
index b29e2233b84..4ab6b33befb 100644
--- a/source/km/desktop/source/deployment/gui.po
+++ b/source/km/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: gui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 00:09+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-05-12 20:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
"Language: km\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: km-KH\n"
-"X-POOTLE-MTIME: 1467677391.000000\n"
+"X-POOTLE-MTIME: 1431462987.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/km/helpcontent2/source/text/sbasic/shared.po b/source/km/helpcontent2/source/text/sbasic/shared.po
index 5340c8c014a..26a21c031dd 100644
--- a/source/km/helpcontent2/source/text/sbasic/shared.po
+++ b/source/km/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shared\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 05:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -484,10 +484,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">លេខ​កូដ​កំហុស</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33041,6 +33073,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "អនុគមន៍​ពេល​រត់​នេះ ត្រឡប់​បរិបទ​សមាសភាគ​លំនាំ​ដើម​ដែល​ត្រូវ​ប្រើ ប្រសិនបើ​ចាប់ផ្ដើម​សេវា​តាមរយៈ XmultiServiceFactory ។ មើល​ជំពូក <item type=\"literal\">Professional UNO</item> ក្នុង <item type=\"literal\">មគ្គុទ្ទេសក៍​អ្នក​បង្កើត</item> នៅ​លើ <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> សម្រាប់​ព័ត៌មាន​បន្ថែម ។"
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/km/helpcontent2/source/text/shared/00.po b/source/km/helpcontent2/source/text/shared/00.po
index 86f8d20fed2..1525c91d253 100644
--- a/source/km/helpcontent2/source/text/shared/00.po
+++ b/source/km/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 16:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -9726,7 +9726,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9750,7 +9750,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/km/helpcontent2/source/text/shared/01.po b/source/km/helpcontent2/source/text/shared/01.po
index 29a90b76b92..5b00ce71ab6 100644
--- a/source/km/helpcontent2/source/text/shared/01.po
+++ b/source/km/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 09:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">ជ្រើស​រចនាប័ទ្ម​កថាខណ្ឌ ឬ​កម្រិត​គ្រង​ដែល​អ្នក​ចង់​ប្រើ​ ដើម្បីបំបែក​ឯកសារ​ប្រភព​ទៅជា​ឯកសារ​តូច ។</ahelp> តាម​លំនាំដើម ឯកសារ​ថ្មី​ត្រូវ​បាន​បង្កើត​សម្រាប់​កម្រិត​គ្រោង ១ ។"
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40470,8 +40470,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">ជ្រើស​ដើម្បី​នាំចេញ​ចំណាំ​ឯកសារ Writer ជា​ចំណាំ PDF ។ ចំណាំ​ត្រូវបាន​បង្កើត​សម្រាប់​កថាខណ្ឌ​គ្រោង​ទាំងអស់ (ឧបករណ៍ - លេខ​គ្រោង) និង​សម្រាប់​តារាង​ធាតុ​មាតិកា​ទាំងអស់ ដែល​អ្នក​បាន​ផ្ដល់​តំណ​ខ្ពស់​ក្នុង​ឯកសារ​ប្រភព ។</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index 8ec3d2809db..77c7544b261 100644
--- a/source/km/helpcontent2/source/text/shared/optionen.po
+++ b/source/km/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: optionen\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 10:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2302,7 +2310,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/km/helpcontent2/source/text/swriter.po b/source/km/helpcontent2/source/text/swriter.po
index 4088da1ca42..e834e264c94 100644
--- a/source/km/helpcontent2/source/text/swriter.po
+++ b/source/km/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 17:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1054,8 +1054,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">លេខរៀង​គ្រោង</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/swriter/00.po b/source/km/helpcontent2/source/text/swriter/00.po
index 48267fad17a..fce9bcc0ab5 100644
--- a/source/km/helpcontent2/source/text/swriter/00.po
+++ b/source/km/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 17:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">ជ្រើស <emph>ឧបករណ៍ - លេខរៀង​គ្រោង</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">ជ្រើស <emph>ឧបករណ៍ - លេខរៀង​គ្រោង -</emph> ផ្ទាំង<emph> លេខរៀង</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">ជ្រើស <emph>ឧបករណ៍ - លេខ​រៀង​បន្ទាត់</emph> (មិនមែន​សម្រាប់​ទ្រង់ទ្រាយ HTML) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/swriter/01.po b/source/km/helpcontent2/source/text/swriter/01.po
index f6793e0a1bc..b8dd32cab56 100644
--- a/source/km/helpcontent2/source/text/swriter/01.po
+++ b/source/km/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 10:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">ចុច <emph>1 </emph>ដើម្បី​មើល​តែ​ក្បាល​កម្រិត​កំពូល​ក្នុង​បង្អួច​កម្មវិធី​រុករក​ និង <emph>10</emph> ដើម្បី​មើល​ក្បាល​ទាំងអស់ ។</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5830,8 +5830,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "ប្រសិន​បើ​អ្នក​ជ្រើស \"លេខ​ជំពូក​ដោយ​គ្មាន​​​សញ្ញា​បំបែក\" សម្រាប់​វាល​ជំពូក សញ្ញា​បំបែក​ដែល​ត្រូវ​បានបញ្ជាក់​សម្រាប់លេខ​ទំព័រ​នៅ​ក្នុង <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>ឧបករណ៍ - លេខ​គ្រោង</emph></link> មិន​ត្រូវ​បានបង្ហាញ​ទេ ។"
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11214,8 +11214,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">បញ្ចូល​លេខ​ជំពូក ។ ដើម្បី​កំណត់​លេខ​រៀង​ជំពូក​ទៅ​រចនាប័ទ្មក្បាល​ ជ្រើស​<emph> ឧបករណ៍​ - លេខរៀង​គ្រោង​</emph>។</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21342,16 +21342,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "លេខរៀង​គ្រោង​"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "លេខរៀង​គ្រោង​"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21366,24 +21366,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "លេខ​រៀង​គ្រោង​ត្រូវ​បាន​ត​ភ្ជាប់​ទៅ​រចនាប័ទ្ម​កថា​ខណ្ឌ ។ តាម​លំនាំ​ដើម រចនាប័ទ្ម​កថា​ខណ្ឌ \"ក្បាល\" (1-10) ត្រូវ​បាន​ផ្តល់​ទៅ​កម្រិត​លេខ​គ្រោង​ដែល​ទាក់​ទង​ (1-10) ។ ប្រសិន​បើ​អ្នក​ចង់ អ្នក​អាច​ផ្តល់​តម្លៃ​រចនាប័ទ្ម​កថា​ខណ្ឌ​ខុស​គ្នា​ទៅ​កម្រិត​លេខ​គ្រោង ។"
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "បើ​អ្នក​ត្រូវការ​បថម​កថា​ដែល​ដាក់​លេខ ប្រើ​ពាក្យ​បញ្ជា​ម៉ឺនុយ <emph>ឧបករណ៍ - លេខ​រៀង​គ្រោង</emph> ដើម្បី​ផ្ដល់​លេខរៀង​ទៅ​រចនា​ប័ទ្ម​កថា​ខណ្ឌ ។ កុំ​ប្រើ​រូប​តំណាង​លេខ​រៀង​លើ​របារ​ឧបករណ៍​ទ្រង់ទ្រាយ ។"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "ដើម្បី​បន្លិច​ការ​បង្ហាញ​លើ​អេក្រង់​នៃ​លេខ​គ្រោង ជ្រើស <emph>មើល - </emph><emph>ស្រមោល​វាល</emph> ។"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21398,16 +21398,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">រក្សាទុក ឬ​ផ្ទុក​ទ្រង់ទ្រាយ​លេខ​គ្រោង​មួយ ។ ទ្រង់ទ្រាយ​លេខ​គ្រោង​ដែល​បាន​រក្សាទុក អាច​ប្រើ​បាន​គ្រប់​ឯកសារ​អត្ថបទ​ទាំងអស់ ។</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "ប៊ូតុង <emph>ទ្រង់ទ្រាយ</emph> អាច​ប្រើ​បាន សម្រាប់​តែ​លេខ​រៀង​គ្រោង ។ សម្រាប់​រចនាប័ទ្ម​បញ្ជី​ដែល​មាន​ចំណុច ឬ​លេខរៀង កែប្រែ​រចនាប័ទ្ម​លេខរៀង​នៃ​កថាខណ្ឌ ។"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21438,8 +21438,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">បើក​ប្រអប់​មួយ​ដែល​អ្នក​អាច​រក្សាទុក​ការ​កំណត់​បច្ចុប្បន្ន សម្រាប់​កម្រិត​គ្រោង​ដែល​បាន​ជ្រើស ។ បន្ទាប់​មក អ្នក​អាច​ផ្ទុក​ការ​កំណត់​ទាំងនេះ​ពី​ឯកសារ​ដទៃទៀត ។</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21494,8 +21494,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">ចុច​កម្រិត​គ្រោង​ដែល​អ្នក​ចង់​កែប្រែ ហើយ​បន្ទាប់​មក​បញ្ជាក់​​ជម្រើស​លេខ​រៀង​សម្រាប់​កម្រិត ។</ahelp> ដើម្បី​អនុវត្ត​ជម្រើស​លេខ​រៀង​ទៅ​កម្រិត​ទាំងអស់ ដោយ​លើក​លែង​តែ​រចនាប័ទ្ម​កថា​ខណ្ឌ ចុច \"1-10\" ។"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21526,8 +21526,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">ជ្រើស​រចនាប័ទ្ម​កថាខណ្ឌ ដែល​អ្នក​ចង់​ផ្តល់​ទៅ​កម្រិត​គ្រោង​ដែល​បាន​ជ្រើស ។</ahelp> ប្រសិន​បើ​អ្នក​ចុច \"គ្មាន\" កម្រិត​គ្រោង​ដែល​បាន​ជ្រើស នឹង​មិន​ត្រូវ​បាន​កំណត់ ។"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25302,16 +25302,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "បណ្តុំ​អាសយដ្ឋាន​ថ្មី"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "បណ្តុំ​អាសយដ្ឋាន​ថ្មី"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25326,8 +25326,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "ធាតុ​អាសយដ្ឋាន"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25374,8 +25374,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "អូស​ធាតុ​អាសយដ្ឋាន​ទៅ​វាល​ពីក្រោម"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/swriter/guide.po b/source/km/helpcontent2/source/text/swriter/guide.po
index 7d1f4fadb8c..774f9177875 100644
--- a/source/km/helpcontent2/source/text/swriter/guide.po
+++ b/source/km/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 10:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -190,8 +190,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "អ្នក​អាច​ផ្លាស់ទី​ក្បាល និង អត្ថបទ​ក្រោម​បង្គាប់​ឡើង​លើ និង ចុះ​ក្រោម ក្នុង​ឯកសារ​អត្ថបទ​ដោយ​ប្រើ​កម្មវិធី​រុករក ។ អ្នក​ក៏​អាច​បន្ថយ និង បង្កើន​កម្រិត​ក្បាល ។ ដើម្បី​ប្រើ​លក្ខណៈ​ពិសេស​នេះ ធ្វើ​ទ្រង់ទ្រាយ​ក្បាល​ក្នុង​ឯកសារ​របស់​អ្នក ដោយ​រចនាប័ទ្ម​កថាខណ្ឌ​ក្បាល​ដែល​បាន​កំណត់​មុន ។ ដើម្បី​ប្រើ​រចនាប័ទ្ម​កថាខណ្ឌ​ផ្ទាល់​ខ្លួន​មួយ សម្រាប់​ក្បាល ជ្រើស <emph>ឧបករណ៍ - លេខ​រៀង​គ្រោង</emph> ជ្រើស​រចនាប័ទ្ម​ក្នុង​ប្រអប់ <emph>រចនាប័ទ្ម​កថាខណ្ឌ </emph>និង​​បន្ទាប់​មក​​ចុច​ទ្វេដង​លើ​លេខ​មួយ​ក្នុង​បញ្ជី <emph>កម្រិត</emph> ។"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2902,32 +2902,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "លេខរៀង​គ្រោង​"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>គ្រោង;លេខរៀង</bookmark_value> <bookmark_value>លុប;លេខ​ក្បាល</bookmark_value> <bookmark_value>លេខ​រៀង​ជំពូក</bookmark_value> <bookmark_value>ក្បាល; លេខរៀង/រចនាប័ទ្ម​កថាខណ្ឌ</bookmark_value> <bookmark_value>លេខ​រៀង;ក្បាល</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">លេខ​រៀង​គ្រោង</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "អ្នក​អាច​កែប្រែ​ឋានានុក្រម​ក្បាល ឬ​ផ្តល់​តម្លៃ​កម្រិត​មួយ​ក្នុង​ឋានានុក្រម ទៅ​រចនាប័ទ្ម​កថាខណ្ឌ​ផ្ទាល់​ខ្លួន ។ អ្នក​ក៏​អាច​បន្ថែម​ជំពូក និង លេខ​រៀង​ភាគ​ទៅ​រចនាប័ទ្ម​កថាខណ្ឌ​ក្បាលផង​ដែរ​ ។ តាម​លំនាំដើម រចនាប័ទ្ម​កថាខណ្ឌ \"ក្បាល១\" ស្ថិត​នៅ​លើ​គេ​បំផុត​នៃ​ឋានានុក្រម​គ្រោង ។"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2942,8 +2942,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "ជ្រើស <item type=\"menuitem\">ឧបករណ៍ - លេខរៀង​គ្រោង</item> ហើយ​បន្ទាប់មក​ចុច​ផ្ទាំង <item type=\"menuitem\">លេខ​រៀង</item>  ។"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2966,8 +2966,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "ដើម្បី​យក​លេខរៀង​គ្រោង​​ដោយ​ស្វ័យ​ប្រវត្តិ​ចេញ​ពី​កថាខណ្ឌ​ក្បាល"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2998,8 +2998,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "ជ្រើស <item type=\"menuitem\">ឧបករណ៍ - លេខរៀង​គ្រោង</item> ហើយ​បន្ទាប់មក​ចុច​ផ្ទាំង <item type=\"menuitem\">លេខ​រៀង</item>  ។"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6110,8 +6110,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "មុន​ពេល​អ្នក​អាច​បញ្ចូល​ព័ត៌មាន​ជំពូក​ទៅ​ក្នុង​បឋមកថា ឬ​បាតកថា ដំបូង​អ្នក​ត្រូវ​តែ​កំណត់​ជម្រើស​លេខ​រៀង​គ្រោង សម្រាប់​រចនាប័ទ្ម​កថាខណ្ឌ ដែល​អ្នក​ចង់​ប្រើ​ជា​ចំណងជើង​ជំពូក ។"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6126,8 +6126,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "ជ្រើស <emph>ឧបករណ៍ - លេខ​រៀង​គ្រោង</emph> ។"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7126,8 +7126,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>លិបិក្រម; កំណត់​ធាតុ​​ក្នុង</bookmark_value> <bookmark_value>តារាង​មាតិកា; កំណត់​ធាតុ​ក្នុង</bookmark_value> <bookmark_value>ធាតុ; កំណត់ក្នុង​លិបិក្រម/តារាង​មាតិកា</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7158,8 +7158,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "ជ្រើស <emph>បញ្ចូល - លិបិក្រម និង តារាង - ធាតុ</emph> និង​​ធ្វើ​ក្នុង​ចំណោម​ខាង​ក្រោម ៖"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7214,8 +7214,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "ជ្រើស <emph>ឧបករណ៍ - លេខ​រៀង​គ្រោង</emph> និង​ចុច​ផ្ទាំង <emph>លេខ​រៀង</emph> ។"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7838,8 +7838,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "ប្រសិនបើ​អ្នក​ចង់​ប្រើរចនាប័ទ្ម​កថាខណ្ឌ​ផ្សេង​ដូចជា​ធាតុ​​មាតិកា គូស​ធីក <item type=\"menuitem\">រចនាប័ទ្ម​បន្ថែម</item> នៅ​ក្នុង​ផ្ទៃ <item type=\"menuitem\">បង្កើតពី</item> ហើយ​បន្ទាប់​មក​ចុច​ប៊ូតុង (<item type=\"menuitem\">...</item>) នៅ​ជាប់​នឹង​ប្រអប់​ធីក ។ នៅ​ក្នុង​ប្រអប់ <item type=\"menuitem\">ផ្ដល់​រចនាប័ទ្ម</item> ចុច​រចនាប័ទ្ម​នៅ​ក្នុ​ងបញ្ជី ហើយ​បន្ទាប់​មក​ចុច​ប៊ូតុង <item type=\"menuitem\">>></item> ឬ <item type=\"menuitem\"><<</item> ដើម្បី​កំណត់​កម្រិត​គ្រោង​សម្រាប់​រចនាប័ទ្ម​កថាខណ្ឌ ។"
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9486,8 +9486,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>លេខរៀង; យកចេញ/ផ្អាក</bookmark_value> <bookmark_value>បញ្ជីចំណុច; ផ្អាក</bookmark_value> <bookmark_value>បញ្ជី;យកចេញ/ផ្អាក​លេខរៀង</bookmark_value> <bookmark_value>លុប;លេខ​ក្នុង​បញ្ជី</bookmark_value> <bookmark_value>ផ្អាក​បញ្ជីលេខរៀង</bookmark_value> <bookmark_value>ផ្លាស់ប្ដូរ;ចាប់ផ្ដើមលេខ​ក្នុង​បញ្ជី</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9510,8 +9510,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "បើ​អ្នក​ត្រូវការ​បថម​កថា​ដែល​ដាក់​លេខ​រៀង ប្រើ​ម៉ឺនុយ​ពាក្យ​បញ្ជា <emph>ឧបករណ៍ - ដាក់​លេខ​រៀង​គ្រោង</emph> ដើម្បី​ផ្ដល់​លេខរៀង​ទៅ​ឲ្យ​រចនាប័ទ្ម​កថាខណ្ឌ ។ កុំ​ប្រើ​រូប​តំណាង​លេខរៀង​នៅ​លើ​របារ​ឧបករណ៍ ធ្វើ​ទ្រង់ទ្រាយ ។"
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
index 32688690fa6..72294a3478d 100644
--- a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ជ្រើស​​ស្បែក"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26994,15 +27111,6 @@ msgid "~Properties..."
msgstr "លក្ខណៈ​​សម្បត្តិ​..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/km/sc/source/ui/src.po b/source/km/sc/source/ui/src.po
index 65aa22a4d2a..77c19b16876 100644
--- a/source/km/sc/source/ui/src.po
+++ b/source/km/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 01:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -2704,7 +2704,7 @@ msgstr "ជួរ​បាន​​​​ផ្លាស់​ទី​ពី #1
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2869,7 +2869,7 @@ msgstr "អារេ​ក្នុង​មិន​ត្រូវ​បាន
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/km/sfx2/source/view.po b/source/km/sfx2/source/view.po
index 37a03002829..8b3b9d1c441 100644
--- a/source/km/sfx2/source/view.po
+++ b/source/km/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/km/svtools/source/control.po b/source/km/svtools/source/control.po
index 632d8205832..961ca1e1320 100644
--- a/source/km/svtools/source/control.po
+++ b/source/km/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -292,6 +292,110 @@ msgstr "ទ្រេត​ ខ្មៅ"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/km/svtools/source/misc.po b/source/km/svtools/source/misc.po
index 8d172d71d4d..1e05e9d18d2 100644
--- a/source/km/svtools/source/misc.po
+++ b/source/km/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 18:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -3181,10 +3181,10 @@ msgstr "ប៊ែកវែល"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "គីទួបា"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/km/sw/source/core/undo.po b/source/km/sw/source/core/undo.po
index 12ee6e6c487..bc1a10df7c2 100644
--- a/source/km/sw/source/core/undo.po
+++ b/source/km/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-05-15 09:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -892,42 +892,82 @@ msgstr "ការ​បំបែក​ជួរ​ឈរ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "បញ្ចូល $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "លុប $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "គុណ​លក្ខណៈ​ដែល​បាន​ផ្លាស់ប្តូរ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "តារាង​ដែល​បាន​ផ្លាស់ប្តូរ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "រចនាប័ទ្ម​ដែល​បាន​ផ្លាស់​ប្តូរ"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/km/sw/source/uibase/docvw.po b/source/km/sw/source/uibase/docvw.po
index d5f963420cd..7c4e2832372 100644
--- a/source/km/sw/source/uibase/docvw.po
+++ b/source/km/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 03:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/km/sw/source/uibase/ribbar.po b/source/km/sw/source/uibase/ribbar.po
index bbbaf103940..a511b2d97c4 100644
--- a/source/km/sw/source/uibase/ribbar.po
+++ b/source/km/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/km/sw/source/uibase/uiview.po b/source/km/sw/source/uibase/uiview.po
index 6a6e43a6013..1a2ec0dc1fe 100644
--- a/source/km/sw/source/uibase/uiview.po
+++ b/source/km/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 03:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/km/xmlsecurity/uiconfig/ui.po b/source/km/xmlsecurity/uiconfig/ui.po
index c074b279585..cac1b1f68bd 100644
--- a/source/km/xmlsecurity/uiconfig/ui.po
+++ b/source/km/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 14:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -173,6 +173,15 @@ msgstr "យកចេញ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/kmr-Latn/desktop/source/deployment/gui.po b/source/kmr-Latn/desktop/source/deployment/gui.po
index 40b462db7ca..2ae99a57fbd 100644
--- a/source/kmr-Latn/desktop/source/deployment/gui.po
+++ b/source/kmr-Latn/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 00:24+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-05-12 21:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kmr-Latn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467678255.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1431464826.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
index 3bc7cb711c6..86140e5df77 100644
--- a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Dirban Hilbijêre"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4095,6 +4095,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27086,15 +27203,6 @@ msgid "~Properties..."
msgstr "Taybetmendî..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/kmr-Latn/sc/source/ui/src.po b/source/kmr-Latn/sc/source/ui/src.po
index 75fa73da8da..6aeb6914027 100644
--- a/source/kmr-Latn/sc/source/ui/src.po
+++ b/source/kmr-Latn/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 01:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2713,7 +2713,7 @@ msgstr "Navber ji #1 hate guhertin bo #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2881,7 +2881,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/kmr-Latn/sfx2/source/view.po b/source/kmr-Latn/sfx2/source/view.po
index b7aa2953b40..8db07669902 100644
--- a/source/kmr-Latn/sfx2/source/view.po
+++ b/source/kmr-Latn/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/kmr-Latn/svtools/source/control.po b/source/kmr-Latn/svtools/source/control.po
index 0708e6e5caf..05c8e92eef3 100644
--- a/source/kmr-Latn/svtools/source/control.po
+++ b/source/kmr-Latn/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "îtalîka reş"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/kmr-Latn/svtools/source/misc.po b/source/kmr-Latn/svtools/source/misc.po
index f8c0de3cec0..ca278127760 100644
--- a/source/kmr-Latn/svtools/source/misc.po
+++ b/source/kmr-Latn/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 17:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3188,9 +3188,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3919,6 +3919,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/kmr-Latn/sw/source/core/undo.po b/source/kmr-Latn/sw/source/core/undo.po
index b099223fc49..0b3d674d315 100644
--- a/source/kmr-Latn/sw/source/core/undo.po
+++ b/source/kmr-Latn/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-12 21:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "dawiya sitûnê"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 Lê zêde Bike"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 jê bibe"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Taybetî hat guhertin"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tablo hat guhertin"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Şêwaz hat guhertin"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/kmr-Latn/sw/source/uibase/docvw.po b/source/kmr-Latn/sw/source/uibase/docvw.po
index 3333127a9a4..f98ec08257a 100644
--- a/source/kmr-Latn/sw/source/uibase/docvw.po
+++ b/source/kmr-Latn/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 03:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/kmr-Latn/sw/source/uibase/ribbar.po b/source/kmr-Latn/sw/source/uibase/ribbar.po
index cb3b0e5c432..b2200014b53 100644
--- a/source/kmr-Latn/sw/source/uibase/ribbar.po
+++ b/source/kmr-Latn/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/kmr-Latn/sw/source/uibase/uiview.po b/source/kmr-Latn/sw/source/uibase/uiview.po
index 06c400f3e7a..b349c87c32c 100644
--- a/source/kmr-Latn/sw/source/uibase/uiview.po
+++ b/source/kmr-Latn/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 03:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/kmr-Latn/xmlsecurity/uiconfig/ui.po b/source/kmr-Latn/xmlsecurity/uiconfig/ui.po
index a8218741335..76ba20d8d69 100644
--- a/source/kmr-Latn/xmlsecurity/uiconfig/ui.po
+++ b/source/kmr-Latn/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 14:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/kn/desktop/source/deployment/gui.po b/source/kn/desktop/source/deployment/gui.po
index ce3dc5c5364..ed22d4c6c95 100644
--- a/source/kn/desktop/source/deployment/gui.po
+++ b/source/kn/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 00:32+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 17:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
"Language: kn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467678735.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449854373.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -174,6 +174,14 @@ msgstr ""
"ಅನುಸ್ಥಾಪನೆಯನ್ನು ನಿಲ್ಲಿಸಲು 'ರದ್ದುಗೊಳಿಸು' ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
@@ -189,6 +197,14 @@ msgstr ""
"ವಿಸ್ತರಣೆಯನ್ನು ತೆಗೆದುಹಾಕುವುದನ್ನು ನಿಲ್ಲಿಸಲು 'ರದ್ದುಗೊಳಿಸು' ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ."
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
index 72222608e73..8eef23468b1 100644
--- a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ಸಿದ್ಧ ಚಿತ್ರ ವಿನ್ಯಾಸಗಳನ್ನು ಆಯ್ಕೆಮಾಡು"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4080,6 +4080,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27008,15 +27125,6 @@ msgid "~Properties..."
msgstr "ಗುಣಗಳು..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/kn/sc/source/ui/src.po b/source/kn/sc/source/ui/src.po
index 1e981927e89..4d169f273f5 100644
--- a/source/kn/sc/source/ui/src.po
+++ b/source/kn/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 01:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -2703,7 +2703,7 @@ msgstr "ಶ್ರೇಣಿಯನ್ನು #1 ರಿಂದ #2 ಕ್ಕೆ ಸ್
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "ಗೂಡು ಮಾಡಲಾದ(ನೆಸ್ಟೆಡ್) ವ್ಯೂ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/kn/sfx2/source/view.po b/source/kn/sfx2/source/view.po
index 4f7233fd46a..297d83ba393 100644
--- a/source/kn/sfx2/source/view.po
+++ b/source/kn/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/kn/svtools/source/control.po b/source/kn/svtools/source/control.po
index 5dcce1b68f3..15902b049b8 100644
--- a/source/kn/svtools/source/control.po
+++ b/source/kn/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: RHEL7_Tier1 <kde-i18n-doc@kde.org>\n"
@@ -291,6 +291,110 @@ msgstr "ಕಪ್ಪು ಇಟಾಲಿಕ್"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/kn/svtools/source/misc.po b/source/kn/svtools/source/misc.po
index 76c8ce8537b..e383e418d2f 100644
--- a/source/kn/svtools/source/misc.po
+++ b/source/kn/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 18:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "ಬೆಕ್ವೆಲ್"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "ಕಿಟುಬಾ"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3908,6 +3908,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/kn/sw/source/core/undo.po b/source/kn/sw/source/core/undo.po
index 25db8e292fc..3a5913ceba0 100644
--- a/source/kn/sw/source/core/undo.po
+++ b/source/kn/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-01-07 21:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -891,42 +891,82 @@ msgstr "ಲಂಬಸಾಲು ತಡೆ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ಅನ್ನು ಸೇರಿಸು"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 ಅನ್ನು ಅಳಿಸು"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ಗುಣವಿಶೇಷಗಳು ಬದಲಾಗಿವೆ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ಕೋಷ್ಟಕವು ಬದಲಾಗಿದೆ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ಶೈಲಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/kn/sw/source/uibase/docvw.po b/source/kn/sw/source/uibase/docvw.po
index 9c91f759d53..6f44b2e723d 100644
--- a/source/kn/sw/source/uibase/docvw.po
+++ b/source/kn/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-08 18:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/kn/sw/source/uibase/ribbar.po b/source/kn/sw/source/uibase/ribbar.po
index b2f11227e15..8697cbd5a6a 100644
--- a/source/kn/sw/source/uibase/ribbar.po
+++ b/source/kn/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 15:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/kn/sw/source/uibase/uiview.po b/source/kn/sw/source/uibase/uiview.po
index 200ed52b69b..2d6aacbad85 100644
--- a/source/kn/sw/source/uibase/uiview.po
+++ b/source/kn/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 03:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/kn/xmlsecurity/uiconfig/ui.po b/source/kn/xmlsecurity/uiconfig/ui.po
index e0291883d4e..fc3cf2d7dba 100644
--- a/source/kn/xmlsecurity/uiconfig/ui.po
+++ b/source/kn/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 14:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -173,6 +173,15 @@ msgstr "ತೆಗೆದುಹಾಕು"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ko/desktop/source/deployment/gui.po b/source/ko/desktop/source/deployment/gui.po
index b2807f7479e..3b6afd95f61 100644
--- a/source/ko/desktop/source/deployment/gui.po
+++ b/source/ko/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 00:49+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-07-03 07:01+0000\n"
+"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467679767.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1435906872.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ko/helpcontent2/source/text/sbasic/shared.po b/source/ko/helpcontent2/source/text/sbasic/shared.po
index 8828775d32b..eb12340a4e6 100644
--- a/source/ko/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ko/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-20 22:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">오류 코드 </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "XmultiServiceFactory를 통해 서비스를 인스턴스화하는 경우 이 런타임 함수는 사용할 기본 구성 요소 콘텍스트를 반환합니다. 자세한 내용은 <link href=\"http://api.openoffice.org\">api.openoffice.org</link>에서 <item type=\"literal\">Developer's Guide</item>의 <item type=\"literal\">Professional UNO</item> 장을 참조하십시오."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ko/helpcontent2/source/text/shared/00.po b/source/ko/helpcontent2/source/text/shared/00.po
index 431a3a53d22..6df3c22741c 100644
--- a/source/ko/helpcontent2/source/text/shared/00.po
+++ b/source/ko/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 06:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ko/helpcontent2/source/text/shared/01.po b/source/ko/helpcontent2/source/text/shared/01.po
index ea1029d8229..15ea649fd5b 100644
--- a/source/ko/helpcontent2/source/text/shared/01.po
+++ b/source/ko/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">원본 문서에서 하위 문서로 분리할 때 사용할 단락 스타일이나 개요 수준을 선택합니다.</ahelp> 기본 값으로 모든 개요 수준 1에 대해서 새 문서가 생성됩니다."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Writer 문서의 책갈피를 PDF 북마크로 내보내려면 선택합니다. 책갈피는 모든 개요 단락(도구 - 개요 번호 매기기)과 원본 문서에서 목차에 지정된 하이퍼링크에 의해 만들어집니다.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/optionen.po b/source/ko/helpcontent2/source/text/shared/optionen.po
index 47d50aa29be..8ec2b10c3a0 100644
--- a/source/ko/helpcontent2/source/text/shared/optionen.po
+++ b/source/ko/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-12-22 13:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ko/helpcontent2/source/text/swriter.po b/source/ko/helpcontent2/source/text/swriter.po
index 2b2c819aeee..8ad46341dda 100644
--- a/source/ko/helpcontent2/source/text/swriter.po
+++ b/source/ko/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-23 06:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"개요 번호 매기기\">개요 번호 매기기</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/swriter/00.po b/source/ko/helpcontent2/source/text/swriter/00.po
index e0c878034bb..a051c7dfd5a 100644
--- a/source/ko/helpcontent2/source/text/swriter/00.po
+++ b/source/ko/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-12-22 22:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>도구 - 개요 번호 매기기</emph></variable> 메뉴"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>도구 - 개요 번호 매기기 - 번호 매기기</emph> 탭을 선택합니다. </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>도구 - 줄 번호 매기기</emph>(HTML 형식은 제외)를 선택합니다.</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/swriter/01.po b/source/ko/helpcontent2/source/text/swriter/01.po
index 91dccd5bb9f..3b8b32e5894 100644
--- a/source/ko/helpcontent2/source/text/swriter/01.po
+++ b/source/ko/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-12-22 22:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">네비게이터 창에서 최상위 수준 제목만 표시하려면 <emph>1</emph>을 클릭하고 제목을 모두 표시하려면 <emph>10</emph>을 클릭합니다.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "장 필드에 대해 \"구분자 없는 장 번호\"를 선택하면 <link href=\"text/swriter/01/06060000.xhp\" name=\"도구 - 개요 번호 매기기\"><emph>도구 - 개요 번호 매기기</emph></link>에 장 번호에 대해 지정된 구분자가 표시되지 않습니다."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">장 번호를 삽입합니다. 제목 스타일에 장 번호 매기기를 지정하려면 <emph>도구 - 개요 번호 매기기</emph>를 선택합니다.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "개요 번호 매기기"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "개요 번호 매기기"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "개요 번호 매기기는 단락 스타일에 연결됩니다. 기본적으로 \"제목\" 단락 스타일(1-10)은 해당 개요 번호 수준(1-10)에 할당됩니다. 필요에 따라 다양한 단락 스타일을 개요 번호 수준에 지정할 수 있습니다."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "제목에 번호 매기기를 적용하려면 <emph>도구 - 개요 번호 매기기</emph> 메뉴 명령을 사용하여 단락 스타일에 번호 매기기를 지정합니다. 서식 도구 모음의 번호 매기기 아이콘은 사용하지 마십시오."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "개요 번호의 화면 표시를 강조 표시하려면 <emph>보기 -</emph><emph>필드 음영</emph>을 선택합니다."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">개요 번호 서식을 저장하거나 로드합니다. 저장된 개요 번호 서식은 모든 텍스트 문서에서 사용할 수 있습니다.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>서식</emph> 버튼은 개요 번호 매기기에만 사용할 수 있습니다. 번호 매기기나 글머리 기호 목록 스타일에서는 단락의 번호 매기기 스타일을 수정합니다."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">선택한 개요 수준의 현재 설정을 저장할 대화 상자를 엽니다. 그리고 이러한 설정을 다른 문서에서 로드할 수 있습니다.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">수정할 개요 수준을 클릭하고 해당 수준의 번호 매기기 옵션을 지정합니다.</ahelp> 단락 스타일을 제외한 모든 수준에 번호 매기기 옵션을 적용하려면 \"1-10\"을 누릅니다."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">선택한 개요 수준에 지정할 단락 스타일을 선택합니다.</ahelp> \"없음\"을 클릭하면 선택한 개요 수준이 정의되지 않습니다."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "새 주소 블록"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "새 주소 블록"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "주소 요소"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "주소 요소를 아래 필드로 끌기"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/swriter/guide.po b/source/ko/helpcontent2/source/text/swriter/guide.po
index e4b3f061ba4..240762360ab 100644
--- a/source/ko/helpcontent2/source/text/swriter/guide.po
+++ b/source/ko/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-12-23 06:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "네비게이터를 사용하여 문서 텍스트에서 제목과 하위 텍스트를 위 아래로 이동할 수 있습니다. 제목 수준을 올리거나 내릴 수도 있습니다. 이 기능을 사용하려면 미리 정의된 제목 단락 스타일 중 하나를 사용하여 문서에서 제목의 서식을 설정합니다. 제목에 사용자 정의 단락 스타일을 사용하려면 <emph>도구 - 개요 번호 매기기</emph>를 선택하고 <emph>단락 스타일</emph> 상자에서 스타일을 선택한 다음 <emph>수준</emph> 목록에서 번호를 더블 클릭합니다."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "개요 번호 매기기"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>아웃라인;번호 매기기</bookmark_value> <bookmark_value>삭제;머리글 번호</bookmark_value> <bookmark_value>장 번호 매기기</bookmark_value> <bookmark_value>머리글; 번호 매기기/단락 스타일</bookmark_value> <bookmark_value>번호 매기기;머리글</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"개요 번호 매기기\">개요 번호 매기기</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "제목 계층 구조를 수정하거나 계층 구조의 수준을 사용자 정의 단락 스타일에 지정할 수 있습니다. 장 번호 매기기와 구역 번호 매기기를 제목 단락 스타일에 추가할 수도 있습니다. 기본적으로 \"제목 1\" 단락 스타일은 개요 계층 구조의 맨 위에 있습니다."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">도구 - 개요 번호 매기기</item>를 선택한 다음 <item type=\"menuitem\">번호 매기기</item> 탭을 클릭합니다."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "제목 단락에서 자동 개요 번호 매기기를 제거하려면"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">도구 - 개요 번호 매기기</item>를 선택한 다음 <item type=\"menuitem\">번호 매기기</item> 탭을 클릭합니다."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "머리글이나 바닥글에 장 정보를 삽입하기 전에 장 제목에 사용할 단락 스타일의 개요 번호 매기기 옵션을 먼저 설정해야 합니다."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>도구 - 개요 번호 매기기</emph>를 선택합니다."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>색인; 항목 정의</bookmark_value> <bookmark_value>목차; 항목 정의</bookmark_value> <bookmark_value>항목; 색인/목차에 정의</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>삽입 - 색인 및 목차 - 색인 및 목차 항목</emph>을 선택하고 다음 중 하나를 실행합니다."
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>도구 - 개요 번호 매기기</emph>를 선택하고 <emph>번호 매기기</emph> 탭을 클릭합니다."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "다른 단락 스타일을 목차 항목으로 사용하려면 <item type=\"menuitem\">내용</item> 영역의 <item type=\"menuitem\">부가적인 유형</item> 확인란을 선택한 후 확인란 옆에 있는 (<item type=\"menuitem\">...</item>) 버튼을 클릭합니다. <item type=\"menuitem\">스타일 지정</item> 대화 상자의 목록에서 스타일을 클릭한 다음 <item type=\"menuitem\">>></item> 또는 <item type=\"menuitem\"><<</item> 버튼을 클릭하여 단락 스타일의 개요 수준을 정의합니다."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>번호 매기기; 제거/중단</bookmark_value> <bookmark_value>글머리 기호 목록; 중단</bookmark_value> <bookmark_value>목록;번호 매기기 제거/중단</bookmark_value> <bookmark_value>삭제;목록의 번호</bookmark_value> <bookmark_value>번호 매기기 목록 중단</bookmark_value> <bookmark_value>변경;목록의 시작 번호</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "제목에 번호 매기기를 적용하려면 <emph>도구 - 개요 번호 매기기</emph> 메뉴 명령을 사용하여 단락 스타일에 번호 매기기를 지정합니다. 서식 도구 모음의 번호 매기기 아이콘은 사용하지 마십시오."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
index eaef2010829..bd45733d218 100644
--- a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-10-14 07:09+0000\n"
"Last-Translator: shga <shga89@naver.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "테마 선택"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4053,6 +4053,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27013,15 +27130,6 @@ msgid "~Properties..."
msgstr "등록 정보(~P)..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ko/sc/source/ui/src.po b/source/ko/sc/source/ui/src.po
index 80f713998b9..6b186b45b0d 100644
--- a/source/ko/sc/source/ui/src.po
+++ b/source/ko/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 01:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "#1 에서 #2로 범위 이동"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "중첩 어레이는 지원되지 않습니다."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ko/sfx2/source/view.po b/source/ko/sfx2/source/view.po
index 6d5f86ffe7a..4f8cef354a3 100644
--- a/source/ko/sfx2/source/view.po
+++ b/source/ko/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -250,6 +250,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ko/svtools/source/control.po b/source/ko/svtools/source/control.po
index 7d3ecf42a69..0ffc98a4b11 100644
--- a/source/ko/svtools/source/control.po
+++ b/source/ko/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-03 07:19+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "검게, 이탤릭체"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ko/svtools/source/misc.po b/source/ko/svtools/source/misc.po
index 02c7614be31..cf590122711 100644
--- a/source/ko/svtools/source/misc.po
+++ b/source/ko/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 19:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3924,6 +3924,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ko/sw/source/core/undo.po b/source/ko/sw/source/core/undo.po
index bfe4744cb3e..fe75ef0b1a7 100644
--- a/source/ko/sw/source/core/undo.po
+++ b/source/ko/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-10-29 07:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "열 나누기"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 삽입"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 삭제"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "변경된 속성"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "표 변경"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "변경된 스타일"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ko/sw/source/uibase/docvw.po b/source/ko/sw/source/uibase/docvw.po
index fc4de4cebca..fc168da97fe 100644
--- a/source/ko/sw/source/uibase/docvw.po
+++ b/source/ko/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-10-29 08:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "적용된 단락 스타일"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ko/sw/source/uibase/ribbar.po b/source/ko/sw/source/uibase/ribbar.po
index e32402884bd..bf033895f85 100644
--- a/source/ko/sw/source/uibase/ribbar.po
+++ b/source/ko/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 14:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "텍스트 관련 수식"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ko/sw/source/uibase/uiview.po b/source/ko/sw/source/uibase/uiview.po
index d6577b8cd6b..4707f404b16 100644
--- a/source/ko/sw/source/uibase/uiview.po
+++ b/source/ko/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "원본 내보내기(~E)..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ko/xmlsecurity/uiconfig/ui.po b/source/ko/xmlsecurity/uiconfig/ui.po
index 651157a3ef0..bf003e0996d 100644
--- a/source/ko/xmlsecurity/uiconfig/ui.po
+++ b/source/ko/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 14:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "제거하기"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/kok/desktop/source/deployment/gui.po b/source/kok/desktop/source/deployment/gui.po
index 746f64edd8a..854f4988214 100644
--- a/source/kok/desktop/source/deployment/gui.po
+++ b/source/kok/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 00:55+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 00:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467680104.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462148524.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -177,6 +177,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -188,6 +196,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
index 6bff5223ab2..1a03a39d172 100644
--- a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-07 03:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "संकल्पना निवडात"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4100,6 +4100,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27075,15 +27192,6 @@ msgid "~Properties..."
msgstr "वैशिश्ट्यां..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/kok/sc/source/ui/src.po b/source/kok/sc/source/ui/src.po
index e747cebe09e..50cc31f49be 100644
--- a/source/kok/sc/source/ui/src.po
+++ b/source/kok/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-07 10:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr " #1 to #2 सावन् व्याप्ती हालयली"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2884,7 +2884,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/kok/sfx2/source/view.po b/source/kok/sfx2/source/view.po
index b3dbb20b007..b7ed79ca263 100644
--- a/source/kok/sfx2/source/view.po
+++ b/source/kok/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-08 06:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/kok/svtools/source/control.po b/source/kok/svtools/source/control.po
index ddb27f68d52..4b406f41be2 100644
--- a/source/kok/svtools/source/control.po
+++ b/source/kok/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "काळो तिरपो"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/kok/svtools/source/misc.po b/source/kok/svtools/source/misc.po
index bb22fd3e630..bf50436fedc 100644
--- a/source/kok/svtools/source/misc.po
+++ b/source/kok/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-08 11:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3195,10 +3195,10 @@ msgstr "बॅकवेल"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "कितूबा"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3927,6 +3927,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/kok/sw/source/core/undo.po b/source/kok/sw/source/core/undo.po
index 97275ca1a05..92a00eb0a13 100644
--- a/source/kok/sw/source/core/undo.po
+++ b/source/kok/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-08 22:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "स्तंभ खण्ड"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "भितर घालात $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "काडून उडयात $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "बदलिल्लो गुणधर्म"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "कोष्टक बदल्लें"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "शैली बदल्ली"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/kok/sw/source/uibase/docvw.po b/source/kok/sw/source/uibase/docvw.po
index 11d783544c5..01c11c7c7dc 100644
--- a/source/kok/sw/source/uibase/docvw.po
+++ b/source/kok/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 04:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/kok/sw/source/uibase/ribbar.po b/source/kok/sw/source/uibase/ribbar.po
index b98024bd492..d6070e4b503 100644
--- a/source/kok/sw/source/uibase/ribbar.po
+++ b/source/kok/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-08 23:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/kok/sw/source/uibase/uiview.po b/source/kok/sw/source/uibase/uiview.po
index e1738285609..88d3e47c4ed 100644
--- a/source/kok/sw/source/uibase/uiview.po
+++ b/source/kok/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 04:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/kok/xmlsecurity/uiconfig/ui.po b/source/kok/xmlsecurity/uiconfig/ui.po
index bc1e3ef4d6d..c8f59ab00f6 100644
--- a/source/kok/xmlsecurity/uiconfig/ui.po
+++ b/source/kok/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 09:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ks/desktop/source/deployment/gui.po b/source/ks/desktop/source/deployment/gui.po
index 48af202c144..e801d108fc7 100644
--- a/source/ks/desktop/source/deployment/gui.po
+++ b/source/ks/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-05-12 22:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
index d20bc33031a..218c8f7fd4f 100644
--- a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "موضوع منتخب کرو"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4113,6 +4113,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27084,15 +27201,6 @@ msgid "~Properties..."
msgstr "خصوصیات"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ks/sc/source/ui/src.po b/source/ks/sc/source/ui/src.po
index 14e092f110f..d22f4911549 100644
--- a/source/ks/sc/source/ui/src.po
+++ b/source/ks/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 01:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "حد ہٹٲو مُت #1 to #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2883,7 +2883,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ks/sfx2/source/view.po b/source/ks/sfx2/source/view.po
index f945854b8ce..19d590c002f 100644
--- a/source/ks/sfx2/source/view.po
+++ b/source/ks/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ks/svtools/source/control.po b/source/ks/svtools/source/control.po
index 5e225d9db85..35a82495e60 100644
--- a/source/ks/svtools/source/control.po
+++ b/source/ks/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "سیاہ ترچھا "
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ks/svtools/source/misc.po b/source/ks/svtools/source/misc.po
index 8d61ea08ac9..50360f1c971 100644
--- a/source/ks/svtools/source/misc.po
+++ b/source/ks/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 18:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3193,9 +3193,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3918,6 +3918,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ks/sw/source/core/undo.po b/source/ks/sw/source/core/undo.po
index 5f3b9df8972..37ac04b7815 100644
--- a/source/ks/sw/source/core/undo.po
+++ b/source/ks/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-12 22:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "کالم بریک"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "داخل کرو$1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "خارج کرو$1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ایٹری بیوٹس تبدیل ہوئیں"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "جدول تبدیل ہوا"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "اسٹائل تبدیل ہوا"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ks/sw/source/uibase/docvw.po b/source/ks/sw/source/uibase/docvw.po
index 41cf6821f84..7c60b3d3c08 100644
--- a/source/ks/sw/source/uibase/docvw.po
+++ b/source/ks/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 04:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ks/sw/source/uibase/ribbar.po b/source/ks/sw/source/uibase/ribbar.po
index 59b43171aba..7351d4aec5f 100644
--- a/source/ks/sw/source/uibase/ribbar.po
+++ b/source/ks/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ks/sw/source/uibase/uiview.po b/source/ks/sw/source/uibase/uiview.po
index d5bba3f4324..5a9e4c11fff 100644
--- a/source/ks/sw/source/uibase/uiview.po
+++ b/source/ks/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 04:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ks/xmlsecurity/uiconfig/ui.po b/source/ks/xmlsecurity/uiconfig/ui.po
index 82f1c8a53de..dc55c7fc2e4 100644
--- a/source/ks/xmlsecurity/uiconfig/ui.po
+++ b/source/ks/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 14:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/lo/desktop/source/deployment/gui.po b/source/lo/desktop/source/deployment/gui.po
index fa0ced7acfc..9f01af5b015 100644
--- a/source/lo/desktop/source/deployment/gui.po
+++ b/source/lo/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 01:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 00:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467681649.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462149070.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgid ""
msgstr ""
#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
diff --git a/source/lo/helpcontent2/source/text/sbasic/shared.po b/source/lo/helpcontent2/source/text/sbasic/shared.po
index 39b39fd3eb3..b2f2e9413e9 100644
--- a/source/lo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/lo/helpcontent2/source/text/shared/00.po b/source/lo/helpcontent2/source/text/shared/00.po
index 63d67e754ff..73851d29333 100644
--- a/source/lo/helpcontent2/source/text/shared/00.po
+++ b/source/lo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/lo/helpcontent2/source/text/shared/01.po b/source/lo/helpcontent2/source/text/shared/01.po
index f208c7ee375..200c1a02883 100644
--- a/source/lo/helpcontent2/source/text/shared/01.po
+++ b/source/lo/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-25 08:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/lo/helpcontent2/source/text/shared/optionen.po b/source/lo/helpcontent2/source/text/shared/optionen.po
index 9c29d47eda9..3a098e9b3db 100644
--- a/source/lo/helpcontent2/source/text/shared/optionen.po
+++ b/source/lo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/lo/helpcontent2/source/text/swriter.po b/source/lo/helpcontent2/source/text/swriter.po
index 8b920a8b11f..63b643e0e3a 100644
--- a/source/lo/helpcontent2/source/text/swriter.po
+++ b/source/lo/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,7 +1053,7 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
msgstr ""
#: main0106.xhp
diff --git a/source/lo/helpcontent2/source/text/swriter/00.po b/source/lo/helpcontent2/source/text/swriter/00.po
index 584bac4e30d..2da0f75d1c9 100644
--- a/source/lo/helpcontent2/source/text/swriter/00.po
+++ b/source/lo/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/lo/helpcontent2/source/text/swriter/01.po b/source/lo/helpcontent2/source/text/swriter/01.po
index ec0f84db9f6..5ac4111aa16 100644
--- a/source/lo/helpcontent2/source/text/swriter/01.po
+++ b/source/lo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,7 +21341,7 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21349,7 +21349,7 @@ msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/lo/helpcontent2/source/text/swriter/guide.po b/source/lo/helpcontent2/source/text/swriter/guide.po
index 4be8671b997..5a1e2c030b7 100644
--- a/source/lo/helpcontent2/source/text/swriter/guide.po
+++ b/source/lo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: chapter_numbering.xhp
@@ -2909,7 +2909,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
index 7caa2d687b8..42c36b9d249 100644
--- a/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lo/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 02:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ເລືອກຫົວຂໍ້"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4110,6 +4110,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27089,15 +27206,6 @@ msgid "~Properties..."
msgstr "ຄຸນສົມບັດ..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/lo/sc/source/ui/src.po b/source/lo/sc/source/ui/src.po
index 780cbcc6667..46f78ab1691 100644
--- a/source/lo/sc/source/ui/src.po
+++ b/source/lo/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 02:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2695,7 +2695,7 @@ msgstr "ຂອບເຂດຍ້າຍຈາກ #1 ຫາ #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2864,7 +2864,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/lo/sfx2/source/view.po b/source/lo/sfx2/source/view.po
index 1e1ed2eb6a9..879cebab344 100644
--- a/source/lo/sfx2/source/view.po
+++ b/source/lo/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/lo/svtools/source/control.po b/source/lo/svtools/source/control.po
index 4cca4262567..f960d0ae294 100644
--- a/source/lo/svtools/source/control.po
+++ b/source/lo/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -294,6 +294,110 @@ msgstr ""
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/lo/svtools/source/misc.po b/source/lo/svtools/source/misc.po
index 592ea0cf2f0..e17e1805b13 100644
--- a/source/lo/svtools/source/misc.po
+++ b/source/lo/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 19:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3200,9 +3200,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3925,6 +3925,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/lo/sw/source/core/undo.po b/source/lo/sw/source/core/undo.po
index 705f9068e06..d74ee9de5b9 100644
--- a/source/lo/sw/source/core/undo.po
+++ b/source/lo/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-12 22:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "ຍະແຖວ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "ແຊກໃສ່ $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "ລືບ $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ຄຸນສົມບັດປ່ຽນ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ຕາຕະລາງປ່ຽນ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ແບບປ່ຽນ"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/lo/sw/source/uibase/docvw.po b/source/lo/sw/source/uibase/docvw.po
index 8c42d1a2918..ffe595d84f5 100644
--- a/source/lo/sw/source/uibase/docvw.po
+++ b/source/lo/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 05:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/lo/sw/source/uibase/ribbar.po b/source/lo/sw/source/uibase/ribbar.po
index e5b0b76d078..94165e0a553 100644
--- a/source/lo/sw/source/uibase/ribbar.po
+++ b/source/lo/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/lo/sw/source/uibase/uiview.po b/source/lo/sw/source/uibase/uiview.po
index bc2a5c5cecc..5b417f53b97 100644
--- a/source/lo/sw/source/uibase/uiview.po
+++ b/source/lo/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 05:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/lo/xmlsecurity/uiconfig/ui.po b/source/lo/xmlsecurity/uiconfig/ui.po
index 03945cd251f..146de0d7a2d 100644
--- a/source/lo/xmlsecurity/uiconfig/ui.po
+++ b/source/lo/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 15:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/lt/desktop/source/deployment/gui.po b/source/lt/desktop/source/deployment/gui.po
index 1004f0ce6a6..e1fb24b916a 100644
--- a/source/lt/desktop/source/deployment/gui.po
+++ b/source/lt/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 01:28+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2014-12-01 08:06+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"Language: lt\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467682118.000000\n"
+"X-POOTLE-MTIME: 1417421168.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -176,6 +176,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -190,6 +198,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/lt/helpcontent2/source/text/sbasic/shared.po b/source/lt/helpcontent2/source/text/sbasic/shared.po
index 0d3e80c7e53..33ae05a975a 100644
--- a/source/lt/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lt/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 07:58+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/lt/helpcontent2/source/text/shared/00.po b/source/lt/helpcontent2/source/text/shared/00.po
index 2ccc4d345c5..a1b9c4c19dd 100644
--- a/source/lt/helpcontent2/source/text/shared/00.po
+++ b/source/lt/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-28 21:54+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-13 19:46+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496008466.000000\n"
+"X-POOTLE-MTIME: 1497383170.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Glossary of Internet Terms"
-msgstr ""
+msgstr "Interneto terminų žodynėlis"
#: 00000002.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"bm_id3150702\n"
"help.text"
msgid "<bookmark_value>Internet glossary</bookmark_value> <bookmark_value>common terms;Internet glossary</bookmark_value> <bookmark_value>glossaries;Internet terms</bookmark_value> <bookmark_value>terminology;Internet glossary</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>interneto žodynėlis</bookmark_value> <bookmark_value>bendrieji terminai;interneto žodynėlis</bookmark_value> <bookmark_value>žodynėliai;interneto terminai</bookmark_value> <bookmark_value>terminologija;interneto žodynėlis</bookmark_value>"
#: 00000002.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"hd_id3150702\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Interneto terminų žodynėlis\">Interneto terminų žodynėlis</link>"
#: 00000002.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3155577\n"
"help.text"
msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
-msgstr ""
+msgstr "Jei esate pradedantysis, susidursite su daugybe nežinomų terminų: naršykle, adresynu, elektroniniu paštu, svetaine, paieškos varikliu ir daugeliu kitų. Čia rasite šių bei kitų sąvokų, susijusių su internetu, intranetu, elektroniniu paštu, paaiškinimus."
#: 00000002.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id18082016234439503\n"
"help.text"
msgid "CMIS"
-msgstr ""
+msgstr "CMIS"
#: 00000002.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3154638\n"
"help.text"
msgid "<variable id=\"andock1\">Some windows in $[officename], for example the Styles and Formatting window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock1\">„$[officename]“ programoje kai kuriuos langus, pavyzdžiui, stilių ir formatavimo arba žvalgiklio, galima įtvirtinti. Tokius langus galima perkelti, keisti jų dydį arba įtvirtinti prie programos lango krašto. Prie kiekvieno krašto galima įtvirtinti keletą langų vieną virš kito arba vieną šalia kito. Tada tempiant už rėmelių galima keisti santykinį įtvirtintų langų dydį.</variable>"
#: 00000005.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3147233\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock2\">Jei norite atlaisvinti arba vėl įtvirtinti langą, laikykite nuspaustą klavišą „<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>“ ir dukart spustelėkite tuščioje lango srityje. Stilių ir formatavimo lange galima dukart spustelėti pilką sritį šalia mygtukų viršuje, kol laikomas nuspaustas klavišas „<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>“.</variable>"
#: 00000005.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"hd_id3155306\n"
"help.text"
msgid "Docking (AutoHide)"
-msgstr ""
+msgstr "Įtvirtinimas (automatinis slėpimas)"
#: 00000005.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "On any window edge where another window is docked you will see a button which allows you to show or hide the window."
-msgstr ""
+msgstr "Ant programos lango rėmelio, toje vietoje, kur yra įtvirtintas kitas langas, yra mygtukas, kuriuo galima parodyti arba paslėpti įtvirtintą langą."
#: 00000005.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id3143274\n"
"help.text"
msgid "If you click the button on the window edge to show the window, the window will remain visible until you manually hide it again (with the same button)."
-msgstr ""
+msgstr "Jei spustelėsite mygtuką ant programos lango krašto, kad parodytumėte įtvirtintą langą, šis liks matomas tol, kol vėl jo nepaslėpsite spustelėdami tą patį mygtuką."
#: 00000005.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "If you show the window by clicking the window border, but not the button, you activate the <emph>AutoHide</emph> function. The AutoHide function allows you to temporarily show a hidden window by clicking on its edge. When you click in the document, the docked window hides again."
-msgstr ""
+msgstr "Jei įtvirtintą langą parodysite spustelėdami programos lango rėmelį, bet ne mygtuką, aktyvinsite <emph>automatinio slėpimo</emph> funkciją. Naudojantis šia funkcija galima laikinai parodyti įtvirtintą langą spustelėjus jo rėmelį. Spustelėjus dokumente įtvirtintas langas vėl paslepiamas."
#: 00000005.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"bm_id3163710\n"
"help.text"
msgid "<bookmark_value>formatting; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formatavimas; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"hd_id3163710\n"
"help.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formatavimas"
#: 00000005.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id3163821\n"
"help.text"
msgid "Formatting refers to the visual layout of text using a word-processing or DTP program. This includes defining the paper format, page borders, fonts and font effects, as well as indents and spacing. You can format text <link href=\"text/shared/00/00000005.xhp#Section7\">directly or with Styles</link> provided by $[officename]."
-msgstr ""
+msgstr "Teksto formatavimas – tai vaizdus teksto išdėstymas, naudojantis tekstų rengyklėmis arba kompiuterinėmis leidybinėmis programomis. Formatuojant tekstą paprastai parenkamas puslapio dydis, apipavidalinamos lentelės, parenkami teksto šriftai, tekstas vaizdžiai išdėstomas puslapyje, nustatomos eilučių įtraukos, intervalai ir t. t. Tekstą formatuoti galima <link href=\"text/shared/00/00000005.xhp#Section7\">tiesiogiai arba naudojant stilius</link>, pateikiamus „$[officename]“ programoje."
#: 00000005.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"bm_id3151172\n"
"help.text"
msgid "<bookmark_value>JDBC; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>JDBC; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"hd_id3151172\n"
"help.text"
msgid "JDBC"
-msgstr ""
+msgstr "JDBC"
#: 00000005.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"par_id3148386\n"
"help.text"
msgid "You can use the Java Database Connectivity (JDBC) API to connect to a database from %PRODUCTNAME. JDBC drivers are written in the Java programming language and are platform independent."
-msgstr ""
+msgstr "JDBC (angl. Java DataBase Connectivity – Java programų junglumas su duomenų bazėmis) naudojamas prieigai prie duomenų bazių iš „%PRODUCTNAME“ programos. JDBC tvarkyklės yra parašytos „Java“ kalba ir yra nepriklausomos nuo operacinės sistemos."
#: 00000005.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"bm_id3151282\n"
"help.text"
msgid "<bookmark_value>kerning; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sanglauda; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"hd_id3151282\n"
"help.text"
msgid "Kerning"
-msgstr ""
+msgstr "Sanglauda"
#: 00000005.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"par_id3146321\n"
"help.text"
msgid "Kerning means increasing or decreasing the amount of space between pairs of letters to improve the overall appearance of the text."
-msgstr ""
+msgstr "Tarpo sumažinimas tarp gretimų raidžių priklausomai nuo tų raidžių formos. Pavyzdžiui, suglaudinant galima gerokai sumažinti tarpą tarp raidžių A ir V, kadangi raidė A plati apačioje, o V – viršuje."
#: 00000005.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id3146078\n"
"help.text"
msgid "The kerning tables contain information on which pairs of letters require more spacing. These tables are generally a component of a font."
-msgstr ""
+msgstr "Sanglaudos lentelėse yra informacija apie simbolių poras, kurioms tarpas turi būti sumažintas ar padidintas. Šios lentelės dažniausiai yra šrifto komponentai."
#: 00000005.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"bm_id3150592\n"
"help.text"
msgid "<bookmark_value>links; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>saitas; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"hd_id3150592\n"
"help.text"
msgid "Link"
-msgstr ""
+msgstr "Saitas"
#: 00000005.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_id3150092\n"
"help.text"
msgid "The <emph>Links</emph> command is found in the <emph>Edit</emph> menu. The command can only be activated when at least one link is contained in the current document. When you insert a picture, for example, you can either insert the picture directly into the document or insert the picture as a link."
-msgstr ""
+msgstr "<emph>Taisos</emph> meniu rasite komandą <emph>Saitai</emph>. Ji veiksni tik tada, kai veikiamajame dokumente yra bent vienas saitas. Kai įterpiate objektą, pavyzdžiui, paveikslėlį, jį galite įdėti tiesiai į dokumentą arba įterpti kaip saitą."
#: 00000005.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_id3145730\n"
"help.text"
msgid "When an object is inserted directly into a document, the document size increases by (at least) the size in bytes of the object. You can save the document and open it on another computer, and the inserted object will still be in the same position in the document."
-msgstr ""
+msgstr "Kai objektas tiesiogiai įdedamas į dokumentą, dokumento dydis baitais padidėja maždaug objekto dydžiu. Galima įrašyti dokumentą ir atverti jį kitame kompiuteryje, bet įterptas objektas bus toje pačioje dokumento vietoje."
#: 00000005.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3144765\n"
"help.text"
msgid "If you insert the object as a link, only a reference to the file name is inserted. The file size of the document increases only by the path and file reference. If you open your document on another computer, however, the linked file must be in exactly the same position as given by the reference in order to view the object in the document."
-msgstr ""
+msgstr "Jei įterpsite objektą kaip saitą, įrašyta bus tik nuoroda į objekto failą. Dokumento dydis baitais padidės tik tiek, kiek atminties reikia adresui įrašyti. Atvėrus dokumentą kitame kompiuteryje ir norint pamatyti objektą dokumente būtina, kad susietas failas būtų toje pačioje vietoje, kuri nurodyta saitu."
#: 00000005.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_id3153334\n"
"help.text"
msgid "Use <emph>Edit - Links</emph> to see which files are inserted as links. The links can be removed if required. This will break the link and insert the object directly."
-msgstr ""
+msgstr "Lange <emph>Taisa → Saitai</emph> galima peržiūrėti, kurie failai įterpti kaip saitai. Jei reikia, saitus galima pašalinti. Tokiu atveju objektas bus įdėtas į dokumentą tiesiogiai."
#: 00000005.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"hd_id3154512\n"
"help.text"
msgid "Number System"
-msgstr ""
+msgstr "Skaičiavimo sistema"
#: 00000005.xhp
msgctxt ""
@@ -2070,7 +2070,7 @@ msgctxt ""
"par_id3157846\n"
"help.text"
msgid "A number system is determined by the number of characters available for representing numbers. The decimal system, for instance is based on the ten numbers (0..9), the binary system is based on the two numbers 0 and 1, the hexadecimal system is based on 16 characters (0...9 and A...F)."
-msgstr ""
+msgstr "Skaičių užrašymo būdas naudojant nustatytą ženklų (skaitmenų) skaičių. Pavyzdžiui, dešimtainė sistema sudaryta iš dešimties skaitmenų (0…9), dvejetainė – iš dviejų skaitmenų (0 ir 1), šešioliktainė – iš šešiolikos (0…9 ir A…F)."
#: 00000005.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"bm_id3156358\n"
"help.text"
msgid "<bookmark_value>objects; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>objektas; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"hd_id3156358\n"
"help.text"
msgid "Object"
-msgstr ""
+msgstr "Objektas"
#: 00000005.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"par_id3144748\n"
"help.text"
msgid "An object is a screen element containing data. It can refer to application data, such as text or graphics."
-msgstr ""
+msgstr "Ekrano komponentas, turintis duomenų. Tai įvairių programų duomenys, pavyzdžiui, tekstas, paveikslai."
#: 00000005.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id3153839\n"
"help.text"
msgid "Objects are independent and do not influence each other. Any object containing data can be assigned certain commands. For example, a graphic object has commands for image editing and a spreadsheet contains calculation commands."
-msgstr ""
+msgstr "Objektai yra nepriklausomi ir vienas kito neįtakoja. Bet kuriam duomenis turinčiam objektui gali būti priskirtos tam tikros komandos. Pavyzdžiui, grafikos objektas gali turėti komandas paveikslui taisyti, skaičiuoklės objektas – skaičiavimo komandas."
#: 00000005.xhp
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"bm_id3152827\n"
"help.text"
msgid "<bookmark_value>ODBC; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ODBC; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"hd_id3152827\n"
"help.text"
msgid "ODBC"
-msgstr ""
+msgstr "ODBC"
#: 00000005.xhp
msgctxt ""
@@ -2126,7 +2126,7 @@ msgctxt ""
"par_id3153530\n"
"help.text"
msgid "Open Database Connectivity (ODBC) is a protocol norm with which applications can access database systems. The query language used is Structured Query Language (SQL). In $[officename], you can determine for each database whether to use SQL commands to run queries. Alternatively, you can use the interactive help to define your query by mouseclick and have it automatically translated into SQL by $[officename]."
-msgstr ""
+msgstr "ODBC (angl. Open DataBase Connectivity – atvirosios duomenų bazių ryšio priemonės) yra protokolas, pagal kurį programos gali kreiptis į duomenų bazes. Jame naudojama SQL (angl. Structured Query Language) užklausų kalba. „$[officename]“ kiekvienai duomenų bazei galima pasirinkti, ar užklausoms naudoti SQL komandas. Nepasirinkus SQL teks naudotis interaktyvia pagalba ir užklausą formuoti patiems pele. Tada užklausą į SQL pavers pati programa „$[officename]“."
#: 00000005.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3153956\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The 32bit ODBC functions required here can be installed on your system at any time with the help of the setup program supplied with your database. You can then amend the properties through the Control Panel. </caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Darbui reikalingas 32 bitų ODBC funkcijas galima įdiegti į sistemą pasinaudojant kartu su duomenų baze pateikta diegimo programa. Po to jų savybes galima keisti iš valdymo skydelio.</caseinline></switchinline>"
#: 00000005.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"bm_id3154479\n"
"help.text"
msgid "<bookmark_value>OLE; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>OLE; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"hd_id3154479\n"
"help.text"
msgid "OLE"
-msgstr ""
+msgstr "OLE"
#: 00000005.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_id3157840\n"
"help.text"
msgid "Object Linking and Embedding (OLE) objects can be linked to a target document or may also be embedded. Embedding inserts a copy of the object and details of the source program in the target document. If you want to edit the object, simply activate the source program by double-clicking on the object."
-msgstr ""
+msgstr "OLE (angl. Object Linking and Embedding – objektų sietis ir įvestis) objektai gali būti susieti su dokumentu arba gali būti įdėti į dokumentą. Įdėjimas į dokumentą įterpia objekto kopiją ir informaciją apie programą, kuria objektas parengtas. Jei reikės taisyti šitaip įdėtą objektą, reikiama programa bus paleista dukart spustelėjus objektą."
#: 00000005.xhp
msgctxt ""
@@ -2166,7 +2166,7 @@ msgctxt ""
"bm_id3154507\n"
"help.text"
msgid "<bookmark_value>OpenGL; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>OpenGL; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"hd_id3154507\n"
"help.text"
msgid "OpenGL"
-msgstr ""
+msgstr "OpenGL"
#: 00000005.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"par_id3146879\n"
"help.text"
msgid "OpenGL represents a 3D graphics language, initially developed by SGI (Silicon Graphics Inc). Two dialects of this language are commonly used: Microsoft OpenGL, developed for use under Windows NT, and Cosmo OpenGL made by SGI. The latter represents an independent graphics language for all platforms and all kind of computers, even usable on machines without special 3-D graphics hardware."
-msgstr ""
+msgstr "OpenGL – tai trimatė grafinė kalba, kurią sukūrė SGI (Silicon Graphics Inc). Dažniausiai naudojamos dvi šios kalbos atmainos: „Microsoft OpenGL“, sukurta „Windows NT“ aplinkai, ir pačios SGI sukurta „Cosmo OpenGL“. Pastaroji yra nuo operacinės sistemos nepriklausoma grafinė kalba, skirta vairiems kompiuteriams ir gali būti naudojama be specialios trimatės grafikos aparatinės įrangos."
#: 00000005.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"hd_id3155764\n"
"help.text"
msgid "PNG"
-msgstr ""
+msgstr "PNG"
#: 00000005.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3148993\n"
"help.text"
msgid "Portable Network Graphics (PNG) is a graphic file format. The files are compressed with a selectable compression factor, and, as opposed to the JPG format, PNG files are always compressed without any information loss."
-msgstr ""
+msgstr "PNG (angl. Portable Network Graphics – mobilioji tinklų grafika) – tai grafikos failų tipas, skirtas internetui. Failai glaudinami pasirinktu glaudinimo laipsniu. Priešingai nei JPG formato atveju, informacija glaudinant neprarandama."
#: 00000005.xhp
msgctxt ""
@@ -2206,7 +2206,7 @@ msgctxt ""
"hd_id3083286\n"
"help.text"
msgid "Primary key"
-msgstr ""
+msgstr "Pirminis raktas"
#: 00000005.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"par_id3150323\n"
"help.text"
msgid "A primary key serves as a unique identifier of database fields. The unique identification of database fields is used in <link href=\"text/shared/00/00000005.xhp#relational\">relational databases</link>, to access data in other tables. If reference is made to a primary key from another table, this is termed a foreign key."
-msgstr ""
+msgstr "Pirminis raktas yra unikalus duomenų lauko identifikatorius. Naudojamas <link href=\"text/shared/00/00000005.xhp#relational\">reliacinėse duomenų bazėse</link>, kad galima būtų pasiekti kitose lentelėse esančius duomenis. Jei raktas nurodomas iš kitos lentelės, tai jis vadinamas išoriniu raktu."
#: 00000005.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"par_id3148916\n"
"help.text"
msgid "In $[officename], you define the primary key in the design view of a table, by choosing the relevant command from the context menu of a row header for the selected field."
-msgstr ""
+msgstr "Programų pakete „$[officename]“ pirminį raktą galima apibrėžti lentelės projektavimo veiksenoje pasirinkus atitinkamas stulpelio antraštės kontekstinio meniu komandas."
#: 00000005.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"hd_id3147359\n"
"help.text"
msgid "Relational Database"
-msgstr ""
+msgstr "Sąryšinė duomenų bazė"
#: 00000005.xhp
msgctxt ""
@@ -2238,7 +2238,7 @@ msgctxt ""
"par_id3147585\n"
"help.text"
msgid "A relational database is a collection of data items organized as a set of formally described tables from which data can be accessed or reassembled in many different ways without having to reorganize the database tables."
-msgstr ""
+msgstr "Sąryšinė duomenų bazė – tai duomenų rinkiniai, kurių priklausomybes apibrėžia lentelėmis nusakyti sąryšiai tarp duomenų. Lentelėse esančius duomenis pasiekti ar sujungti galima įvairiais būdais, nekeičiant duomenų bazės lentelių."
#: 00000005.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "A relational database management system (RDBMS) is a program that lets you create, update, and administer a relational database. An RDBMS takes Structured Query Language (SQL) statements entered by a user or contained in an application program and creates, updates, or provides access to the database."
-msgstr ""
+msgstr "RDBMS (angl. Relational Database Management System – sąryšinės duomenų bazės tvarkymo sistema) – tai programa, kuria galima kurti, naujinti ir administruoti sąryšinę duomenų bazę. RDBMS perduoda SQL kalba užrašytas komandas į duomenų bazę."
#: 00000005.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id3147535\n"
"help.text"
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
-msgstr ""
+msgstr "Būdingas reliacinės duomenų bazės pavyzdys – prekybos duomenų bazė su pirkėjų, pardavimų bei sąskaitų lentelėmis. Sąskaitų lentelėje nesaugoma informacija apie pirkėjus ar pardavimus, saugomos tik nuorodos (pavyzdžiui, pirkėjo identifikatoriaus laukas iš pirkėjų lentelės)."
#: 00000005.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"bm_id3147315\n"
"help.text"
msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>bazinių linijų lygiavimas; apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"hd_id3147315\n"
"help.text"
msgid "Register-true"
-msgstr ""
+msgstr "Bazinių linijų lygiavimas"
#: 00000005.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"par_id3154223\n"
"help.text"
msgid "Register-true is a typography term that is used in printing. This term refers to the congruent imprint of the lines within a type area on the front and the back side of book pages, newspaper pages and magazine pages. The register-true feature make these pages easier to read by preventing gray shadows from shining through between the lines of text. The register-true term also refers to lines in adjacent text columns that are of the same height."
-msgstr ""
+msgstr "Bazinė linija, dar vadinama pagrindo linija, – tai linija, einanti rašmenų apačia. Žemiau jos išlenda tik kai kurių raidžių „uodegos“ (nosinės, raidžių „g“, „y“, „j“ dalys). Pagal bazinę liniją gali būti lygiuojami gretimų skilčių tekstai. Tada gretimų skilčių eilutės būna parašytos vienodame aukštyje. Šitaip sulygiuotas tekstas gražiau atrodo ir lengviau jį skaityti."
#: 00000005.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "When you define a paragraph, Paragraph Style, or a Page Style as register-true, the base lines of the affected characters are aligned to a vertical page grid, regardless of font size or of the presence of graphics. If you want, you can specify the setting for this grid as a Page Style property."
-msgstr ""
+msgstr "Jeigu pastraipai arba puslapiui taikomas bazinių linijų lygiavimas, bazinės linijos bus sulygiuotos pagal vertikalų puslapio tinklelį, nepriklausomai nuo teksto dydžio ar įterptų paveikslų. Tinklelio nuostatas galima nurodyti puslapio stiliaus apraše."
#: 00000005.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"hd_id3156710\n"
"help.text"
msgid "RTF"
-msgstr ""
+msgstr "RTF"
#: 00000005.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id3151186\n"
"help.text"
msgid "Rich Text Format (RTF) is a file format developed for the exchange of text files. A special feature is that the formatting is converted into directly readable text information. Unfortunately, in comparison to other file formats, this creates relatively large files."
-msgstr ""
+msgstr "RTF (angl. Rich Text Format – raiškiojo teksto formatas) – tai failų formatas, naudojamas keistis teksto failais. Ypatinga formato savybė – formatavimo informacija saugoma skaitomu teksto formatu. Deja, palyginus su kitais failų formatais, šis formatas sukuria sąlyginai didelius failus."
#: 00000005.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"hd_id3156372\n"
"help.text"
msgid "Saving Relatively and Absolutely"
-msgstr ""
+msgstr "Santykinių ir absoliučiųjų nuorodų įrašymas"
#: 00000005.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "In various dialogs (for example, <emph>Tools - AutoText</emph>) you can select whether you want to save files relatively or absolutely."
-msgstr ""
+msgstr "Tam tikruose dialogo languose, pavyzdžiui, <emph>Priemonės → Autotekstas</emph>, galima pasirinkti, ar failus įrašyti su santykinėmis nuorodomis, ar su absoliučiomis."
#: 00000005.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3152946\n"
"help.text"
msgid "If you choose to save relatively, the references to embedded graphics or other objects in your document will be saved relative to the location in the file system. In this case, it does not matter where the referenced directory structure is recorded. The files will be found regardless of location, as long as the reference remains on the same drive or volume. This is important if you want to make the document available to other computers that may have a completely different directory structure, drive or volume names. It is also recommended to save relatively if you want to create a directory structure on an Internet server."
-msgstr ""
+msgstr "Pasirinkus santykinių nuorodų įrašymą, nuorodose į paveikslus ir kitus objektus bus vartojami santykiniai adresai pagal failo arba aplanko vietą, kurioje yra tas objektas. Šiuo atveju nesvarbu, kur įrašoma aplankų struktūra. Failai vis tiek bus surasti (kol nuorodų rodomi failai lieka tame pačiame diske, kaip ir pagrindinis dokumentas). Tai labai svarbu, kai aplankų struktūra perkeliama į kitą diską, kompiuterį ar serverį."
#: 00000005.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "If you prefer absolute saving, all references to other files will also be defined as absolute, based on the respective drive, volume or root directory. The advantage is that the document containing the references can be moved to other directories or folders, and the references remain valid."
-msgstr ""
+msgstr "Pasirinkus absoliučiųjų nuorodų įrašymą, nuorodose į kitus failus bus vartojami absoliutieji adresai. Dokumentai su nuorodomis gali būti perkeliami į kitus aplankus, tačiau nuorodos vis tiek rodys į tas pačias vietas."
#: 00000005.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"hd_id3152414\n"
"help.text"
msgid "Spin button"
-msgstr ""
+msgstr "Suktukas"
#: 00000005.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"bm_id3149922\n"
"help.text"
msgid "<bookmark_value>SQL;definition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SQL;apibrėžimas</bookmark_value>"
#: 00000005.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"hd_id3149922\n"
"help.text"
msgid "SQL"
-msgstr ""
+msgstr "SQL"
#: 00000005.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3152863\n"
"help.text"
msgid "Structured Query Language (SQL) is a language used for database queries. In $[officename] you can formulate queries either in SQL or interactively with the mouse."
-msgstr ""
+msgstr "SQL (angl. Structured Query Language – struktūrinių užklausų kalba) kalba naudojama duomenų bazės užklausoms. „$[officename]“ programoje galima formuluoti užklausas SQL tekstu arba interaktyviai naudojant pelę."
#: 00000005.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"hd_id3147552\n"
"help.text"
msgid "SQL Database / SQL Server"
-msgstr ""
+msgstr "SQL duomenų bazė, SQL serveris"
#: 00000005.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3159239\n"
"help.text"
msgid "An SQL database is a database system which offers an <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> interface. SQL databases are often used in client/server networks in which different clients access a central server (for example, an SQL server), hence they are also called SQL server databases, or SQL servers for short."
-msgstr ""
+msgstr "SQL duomenų bazė – tai duomenų bazė, turinti <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> sąsają. SQL duomenų bazės dažnai naudojamos kliento arba serverio architektūroje, kurioje skirtingi klientai naudoja centrinę duomenų bazę (pvz., SQL serverį), todėl jos dar vadinamos SQL serverio duomenų bazėmis arba sutrumpintai SQL serveriais."
#: 00000005.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3159118\n"
"help.text"
msgid "In $[officename], you can integrate external SQL databases. These may be located on your local hard disk as well as on the network. Access is achieved through <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC, or a native driver integrated into $[officename]."
-msgstr ""
+msgstr "Į „$[officename]“ galima integruoti išorines SQL duomenų bazes. Jos gali būti įrašytos vietiniame diske arba tinkle. Duomenys pasiekiami naudojantis <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link>, JDBC arba į „$[officename]“ integruota sava tvarkykle."
#: 00000005.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"hd_id3166423\n"
"help.text"
msgid "Widows and Orphans"
-msgstr ""
+msgstr "Keliamosios ir liekamosios eilutės"
#: 00000005.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id3149448\n"
"help.text"
msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page."
-msgstr ""
+msgstr "Keliamąja eilute vadinama trumpa eilutė pastraipos gale, kuri vienintelė atsiduria kito puslapio viršuje. Liekamoji eilutė – tai pirma pastraipos eilutė, kuri vienintelė lieka prieš tai buvusio puslapio apačioje. „$[officename]“ teksto dokumentuose tokių atvejų galima išvengti automatiškai, parinkus reikiamas puslapio stiliaus nuostatas. Jomis galima nurodyti, kiek mažiausiai pastraipos eilučių laikyti puslapyje drauge."
#: 00000007.xhp
msgctxt ""
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/lt/helpcontent2/source/text/shared/01.po b/source/lt/helpcontent2/source/text/shared/01.po
index a44b9debaff..fb62e45061e 100644
--- a/source/lt/helpcontent2/source/text/shared/01.po
+++ b/source/lt/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-22 19:20+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/lt/helpcontent2/source/text/shared/optionen.po b/source/lt/helpcontent2/source/text/shared/optionen.po
index 2e1552e65b4..2a8d043aeb6 100644
--- a/source/lt/helpcontent2/source/text/shared/optionen.po
+++ b/source/lt/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-04-25 19:57+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/lt/helpcontent2/source/text/swriter.po b/source/lt/helpcontent2/source/text/swriter.po
index af4efb95370..8e5acdc0ed6 100644
--- a/source/lt/helpcontent2/source/text/swriter.po
+++ b/source/lt/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-29 16:44+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Antraščių numeravimas\">Antraščių numeravimas</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/swriter/00.po b/source/lt/helpcontent2/source/text/swriter/00.po
index b889c5e734c..9a4b3767937 100644
--- a/source/lt/helpcontent2/source/text/swriter/00.po
+++ b/source/lt/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-23 19:00+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495566008.000000\n"
#: 00000004.xhp
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/lt/helpcontent2/source/text/swriter/01.po b/source/lt/helpcontent2/source/text/swriter/01.po
index 73729185f67..88321ee1d26 100644
--- a/source/lt/helpcontent2/source/text/swriter/01.po
+++ b/source/lt/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-05-23 21:43+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,7 +21341,7 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21349,7 +21349,7 @@ msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/lt/helpcontent2/source/text/swriter/guide.po b/source/lt/helpcontent2/source/text/swriter/guide.po
index 16f471141ab..d781afe73e1 100644
--- a/source/lt/helpcontent2/source/text/swriter/guide.po
+++ b/source/lt/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-05-22 20:51+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495486268.000000\n"
#: anchor_object.xhp
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: chapter_numbering.xhp
@@ -2909,7 +2909,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
index 863d68a322c..0f2fd88f906 100644
--- a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lt/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-22 20:48+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -617,8 +617,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Pasirinkti temą"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4022,6 +4022,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26699,15 +26816,6 @@ msgstr "Savybės…"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Objektas…"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/lt/sc/source/ui/src.po b/source/lt/sc/source/ui/src.po
index 5affcd6eff4..916756696e7 100644
--- a/source/lt/sc/source/ui/src.po
+++ b/source/lt/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-20 05:38+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -2703,7 +2703,7 @@ msgstr "Sritis perkelta iš #1 į #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "Įdėtiniai masyvai neleistini."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/lt/sfx2/source/view.po b/source/lt/sfx2/source/view.po
index 18a81f08af5..661c9ff8957 100644
--- a/source/lt/sfx2/source/view.po
+++ b/source/lt/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-29 20:56+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -252,6 +252,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/lt/sfx2/uiconfig/ui.po b/source/lt/sfx2/uiconfig/ui.po
index a5feb4bed37..76cabd11d53 100644
--- a/source/lt/sfx2/uiconfig/ui.po
+++ b/source/lt/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-03-06 09:30+0000\n"
+"PO-Revision-Date: 2017-06-13 19:49+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: none\n"
"Language: lt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488792632.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497383360.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME Help Not Installed"
-msgstr ""
+msgstr "Neįdiegtas „%PRODUCTNAME“ žinynas"
#: helpmanual.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "The %PRODUCTNAME built-in help is not installed on your computer."
-msgstr ""
+msgstr "Įtaisytasis „%PRODUCTNAME“ žinynas neįdiegtas šiame kompiuteryje."
#: helpmanual.ui
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "You may either install it from our website or your system’s repositories, or read an online version."
-msgstr ""
+msgstr "Galima įdiegti žinyną atsisiuntus jį iš mūsų tinklalapio ar operacinės sistemos paketų saugyklų, arba skaityti žinyną internete."
#: helpmanual.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Read Help Online"
-msgstr ""
+msgstr "Skaityti žinyną internete"
#: helpsearchpage.ui
msgctxt ""
@@ -861,6 +861,15 @@ msgid ""
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
+"„%PRODUCTNAME“ programų paketas pateikiamas pagal „Mozilla“ viešosios licencijos 2.0 versijos sąlygas. Šią licenciją galima peržiūrėti tinkalapyje http://mozilla.org/MPL/2.0/.\n"
+"\n"
+"Šioje programoje panaudotiems trečiųjų šalių komponentams taikomos papildomos autorių teisių apsaugos ir licencijų sąlygos, išdėstytos faile „LICENSE.html“. Spustelėjus „Rodyti licenciją“ bus parodytas failo tekstas anglų kalba.\n"
+"\n"
+"Visi čia paminėti prekių ženklai ir registruoti prekių ženklai yra jų savininkų nuosavybė.\n"
+"\n"
+"© 2000–2017 „LibreOffice“ bendradarbiai. Visos teisės saugomos.\n"
+"\n"
+"Šį produktą sukūrė „%OOOVENDOR“ „OpenOffice.org“ pagrindu: © 2000, 2011 „Oracle“ ir (arba) bendrovės filialai. „%OOOVENDOR“ dėkoja visiems bendruomenės nariams, žr. http://www.libreoffice.org/."
#: linkeditdialog.ui
msgctxt ""
@@ -1868,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New..."
-msgstr ""
+msgstr "Kurti…"
#: stylecontextmenu.ui
msgctxt ""
@@ -1877,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Modify..."
-msgstr ""
+msgstr "Keisti…"
#: stylecontextmenu.ui
msgctxt ""
@@ -1886,7 +1895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hide"
-msgstr ""
+msgstr "Slėpti"
#: stylecontextmenu.ui
msgctxt ""
diff --git a/source/lt/svtools/source/control.po b/source/lt/svtools/source/control.po
index 810f012c94f..d78688ec1b8 100644
--- a/source/lt/svtools/source/control.po
+++ b/source/lt/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-11 06:45+0000\n"
"Last-Translator: embar <embar@super.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -292,6 +292,110 @@ msgstr "Juodas kursyvas"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/lt/svtools/source/misc.po b/source/lt/svtools/source/misc.po
index 7773bd09651..7d0be8afd75 100644
--- a/source/lt/svtools/source/misc.po
+++ b/source/lt/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-11-06 16:02+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -3181,10 +3181,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3908,6 +3908,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/lt/sw/source/core/undo.po b/source/lt/sw/source/core/undo.po
index 0bb409adb72..d3cbadbd5c7 100644
--- a/source/lt/sw/source/core/undo.po
+++ b/source/lt/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-13 21:19+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "skilties lūžis"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Įterpti $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Šalinti $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Pakeisti požymiai"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Pakeista lentelė"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Pakeistas stilius"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/lt/sw/source/uibase/docvw.po b/source/lt/sw/source/uibase/docvw.po
index b77872f7e4d..08b13bd4a48 100644
--- a/source/lt/sw/source/uibase/docvw.po
+++ b/source/lt/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-06 20:10+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Pritaikyti pastraipos stiliai"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/lt/sw/source/uibase/ribbar.po b/source/lt/sw/source/uibase/ribbar.po
index b7698e46e19..3b93d4fa2d9 100644
--- a/source/lt/sw/source/uibase/ribbar.po
+++ b/source/lt/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-14 13:22+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formulės tekstas"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/lt/sw/source/uibase/uiview.po b/source/lt/sw/source/uibase/uiview.po
index e137130dad1..da86bb0f12f 100644
--- a/source/lt/sw/source/uibase/uiview.po
+++ b/source/lt/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-11-08 13:40+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Eksportuoti šaltinį…"
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/lt/xmlsecurity/uiconfig/ui.po b/source/lt/xmlsecurity/uiconfig/ui.po
index 39708855dd6..658d0aa3eba 100644
--- a/source/lt/xmlsecurity/uiconfig/ui.po
+++ b/source/lt/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-13 21:17+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Šalinti"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/lv/desktop/source/deployment/gui.po b/source/lv/desktop/source/deployment/gui.po
index 2f4a36e08ea..0713cedb718 100644
--- a/source/lv/desktop/source/deployment/gui.po
+++ b/source/lv/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 01:47+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 17:33+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467683241.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449855211.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po
index 5ac7ac98ac7..097415200ab 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lv/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-16 17:19+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Kļūdu kodi</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/lv/helpcontent2/source/text/shared/00.po b/source/lv/helpcontent2/source/text/shared/00.po
index 0430c104ee3..dc977272ecc 100644
--- a/source/lv/helpcontent2/source/text/shared/00.po
+++ b/source/lv/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-27 21:27+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index d2c347c283c..63115a994d6 100644
--- a/source/lv/helpcontent2/source/text/shared/01.po
+++ b/source/lv/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-06-02 09:11+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/optionen.po b/source/lv/helpcontent2/source/text/shared/optionen.po
index 39b88775625..1c706db1037 100644
--- a/source/lv/helpcontent2/source/text/shared/optionen.po
+++ b/source/lv/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-12-04 11:32+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/lv/helpcontent2/source/text/swriter.po b/source/lv/helpcontent2/source/text/swriter.po
index 044606b809b..201b6d18a64 100644
--- a/source/lv/helpcontent2/source/text/swriter.po
+++ b/source/lv/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-03 22:54+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Struktūras numurēšana\">Struktūras numurēšana</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/swriter/00.po b/source/lv/helpcontent2/source/text/swriter/00.po
index fea4cf4ad9c..2d75da820f6 100644
--- a/source/lv/helpcontent2/source/text/swriter/00.po
+++ b/source/lv/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-12-03 11:11+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Izvēlieties <emph>Rīki - Struktūras numurēšana</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Izvēlieties cilni <emph>Rīki - Struktūras numurēšana - Numurēšana</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Izvēlieties <emph>Rīki - Rindu numurēšana</emph> (ne priekš HTML formāta) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/swriter/01.po b/source/lv/helpcontent2/source/text/swriter/01.po
index 3aa4a807a0c..dbce2f36327 100644
--- a/source/lv/helpcontent2/source/text/swriter/01.po
+++ b/source/lv/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-12-10 21:22+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Struktūras numurēšana"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Struktūras numurēšana"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Jauns adreses bloks"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Jauns adreses bloks"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adreses elementi"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/lv/helpcontent2/source/text/swriter/guide.po b/source/lv/helpcontent2/source/text/swriter/guide.po
index 18c7ecba5c8..7b543f83150 100644
--- a/source/lv/helpcontent2/source/text/swriter/guide.po
+++ b/source/lv/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-11-21 18:13+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Struktūras numurēšana"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,15 +2917,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Struktūras numurēšana\">Struktūras numurēšana</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
index 306a3334d74..7bd84f22646 100644
--- a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lv/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-06-04 10:30+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Izvēlēties motīvus"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Ievietot..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "Ī~pašības..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objekts..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/lv/sc/source/ui/src.po b/source/lv/sc/source/ui/src.po
index e5ad540ca24..8ab1cc7ad1f 100644
--- a/source/lv/sc/source/ui/src.po
+++ b/source/lv/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-16 07:43+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -2701,7 +2701,7 @@ msgstr "Diapazons pārvietots no #1 uz #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Iegultie masīvi netiek atbalstīti."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/lv/sfx2/source/view.po b/source/lv/sfx2/source/view.po
index e15cba49766..0503747b881 100644
--- a/source/lv/sfx2/source/view.po
+++ b/source/lv/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-15 13:39+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/lv/svtools/source/control.po b/source/lv/svtools/source/control.po
index 2bee217c86a..8cebc811bb7 100644
--- a/source/lv/svtools/source/control.po
+++ b/source/lv/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-31 16:50+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -291,6 +291,110 @@ msgstr "Melns kursīvs"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/lv/svtools/source/misc.po b/source/lv/svtools/source/misc.po
index 53e86aa87ee..cb16ff995cc 100644
--- a/source/lv/svtools/source/misc.po
+++ b/source/lv/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-15 13:39+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/lv/sw/source/core/undo.po b/source/lv/sw/source/core/undo.po
index 6bb2b296c8b..63ae2697062 100644
--- a/source/lv/sw/source/core/undo.po
+++ b/source/lv/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-06-04 10:15+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496571335.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "kolonnas atdalīšana"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Ievietot $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Dzēst $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atribūti izmainīti"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabula izmainīta"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stils izmainīts"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/lv/sw/source/uibase/docvw.po b/source/lv/sw/source/uibase/docvw.po
index 087a688dabb..b486010abac 100644
--- a/source/lv/sw/source/uibase/docvw.po
+++ b/source/lv/sw/source/uibase/docvw.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: 2017-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-07 09:19+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -59,6 +59,46 @@ msgstr "Pielietotie rindkopu stili"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/lv/sw/source/uibase/ribbar.po b/source/lv/sw/source/uibase/ribbar.po
index f4d1b1c70d1..c9a3ee12bf3 100644
--- a/source/lv/sw/source/uibase/ribbar.po
+++ b/source/lv/sw/source/uibase/ribbar.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-26 23:24+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formulas teksts"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/lv/sw/source/uibase/uiview.po b/source/lv/sw/source/uibase/uiview.po
index d00d61ac484..ed71ad0c6c2 100644
--- a/source/lv/sw/source/uibase/uiview.po
+++ b/source/lv/sw/source/uibase/uiview.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-04-11 10:35+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -139,6 +139,14 @@ msgstr "~Eksportēt pirmavotu..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/lv/xmlsecurity/uiconfig/ui.po b/source/lv/xmlsecurity/uiconfig/ui.po
index 8c1564de553..9ee94125b11 100644
--- a/source/lv/xmlsecurity/uiconfig/ui.po
+++ b/source/lv/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-15 13:39+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -172,6 +172,15 @@ msgstr "Izņemt"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/mai/desktop/source/deployment/gui.po b/source/mai/desktop/source/deployment/gui.po
index c9377c16683..41113e0318a 100644
--- a/source/mai/desktop/source/deployment/gui.po
+++ b/source/mai/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-12-11 17:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
index d0d18ab3dd1..ef6f843def4 100644
--- a/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mai/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 02:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "थीम चुनू"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4114,6 +4114,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27093,15 +27210,6 @@ msgid "~Properties..."
msgstr "विशेषतासभ..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/mai/sc/source/ui/src.po b/source/mai/sc/source/ui/src.po
index 9325fe80a6d..738532c5e01 100644
--- a/source/mai/sc/source/ui/src.po
+++ b/source/mai/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 02:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2717,7 +2717,7 @@ msgstr "परिसरकेँ #1 सँ #2केँ स्थान परि
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2886,7 +2886,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/mai/sfx2/source/view.po b/source/mai/sfx2/source/view.po
index f9a22b35892..87cbe0c07cf 100644
--- a/source/mai/sfx2/source/view.po
+++ b/source/mai/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -258,6 +258,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/mai/svtools/source/control.po b/source/mai/svtools/source/control.po
index fd3532898c5..1a36e6a0a2d 100644
--- a/source/mai/svtools/source/control.po
+++ b/source/mai/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "करिया तिरछा"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/mai/svtools/source/misc.po b/source/mai/svtools/source/misc.po
index bb6e757cd60..95da68ba32d 100644
--- a/source/mai/svtools/source/misc.po
+++ b/source/mai/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3201,9 +3201,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3926,6 +3926,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mai/sw/source/core/undo.po b/source/mai/sw/source/core/undo.po
index 798cb094e21..772f1807787 100644
--- a/source/mai/sw/source/core/undo.po
+++ b/source/mai/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 00:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "कॉलम खंडन"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 जोड़ू"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 मेटाबू"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "गुण बदलल गेल"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "सारणी बदलल"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "शैली बदलल गेल"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/mai/sw/source/uibase/docvw.po b/source/mai/sw/source/uibase/docvw.po
index 90035963af0..6e6d18ad591 100644
--- a/source/mai/sw/source/uibase/docvw.po
+++ b/source/mai/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 06:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/mai/sw/source/uibase/ribbar.po b/source/mai/sw/source/uibase/ribbar.po
index 0b82ec5b806..fea9cd5076a 100644
--- a/source/mai/sw/source/uibase/ribbar.po
+++ b/source/mai/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 13:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/mai/sw/source/uibase/uiview.po b/source/mai/sw/source/uibase/uiview.po
index 899d08d3037..e078ba6c779 100644
--- a/source/mai/sw/source/uibase/uiview.po
+++ b/source/mai/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 06:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/mai/xmlsecurity/uiconfig/ui.po b/source/mai/xmlsecurity/uiconfig/ui.po
index 8c49bc9c2e2..1e357434d31 100644
--- a/source/mai/xmlsecurity/uiconfig/ui.po
+++ b/source/mai/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 15:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/mk/desktop/source/deployment/gui.po b/source/mk/desktop/source/deployment/gui.po
index 13dcd8f8b2c..220aef05bc7 100644
--- a/source/mk/desktop/source/deployment/gui.po
+++ b/source/mk/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:11+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 17:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mk\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467684706.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449855831.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/mk/helpcontent2/source/text/sbasic/shared.po b/source/mk/helpcontent2/source/text/sbasic/shared.po
index 1ab5c041982..53f17b363c6 100644
--- a/source/mk/helpcontent2/source/text/sbasic/shared.po
+++ b/source/mk/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 08:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Error Codes </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.openoffice.org\">api.openoffice.org</link> for more information."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/mk/helpcontent2/source/text/shared/00.po b/source/mk/helpcontent2/source/text/shared/00.po
index 896fae2b599..0e5ec14768b 100644
--- a/source/mk/helpcontent2/source/text/shared/00.po
+++ b/source/mk/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 18:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/mk/helpcontent2/source/text/shared/01.po b/source/mk/helpcontent2/source/text/shared/01.po
index 4d11f6009a8..24fd5dd9643 100644
--- a/source/mk/helpcontent2/source/text/shared/01.po
+++ b/source/mk/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 12:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style that you want to use to separate the source document into sub-documents.</ahelp> The default paragraph style is \"Heading 1\"."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/mk/helpcontent2/source/text/shared/optionen.po b/source/mk/helpcontent2/source/text/shared/optionen.po
index a48bc252173..597f77eeace 100644
--- a/source/mk/helpcontent2/source/text/shared/optionen.po
+++ b/source/mk/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 13:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/mk/helpcontent2/source/text/swriter.po b/source/mk/helpcontent2/source/text/swriter.po
index 5f96134a534..4c8d56f3edb 100644
--- a/source/mk/helpcontent2/source/text/swriter.po
+++ b/source/mk/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 19:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Нумерирање на главни црти</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/swriter/00.po b/source/mk/helpcontent2/source/text/swriter/00.po
index ef68889a510..1e846e36baf 100644
--- a/source/mk/helpcontent2/source/text/swriter/00.po
+++ b/source/mk/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 19:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Изберете <emph>Алатки - Нумерација на главни црти</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Изберете <emph>Алатки - Нумерација на главни црти - Нумерација</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Изберете <emph>Алатки - Нумерација на линии</emph> (не е за HTML форматот)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/swriter/01.po b/source/mk/helpcontent2/source/text/swriter/01.po
index c2ade4ab619..eca5c472884 100644
--- a/source/mk/helpcontent2/source/text/swriter/01.po
+++ b/source/mk/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Кликнете <emph>1 </emph>за да ги гледате само оние заглавија од највисоко ниво во прозорецот на Навигаторот или <emph>10</emph> за да ги видите сите заглавија.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the complete chapter heading, including, if available, the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Нумерација на контура на текст"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Нумерација на контура на текст"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Нумерирањето на контурата на текстот е поврзана со стиловите на пасусите. Стандардно, стиловите на пасусите кај \"Заглавиа\" (1-10) се назначуваат на нивните соодветни нивоа на контура на текст (1-10). Ако сакате, можете да назначите различни стилови на пасуси на нивото за нумерација на контурата на текстот."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "За да го изберете приказот на нумерацијата во контурата, одберете <emph>Преглед -</emph><emph>Сенчање на полиња</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\"> Зачувува или вчитива форматирање на нумерација на контура. Зачуваното форматирање на контурата на текстот е достапно кај сите текстуални документи.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Копчето <emph>Форматирај</emph> е достапно само за нумерирање на контури. За стил на списоци со нумерирација или со точки, изберете ги опциите кои се наоѓаат во Стилови за нумерација кај пасуси."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Отвора дијалог каде можете да ги снимите постојните поставувања за избраното ниво на контура. Потоа можете да ги вчитате вкавите поставувања од друг документ.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Кликнете на нивото на контура кое сакате да го измените, а потоа одредете ги опциите за нумерација за тоа ниво. </ahelp> За да ги примениме опциите за нумерирање за сите нивоа во функција, освен за стилот за пасусот, кликнете \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Изберете го стилот на пасусот кој сакате да му го одредите на нивото на избраната контура.</ahelp> Ако изберете \"Ниедно\", избраното ниво на контура нема да биде дефинирано."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Нов блок адреси"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Нов блок адреси"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Адресни елементи"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Извлечете еден адресен елемент и пуштете го во долното поле"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/swriter/guide.po b/source/mk/helpcontent2/source/text/swriter/guide.po
index b22f1a7351f..b40e685097e 100644
--- a/source/mk/helpcontent2/source/text/swriter/guide.po
+++ b/source/mk/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Може да движите заглавија и подреден текст нагоре и надолу во текстуален документ со користење на Навигаторот. Исто така може да ги унапредите или деградирате нивоата на заглавијата. За да ја користите оваа особина, форматирајте ги заглавијата во вашиот документ со еден од претходно дефинираните стилови на пасуси за заглавија. За да користите сопствен стил на пасус за заглавие изберете <emph>Алатки - Нумерација на главни црти</emph>, изберете стил во полето <emph>Стил на пасус</emph>, и потоа кликнете двапати на број во листата <emph>Нивоа</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Нумерирање на главни црти"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>нумерирање на главни црти</bookmark_value><bookmark_value>отстранување;броеви на заглавија</bookmark_value><bookmark_value>нумерирање поглавја</bookmark_value><bookmark_value>заглавија; нумерирање</bookmark_value><bookmark_value>нумерирање;заглавија</bookmark_value><bookmark_value>заглавија; сопствени стилови на пасус</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Нумерирање на главни црти</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Може да ја промените хиерархијата на заглавијата или нивото во хиерархијата во сопствен стил на пасус. Можете исто така да додадете нумерирање на поглавје во стиловите на пасуси за наслов. Стандардно, стилот на пасус „Заглавие 1“ се наоѓа најгоре во хиерархијата на главните црти."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Изберете <emph>Алатки - Нумерирање на главни црти</emph> и потоа кликнете на ливчето <emph>Нумерирање</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "За да го отстраните автоматското нумерирање на главни црти од пасусот за заглавие:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Изберете <emph>Алатки - Нумерирање на главни црти</emph> и потоа кликнете на ливчето <emph>Нумерирање</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Пред да можете да вметнете информации за поглавје во заглавие или подножје, прво мора да ги поставите опциите за нумерирање на главни црти за стилот на пасус што сакате да го користите за насловите на поглавјата."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Изберете <emph>Алатки - Нумерирање на главни црти</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>индекси; дефинирање елементи во</bookmark_value><bookmark_value>содржини; дефинирање елементи во</bookmark_value><bookmark_value>елементи; дефинирање во индекси/содржини</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Изберете <emph>Вметни - Индекси и табели - Елемент</emph>, и направете една од следните опции:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Изберете <emph>Алатки - Нумерирање на главни црти</emph> и кликнете на ливчето <emph>Нумерирање</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "If you want to use a different paragraph style as a table of contents entry, select the <emph>Additional Styles </emph>check box in the <emph>Create from</emph> area, and then click the (<emph>...</emph>) button next to the check box. In the <emph>Assign Styles</emph> dialog, click the style in the list, and then click the <emph>>> </emph>or the <emph><< </emph>button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numbering; removing/interrupting</bookmark_value><bookmark_value>bullet lists; interrupting</bookmark_value><bookmark_value>lists;removing/interrupting numbering</bookmark_value><bookmark_value>removing;numbers in lists</bookmark_value><bookmark_value>interrupting numbered lists</bookmark_value><bookmark_value>changing;starting numbers in lists</bookmark_value><bookmark_value>modifying;numbering in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
index 5b1ac1ac44d..88f27888499 100644
--- a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mk/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-23 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -630,8 +630,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Избери теми"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4096,6 +4096,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27061,15 +27178,6 @@ msgid "~Properties..."
msgstr "Својства..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/mk/sc/source/ui/src.po b/source/mk/sc/source/ui/src.po
index 61f2701a445..35726fd4dce 100644
--- a/source/mk/sc/source/ui/src.po
+++ b/source/mk/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 03:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2715,7 +2715,7 @@ msgstr "Опсегот е префрлен од #1 во #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2883,7 +2883,7 @@ msgstr "Вгнездени низи не се поддржани."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/mk/sfx2/source/view.po b/source/mk/sfx2/source/view.po
index b0ec569ad5f..852a6505296 100644
--- a/source/mk/sfx2/source/view.po
+++ b/source/mk/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/mk/svtools/source/control.po b/source/mk/svtools/source/control.po
index ea4d3ffc1b4..a54ab599fd7 100644
--- a/source/mk/svtools/source/control.po
+++ b/source/mk/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 01:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Црно курзив"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/mk/svtools/source/misc.po b/source/mk/svtools/source/misc.po
index 53d037dea37..1ac501b1004 100644
--- a/source/mk/svtools/source/misc.po
+++ b/source/mk/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 21:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3194,9 +3194,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3924,6 +3924,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mk/sw/source/core/undo.po b/source/mk/sw/source/core/undo.po
index 356aa497b65..6055a1359c8 100644
--- a/source/mk/sw/source/core/undo.po
+++ b/source/mk/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 00:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "прелом на колона"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Вметни $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Избриши $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Атрибутите се променети"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Табелата е променета"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Стилот е променет"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/mk/sw/source/uibase/docvw.po b/source/mk/sw/source/uibase/docvw.po
index 9f4c4f80f3c..5c4f99276d4 100644
--- a/source/mk/sw/source/uibase/docvw.po
+++ b/source/mk/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 06:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/mk/sw/source/uibase/ribbar.po b/source/mk/sw/source/uibase/ribbar.po
index 5d19e18d32e..5d640382bb9 100644
--- a/source/mk/sw/source/uibase/ribbar.po
+++ b/source/mk/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 15:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/mk/sw/source/uibase/uiview.po b/source/mk/sw/source/uibase/uiview.po
index d74cd56495a..a68f1c20297 100644
--- a/source/mk/sw/source/uibase/uiview.po
+++ b/source/mk/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 06:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/mk/xmlsecurity/uiconfig/ui.po b/source/mk/xmlsecurity/uiconfig/ui.po
index dde08dae6d3..b801dd20678 100644
--- a/source/mk/xmlsecurity/uiconfig/ui.po
+++ b/source/mk/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 15:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ml/desktop/source/deployment/gui.po b/source/ml/desktop/source/deployment/gui.po
index c871d0e7408..ebc61ca6755 100644
--- a/source/ml/desktop/source/deployment/gui.po
+++ b/source/ml/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:20+0000\n"
-"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-01-20 17:38+0000\n"
+"Last-Translator: mahir <mahirfarook@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ml\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467685240.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1453311510.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
index d3792308c5c..619bba60a26 100644
--- a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ml/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 03:04+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "വിഷയം തിരഞ്ഞെടുക്കുക"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26995,15 +27112,6 @@ msgid "~Properties..."
msgstr "സവിശേഷതകള്"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ml/sc/source/ui/src.po b/source/ml/sc/source/ui/src.po
index f4ea1ec257d..4985129e1ed 100644
--- a/source/ml/sc/source/ui/src.po
+++ b/source/ml/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: new\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 03:13+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: <en@li.org>\n"
@@ -2702,7 +2702,7 @@ msgstr "റേഞ്ച് നീക്കം ചെയ്തത് #1ല് ന
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "നെസ്റ്റഡ് അറേകള്‍ പിന്തുണ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ml/sfx2/source/view.po b/source/ml/sfx2/source/view.po
index 9ef5034695e..04ebf687539 100644
--- a/source/ml/sfx2/source/view.po
+++ b/source/ml/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: <en@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ml/svtools/source/control.po b/source/ml/svtools/source/control.po
index 2872d516c96..fb74c24c7be 100644
--- a/source/ml/svtools/source/control.po
+++ b/source/ml/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:19+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "കറുത്ത (ചരിഞ്ഞ) അക്ഷരം"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ml/svtools/source/misc.po b/source/ml/svtools/source/misc.po
index df68bb13811..ac004840657 100644
--- a/source/ml/svtools/source/misc.po
+++ b/source/ml/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 21:05+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: <en@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "ബെക്ക്‌വെല്‍"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "കിറ്റുബാ"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ml/sw/source/core/undo.po b/source/ml/sw/source/core/undo.po
index 26b32bec797..fe01a1597ab 100644
--- a/source/ml/sw/source/core/undo.po
+++ b/source/ml/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-01-19 20:42+0000\n"
"Last-Translator: Anish Sheela <aneesh.nl@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -891,42 +891,82 @@ msgstr "സ്തംഭ വിഭജനം"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ഉള്‍പ്പെടുത്തുക"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 വെട്ടി നീക്കുക"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "മാറ്റിയ ആറ്റ്റിബ്യുട്ട്"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "പട്ടിക മാറ്റി"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ശൈലി മാറ്റങ്ങള്"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ml/sw/source/uibase/docvw.po b/source/ml/sw/source/uibase/docvw.po
index 7b7c8700a5e..f0e2d3a9cca 100644
--- a/source/ml/sw/source/uibase/docvw.po
+++ b/source/ml/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 06:58+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ml/sw/source/uibase/ribbar.po b/source/ml/sw/source/uibase/ribbar.po
index ac8a8f36216..ae3af2129e3 100644
--- a/source/ml/sw/source/uibase/ribbar.po
+++ b/source/ml/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 15:32+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ml/sw/source/uibase/uiview.po b/source/ml/sw/source/uibase/uiview.po
index 8320cf58fad..75adce46cf9 100644
--- a/source/ml/sw/source/uibase/uiview.po
+++ b/source/ml/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 06:58+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ml/xmlsecurity/uiconfig/ui.po b/source/ml/xmlsecurity/uiconfig/ui.po
index 57e1b6e83c9..94e007e0279 100644
--- a/source/ml/xmlsecurity/uiconfig/ui.po
+++ b/source/ml/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 15:21+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "നീക്കം ചെയ്യുക"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/mn/desktop/source/deployment/gui.po b/source/mn/desktop/source/deployment/gui.po
index 7c175c1fb2f..132c72dba03 100644
--- a/source/mn/desktop/source/deployment/gui.po
+++ b/source/mn/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:26+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-02-20 23:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467685592.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1456011167.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
index 2c58e4d8f7a..e57e7ee2b1b 100644
--- a/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mn/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 03:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Загвар сонгох"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4097,6 +4097,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27065,15 +27182,6 @@ msgid "~Properties..."
msgstr "Тодруулга..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/mn/sc/source/ui/src.po b/source/mn/sc/source/ui/src.po
index 658be18e1c6..071004a6f54 100644
--- a/source/mn/sc/source/ui/src.po
+++ b/source/mn/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-23 16:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2717,7 +2717,7 @@ msgstr "Муж #1-с #2-руу зөөгдөв"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2885,7 +2885,7 @@ msgstr "Шаталсан матриц дэмжигдээгүй."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/mn/sfx2/source/view.po b/source/mn/sfx2/source/view.po
index 4b52cede9d0..f2d6fc830ca 100644
--- a/source/mn/sfx2/source/view.po
+++ b/source/mn/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/mn/svtools/source/control.po b/source/mn/svtools/source/control.po
index a75bac34bb3..99e073d1f1c 100644
--- a/source/mn/svtools/source/control.po
+++ b/source/mn/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Хар налуу"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/mn/svtools/source/misc.po b/source/mn/svtools/source/misc.po
index c1621d99d89..d2476b2995d 100644
--- a/source/mn/svtools/source/misc.po
+++ b/source/mn/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 21:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3196,9 +3196,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3926,6 +3926,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mn/sw/source/core/undo.po b/source/mn/sw/source/core/undo.po
index d8d321c40b6..0030d8dabdd 100644
--- a/source/mn/sw/source/core/undo.po
+++ b/source/mn/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-06-28 16:21+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "Багана таслалт"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1-г оруул"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1-г устга"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Атрибут өөрчлөгдөв"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Хүснэгт өөрчлөгдөв"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Хэлбэр өөрчлөгдлөө"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/mn/sw/source/uibase/docvw.po b/source/mn/sw/source/uibase/docvw.po
index 90f098f1f0e..3fe5b54f8d8 100644
--- a/source/mn/sw/source/uibase/docvw.po
+++ b/source/mn/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 07:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/mn/sw/source/uibase/ribbar.po b/source/mn/sw/source/uibase/ribbar.po
index 12bf254b130..5fbdd029c08 100644
--- a/source/mn/sw/source/uibase/ribbar.po
+++ b/source/mn/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 14:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/mn/sw/source/uibase/uiview.po b/source/mn/sw/source/uibase/uiview.po
index 8be3c6298b4..1c3d962f474 100644
--- a/source/mn/sw/source/uibase/uiview.po
+++ b/source/mn/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 07:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/mn/xmlsecurity/uiconfig/ui.po b/source/mn/xmlsecurity/uiconfig/ui.po
index ae5cd2d0946..19490c91545 100644
--- a/source/mn/xmlsecurity/uiconfig/ui.po
+++ b/source/mn/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 15:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/mni/desktop/source/deployment/gui.po b/source/mni/desktop/source/deployment/gui.po
index e11e12ebc64..f626f270aea 100644
--- a/source/mni/desktop/source/deployment/gui.po
+++ b/source/mni/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:31+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467685899.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449856901.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -178,6 +178,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
index c17e222b48d..06203e2773a 100644
--- a/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mni/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-16 09:25+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "হীরমশিং খনবা"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4105,6 +4105,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27079,15 +27196,6 @@ msgid "~Properties..."
msgstr "মগুনশিং..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/mni/sc/source/ui/src.po b/source/mni/sc/source/ui/src.po
index 62024c6a83b..2122c54031b 100644
--- a/source/mni/sc/source/ui/src.po
+++ b/source/mni/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:26+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2718,7 +2718,7 @@ msgstr " #1দগী #2দা রেন্জ মফম হোংলে"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2886,7 +2886,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/mni/sfx2/source/view.po b/source/mni/sfx2/source/view.po
index 1b53fd1fca8..3b5410cb6e3 100644
--- a/source/mni/sfx2/source/view.po
+++ b/source/mni/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/mni/svtools/source/control.po b/source/mni/svtools/source/control.po
index bb4d651cdc6..4e2f5d6ae0b 100644
--- a/source/mni/svtools/source/control.po
+++ b/source/mni/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "অমুবা ইটালীক"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/mni/svtools/source/misc.po b/source/mni/svtools/source/misc.po
index 918060248de..bd2e1e4a64e 100644
--- a/source/mni/svtools/source/misc.po
+++ b/source/mni/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:26+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3194,9 +3194,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3919,6 +3919,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/mni/sw/source/core/undo.po b/source/mni/sw/source/core/undo.po
index 0ef88adcf90..fe3557955c8 100644
--- a/source/mni/sw/source/core/undo.po
+++ b/source/mni/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 02:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "কলম অহাংবা"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1হাপচিল্লু"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1মুত্থতলু"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "এত্রিবিয়ুতস হোংলে"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "তেবল হোংলে"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "হোংলবা স্তাইল"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/mni/sw/source/uibase/docvw.po b/source/mni/sw/source/uibase/docvw.po
index 77c9318c220..eae4d3af6ac 100644
--- a/source/mni/sw/source/uibase/docvw.po
+++ b/source/mni/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 07:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/mni/sw/source/uibase/ribbar.po b/source/mni/sw/source/uibase/ribbar.po
index 6ff9cae266d..00d8a578546 100644
--- a/source/mni/sw/source/uibase/ribbar.po
+++ b/source/mni/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 16:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/mni/sw/source/uibase/uiview.po b/source/mni/sw/source/uibase/uiview.po
index 6b6e1539a10..217253b1405 100644
--- a/source/mni/sw/source/uibase/uiview.po
+++ b/source/mni/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 07:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/mni/xmlsecurity/uiconfig/ui.po b/source/mni/xmlsecurity/uiconfig/ui.po
index 385cbec5c15..fd210b51dae 100644
--- a/source/mni/xmlsecurity/uiconfig/ui.po
+++ b/source/mni/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 20:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr "লৌথোকপা"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/mr/desktop/source/deployment/gui.po b/source/mr/desktop/source/deployment/gui.po
index 38220424c26..f4a3aa53ed1 100644
--- a/source/mr/desktop/source/deployment/gui.po
+++ b/source/mr/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 02:41+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
"Language: mr\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467686462.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449857359.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
index 971f9017764..a009f4457e9 100644
--- a/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mr/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 03:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "विषय निवडा"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26994,15 +27111,6 @@ msgid "~Properties..."
msgstr "गुणधर्म..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/mr/sc/source/ui/src.po b/source/mr/sc/source/ui/src.po
index 29457062c52..2407c17b956 100644
--- a/source/mr/sc/source/ui/src.po
+++ b/source/mr/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 03:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -2702,7 +2702,7 @@ msgstr "#1 पासून #2 करीता व्याप्ति हलव
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "नेस्टेड अर्रे समूहाने आधार
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/mr/sfx2/source/view.po b/source/mr/sfx2/source/view.po
index 187176f2afe..449379511c7 100644
--- a/source/mr/sfx2/source/view.po
+++ b/source/mr/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/mr/svtools/source/control.po b/source/mr/svtools/source/control.po
index e79c8c8d1d2..19a163320d0 100644
--- a/source/mr/svtools/source/control.po
+++ b/source/mr/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "काळे तिरके"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/mr/svtools/source/misc.po b/source/mr/svtools/source/misc.po
index 6928d2b6b70..ae2662c8ae9 100644
--- a/source/mr/svtools/source/misc.po
+++ b/source/mr/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 22:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "बेक्वेल"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "कीतूब"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/mr/sw/source/core/undo.po b/source/mr/sw/source/core/undo.po
index 126e05a7599..c9f7f6f3d77 100644
--- a/source/mr/sw/source/core/undo.po
+++ b/source/mr/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 02:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -892,42 +892,82 @@ msgstr "स्तंभ खंडन"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 अंतर्भुत करा"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "काढून टाका $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "बदललेले गुणधर्म"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "बदललेली तालिका"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "बदललेली शैली"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/mr/sw/source/uibase/docvw.po b/source/mr/sw/source/uibase/docvw.po
index 490908f10b4..2abd5eb60dc 100644
--- a/source/mr/sw/source/uibase/docvw.po
+++ b/source/mr/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 07:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/mr/sw/source/uibase/ribbar.po b/source/mr/sw/source/uibase/ribbar.po
index 0a0916a2e06..666ba87da2e 100644
--- a/source/mr/sw/source/uibase/ribbar.po
+++ b/source/mr/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 17:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/mr/sw/source/uibase/uiview.po b/source/mr/sw/source/uibase/uiview.po
index 20cec63d79b..6dba333f081 100644
--- a/source/mr/sw/source/uibase/uiview.po
+++ b/source/mr/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 07:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/mr/xmlsecurity/uiconfig/ui.po b/source/mr/xmlsecurity/uiconfig/ui.po
index ed91d4cc65d..1e8d1b18818 100644
--- a/source/mr/xmlsecurity/uiconfig/ui.po
+++ b/source/mr/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 20:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
@@ -173,6 +173,15 @@ msgstr "काढून टाका"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/my/desktop/source/deployment/gui.po b/source/my/desktop/source/deployment/gui.po
index 94581ccdddd..7e8cedf9b6f 100644
--- a/source/my/desktop/source/deployment/gui.po
+++ b/source/my/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-02 01:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po b/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
index fb59681a718..0ab489e6aee 100644
--- a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/my/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "အဓိက ဆိုလိုရင်းများ ရွေးပါ"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4073,6 +4073,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26988,15 +27105,6 @@ msgid "~Properties..."
msgstr "ဂုဏ်သတ္တိများ..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/my/sc/source/ui/src.po b/source/my/sc/source/ui/src.po
index 588c01b15b4..68438278a6d 100644
--- a/source/my/sc/source/ui/src.po
+++ b/source/my/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 03:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2693,7 +2693,7 @@ msgstr "#1 မှ #2 သို့ နေရာရွှေ့ပြောင်
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2858,7 +2858,7 @@ msgstr "နတ်စတက်အရေး(ရ်)ကို အထောက်အ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/my/sfx2/source/view.po b/source/my/sfx2/source/view.po
index 33c362caac7..65af18b59dc 100644
--- a/source/my/sfx2/source/view.po
+++ b/source/my/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/my/svtools/source/control.po b/source/my/svtools/source/control.po
index 639f8bfbbb1..051b5372335 100644
--- a/source/my/svtools/source/control.po
+++ b/source/my/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "အနက်ရောင်စာလုံးစောင်း"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/my/svtools/source/misc.po b/source/my/svtools/source/misc.po
index f043f0e3e19..52d8a8c5fbe 100644
--- a/source/my/svtools/source/misc.po
+++ b/source/my/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 22:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,9 +3180,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3909,6 +3909,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/my/sw/source/core/undo.po b/source/my/sw/source/core/undo.po
index cbabe194bb3..f07e45bbfc1 100644
--- a/source/my/sw/source/core/undo.po
+++ b/source/my/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "ကော်လံပြတ်တောက်မှု"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ထည့်ပါ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 ဖျက်ပါ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ပင်ကိုယ်အရည်အချင်းများ ပြောင်းသည်"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ဇယား ပြောင်းသည်"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ပုံစံပြောင်းသည်"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/my/sw/source/uibase/docvw.po b/source/my/sw/source/uibase/docvw.po
index a8ca7c256ea..72f433c4425 100644
--- a/source/my/sw/source/uibase/docvw.po
+++ b/source/my/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 08:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/my/sw/source/uibase/ribbar.po b/source/my/sw/source/uibase/ribbar.po
index 2d85d4d87c6..cb798349d4e 100644
--- a/source/my/sw/source/uibase/ribbar.po
+++ b/source/my/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 19:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/my/sw/source/uibase/uiview.po b/source/my/sw/source/uibase/uiview.po
index a3f0ece07b4..427307d8936 100644
--- a/source/my/sw/source/uibase/uiview.po
+++ b/source/my/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 08:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/my/xmlsecurity/uiconfig/ui.po b/source/my/xmlsecurity/uiconfig/ui.po
index d442bb205fe..b6871a161c3 100644
--- a/source/my/xmlsecurity/uiconfig/ui.po
+++ b/source/my/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 20:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/nb/cui/source/options.po b/source/nb/cui/source/options.po
index 88bac2c39a8..4bb2b3ed987 100644
--- a/source/nb/cui/source/options.po
+++ b/source/nb/cui/source/options.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-24 22:33+0000\n"
+"PO-Revision-Date: 2017-06-19 14:55+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485297219.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497884104.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"RID_SVXSTR_HEADER1\n"
"string.text"
msgid "[L]"
-msgstr "[O]"
+msgstr "[O] "
#: optfltr.src
msgctxt ""
diff --git a/source/nb/desktop/source/deployment/gui.po b/source/nb/desktop/source/deployment/gui.po
index 02ca1da224f..1c5f4086682 100644
--- a/source/nb/desktop/source/deployment/gui.po
+++ b/source/nb/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 03:17+0000\n"
-"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-08-31 18:35+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467688643.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1441046132.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/nb/filter/source/config/fragments/filters.po b/source/nb/filter/source/config/fragments/filters.po
index 692e809cd06..61eb234ddb3 100644
--- a/source/nb/filter/source/config/fragments/filters.po
+++ b/source/nb/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 08:24+0000\n"
+"PO-Revision-Date: 2017-06-18 15:33+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492417463.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497800021.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/nb/filter/source/config/fragments/types.po b/source/nb/filter/source/config/fragments/types.po
index dcce052b9b7..a7178601d70 100644
--- a/source/nb/filter/source/config/fragments/types.po
+++ b/source/nb/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 08:24+0000\n"
+"PO-Revision-Date: 2017-06-18 15:33+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492417471.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497800027.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/sbasic/shared.po b/source/nb/helpcontent2/source/text/sbasic/shared.po
index c87bc23b142..cb5542d6eef 100644
--- a/source/nb/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nb/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-01-25 01:23+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-19 15:12+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485307412.000000\n"
+"X-POOTLE-MTIME: 1497885135.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3150324\n"
"help.text"
msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
-msgstr ""
+msgstr "I URL-notasjonen er det en del spesialtegn som er ulovlige å bruke. Disse blir enten byttet ut med andre tegn eller blir kodet. Det blir brukt skråstrek (<emph>/</emph>) som skilletegn. En fil som for eksempel blir skrevet som <emph>C:\\Min Fil.odt</emph> på en \"Windowsmaskin\", blir til <emph>ile:///C|/My%20File.odt</emph> i URL-notasjon."
#: 00000003.xhp
msgctxt ""
@@ -478,6 +478,38 @@ msgctxt ""
"par_id051920171018124524\n"
"help.text"
msgid "This function is enabled with the statement <item type=\"literal\">Option VBASupport 1</item> placed before the executable program code in a module."
+msgstr "Denne funksjonen er slått på med uttrykket <item type=\"literal\">Option VBASupport 1</item> satt foranden kjørbare programkoden i en modul."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
#: 00000003.xhp
@@ -485,8 +517,8 @@ msgctxt ""
"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Feilkoder</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -1350,7 +1382,7 @@ msgctxt ""
"par_id31455973\n"
"help.text"
msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err973\">973 ikke tillatt i en prosedyre</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1358,7 +1390,7 @@ msgctxt ""
"par_id31455974\n"
"help.text"
msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err974\">974 er ikke tillatt utenfor en prosedyre</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1878,7 +1910,7 @@ msgctxt ""
"par_id3155072\n"
"help.text"
msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
-msgstr ""
+msgstr "Uttrykket <emph>Option Explicit</emph> må være på den første linjen i modulen, foran den første SUB-prosedyren. Normalt skal bare tabeller («array») deklarerest spesielt. Alle andre variablar blir deklarerte med typedeklarasjonstegnet eller, dersom dette er sløyfet, som standardtypen <emph>Single</emph>."
#: 01020100.xhp
msgctxt ""
@@ -1902,7 +1934,7 @@ msgctxt ""
"par_id3153972\n"
"help.text"
msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers."
-msgstr ""
+msgstr "<emph>Numeriske</emph> variabler inneholder tallverdier. Variablene blir brukt til å lagre store eller små tall, desimaltall eller brøk."
#: 01020100.xhp
msgctxt ""
@@ -1910,7 +1942,7 @@ msgctxt ""
"par_id3159226\n"
"help.text"
msgid "<emph>String</emph> variables contain character strings."
-msgstr ""
+msgstr "<emph>Streng</emph>-variablene inneholder tegnstrenger (tekst)."
#: 01020100.xhp
msgctxt ""
@@ -1918,7 +1950,7 @@ msgctxt ""
"par_id3145217\n"
"help.text"
msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
-msgstr ""
+msgstr "<emph>Logiske</emph> variabler kan ha verdiene SANT (TRUE) eller FALSKT(FALSE)."
#: 01020100.xhp
msgctxt ""
@@ -1926,7 +1958,7 @@ msgctxt ""
"par_id3154762\n"
"help.text"
msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
-msgstr ""
+msgstr "<emph>Object</emph>-variablene kan lagre ulike typer objekter som feks tabeller og dokument i et dokument."
#: 01020100.xhp
msgctxt ""
@@ -1934,7 +1966,7 @@ msgctxt ""
"hd_id3153805\n"
"help.text"
msgid "Integer Variables"
-msgstr ""
+msgstr "Heltallsvariabler"
#: 01020100.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/nb/helpcontent2/source/text/scalc.po b/source/nb/helpcontent2/source/text/scalc.po
index 7ec48f15c7a..fc20c3102d0 100644
--- a/source/nb/helpcontent2/source/text/scalc.po
+++ b/source/nb/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-06-12 07:17+0000\n"
+"PO-Revision-Date: 2017-06-21 17:24+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1465715838.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498065893.000000\n"
#: main0000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id033020170228348624\n"
"help.text"
msgid "Show Formula"
-msgstr ""
+msgstr "Vis formel"
#: main0103.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id03302017024610704\n"
"help.text"
msgid "Display the cell formula expression instead of the calculated result."
-msgstr ""
+msgstr "Vis cllens formeluttrykket i steden for resultatet."
#: main0103.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galleriet</link>"
#: main0103.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared.po b/source/nb/helpcontent2/source/text/shared.po
index 4a775a11581..cdadab222ab 100644
--- a/source/nb/helpcontent2/source/text/shared.po
+++ b/source/nb/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-26 02:53+0000\n"
+"PO-Revision-Date: 2017-06-21 17:36+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485399238.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498066565.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Velg en ekstruderingsdybde"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Velg et perspektiv eller en parallell ekstruderingsmetode."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Velg retning på lyssetingen. "
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Velg styrke på lyssettingen."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Velg et overflatemateriale eller en trådrammevisning."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Velg dette for å bruke justeringa på de valgte skriftformingsobjektene."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Velg dette for å angi mellomrom mellom tegn i de valgte skriftformingsobjektene."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Åpner dialogvinduet for mellomrom mellom tegn i skriftforminga. Der kan du skrive inn en verdi for mellomrom."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Slår <link href=\"text/shared/00/00000005.xhp#kerning\">kniping</link> av tegnpar på eller av."
#: main0108.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN1064A\n"
"help.text"
msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">ikon</alt></image>"
#: main0108.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"hd_id230120170827187813\n"
"help.text"
msgid "User Guides"
-msgstr ""
+msgstr "Brukerveiledninger"
#: main0108.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id230120170827189453\n"
"help.text"
msgid "<ahelp hid=\".uno:Documentation\">Opens the documentation page in the web browser, where users can download, read or purchase %PRODUCTNAME user guides, written by the community.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Documentation\">Åpner dokumentasjonssiden i nettleseren der brukeren kan laste ned, lese eller skaffa seg brukerveiledninger for %PRODUCTNAME.</ahelp> "
#: main0108.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id230120170827196253\n"
"help.text"
msgid "Get Help Online"
-msgstr ""
+msgstr "Få hjelp på nettet"
#: main0108.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id230120170827196850\n"
"help.text"
msgid "<ahelp hid=\".uno:QuestionAnswers\">Opens the community support page in the web browser.</ahelp> Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the <link href=\"http://www.documentfoundation.org/gethelp/support/\">page of professional %PRODUCTNAME support</link>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:QuestionAnswers\">Åpner siden for brukerstøtte (på engelsk) i nettleseren.</ahelp> Bruk denne siden til å spørre om bruk av %PRODUCTNAME. For profesjonell støtte med SLA avtale besøk nettsiden for <link href=\"http://www.documentfoundation.org/gethelp/support/\">oversikt over professionell %PRODUCTNAME support ressurser</link>."
#: main0108.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id230120170903409011\n"
"help.text"
msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Restart in Safe Mode</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/profile_safe_mode.xhp\">Start på nytt i sikker modus</link>"
#: main0108.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id281120160939285779\n"
"help.text"
msgid "<ahelp hid=\".uno:SafeMode\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SafeMode\">Sikker modus er en modus der %PRODUCTNAME åpnes med en ny brukerprofil og frakoblet maskinvareakselerasjon. Dette kan være til hjelp for å gjenopprette en installasjon av %PRODUCTNAME som ikkj fungerer.</ahelp>"
#: main0108.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/00.po b/source/nb/helpcontent2/source/text/shared/00.po
index c66c2c86a22..87b714f5a6d 100644
--- a/source/nb/helpcontent2/source/text/shared/00.po
+++ b/source/nb/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-22 16:57+0000\n"
"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/nb/helpcontent2/source/text/shared/01.po b/source/nb/helpcontent2/source/text/shared/01.po
index d710de5ecd7..89fddbadaf2 100644
--- a/source/nb/helpcontent2/source/text/shared/01.po
+++ b/source/nb/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 12:25+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Velg avsnittsstilen du vil bruke for å dele kildedokumentet i underdokumenter.</ahelp> Standardstilen for avsnitt er «Overskrift 1»."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Velg å eksportere bokmerker i Writer-dokumenter som PDF-bokmerker. Bokmerker lages for alle overskrifter (Verktøy → Disposisjonsnummerering …) og for alle elementer i innholdsfortegnelsen som du har gitt lenker i kildedokumentet.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/optionen.po b/source/nb/helpcontent2/source/text/shared/optionen.po
index 5575a3d8d5a..7a203d9c42c 100644
--- a/source/nb/helpcontent2/source/text/shared/optionen.po
+++ b/source/nb/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-02-25 22:36+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/nb/helpcontent2/source/text/swriter.po b/source/nb/helpcontent2/source/text/swriter.po
index 375eb9c178f..8bb38c294ab 100644
--- a/source/nb/helpcontent2/source/text/swriter.po
+++ b/source/nb/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-02-21 11:41+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 17:46+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487677301.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498067186.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"bm_id030820161851045883\n"
"help.text"
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tilpassede klassifiseringsnivåer</bookmark_value> <bookmark_value>klassifiseringsnivåer;tilpass</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id030820161747133280\n"
"help.text"
msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file <item type=\"literal\">example.xml</item> located in <item type=\"menuitem\">Tools - Options - LibreOffice - Paths - Classification</item> into a local folder and edit the contents."
-msgstr ""
+msgstr "%PRODUCTNAME tillater tilpassing av klassifikasjonsniåene i din virksomhet. For å tilpasse antall og også navnene på hvert nivå, kopier filen<item type=\"literal\">example.xml</item>som finnes i<item type=\"menuitem\">Verktøy -> Alternativer->LibreOfiice->stier->Klassifikasjon</item>inn i en lokal mappeog modifiser innholdet."
#: classificationbar.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id030820161747137522\n"
"help.text"
msgid "Save the file and make the adequate changes to the classification path above to access the file."
-msgstr ""
+msgstr "Lagre filen og skap klassifiseringstien over aksessen for filen."
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom fields tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "Klassifikasjonsverktøylinjen inneholder listebokser som hjelper deg sette sikkerhetsnivå for dokumenteti henhold til<item type=\"acronym\">BAF</item>kategoriretningslinjene og<item type=\"acronym\">BAILS</item>nivåer. %PRODUCTNAME legger til spesialfelten i dokumentegenskapene(<item type=\"menuitem\">Fil->Egenskaper</item>, Spesialfeltmenyen) for å lagre klassifikasjonsretningslinjene som metadata for dokumentet."
#: classificationbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id030820161754175408\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars </item>and select <item type=\"menuitem\">Classification</item>"
-msgstr ""
+msgstr "Gå tilmeny<item type=\"menuitem\">Vis->Menylinjer</item>og velg<item type=\"menuitem\">Klassifikasjon</item>"
#: classificationbar.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Toolbar"
-msgstr ""
+msgstr "Verktøylinjen for brevfletting"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"hd_id201703240024554113\n"
"help.text"
msgid "<link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/mailmergetoolbar.xhp\">Verktøylinjen for brevfletting</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id201703240025596148\n"
"help.text"
msgid "The Mail Merge Toolbar contains commands for the final steps of the mail merge process."
-msgstr ""
+msgstr "Verktøylinjen for brevfletting inneholder kommandoer for de siste stegene i flettingsprosessen."
#: mailmergetoolbar.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id030820161754175468\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars</item> and select <item type=\"menuitem\">Mail Merge</item>"
-msgstr ""
+msgstr "Gå til menyen <item type=\"menuitem\">Vis → Verktøylinjer</item> og velg<item type=\"menuitem\">Brevfletting</item>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "(Recipient number)"
-msgstr ""
+msgstr "(Mottaker nummer)"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the address record number of a recipient to preview the mail merge document for the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Velg adressepostnummeret til en mottaker for å forhåndsvise det flettede dokumentet til denne mottakeren.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Use the browse buttons to scroll through the address records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Du kan bruke pilknappene til å bla gjennom adressepostene.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "Exclude recipient"
-msgstr ""
+msgstr "Ikke ta med denne mottakeren"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<ahelp hid=\".\">Excludes the current recipient from this mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Denne mottakeren blir utelatt fra brevflettingen.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "Edit Individual Documents"
-msgstr ""
+msgstr "Rediger enkeltdokument"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a single merged document with page breaks between each recipient.</ahelp> The names and the addresses of the recipients are contained in the document, which can be customized as needed."
-msgstr ""
+msgstr "<ahelp hid=\".\">Lager et flettet dokument med sideskift mellom hver mottager.</ahelp> Navnet og adressen på mottagerne ligger i dokumentet og kan tilpasses hvis nødvendig."
#: main0000.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id03302017034826145\n"
"help.text"
msgid "Track Changes"
-msgstr ""
+msgstr "Spor endringer "
#: main0103.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galleriet</link>"
#: main0103.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Disposisjonsnumrering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Kapittelnummerering</link>"
#: main0106.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_idN1060A\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the current table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sletter den gjeldende tabellen.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_idN10638\n"
"help.text"
msgid "<ahelp hid=\".\">Selects the current cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Velger den gjeldende cellen.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_idN1071D\n"
"help.text"
msgid "Break Across Pages"
-msgstr ""
+msgstr "Del over sider"
#: main0110.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_idN10720\n"
"help.text"
msgid "Allows a page break within the current row."
-msgstr ""
+msgstr "Tillat sideskift i den gjeldende raden."
#: main0110.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_idN105FF\n"
"help.text"
msgid "Repeat Heading Rows"
-msgstr ""
+msgstr "Gjenta overskriftstrader"
#: main0110.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_idN1072D\n"
"help.text"
msgid "<ahelp hid=\".\">Repeats the table headers on subsequent pages if the table spans one or more pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gjenta tabelloverskriftene på etterfølgende sider hvis tabellen går over mer enn en side.</ahelp>"
#: main0110.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/swriter/00.po b/source/nb/helpcontent2/source/text/swriter/00.po
index 13f3b56ef4a..694b40ed750 100644
--- a/source/nb/helpcontent2/source/text/swriter/00.po
+++ b/source/nb/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-02-21 12:14+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Velg <emph>Verktøy → Disposisjonsnummerering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Velg <emph>Verktøy → Disposisjonsnummerering → Nummerering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Velg <emph>Verktøy → Linjenummerering</emph> (gjelder ikke HTML-dokumenter)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/swriter/01.po b/source/nb/helpcontent2/source/text/swriter/01.po
index a10a5e821e6..6c0847b6d33 100644
--- a/source/nb/helpcontent2/source/text/swriter/01.po
+++ b/source/nb/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-02-21 17:34+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Trykk <emph>1</emph> hvis du bare vil se overskriftene på toppnivået i dokumentstrukturvinduet. Trykk <emph>10</emph> hvis du vil se alle overskriftene.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Hvis du velger «Kapittelnummer uten skilletegn» for et kapittelfelt, skjules skilletegnene som er angitt for kapittelnumre i <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Verktøy → Disposisjonsnummerering</emph></link>."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Setter inn kapittelnummeret. For å kopble en kapittelnummerering til en overskriftsstil, velg <emph> Verktøy → Disposisjonsnummerering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Disposisjonsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Disposisjonsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Disposisjonsnummerering er knyttet til avsnittsstiler. Som standard er avsnittsstilene «Overskrift»(1-10) tildelt til det tilsvarende disposisjonnivået (1-10). Hvis du vil, kan du tildele andre avsnittsstiler til disposisjonsnivået."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Hvis du vil bruke nummererte overskrifter, kan du velge <emph>Verktøy → Disposisjonsnummerering</emph> for å tildele nummerering til en avsnittsstil. Du bør ikke bruke nummereringsknappen på formateringsverktøylinja til dette."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Du kan få disposisjonsnumre til å vises tydeligere på skjermen ved å velge <emph>Vis -</emph><emph>Feltskygge</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Lagrer eller laster inn et format for disposisjonsnummerering. Et slikt lagret format for disposisjonsnummerering er tilgjengelig for alle tekstdokumenter.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Formater</emph>-knappen er bare tilgjengelig når du bruker disposisjonsnummerering. Når du bruker stiler på nummererte lister og punktlister, kan du bruke avsnittenes nummereringsstiler."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Åpner et dialogvindu der du kan lagre de gjeldende innstillingene for det valgte disposisjonsnivået. På denne måten kan du laste disse innstillingene inn i et annet dokument senere.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Velg disposisjonsnivået du vil endre, og angi nummereringsvalgene du vil bruke på dette nivået.</ahelp> Du kan velge «1-10» hvis du vil bruke valgene for nummerering, unntatt avsnittsstilen, på alle nivåene."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Brukes til å velge avsnittsstilen du vil tildele til det valgte disposisjonsnivået.</ahelp> Hvis du velger «Ingen», blir det ikke angitt noen avsnittsstil for det valgte disposisjonsnivået."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Ny adresseblokk"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Ny adresseblokk"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adresseelementer"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Dra adresseelementer hit"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/swriter/guide.po b/source/nb/helpcontent2/source/text/swriter/guide.po
index c49643ffd54..b437b82a069 100644
--- a/source/nb/helpcontent2/source/text/swriter/guide.po
+++ b/source/nb/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-02-21 19:11+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Du kan flytte overskrifter og tekst oppover og nedover i et dokument ved å bruke Dokumentstruktur. Du kan også endre nivå på overskriftene. For å bruke dette verktøyet, formater overskriftene i dokumentet med en av de forhåndsinnstilte avsnittsstilene. For å bruke en selvvalgt avsnittsstil på en overskrift, velg <emph>Verktøy → Disposisjonsnummerering</emph>, velg stilen i boksen <emph>Avsnittsstil</emph> og dobbeltklikk deretter på et tall i <emph>Nivålista</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Disposisjonsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>disposisjon;nummerering</bookmark_value><bookmark_value>slette;overskriftsnumre</bookmark_value><bookmark_value>kapittelnummerering</bookmark_value><bookmark_value>overskrifter; nummerering/avsnittsstiler</bookmark_value><bookmark_value>nummerering;overskrifter</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Disposisjonsnummerering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Du kan endre disposisjonen på overskriftene eller gi et nivå i disposisjonen en tilpasssa avsnittsstil. Du kan også legge nummerering av kapitler og bolker til stiler for avsnittsoverskrifter. Som standard står avsnittsstilen «Overskrift 1» på øverste stilnivå."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Velg <item type=\"menuitem\">Verktøy → Disposisjonsnummerering</item> og trykk på fanen <item type=\"menuitem\">Nummerering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "For å fjerne automatisk disposisjonsnummerering fra en avsnittsstil"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Velg <item type=\"menuitem\">Verktøy → Disposisjonsnummerering</item> og trykk på fanen <item type=\"menuitem\">Nummerering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Før du kan sette inn kapittelinformasjon i en topp- eller bunntekst, må du velge disposisjonsnummerering for avsnittsstilen du vil bruke kapitteltitler på."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Velg <emph>Verktøy → Disposisjonsnummerering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>registere; lage oppføringer i</bookmark_value><bookmark_value>innholdslister; lage oppføringer i</bookmark_value><bookmark_value>oppføringer; lage i registere og innholdslister</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Velg <emph>Sett inn → Register/innholdsliste → Stikkordmarkering</emph>, og gjør dette:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Velg <emph>Verktøy → Disposisjonsnummerering</emph> og trykk på fanen <emph>Nummerering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Hvis du vil bruke en annen avsnittsstil som en stil i innholdslista, kan du velge avkryssingsboksen <item type=\"menuitem\">Flere stiler</item> i området <item type=\"menuitem\">Lag fra</item> og så trykke på (<item type=\"menuitem\">…</item>). I dialogvinduet <item type=\"menuitem\">Tildele stiler</item> må du trykke på avsnittsstilene på lista og deretter på knappen <item type=\"menuitem\">>></item> eller <item type=\"menuitem\"><<</item> for å angi disposisjonsnivået."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Hvis du vil bruke en annen avsnittsstil som en stil innholdslista, kan du velge<item type=\"menuitem\">Tilleggsstiler</item>og så klikke <item type=\"menuitem\">Tildel stiler</item> knappen ved siden av boksen. Klikk stilen i lista , og klikk <item type=\"menuitem\">>></item>eller<item type=\"menuitem\">><<<<<</item>knappen for å angi disposisjonsnivået."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>nummerering; fjerne/avbryte</bookmark_value><bookmark_value>punktlister; avbryte</bookmark_value><bookmark_value>lister;fjerne/avbryte nummerering</bookmark_value><bookmark_value>slette;tall i lister</bookmark_value><bookmark_value>avbryte nummererte lister</bookmark_value><bookmark_value>endre;starttall i lister</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Hvis du ønsker nummererte overskrifter, bruk menyen <emph>Verktøy → Disposisjonsnummerering</emph> for å tildele en nummerering til en avsnittsstil. Unngå å bruke knappen «Nummerering» på verktøylinja Formatering."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
index 0b201b248f4..1985394fa7a 100644
--- a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-22 17:03+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-19 14:54+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495472602.000000\n"
+"X-POOTLE-MTIME: 1497884088.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Velg temaer"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Sett inn..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Hovedutforming for lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Notater Standard utforming"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Notater"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Visnings flikstolpe"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7943,7 +8060,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Views Tab Bar Visibility"
-msgstr ""
+msgstr "Slå av eller på vising av fanelinje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Notat standardoppsett"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "Lysbildepanel"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Verktøylinje utforming"
#: GenericCommands.xcu
msgctxt ""
@@ -23437,7 +23554,6 @@ msgid "Gap"
msgstr "Mellomrom"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:UnaryBinaryMenu\n"
@@ -23480,7 +23596,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "O~perators"
-msgstr ""
+msgstr "Operatorer"
#: MathCommands.xcu
msgctxt ""
@@ -23519,7 +23635,6 @@ msgid "~Others"
msgstr "~Andre"
#: MathWindowState.xcu
-#, fuzzy
msgctxt ""
"MathWindowState.xcu\n"
"..MathWindowState.UIElements.States.private:resource/popupmenu/edit\n"
@@ -26699,15 +26814,6 @@ msgstr "~Egenskaper …"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objekt"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26982,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Overskriftsraden blir brukt på alle sidene"
#: WriterCommands.xcu
msgctxt ""
@@ -28440,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Rad for å bryte over flere sider"
#: WriterCommands.xcu
msgctxt ""
@@ -29322,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Punktliste"
#: WriterCommands.xcu
msgctxt ""
@@ -29331,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Nummerert liste"
#: WriterCommands.xcu
msgctxt ""
@@ -29340,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Liste med romertall"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nb/reportdesign/uiconfig/dbreport/ui.po b/source/nb/reportdesign/uiconfig/dbreport/ui.po
index 5066932e0dc..c39a900c6ae 100644
--- a/source/nb/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/nb/reportdesign/uiconfig/dbreport/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-22 17:04+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"PO-Revision-Date: 2017-06-18 15:38+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495472667.000000\n"
+"X-POOTLE-MTIME: 1497800318.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -638,7 +638,6 @@ msgid "Sorting and Grouping..."
msgstr "Sortering og gruppering …"
#: navigatormenu.ui
-#, fuzzy
msgctxt ""
"navigatormenu.ui\n"
"page\n"
@@ -654,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Report Header/Footer..."
-msgstr ""
+msgstr "Topptekst/bunntekst for rapporten …"
#: navigatormenu.ui
msgctxt ""
diff --git a/source/nb/sc/source/ui/src.po b/source/nb/sc/source/ui/src.po
index bec3c4d2163..3258273ce3e 100644
--- a/source/nb/sc/source/ui/src.po
+++ b/source/nb/sc/source/ui/src.po
@@ -3,9 +3,9 @@ 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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-22 17:19+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-19 14:53+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495473580.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497883993.000000\n"
#: globstr.src
msgctxt ""
@@ -1964,7 +1964,7 @@ msgctxt ""
"STR_UNDO_RENAME_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Gi arket nytt navn"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Området flyttet fra #1 til #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Nøstede tabeller er ikke støttet."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
@@ -3925,7 +3925,7 @@ msgctxt ""
"STR_QUERY_PIVOTTABLE_DELTAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-msgstr ""
+msgstr "Det merkede arket/ arkene inneholder kildedata tilhørende pivottabeller. Disse vil gå tapt. Vil du likevel slette det/de merkede arket/ arkene?"
#: globstr.src
msgctxt ""
@@ -3933,7 +3933,7 @@ msgctxt ""
"STR_ERR_NAME_INVALID_CELL_REF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
-msgstr ""
+msgstr "Ugyldig navn. Det er ikke lov til å referere til ni celle eller et celleområde."
#: scfuncs.src
msgctxt ""
@@ -5593,6 +5593,8 @@ msgid ""
"Calculates the calendar week corresponding to the given date.\n"
"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
msgstr ""
+"Regner ut kalenderuka som tilsvarer den angitte datoen.\n"
+"Denne funksjonen er kun interoperabel med %PRODUCTNAME 5.0 og tidligere og OpenOffice.org."
#: scfuncs.src
msgctxt ""
@@ -10231,6 +10233,8 @@ msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Runder av et tall fra null til nærmeste multiplum av signifikans.\n"
+" Funksjonen finnes for interoperabilitet med Microsoft Excel 2007 eller eldre versjoner."
#: scfuncs.src
msgctxt ""
@@ -10558,6 +10562,8 @@ msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Avrunder tall mot 0 til den nærmeste multiple absolutte verdien av signifikans.\n"
+"Denne funksjonen brukes for interoperabilitet med MS Excel 2007 eller eldre. "
#: scfuncs.src
msgctxt ""
@@ -22860,7 +22866,7 @@ msgctxt ""
"Rounds a number to predefined significant digits.\n"
"itemlist.text"
msgid "Rounds a number to predefined significant digits."
-msgstr ""
+msgstr "Avrunder et tall til en forhåndsdefinert antall siffer."
#: scfuncs.src
msgctxt ""
@@ -22896,7 +22902,7 @@ msgctxt ""
"The number of significant digits to which value is to be rounded.\n"
"itemlist.text"
msgid "The number of significant digits to which value is to be rounded."
-msgstr ""
+msgstr "Tallet på signifikante siffer som verdien skal avrundes til."
#: scstring.src
msgctxt ""
diff --git a/source/nb/scp2/source/ooo.po b/source/nb/scp2/source/ooo.po
index 53ae3c84d49..4ae33918a20 100644
--- a/source/nb/scp2/source/ooo.po
+++ b/source/nb/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-24 19:05+0000\n"
+"PO-Revision-Date: 2017-06-18 15:39+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485284701.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497800362.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Overserbisk"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Installerer oversorbisk brukergrensesnitt"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/nb/sd/source/ui/app.po b/source/nb/sd/source/ui/app.po
index 02d38477b68..14575453488 100644
--- a/source/nb/sd/source/ui/app.po
+++ b/source/nb/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-17 11:29+0000\n"
+"PO-Revision-Date: 2017-06-19 14:33+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492428565.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497882818.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "Den lokale målmappa «%FILENAME» er ikke tom. Noen filer kan bli overskrevet. Vil du fortsette?"
#: toolbox.src
msgctxt ""
diff --git a/source/nb/sd/uiconfig/simpress/ui.po b/source/nb/sd/uiconfig/simpress/ui.po
index 33f6ed74714..18cb3a51b46 100644
--- a/source/nb/sd/uiconfig/simpress/ui.po
+++ b/source/nb/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-22 17:30+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"PO-Revision-Date: 2017-06-19 14:35+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: none\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495474244.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497882940.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Underline"
-msgstr ""
+msgstr "Understreket"
#: annotationmenu.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Strikethrough"
-msgstr ""
+msgstr "Gjennomstreking"
#: annotationmenu.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Effect Options..."
-msgstr ""
+msgstr "_Effektinnstillinger …"
#: effectmenu.ui
msgctxt ""
@@ -4028,7 +4028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Quarter Spin"
-msgstr ""
+msgstr "Kvart runde"
#: rotatemenu.ui
msgctxt ""
@@ -4037,7 +4037,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Half Spin"
-msgstr ""
+msgstr "Halv runde"
#: rotatemenu.ui
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Full Spin"
-msgstr ""
+msgstr "Hel runde"
#: rotatemenu.ui
msgctxt ""
@@ -4055,7 +4055,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Two Spins"
-msgstr ""
+msgstr "To runder"
#: rotatemenu.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "Musepeker som pen"
#: slidecontextmenu.ui
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thin"
-msgstr ""
+msgstr "_Veldig tynn"
#: slidecontextmenu.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "_Endre pennfarge …"
#: slidecontextmenu.ui
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "_Fjern allt blekk på lysbildet"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/nb/sfx2/source/view.po b/source/nb/sfx2/source/view.po
index 2520cc20134..971c478ec93 100644
--- a/source/nb/sfx2/source/view.po
+++ b/source/nb/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-17 09:03+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr "Dette dokumentet har en ugyldig sgnatur."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/nb/starmath/source.po b/source/nb/starmath/source.po
index 89b953af48e..d691c22457f 100644
--- a/source/nb/starmath/source.po
+++ b/source/nb/starmath/source.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-22 17:32+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"PO-Revision-Date: 2017-06-19 14:44+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495474332.000000\n"
+"X-POOTLE-MTIME: 1497883473.000000\n"
#: commands.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"RID_LIMINF_TOX_HELP\n"
"string.text"
msgid "Limit Inferior Superscript Top"
-msgstr ""
+msgstr "Begrens Inferior hevet superskript Topp"
#: commands.src
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"RID_LIMINF_FROMTOX_HELP\n"
"string.text"
msgid "Limit Inferior Sup/Sub script"
-msgstr ""
+msgstr "Begrens Inferior senket/hevet skrift"
#: commands.src
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"RID_LIMSUP_TOX_HELP\n"
"string.text"
msgid "Limit Superior Superscript Top"
-msgstr ""
+msgstr "Begrens Inferior hevet superskript Topp"
#: commands.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"RID_LIMSUP_FROMTOX_HELP\n"
"string.text"
msgid "Limit Superior Sup/Sub script"
-msgstr ""
+msgstr "Begrens Superior senket/hevet skript"
#: commands.src
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"RID_ERR_PARENTMISMATCH\n"
"string.text"
msgid "Left and right symbols mismatched"
-msgstr ""
+msgstr "Venstre og høyre symbol passer ikke sammen"
#: smres.src
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"RID_ERR_FONTEXPECTED\n"
"string.text"
msgid "'fixed', 'sans', or 'serif' expected"
-msgstr ""
+msgstr "Ventet «fixed», «sans». eller «serif»"
#: smres.src
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"RID_ERR_SIZEEXPECTED\n"
"string.text"
msgid "'size' followed by an unexpected token"
-msgstr ""
+msgstr "Tegnet etter «size» er uventet"
#: smres.src
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"RID_ERR_DOUBLEALIGN\n"
"string.text"
msgid "Double aligning is not allowed"
-msgstr ""
+msgstr "Dobbel justering er ikke lov"
#: smres.src
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"RID_ERR_DOUBLESUBSUPSCRIPT\n"
"string.text"
msgid "Double sub/superscripts is not allowed"
-msgstr ""
+msgstr "Dobbel hevet/senket skrift er ikke lov"
#: smres.src
msgctxt ""
diff --git a/source/nb/svtools/source/control.po b/source/nb/svtools/source/control.po
index 14d37a2f31d..bc683f241af 100644
--- a/source/nb/svtools/source/control.po
+++ b/source/nb/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-03-02 18:24+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Svart kursiv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/nb/svtools/source/misc.po b/source/nb/svtools/source/misc.po
index 07ab5fb76a3..95761c81b62 100644
--- a/source/nb/svtools/source/misc.po
+++ b/source/nb/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-17 09:17+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/nb/svx/source/tbxctrls.po b/source/nb/svx/source/tbxctrls.po
index 20c20dc351b..eb1942a9113 100644
--- a/source/nb/svx/source/tbxctrls.po
+++ b/source/nb/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-25 17:37+0000\n"
+"PO-Revision-Date: 2017-06-18 15:39+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485365868.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497800382.000000\n"
#: colrctrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_DEFAULT\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#: tbcontrl.src
msgctxt ""
diff --git a/source/nb/svx/uiconfig/ui.po b/source/nb/svx/uiconfig/ui.po
index 5086e82c2c3..686aa7f34fc 100644
--- a/source/nb/svx/uiconfig/ui.po
+++ b/source/nb/svx/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-22 17:43+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"PO-Revision-Date: 2017-06-18 15:41+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495475027.000000\n"
+"X-POOTLE-MTIME: 1497800495.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -4337,7 +4337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Count"
-msgstr ""
+msgstr "Teller"
#: functionmenu.ui
msgctxt ""
@@ -4373,7 +4373,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection count"
-msgstr ""
+msgstr "Antall markeringer"
#: functionmenu.ui
msgctxt ""
@@ -4853,7 +4853,6 @@ msgid "_Arrange"
msgstr "_Still opp"
#: imapmenu.ui
-#, fuzzy
msgctxt ""
"imapmenu.ui\n"
"front\n"
@@ -4863,17 +4862,15 @@ msgid "Bring to Front"
msgstr "Flytt fremst"
#: imapmenu.ui
-#, fuzzy
msgctxt ""
"imapmenu.ui\n"
"forward\n"
"label\n"
"string.text"
msgid "Bring _Forward"
-msgstr "_Flytt framover"
+msgstr "Flytt framover"
#: imapmenu.ui
-#, fuzzy
msgctxt ""
"imapmenu.ui\n"
"backward\n"
@@ -4889,7 +4886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Send to Back"
-msgstr ""
+msgstr "Flytt bakerst"
#: imapmenu.ui
msgctxt ""
@@ -4898,7 +4895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select _All"
-msgstr ""
+msgstr "Velg alt"
#: imapmenu.ui
msgctxt ""
@@ -5258,7 +5255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Constrain Objects"
-msgstr ""
+msgstr "Avgrens objektene"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -6030,7 +6027,6 @@ msgid "Delete Rows"
msgstr "Slett rader"
#: rowsmenu.ui
-#, fuzzy
msgctxt ""
"rowsmenu.ui\n"
"save\n"
diff --git a/source/nb/sw/source/core/undo.po b/source/nb/sw/source/core/undo.po
index 00727f3c3f4..4dc772184d8 100644
--- a/source/nb/sw/source/core/undo.po
+++ b/source/nb/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-17 09:31+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "spalteskift"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Sett inn $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Slett $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Egenskaper endret"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabell endret"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil endret"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/nb/sw/source/uibase/docvw.po b/source/nb/sw/source/uibase/docvw.po
index 9d47b2a4c8a..9ed221b80e5 100644
--- a/source/nb/sw/source/uibase/docvw.po
+++ b/source/nb/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:25+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Brukte avsnittsstiler"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/nb/sw/source/uibase/ribbar.po b/source/nb/sw/source/uibase/ribbar.po
index fd217670f80..1e0a4248433 100644
--- a/source/nb/sw/source/uibase/ribbar.po
+++ b/source/nb/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-25 23:13+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formeltekst"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/nb/sw/source/uibase/uiview.po b/source/nb/sw/source/uibase/uiview.po
index 795a10860e8..1c54528d82d 100644
--- a/source/nb/sw/source/uibase/uiview.po
+++ b/source/nb/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-06-11 21:52+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Eksporter kilde …"
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/nb/sw/uiconfig/swriter/ui.po b/source/nb/sw/uiconfig/swriter/ui.po
index 4439d3a6f47..5fb72a0f9a2 100644
--- a/source/nb/sw/uiconfig/swriter/ui.po
+++ b/source/nb/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-22 17:55+0000\n"
-"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
+"PO-Revision-Date: 2017-06-19 14:40+0000\n"
+"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495475741.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497883252.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Beskrivelse:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Rediger kommentar..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Sortert etter"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Handling"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Forfatter"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Kommentar"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Dokumentplassering"
#: mergeconnectdialog.ui
msgctxt ""
@@ -9891,7 +9891,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -9954,7 +9954,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10017,7 +10017,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Graphic"
-msgstr ""
+msgstr "Grafikk"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10056,14 +10056,13 @@ msgid "Bullets and Numbering"
msgstr "Punkter og nummerering"
#: notebookbar_groupedbar_compact.ui
-#, fuzzy
msgctxt ""
"notebookbar_groupedbar_compact.ui\n"
"SectionTop21\n"
"label\n"
"string.text"
msgid "Arrange"
-msgstr "_Still opp"
+msgstr "Ordne"
#: notebookbar_groupedbar_compact.ui
msgctxt ""
@@ -10135,7 +10134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " "
-msgstr ""
+msgstr "."
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10180,7 +10179,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "F_ormat"
-msgstr ""
+msgstr "Format"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10234,7 +10233,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafikk"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10243,7 +10242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "Ordne"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10279,7 +10278,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Format"
-msgstr ""
+msgstr "Format"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10315,7 +10314,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Merge"
-msgstr ""
+msgstr "Flett"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10441,7 +10440,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "Ordne"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10477,7 +10476,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "F_ormat"
-msgstr ""
+msgstr "Format"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10513,7 +10512,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Media"
-msgstr ""
+msgstr "_Media"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -10531,7 +10530,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Arrange"
-msgstr ""
+msgstr "Ordne"
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -11948,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Bruk rekkefølgen for LibreOffice 4.3 (i det gjeldende dokumentet)."
#: optcompatpage.ui
msgctxt ""
@@ -11957,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Brukerinnstillinger>"
#: optcompatpage.ui
msgctxt ""
@@ -15165,7 +15164,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image Off"
-msgstr ""
+msgstr "Bilde avslått"
#: readonlymenu.ui
msgctxt ""
@@ -19044,7 +19043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Skrifttype"
#: watermarkdialog.ui
msgctxt ""
@@ -19053,7 +19052,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Vinkel"
#: watermarkdialog.ui
msgctxt ""
@@ -19062,7 +19061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Gjennomsiktighet"
#: watermarkdialog.ui
msgctxt ""
@@ -19071,7 +19070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Farge"
#: wordcount.ui
msgctxt ""
diff --git a/source/nb/wizards/source/formwizard.po b/source/nb/wizards/source/formwizard.po
index 0432c1e7736..72ce8fbd414 100644
--- a/source/nb/wizards/source/formwizard.po
+++ b/source/nb/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-05-03 07:07+0000\n"
+"PO-Revision-Date: 2017-06-19 14:47+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462259239.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497883670.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "Det er ikke installert noen database. Det må være minst en database for at veiviseren for skjema kan åpnes."
#: dbwizres.src
msgctxt ""
@@ -268,7 +268,7 @@ msgctxt ""
"RID_DB_COMMON_START + 9\n"
"string.text"
msgid "The database does not contain any tables."
-msgstr ""
+msgstr "Databasen inneholder ingen tabeller."
#: dbwizres.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"RID_DB_COMMON_START + 10\n"
"string.text"
msgid "This title already exists in the database. Please enter another name."
-msgstr ""
+msgstr "Denne tittelen finnes fra før i databasen. Skriv inn et annet navn."
#: dbwizres.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"RID_DB_COMMON_START + 11\n"
"string.text"
msgid "The title must not contain any spaces or special characters."
-msgstr ""
+msgstr "Tittelen må ikke inneholde mellomrom eller spesialtegn."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Kunne ikke starte databasetjenesten (com.sun.data.DatabaseEngine)."
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "Fikk ikke åpnet den valgte tabellen eller spørringen."
#: dbwizres.src
msgctxt ""
diff --git a/source/nb/xmlsecurity/uiconfig/ui.po b/source/nb/xmlsecurity/uiconfig/ui.po
index 085920a31cb..d7a6d6535b9 100644
--- a/source/nb/xmlsecurity/uiconfig/ui.po
+++ b/source/nb/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-17 08:16+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Fjern"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ne/desktop/source/deployment/gui.po b/source/ne/desktop/source/deployment/gui.po
index f544278a141..966cba537d7 100644
--- a/source/ne/desktop/source/deployment/gui.po
+++ b/source/ne/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 03:41+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467690093.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449857961.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ne/helpcontent2/source/text/sbasic/shared.po b/source/ne/helpcontent2/source/text/sbasic/shared.po
index e1a1d924b71..2e9104171e3 100644
--- a/source/ne/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ne/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 08:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">त्रुटि सङ्केतहरू </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.openoffice.org\">api.openoffice.org</link> for more information."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ne/helpcontent2/source/text/shared/00.po b/source/ne/helpcontent2/source/text/shared/00.po
index 60e258e2308..cc1fd689b27 100644
--- a/source/ne/helpcontent2/source/text/shared/00.po
+++ b/source/ne/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 19:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ne/helpcontent2/source/text/shared/01.po b/source/ne/helpcontent2/source/text/shared/01.po
index ede6a9da29c..f340a2bc7e2 100644
--- a/source/ne/helpcontent2/source/text/shared/01.po
+++ b/source/ne/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 12:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">तपाईँले उप-कागजातहरूमा स्रोत कागजात छुट्याउनका लागि प्रयोग गर्न चाहनु भएको अनुच्छेद शैली चयन गर्नुहोस्।</ahelp> पूर्वनिर्धारित अनुच्छेद शैली \"Heading 1\" हो ।"
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ne/helpcontent2/source/text/shared/optionen.po b/source/ne/helpcontent2/source/text/shared/optionen.po
index 44de08275b1..0ee0f00d1e5 100644
--- a/source/ne/helpcontent2/source/text/shared/optionen.po
+++ b/source/ne/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 13:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ne/helpcontent2/source/text/swriter.po b/source/ne/helpcontent2/source/text/swriter.po
index ac8638c1f10..aca4b26e7d0 100644
--- a/source/ne/helpcontent2/source/text/swriter.po
+++ b/source/ne/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">रूपरेखा क्रमाङ्कन</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/00.po b/source/ne/helpcontent2/source/text/swriter/00.po
index 5ea4462dd8f..ef954808057 100644
--- a/source/ne/helpcontent2/source/text/swriter/00.po
+++ b/source/ne/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 20:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">रोज्नुहोस्<emph>उपकरणहरू - रूपरेखा क्रमाङ्कन</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">रोज्नुहोस्<emph>उपकरणहरू -रेखा क्रमाङ्कन</emph></variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/01.po b/source/ne/helpcontent2/source/text/swriter/01.po
index 75c7f3d7e3b..03e74768517 100644
--- a/source/ne/helpcontent2/source/text/swriter/01.po
+++ b/source/ne/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 13:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">क्लिक गर्नुहोस् <emph>१ </emph>मात्र नेभिगेटर सञ्झ्यालको माथिल्लो हेडिङ स्तरहरू अवलोकन गर्न, र <emph>१०</emph> हेडिङहरूको सबै अवलोकन गर्नका लागि</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "यदि तपाईँंले \"Chapter number without separator\" अध्याय फाँटका लागि रोज्नुहोस् गर्नुभयो भने, बिभाजकहरू जुन अध्याय सङ्ख्याका लागि निश्चित गरिएको थियो that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>उपकरणहरू - अध्याय क्रमाङ्कन</emph></link> प्रदर्शन हुँदैन."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\"> पूरा अध्याय हेडिङ घुसाउछ, यदि उपलब्ध भएमा,अध्याय सङ्ख्या समेत गरी घुसाउछ। एउटा हेडिङ शैलीका लागि अध्याय क्रमाङ्कन मानाङ्कन गर्नलाई,<emph> उपकरणहरू - रूपरेखा क्रमाङ्कन</emph>रोज्नुहोस्।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "रुपरेखा क्रमाङ्कन"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "रुपरेखा क्रमाङ्कन"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,15 +21365,15 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "रूपरेखा क्रमाङ्कन अनुच्छेद शैलीहरूमा लिंक गरिएको हुन्छ. पूर्वनिर्धारित अनुसार, \"शीर्षक\" अनुच्छेद शैलीहरू (१-१०) समनुरूप रूपरेखा सङ्ख्या स्तरहरू (१-१०) मा मानांकित हुन्छन. यदि तपाईँले चाहनुहुन्छ भने, तपाईँले रूपरेखा सङ्ख्या स्तरमा विभिन्न अनुच्छेद शैलीहरू मानाङ्कन गर्न सक्नुहुन्छ."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,8 +21381,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "रूपरेखा सङ्ख्याहरूको पर्दा प्रदर्शन हाइलाइट गर्नलाई ,<emph>दृश्य -</emph><emph>फाँट छायाँङ्कनहरूु</emph> रोज्नुहोस्।"
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">एउटा रूपरेखा सङ्ख्या ढाँचा वचत वा लोड गर्दछ। वचत गरिएको रूपरेखा सङ्ख्या ढाँचा सबै पाठ कागजातहरूमा उपलब्ध हुन्छ।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>ढाँचाबद्ध गर्नुहोस्</emph> बटन रूपरेखा क्रमाङ्कनका लागि मात्र उपलब्ध हुन्छ। क्रमाङ्कित वा गोलिचिन्हित सूची शैलीहरूका लागि, अनुच्छेदहरूको क्रमाङ्कन शैलीहरू परिमार्जन गर्नुहोस्।"
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">एउटा संवाद खोल्दछ जहाँ तपाईँंले हालको सेटिङहरू चयन गरिएको रूपरेखा तहका लागि वचत गर्न सक्नुहुन्छ। तपाईँंले त्यसपछी यि सेटिङहरूलाई अन्य कागजात बाट लोड गर्न सक्नुहुन्छ।</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">तपाईँले परिमार्जन गर्न चाहेको रूपरेखा स्तर क्लिक गर्नुहोस्, र त्यसपछि स्तरका लागि क्रमाङ्कन विकल्प निर्दिष्ट गर्नुहोस्.</ahelp> सबै स्तरहरूमा, अनुच्छेद शैली बाहेक, क्रमाङ्कन विकल्प लागू गर्न, \"1-10\" मा क्लिक गर्नुहोस्."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">तपाईँंले चयन गरिएको रूपरेखा तहमा मानाङ्कन गर्न चाहेको अनुच्छेद शैली चयन गर्नुहोस्।</ahelp> यदि तपाईँंले \"कुनै पनि होइन\" क्लिक गर्नुहुन्छ भने, चयन गरिएको रूपरेखा तह परिभाषित हुँदैन।"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "नयाँ ठेगाना खण्ड"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "नयाँ ठेगाना खण्ड"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "ठेगाना तत्वहरू"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "फाँट तलतिर ठेगाना तत्व तान्नुहोस्"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/guide.po b/source/ne/helpcontent2/source/text/swriter/guide.po
index 7ea65f5b4c5..e6735345a32 100644
--- a/source/ne/helpcontent2/source/text/swriter/guide.po
+++ b/source/ne/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "नेभिगेटर प्रयोग गरेर तपाईँ शीर्षक र मातहत पाठ कागजातमा माथि र तल लैजान सक्नुहुन्छ. । तपाईँ शीर्षक तहहरू प्रवर्धन र अवनत पनि गर्न सक्नुहुन्छ । यो विशेषता प्रयोग गर्नका लागि, एउटा पूर्वपरिभाषित अनुच्छेद अनुच्छेद शैलीहरू प्रयोग गरी तपाईँको कागजातमा अनुच्छेदहरू ढाँचा गर्नुहोस् । अनुच्छेदका लागि अनुकूल अनुच्छेद शैली प्रयोग गर्नका लागि, <emph>उपकरणहरू - रूपरेखा क्रमाङ्कन</emph>रोज्नुहोस् , <emph>अनुच्छेद शैली </emph>बाकसमा शैली चयन गर्नुहोस्, र <emph>तहहरू </emph>सूचीमा सङ्ख्यामा डबल-क्लिक गर्नुहोस् ।"
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "रूपरेखा क्रमाङ्कन"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>रूपरेखा क्रमाङ्कन </bookmark_value><bookmark_value>शीर्षक नम्बरहरू;हटाउँदा </bookmark_value><bookmark_value>अनच्छेद क्रमाङ्कन </bookmark_value><bookmark_value>शीर्षक; क्रमाङ्कन </bookmark_value><bookmark_value>क्रमाङ्कन;शीर्षक</bookmark_value><bookmark_value>आफ्नै अनुच्छेद शैलीहरूमा; शीर्षकहरू </bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">रूपरेखा क्रमाङ्कन</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "तपाईँ शीर्षक श्रृङ्खला परिमार्जन गर्न सक्नुहुन्छ वा अनुकूल अनुच्छेद शैलीमा श्रृङ्खलामा तह मानाङ्कन गर्न सक्नुहुन्छ । तपाईँ अध्याय पनि थप गर्न सक्नुहुन्छ र शीर्षक अनुच्छेद शैलीहरूमा सेक्सन क्रमाङ्कन पनि थप गर्न सक्नुहुन्छ । पूर्वनिर्धारितबाट, \"अनुच्छेद १\" अनुच्छेद शैली रूपरेखा श्रृङ्खलाको माथि छ ।"
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<emph>उपकरणहरू - रूपरेखा क्रमाङ्कन</emph> रोज्नुहोस्, र त्यसपछि <emph>क्रमाङ्कन </emph>ट्याब क्लिक गर्नुहोस् ।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "शीर्षक अनुच्छेदबाट स्वचालित रूपरेखा क्रमाङ्कन हटाउनका लागि:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<emph>उपकरणहरू - रूपरेखा क्रमाङ्कन</emph> रोज्नुहोस्, र त्यसपछि <emph>क्रमाङ्कन </emph>ट्याब क्लिक गर्नुहोस् ।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "हेडर वा फुटरमा तपाईँ अध्याय सूचना अगाडि घुसाउन सक्नुहुन्छ, पहिला अनुच्छेद शैलीका लागि रूपरेखा विकल्प सेट गर्नुहोस् जुन तपाईँ अध्याय शीर्षकहरूका लागि प्रयोग गर्न चाहनुहुन्छ ।"
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>उपकरणहरू - रूपरेखा क्रमाङ्कन</emph>रोज्नुहोस् ।"
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>अनुक्रमणिकाहरू; प्रविष्टिहरू परिभाषित गर्दा</bookmark_value><bookmark_value>विषय सूचीमा; प्रविष्टिहरू परिभाषित गर्दा</bookmark_value><bookmark_value>प्रविष्टिहरूमा; सामाग्रीहरूको अनुक्रमणिका/तालिकाहरूमा परिभाषित गर्दा</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>घुसाउनुहोस् - अनुक्रमणिका र तालिकाहरू - प्रविष्टि</emph>रोज्नुहोस् , र तलका मध्ये एक गर्नुहोस्:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>उपकरणहरू - रूपरेखा क्रमाङ्कन</emph>रोज्नुहोस् र <emph>क्रमाङ्कन</emph> ट्याब क्लिक गर्नुहोस् ।"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "यदि तपाईँ विषय सूची प्रविष्टिको रूपमा विभिन्न अनुच्छेद शैली प्रयोग गर्न चाहनुहुन्छ भने, <emph>क्षेत्रबाट</emph> मा <emph>अतिरिक्त शैलीहरू </emph> जाँच बाकस चयन गर्नुहोस्, र त्यसपछि पछिल्लो जाँच बाकसमा (<emph>...</emph>) बटनमा क्लिक गर्नुहोस् । <emph>मानंकन शैलीहरू</emph> संवादमा, सूचीमा शैली क्लिक गर्नुहोस्, र त्यसपछि अनुच्छेद शैलीका लागि रूपरेखा तह परिभाषा गर्न <emph>>> </emph>वा <emph><< </emph>बटन क्लिक गर्नुहोस् ।।"
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>क्रमाङ्कन; हटाउँदा/दूषित गर्दा</bookmark_value><bookmark_value>गोली चिन्ह सूचीहरू; दूषित गर्दा</bookmark_value><bookmark_value>सूचीहरू;क्रमाङ्कन हटाउँदा/दूषित गर्दा </bookmark_value><bookmark_value>सूचीहरूमा नम्बरहरू;हटाउँदा</bookmark_value><bookmark_value>क्रमाङ्कित सूचीहरू दूषित गर्दा</bookmark_value><bookmark_value>सूचीहरूमा सुरुको नम्बरहरू;परिवर्तन </bookmark_value><bookmark_value>सूचीहरूमा सङ्ख्याहरू;परिमार्जन</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
index 980607b4fa3..b3dd23cc105 100644
--- a/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ne/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-13 02:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "विषयवस्तुहरू रोज्नुहोस्"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26982,15 +27099,6 @@ msgid "~Properties..."
msgstr "गुणहरू..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ne/sc/source/ui/src.po b/source/ne/sc/source/ui/src.po
index 283ed9fc041..39c1e1eec20 100644
--- a/source/ne/sc/source/ui/src.po
+++ b/source/ne/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-17 14:15+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2696,7 +2696,7 @@ msgstr "दायरा #1 बाट #2 सारियो"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2861,7 +2861,7 @@ msgstr "समूह एरेलाई समर्थन गर्दैन
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ne/sfx2/source/view.po b/source/ne/sfx2/source/view.po
index 5747fa476df..719fdaaa5a4 100644
--- a/source/ne/sfx2/source/view.po
+++ b/source/ne/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ne/svtools/source/control.po b/source/ne/svtools/source/control.po
index 6ddfa13b48b..589682a3451 100644
--- a/source/ne/svtools/source/control.po
+++ b/source/ne/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "कालो छड्के"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ne/svtools/source/misc.po b/source/ne/svtools/source/misc.po
index 4dd47ac29bd..1c8c817bcd0 100644
--- a/source/ne/svtools/source/misc.po
+++ b/source/ne/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-08 22:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3182,9 +3182,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3912,6 +3912,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ne/sw/source/core/undo.po b/source/ne/sw/source/core/undo.po
index 642e24474d8..5d076ef3416 100644
--- a/source/ne/sw/source/core/undo.po
+++ b/source/ne/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-23 18:38+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -892,23 +892,23 @@ msgstr "स्तम्भ विच्छेद"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 घुसाउनुहोस्"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 मेट्नुहोस्"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr ""
@@ -916,18 +916,58 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "तालिका परिवर्तित"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "तालिका परिवर्तित"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ne/sw/source/uibase/docvw.po b/source/ne/sw/source/uibase/docvw.po
index 0adf8448734..1006b1a7884 100644
--- a/source/ne/sw/source/uibase/docvw.po
+++ b/source/ne/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 08:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ne/sw/source/uibase/ribbar.po b/source/ne/sw/source/uibase/ribbar.po
index c6038213db2..d79c3479326 100644
--- a/source/ne/sw/source/uibase/ribbar.po
+++ b/source/ne/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 19:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ne/sw/source/uibase/uiview.po b/source/ne/sw/source/uibase/uiview.po
index b66dce8a3df..98c987a0a8e 100644
--- a/source/ne/sw/source/uibase/uiview.po
+++ b/source/ne/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 08:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ne/xmlsecurity/uiconfig/ui.po b/source/ne/xmlsecurity/uiconfig/ui.po
index 6545e609697..802b86136ec 100644
--- a/source/ne/xmlsecurity/uiconfig/ui.po
+++ b/source/ne/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 20:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/nl/desktop/source/deployment/gui.po b/source/nl/desktop/source/deployment/gui.po
index 079a11eb72e..685b98ff95c 100644
--- a/source/nl/desktop/source/deployment/gui.po
+++ b/source/nl/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 03:50+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:30+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467690636.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449858630.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/shared.po b/source/nl/helpcontent2/source/text/sbasic/shared.po
index a5d16cbf145..7fb8a767ba4 100644
--- a/source/nl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nl/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-20 05:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-17 05:11+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495258561.000000\n"
+"X-POOTLE-MTIME: 1497676281.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3150324\n"
"help.text"
msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
-msgstr ""
+msgstr "Voor de URL-notatie zijn bepaalde speciale tekens niet toegestaan. Deze worden door andere tekens vervangen of gecodeerd. Een slash (<emph>/</emph>) wordt gebruikt als padscheidingsteken. Zo wordt een bestand waarnaar in \"Windows-notatie\" verwezen wordt met <emph>C:\\My File.odt</emph> op de lokale host, <emph>file:///C|/My%20File.odt</emph> in URL-notatie."
#: 00000003.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Foutcodes </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -1350,7 +1382,7 @@ msgctxt ""
"par_id31455973\n"
"help.text"
msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err973\">973 niet toegelaten binnen een procedure</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1358,7 +1390,7 @@ msgctxt ""
"par_id31455974\n"
"help.text"
msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err974\">974 niet toegelaten buiten een procedure</variable>"
#: 00000003.xhp
msgctxt ""
@@ -6566,7 +6598,7 @@ msgctxt ""
"par_id051220170241588881\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Benoemde constante"
#: 03010101.xhp
msgctxt ""
@@ -6574,7 +6606,7 @@ msgctxt ""
"par_id051220170241585541\n"
"help.text"
msgid "Integer value"
-msgstr ""
+msgstr "Geheel getal"
#: 03010101.xhp
msgctxt ""
@@ -6582,7 +6614,7 @@ msgctxt ""
"par_id051220170241585124\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definitie"
#: 03010101.xhp
msgctxt ""
@@ -6590,7 +6622,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "Display OK button only."
-msgstr ""
+msgstr "Alleen knop OK weergeven."
#: 03010101.xhp
msgctxt ""
@@ -6598,7 +6630,7 @@ msgctxt ""
"par_id3145646\n"
"help.text"
msgid "Display OK and Cancel buttons."
-msgstr ""
+msgstr "Knoppen OK en Annuleren weergeven."
#: 03010101.xhp
msgctxt ""
@@ -6606,7 +6638,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "Display Abort, Retry, and Ignore buttons."
-msgstr ""
+msgstr "De knoppen Afbreken, Opnieuw proberen en Negeren weergeven."
#: 03010101.xhp
msgctxt ""
@@ -6614,7 +6646,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Display Yes, No, and Cancel buttons."
-msgstr ""
+msgstr "Knoppen Ja, Nee en Annuleren weergeven."
#: 03010101.xhp
msgctxt ""
@@ -6622,7 +6654,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Display Yes and No buttons."
-msgstr ""
+msgstr "Knoppen Ja en Nee weergeven."
#: 03010101.xhp
msgctxt ""
@@ -6630,7 +6662,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Display Retry and Cancel buttons."
-msgstr ""
+msgstr "Knoppen Opnieuw proberen en Annuleren weergeven."
#: 03010101.xhp
msgctxt ""
@@ -6638,7 +6670,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "Add the Stop icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Stoppen aan het dialoogvenster toe."
#: 03010101.xhp
msgctxt ""
@@ -6646,7 +6678,7 @@ msgctxt ""
"par_id3153837\n"
"help.text"
msgid "Add the Question icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Vraagteken aan het dialoogvenster toe."
#: 03010101.xhp
msgctxt ""
@@ -6654,7 +6686,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "Add the Exclamation Point icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Uitroepteken aan het dialoogvenster toe."
#: 03010101.xhp
msgctxt ""
@@ -6662,7 +6694,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Informatie aan het dialoogvenster toe."
#: 03010101.xhp
msgctxt ""
@@ -6670,7 +6702,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "First button in the dialog as default button."
-msgstr ""
+msgstr "Eerste knop in het dialoogvenster als standaardknop."
#: 03010101.xhp
msgctxt ""
@@ -6678,7 +6710,7 @@ msgctxt ""
"par_id3153765\n"
"help.text"
msgid "Second button in the dialog as default button."
-msgstr ""
+msgstr "Tweede knop in het dialoogvenster als standaardknop."
#: 03010101.xhp
msgctxt ""
@@ -6686,7 +6718,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "Third button in the dialog as default button."
-msgstr ""
+msgstr "Derde knop in het dialoogvenster als standaardknop."
#: 03010101.xhp
msgctxt ""
@@ -6830,7 +6862,7 @@ msgctxt ""
"par_id051220170241588881\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Benoemde constante"
#: 03010102.xhp
msgctxt ""
@@ -6838,7 +6870,7 @@ msgctxt ""
"par_id051220170241585541\n"
"help.text"
msgid "Integer value"
-msgstr ""
+msgstr "Geheel getal"
#: 03010102.xhp
msgctxt ""
@@ -6846,7 +6878,7 @@ msgctxt ""
"par_id051220170241585124\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definitie"
#: 03010102.xhp
msgctxt ""
@@ -6854,7 +6886,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "Display OK button only."
-msgstr ""
+msgstr "Alleen knop OK weergeven."
#: 03010102.xhp
msgctxt ""
@@ -6862,7 +6894,7 @@ msgctxt ""
"par_id3145646\n"
"help.text"
msgid "Display OK and Cancel buttons."
-msgstr ""
+msgstr "Knoppen OK en Annuleren weergeven."
#: 03010102.xhp
msgctxt ""
@@ -6870,7 +6902,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "Display Abort, Retry, and Ignore buttons."
-msgstr ""
+msgstr "De knoppen Afbreken, Opnieuw proberen en Negeren weergeven."
#: 03010102.xhp
msgctxt ""
@@ -6878,7 +6910,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Display Yes, No, and Cancel buttons."
-msgstr ""
+msgstr "Knoppen Ja, Nee en Annuleren weergeven."
#: 03010102.xhp
msgctxt ""
@@ -6886,7 +6918,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Display Yes and No buttons."
-msgstr ""
+msgstr "Knoppen Ja en Nee weergeven."
#: 03010102.xhp
msgctxt ""
@@ -6894,7 +6926,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Display Retry and Cancel buttons."
-msgstr ""
+msgstr "Knoppen Opnieuw proberen en Annuleren weergeven."
#: 03010102.xhp
msgctxt ""
@@ -6902,7 +6934,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "Add the Stop icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Stoppen aan het dialoogvenster toe."
#: 03010102.xhp
msgctxt ""
@@ -6910,7 +6942,7 @@ msgctxt ""
"par_id3153837\n"
"help.text"
msgid "Add the Question icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Vraagteken aan het dialoogvenster toe."
#: 03010102.xhp
msgctxt ""
@@ -6918,7 +6950,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "Add the Exclamation Point icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Uitroepteken aan het dialoogvenster toe."
#: 03010102.xhp
msgctxt ""
@@ -6926,7 +6958,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr ""
+msgstr "Voeg het pictogram Informatie aan het dialoogvenster toe."
#: 03010102.xhp
msgctxt ""
@@ -6934,7 +6966,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "First button in the dialog as default button."
-msgstr ""
+msgstr "Eerste knop in het dialoogvenster als standaardknop."
#: 03010102.xhp
msgctxt ""
@@ -6942,7 +6974,7 @@ msgctxt ""
"par_id3153765\n"
"help.text"
msgid "Second button in the dialog as default button."
-msgstr ""
+msgstr "Tweede knop in het dialoogvenster als standaardknop."
#: 03010102.xhp
msgctxt ""
@@ -6950,7 +6982,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "Third button in the dialog as default button."
-msgstr ""
+msgstr "Derde knop in het dialoogvenster als standaardknop."
#: 03010102.xhp
msgctxt ""
@@ -6966,7 +6998,7 @@ msgctxt ""
"par_id051220170330379805\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Benoemde constante"
#: 03010102.xhp
msgctxt ""
@@ -6974,7 +7006,7 @@ msgctxt ""
"par_id051220170330387072\n"
"help.text"
msgid "Integer value"
-msgstr ""
+msgstr "Geheel getal"
#: 03010102.xhp
msgctxt ""
@@ -6982,7 +7014,7 @@ msgctxt ""
"par_id051220170330387973\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definitie"
#: 03010102.xhp
msgctxt ""
@@ -6990,7 +7022,7 @@ msgctxt ""
"par_id3145230\n"
"help.text"
msgid "OK"
-msgstr ""
+msgstr "OK"
#: 03010102.xhp
msgctxt ""
@@ -6998,7 +7030,7 @@ msgctxt ""
"par_id3149567\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Annuleren"
#: 03010102.xhp
msgctxt ""
@@ -7006,7 +7038,7 @@ msgctxt ""
"par_id4056825\n"
"help.text"
msgid "Abort"
-msgstr ""
+msgstr "Afbreken"
#: 03010102.xhp
msgctxt ""
@@ -7014,7 +7046,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Retry"
-msgstr ""
+msgstr "Opnieuw proberen"
#: 03010102.xhp
msgctxt ""
@@ -7022,7 +7054,7 @@ msgctxt ""
"par_id3146918\n"
"help.text"
msgid "Ignore"
-msgstr ""
+msgstr "Negeren"
#: 03010102.xhp
msgctxt ""
@@ -7030,7 +7062,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#: 03010102.xhp
msgctxt ""
@@ -7038,7 +7070,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Nee"
#: 03010102.xhp
msgctxt ""
@@ -10262,7 +10294,7 @@ msgctxt ""
"par_id3154012\n"
"help.text"
msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
-msgstr ""
+msgstr "U kunt als volgt een lijst van alle bestaande bestanden in een specifieke map genereren: Wanneer u de Dir-functie voor het eerst aanroept, specificeert u het volledige zoekpad voor de bestanden, bijvoorbeeld 'D:\\Files\\*.ods'. Is het pad juist en vindt de zoekopdracht ten minste één bestand, dan geeft de Dir-functie de naam van het eerste bestand dat met het zoekpad overeenkomt. Voor extra bestandsnamen die met het pad overeenkomen, roept u 'Dir' nogmaals op, maar zonder argumenten."
#: 03020404.xhp
msgctxt ""
@@ -10870,7 +10902,7 @@ msgctxt ""
"par_id051220170522586822\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Benoemde constante"
#: 03020409.xhp
msgctxt ""
@@ -10878,7 +10910,7 @@ msgctxt ""
"par_id051220170522583099\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Waarde"
#: 03020409.xhp
msgctxt ""
@@ -10886,7 +10918,7 @@ msgctxt ""
"par_id051220170522583818\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definitie"
#: 03020409.xhp
msgctxt ""
@@ -10894,7 +10926,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "Normal files."
-msgstr ""
+msgstr "Normale bestanden"
#: 03020409.xhp
msgctxt ""
@@ -10902,7 +10934,7 @@ msgctxt ""
"par_id3147434\n"
"help.text"
msgid "Read-only files."
-msgstr ""
+msgstr "Alleen-lezen bestanden."
#: 03020409.xhp
msgctxt ""
@@ -10910,7 +10942,7 @@ msgctxt ""
"par_id051220170546544550\n"
"help.text"
msgid "Hidden file"
-msgstr ""
+msgstr "Verborgen bestanden"
#: 03020409.xhp
msgctxt ""
@@ -10918,7 +10950,7 @@ msgctxt ""
"par_id051220170546546496\n"
"help.text"
msgid "System file"
-msgstr ""
+msgstr "Systeembestand"
#: 03020409.xhp
msgctxt ""
@@ -10926,7 +10958,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "Returns the name of the volume"
-msgstr ""
+msgstr "Geeft de naam van het volume"
#: 03020409.xhp
msgctxt ""
@@ -10934,7 +10966,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "Returns the name of the directory only."
-msgstr ""
+msgstr "Geeft alleen de naam van de map."
#: 03020409.xhp
msgctxt ""
@@ -10942,7 +10974,7 @@ msgctxt ""
"par_id3153953\n"
"help.text"
msgid "File was changed since last backup (Archive bit)."
-msgstr ""
+msgstr "Bestand is gewijzigd sinds laatste back-up (Archiefbit)."
#: 03020409.xhp
msgctxt ""
@@ -11494,7 +11526,7 @@ msgctxt ""
"par_id051220170522586822\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Benoemde constante"
#: 03020414.xhp
msgctxt ""
@@ -11502,7 +11534,7 @@ msgctxt ""
"par_id051220170522583099\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Waarde"
#: 03020414.xhp
msgctxt ""
@@ -11510,7 +11542,7 @@ msgctxt ""
"par_id051220170522583818\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definitie"
#: 03020414.xhp
msgctxt ""
@@ -11518,7 +11550,7 @@ msgctxt ""
"par_id3147349\n"
"help.text"
msgid "Normal files."
-msgstr ""
+msgstr "Normale bestanden."
#: 03020414.xhp
msgctxt ""
@@ -11526,7 +11558,7 @@ msgctxt ""
"par_id3147434\n"
"help.text"
msgid "Read-only files."
-msgstr ""
+msgstr "Alleen-lezen bestanden."
#: 03020414.xhp
msgctxt ""
@@ -11534,7 +11566,7 @@ msgctxt ""
"par_id051220170546544550\n"
"help.text"
msgid "Hidden file"
-msgstr ""
+msgstr "Verborgen bestand"
#: 03020414.xhp
msgctxt ""
@@ -15014,7 +15046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic Constants"
-msgstr ""
+msgstr "Basic-constanten"
#: 03040000.xhp
msgctxt ""
@@ -15022,7 +15054,7 @@ msgctxt ""
"bm_id051720170831387233\n"
"help.text"
msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pi;Basic-constante</bookmark_value> <bookmark_value>Null;Basic-constante</bookmark_value> <bookmark_value>Leeg;Basic-constante</bookmark_value> <bookmark_value>Niets;Basic-constante</bookmark_value> <bookmark_value>Basic-constante;Niets</bookmark_value> <bookmark_value>Basic-constante;Null</bookmark_value> <bookmark_value>Basic-constante;Leeg</bookmark_value> <bookmark_value>Basic-constante;Pi</bookmark_value> <bookmark_value>Basic-constante;Onwaar</bookmark_value> <bookmark_value>Basic-constante;Waar</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15030,7 +15062,7 @@ msgctxt ""
"hd_id051620171022255424\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03040000.xhp\">Basic Constants</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03040000.xhp\">Basic-constanten</link>"
#: 03040000.xhp
msgctxt ""
@@ -15038,7 +15070,7 @@ msgctxt ""
"par_id051620171022384640\n"
"help.text"
msgid "<ahelp hid=\".\">Constants used in Basic programs</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Constanten die in Basic-programma's gebruikt worden</ahelp>"
#: 03040000.xhp
msgctxt ""
@@ -15046,7 +15078,7 @@ msgctxt ""
"par_id051620171022382581\n"
"help.text"
msgid "Boolean constants"
-msgstr ""
+msgstr "Boleaanse constanten"
#: 03040000.xhp
msgctxt ""
@@ -15054,7 +15086,7 @@ msgctxt ""
"par_id051620171114565335\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#: 03040000.xhp
msgctxt ""
@@ -15062,7 +15094,7 @@ msgctxt ""
"par_id051620171114565484\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 03040000.xhp
msgctxt ""
@@ -15070,7 +15102,7 @@ msgctxt ""
"par_id051620171114563271\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Waarde"
#: 03040000.xhp
msgctxt ""
@@ -15078,7 +15110,7 @@ msgctxt ""
"hd_id051620171114566623\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Voorbeeld"
#: 03040000.xhp
msgctxt ""
@@ -15086,7 +15118,7 @@ msgctxt ""
"hd_id051620171114573549\n"
"help.text"
msgid "Mathematical constant"
-msgstr ""
+msgstr "Mathematische constante"
#: 03040000.xhp
msgctxt ""
@@ -15094,7 +15126,7 @@ msgctxt ""
"par_id051620171114576150\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#: 03040000.xhp
msgctxt ""
@@ -15102,7 +15134,7 @@ msgctxt ""
"par_id051620171114575122\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 03040000.xhp
msgctxt ""
@@ -15110,7 +15142,7 @@ msgctxt ""
"par_id051620171114574987\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Waarde"
#: 03040000.xhp
msgctxt ""
@@ -15118,7 +15150,7 @@ msgctxt ""
"hd_id051620171114571721\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Voorbeeld"
#: 03040000.xhp
msgctxt ""
@@ -15126,7 +15158,7 @@ msgctxt ""
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
-msgstr ""
+msgstr "Object-constante"
#: 03040000.xhp
msgctxt ""
@@ -15134,7 +15166,7 @@ msgctxt ""
"par_id051620171114576921\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#: 03040000.xhp
msgctxt ""
@@ -15142,7 +15174,7 @@ msgctxt ""
"par_id051620171114578188\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 03040000.xhp
msgctxt ""
@@ -15150,7 +15182,7 @@ msgctxt ""
"par_id051720170824099845\n"
"help.text"
msgid "Usage"
-msgstr ""
+msgstr "Gebruik"
#: 03040000.xhp
msgctxt ""
@@ -15158,7 +15190,7 @@ msgctxt ""
"par_id05172017082409622\n"
"help.text"
msgid "The <emph>Empty</emph> value indicates that the variable is not initialized."
-msgstr ""
+msgstr "De waarde <emph>Leeg</emph> geeft aan dat de variabele niet gebruikt wordt."
#: 03040000.xhp
msgctxt ""
@@ -15166,7 +15198,7 @@ msgctxt ""
"par_id051720170824093395\n"
"help.text"
msgid "Indicates that the variable does not contain data."
-msgstr ""
+msgstr "Geeft aan dat de variabele geen gegevens bevat."
#: 03040000.xhp
msgctxt ""
@@ -15174,7 +15206,7 @@ msgctxt ""
"par_id051720170824097935\n"
"help.text"
msgid "Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
-msgstr ""
+msgstr "Wijs het object <emph>Niets</emph> aan een variabele toe om een vorige toewijzing te verwijderen."
#: 03040000.xhp
msgctxt ""
@@ -15182,7 +15214,7 @@ msgctxt ""
"hd_id051620171114572289\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Voorbeeld"
#: 03050000.xhp
msgctxt ""
@@ -23694,7 +23726,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "cCur=Currency ' cCur is an implicit currency variable"
-msgstr ""
+msgstr "cCur=Valuta ' cCur is een impliciete valutavariabele"
#: 03101120.xhp
msgctxt ""
@@ -25870,7 +25902,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option VBASupport Statement [Runtime]"
-msgstr ""
+msgstr "Optie VBASupport [Runtime]"
#: 03103350.xhp
msgctxt ""
@@ -25878,7 +25910,7 @@ msgctxt ""
"bm_id3145090\n"
"help.text"
msgid "<bookmark_value>MS Excel macros support;Enable</bookmark_value> <bookmark_value>MS Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>MS Excel macro-ondersteuning;Inschakelen</bookmark_value> <bookmark_value>MS Excel macro-ondersteuning;Optie VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Optie VBASupport</bookmark_value> <bookmark_value>Optie VBASupport</bookmark_value>"
#: 03103350.xhp
msgctxt ""
@@ -25886,7 +25918,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Optie VBASupport [Runtime]</link>"
#: 03103350.xhp
msgctxt ""
@@ -25894,7 +25926,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "Specifies that %PRODUCTNAME Basic will support some VBA statements, functions and objects."
-msgstr ""
+msgstr "Geeft aan dat %PRODUCTNAME-Basic sommige VBA statements, functies en objecten ondersteunt."
#: 03103350.xhp
msgctxt ""
@@ -25902,7 +25934,7 @@ msgctxt ""
"par_id051720171055367194\n"
"help.text"
msgid "The support for VBA is not complete, but covers a large portion of the common usage patterns."
-msgstr ""
+msgstr "De ondersteuning voor VBA is niet volledig, maar beslaat een groot deel van de veelgebruikte patronen."
#: 03103350.xhp
msgctxt ""
@@ -25910,7 +25942,7 @@ msgctxt ""
"hd_id3149763\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxis:"
#: 03103350.xhp
msgctxt ""
@@ -25918,7 +25950,7 @@ msgctxt ""
"hd_id3145315\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameters:"
#: 03103350.xhp
msgctxt ""
@@ -25926,7 +25958,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgstr "Deze instructie moet worden ingevoegd vóór de uitvoerbare programmacode in een module."
#: 03103350.xhp
msgctxt ""
@@ -25934,7 +25966,7 @@ msgctxt ""
"par_id051720171055361727\n"
"help.text"
msgid "1: Enable VBA support in %PRODUCTNAME"
-msgstr ""
+msgstr "VBA support in %PRODUCTNAME inschakelen"
#: 03103350.xhp
msgctxt ""
@@ -25942,7 +25974,7 @@ msgctxt ""
"par_id051720171055369857\n"
"help.text"
msgid "0: Disable VBA support"
-msgstr ""
+msgstr "0: VBA support uitschakelen"
#: 03103350.xhp
msgctxt ""
@@ -25950,7 +25982,7 @@ msgctxt ""
"hd_id3125864\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Voorbeeld:"
#: 03103350.xhp
msgctxt ""
@@ -25958,7 +25990,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">VBA-eigenschappen</link>"
#: 03103350.xhp
msgctxt ""
@@ -25966,7 +25998,7 @@ msgctxt ""
"par_id051720170424259343\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA support in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA-ondersteuning in %PRODUCTNAME</link>"
#: 03103400.xhp
msgctxt ""
@@ -26222,7 +26254,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "TypeName (Variable) / VarType (Variable)"
-msgstr ""
+msgstr "TypeNaam (Variabele) / VarType (Variabele)"
#: 03103600.xhp
msgctxt ""
@@ -26270,7 +26302,7 @@ msgctxt ""
"par_id051620170608269696\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Benoemde constante"
#: 03103600.xhp
msgctxt ""
@@ -26310,7 +26342,7 @@ msgctxt ""
"par_id051620170608331416\n"
"help.text"
msgid "Currency variable"
-msgstr ""
+msgstr "Valutavariabele"
#: 03103600.xhp
msgctxt ""
@@ -26550,7 +26582,7 @@ msgctxt ""
"par_id3153104\n"
"help.text"
msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
-msgstr ""
+msgstr "\"TekstBewerk1\" tot \"TekstBewerk5\" in een lus kunnen gebruiken om vijf besturingsnamen te creëren."
#: 03103800.xhp
msgctxt ""
@@ -27014,7 +27046,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "a = DimArray( 2, 2, 4 ) ' is the same as DIM a( 2, 2, 4 )"
-msgstr ""
+msgstr "a = DimArray( 2, 2, 4 ) ' is hetzelfde als DIM a( 2, 2, 4 )"
#: 03104400.xhp
msgctxt ""
@@ -27318,7 +27350,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "' Copy of objects -> same instance"
-msgstr ""
+msgstr "' Kopiëren van objecten -> dezelfde verzameling"
#: 03104600.xhp
msgctxt ""
@@ -27326,7 +27358,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "' Copy of structs as value -> new instance"
-msgstr ""
+msgstr "' Kopiëren van structs als waarde -> nieuw exemplaar"
#: 03104700.xhp
msgctxt ""
@@ -28150,7 +28182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AscW Function [Runtime]"
-msgstr ""
+msgstr "AscW-functie [Runtime]"
#: 03120111.xhp
msgctxt ""
@@ -28158,7 +28190,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>AscW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>AscW-functie</bookmark_value>"
#: 03120111.xhp
msgctxt ""
@@ -28166,7 +28198,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW-functie [Runtime - VBA]</link>"
#: 03120111.xhp
msgctxt ""
@@ -28174,7 +28206,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the Unicode value of the first character in a string expression."
-msgstr ""
+msgstr "Geeft de Unicodewaarde van het eerste teken in een tekenreeks."
#: 03120111.xhp
msgctxt ""
@@ -28182,7 +28214,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxis:"
#: 03120111.xhp
msgctxt ""
@@ -28190,7 +28222,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "AscW (Text As String)"
-msgstr ""
+msgstr "AscW (Text As String)"
#: 03120111.xhp
msgctxt ""
@@ -28198,7 +28230,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Geretourneerde waarde:"
#: 03120111.xhp
msgctxt ""
@@ -28206,7 +28238,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "Integer"
-msgstr ""
+msgstr "Integer"
#: 03120111.xhp
msgctxt ""
@@ -28214,7 +28246,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameters:"
#: 03120111.xhp
msgctxt ""
@@ -28222,7 +28254,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr ""
+msgstr "<emph>Tekst:</emph> Elke geldige tekenreeks. Alleen het eerste teken in de tekenreeks is relevant."
#: 03120111.xhp
msgctxt ""
@@ -28238,7 +28270,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Voorbeeld:"
#: 03120111.xhp
msgctxt ""
@@ -28246,7 +28278,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "Print AscW(\"A\") ' returns 65"
-msgstr ""
+msgstr "Print AscW(\"A\") ' geeft 65"
#: 03120111.xhp
msgctxt ""
@@ -28254,7 +28286,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Print AscW(\"Ω\") ' returns 937"
-msgstr ""
+msgstr "Print AscW(\"Ω\") ' geeft 937"
#: 03120111.xhp
msgctxt ""
@@ -28262,7 +28294,7 @@ msgctxt ""
"par_id3163800\n"
"help.text"
msgid "Print AscW(\"Αθήνα\") ' returns 913, since only the first character (Alpha) is taken into account"
-msgstr ""
+msgstr "Print AscW(\"Αθήνα\") ' geeft 913, omdat alleen het eerste teken (Alpha) in aanmerking wordt genomen"
#: 03120111.xhp
msgctxt ""
@@ -28270,7 +28302,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120111.xhp
msgctxt ""
@@ -28278,7 +28310,7 @@ msgctxt ""
"par_id051920171027053197\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
#: 03120111.xhp
msgctxt ""
@@ -28286,7 +28318,7 @@ msgctxt ""
"par_id051920171027051338\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28294,7 +28326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChrW Function [Runtime -VBA]"
-msgstr ""
+msgstr "ChrW-functie [Runtime -VBA]"
#: 03120112.xhp
msgctxt ""
@@ -28302,7 +28334,7 @@ msgctxt ""
"bm_id3149205\n"
"help.text"
msgid "<bookmark_value>ChrW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ChrW-functie</bookmark_value>"
#: 03120112.xhp
msgctxt ""
@@ -28310,7 +28342,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function [Runtime]\">ChrW Function [Runtime -VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function [Runtime]\">ChrW-functie [Runtime -VBA]</link>"
#: 03120112.xhp
msgctxt ""
@@ -28318,7 +28350,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Returns the Unicode character that corresponds to the specified character code."
-msgstr ""
+msgstr "Geeft het Unicode-teken dat overeen komt met de code van het gespecificeerde teken."
#: 03120112.xhp
msgctxt ""
@@ -28326,7 +28358,7 @@ msgctxt ""
"hd_id3149514\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxis:"
#: 03120112.xhp
msgctxt ""
@@ -28334,7 +28366,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "ChrW(Expression As Integer)"
-msgstr ""
+msgstr "ChrW(Expression As Integer)"
#: 03120112.xhp
msgctxt ""
@@ -28342,7 +28374,7 @@ msgctxt ""
"hd_id3143228\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Geretourneerde waarde:"
#: 03120112.xhp
msgctxt ""
@@ -28350,7 +28382,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "Tekenreeks"
#: 03120112.xhp
msgctxt ""
@@ -28358,7 +28390,7 @@ msgctxt ""
"hd_id3148944\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameters:"
#: 03120112.xhp
msgctxt ""
@@ -28374,7 +28406,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Voorbeeld"
#: 03120112.xhp
msgctxt ""
@@ -28382,7 +28414,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "' This example inserts the greek letter Alpha and Omega in a string."
-msgstr ""
+msgstr "' Dit voorbeeld voegt de Griekse tekens Alfa en Omega in een tekenreeks in."
#: 03120112.xhp
msgctxt ""
@@ -28390,7 +28422,7 @@ msgctxt ""
"par_id3151380\n"
"help.text"
msgid "MsgBox \"From \"+ ChrW(913)+\" to \" + ChrW(937)"
-msgstr ""
+msgstr "MsgBox \"Van \"+ ChrW(913)+\" tot \" + ChrW(937)"
#: 03120112.xhp
msgctxt ""
@@ -28398,7 +28430,7 @@ msgctxt ""
"par_id3145174\n"
"help.text"
msgid "' The printout appears in the dialog as: From Α to Ω"
-msgstr ""
+msgstr "' De afdruk verschijnt in het dialoogvenster als: Van Α tot Ω"
#: 03120112.xhp
msgctxt ""
@@ -28406,7 +28438,7 @@ msgctxt ""
"par_id051920171010491586\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120112.xhp
msgctxt ""
@@ -28414,7 +28446,7 @@ msgctxt ""
"par_idN10668\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28422,7 +28454,7 @@ msgctxt ""
"par_id051920171009414669\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
#: 03120200.xhp
msgctxt ""
@@ -30942,7 +30974,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "InStrRev Function [Runtime - VBA]"
-msgstr ""
+msgstr "InStrRev-functie [Runtime - VBA]"
#: 03120411.xhp
msgctxt ""
@@ -30950,7 +30982,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>InStrRev function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>InStrRev-functie</bookmark_value>"
#: 03120411.xhp
msgctxt ""
@@ -30958,7 +30990,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function [Runtime]\">InStrRev Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function [Runtime]\">InStrRev-functie [Runtime - VBA]</link>"
#: 03120411.xhp
msgctxt ""
@@ -30966,7 +30998,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the position of a string within another string, starting from the right side of the string."
-msgstr ""
+msgstr "Geeft de positie van een tekenreeks in een andere tekenreeks, vanaf de rechterzijde van de tekenreeks."
#: 03120411.xhp
msgctxt ""
@@ -30974,7 +31006,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0."
-msgstr ""
+msgstr "De InStrRev-functie geeft de positie terug waar de overeenstemming werd gevonden. Als de tekenreeks niet wordt gevonden geeft de functie 0 terug."
#: 03120411.xhp
msgctxt ""
@@ -30982,7 +31014,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxis:"
#: 03120411.xhp
msgctxt ""
@@ -30990,7 +31022,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
-msgstr ""
+msgstr "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
#: 03120411.xhp
msgctxt ""
@@ -30998,7 +31030,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Geretourneerde waarde:"
#: 03120411.xhp
msgctxt ""
@@ -31006,7 +31038,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "Long"
-msgstr ""
+msgstr "Long"
#: 03120411.xhp
msgctxt ""
@@ -31014,7 +31046,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameters:"
#: 03120411.xhp
msgctxt ""
@@ -31022,7 +31054,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr ""
+msgstr "<emph>Tekst1:</emph> De tekenreeks waarin moet worden gezocht."
#: 03120411.xhp
msgctxt ""
@@ -31030,7 +31062,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr ""
+msgstr "<emph>Tekst2:</emph> De tekenreeks waarnaar moet worden gezocht."
#: 03120411.xhp
msgctxt ""
@@ -31038,7 +31070,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
-msgstr ""
+msgstr "<emph>Start: </emph>Een optionele numerieke expressie die de positie <emph>vanaf links </emph>in een tekenreeks aangeeft waar het zoeken naar de gespecificeerde subtekenreeks moet beginnen. Als u deze parameter weglaat, begint de zoekopdracht bij het eerste teken van de tekenreeks. De maximaal toegestane waarde is 65535."
#: 03120411.xhp
msgctxt ""
@@ -31070,7 +31102,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr ""
+msgstr "De parameter Compare moet, om een runtime-fout te vermijden, niet worden ingesteld als de eerste parameter (Start) is weggelaten."
#: 03120411.xhp
msgctxt ""
@@ -31078,7 +31110,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Voorbeeld:"
#: 03120411.xhp
msgctxt ""
@@ -31086,7 +31118,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
-msgstr ""
+msgstr "sInput = \"Het boek is op de tafel\""
#: 03120411.xhp
msgctxt ""
@@ -31110,7 +31142,7 @@ msgctxt ""
"par_id051920170316395065\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
#: 03120412.xhp
msgctxt ""
@@ -31118,7 +31150,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StrReverse Function [Runtime - VBA]"
-msgstr ""
+msgstr "StrReverse-functie [Runtime -VBA]"
#: 03120412.xhp
msgctxt ""
@@ -31126,7 +31158,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>StrReverse function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>StrReverse-functie</bookmark_value>"
#: 03120412.xhp
msgctxt ""
@@ -31134,7 +31166,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">StrReverse Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">StrReverse-functie [Runtime - VBA]</link>"
#: 03120412.xhp
msgctxt ""
@@ -31142,7 +31174,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the string with the character order reversed."
-msgstr ""
+msgstr "Geeft de tekenreeks terug in omgekeerde tekenvolgorde."
#: 03120412.xhp
msgctxt ""
@@ -31150,7 +31182,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaxis:"
#: 03120412.xhp
msgctxt ""
@@ -31158,7 +31190,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "StrReverse (Text1 As String)"
-msgstr ""
+msgstr "StrReverse (Text1 As String)"
#: 03120412.xhp
msgctxt ""
@@ -31166,7 +31198,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Geretourneerde waarde:"
#: 03120412.xhp
msgctxt ""
@@ -31174,7 +31206,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "Tekenreeks"
#: 03120412.xhp
msgctxt ""
@@ -31182,7 +31214,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameters:"
#: 03120412.xhp
msgctxt ""
@@ -31190,7 +31222,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
-msgstr ""
+msgstr "<emph>Tekst1:</emph> De tekenreeks waarin in omgekeerde tekenvolgorde moet worden gezocht."
#: 03120412.xhp
msgctxt ""
@@ -31198,7 +31230,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Voorbeeld:"
#: 03130000.xhp
msgctxt ""
@@ -32158,7 +32190,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "' this is the same as the following statement:"
-msgstr ""
+msgstr "' dit is hetzelfde als de volgende instructie:"
#: 03131800.xhp
msgctxt ""
@@ -32238,7 +32270,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "' Generate \"live\" dialog"
-msgstr ""
+msgstr "' Genereer een \"levend\" dialoogvenster"
#: 03131800.xhp
msgctxt ""
@@ -32902,7 +32934,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
-msgstr ""
+msgstr "oUnoWaarde = CreateUnoValue( \"[]byte\", MijnBASICWaarde ) ' om een byte-reeks te krijgen."
#: 03132300.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Deze runtime-functie geeft de standaardcomponentcontext die gebruikt moet worden als services via XmultiServiceFactory gecreëerd worden. Zie het hoofdstuk <item type=\"literal\">Professional UNO</item> in de <item type=\"literal\">Gids voor ontwikkelaars</item> op <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> voor meer informatie."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -33934,7 +34758,7 @@ msgctxt ""
"hd_id05182017030838384\n"
"help.text"
msgid "Working with VBA Macros"
-msgstr ""
+msgstr "Werken met VBA-macro's"
#: main0601.xhp
msgctxt ""
@@ -33950,7 +34774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Exclusive VBA functions"
-msgstr ""
+msgstr "Exclusieve VBA-functies"
#: special_vba_func.xhp
msgctxt ""
@@ -33958,7 +34782,7 @@ msgctxt ""
"bm_id051920170350145208\n"
"help.text"
msgid "<bookmark_value>VBA Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33966,7 +34790,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusieve VBA-functies</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -33974,7 +34798,7 @@ msgctxt ""
"par_id051820170314436068\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">%PRODUCTNAME Basic voegt deze set met functies toe wanneer ondersteuning voor VBA is ingeschakeld</ahelp>"
#: special_vba_func.xhp
msgctxt ""
@@ -33982,7 +34806,7 @@ msgctxt ""
"hd_id051820170407499827\n"
"help.text"
msgid "These exclusive VBA functions are enabled when <item type=\"literal\">Option VBASupport 1</item> is the first line of a %PRODUCTNAME Basic module."
-msgstr ""
+msgstr "Deze exclusieve VBA-functies zijn ingeschakeld wanneer <item type=\"literal\">Option VBASupport 1</item> de eerste regel is in een %PRODUCTNAME Basic-module."
#: special_vba_func.xhp
msgctxt ""
@@ -33990,7 +34814,7 @@ msgctxt ""
"bm_id05192017035621676\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies;Tekstfuncties</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33998,7 +34822,7 @@ msgctxt ""
"par_id051820170355592834\n"
"help.text"
msgid "Text functions"
-msgstr ""
+msgstr "Tekstfuncties"
#: special_vba_func.xhp
msgctxt ""
@@ -34006,7 +34830,7 @@ msgctxt ""
"bm_id051920170357078705\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Financial Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies;Financiële functies</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34014,7 +34838,7 @@ msgctxt ""
"par_id051820170355592581\n"
"help.text"
msgid "Financial functions"
-msgstr ""
+msgstr "Financiële functies"
#: special_vba_func.xhp
msgctxt ""
@@ -34022,7 +34846,7 @@ msgctxt ""
"bm_id051920170357347041\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies;Datum en Tijd functies</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34030,7 +34854,7 @@ msgctxt ""
"par_id051820170356005357\n"
"help.text"
msgid "Date and time functions"
-msgstr ""
+msgstr "Datum en Tijd functies"
#: special_vba_func.xhp
msgctxt ""
@@ -34038,7 +34862,7 @@ msgctxt ""
"bm_id051920170358002074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;I/O Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies;I/O-functies</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34046,7 +34870,7 @@ msgctxt ""
"par_id051820170356006501\n"
"help.text"
msgid "I/O Functions"
-msgstr ""
+msgstr "I/O-functies"
#: special_vba_func.xhp
msgctxt ""
@@ -34054,7 +34878,7 @@ msgctxt ""
"bm_id051920170358346963\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies;Wiskundige functies</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34062,7 +34886,7 @@ msgctxt ""
"par_id051820170356005221\n"
"help.text"
msgid "Mathematical Functions"
-msgstr ""
+msgstr "Wiskundige functies"
#: special_vba_func.xhp
msgctxt ""
@@ -34070,7 +34894,7 @@ msgctxt ""
"bm_id051920170359045662\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Object Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-functies;Object-functies</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34078,7 +34902,7 @@ msgctxt ""
"hd_id051920170347039686\n"
"help.text"
msgid "Object Functions"
-msgstr ""
+msgstr "Object-functies"
#: vbasupport.xhp
msgctxt ""
@@ -34086,7 +34910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Support for VBA Macros"
-msgstr ""
+msgstr "Ondersteuning voor VBA-macro's"
#: vbasupport.xhp
msgctxt ""
@@ -34094,7 +34918,7 @@ msgctxt ""
"hd_id051720170332046289\n"
"help.text"
msgid "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Working with VBA Macros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Werken met VBA-macro's</link></variable>"
#: vbasupport.xhp
msgctxt ""
@@ -34102,7 +34926,7 @@ msgctxt ""
"par_id05172017033242490\n"
"help.text"
msgid "<ahelp hid=\".\">Visual Basic for Applications (VBA) is an implementation of Microsoft's Visual Basic which is built into all Microsoft Office applications. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Visual Basic voor Applicaties (VBA) is een implementatie van Microsoft's Visual Basic, wat in alle Microsoft Office applicaties is ingebouwd. </ahelp>"
#: vbasupport.xhp
msgctxt ""
@@ -34118,7 +34942,7 @@ msgctxt ""
"hd_id051720170350145604\n"
"help.text"
msgid "Loading Microsoft Office documents with executable VBA macros"
-msgstr ""
+msgstr "Microsoft Office documenten met uitvoerbare VBA-macro's laden"
#: vbasupport.xhp
msgctxt ""
@@ -34126,7 +34950,7 @@ msgctxt ""
"par_id051720170350147298\n"
"help.text"
msgid "Go to <item type=\"menuitem\">Tools – Options – Load / Save – VBA Properties</item> and mark the <emph>Excutable code</emph> checkbox. Then load or open your document."
-msgstr ""
+msgstr "Go to <item type=\"menuitem\">Extra – Opties – Laden/Opslaan – VBA-eigenschappen</item> en markeer het keuzevakje <emph>Uitvoerbare code</emph>. Laad dan of open uw document."
#: vbasupport.xhp
msgctxt ""
@@ -34134,7 +34958,7 @@ msgctxt ""
"hd_id051720170400536628\n"
"help.text"
msgid "Runing VBA Macros"
-msgstr ""
+msgstr "VBA-macro's uitvoeren"
#: vbasupport.xhp
msgctxt ""
@@ -34142,7 +34966,7 @@ msgctxt ""
"par_id051720170400539565\n"
"help.text"
msgid "Run VBA macros in the same way as %PRODUCTNAME Basic macros."
-msgstr ""
+msgstr "Voer VBA-macro's op dezelfde manier uit als %PRODUCTNAME Basic-macro's."
#: vbasupport.xhp
msgctxt ""
@@ -34158,7 +34982,7 @@ msgctxt ""
"hd_id051720170400533411\n"
"help.text"
msgid "Editing VBA Macros"
-msgstr ""
+msgstr "VBA-macro's bewerken"
#: vbasupport.xhp
msgctxt ""
@@ -34166,7 +34990,7 @@ msgctxt ""
"par_id051720170400532486\n"
"help.text"
msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
-msgstr ""
+msgstr "VBA-macro's kunnen bewerkt worden in de %PRODUCTNAME Basic-IDE."
#: vbasupport.xhp
msgctxt ""
@@ -34174,7 +34998,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">VBA-eigenschappen</link>"
#: vbasupport.xhp
msgctxt ""
@@ -34182,4 +35006,4 @@ msgctxt ""
"par_id051720170407401872\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic-IDE</link>"
diff --git a/source/nl/helpcontent2/source/text/scalc.po b/source/nl/helpcontent2/source/text/scalc.po
index 72e3541b458..8263e8e66ec 100644
--- a/source/nl/helpcontent2/source/text/scalc.po
+++ b/source/nl/helpcontent2/source/text/scalc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-11 11:24+0000\n"
-"Last-Translator: Henk van der Burg <h.vdburg@hccnet.nl>\n"
+"PO-Revision-Date: 2017-06-16 10:55+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494501884.000000\n"
+"X-POOTLE-MTIME: 1497610506.000000\n"
#: main0000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id033020170228348624\n"
"help.text"
msgid "Show Formula"
-msgstr ""
+msgstr "Formule weergeven"
#: main0103.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/00.po b/source/nl/helpcontent2/source/text/scalc/00.po
index 46ce15b96ad..d020e4ca59b 100644
--- a/source/nl/helpcontent2/source/text/scalc/00.po
+++ b/source/nl/helpcontent2/source/text/scalc/00.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-12 14:26+0000\n"
-"Last-Translator: Henk van der Burg <h.vdburg@hccnet.nl>\n"
+"PO-Revision-Date: 2017-06-16 10:55+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494599209.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497610519.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3145214\n"
"help.text"
msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"einaei\">Kies <emph>Blad - Benoemde bereiken en expressies - Invoegen</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_id3153558\n"
"help.text"
msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"einaueb\">Kies <emph>Blad - Benoemde bereiken en expressies - Maken</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "Choose <emph>Data - Calculate - Recalculate</emph>"
-msgstr ""
+msgstr "Kies <emph>Gegevens - Berekenen - Opnieuw berekenen</emph>"
#: 00000406.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<variable id=\"insert_page_break_row\">Choose <emph>Sheet - Insert Page Break - Row Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break_row\">Kies <emph>Blad - Pagina einde invoegen - Rijeinde</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<variable id=\"insert_page_break_column\">Choose <emph>Sheet - Insert Page Break - Column Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break_column\">Kies <emph>Blad - Pagina einde invoegen - Kolomeinde</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "<variable id=\"delete_page_break\">Choose <emph>Sheet - Delete Page Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break\">Kies <emph>Blad - Pagina einde verwijderen</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id3153191\n"
"help.text"
msgid "<variable id=\"delete_page_break_row\">Choose <emph>Sheet - Delete Page Break - Row Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break_row\">Kies <emph>Blad - Pagina einde verwijderen - Rijeinde</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1622,4 +1622,4 @@ msgctxt ""
"par_id3145645\n"
"help.text"
msgid "<variable id=\"delete_page_break_column\">Choose <emph>Sheet - Delete Page Break - Column Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break_column\">Kies <emph>Blad - Pagina einde verwijderen - Kolomeinde</emph></variable>"
diff --git a/source/nl/helpcontent2/source/text/scalc/01.po b/source/nl/helpcontent2/source/text/scalc/01.po
index c0aa34e5797..4a52093079c 100644
--- a/source/nl/helpcontent2/source/text/scalc/01.po
+++ b/source/nl/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-20 06:36+0000\n"
+"PO-Revision-Date: 2017-06-17 05:15+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495262187.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497676522.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/column\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/column\">Voer de kolomletter in. Druk op de Enter-toets om de celcursor in de gespecificeerde kolom van dezelfde rij te plaatsen.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3149958\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/row\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/row\">Voer het rijcijfer in. Druk op de Enter-toets om de celcursor in de gespecificeerde rij van dezelfde kolom te plaatsen.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id3150752\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Specificeert het huidige gegevens bereik, zoals aangegeven door de positie van de cel cursor.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/start\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/start\">Verplaatst naar de cel naar het begin van het huidige gegevensbereik, welke u kunt markeren met de knop <emph>Gegevensbereik</emph></ahelp>."
#: 02110000.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3152994\n"
"help.text"
msgid "<image id=\"img_id3150515\" src=\"sw/res/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150515\" src=\"sw/res/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3152985\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/end\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/end\">Verplaatst naar de cel naar het einde van het huidige gegevensbereik, welke u kunt markeren met de knop <emph>Gegevensbereik</emph></ahelp>."
#: 02110000.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3159170\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"sw/res/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"sw/res/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3159098\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/datarange\">Klik hier om de inhoudsopgave om te schakelen. Alleen het geselecteerde Navigatorelement en zijn subelementen zullen worden weergegeven.</ahelp> Klik nogmaals op dit pictogram om alle elementen weer te geven."
#: 02110000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"sw/res/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"sw/res/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3150051\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/toggle\">Allows you to hide/show the contents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/toggle\">Laat toe om de inhoud te verbergen/tonen.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3155597\n"
"help.text"
msgid "<image id=\"img_id3154738\" src=\"sw/res/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154738\" src=\"sw/res/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3153955\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Toont alle beschikbare scenario's w. Dubbelklik op een naam om het scenario uit te voeren.</ahelp> Het resultaat van uw keuze wordt weergegeven in het blad. Voor meer informatie, kies <link href=\"text/scalc/01/06050000.xhp\" name=\"Extra - Scenario's\"><emph>Extra - Scenario's</emph></link>."
#: 02110000.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3148745\n"
"help.text"
msgid "<image id=\"img_id3159256\" src=\"sc/res/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159256\" src=\"sc/res/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_idN10A7B\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/delete\">Deletes the selected scenario.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/scenariomenu/delete\">Verwijdert het geselecteerde scenario.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_idN10A96\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/edit\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/scenariomenu/edit\">Opent het dialoogvenster <link href=\"text/scalc/01/06050000.xhp\">Scenario bewerken</link>, waar u de scenario-eigenschappen kunt bewerken.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3157876\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/dragmode\">Opent een submenu waarin u de sleepmodus kunt selecteren. U kunt beslissen welke actie er wordt uitgevoerd wanneer u een object uit de Navigator in een document sleept. Het picotogram geeft aan of er een hyperlink, koppeling of kopie wordt gemaakt, afhankelijk van de geselecteerde modus.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id3146938\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/hyperlink\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/dropmenu/hyperlink\">Voegt een hyperlink in als u een object sleept en neerzet vanuit de Navigator in een document.</ahelp> U kunt later op de gemaakte hyperlink klikken om de cursor en de weergave voor het respectievelijke object in te stellen."
#: 02110000.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3150746\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/link\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/dropmenu/link\">Maakt een koppeling als u een object sleept en neerzet vanuit de Navigator in een document.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3147471\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/copy\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/dropmenu/copy\">Maakt een koppeling als u een object sleept en neerzet vanuit de Navigator in een document.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3150700\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">Displays all objects in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/contentbox\">Toont alle objecten in uw document.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3153929\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/documents\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/documents\">Toont alle namen van alle geopende documenten.</ahelp> Om in de Navigator over te schakelen naar een ander geopend document, klikt u op de naam van het document. De status (actief, inactief) van het document wordt tussen haakjes weergegeven achter de naam. Selecteer het actieve document via het <emph>Venster</emph>menu."
#: 02120000.xhp
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"par_id082520160232335032\n"
"help.text"
msgid "<image id=\"img_id083120161149318932\" src=\"media/screenshots/modules/scalc/ui/deletecells/DeleteCellsDialog.png\" width=\"3.3126in\" height=\"1.5209in\"><alt id=\"alt_id083120161149318932\">Delete cells dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120161149318932\" src=\"media/screenshots/modules/scalc/ui/deletecells/DeleteCellsDialog.png\" width=\"3.3126in\" height=\"1.5209in\"><alt id=\"alt_id083120161149318932\">Dialoogvenster Cellen verwijderen</alt></image>"
#: 02160000.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete Page Break"
-msgstr ""
+msgstr "Pagina-einde verwijderen"
#: 02190000.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"hd_id3150541\n"
"help.text"
msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Delete Page Break</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Pagina-einde verwijderen</link>"
#: 02190000.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Sheet - Delete Page Break - Row Break</emph>. The manual row break is removed."
-msgstr ""
+msgstr "Plaats de cursor in een cel direct onder het rij-einde, aangegeven door een horizontale lijn en kies <emph>Bewerken - Pagina einde verwijderen - Rij-einde</emph>. Het handmatig ingevoegde rij-einde wordt verwijderd."
#: 02190200.xhp
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Sheet - Delete Page Break - Column Break</emph>. The manual column break is removed."
-msgstr ""
+msgstr "Plaats de cursor in de cel rechts van het kolomeinde aangegeven door een verticale lijn en kies <emph>Bewerken - Pagina einde verwijderen - Kolomeinde</emph>. Het handmatig ingevoegde kolomeinde wordt verwijderd."
#: 02200000.xhp
msgctxt ""
@@ -2726,7 +2726,7 @@ msgctxt ""
"hd_id3154731\n"
"help.text"
msgid "Delete Page Breaks"
-msgstr ""
+msgstr "Pagina-einde verwijderen"
#: 03100000.xhp
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Page Break"
-msgstr ""
+msgstr "Pagina-einde invoegen"
#: 04010000.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"hd_id3153192\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Insert Page Break</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Pagina-einde invoegen</link>"
#: 04010000.xhp
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"par_id3155133\n"
"help.text"
msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Sheet - Delete Page Break\">Sheet - Delete Page Break</link> to remove breaks created manually."
-msgstr ""
+msgstr "Kies <link href=\"text/scalc/01/02190000.xhp\" name=\"Sheet - Delete Page Break\">Blad - Pagina-einde verwijderen</link> om de aangemaakt pagina-einden handmatig te verwijderen."
#: 04010100.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_idN105D1\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voegt een blad uit een ander werkbladbestand in.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr ""
+msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opent de <emph>Functie-assistent</emph> die u helpt om interactief functies te maken.</ahelp></variable> Teneinde de positie te bepalen van de formule die ingevoegd zal worden, selecteert u een cel of een cellenbereik voordat u de Functie-assistent start."
#: 04060000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"hd_id3154731\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Zoeken"
#: 04060000.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3155440\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/functionpage/search\">Search for a part of the function name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/functionpage/search\">Zoekt naar een deel van de functienaam.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3446,7 +3446,7 @@ msgctxt ""
"par_id3153417\n"
"help.text"
msgid "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr ""
+msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Somt alle categorieën op waaraan de verschillende functies zijn toegewezen. Selecteer een categorie om de toepasselijke functies in het lijstveld eronder te bekijken.</ahelp> Selecteer \"Alle\" om alle functies in alfabetische volgorde, los van de categorie, te bekijken. \"Als laatste gebruikt\" somt de functies op die u het meest recent heeft gebruikt. </variable>"
#: 04060000.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr ""
+msgstr "U kunt bladeren in <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Lijst met categoriën en functies</link>"
#: 04060000.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3155445\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/functionpage/function\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/functionpage/function\">Deze lijst geeft de functies weer die bij de geselecteerde categorie behoren. Dubbelklik op een functie om hem te selecteren.</ahelp> Een enkele klik geeft een korte functieomschrijving weer."
#: 04060000.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id3149566\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/array\">Door dit keuzevak te markeren zal de functie als een matrixformule in het geselecteerde cellenbereik worden ingevoegd. Elke cel in de matrix bevat de formule, niet als een kopie maar als een gemeenschappelijke formule gedeeld door alle matrixcellen.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Stelt u in staat om een onderliggend niveau van de <emph>Functie-assistent</emph> te bereiken om andere functies binnen de functie te nesten, in plaats van een waarde of verwijzing.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_id3159097\n"
"help.text"
msgid "The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table."
-msgstr ""
+msgstr "Het aantal zichtbare tekstvelden is afhankelijk van de functie. Voer argumenten direct in de argumentvelden in of klik op een cel in de tabel."
#: 04060000.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3150211\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Displays the calculation result or an error message.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Geeft het resultaat van de berekening weer of een foutmelding.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_id3149898\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Toont de gecreëerde formule. Typ de items rechtstreeks in of maak de formule met de Funtie-assistent.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3149316\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/next\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/next\">Gebruik deze functie om voorwaarts door de formulecomponenten te gaan in het formulevenster.</ahelp> Deze knop kan verder gebruikt worden om functies aan de formule toe te wijzen. Als u een functie selecteert en klikt op de knop <emph>Volgende</emph>, verschijnt de selectie in het formulevenster."
#: 04060000.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3153029\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/ok\">Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/ok\">Beëindigt de <emph>Functie-assistent</emph> en plaatst de formule in de geselecteerde cellen.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/cancel\">Closes the dialog without implementing the formula.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/cancel\">Sluit het dialoogvenster zonder de formule over te nemen.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3726,7 +3726,7 @@ msgctxt ""
"par_id3150481\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/structpage/struct\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/structpage/struct\">De functie wordt hier hiërarchisch weergegeven.</ahelp> U kunt de formules op- of uitvouwen met behulp van het plus- of minteken zodat de argumenten weergegeven of verborgen worden."
#: 04060000.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"hd_id3154944\n"
"help.text"
msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functions by Category</link></variable>"
-msgstr ""
+msgstr "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functies per categorie</link></variable>"
#: 04060100.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operatoren</link>"
#: 04060101.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_id3151272\n"
"help.text"
msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. <variable id=\"quotes\">For the DatabaseField parameter you can enter a reference to a header cell or a number to specify the column within the Database area, starting with 1. To reference a column by means of the literal column header name, place quotation marks around the header name.</variable>"
-msgstr ""
+msgstr "<emph>Databaseveld</emph> specificeert de kolom waar de functie op zal werken nadat de zoekcriteria van de eerste parameter zijn toegewezen en de gegevensrijen zijn geselecteerd. Het is niet aan de zoekcriteria zelf gerelateerd. Gebruik het getal 0 om het gehele gegevensbereik te specificeren. <variable id=\"quotes\">Plaats aanhalingstekens rondom de naam van de koprij om naar een kolom te verwijzen met behulp van de naam van de koprij. </variable>"
#: 04060101.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_id3153273\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNT returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr ""
+msgstr "Als het Databaseveld argument wordt overgeslagen, geeft DCOUNT het aantal terug van alle records die voldoen aan het criterium. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
#: 04060101.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"par_id3153274\n"
"help.text"
msgid "If the DatabaseField argument is omitted, DCOUNTA returns the count of all records that satisfy Criteria. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
-msgstr ""
+msgstr "Als het Databaseveld argument wordt overgeslagen, geeft DBAANTALC het aantal terug van alle records die voldoen aan het criterium. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
#: 04060101.xhp
msgctxt ""
@@ -5086,7 +5086,7 @@ msgctxt ""
"bm_id3154536\n"
"help.text"
msgid "<bookmark_value>date and time functions</bookmark_value> <bookmark_value>functions; date & time</bookmark_value> <bookmark_value>Function Wizard; date & time</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>datum en tijd - functies</bookmark_value> <bookmark_value>functies; datum en tijd</bookmark_value> <bookmark_value>Functie-assistent; datum en tijd</bookmark_value>"
#: 04060102.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"hd_id3154536\n"
"help.text"
msgid "Date & Time Functions"
-msgstr ""
+msgstr "Datum- en tijdfuncties"
#: 04060102.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id3153973\n"
"help.text"
msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
-msgstr ""
+msgstr "<variable id=\"datumzeittext\">Deze functies worden gebruikt voor het invoegen en bewerken van datums en tijden.</variable>"
#: 04060102.xhp
msgctxt ""
@@ -5118,7 +5118,7 @@ msgctxt ""
"par_id3150437\n"
"help.text"
msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
-msgstr ""
+msgstr "$[officename] behandelt de datum/tijdwaarden intern als een numerieke waarde. Als u de numerieke opmaak \"Getal\" aan een datum- of tijdwaarde toewijst, zal bijvoorbeeld 01/01/2000 12:00 PM worden omgezet in 36526,5. De waarde die aan de komma voorafgaat komt overeen met de datum; de waarde achter de komma komt overeen met de tijd. Als u deze numerieke weergave van een datum of tijd niet wil zien moet u de getalnotatie wijzigen in een datum- of tijdweergave. Teneinde dit te doen selecteert u de cel die de datum- of tijdwaarde bevat, roep dan het contextmenu op en selecteer <emph>Cellen opmaken</emph>. Het tabblad <emph>Getallen</emph> bevat de functies voor het definiëren van de getalnotatie."
#: 04060102.xhp
msgctxt ""
@@ -5230,7 +5230,7 @@ msgctxt ""
"par_id3149720\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
-msgstr ""
+msgstr "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - $[officename] - Algemeen</emph> vindt u het gebied <emph>Jaar (twee cijfers)</emph>. Dit stelt de periode in waarvoor de tweecijferige informatie van toepassing is. Merk op dat aanpassingen die hier worden gemaakt gevolgen hebben voor sommige van de volgende functies."
#: 04060102.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings."
-msgstr ""
+msgstr "Wanneer datums onderdeel van een formule zijn, worden schuine strepen of koppeltekens als scheidingstekens gebruikt. Daarom worden datums, die in deze opmaak worden ingevoerd, niet als datums herkend en leidt dit tot foutieve onderdeel van de formule geïnterpreteerd worden. Bijvoorbeeld DATUM(1954;7;20) of plaats de datum tussen aanhalingstekens volgens de ISO 8601-notatie, bijvoorbeeld \"1954-07-20\". Vermijd het gebruik van locale afhankelijke datum formaten zoals \"07/20/54\". De berekening kan fouten opleveren als het document geladen wordt met andere locale instellingen."
#: 04060102.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_idN10E621\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link> function."
-msgstr ""
+msgstr "Gebruik de functie <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link>, als de betalingen op onregelmatige basis plaatsvinden."
#: 04060103.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"par_id3150245\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1.$D$2."
-msgstr ""
+msgstr "<item type=\"input\">=CEL(\"ADRES\";'X:\\dr\\test.sxc'#$Blad1.D2)</item> geeft 'file:///X:/dr/test.sxc'#$Blad1.$D$2 terug."
#: 04060104.xhp
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"par_id3148896\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.ods'#$Sheet1, if the formula in the current document X:\\dr\\own.ods is located in Sheet1."
-msgstr ""
+msgstr "<item type=\"input\">=CEL(\"FILENAME\";D2)</item> geeft 'file:///X:/dr/own.sxc'#$Blad1 terug als de formule in het huidige document X:\\dr\\own.sxc aanwezig is op Blad1."
#: 04060104.xhp
msgctxt ""
@@ -9494,7 +9494,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1."
-msgstr ""
+msgstr "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> geeft 'file:///X:/dr/test.ods'#$Blad1 terug."
#: 04060104.xhp
msgctxt ""
@@ -9510,7 +9510,7 @@ msgctxt ""
"par_id3151004\n"
"help.text"
msgid "Returns the complete cell address in Lotus™ notation."
-msgstr ""
+msgstr "Geeft het volledige celadres in Lotus™-notatie."
#: 04060104.xhp
msgctxt ""
@@ -12198,7 +12198,7 @@ msgctxt ""
"bm_id3151221\n"
"help.text"
msgid "<bookmark_value>GCD_EXCEL2003 function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>GCD_EXCEL2003-functie</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -12206,7 +12206,7 @@ msgctxt ""
"hd_id3151221\n"
"help.text"
msgid "GCD_EXCEL2003"
-msgstr ""
+msgstr "GCD_EXCEL2003"
#: 04060106.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"par_id3156205\n"
"help.text"
msgid "GCD_EXCEL2003(Number(s))"
-msgstr ""
+msgstr "GCD_EXCEL2003(Getal(len))"
#: 04060106.xhp
msgctxt ""
@@ -12254,7 +12254,7 @@ msgctxt ""
"par_id3159192\n"
"help.text"
msgid "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> returns 5."
-msgstr ""
+msgstr "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> geeft 5 terug."
#: 04060106.xhp
msgctxt ""
@@ -12326,7 +12326,7 @@ msgctxt ""
"bm_id3154230\n"
"help.text"
msgid "<bookmark_value>LCM_EXCEL2003 function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>LCM_EXCEL2003-functie</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -12334,7 +12334,7 @@ msgctxt ""
"hd_id3154230\n"
"help.text"
msgid "LCM_EXCEL2003"
-msgstr ""
+msgstr "LCM_EXCEL2003"
#: 04060106.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id3154395\n"
"help.text"
msgid "LCM_EXCEL2003(Number(s))"
-msgstr ""
+msgstr "LCM_EXCEL2003(Getal(len))"
#: 04060106.xhp
msgctxt ""
@@ -12382,7 +12382,7 @@ msgctxt ""
"par_id3145135\n"
"help.text"
msgid "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> returns 75."
-msgstr ""
+msgstr "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> geeft 75 terug."
#: 04060106.xhp
msgctxt ""
@@ -12926,7 +12926,7 @@ msgctxt ""
"par_id3155020\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded away from zero. If the Mode value is equal to zero or is not given, negative numbers are rounded towards zero."
-msgstr ""
+msgstr "<emph>Modus</emph> is een optionele waarde. Als de waarde voor Modus ingevuld is en niet nul is en als Getal en Significantie negatief zijn, dan wordt de afronding gebaseerd op de absolute waarde van Getal, dat wil zeggen dat negatieve getallen van nul af afgerond worden. Als de waarde voor Modus nul of niet ingevuld is, worden negatieve getallen naar nul toe afgerond."
#: 04060106.xhp
msgctxt ""
@@ -12934,7 +12934,7 @@ msgctxt ""
"par_id3163792\n"
"help.text"
msgid "If the spreadsheet is exported to MS Excel, the CEILING function is exported as the equivalent CEILING.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that exists since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions. Note that CEILING.XCL always rounds away from zero."
-msgstr ""
+msgstr "Als het werkblad naar MS Excel wordt geëxporteerd, wordt de functie AFRONDEN.BOVEN geëxporteerd als het equivalent van de functie AFRONDEN.BOVEN.WISK dat sinds Excel 2013 bestaat. Als u het werkblad wilt gebruiken met eerdere Excel-versies, gebruik dan ook de functie AFRONDEN.BOVEN.NAUWKEURIG die bestaat sinds Excel 2010, of AFRONDEN.N.VEELVOUD die wordt geëxporteerd als de functie AFRONDEN.BOVEN die compatibel is met alle Excel versies. Merk op dat AFRONDEN.N.VEELVOUD altijd afrond vanaf 0."
#: 04060106.xhp
msgctxt ""
@@ -15382,7 +15382,7 @@ msgctxt ""
"par_id3157517\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded towards zero. If the Mode value is equal to zero or is not given, negative numbers are rounded away from zero."
-msgstr ""
+msgstr "<emph>Modus</emph> is een optionele waarde. Als de waarde voor Modus ingevuld is en niet nul is en als Getal en Significantie negatief zijn, dan wordt de afronding gebaseerd op de absolute waarde van Getal, dat wil zeggen dat negatieve getallen van nul af afgerond worden. Als de waarde voor Modus nul of niet ingevuld is, worden negatieve getallen naar nul toe afgerond."
#: 04060106.xhp
msgctxt ""
@@ -15390,7 +15390,7 @@ msgctxt ""
"par_id3163894\n"
"help.text"
msgid "If the spreadsheet is exported to MS Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that exists since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that exists since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions. Note that FLOOR.XCL always rounds towards zero."
-msgstr ""
+msgstr "Als het werkblad naar MS Excel wordt geëxporteerd, wordt de functie AFRONDEN.BENEDEN geëxporteerd als het equivalent van de functie ONDERGRENS.MATH dat sinds Excel 2013 bestaat. Als u het werkblad wilt gebruiken met eerdere Excel-versies, gebruik dan ook de functie ONDERGRENS.PRECIES die bestaat sinds Excel 2010, of ONDERGRENS.EXCEL die wordt geëxporteerd als de functie AFRONDEN.BENEDEN die compatibel is met alle Excel versies. Merk op dat ONDERGRENS.EXCEL altijd afrond in de richting van de 0."
#: 04060106.xhp
msgctxt ""
@@ -17294,7 +17294,7 @@ msgctxt ""
"par_idN11635\n"
"help.text"
msgid "You can find a general introduction to using Array functions on top of this page."
-msgstr ""
+msgstr "Boven aan deze pagina vindt u een algemene inleiding tot het gebruik van matrixfuncties."
#: 04060107.xhp
msgctxt ""
@@ -17510,7 +17510,7 @@ msgctxt ""
"par_id3168518\n"
"help.text"
msgid "The above table is 2 rows, 4 columns. In order to transpose it, you must select 4 rows, 2 columns. Assuming you want to transpose the above table to the range A7:B10 (4 rows, 2 columns) you must select the entire range and then enter the following:"
-msgstr ""
+msgstr "De bovenstaande tabel bevat 2 rijen en 4 kolommen. Om deze te transponeren moet u 4 rijen en 2 kolommen selecteren. Als u de bovenstaande tabel wilt transponeren naar het bereik A7:B10 (4 rijen en 2 kolommen) moet u het volledige bereik selecteren en voer dan het volgende in:"
#: 04060107.xhp
msgctxt ""
@@ -17518,7 +17518,7 @@ msgctxt ""
"par_id3166145\n"
"help.text"
msgid "TRANSPOSE(A1:D2)"
-msgstr ""
+msgstr "TRANSPOSE(A1:D2)"
#: 04060107.xhp
msgctxt ""
@@ -17526,7 +17526,7 @@ msgctxt ""
"par_id3178518\n"
"help.text"
msgid "Then <emph>make sure to enter it as matrix formula with </emph><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Shift+Command+Enter</emph></caseinline><defaultinline><emph>Shift+Ctrl+Enter</emph></defaultinline></switchinline>. The result will be as follows:"
-msgstr ""
+msgstr "Vervolgens <emph>zorg ervoor dat u het invoert als matrixformule met </emph><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Shift+Command+Enter</emph></caseinline><defaultinline><emph>Shift+Ctrl+Enter</emph></defaultinline></switchinline>. Het resultaat is als volgt:"
#: 04060107.xhp
msgctxt ""
@@ -17598,7 +17598,7 @@ msgctxt ""
"par_id3154448\n"
"help.text"
msgid "If <emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
-msgstr ""
+msgstr "Als <emph>Lineairtype</emph> ONWAAR is wordt de gevonden rechte lijn gedwongen door het punt van oorsprong te gaan (de constante a is nul; y = bx). Indien weggelaten, gaat <emph>Lineairtype</emph> standaard naar WAAR (de lijn wordt niet gedwongen dor het punt van oorsprong te gaan)."
#: 04060107.xhp
msgctxt ""
@@ -17606,7 +17606,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "If <emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
-msgstr ""
+msgstr "Als <emph>Statistieken</emph> wordt weggelaten of ONWAAR is wordt alleen de bovenste lijn van de tabel met statistieken teruggegeven. Indien WAAR wordt de gehele tabel teruggegeven."
#: 04060107.xhp
msgctxt ""
@@ -18958,7 +18958,7 @@ msgctxt ""
"hd_id3153018\n"
"help.text"
msgid "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Statistics Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Statistische functies</link></variable>"
#: 04060108.xhp
msgctxt ""
@@ -19558,7 +19558,7 @@ msgctxt ""
"par_id3154842\n"
"help.text"
msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item> applications have the server name \"soffice\"."
-msgstr ""
+msgstr "<emph>Server</emph> is de naam van een server-toepassing. <item type=\"productname\">%PRODUCTNAME</item>toepassingen hebben de servernaam \"soffice\"."
#: 04060109.xhp
msgctxt ""
@@ -19662,7 +19662,7 @@ msgctxt ""
"par_id3148734\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.ods\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.ods."
-msgstr ""
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"blad1.A1\")</item> leest de inhoud van cel A1 in blad1 van het <item type=\"productname\">%PRODUCTNAME</item> Calc-werkblad data1.sxc."
#: 04060109.xhp
msgctxt ""
@@ -19670,7 +19670,7 @@ msgctxt ""
"par_id3153081\n"
"help.text"
msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr ""
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Motto van vandaag\")</item> geeft een motto terug in de cel die deze formule bevat. Eerst moet u een regel invoeren in het document motto.odt dat de tekst van het motto bevat en het definiëren als de eerste regel van een sectie genaamd <item type=\"literal\">Motto van vandaag</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer onder <emph>Invoegen - Sectie</emph>). Als het motto is aangepast (en opgeslagen) in het <item type=\"productname\">%PRODUCTNAME</item> Writerdocument wordt het motto bijgewerkt in alle cellen van <item type=\"productname\">%PRODUCTNAME</item> Calc waarin deze DDE-koppeling is gedefiniëerd."
#: 04060109.xhp
msgctxt ""
@@ -19838,7 +19838,7 @@ msgctxt ""
"par_id3150691\n"
"help.text"
msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
-msgstr ""
+msgstr "<item type=\"input\">=INDEX(SomX;4;1)</item> geeft de waarde uit het bereik <emph>SomX</emph> in rij 4 en kolom 1 zoals gedefiniëerd in <emph>Blad - Namen - Definiëren</emph>."
#: 04060109.xhp
msgctxt ""
@@ -19862,7 +19862,7 @@ msgctxt ""
"par_id3158419\n"
"help.text"
msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr ""
+msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> geeft de waarde aan die rij 4 en kolom 1 van het (meervoudige) bereik bevat, die u hebt genoemd onder <emph>Blad - Namen - Definiëren</emph> als <emph>multi</emph>. Het meervoudige bereik kan bestaan uit verschillende rechthoekige bereiken, elk met een rij 4 en kolom 1. Als u nu het tweede blok van dit meervoudige bereik wilt aanroepen voer dan het nummer <item type=\"input\">2</item> in als de <emph>reeks</emph>parameter."
#: 04060109.xhp
msgctxt ""
@@ -20182,7 +20182,7 @@ msgctxt ""
"par_id3149984\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Verticaal zoeken met verwijzing naar de aanliggende cellen aan de rechterzijde.</ahelp> Deze functie controleert of een specifieke waarde is opgenomen in de eerste kolom van een matrix. De functie geeft dan de waarde terug in dezelfde rij van de kolom die wordt genoemd bij <item type=\"literal\">Index</item>. Als de parameter <item type=\"literal\">Sorteren</item> wordt weggelaten of ingesteld op WAAR of één, wordt aangenomen dat de gegevens zijn gesorteerd in oplopende volgorde. In dit geval zal, als het exacte <item type=\"literal\">Zoekcriterium</item> niet wordt gevonden, de laatste waarde die kleiner is dan het criterium worden teruggegeven. Als <item type=\"literal\">Sorteren</item> is ingesteld op ONWAAR of nul moet een exacte overeenkomst worden gevonden, anders zal de fout <emph>FOUT: Waarde niet beschikbaar</emph> het resultaat zijn. Dus met de waarde nul behoeven de gegevens niet te zijn gesorteerd in oplopende volgorde."
#: 04060109.xhp
msgctxt ""
@@ -20198,7 +20198,7 @@ msgctxt ""
"par_id3150156\n"
"help.text"
msgid "=VLOOKUP(SearchCriterion; Array; Index; Sorted)"
-msgstr ""
+msgstr "=VERT.ZOEKEN (Zoekcriteria; Matrix; Index; Sorteervolgorde)"
#: 04060109.xhp
msgctxt ""
@@ -20230,7 +20230,7 @@ msgctxt ""
"par_id3151208\n"
"help.text"
msgid "<emph>Sorted</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
-msgstr ""
+msgstr "<emph>Sorteervolgorde</emph> is een optionele parameter die aangeeft of de eerste kolom in de matrix is gesorteerd in oplopende volgorde. Voer de Booleaanse waarde ONWAAR of nul in als de eerste kolom niet is gesorteerd in oplopende volgorde. Gesorteerde kolommen kunnen veel sneller worden doorzocht en de functie geeft altijd een waarde terug, zelfs als de zoekwaarde niet exact overeenkomt, indien die tussen de hoogste en laagste waarde van de gesorteerde lijst ligt. In ongesorteerde lijsten moet de zoekwaarde exact overeenkomen. In andere gevallen zal de functie dit bericht teruggeven: <emph>Fout: Waarde niet beschikbaar</emph>."
#: 04060109.xhp
msgctxt ""
@@ -20246,7 +20246,7 @@ msgctxt ""
"par_id3154129\n"
"help.text"
msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">Sorted</item> parameter is not necessary."
-msgstr ""
+msgstr "U wilt het nummer van een gerecht uit het menu in cel A1 invoeren en de naam van het gerecht moet onmiddellijk als tekst verschijnen in de naastgelegen cel (B1). De toewijzing Nummer aan Naam is opgenomen in de matrix D1:E100. D1 bevat <item type=\"input\">100</item>, E1 bevat de naam <item type=\"input\">Groentensoep</item> enzovoort, voor 100 menu-items. De getallen in kolom D zijn oplopend gesorteerd; dus, de optionele parameter <item type=\"literal\">Sorteren</item> is niet nodig."
#: 04060109.xhp
msgctxt ""
@@ -20678,7 +20678,7 @@ msgctxt ""
"par_id3153389\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Geeft de inhoud van een cel weer of uit een één-rij of één-kolom bereik.</ahelp> Optioneel wordt de toegewezen waarde (van dezelfde index) teruggegeven in een andere kolom en rij. Tegengesteld aan <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VERT.ZOEKEN</link> en <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HORIZ.ZOEKEN</link> mogen de zoek- en resultaatvector op verschillende posities liggen; zij hoeven niet aanliggend te zijn. Aansluitend daarop moet de zoekvector voor ZOEKEN oplopend gesorteerd zijn, anders zal de zoekactie geen bruikbare resultaten teruggeven."
#: 04060109.xhp
msgctxt ""
@@ -20958,7 +20958,7 @@ msgctxt ""
"par_id3146070\n"
"help.text"
msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)"
-msgstr ""
+msgstr "HORIZ.ZOEKEN (Zoekcriteria; Matrix; Index; Sorteervolgorde)"
#: 04060109.xhp
msgctxt ""
@@ -20966,7 +20966,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "See also: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr ""
+msgstr "Zie ook:<link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VERT.ZOEKEN</link> (kolommen en rijen worden omgewisseld)"
#: 04060109.xhp
msgctxt ""
@@ -21486,7 +21486,7 @@ msgctxt ""
"bm_id3145389\n"
"help.text"
msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tekst in cellen; functies</bookmark_value> <bookmark_value>functies; tekstfuncties</bookmark_value> <bookmark_value>Functie-assistent;tekst</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -21494,7 +21494,7 @@ msgctxt ""
"hd_id3145389\n"
"help.text"
msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Text Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Tekstfuncties</link></variable>"
#: 04060110.xhp
msgctxt ""
@@ -21502,7 +21502,7 @@ msgctxt ""
"par_id3152986\n"
"help.text"
msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions. </variable>"
-msgstr ""
+msgstr "<variable id=\"texttext\">In deze sectie staan beschrijvingen van de <emph>Tekst</emph>-functies. </variable>"
#: 04060110.xhp
msgctxt ""
@@ -22358,7 +22358,7 @@ msgctxt ""
"par_id3146149\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Returns the position of a string of text within another string.</ahelp>You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">Geeft de positie van een een tekenreeks binnen een andere tekenreeks.</ahelp> U kunt ook definiëren waar het zoeken moet beginnen. De zoekterm kan een getal of een reeks tekens zijn. De zoekopdracht is hoofdlettergevoelig."
#: 04060110.xhp
msgctxt ""
@@ -24134,7 +24134,7 @@ msgctxt ""
"par_id3156074\n"
"help.text"
msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
-msgstr ""
+msgstr "<item type=\"input\">=TRIM(\" hallo wereld \")</item> geeft hallo wereld terug zonder voorafgaande of volgende spaties en met een enkele spatie tussen de woorden."
#: 04060110.xhp
msgctxt ""
@@ -24174,7 +24174,7 @@ msgctxt ""
"par_id0907200904123753\n"
"help.text"
msgid "<item type=\"literal\">UNICHAR(number)</item>"
-msgstr ""
+msgstr "<item type=\"literal\">UNICHAR(getal)</item>"
#: 04060110.xhp
msgctxt ""
@@ -24198,7 +24198,7 @@ msgctxt ""
"par_id050220170755399756\n"
"help.text"
msgid "See also the UNICODE() function."
-msgstr ""
+msgstr "Zie ook de functie UNICODE()."
#: 04060110.xhp
msgctxt ""
@@ -24238,7 +24238,7 @@ msgctxt ""
"par_id0907200904123846\n"
"help.text"
msgid "<item type=\"literal\">UNICODE(\"Text\")</item>"
-msgstr ""
+msgstr "<item type=\"literal\">UNICODE(\"Tekst\")</item>"
#: 04060110.xhp
msgctxt ""
@@ -24262,7 +24262,7 @@ msgctxt ""
"par_id050220170755393174\n"
"help.text"
msgid "See also the UNICHAR() function."
-msgstr ""
+msgstr "Zie ook de functie UNICHAR()."
#: 04060110.xhp
msgctxt ""
@@ -24414,7 +24414,7 @@ msgctxt ""
"hd_id3150870\n"
"help.text"
msgid "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in Functions\">Add-in Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in Functions\">Invoegfuncties</link></variable>"
#: 04060111.xhp
msgctxt ""
@@ -26774,7 +26774,7 @@ msgctxt ""
"bm_id3152871\n"
"help.text"
msgid "<bookmark_value>add-ins; analysis functions</bookmark_value> <bookmark_value>analysis functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>addins; analysefuncties</bookmark_value> <bookmark_value>analysefuncties</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -26782,7 +26782,7 @@ msgctxt ""
"hd_id3152871\n"
"help.text"
msgid "<variable id=\"head_addin_analysis_one\"><link href=\"text/scalc/01/04060115.xhp\" name=\"Add-in Functions, List of Analysis Functions Part One\">Add-in Functions, List of Analysis Functions Part One</link></variable>"
-msgstr ""
+msgstr "<variable id=\"head_addin_analysis_one\"><link href=\"text/scalc/01/04060115.xhp\" name=\"Add-in functies, Lijst met analyse functies, deel 1\">Add-in functies, Lijst met analyse functies, deel 1</link></variable>"
#: 04060115.xhp
msgctxt ""
@@ -26846,7 +26846,7 @@ msgctxt ""
"hd_id050220171032372604\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Voorbeelden"
#: 04060115.xhp
msgctxt ""
@@ -26926,7 +26926,7 @@ msgctxt ""
"hd_id050220171032372274\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Voorbeelden"
#: 04060115.xhp
msgctxt ""
@@ -26950,7 +26950,7 @@ msgctxt ""
"par_id050220171019079818\n"
"help.text"
msgid "=BESSELJ(-1, 3), returns -0.019563353982668"
-msgstr ""
+msgstr "=BESSELJ(-1, 3), geeft -0,019563353982668"
#: 04060115.xhp
msgctxt ""
@@ -27006,7 +27006,7 @@ msgctxt ""
"hd_id050220171032373675\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Voorbeelden"
#: 04060115.xhp
msgctxt ""
@@ -27014,7 +27014,7 @@ msgctxt ""
"par_id050220171019073898\n"
"help.text"
msgid "=BESSELK(3.45, 4), returns 0.144803466373734"
-msgstr ""
+msgstr "=BESSELK(3,45, 4), geeft 0,144803466373734"
#: 04060115.xhp
msgctxt ""
@@ -27022,7 +27022,7 @@ msgctxt ""
"par_id050220171019079889\n"
"help.text"
msgid "=BESSELK(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
-msgstr ""
+msgstr "=BESSELK(3,45, 4,333), geeft 0,144803466373734, hetzelfde als hierboven, omdat het breukgedeelte van N wordt genegeerd."
#: 04060115.xhp
msgctxt ""
@@ -27030,7 +27030,7 @@ msgctxt ""
"par_id050220171019076471\n"
"help.text"
msgid "=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)"
-msgstr ""
+msgstr "=BESSELK(0, 3), geeft Err:502 – ongeldig argument (X=0)"
#: 04060115.xhp
msgctxt ""
@@ -27086,7 +27086,7 @@ msgctxt ""
"hd_id050220171019084402\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Voorbeelden"
#: 04060115.xhp
msgctxt ""
@@ -27094,7 +27094,7 @@ msgctxt ""
"par_id050220171019081114\n"
"help.text"
msgid "=BESSELY(3.45, 4), returns -0.679848116844476"
-msgstr ""
+msgstr "=BESSELY(3,45, 4), geeft -0,679848116844476"
#: 04060115.xhp
msgctxt ""
@@ -27102,7 +27102,7 @@ msgctxt ""
"par_id050220171019081288\n"
"help.text"
msgid "=BESSELY(3.45, 4.333), returns -0.679848116844476, same as above because the fractional part of N is ignored."
-msgstr ""
+msgstr "=BESSELY(3,45, 4,333), geeft -0,679848116844476, hetzelfde als hierboven, omdat het breukgedeelte van N wordt genegeerd."
#: 04060115.xhp
msgctxt ""
@@ -27110,7 +27110,7 @@ msgctxt ""
"par_id050220171019082347\n"
"help.text"
msgid "=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)"
-msgstr ""
+msgstr "=BESSELY(0, 3), geeft Err:502 – ongeldig argument (X=0)"
#: 04060115.xhp
msgctxt ""
@@ -27118,7 +27118,7 @@ msgctxt ""
"bm_id3153034\n"
"help.text"
msgid "<bookmark_value>BIN2DEC function</bookmark_value> <bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>BIN.N.DEC-functie</bookmark_value> <bookmark_value>converteren;binaire getallen naar decimale getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27182,7 +27182,7 @@ msgctxt ""
"bm_id3149954\n"
"help.text"
msgid "<bookmark_value>BIN2HEX function</bookmark_value> <bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>BIN.N.HEX-functie</bookmark_value> <bookmark_value>converteren;binaire getallen naar hexadecimale getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27254,7 +27254,7 @@ msgctxt ""
"bm_id3153332\n"
"help.text"
msgid "<bookmark_value>BIN2OCT function</bookmark_value> <bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>BIN.N.OCT-functie</bookmark_value> <bookmark_value>converteren;binaire getallen naar octale getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27326,7 +27326,7 @@ msgctxt ""
"bm_id3150014\n"
"help.text"
msgid "<bookmark_value>DELTA function</bookmark_value> <bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>DELTA-functie</bookmark_value> <bookmark_value>herkennen;gelijke getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27382,7 +27382,7 @@ msgctxt ""
"bm_id3157971\n"
"help.text"
msgid "<bookmark_value>DEC2BIN function</bookmark_value> <bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>DEC.N.BIN-functie</bookmark_value><bookmark_value>converteren;decimale getallen naar binaire getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27454,7 +27454,7 @@ msgctxt ""
"bm_id3149388\n"
"help.text"
msgid "<bookmark_value>DEC2HEX function</bookmark_value> <bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>DEC.N.HEX-functie</bookmark_value><bookmark_value>converteren;decimale getallen naar hexadecimale getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27526,7 +27526,7 @@ msgctxt ""
"bm_id3154948\n"
"help.text"
msgid "<bookmark_value>DEC2OCT function</bookmark_value> <bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>DEC.N.OCT-functie</bookmark_value><bookmark_value>converteren;decimale getallen naar getallen uit achttalig stelsel</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27598,7 +27598,7 @@ msgctxt ""
"bm_id3083446\n"
"help.text"
msgid "<bookmark_value>ERF function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>FOUTFUNCTIE</bookmark_value><bookmark_value>Gaussische foutintegraal</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27670,7 +27670,7 @@ msgctxt ""
"bm_id2983446\n"
"help.text"
msgid "<bookmark_value>ERF.PRECISE function</bookmark_value> <bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ERF.PRECIES-functie</bookmark_value> <bookmark_value>Gaussische foutintegraal</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27686,7 +27686,7 @@ msgctxt ""
"par_id2950381\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERF_MS\">Returns values of the Gaussian error integral between 0 and the given limit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ERF_MS\">Geeft de waarden van de Gaussische foutintegraal tussen x en de ondergrens terug.</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -27702,7 +27702,7 @@ msgctxt ""
"par_id2963824\n"
"help.text"
msgid "ERF.PRECISE(LowerLimit)"
-msgstr ""
+msgstr "ERF.PRECIES(Ondergrens)"
#: 04060115.xhp
msgctxt ""
@@ -27710,7 +27710,7 @@ msgctxt ""
"par_id2949715\n"
"help.text"
msgid "<emph>LowerLimit</emph> is the limit of the integral. The calculation takes places between 0 and this limit."
-msgstr ""
+msgstr "<emph>Ondergrens</emph> is de ondergrens van de integraal. De berekening vindt plaats tussen 0 en deze ondergrens."
#: 04060115.xhp
msgctxt ""
@@ -27726,7 +27726,7 @@ msgctxt ""
"par_id2952974\n"
"help.text"
msgid "<item type=\"input\">=ERF.PRECISE(1)</item> returns 0.842701."
-msgstr ""
+msgstr "<item type=\"input\">=ERF.PRECIES(1)</item> geeft 0.842701 terug."
#: 04060115.xhp
msgctxt ""
@@ -27862,7 +27862,7 @@ msgctxt ""
"bm_id3152927\n"
"help.text"
msgid "<bookmark_value>GESTEP function</bookmark_value> <bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>GROTER.DAN-functie</bookmark_value> <bookmark_value>getallen;groter dan of gelijk aan</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27918,7 +27918,7 @@ msgctxt ""
"bm_id3147276\n"
"help.text"
msgid "<bookmark_value>HEX2BIN function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>HEX.N.BIN-functie</bookmark_value> <bookmark_value>converteren;hexadecimale getallen, naar binaire getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -27990,7 +27990,7 @@ msgctxt ""
"bm_id3154742\n"
"help.text"
msgid "<bookmark_value>HEX2DEC function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>HEX.N.DEC-functie</bookmark_value> <bookmark_value>converteren;hexadecimale getallen, naar decimale getallen</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28054,7 +28054,7 @@ msgctxt ""
"bm_id3149750\n"
"help.text"
msgid "<bookmark_value>HEX2OCT function</bookmark_value> <bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>HEX.N.OCT-functie</bookmark_value> <bookmark_value>converteren;hexadecimale getallen, naar getallen uit achttalig stelsel</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28142,7 +28142,7 @@ msgctxt ""
"hd_id3154659\n"
"help.text"
msgid "<variable id=\"head_addin_analysis_two\"><link href=\"text/scalc/01/04060116.xhp\" name=\"Add-in Functions, List of Analysis Functions Part Two\">Add-in Functions, List of Analysis Functions Part Two</link></variable>"
-msgstr ""
+msgstr "<variable id=\"head_addin_analysis_two\"><link href=\"text/scalc/01/04060116.xhp\" name=\"Add-in functies, Lijst met analyse functies, deel 2\">Add-in functies, Lijst met analyse functies, deel 2</link></variable>"
#: 04060116.xhp
msgctxt ""
@@ -30774,7 +30774,7 @@ msgctxt ""
"par_idN10E62\n"
"help.text"
msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">IRR</link> function."
-msgstr ""
+msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">IRR</link>."
#: 04060118.xhp
msgctxt ""
@@ -31014,7 +31014,7 @@ msgctxt ""
"par_id3153904\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value) for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Berekent de kapitaalwaarde (netto contante waarde) voor een lijst van betalingen die op verschillende datums vallen.</ahelp> De berekening is gebaseerd op basis van een jaar met 365 dagen, waarbij schrikkeljaren genegeerd worden."
#: 04060118.xhp
msgctxt ""
@@ -31022,7 +31022,7 @@ msgctxt ""
"par_idN11138\n"
"help.text"
msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">NPV</link> function."
-msgstr ""
+msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">NVP</link>."
#: 04060118.xhp
msgctxt ""
@@ -31286,7 +31286,7 @@ msgctxt ""
"par_id3155586\n"
"help.text"
msgid "<item type=\"input\">=RATE(3;-10;900)</item> = -75.63% The interest rate is therefore 75.63%."
-msgstr ""
+msgstr "<item type=\"input\">=KOERS(3;10;900)</item> = -75,63% De rentekoers is daarom 75,63%."
#: 04060118.xhp
msgctxt ""
@@ -33598,7 +33598,7 @@ msgctxt ""
"par_id3145308\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_NBW\">Retourneert de huidige waarde van een investering op basis van een reeks periodieke cashflows en een discontovoet. Teneinde de netto huidige waarde te verkrijgen, trekt u de kosten van het project (de eerste cashflow op het tijdstip nul) van de retourwaarde af.</ahelp>"
#: 04060119.xhp
msgctxt ""
@@ -33606,7 +33606,7 @@ msgctxt ""
"par_idN111381\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link> function."
-msgstr ""
+msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNVP</link>."
#: 04060119.xhp
msgctxt ""
@@ -36390,7 +36390,7 @@ msgctxt ""
"par_id289760\n"
"help.text"
msgid "<emph>Alpha</emph> The border probability that is attained or exceeded."
-msgstr ""
+msgstr "<emph>Alfa</emph>De grenzen van een kansbereik dat wordt bereikt of overschreden."
#: 04060181.xhp
msgctxt ""
@@ -41350,7 +41350,7 @@ msgctxt ""
"par_id3150741\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Getal1, Getal2,...Getal30</emph> zijn numerieke waarden of bereiken."
#: 04060184.xhp
msgctxt ""
@@ -42758,7 +42758,7 @@ msgctxt ""
"par_id3147238\n"
"help.text"
msgid "PERCENTRANK(Data; Value; Significance)"
-msgstr ""
+msgstr "PERCENT.RANG(Gegevens; Waarde; Significantie)"
#: 04060184.xhp
msgctxt ""
@@ -42782,7 +42782,7 @@ msgctxt ""
"par_id2748477\n"
"help.text"
msgid "<emph>Significance</emph> An optional argument that specifies the number of significant digits that the returned percentage value is rounded to. If omitted, a value of 3 is used."
-msgstr ""
+msgstr "<emph>Significantie</emph> Een optioneel argument dat het aantal beduidende cijfers specificeert, waar het geretourneerde percentage op wordt afgerond. Indien weggelaten, wordt een waarde van 3 toegepast."
#: 04060184.xhp
msgctxt ""
@@ -43710,7 +43710,7 @@ msgctxt ""
"par_id3147405\n"
"help.text"
msgid "FORECAST.LINEAR(Value; DataY; DataX)"
-msgstr ""
+msgstr "VOORSPELLEN.LINEAR(waarde; gegevens_Y; gegevens_X)"
#: 04060185.xhp
msgctxt ""
@@ -46918,7 +46918,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Named Ranges and Expressions"
-msgstr ""
+msgstr "Benoemde bereiken en expressies"
#: 04070000.xhp
msgctxt ""
@@ -46926,7 +46926,7 @@ msgctxt ""
"hd_id3153951\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Benoemde bereiken en expressies</link>"
#: 04070000.xhp
msgctxt ""
@@ -47022,7 +47022,7 @@ msgctxt ""
"par_id3163712\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the area for which you want to define a reference or a formula expression.</ahelp> All area names already defined in the spreadsheet are listed in the text field above. If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
-msgstr ""
+msgstr "<ahelp hid=\".\">Voer de naam in van het gebied waarvoor u een verwijzing of een formule-expressie wilt definiëren. Alle gebiedsnamen die al in het werkblad staan, worden in het onderstaande tekstveld weergegeven.</ahelp> Als u op een naam in de lijst klikt, wordt de overeenkomstige verwijzing in het document met een blauw frame weergegeven. Als er meerdere celbereiken tot dezelfde gebiedsnaam behoren, worden ze met verschillend gekleurde frames weergegeven."
#: 04070100.xhp
msgctxt ""
@@ -47038,7 +47038,7 @@ msgctxt ""
"par_id3147435\n"
"help.text"
msgid "<ahelp hid=\".\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">De verwijzing van de geselecteerde gebiedsnaam wordt hier als een absolute waarde weergegeven.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47062,7 +47062,7 @@ msgctxt ""
"hd_id31547291\n"
"help.text"
msgid "<ahelp hid=\".\">Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document.</ahelp> Any other sheet name selected will restrict the scope of the named range or formula expression to that sheet."
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer de omvang van het benoemde bereik of benoemde formule. Document (Global): betekent dat de naam voor het gehele document geldig is.</ahelp> Als een andere bladnaam geselecteerd wordt, dan wordt de reikwijdte van het benoemde bereik of formule-expressie tot dat blad beperkt."
#: 04070100.xhp
msgctxt ""
@@ -47078,7 +47078,7 @@ msgctxt ""
"par_id3149958\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to specify the <emph>Area type</emph> (optional) for the reference.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hiermee kunt u het <emph>Gebiedstype</emph> (optioneel) voor de verwijzing opgeven.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47102,7 +47102,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the area as a print range.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definieert het gebied als een afdrukbereik.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47118,7 +47118,7 @@ msgctxt ""
"par_id3155766\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definieert het geselecteerde gebied dat in een <link href=\"text/scalc/01/12040300.xhp\" name=\"speciaal filter\">speciaal filter</link> gebruikt moet worden.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47134,7 +47134,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the area as a repeating column.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definieert het gebied als een herhalende kolom.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47150,7 +47150,7 @@ msgctxt ""
"par_id3150300\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the area as a repeating row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definieert het gebied als een herhalende rij.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47158,7 +47158,7 @@ msgctxt ""
"hd_id3155112\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Toevoegen"
#: 04070100.xhp
msgctxt ""
@@ -47166,7 +47166,7 @@ msgctxt ""
"par_id3159236\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Add</emph> button to add a new defined name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik op de knop <emph>Toevoegen</emph> om een nieuw gedefinieerde naam toe te voegen.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47174,7 +47174,7 @@ msgctxt ""
"par_id3150301\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/names\" visibility=\"hidden\">Select a named range or named formula from the list to modify its properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/managenamesdialog/names\" visibility=\"hidden\">Selecteer een benoemd bereik of een benoemde formule in de lijst, om de eigenschappen van te wijzigen.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -47182,7 +47182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paste Names"
-msgstr ""
+msgstr "Namen plakken"
#: 04070200.xhp
msgctxt ""
@@ -47190,7 +47190,7 @@ msgctxt ""
"bm_id3153195\n"
"help.text"
msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value> <bookmark_value>pasting; cell ranges</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>celbereik; benoemde bereiken invoegen</bookmark_value><bookmark_value>invoegen; celbereik</bookmark_value> <bookmark_value>plakken; celbereik</bookmark_value>"
#: 04070200.xhp
msgctxt ""
@@ -47198,7 +47198,7 @@ msgctxt ""
"hd_id3153195\n"
"help.text"
msgid "Paste Names"
-msgstr ""
+msgstr "Namen plakken"
#: 04070200.xhp
msgctxt ""
@@ -47222,7 +47222,7 @@ msgctxt ""
"hd_id3153160\n"
"help.text"
msgid "Table area"
-msgstr ""
+msgstr "Tabelbereik"
#: 04070200.xhp
msgctxt ""
@@ -47230,7 +47230,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertname/ctrl\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/insertname/ctrl\">Een lijst van alle gedefinieerde celbereiken wordt hier getoond. Dubbelklik op een willekeurig item om het benoemde bereik in te voegen op de huidige cursorpositie in het actieve blad.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -47238,7 +47238,7 @@ msgctxt ""
"hd_id3153418\n"
"help.text"
msgid "Paste All"
-msgstr ""
+msgstr "Alles plakken"
#: 04070200.xhp
msgctxt ""
@@ -47246,7 +47246,7 @@ msgctxt ""
"par_id3155066\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertname/pasteall\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/insertname/pasteall\">Voegt een lijst in van alle benoemde bereiken en de corresponderende cellen, op de huidige cursorpositie.</ahelp>"
#: 04070200.xhp
msgctxt ""
@@ -47254,7 +47254,7 @@ msgctxt ""
"hd_id3153419\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Plakken"
#: 04070200.xhp
msgctxt ""
@@ -47262,7 +47262,7 @@ msgctxt ""
"par_id3155067\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertname/paste\">Inserts the selected named area and the corresponding cell reference at the current cursor position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/insertname/paste\">Voegt het geselecteerde benoemde bereik en de corresponderende cellen in, op de huidige cursorpositie.</ahelp>"
#: 04070300.xhp
msgctxt ""
@@ -47302,7 +47302,7 @@ msgctxt ""
"par_id3156280\n"
"help.text"
msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr ""
+msgstr "Selecteer eerst het gebied dat alle bereiken bevat die u wilt benoemen. Kies dan <emph>Invoegen - Benoemde bdereiken en expressies - Maken</emph>. Dit opent het dialoogvenster <emph>Namen maken</emph> van waaruit u de naamopties kunt kiezen die u wilt."
#: 04070300.xhp
msgctxt ""
@@ -47574,7 +47574,7 @@ msgctxt ""
"par_id3149412\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/functionpanel/funclist\">Geeft de functies van de geselecteerde categorie weer.</ahelp> Wanneer u een functie selecteert geeft het gebied onder het functievenster een korte beschrijving van deze functie weer. Teneinde de geselecteerde functie in het document toe te passen hoeft u er alleen maar op te dubbelklikken of klik op het pictogram <emph>Functie invoegen in blad</emph>."
#: 04080000.xhp
msgctxt ""
@@ -47598,7 +47598,7 @@ msgctxt ""
"par_id3147345\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserts the selected function into the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Voegt de geselecteerde functie in het document in.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -47798,7 +47798,7 @@ msgctxt ""
"par_id3156283\n"
"help.text"
msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Sheet</emph>)."
-msgstr ""
+msgstr "Deze celbeveiliging heeft alleen effect als u het werkblad ook beveiligt (<emph>Extra - Blad beveiligen</emph>)."
#: 05020600.xhp
msgctxt ""
@@ -48430,7 +48430,7 @@ msgctxt ""
"par_id1001240\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/mergecellsdialog/MergeCellsDialog\">Three options are available:</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/mergecellsdialog/MergeCellsDialog\">Er zijn drie opties beschikbaar:</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -48438,7 +48438,7 @@ msgctxt ""
"par_id3155879\n"
"help.text"
msgid "<emph>Move the contents of the hidden cells into the first cell</emph>: the actual contents of the hidden cells are concatenated to the first cell, and hidden cells are emptied; the results of formulas referring to the hidden cells or the first cell will be updated."
-msgstr ""
+msgstr "<emph>Verplaats de inhoud van de verborgen cellen naar de eerste cel</emph>: de actuale inhoud van de verborgen cellen worden samengevoegd in de eerste cel en verborgen cellen worden leeggemaakt; de resultaten van formules die verwijzen naar de verborgen cellen of de eerste cel zullen worden bijgewerkt."
#: 05060000.xhp
msgctxt ""
@@ -48446,7 +48446,7 @@ msgctxt ""
"par_id3155878\n"
"help.text"
msgid "<emph>Keep the contents of the hidden cells</emph>: the contents of the hidden cells are kept; the results of formulas referring to the hidden cells will not change."
-msgstr ""
+msgstr "<emph>Behoud de inhoud van de verborgen cellen</emph>: de inhoud van de verborgen cellen blijft bewaard; de resultaten van de formules die verwijzen naar de verborgen cellen zullen niet veranderen."
#: 05060000.xhp
msgctxt ""
@@ -48454,7 +48454,7 @@ msgctxt ""
"par_id3155877\n"
"help.text"
msgid "<emph>Empty the contents of the hidden cells</emph>: the contents of the hidden cells are removed; the results of formulas referring to the hidden cells will be updated."
-msgstr ""
+msgstr "<emph>Maak de inhoud van de verborgen cellen leeg</emph>: de inhoud van de verborgen cellen wordt verwijderd; de resultaten van formules die verwijzen naar de verborgen cellen worden bijgewerkt."
#: 05060000.xhp
msgctxt ""
@@ -48766,7 +48766,7 @@ msgctxt ""
"par_idN10971\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown below the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Selecteer een schaalmodus in de keuzelijst. Onder de keuzelijst zult u toepasselijke knoppen zien.</ahelp>"
#: 05070500.xhp
msgctxt ""
@@ -48798,7 +48798,7 @@ msgctxt ""
"par_id3152899\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\">Voer hier een schalingsfactor in. Factoren die kleiner zijn dan 100, reduceren de pagina's, en factoren die groter zijn, vergroten de pagina's.</ahelp>"
#: 05070500.xhp
msgctxt ""
@@ -49038,7 +49038,7 @@ msgctxt ""
"par_id3145174\n"
"help.text"
msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr ""
+msgstr "Selecteer <emph>-geen-</emph> om een gedefinieerde afdrukbereik in het huidige werkblad te verwijderen. Selecteer <emph>-gehele werkblad-</emph> om het huidige blad als afdrukbereik in te stellen. Selecteer <emph>-selectie-</emph> om het geselecteerde gebied van een werkblad als afdrukbereik te definiëren. Door <emph>-gebruikergedefinieerd-</emph> te selecteren, kunt u een afdrukbereik definiëren dat u al heeft gedefinieerd bij het gebruik van <emph>Opmaak - Afdrukbereiken - Definiëren</emph> command. Als u een bereik een naam heeft gegeven met de opdracht <emph>Blad - Benoemde bereiken en expressies - Defineer</emph>, zal deze naam worden weergegeven en kan worden geselecteerd in de keuzelijst."
#: 05080300.xhp
msgctxt ""
@@ -49238,7 +49238,7 @@ msgctxt ""
"par_id3159100\n"
"help.text"
msgid "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149814\">Pictogram</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -49262,7 +49262,7 @@ msgctxt ""
"par_id3155531\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Schakelt de Gietermodus in en uit. Gebruik het verfblik om het geselecteerde opmaakprofiel in het venster Stijlen en opmaak toe te wijzen.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -49334,7 +49334,7 @@ msgctxt ""
"par_id3149499\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Maakt een nieuw opmaakprofiel gebaseerd op de opmaak van een geselecteerd object.</ahelp> Wijs een naam toe voor het opmaakprofiel in het dialoogvenster <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Opmaakprofiel maken</link>."
#: 05100000.xhp
msgctxt ""
@@ -49366,7 +49366,7 @@ msgctxt ""
"par_id3154707\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Werkt het geselecteerde opmaakprofiel in het venster Stijlen en opmaak bij met de huidige opmaak van het geselecteerde object.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -49398,7 +49398,7 @@ msgctxt ""
"par_idN109C2\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Geeft de lijst met de opmaakprofielen van de geselecteerde categorie met opmaakprofielen weer.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -49422,7 +49422,7 @@ msgctxt ""
"par_id3147299\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">Lijst met beschikbare groepen opmaakprofielen.</ahelp>"
#: 05100100.xhp
msgctxt ""
@@ -50870,7 +50870,7 @@ msgctxt ""
"par_id3153362\n"
"help.text"
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet</emph> commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr ""
+msgstr "De opdrachten<emph>Blad beveiligen</emph> of <emph>Werkblad beveiligen</emph> voorkomen dat wijzigingen in cellen in bladen of in bladen in een document worden gemaakt. U kunt als optie een wachtwoord definiëren. Als een wachtwoord is gedefinieerd, is het verwijderen van de beveiliging alleen mogelijk als de gebruiker het juiste wachtwoord invoert."
#: 06060000.xhp
msgctxt ""
@@ -50910,7 +50910,7 @@ msgctxt ""
"par_id3148664\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
-msgstr ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Beschermt de cellen in het huidige blad zodat ze niet gewijzigd kunnen worden.</ahelp></variable> Kies <emph>Extra - Blad beveiligen</emph> om het dialoogvenster <emph>Blad beveiligen</emph> te openen waarin u vervolgens bladbeveiliging met of zonder wachtwoord kunt instellen."
#: 06060100.xhp
msgctxt ""
@@ -50926,7 +50926,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
-msgstr ""
+msgstr "Onbeveiligde cellen of celbereiken kunnen op een beveiligd blad ingesteld worden via de menu's <emph>Extra - Blad beveiligen</emph> en <emph>Opmaak - Cellen - Celbeveiliging</emph>:"
#: 06060100.xhp
msgctxt ""
@@ -50950,7 +50950,7 @@ msgctxt ""
"par_id3156384\n"
"help.text"
msgid "On the <emph>Tools - Protect Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
-msgstr ""
+msgstr "Activeer beveiliging voor het blad via <emph>Extra - Blad beveiligen</emph>. Dit wordt onmiddellijk van kracht, alleen het celbereik dat u in stap 1 geselecteerd hebt, kan bewerkt worden."
#: 06060100.xhp
msgctxt ""
@@ -50958,7 +50958,7 @@ msgctxt ""
"par_id3149566\n"
"help.text"
msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Sheet</emph> menu. The previously editable range is now protected."
-msgstr ""
+msgstr "Selecteer, om naderhand een onbeveiligd gebied wilt wijzigen in een beveiligd gebied, het bereik. Selecteer vervolgens, op het tabblad<emph>Opmaak - Cellen - Celbeveiliging</emph> het selectievak <emph>Beveiligd</emph>. Kies tenslotte het menu <emph>Extra - Blad beveiligen</emph>. Het eerder bewerkbare bereik is nu beveiligd."
#: 06060100.xhp
msgctxt ""
@@ -50982,7 +50982,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
-msgstr ""
+msgstr "Een beveiligd blad of celbereik kan niet gewijzigd worden tot deze beveiliging wordt uitgeschakeld. Kies <emph>Extra - Blad beveiligen</emph> (menu) om de beveiliging op te heffen. Als er geen wachtwoord was ingesteld, wordt de bladbeveiliging onmiddellijk uitgeschakeld. Als het blad wel met een wachtwoord beveiligd was, wordt het dialoogvenster <emph>Bladbeveiliging opheffen</emph> geopend, waar u het wachtwoord in moet voeren."
#: 06060100.xhp
msgctxt ""
@@ -50998,7 +50998,7 @@ msgctxt ""
"hd_id3150206\n"
"help.text"
msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password (optional)</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Wachtwoord (optioneel)</link>"
#: 06060100.xhp
msgctxt ""
@@ -51006,7 +51006,7 @@ msgctxt ""
"par_id3152990\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/protectsheetdlg/password1\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/protectsheetdlg/password1\">Hiermee kunt u een wachtwoord invoeren om het blad tegen onbevoegde wijzigingen te beveiligen.</ahelp>"
#: 06060100.xhp
msgctxt ""
@@ -51014,7 +51014,7 @@ msgctxt ""
"par_id3148700\n"
"help.text"
msgid "Complete protection of your work can be achieved by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet</emph>, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
-msgstr ""
+msgstr "Volledige beveiliging van uw werk kan bereikt worden door het combineren van de opties <emph>Extra - Blad beveiligen</emph> en <emph>Extra - Werkblad beveiligen</emph>, samen met wachtwoordbeveiliging. Selecteer, om te voorkomen dat het document geopend wordt, in het dialoogvenster <emph>Opslaan</emph> het selectievak <emph>Met wachtwoord opslaan</emph> voordat op het pictogram <emph>Opslaan</emph> wordt geklikt."
#: 06060200.xhp
msgctxt ""
@@ -51038,7 +51038,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Spreadsheet</emph>. Optionally enter a password and click OK."
-msgstr ""
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Beschermt de structuur van het werkblad van uw document tegen wijzigingen. Het is niet mogelijk om bladen in te voegen, te verwijderen, te hernoemen, te verplaatsen of op te slaan.</ahelp></variable> Open het dialoogvenster <emph>Documentbeveiliging opheffen</emph> met <emph>Extra - Werkblad beveiligen</emph>. Voer optioneel een wachtwoord in en klik op OK."
#: 06060200.xhp
msgctxt ""
@@ -51046,7 +51046,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Spreadsheet</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr ""
+msgstr "De structuur van beschermde werkbladen kan alleen worden veranderd als de optie <emph>Beveiligen</emph> is uitgeschakeld. In de contextmenu's van de bladtabs onder in het venster kan alleen het menu-item <emph>Alle bladen selecteren</emph> worden geactiveerd. Alle andere items zijn uitgeschakeld. Roep nogmaals de opdracht <emph>Extra - Werkblad beveiligen</emph> op om de beveiliging te verwijderen. Als er geen wachtwoord is toegekend, wordt de beveiliging meteen verwijderd. Als een wachtwoord werd toegekend, verschijnt nu het dialoogvenster <emph>Documentbeveiliging opheffen</emph>, waarin u het wachtwoord moet intypen. Alleen dan kunt u de markering, die aangeeft dat de bescherming ingeschakeld is, verwijderen."
#: 06060200.xhp
msgctxt ""
@@ -51070,7 +51070,7 @@ msgctxt ""
"par_id3155412\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_PASSWD_DOC\">You can create a password to protect your document against unauthorized or accidental modifications.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_PASSWD_DOC\">Voer uw wachtwoord in om uw document te beveiligen tegen niet-geautoriseerde of abusievelijke wijzigingen.</ahelp>"
#: 06060200.xhp
msgctxt ""
@@ -51078,7 +51078,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_PASSWD_DOC_CONFIRM\" visibility=\"hidden\">Re-enter the password.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_PASSWD_DOC_CONFIRM\" visibility=\"hidden\">Bevestigen.</ahelp>"
#: 06060200.xhp
msgctxt ""
@@ -51086,7 +51086,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "You can completely protect your work by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
-msgstr ""
+msgstr "U kunt uw werk volledig beveiligen door het combineren van de opties <emph>Extra- Blad beveiligen</emph> en <emph>Extra- Werkblad beveiligen</emph>, met inbegrip van een wachtwoord. Als u wilt voorkomen dat het document wordt geopend door andere gebruikers, selecteer dan <emph>Met wachtwoord opslaan </emph>en klik op de knop <emph>Opslaan</emph>. Het dialoogvenster <emph>Wachtwoord instellen</emph> verschijnt. Wees voorzichtig bij het kiezen van een wachtwoord; als u het vergeet nadat u een document sluit, kunt u het document niet meer openen."
#: 06070000.xhp
msgctxt ""
@@ -53214,7 +53214,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "<variable id=\"gruppierung\"><ahelp hid=\".\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"gruppierung\"><ahelp hid=\".\">Definieert het geselecteerde celbereik als een groep rijen of kolommen.</ahelp></variable>"
#: 12080300.xhp
msgctxt ""
@@ -53222,7 +53222,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Group and Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr ""
+msgstr "Wanneer u een celbereik groepeert, verschijnt er een overzichtspictogram in de marges naast de groep. U kunt hierop klikken om de groep te verbergen of weer te geven. U heft de groepering van de selectie op door <emph>Gegevens - Groeperen en overzicht maken -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Groepering opheffen\"><emph>Groepering opheffen</emph></link> te kiezen."
#: 12080300.xhp
msgctxt ""
@@ -53246,7 +53246,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Groups the selected rows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/groupdialog/rows\">Groepeert de geselecteerde rijen.</ahelp>"
#: 12080300.xhp
msgctxt ""
@@ -53262,7 +53262,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Groups the selected columns.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/groupdialog/cols\">Groepeert de geselecteerde kolommen.</ahelp>"
#: 12080400.xhp
msgctxt ""
@@ -54558,7 +54558,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "<ahelp hid=\".\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik op het type subtotaal dat u wilt berekenen. Deze optie is alleen beschikbaar als de optie <emph>Gebruikergedefinieerd</emph> is geselecteerd.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54566,7 +54566,7 @@ msgctxt ""
"hd_id3154944\n"
"help.text"
msgid "Show items without data"
-msgstr ""
+msgstr "Elementen zonder gegevens weergeven"
#: 12090105.xhp
msgctxt ""
@@ -54574,7 +54574,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<ahelp hid=\".\">Includes empty columns and rows in the results table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voegt lege kolommen en rijen in de resulterende tabel in.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54662,7 +54662,7 @@ msgctxt ""
"par_idN10716\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/type\">Selecteer hoe de weergegeven waarde voor het gegevensveld berekend moet worden.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54886,7 +54886,7 @@ msgctxt ""
"par_idN107BE\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/basefield\">Selecteer het veld vanwaaruit de respectieve waarde wordt genomen als basis voor de berekening.</ahelp>"
#: 12090105.xhp
msgctxt ""
@@ -54902,7 +54902,7 @@ msgctxt ""
"par_idN107C5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafielddialog/baseitem\">Selecteer het veld vanwaaruit de respectieve waarde wordt genomen als basis voor de berekening.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54950,7 +54950,7 @@ msgctxt ""
"par_idN1055B\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Select the data field that you want to sort columns or rows by.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/sortby\">Selecteer het gegevensveld waarmee u de kolommen of rijen wilt sorteren.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54966,7 +54966,7 @@ msgctxt ""
"par_idN10562\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/ascending\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/ascending\">Sorteert de waarden aflopend van de hoogste naar de laagste waarde. Als het geselecteerde veld het veld is waarvoor het dialoogvenster werd geopend, worden de items op naam gesorteerd. Als een gegevensveld werd geselecteerd worden de items gesorteerd op de resulterende waarde van het geselecteerde gegevensveld.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54982,7 +54982,7 @@ msgctxt ""
"par_idN10569\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/descending\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/descending\">Sorteert de waarden aflopend van de hoogste naar de laagste waarde. Als het geselecteerde veld het veld is waarvoor het dialoogvenster werd geopend, worden de items op naam gesorteerd. Als een gegevensveld werd geselecteerd worden de items gesorteerd op de resulterende waarde van het geselecteerde gegevensveld.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -54998,7 +54998,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorts values alphabetically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/manual\">Sorteert waarden alphabetisch.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55030,7 +55030,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Select the layout mode for the field in the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/layout\">Selecteer de modus lay-out voor het veld in de keuzelijst.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55046,7 +55046,7 @@ msgctxt ""
"par_idN10597\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/emptyline\">Voegt een lege rij in achter de gegevens voor elk item in de draaitabel.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55094,7 +55094,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Voer het maximale aantal items in dat u automatisch wilt weergeven.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55110,7 +55110,7 @@ msgctxt ""
"par_idN105B3\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Shows the top or bottom items in the specified sort order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/from\">Toont de hoogste of laagste items in de gespecificeerde sorteervolgorde.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55126,7 +55126,7 @@ msgctxt ""
"par_idN105BA\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Select the data field that you want to sort the data by.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/using\">Selecteer het gegevensveld waarmee u de gegevens wilt sorteren.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55142,7 +55142,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Select the items that you want to hide from the calculations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hideitems\">Selecteer de items die u voor de berekening wilt verbergen.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55158,7 +55158,7 @@ msgctxt ""
"par_idN105C8\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Selecteer de hiërarchie die u wilt gebruiken. De draaitabel moet gebaseerd worden op een externe gegevensbron die gegevenshiërarchieën bevat.</ahelp>"
#: 12090200.xhp
msgctxt ""
@@ -56046,7 +56046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "common workdays intl"
-msgstr ""
+msgstr "gewone werkdagen (internationaal)"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56054,7 +56054,7 @@ msgctxt ""
"par_id231020162249541102\n"
"help.text"
msgid "<emph>Weekend</emph> is an optional parameter – a number or a string used to specify the days of the week that are weekend days and are not considered working days. Weekend is a weekend number or string that specifies when weekends occur. Weekend number values indicate the following weekend days:"
-msgstr ""
+msgstr "<emph>Weekend</emph> is een optionele paramater - een nummer of een tekenreeks om de dagen van de week te specificeren die weekenddagen zijn en niet beschouwd worden als werkdagen. Weekend is een weekendnummer of tekensreeks die specificeerd wanneer het weekend begint. De waarden voor het weekendnummer geven de volgende weekenddagen aan:"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56062,7 +56062,7 @@ msgctxt ""
"par_id231020162249545526\n"
"help.text"
msgid "Number 1 to 7 for two-day weekends and 11 to 17 for one-day weekends."
-msgstr ""
+msgstr "Nummers 1 t/m 7 voor tweedaagse weekenden en 11 t/m 17 voor ééndaagse weekenden."
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56070,7 +56070,7 @@ msgctxt ""
"par_id231020162249542082\n"
"help.text"
msgid "Number"
-msgstr ""
+msgstr "Getal"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56078,7 +56078,7 @@ msgctxt ""
"par_id23102016224954936\n"
"help.text"
msgid "Weekend"
-msgstr ""
+msgstr "Weekend"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56086,7 +56086,7 @@ msgctxt ""
"par_id231020162249548384\n"
"help.text"
msgid "1 or omitted"
-msgstr ""
+msgstr "1 of weggelaten"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56094,7 +56094,7 @@ msgctxt ""
"par_id231020162249544419\n"
"help.text"
msgid "Saturday and Sunday"
-msgstr ""
+msgstr "Zaterdag en zondag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56102,7 +56102,7 @@ msgctxt ""
"par_id231020162249543229\n"
"help.text"
msgid "Sunday and Monday"
-msgstr ""
+msgstr "Zondag en maandag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56110,7 +56110,7 @@ msgctxt ""
"par_id231020162249541638\n"
"help.text"
msgid "Monday and Tuesday"
-msgstr ""
+msgstr "Maandag en dinsdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56118,7 +56118,7 @@ msgctxt ""
"par_id231020162249548854\n"
"help.text"
msgid "Tuesday and Wednesday"
-msgstr ""
+msgstr "Dinsdag en woensdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56126,7 +56126,7 @@ msgctxt ""
"par_id23102016224954803\n"
"help.text"
msgid "Wednesday and Thursday"
-msgstr ""
+msgstr "Woensdag en donderdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56134,7 +56134,7 @@ msgctxt ""
"par_id231020162249545913\n"
"help.text"
msgid "Thursday and Friday"
-msgstr ""
+msgstr "Donderdag en vrijdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56142,7 +56142,7 @@ msgctxt ""
"par_id231020162249546426\n"
"help.text"
msgid "Friday and Saturday"
-msgstr ""
+msgstr "Vrijdag en zaterdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56150,7 +56150,7 @@ msgctxt ""
"par_id231020162249548630\n"
"help.text"
msgid "Sunday only"
-msgstr ""
+msgstr "Alleen zondag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56158,7 +56158,7 @@ msgctxt ""
"par_id231020162249547536\n"
"help.text"
msgid "Monday only"
-msgstr ""
+msgstr "Alleen maandag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56166,7 +56166,7 @@ msgctxt ""
"par_id231020162249545002\n"
"help.text"
msgid "Tuesday only"
-msgstr ""
+msgstr "Alleen dinsdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56174,7 +56174,7 @@ msgctxt ""
"par_id231020162249554939\n"
"help.text"
msgid "Wednesday only"
-msgstr ""
+msgstr "Alleen woensdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56182,7 +56182,7 @@ msgctxt ""
"par_id231020162249558942\n"
"help.text"
msgid "Thursday only"
-msgstr ""
+msgstr "Alleen donderdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56190,7 +56190,7 @@ msgctxt ""
"par_id231020162249558763\n"
"help.text"
msgid "Friday only"
-msgstr ""
+msgstr "Alleen vrijdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56198,7 +56198,7 @@ msgctxt ""
"par_id231020162249552635\n"
"help.text"
msgid "Saturday only"
-msgstr ""
+msgstr "Alleen zaterdag"
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56206,7 +56206,7 @@ msgctxt ""
"par_id231020162249555313\n"
"help.text"
msgid "Weekend string provides another way to define the weekly non-working days. It must have seven (7) characters – zeros (0) for working day and ones (1) for non-working day. Each character represents a day of the week, starting with Monday. Only 1 and 0 are valid. “1111111” is an invalid string and should not be used. For example, the weekend string “0000011” defines Saturday and Sunday as non-working days."
-msgstr ""
+msgstr "De tekenreeks Weekend biedt een andere manier om de wekelijkse niet-werkdagen te definiëren. Het moet zeven (7) tekens bevatten - nullen (0) voor een werkdag en enen (1) voor een niet-werkdag. Elk teken vertegenwoordigt een dag van de week, beginnend met Maandag. Alleen 1 en 0 zijn toegestaan. \"1111111\"is een ongeldige tekenreeks en mag niet worden gebruikt. Bijvoorbeeld, de tekenreeks Weekend \"0000011\" definieert zaterdag en zondag als niet-werkdagen."
#: common_func_workdaysintl.xhp
msgctxt ""
@@ -56214,7 +56214,7 @@ msgctxt ""
"par_id231020162249559739\n"
"help.text"
msgid "<emph>Holidays</emph> is an optional list of dates that must be counted as non-working days. The list can be given in a cell range."
-msgstr ""
+msgstr "<emph>Vakanties</emph> is een optionele lijst met data die als niet-werkdagen moeten worden geteld. De lijst mag opgegeven worden in een celbereik."
#: ex_data_stat_func.xhp
msgctxt ""
@@ -56342,7 +56342,7 @@ msgctxt ""
"par_id0403201618694535\n"
"help.text"
msgid "Exponential Triple Smoothing (ETS) is a set of algorithms in which both trend and periodical (seasonal) influences are processed. Exponential Double Smoothing (EDS) is an algorithm like ETS, but without the periodical influences. EDS produces linear forecasts."
-msgstr ""
+msgstr "Exponential Triple Smoothing (ETS) is een set algoritmen waarin zowel trend en periodieke (seizoensgebonden) invloeden worden verwerkt. Exponential Double Smoothing (EDS) is een algoritme zoals ETS, maar zonder de periodieke invloeden. EDS produceert lineaire voorspellingen."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56390,7 +56390,7 @@ msgctxt ""
"par_id0403201618594513\n"
"help.text"
msgid "<emph>data_completion (optional):</emph> a logical value TRUE or FALSE, a numeric 1 or 0, default is 1 (TRUE). A value of 0 (FALSE) will add missing data points with zero as historical value. A value of 1 (TRUE) will add missing data points by interpolating between the neighboring data points."
-msgstr ""
+msgstr "<emph>gegevensaanvulling (optioneel):</emph> een logische waarde WAAR of ONWAAR , een numeriek 1 of 0, standaard is 1 (WAAR). Een waarde van 0 (ONWAAR) voegt ontbrekende gegevenspunten toe met nul als historische waarde. Een waarde van 1 (WAAR) voegt ontbrekende gegevenspunten toe aan de hand van het gemiddelde van de aangrenzende gegevenspunten."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56406,7 +56406,7 @@ msgctxt ""
"par_id0403201618594650\n"
"help.text"
msgid "<emph>aggregation (optional):</emph> A numeric value from 1 to 7, with default 1. The aggregation parameter indicates which method will be used to aggregate identical time values:"
-msgstr ""
+msgstr "<emph>aggregatie (optioneel):</emph> Een numerieke waarde van 1 tot 7, met standaard 1. De aggregatie-parameter geeft aan welke methode wordt gebruikt om dezelfde tijdwaarden te aggregeren:"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56494,7 +56494,7 @@ msgctxt ""
"par_id0503201619582693\n"
"help.text"
msgid "<emph>stat_type (mandatory)</emph>: A numerical value from 1 to 9. A value indicating which statistic will be returned for the given values and x-range."
-msgstr ""
+msgstr "<emph>statistisch type (verplicht)</emph>: Een numerieke waarde van 1 tot 9. Een waarde die aangeeft welke statistiek wordt geretourneerd voor de gegeven waarden en x-bereik."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56510,7 +56510,7 @@ msgctxt ""
"par_id0503201619582666\n"
"help.text"
msgid "stat_type"
-msgstr ""
+msgstr "statistisch_type"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56526,7 +56526,7 @@ msgctxt ""
"par_id0503201619582658\n"
"help.text"
msgid "Alpha smoothing parameter of ETS algorithm (base)"
-msgstr ""
+msgstr "Alfa-parameter van ETS-algoritme (basis)"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56534,7 +56534,7 @@ msgctxt ""
"par_id0503201619582673\n"
"help.text"
msgid "Gamma smoothing parameter of ETS algorithm (trend)"
-msgstr ""
+msgstr "Gamma-parameter van ETS-algoritme (trend)"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56542,7 +56542,7 @@ msgctxt ""
"par_id0503201619582780\n"
"help.text"
msgid "Beta smoothing parameter of ETS algorithm (periodic deviation)"
-msgstr ""
+msgstr "Beta-parameter van ETS-algoritme (periodieke afwijking)"
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56550,7 +56550,7 @@ msgctxt ""
"par_id0503201619582795\n"
"help.text"
msgid "Mean absolute scaled error (MASE) - a measure of the accuracy of forecasts."
-msgstr ""
+msgstr "Mean Absolute Scaled Error (MASE) - een maateenheid voor de nauwkeurigheid van voorspellingen."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56558,7 +56558,7 @@ msgctxt ""
"par_id0503201619582749\n"
"help.text"
msgid "Symmetric mean absolute percentage error (SMAPE) - an accuracy measure based on percentage errors."
-msgstr ""
+msgstr "Symmetric Mean Absolute Percentage Error (SMAPE) - een nauwkeurige maateenheid gebaseerd op percentagefouten."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56566,7 +56566,7 @@ msgctxt ""
"par_id0503201619582725\n"
"help.text"
msgid "Mean absolute error (MAE) – a measure of the accuracy of forecasts."
-msgstr ""
+msgstr "Mean Absolute Error (MAE) - een maateenheid voor de nauwkeurigheid van voorspellingen."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56574,7 +56574,7 @@ msgctxt ""
"par_id0503201619582750\n"
"help.text"
msgid "Root mean squared error (RMSE) - a measure of the differences between predicted and observed values."
-msgstr ""
+msgstr "Root Meen Squared Error (RMSE) - een maateenheid voor de verschillen tussen voorspelde en waargenomen waarden."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56582,7 +56582,7 @@ msgctxt ""
"par_id0503201619582771\n"
"help.text"
msgid "Step size detected time line (x-range). When a stepsize in months/quarters/years is detected, the stepsize is in months, otherwise the stepsize is in days in case of date(time) timeline and numeric in other cases."
-msgstr ""
+msgstr "Stapgrootte gedetecteerde tijdlijn (x-bereik). Wanneer een stapgrootte in maanden/kwartalen/jaren wordt gedetecteerd, is de stapgrootte in maanden, anders is de stapgrootte in dagen in het een datum/tijdlijn en numeriek in de overige gevallen."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56590,7 +56590,7 @@ msgctxt ""
"par_id0503201619582717\n"
"help.text"
msgid "Number of samples in period – this is the same as argument <emph>period_length</emph>, or the calculated number in case of argument <emph>period_length</emph> being 1."
-msgstr ""
+msgstr "Aantal steekproeven in de periode – dit is hetzelfde als het argument <emph>lengte periode</emph>, of het berekende getal indien het argument <emph>lengte periode</emph> 1 is."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56598,7 +56598,7 @@ msgctxt ""
"par_id0503201619582665\n"
"help.text"
msgid "<emph>confidence_level (mandatory)</emph>: A numeric value between 0 and 1 (exclusive), default is 0.95. A value indicating a confidence level for the calculated prediction interval."
-msgstr ""
+msgstr "<emph>betrouwbaarheidsniveau (verplicht)</emph>: Een numerieke waarde tussen 0 en 1 (exclusief), standaard is 0,95. Een waarde die een vertrouwensniveau aangeeft voor het berekende voorspellingsinterval."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56614,7 +56614,7 @@ msgctxt ""
"par_id0603201609412381\n"
"help.text"
msgid "<emph>period_length (optional)</emph>: A numeric value >= 0, the default is 1. A positive integer indicating the number of samples in a period."
-msgstr ""
+msgstr "<emph>lengte periode (optioneel)</emph>: Een numerieke waarde >= 0, de standaardwaarde is 1. Een positief geheel getal dat het aantal steekproeven in een periode aangeeft."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56622,7 +56622,7 @@ msgctxt ""
"par_id0603201609412399\n"
"help.text"
msgid "A value of 1 indicates that Calc is to determine the number of samples in a period automatically. <br/>A value of 0 indicates no periodic effects, a forecast is calculated with EDS algorithms. <br/>For all other positive values, forecasts are calculated with ETS algorithms.<br/>For values that not being a positive whole number, the functions will return the #NUM! Error."
-msgstr ""
+msgstr "Een waarde van 1 geeft aan dat Calc het aantal steekproeven in een periode automatisch bepaalt. <br/> Een waarde van 0 geeft geen periodieke effecten aan, een prognose wordt berekend met EDS-algoritmen. <br/> Voor alle andere positieve waarden worden voorspellingen berekend met ETS-algoritmen. <br/> Voor waarden die geen positief geheel getal zijn, zullen de functies de fout #NUM! retourneren."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56630,7 +56630,7 @@ msgctxt ""
"par_id0603201608440579\n"
"help.text"
msgid "forecast = basevalue + trend * ∆x + periodical_aberration."
-msgstr ""
+msgstr "voorspellen = basiswaarde + trend * ∆x + periodieke afwijking."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -56638,7 +56638,7 @@ msgctxt ""
"par_id0603201608440675\n"
"help.text"
msgid "forecast = ( basevalue + trend * ∆x ) * periodical_aberration."
-msgstr ""
+msgstr "voorspellen = basiswaarde + trend * ∆x * periodieke _afwijking."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -57142,7 +57142,7 @@ msgctxt ""
"par_id2309201514193338\n"
"help.text"
msgid "<emph>Ref2, 3, ...</emph> – optional. A numeric argument or a reference to a cell (up to 253 arguments), for which you need the aggregate value."
-msgstr ""
+msgstr "<emph>Ref2, 3, ...</emph> – optioneel. Een numeriek argument of een verwijzing naar een cel (maximaal 253 argumenten), waarvoor u de totale waarde nodig heeft."
#: func_aggregate.xhp
msgctxt ""
@@ -57230,7 +57230,7 @@ msgctxt ""
"par_id230920152006414\n"
"help.text"
msgid "<item type=\"input\">=AGGREGATE(4;2;A2:A9)</item><br/>Returns maximum value for the range A2:A9 = 34, whereas <item type=\"input\">=MAX(A2:A9)</item> returns the error Err:511."
-msgstr ""
+msgstr "<item type=\"input\">=AGGREGEREN(4;2;A2:A9)</item><br/>Geeft de maximum waarde terug voor het bereik van A2:A9 = 34, waar <item type=\"input\">=MAX(A2:A9)</item> de fout Err:511 teruggeeft."
#: func_aggregate.xhp
msgctxt ""
@@ -57238,7 +57238,7 @@ msgctxt ""
"par_id2309201520064180\n"
"help.text"
msgid "<item type=\"input\">=AGGREGATE(9;5;A5:C5)</item><br/>Returns sum for the range A5:C5 = 29, even if some of the columns are hidden."
-msgstr ""
+msgstr "<item type=\"input\">=AGGREGATIE(9;5;A5:C5)</item><br/>Geeft de som van de reeks A5:C5 = 29, zelfs als sommige kolommen verborgen zijn."
#: func_aggregate.xhp
msgctxt ""
@@ -57246,7 +57246,7 @@ msgctxt ""
"par_id2309201520064118\n"
"help.text"
msgid "<item type=\"input\">=AGGREGATE(9;5;B2:B9)</item><br/>Returns sum of the column B = 115. If any row is hidden, the function omit its value, for example if the 7th row is hidden, the function returns 95."
-msgstr ""
+msgstr "<item type=\"input\">=AGGREGEREN(9;5;B2:B9)</item><br/>Geeft de som van kolom B = 115 terug. Als er een rij verborgen is, laat de functie de waarde weg, als bijvoorbeeld de 7de rij verborgen is, geeft de functie 95 terug."
#: func_aggregate.xhp
msgctxt ""
@@ -57254,7 +57254,7 @@ msgctxt ""
"par_id196152404026557\n"
"help.text"
msgid "If you need to apply the function with a 3D range, this example shows how to do it."
-msgstr ""
+msgstr "Als u de functie met een 3D-reeks moet toepassen, laat dit voorbeeld zien hoe dat moet."
#: func_aggregate.xhp
msgctxt ""
@@ -57262,7 +57262,7 @@ msgctxt ""
"par_id2309201520180167\n"
"help.text"
msgid "<item type=\"input\">=AGGREGATE(13;3;Sheet1.B2:B9:Sheet3.B2:B9)</item><br/>The function returns mode of the values of second columns through sheets 1:3 (that have the same data) = 8."
-msgstr ""
+msgstr "<item type=\"input\">=AGGREGATIE(13;3;Blad1.B2:B9:Blad3.B2:B9)</item><br/>De functie geeft de modus van de waarden van de tweede kolom van bladen 1:3 (die hetzelfde gegeven hebben) = 8."
#: func_aggregate.xhp
msgctxt ""
@@ -57278,7 +57278,7 @@ msgctxt ""
"par_id2309201520395380\n"
"help.text"
msgid "<item type=\"input\">=AGGREGATE(E3;E5;'ColumnOne')</item><br/>If E3 = 13 and E5 = 5, the function returns mode of the first column = 10."
-msgstr ""
+msgstr "<item type=\"input\">=AGGREGEREN(E3;E5;'KolomEen')</item><br/>Als E3 = 13 en E5 = 5, geeft de functie de modus van de eerste kolom = 10."
#: func_aggregate.xhp
msgctxt ""
@@ -57846,7 +57846,7 @@ msgctxt ""
"par_id1279148769260\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageif.xhp#averageif_head\"/>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\"/>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060184.xhp#average\">GEMIDDELDE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">GEMIDDELDE.A</link>, <embedvar href=\"text/scalc/01/func_averageif.xhp#averageif_head\"/>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\"/>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\"/> <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
#: func_color.xhp
msgctxt ""
@@ -57862,7 +57862,7 @@ msgctxt ""
"bm_id1102201617201921\n"
"help.text"
msgid "<bookmark_value>colors;numerical values</bookmark_value> <bookmark_value>colors;calculating in spreadsheets</bookmark_value> <bookmark_value>COLOR function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>kleuren;numerieke waarden</bookmark_value> <bookmark_value>kleuren;berekenen in werkbladen</bookmark_value> <bookmark_value>KLEUR-functie</bookmark_value>"
#: func_color.xhp
msgctxt ""
@@ -57878,7 +57878,7 @@ msgctxt ""
"par_id1102201617001848\n"
"help.text"
msgid "<ahelp hid=\".\">Return a numeric value calculated by a combination of three colors (red, green and blue) and the alpha channel, in the RGBA color system.</ahelp> The result depends on the color system used by your computer."
-msgstr ""
+msgstr "<ahelp hid=\".\">Geeft een numerieke waarde, berekend met een combinatie van drie kleuren (rood, groen en blauw) en het alfa kanaal, in het kleurensysteem RGBA.</ahelp> De uitkomst hangt af van het kleurensysteem dat uw computer gebruikt."
#: func_color.xhp
msgctxt ""
@@ -58006,7 +58006,7 @@ msgctxt ""
"par_id190621657742\n"
"help.text"
msgid "<emph>Range2</emph> – Optional. Range2 and all the following mean the same as Range1."
-msgstr ""
+msgstr "<emph>Bereik2</emph> – Optioneel. Bereik2 en alle volgenden hebben dezelfde betekenis als Bereik1."
#: func_countifs.xhp
msgctxt ""
@@ -59382,7 +59382,7 @@ msgctxt ""
"par_id312932390024933\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Foutcodes\">Foutcodes</link>"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59414,7 +59414,7 @@ msgctxt ""
"par_id0603201610023949\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_ADD\">Calculates the additive forecast(s) (future values) based on the historical data using ETS or EDS algorithms</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_ADD\">Berekent de toegevoegde voorspelling(en) (toekomstige waarden) gebaseerd op historische gegevens met gebruik van ETS of EDS algoritmen</ahelp>. EDS wordt gebruikt wanneer het argument <emph>lengte periode</emph> 0 is, anders wordt ETS gebruikt."
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59438,7 +59438,7 @@ msgctxt ""
"par_id0403201618594544\n"
"help.text"
msgid "FORECAST.ETS.ADD(targets, values, timeline, [period_length], [data_completion], [aggregation])"
-msgstr ""
+msgstr "VOORSPELLEN.ETS.ADD(doeldatum, waarden, tijdlijn, [lengte periode], [gegevensaanvulling], [aggregatie])"
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59454,7 +59454,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 157.166666666667, the additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geeft 157,166666666667 terug, de toegevoegde voorspelling voor januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, met één steekproef per periode, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59470,7 +59470,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 113.251442038722, the additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with period length of 4, no missing data, and SUM as aggregation."
-msgstr ""
+msgstr "Geeft 113,251442038722 terug, de toegevoegde voorspelling voor januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, met een lengte periode van 4, geen ontbrekende gegevens, en SOM als aggregatie."
#: func_forecastetsadd.xhp
msgctxt ""
@@ -59510,7 +59510,7 @@ msgctxt ""
"par_id0603201610023949\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_MULT\">Calculates the multiplicative forecast(s) (future values) based on the historical data using ETS or EDS algorithms</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_MULT\">Berekent de vermenigvuldigde voorspelling(en) (toekomstige waarden) gebaseerd op historische gegevens met gebruik van ETS of EDS algoritmen</ahelp>. EDS wordt gebruikt wanneer het argument <emph>lengte periode</emph> 0 is, anders wordt ETS gebruikt."
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59534,7 +59534,7 @@ msgctxt ""
"par_id0403201618594544\n"
"help.text"
msgid "FORECAST.ETS.MULT(targets, values, timeline, [period_length], [data_completion], [aggregation])"
-msgstr ""
+msgstr "VOORSPELLEN.ETS.MULT(doeldatum, waarden, tijdlijn, [lengte periode], [gegevensaanvulling], [aggregatie])"
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59550,7 +59550,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 131.71437427439, the multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geeft 131,71437427439 terug, de vermeningvuldigde voorspelling voor januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, met één steekproef per periode, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59566,7 +59566,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 120.747806144882, the multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with period length of 4, no missing data, and SUM as aggregation."
-msgstr ""
+msgstr "Geeft 120,747806144882 terug, de vermenigvuldigde voorspelling voor januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, met een lengte periode van 4, geen ontbrekende gegevens, en SOM als aggregatie."
#: func_forecastetsmult.xhp
msgctxt ""
@@ -59606,7 +59606,7 @@ msgctxt ""
"par_id0603201617141750\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIA\">Calculates the prediction interval(s) for additive forecast based on the historical data using ETS or EDS algorithms.</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIA\">Berekent de voorspelde interval(len) voor toegevoegde voorspellingen gebaseerd op historische gegevens met gebruik van ETS of EDS algoritmen.</ahelp>. EDS wordt gebruikt wanneer het argument <emph>lengte periode</emph> 0 is, anders wordt ETS gebruikt."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59630,7 +59630,7 @@ msgctxt ""
"par_id0603201610010044\n"
"help.text"
msgid "FORECAST.ETS.PI.ADD(target, values, timeline, [confidence_level], [period_length], [data_completion], [aggregation])"
-msgstr ""
+msgstr "VOORSPELLEN.ETS.PI.ADD(doeldatum, waarden, tijdlijn, [betrouwbaarheidsniveau], [lengte periode], [gegevensaanvulling], [aggregatie])"
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59638,7 +59638,7 @@ msgctxt ""
"par_id0403201618595126\n"
"help.text"
msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)."
-msgstr ""
+msgstr "Bijvoorbeeld, met een 90% Betrouwbaarheidsniveau, wordt een 90% voorspelde interval berekend (90% van de toekomstige punten moeten binnen dit bereik van de prognose vallen)."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59646,7 +59646,7 @@ msgctxt ""
"par_id0403201618595143\n"
"help.text"
msgid "Note on prediction intervals: there is no exact mathematical way to calculate this for forecasts, there are various approximations. Prediction intervals tend to be increasingly 'over-optimistic' when increasing distance of the forecast-X from the observation data set."
-msgstr ""
+msgstr "Opmerking over voorspelde intervallen: er is geen exacte wiskundige manier om dit te berekenen voor prognoses, er zijn verschillende benaderingen. Voorspelde intervallen hebben de neiging om steeds 'te optimistisch' te zijn wanneer de afstand van de prognose-X van de observatiegegevens wordt verhoogd."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59654,7 +59654,7 @@ msgctxt ""
"par_id0403201618595150\n"
"help.text"
msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)."
-msgstr ""
+msgstr "Voor ETS gebruikt Calc een benadering gebaseerd op 1000 berekeningen met willekeurige variaties binnen de standaardafwijking van de observatiegegevens (de historische waarden)."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59662,7 +59662,7 @@ msgctxt ""
"hd_id04032016185123\n"
"help.text"
msgid "=FORECAST.ETS.PI.ADD(DATE(2014;1;1);Values;Timeline;0.9;1;TRUE();1)"
-msgstr ""
+msgstr "=VOORSPELLEN.PI.ADD(DATE(2014;1;1);Waarden;Tijdlijn;0,9;1;WAAR();1)"
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59670,7 +59670,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 18.8061295551355, the prediction interval for additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, 90% (=0.9) confidence level, with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geeft 18,8061295551355 terug, het voorgestelde interval voor toegevoegde voorspelling van januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, 90% (=0,9) betrouwbaarheidsniveau, met één steekproef per periode, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59686,7 +59686,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 23.4416821953741, the prediction interval for additive forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation."
-msgstr ""
+msgstr "Geeft 23,4416821953741 terug, de voorgestelde interval voor toegevoegde voorspelling van januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hieroven, met een betrouwbaarheidsniveau van 0,8, lengte periode van 4, geen ontbrekende gegevens, en SOM als aggregatie."
#: func_forecastetspiadd.xhp
msgctxt ""
@@ -59726,7 +59726,7 @@ msgctxt ""
"par_id0603201617141750\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIM\">Calculates the prediction interval(s) for multiplicative forecast based on the historical data using ETS or EDS algorithms.</ahelp>. EDS is used when argument <emph>period_length</emph> is 0, otherwise ETS is used."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_PIM\">Berekent de voorspelde interval(len) voor vermenigvuldigde voorspelling gebaseerd op de historische gegevens met gebruik van ETS of EDS algoritmen.</ahelp>. EDS wordt gebruikt wanneer het argument <emph>lengte periode</emph> 0 is, anders wordt ETS gebruikt."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59750,7 +59750,7 @@ msgctxt ""
"par_id0603201610010044\n"
"help.text"
msgid "FORECAST.ETS.PI.MULT(target, values, timeline, [confidence_level], [period_length], [data_completion], [aggregation])"
-msgstr ""
+msgstr "VOORSPELLEN.ETS.PI.MULT(doeldatum, waarden, tijdlijn, [betrouwbaarheidsniveau], [lengte periode], [gegevensaanvulling], [aggregatie])"
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59758,7 +59758,7 @@ msgctxt ""
"par_id0403201618595126\n"
"help.text"
msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)."
-msgstr ""
+msgstr "Bijvoorbeeld, met een 90% Betrouwbaarheidsniveau, wordt een 90% voorspelde interval berekend (90% van de toekomstige punten moeten binnen dit bereik van de prognose vallen)."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59766,7 +59766,7 @@ msgctxt ""
"par_id0403201618595143\n"
"help.text"
msgid "Note on prediction intervals: there is no exact mathematical way to calculate this for forecasts, there are various approximations. Prediction intervals tend to be increasingly 'over-optimistic' when increasing distance of the forecast-X from the observation data set."
-msgstr ""
+msgstr "Opmerking over voorspelde intervallen: er is geen exacte wiskundige manier om dit te berekenen voor prognoses, er zijn verschillende benaderingen. Voorspelde intervallen hebben de neiging om steeds 'te optimistisch' te zijn wanneer de afstand van de prognose-X van de observatiegegevens wordt verhoogd."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59774,7 +59774,7 @@ msgctxt ""
"par_id0403201618595150\n"
"help.text"
msgid "For ETS, Calc uses an approximation based on 1000 calculations with random variations within the standard deviation of the observation data set (the historical values)."
-msgstr ""
+msgstr "Voor ETS gebruikt Calc een benadering gebaseerd op 1000 berekeningen met willekeurige variaties binnen de standaardafwijking van de observatiegegevens (de historische waarden)."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59782,7 +59782,7 @@ msgctxt ""
"hd_id04032016185123\n"
"help.text"
msgid "=FORECAST.ETS.PI.MULT(DATE(2014;1;1);Values;Timeline;0.9;1;TRUE();1)"
-msgstr ""
+msgstr "=VOORSPELLEN.ETS.PI.MULT(DATE(2014;1;1);Waarden;Tijdlijn;0,9;1;WAAR();1)"
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59790,7 +59790,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 20.1040952101013, the prediction interval for multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, confidence level of 90% (=0.9) with one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geeft 20,1040952101013 terug, de voorgestelde interval voor vermenigvuldigde voorspelling voor januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, betrouwbaarheidsniveau van 90% (=0,9) met één steekproef per periode, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59806,7 +59806,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 27.5285874381574, the prediction interval for multiplicative forecast for January 2014 based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with confidence level of 0.8, period length of 4, no missing data, and SUM as aggregation."
-msgstr ""
+msgstr "Geeft 27,5285874381574 terug, de voorgestelde interval voor vermenigvuldigde voorspelling van januari 2014 gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven met een betrouwbaarheidsniveau van 0,8, lengte periode van 4, geen ontbrekende gegevens, en SOM als aggregatie."
#: func_forecastetspimult.xhp
msgctxt ""
@@ -59846,7 +59846,7 @@ msgctxt ""
"par_id0603201617510446\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_SEA\">Returns the number of samples in period as calculated by Calc in case of FORECAST.ETS functions when argument <emph>period_length</emph> equals 1. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_SEA\">Geeft het aantal steekproeven in een periode weer dat wordt berekend door Calc met de functie VOORSPELLEN.ETS.SEIZOENSLENGTE met de parameter <emph>lengte van de periode</emph> gelijk is aan 1. </ahelp>"
#: func_forecastetsseason.xhp
msgctxt ""
@@ -59854,7 +59854,7 @@ msgctxt ""
"par_id0403201618595132\n"
"help.text"
msgid "The same result is returned with FORECAST.ETS.STAT functions when argument <emph>stat_type</emph> equals 9 (and <emph>period_length</emph> equals 1)."
-msgstr ""
+msgstr "Hetzelfde resultaat wordt teruggegeven met de functies FORECAST.ETS.STAT als het argument <emph>statistische waarde</emph> gelijk is aan 9 (en <emph>lengte periode</emph> gelijk is aan 1)."
#: func_forecastetsseason.xhp
msgctxt ""
@@ -59886,7 +59886,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 6, the number of samples in period based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geeft 6 terug, het getal van de voorbeelden in de periode gebaseerd op <emph>Waarden</emph> aen <emph>Tijdlijn</emph> genoemde bereiken hierboven, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetsseason.xhp
msgctxt ""
@@ -59926,7 +59926,7 @@ msgctxt ""
"par_id0603201615485387\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STA\">Returns statistical value(s) that are results of the ETS/EDS algorithms.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STA\">Geeft de statische waarde(n) terug die het resultaat zijn van de ETS/EDS algoritmen.</ahelp>"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -59966,7 +59966,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 0.9990234375, the additive statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with beta smoothing, one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geeft 0,9990234375 terug, de toegevoegde statistieken gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> benoemde bereiken hierboven, met beta-afvlakking, één steekproef per periode, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -59982,7 +59982,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 0.0615234375, the additive statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with gamma smoothing, no missing data, and SUM as aggregation."
-msgstr ""
+msgstr "Geeft 0,0615234375 terug, de toegevoegde statistieken gebaseerd op <emph>Waarden</emph> and <emph>Tijdlijn</emph> genoemde bereiken hierboven met gamma-afvlakking, geen ontbrekende gegevens, en SOM als aggregatie."
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -60022,7 +60022,7 @@ msgctxt ""
"par_id0603201615485387\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STM\">Returns statistical value(s) that are results of the ETS/EDS algorithms.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STM\">Geeft statische waarde(n) terug die het resultaat zijn van de ETS/EDS algoritmen.</ahelp>"
#: func_forecastetsstatmult.xhp
msgctxt ""
@@ -60062,7 +60062,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 0.084073452803966, the multiplicative statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with symmetric mean absolute percentage error (SMAPE), one sample per period, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Geerft 0,084073452803966 terug, de vermenigvuldigde statistieken gebaseerd op <emph>Waarden</emph> and <emph>Tijdlijn</emph> genoemde bereiken hierboven, met Symmetric Mean Absolute Percentage Error (SMAPE), één steekproef per periode, geen ontbrekende gegevens, en GEMIDDELDE als aggregatie."
#: func_forecastetsstatmult.xhp
msgctxt ""
@@ -60078,7 +60078,7 @@ msgctxt ""
"hd_id040312316112394554\n"
"help.text"
msgid "Returns 15.8372533480997, the multiplicative statistics based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, with root mean squared error, no missing data, and SUM as aggregation."
-msgstr ""
+msgstr "Geeft 15,8372533480997 terug, de vermenigvuldigde statistieken gebaseerd op <emph>Waarden</emph> en <emph>Tijdlijn</emph> genoemde bereiken hierboven, met wortelgemiddelde kwadraatfout, geen ontbrekende gegevens, en SOM als aggregatie."
#: func_forecastetsstatmult.xhp
msgctxt ""
@@ -61174,7 +61174,7 @@ msgctxt ""
"par_id231020162213393086\n"
"help.text"
msgid "<ahelp hid=\".\">Returns the number of workdays between a start date and an end date. There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geeft het aantal werkdagen tussen een startdatum en een einddatum weer. Er zijn opties om weekenddagen en feestdagen te definiëren.De optionele weekendparameter (of een tekenreeks) kan worden gebruikt om de weekenddagen (of de niet-werkdagen in elke week) te definiëren. Ook, optioneel, kan de gebruiker een lijst met vakanties definiëren. De weekenddagen en door de gebruiker gedefinieerde vakantie worden niet als werkdagen geteld.</ahelp>"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61182,7 +61182,7 @@ msgctxt ""
"par_id231020162213395472\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Syntaxis"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61198,7 +61198,7 @@ msgctxt ""
"par_id231020162249533010\n"
"help.text"
msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr ""
+msgstr "<emph>Startdatum</emph> is de datum vanaf wanneer de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag opgenomen in de berekening."
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61206,7 +61206,7 @@ msgctxt ""
"par_id231020162249536398\n"
"help.text"
msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
-msgstr ""
+msgstr "<emph>Einddatum</emph> is de datum tot wanneer de berekening wordt uitgevoerd. Als de einddatum een werkdag is, wordt die dag opgenomen in de berekening."
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61214,7 +61214,7 @@ msgctxt ""
"hd_id231020162249551873\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Voorbeeld"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61222,7 +61222,7 @@ msgctxt ""
"par_id231020162249554032\n"
"help.text"
msgid "How many workdays fall between December 15, 2016 and January 14, 2017? Let the start date be located in C3 and the end date in D3. Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
-msgstr ""
+msgstr "Hoeveel werkdagen vallen tussen 15 december 2016 en 14 januari 2017? De startdatum staat in C3 en de einddatum in D3. De cellen F3 tot en met J3 bevatten vijf (5) vakantiedagen voor Kerstmis en Nieuwjaar in datumopmaak: 24 december 2016, 25 december 2016, 26 december 2016, 31 december 2016 en 1 januari 2017."
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61246,7 +61246,7 @@ msgctxt ""
"par_id231020162249557786\n"
"help.text"
msgid "Alternatively, use the weekend string “0000001” to define Sunday as the non-working day of every week."
-msgstr ""
+msgstr "Gebruik, als alternatief, om zondag als de niet-werkdag van elke week te definiëren de weekendtekenreeks \"0000001\"."
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61262,7 +61262,7 @@ msgctxt ""
"par_id231020162249556946\n"
"help.text"
msgid "The function can be used without the two optional parameters – weekday and holidays – by leaving them out:"
-msgstr ""
+msgstr "De functie kan zonder de twee optionele parameters - weekdagen en vakanties - gebruikt worden, door ze weg te laten."
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61286,7 +61286,7 @@ msgctxt ""
"par_id241020160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workdays.intl.xhp\">WERKDAG.INT</link>"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61294,7 +61294,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAYS</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.xhp\">WERKDAGEN</link>"
#: func_networkdays.intl.xhp
msgctxt ""
@@ -61302,7 +61302,7 @@ msgctxt ""
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Datumfuncties</link>"
#: func_networkdays.xhp
msgctxt ""
@@ -61342,7 +61342,7 @@ msgctxt ""
"hd_id3148677\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Syntaxis"
#: func_networkdays.xhp
msgctxt ""
@@ -61358,7 +61358,7 @@ msgctxt ""
"par_id3153885\n"
"help.text"
msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr ""
+msgstr "<emph>Startdatum</emph> is de datum vanaf wanneer de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag opgenomen in de berekening."
#: func_networkdays.xhp
msgctxt ""
@@ -61366,7 +61366,7 @@ msgctxt ""
"par_id3151110\n"
"help.text"
msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
-msgstr ""
+msgstr "<emph>Einddatum</emph> is de datum tot wanneer de berekening wordt uitgevoerd. Als de einddatum een werkdag is, wordt die dag opgenomen in de berekening."
#: func_networkdays.xhp
msgctxt ""
@@ -61374,7 +61374,7 @@ msgctxt ""
"par_id3154115\n"
"help.text"
msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr ""
+msgstr "<emph>Feestdagen</emph> is een optionele lijst van feestdagen. Dit zijn geen werkdagen. Voer een celbereik in waarin de feestdagen individueel zijn opgesomd."
#: func_networkdays.xhp
msgctxt ""
@@ -61382,7 +61382,7 @@ msgctxt ""
"par_id160920161749585013\n"
"help.text"
msgid "<emph>Workdays</emph> is an optional list of number values defining standard work week. This list starts by Sunday, workdays are indicated by zero and non-working days by non-zero value."
-msgstr ""
+msgstr "<emph>Werkdagen</emph> is een optionele lijst met genummerde waarden die de standaard werkweek definiëren. Deze lijst begint op zondag, werkdagen worden aangeduid met een nul (0) en niet werkdagen door een niet-nul-waarde."
#: func_networkdays.xhp
msgctxt ""
@@ -61390,7 +61390,7 @@ msgctxt ""
"hd_id3146902\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Voorbeelden"
#: func_networkdays.xhp
msgctxt ""
@@ -61398,7 +61398,7 @@ msgctxt ""
"par_id3154661\n"
"help.text"
msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr ""
+msgstr "Hoeveel werkdagen vallen er tussen 15-12-2001 en 15-01-2002? De startdatum staat in C3 en de einddatum in D3. Cellen F3 tot en met J3 bevatten de volgende Kerst- en Nieuwjaarfeestdagen: \"24-12-2001\", \"25-12-2001\", \"26-12-2001\", \"31-12-2001\", \"01-01-2002\"."
#: func_networkdays.xhp
msgctxt ""
@@ -61414,7 +61414,7 @@ msgctxt ""
"par_id160920161751233621\n"
"help.text"
msgid "How many workdays fall between September 12nd and 25th in 2016 if only Mondays, Tuesdays and Wednesdays are considered as workdays?"
-msgstr ""
+msgstr "Hoeveel werkdagen vallen tussen 12 en 25 september 2016 als alleen maandag, dinsdag en woensdag als werkdagen worden beschouwd. "
#: func_networkdays.xhp
msgctxt ""
@@ -61438,7 +61438,7 @@ msgctxt ""
"par_id241070160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.intl.xhp\">WERKDAG.INT</link>"
#: func_networkdays.xhp
msgctxt ""
@@ -61446,7 +61446,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAYS</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.xhp\">WERKDAGEN</link>"
#: func_networkdays.xhp
msgctxt ""
@@ -61454,7 +61454,7 @@ msgctxt ""
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Datumfuncties</link>"
#: func_now.xhp
msgctxt ""
@@ -62102,7 +62102,7 @@ msgctxt ""
"par_id11921178730928\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060106.xhp#Section16\">SUM</link>, <link href=\"text/scalc/01/04060106.xhp#Section15\">SUMIF</link>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\"/>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060106.xhp#Section16\">AANTAL</link>, <link href=\"text/scalc/01/04060106.xhp#Section15\">AANTAL.ALS</link>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\"/>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
#: func_time.xhp
msgctxt ""
@@ -62550,7 +62550,7 @@ msgctxt ""
"hd_id3154925\n"
"help.text"
msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAG</link> </variable>"
#: func_weekday.xhp
msgctxt ""
@@ -62558,7 +62558,7 @@ msgctxt ""
"par_id3154228\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. For other types, see the table below."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Geeft de dag van de week terug voor de opgegeven datumwaarde.</ahelp> De dag wordt teruggegeven als een geheel getal tussen 1 (zondag) en 7 (zaterdag) als er geen type of type=1 is gespecificeerd. Andere types staan in de tabel hieronder."
#: func_weekday.xhp
msgctxt ""
@@ -62590,7 +62590,7 @@ msgctxt ""
"par_id3154394\n"
"help.text"
msgid "<emph>Type</emph> is optional and determines the type of calculation."
-msgstr ""
+msgstr "<emph>Type</emph> is optioneel en bepaalt het type berekening."
#: func_weekday.xhp
msgctxt ""
@@ -62598,7 +62598,7 @@ msgctxt ""
"par_id050220170615596613\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: func_weekday.xhp
msgctxt ""
@@ -62606,7 +62606,7 @@ msgctxt ""
"par_id05022017061559141\n"
"help.text"
msgid "Weekday number returned"
-msgstr ""
+msgstr "Geeft het nummer van de weekdag"
#: func_weekday.xhp
msgctxt ""
@@ -62614,7 +62614,7 @@ msgctxt ""
"par_id050220170615599995\n"
"help.text"
msgid "1 or omitted"
-msgstr ""
+msgstr "1 of weggelaten"
#: func_weekday.xhp
msgctxt ""
@@ -62622,7 +62622,7 @@ msgctxt ""
"par_id050220170615597231\n"
"help.text"
msgid "1 (Sunday) through 7 (Saturday). For compatibility with Microsoft Excel."
-msgstr ""
+msgstr "1 (zondag) tot7 (zaterdag). Voor compatibiliteit met Microsoft Excel."
#: func_weekday.xhp
msgctxt ""
@@ -62630,7 +62630,7 @@ msgctxt ""
"par_id050220170615596260\n"
"help.text"
msgid "1 (Monday) through 7 (Sunday)."
-msgstr ""
+msgstr "1 (maandag) tot (zondag)."
#: func_weekday.xhp
msgctxt ""
@@ -62638,7 +62638,7 @@ msgctxt ""
"par_id050220170615597630\n"
"help.text"
msgid "0 (Monday) through 6 (Sunday)"
-msgstr ""
+msgstr "0 (maandag) tot (zondag)"
#: func_weekday.xhp
msgctxt ""
@@ -62646,7 +62646,7 @@ msgctxt ""
"par_id050220170615592023\n"
"help.text"
msgid "1 (Monday) through 7 (Sunday)."
-msgstr ""
+msgstr "1 (maandag) tot (zondag)."
#: func_weekday.xhp
msgctxt ""
@@ -62654,7 +62654,7 @@ msgctxt ""
"par_id050220170615591349\n"
"help.text"
msgid "1 (Tuesday) through 7 (Monday)."
-msgstr ""
+msgstr "1 (dinsdag) tot7 (maandag)."
#: func_weekday.xhp
msgctxt ""
@@ -62662,7 +62662,7 @@ msgctxt ""
"par_id050220170615593664\n"
"help.text"
msgid "1 (Wednesday) through 7 (Tuesday)."
-msgstr ""
+msgstr "1 (woensdag) tot 7 (dinsdag)."
#: func_weekday.xhp
msgctxt ""
@@ -62670,7 +62670,7 @@ msgctxt ""
"par_id050220170615599110\n"
"help.text"
msgid "1 (Thursday) through 7 (Wednesday)."
-msgstr ""
+msgstr "1 (donderdag) tot 7 (woensdag)."
#: func_weekday.xhp
msgctxt ""
@@ -62678,7 +62678,7 @@ msgctxt ""
"par_id05022017061600535\n"
"help.text"
msgid "1 (Friday) through 7 (Thursday)."
-msgstr ""
+msgstr "1 (vrijdag) tot 7 (donderdag)."
#: func_weekday.xhp
msgctxt ""
@@ -62686,7 +62686,7 @@ msgctxt ""
"par_id050220170616003219\n"
"help.text"
msgid "1 (Saturday) through 7 (Friday)."
-msgstr ""
+msgstr "1 (zaterdag) tot 7 (vrijdag)."
#: func_weekday.xhp
msgctxt ""
@@ -62694,7 +62694,7 @@ msgctxt ""
"par_id050220170616002095\n"
"help.text"
msgid "1 (Sunday) through 7 (Saturday)."
-msgstr ""
+msgstr "1 (zondag) tot 7 (zaterdag)."
#: func_weekday.xhp
msgctxt ""
@@ -62718,7 +62718,7 @@ msgctxt ""
"par_id3150317\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"2000-06-14\")</item> returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr ""
+msgstr "<item type=\"literal\">=WEEKDAG(\"14-06-2000\")</item> geeft 4 terug (de parameter Type ontbreekt, daarom wordt de standaardtelling gebruikt. De standaardtelling begint met zondag als dag 1. 14 juni 2000 was een woensdag en daarom dag 4)."
#: func_weekday.xhp
msgctxt ""
@@ -62726,7 +62726,7 @@ msgctxt ""
"par_id3153174\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";2)</item> returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr ""
+msgstr "<item type=\"literal\">=WEEKDAG(\"24-07-1996\";2)</item> geeft 3 terug (de parameter Type is 2, daarom is maandag dag 1. 24 juli 1996 was een woensdag en daarom dag 3)."
#: func_weekday.xhp
msgctxt ""
@@ -62734,7 +62734,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";1)</item> returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr ""
+msgstr "<item type=\"literal\">=WEEKDAG(\"24-07-1996\";2)</item> geeft 4 terug (de parameter Type is 1, daarom is zondag dag 1. 24 juli 1996 was een woensdag en daarom dag 4)."
#: func_weekday.xhp
msgctxt ""
@@ -62750,7 +62750,7 @@ msgctxt ""
"par_id3150575\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(NOW())</item> returns the number of the current day."
-msgstr ""
+msgstr "<item type=\"literal\">=WEEKDAG(NU())</item> geeft het getal van de huidige dag."
#: func_weekday.xhp
msgctxt ""
@@ -62758,7 +62758,7 @@ msgctxt ""
"par_id3150588\n"
"help.text"
msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/><item type=\"literal\">IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")</item>"
-msgstr ""
+msgstr "U kunt een functie maken om aan te geven of een dag in A1 een werkdag is door de functies ALS en WEEKDAG als volgt te gebruiken: <br/><item type=\"literal\">ALS(WEEKDAG(A1;2)<6;\"Werkdag\";\"Weekend\")<6;\"Business day\";\"Weekend\")</item>"
#: func_weeknum.xhp
msgctxt ""
@@ -63014,7 +63014,7 @@ msgctxt ""
"par_idN105E4\n"
"help.text"
msgid "This function exists for interoperability with %PRODUCTNAME releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
-msgstr ""
+msgstr "Deze functie is bedoelt voor uitwisselbaarheid met %PRODUCTNAME versies ouder dan 5.1.0 en OpenOffice.org. Het berekent weeknummers voor een weeknummer-systeem waarin week 1 de datum 4 januari bevat. Deze functie is niet uitwisselbaar met andere spreadsheet toepassingen. Gebruik voor nieuwere documenten de functie <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUMMER</link> of<link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUMMER</link>."
#: func_weeknum_ooo.xhp
msgctxt ""
@@ -63198,7 +63198,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WORKDAY.INTL"
-msgstr ""
+msgstr "WERKDAG.INT"
#: func_workday.intl.xhp
msgctxt ""
@@ -63206,7 +63206,7 @@ msgctxt ""
"bm_id231020162341219565\n"
"help.text"
msgid "<bookmark_value>WORKDAY.INTL function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>WERKDAG.INT-functie</bookmark_value>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63214,7 +63214,7 @@ msgctxt ""
"hd_id231020162348002143\n"
"help.text"
msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link></variable>"
-msgstr ""
+msgstr "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WERKDAG.INT</link></variable>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63222,7 +63222,7 @@ msgctxt ""
"par_id23102016234837285\n"
"help.text"
msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Het resultaat is een datumgetal dat kan worden opgemaakt als datum. De gebruiker kan de datum van een dag zien die nog een bepaald aantal werkdagen verwijderd is van de startdatum (ervoor of erna). Er zijn opties om weekenddagen en feestdagen (vakanties) te definiëren. De optionele weekendparameter (of een tekenreeks) kan worden gebruikt om de weekenddagen (of dagen waarop niet gewerkt wordt in de week) te definiëren. Ook, optioneel, kan de gebruiker een lijst met vakanties definiëren die niet worden geteld als werkdagen.</ahelp>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63230,7 +63230,7 @@ msgctxt ""
"hd_id241020160008306802\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Syntaxis"
#: func_workday.intl.xhp
msgctxt ""
@@ -63238,7 +63238,7 @@ msgctxt ""
"par_id241020160008306838\n"
"help.text"
msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
-msgstr ""
+msgstr "<item type=\"literal\">WERKDAG.INT(Startdatum; Dagen; Weekend; Feestdagen)</item>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63246,7 +63246,7 @@ msgctxt ""
"par_id241020160008308885\n"
"help.text"
msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
-msgstr ""
+msgstr "<emph>Startdatum</emph> is de datum vanaf wanneer de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag opgenomen in de berekening. Dit is vereist."
#: func_workday.intl.xhp
msgctxt ""
@@ -63254,7 +63254,7 @@ msgctxt ""
"par_id241020160008305329\n"
"help.text"
msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr ""
+msgstr "<emph>Dagen</emph> is het aantal werkdagen. Positieve waarden voor een resultaat na de startdatum, negatieve waarden voor een resultaat voor de startdatum."
#: func_workday.intl.xhp
msgctxt ""
@@ -63262,7 +63262,7 @@ msgctxt ""
"hd_id241020160012172138\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Voorbeeld"
#: func_workday.intl.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id241020160012177196\n"
"help.text"
msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
-msgstr ""
+msgstr "Welke datum ligt 20 werkdagen na 13 december 2016? Voer de startdatum in C3 in en het aantal werkdagen in D3."
#: func_workday.intl.xhp
msgctxt ""
@@ -63278,7 +63278,7 @@ msgctxt ""
"par_id241020160012178429\n"
"help.text"
msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
-msgstr ""
+msgstr "De weekendparameter (getal) mag leeg zijn of gedefinieerd als 1 voor een standaard weekend (dagen waarop niet wordt gewerkt) - zaterdag en zondag."
#: func_workday.intl.xhp
msgctxt ""
@@ -63286,7 +63286,7 @@ msgctxt ""
"par_id241020160012172125\n"
"help.text"
msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
-msgstr ""
+msgstr "De cellen F3 tot en met J3 bevatten vijf (5) vakanties/feestdagen voor Kerstmis en Nieuwjaar in datumopmaak: 24 december 2016, 25 december 2016, 26 december 2016, 31 december 2016 en 1 januari 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63294,7 +63294,7 @@ msgctxt ""
"par_id241020160012177923\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
-msgstr ""
+msgstr "<item type=\"literal\">=WERKDAGEN.INT(C3;D3;;F3:J3)</item> geeft 11 januari 2017 terug in de resultaatcel D6 (gebruik datumopmaakt voor deze cel).January 11, 2017 in the result cell, say D6."
#: func_workday.intl.xhp
msgctxt ""
@@ -63302,7 +63302,7 @@ msgctxt ""
"par_id24102016001217206\n"
"help.text"
msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
-msgstr ""
+msgstr "Gebruik de weekendparameter 7 om vrijdag en zaterdag als weekenddagen te definieren."
#: func_workday.intl.xhp
msgctxt ""
@@ -63310,7 +63310,7 @@ msgctxt ""
"par_id241020160012178562\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
-msgstr ""
+msgstr "<item type=\"literal\">=WERKDAG.INT(C3;D3;7;F3:J3)</item> geeft 15 januari 2017 met als weekendparameter 7."
#: func_workday.intl.xhp
msgctxt ""
@@ -63318,7 +63318,7 @@ msgctxt ""
"par_id241020160012176149\n"
"help.text"
msgid "To define Sunday only the weekend day, use the weekend parameter 11."
-msgstr ""
+msgstr "Gebruik de weekendparameter 11 om zondag alleen als weekenddag te definieren."
#: func_workday.intl.xhp
msgctxt ""
@@ -63326,7 +63326,7 @@ msgctxt ""
"par_id241020160012181455\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=WERKDAG.INT(C3;D3;11;F3:J3)</item> geeft 9 januari 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63334,7 +63334,7 @@ msgctxt ""
"par_id24102016001218469\n"
"help.text"
msgid "Alternatively, use the weekend string \"0000001\" for Sunday only weekend."
-msgstr ""
+msgstr "U kunt ook de weekend-tekenreeks \"0000001\" gebruiken voor zondag als weekenddag."
#: func_workday.intl.xhp
msgctxt ""
@@ -63342,7 +63342,7 @@ msgctxt ""
"par_id241020160012183680\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=WERKDAG.INT(C3;D3;\"0000001\";F3:J3)</item> geeft 9 januari 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63350,7 +63350,7 @@ msgctxt ""
"par_id241020160012181870\n"
"help.text"
msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
-msgstr ""
+msgstr "De functie kan zonder de twee optionele parameters - weekdagen en vakanties - gebruikt worden door ze weg te laten."
#: func_workday.intl.xhp
msgctxt ""
@@ -63358,7 +63358,7 @@ msgctxt ""
"par_id241020160012182048\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=WERKDAG.INT(C3;D3)</item> geeft als resultaat: 10 januari 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63366,7 +63366,7 @@ msgctxt ""
"par_id231020162253594361\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_networkdays.xhp\">NETTO.WERKDAGEN</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63374,7 +63374,7 @@ msgctxt ""
"par_id241020160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETTO.WERKDAGEN</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63382,7 +63382,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.xhp\">WERKDAG</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63390,7 +63390,7 @@ msgctxt ""
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Datumfuncties</link>"
#: func_workday.xhp
msgctxt ""
@@ -63510,7 +63510,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.intl.xhp\">WERKDAG.INT</link>"
#: func_workday.xhp
msgctxt ""
@@ -63518,7 +63518,7 @@ msgctxt ""
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Datumfuncties</link>"
#: func_year.xhp
msgctxt ""
@@ -64198,7 +64198,7 @@ msgctxt ""
"par_id1701201619425624\n"
"help.text"
msgid "The following table has samples of a physical phenomenon taken in 1 second interval."
-msgstr ""
+msgstr "De volgende tabel heeft voorbeeld van een fysiek fenomeen dat met een interval van 1 seconde wordt genomen."
#: statistics.xhp
msgctxt ""
@@ -64262,7 +64262,7 @@ msgctxt ""
"par_id1000040\n"
"help.text"
msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Sampling</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"sam01\">Kies <emph>Gegevens - Statistieken - Steekproefneming</emph></variable>"
#: statistics.xhp
msgctxt ""
@@ -66062,7 +66062,7 @@ msgctxt ""
"par_id1000040\n"
"help.text"
msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Regression</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"sam01\">Kies <emph>Gegevens - Statistieken - Regressie</emph></variable>"
#: statistics_regression.xhp
msgctxt ""
@@ -66070,7 +66070,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on regression analysis, refer to the <link href=\"http://en.wikipedia.org/wiki/Regression_analysis\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Voor meer informatie over regressie-analyse, raadpleeg het <link href=\"http://en.wikipedia.org/wiki/Regression_analysis\">overeenkomstige Wikipedia-artikel</link>."
#: statistics_regression.xhp
msgctxt ""
@@ -66078,7 +66078,7 @@ msgctxt ""
"hd_id1000070\n"
"help.text"
msgid "Output Regression Type"
-msgstr ""
+msgstr "Uitvoer van type regressie"
#: statistics_regression.xhp
msgctxt ""
@@ -66110,7 +66110,7 @@ msgctxt ""
"par_id1701201620340139\n"
"help.text"
msgid "<emph>Power regression</emph>: Find a power curve in the form of <item type=\"literal\">y = a.x^b</item>, where <item type=\"literal\">a</item> is the coefficient, <item type=\"literal\">b</item> is the power that best fits the data."
-msgstr ""
+msgstr "<emph>Machtsregressie</emph>: Zoek een kromming in de vorm van <item type=\"literal\">y = a.x^b</item>, waar <item type=\"literal\">a</item> is het coëfficient, <item type=\"literal\">b</item> is de macht die het beste past bij de gegevens.."
#: statistics_regression.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/02.po b/source/nl/helpcontent2/source/text/scalc/02.po
index 50341b6cd99..98cc5b63ad6 100644
--- a/source/nl/helpcontent2/source/text/scalc/02.po
+++ b/source/nl/helpcontent2/source/text/scalc/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-13 20:46+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-16 12:23+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494708406.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497615792.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Pictogram</alt></image>"
#: 06040000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/04.po b/source/nl/helpcontent2/source/text/scalc/04.po
index bf4115fa1f8..2a162c8851b 100644
--- a/source/nl/helpcontent2/source/text/scalc/04.po
+++ b/source/nl/helpcontent2/source/text/scalc/04.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-03-21 20:49+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-16 12:23+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1458593378.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497615802.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"hd_id3148768\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4"
-msgstr ""
+msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Commando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4"
#: 01020000.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"hd_id3145353\n"
"help.text"
msgid "F4"
-msgstr ""
+msgstr "F4"
#: 01020000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/05.po b/source/nl/helpcontent2/source/text/scalc/05.po
index 71830d9db18..d671d633c3e 100644
--- a/source/nl/helpcontent2/source/text/scalc/05.po
+++ b/source/nl/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-06 10:37+0000\n"
+"PO-Revision-Date: 2017-06-17 04:49+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494067061.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497674989.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3067110\n"
"help.text"
msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not."
-msgstr ""
+msgstr "<emph>Converteert alleen unieken:</emph> Als de tekst een geldige en unieke waarde vertegenwoordigt, wordt geconverteerd. Voorbeeld: <item type=\"input\">\"123.456\"</item> zal een foutcode #WAARDE! genereren omdat de tekst een scheidingsteken bevat, terwijl <item type=\"input\">\"123456\"</item> dit niet heeft."
#: OpenCL_options.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/guide.po b/source/nl/helpcontent2/source/text/scalc/guide.po
index e0f3a5a0564..b375c1a24de 100644
--- a/source/nl/helpcontent2/source/text/scalc/guide.po
+++ b/source/nl/helpcontent2/source/text/scalc/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-13 20:50+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-17 04:50+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494708626.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497675012.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"bm_id3149456\n"
"help.text"
msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>deactiveren; automatische wijzigingen</bookmark_value> <bookmark_value>tabellen; deactiveren van automatische wijzigingen</bookmark_value> <bookmark_value>functie AutoInvoer;aan/uit</bookmark_value> <bookmark_value>tekst in cellen;functie AutoInvoer</bookmark_value> <bookmark_value>cellen;functie AutoInvoer van tekst</bookmark_value> <bookmark_value>invoerondersteuning in werkbladen</bookmark_value> <bookmark_value>wijzigen; invoer in cellen</bookmark_value> <bookmark_value>functie AutoCorrectie;celinhoud</bookmark_value> <bookmark_value>celinhoud;AutoInvoer-functie</bookmark_value> <bookmark_value>kleine letters;functie AutoInvoer (in cellen)</bookmark_value> <bookmark_value>hoofdletters;functie AutoInvoer (in cellen)</bookmark_value> <bookmark_value>datumnotaties;vermijden van conversie naar</bookmark_value> <bookmark_value>getalaanvulling aan/uit</bookmark_value> <bookmark_value>tekstaanvulling aan/uit</bookmark_value> <bookmark_value>woordaanvulling aan/uit</bookmark_value>"
#: auto_off.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"hd_id3149456\n"
"help.text"
msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Automatische wijzigingen deactiveren\">Automatische wijzigingen deactiveren</link></variable>"
#: auto_off.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-msgstr ""
+msgstr "$[officename] corrigeert standaard vaak gemaakte typfouten en past opmaak toe terwijl u typt. U kunt automatische wijzigingen direct ongedaan maken met <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
#: auto_off.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Tools - AutoInput</emph></link>."
-msgstr ""
+msgstr "U kunt AutoInvoer aan- en uitzetten door het vinkje te plaatsen of weg te halen bij <link href=\"text/scalc/01/06130000.xhp\" name=\"Extra - AutoInvoer\"><emph>Extra - AutoInvoer</emph></link>."
#: auto_off.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3152992\n"
"help.text"
msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Tools - AutoInput</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Extra- AutoInvoer</link>"
#: auto_off.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3149207\n"
"help.text"
msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the Enter key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Data</emph> menu, the menu item <emph>Calculate - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
-msgstr ""
+msgstr "De tijd sinds uw geboortedatum wordt berekend en weergegeven in de verschillende eenheden. De waarden worden berekend vanaf het moment dat u op de laatse formule ingaf en op de Enter-toets drukte. Deze waarde wordt niet automatisch bijgewerkt, hoewel \"NU\" natuurlijk steeds verandert. In het menu <emph>Gegevens</emph>, is het menu-item <emph>Berekenen - Automatisch berekenen</emph> normaal gesproken actief. Automatisch berekenen werkt echter niet bij de functie NU. Als dat wel zo was, was uw computer constant bezig het blad bij te werken."
#: calc_series.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Sheet</item>."
-msgstr ""
+msgstr "Kies <item type=\"menuitem\">Extra - Blad beveiligen</item> om te voorkomen dat de cellen volgens uw instellingen in het dialoogvenster <emph>Opmaak - Cellen</emph> gewijzigd / bekeken / afgedrukt worden."
#: cell_protect.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_idN106C7\n"
"help.text"
msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Spreadsheet</item>."
-msgstr ""
+msgstr "Om de structuur van het document te beschermen, bijvoorbeeld om te voorkomen dat het aantal bladen, <link href=\"text/scalc/guide/rename_table.xhp\">bladnamen</link>, en volgorde van de bladen wordt gewijzigd, kies <item type=\"menuitem\">Extra - Werkblad beveiligen</item>."
#: cell_protect.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "Select <emph>Tools - Protect Sheet</emph> or <emph>Tools - Protect Spreadsheet</emph> to remove the check mark indicating the protected status."
-msgstr ""
+msgstr "Selecteer <emph>Extra - Blad beveiligen</emph> of <emph>Extra - Werkblad beveiligen</emph> om de controlemarkering van de beveiligingsstatus te verwijderen."
#: cell_unprotect.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
-msgstr ""
+msgstr "Selecteer, om het bronbereik als bereik in te stellen, de cellen en kies <emph>Blad - Benoemde bereiken en expressies - Definieer</emph>. Sla het brondocument op en sluit het niet."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Sheet - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
-msgstr ""
+msgstr "Kies <item type=\"menuitem\">Blad - Koppeling naar externe gegevens</item>. Het dialloogvenster<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">Externe gegevens</item></link> opent."
#: cellreferences_url.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"par_id3153143\n"
"help.text"
msgid "Enter the following formula in the <item type=\"menuitem\">Replace</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
-msgstr ""
+msgstr "Voer de volgende formule in het veld <item type=\"menuitem\">Vervangen</item> in: <item type=\"literal\">=&+OPMAAKPROFIEL(ALS(HUIDIG()>3;\"Rood\";\"Groen\"))</item>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "The \"&\" symbol designates the current contents of the <emph>Find</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
-msgstr ""
+msgstr "Het symbool \"&\" verwijst naar de huidige inhoud van het veld <emph>Zoeken</emph>. De regel moet beginnen met een =-teken, omdat het een formule is. We gaan er van uit dat de celopmaakprofielen \"Rood\" en \"Groen\" reeds bestaan."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_id6529740\n"
"help.text"
msgid "Enter the text to find in the <emph>Find</emph> text box."
-msgstr ""
+msgstr "Voer de te zoeken tekst in het tekstvak <emph>Zoeken</emph> in."
#: finding.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id631733\n"
"help.text"
msgid "By default, Calc searches the current sheet. Check the <emph>All sheets</emph> box to search through all sheets of the document."
-msgstr ""
+msgstr "Standaard zoekt Calc in het huidige blad. Selecteer het vak <emph>Alle bladen</emph> om te zoeken in alle bladen van het document."
#: finding.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "In the <emph>Find</emph> box, enter <item type=\"input\">^[0-9]</item>"
-msgstr ""
+msgstr "Voer in het vak <emph>Zoeken</emph>, <item type=\"input\">^[0-9]</item> in."
#: integer_leading_zero.xhp
msgctxt ""
@@ -6694,7 +6694,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr ""
+msgstr "Kies <item type=\"menuitem\">Beeld - Cellen vastzetten - Rijen en kolommen vastzetten</item>."
#: line_fix.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr ""
+msgstr "Kies om te deactiveren nogmaals <item type=\"menuitem\">Beeld - Cellen vastzetten - Rijen en kolommen vastzetten</item>."
#: line_fix.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"par_id3147004\n"
"help.text"
msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Beeld - Cellen vastzetten - Rijen en kolommen vastzetten</link>"
#: line_fix.xhp
msgctxt ""
@@ -7862,7 +7862,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "The comment is visible whenever the mouse pointer is over the cell."
-msgstr ""
+msgstr "De notitie wordt zichtbaar als de muisaanwijzer op de cel wordt geplaatst."
#: note_insert.xhp
msgctxt ""
@@ -8534,7 +8534,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A) on all pages, do the following:"
-msgstr ""
+msgstr "Als u bijvoorbeeld de twee bovenste rijen van het blad evenals de eerste kolom (A) op alle pagina's wilt afdrukken, gaat u als volgt te werk:"
#: print_title_row.xhp
msgctxt ""
@@ -9454,7 +9454,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline> key as you click each cell."
-msgstr ""
+msgstr "Selecteer de cellen die de waarden bevatten die tussen de scenario's zullen veranderen. Om meerdere cellen te selecteren, houdt u de toets <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\"/> ingedrukt bij het klikken op elke cel."
#: scenario.xhp
msgctxt ""
@@ -9502,7 +9502,7 @@ msgctxt ""
"par_id3155764\n"
"help.text"
msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/res/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
-msgstr ""
+msgstr "Klik op het pictogram<emph>Scenarios</emph><image id=\"img_id7617114\" src=\"sc/imglst/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Pictogram Scenarios </alt></image> in de Navigator."
#: scenario.xhp
msgctxt ""
@@ -11086,7 +11086,7 @@ msgctxt ""
"par_id3153954\n"
"help.text"
msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr ""
+msgstr "Selecteer een cel of een cellenbereik en kies dan <emph>Blad - Benoemde bereiken en expressies - Definieer</emph>. Het dialoogvenster <emph>Namen definiëren</emph> verschijnt."
#: value_with_name.xhp
msgctxt ""
@@ -11134,7 +11134,7 @@ msgctxt ""
"par_id3153711\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Blad - Benoemde bereiken en expressies - Definieer</link>"
#: webquery.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "Choose <emph>Sheet - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
-msgstr ""
+msgstr "Kies <emph>Blad - Koppeling naar externe gegevens</emph>. Dit opent het dialoogvenster <link href=\"text/scalc/01/04090000.xhp\">Externe gegevens</link>."
#: webquery.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id3148842\n"
"help.text"
msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/res/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
-msgstr ""
+msgstr "In de Navigator selecteert u <emph>Als koppeling invoegen</emph> via de sleepmodus-<image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">pictogram</alt></image>."
#: webquery.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/schart/00.po b/source/nl/helpcontent2/source/text/schart/00.po
index 9027e12d874..080f85ff20c 100644
--- a/source/nl/helpcontent2/source/text/schart/00.po
+++ b/source/nl/helpcontent2/source/text/schart/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: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2015-11-27 10:24+0000\n"
+"PO-Revision-Date: 2017-06-16 12:35+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1448619870.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497616523.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id1061738\n"
"help.text"
msgid "<variable id=\"trendlines\">Choose <emph>Insert - Trend Line</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"trendlines\">Kies <emph>Invoegen - Trendlijnen</emph> (Diagrammen)</variable>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/schart/01.po b/source/nl/helpcontent2/source/text/schart/01.po
index 9439071ec26..cef86b7f6b3 100644
--- a/source/nl/helpcontent2/source/text/schart/01.po
+++ b/source/nl/helpcontent2/source/text/schart/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2016-03-30 12:32+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-17 05:44+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1459341169.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497678243.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3150298\n"
"help.text"
msgid "<variable id=\"titel\"><ahelp hid=\".\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
-msgstr ""
+msgstr "<variable id=\"titel\"><ahelp hid=\".\">Opent een dialoogvenster om titels van een grafiek in te voeren of te wijzigen.</ahelp></variable> U kunt tekst definiëren voor de titel, subtitel en as-labels en instellen of ze weergegeven worden."
#: 04010000.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id3150207\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titel"
#: 04010000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3150371\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/maintitle\">Enter the desired title for the chart.</ahelp> This will be displayed at the top of the chart."
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/maintitle\">Voer de gewenste titel in voor de grafiek.</ahelp> Deze zal aan de bovenzijde van de grafiek weergegeven worden."
#: 04010000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3149404\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/subtitle\">Enter the desired subtitle for the chart.</ahelp> This will be displayed under the title set in the <emph>Title</emph> field."
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/subtitle\">Voer de gewenste subtitel in voor de grafiek.</ahelp> Deze zal onder de titel weergegeven worden, die in het veld <emph>Titel</emph> is ingesteld."
#: 04010000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id3150208\n"
"help.text"
msgid "Axes"
-msgstr ""
+msgstr "Assen"
#: 04010000.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryXaxis\">Enter the desired title for the X axis of the chart.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryXaxis\">Voer de gewenste titel in voor de X-as van de grafiek.</ahelp>"
#: 04010000.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryYaxis\">Enter the desired title for the Y axis of the chart.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryYaxis\">Voer de gewenste titel in voor de Y-as van de grafiek.</ahelp>"
#: 04010000.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3154710\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryZaxis\">Enter the desired title for the Z axis of the chart.</ahelp> This option is only available for 3-D charts."
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/primaryZaxis\">Voer de gewenste titel in voor de Z-as van de grafiek.</ahelp> Deze optie is alleen beschikbaar voor 3D-grafieken."
#: 04010000.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"hd_id3150209\n"
"help.text"
msgid "Secondary Axes"
-msgstr ""
+msgstr "Secundaire assen"
#: 04010000.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"hd_id3156019\n"
"help.text"
msgid "X axis"
-msgstr ""
+msgstr "X-as"
#: 04010000.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3152870\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/secondaryXaxis\">Enter the desired secondary title for the X axis of the chart.</ahelp> This will appear on the opposite side of the chart as the X axis title."
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/secondaryXaxis\">Voer de gewenste secundaire titel in voor de X-as van de grafiek.</ahelp> Deze verschijnt aan de tegenovergestelde zijde van de title van de X-as op de grafiek."
#: 04010000.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"hd_id3156020\n"
"help.text"
msgid "Y axis"
-msgstr ""
+msgstr "Y-as"
#: 04010000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3152872\n"
"help.text"
msgid "<ahelp hid=\"modules/schart/ui/inserttitledlg/secondaryYaxis\">Enter the desired secondary title for the Y axis of the chart.</ahelp> This will appear on the opposite side of the chart as the Y axis title."
-msgstr ""
+msgstr "<ahelp hid=\"modules/schart/ui/inserttitledlg/secondaryYaxis\">Voer de gewenste secundaire titel in voor de Y-as van de grafiek.</ahelp> Deze verschijnt aan de tegenovergestelde zijde van de title van de Y-as op de grafiek."
#: 04020000.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3149409\n"
"help.text"
msgid "<ahelp hid=\".\">Does not show any error bars.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Toont geen foutbalken.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3151390\n"
"help.text"
msgid "<ahelp hid=\".\">Displays constant values that you specify in the Parameters area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Toont constante waarden die u in het gedeelte Parameters heeft gespecificeerd.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3150048\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Toont percentages. De aanduiding heeft betrekking op het overeenkomstige gegevenspunt. Stel het percentage in het gedeelte Parameters in.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"par_id3157979\n"
"help.text"
msgid "Variance: Displays the variance calculated from the number of data points and respective values."
-msgstr ""
+msgstr "Variantie: Geeft de variantie weer, berekend naar het aantal gegevenspunten en hun respectievelijke waarden."
#: 04050000.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3153249\n"
"help.text"
msgid "Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean."
-msgstr ""
+msgstr "Standaardafwijking: Geeft de standaardafwijking (vierkantswortel van de variantie). In tegenstelling tot andere functies worden foutbalken gericht op het gemiddelde."
#: 04050000.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_id3149870\n"
"help.text"
msgid "Error Margin: Displays the highest error margin in percent according to the highest value of the data group. Set the percentage in the Parameters area."
-msgstr ""
+msgstr "Foutmarge: Geeft de hoogste foutmarge in percentage overeenkomstig de hoogste waarde van de gegevensgroep. Stel het percentage in in het gebied Parameters."
#: 04050000.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"hd_id3156396\n"
"help.text"
msgid "Error Indicator"
-msgstr ""
+msgstr "Foutindicator"
#: 04050000.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3150539\n"
"help.text"
msgid "Specifies the error indicator."
-msgstr ""
+msgstr "Specificeert de foutindicator."
#: 04050000.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"bm_id1744743\n"
"help.text"
msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>berekenen;regressiebogen</bookmark_value> <bookmark_value>regressiebogen in diagrammen</bookmark_value> <bookmark_value>trendlijnen in diagrammen</bookmark_value> <bookmark_value>gemiddelde waarde-lijnen in diagrammen</bookmark_value>"
#: 04050100.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id7272255\n"
"help.text"
msgid "<variable id=\"trendlinestext\"> <ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trendlijnen kunnen worden toegevoegd aan alle types 2D-diagrammen, behalve aan taart- en koersdiagrammen.</ahelp> </variable>"
#: 04050100.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id180820161052123210\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">A polynomial trend line is shown with a given degree.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Een polynomiale trendlijn wordt weergegeven in een bepaalde graad weergegeven.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id180820161102568315\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Degree of polynomial trend line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Graden van de polynomiale trendlijn.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id180820161105546053\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">A moving average trend line is shown with a given period.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Een zwevende gemiddelde trendlijn wordt weergegeven in een bepaalde periode.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id180820161107537745\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Number of points to calculate average of moving average trend line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aantal gegevenspunten om een zwevend gemiddelde trendlijn te berekenen.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id180820161112599880\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Name of trend line in legend.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Naam van de trendlijn in de legenda.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id180820161117252261\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Trend line is extrapolated for higher x-values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trendlijn is geëxtrapoleerd voor hogere x-waarden.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id18082016111837138\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Trend line is extrapolated for lower x-values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trendlijn is geëxtrapoleerd voor lagere x-waarden.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"par_id180820161124272765\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">For linear, polynomial and exponential trend lines, intercept value is forced to a given value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Voor lineaire, polynomiale en exponentiële trendlijnen, worden interceptwaarden omgezet naar een opgegeven waarde.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id180820161126064822\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Value of intercept if it is forced.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Interceptwaarde als het is omgezet.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id180820161133305870\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Name of X variable in trend line equation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Naam van de X-variabele in een trendlijnvergelijking.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"par_id180820161134155865\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Name of Y variable in trend line equation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Naam van de Y-variabele in een trendlijnvergelijking.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id8398998\n"
"help.text"
msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line</emph> or <emph>Column</emph>, then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line. For such charts the XY chart type might be more suitable."
-msgstr ""
+msgstr "Als u een trendlijn invoegt in een diagramtype dat gebruik maakt van categoriën, zoals <emph>Lijn</emph> of <emph>Kolom</emph>, dan worden de nummers 1, 2, 3, <emph>…</emph> gebruikt als x-waarden om de trendlijn te berekenen."
#: 04050100.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id4349192\n"
"help.text"
msgid "To insert a trend line for a data series, select the data series in the chart. Choose <item type=\"menuitem\">Insert - Trend Line</item>, or right-click to open the context menu, and choose <item type=\"menuitem\">Insert Trend Line</item>."
-msgstr ""
+msgstr "Selecteer de gegevensreeks in het diagram en kies <item type=\"menuitem\">Invoegen - Trendlijn</item> of klik met rechts om het contextmenu te openen en kies <item type=\"menuitem\">Trendlijn invoegen</item>."
#: 04050100.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id180820161539033867\n"
"help.text"
msgid "Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series."
-msgstr ""
+msgstr "Gemiddelde waarde-lijnen zijn speciale trendlijnen die de gemiddelde waarde weergeven. Kies <item type=\"menuitem\">Invoegen - Gemiddelde waarde-lijnen</item> om gemiddelde waarde-lijnen in te voegen."
#: 04050100.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id9337443\n"
"help.text"
msgid "To delete a trend line or mean value line, click the line, then press the Del key."
-msgstr ""
+msgstr "Klik op de lijn en druk dan op de Delete-toets om een trendlijn of gemiddelde waarde-lijn te verwijderen."
#: 04050100.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id296334\n"
"help.text"
msgid "A trend line is shown in the legend automatically. Its name can be defined in options of the trend line."
-msgstr ""
+msgstr "Een trendlijn wordt automatisch in de legenda weergegeven. De naam ervan kan worden gedefineerd onder de opties van het type trendlijn."
#: 04050100.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"hd_id180820161534333508\n"
"help.text"
msgid "Trend Line Equation and Coefficient of Determination"
-msgstr ""
+msgstr "Trendlijnvergelijking en Determinatiecoëfficiënt"
#: 04050100.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id8962065\n"
"help.text"
msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R<sup>2</sup>, even if they are not shown: click on the trend line to see the information in the status bar."
-msgstr ""
+msgstr "Als het diagram in de bewerkingsmodus staat, geeft %PRODUCTNAME u de vergelijking van de trendlijn en de correlatiecoëfficiënt R<sup>2</sup>, zelfs als ze niet worden getoond. Klik op de trendlijn om de informatie in de statusbalk te zien."
#: 04050100.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id846888\n"
"help.text"
msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert Trend Line Equation</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer de trendlijn in het diagram, klik rechts om het contextmenu te openen en kies <item type=\"menuitem\">Trendlijnvergelijking invoegen</item>om de trendlijn-vergelijking te tonen.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id8962066\n"
"help.text"
msgid "To change format of values (use less significant digits or scientific notation), select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Format Trend Line Equation - Numbers</item>."
-msgstr ""
+msgstr "Selecteer, om de opmaak van waarden te wijzigen (minder significante cijfers of wetenschappelijke notatie gebruiken), de vergelijking in het diagram, klik er met rechts op om het contextmenu te openen en kies <item type=\"menuitem\">Trendlijnvergelijking opmaken - Getallen (tabblad)</item>."
#: 04050100.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id180820161627109994\n"
"help.text"
msgid "Default equation uses <item type=\"literal\">x</item> for abscissa variable, and <item type=\"literal\">f(x)</item> for ordinate variable. To change these names, select the trend line, choose <item type=\"menuitem\">Format - Format Selection – Type</item> and enter names in <item type=\"literal\">X Variable Name</item> and <item type=\"literal\">Y Variable Name</item> edit boxes."
-msgstr ""
+msgstr "De standaardvergelijking gebruikt <item type=\"literal\">x</item> voor de X-variabele, en <item type=\"literal\">f(x)</item> voor de Y-variabele. Selecteer, om deze namen te wijzigen de trendlijn, kies <item type=\"menuitem\">Opmaak - Selectie opmaken</item> en voer namen in de tekstvakken <item type=\"literal\">Naam van X-variable</item> en <item type=\"literal\">Naam van Y-variable</item> in."
#: 04050100.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_id18082016163702791\n"
"help.text"
msgid "To show the coefficient of determination R<sup>2</sup>, select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert R<sup>2</sup></item>."
-msgstr ""
+msgstr "Selecteer, om de coëfficiënt van de bepaling R<sup>2</sup> weer te geven, de vergelijking in het diagram, klik met rechts om het contextmenu te openen, en kies <item type=\"menuitem\">R<sup>2</sup> en trendvergelijking invoegen</item>."
#: 04050100.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id180820161534333509\n"
"help.text"
msgid "Trend Lines Curve Types"
-msgstr ""
+msgstr "Types trentlijnen"
#: 04050100.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "De volgende regressietypes zijn beschikbaar:"
#: 04050100.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id180820161604098009\n"
"help.text"
msgid "<emph>Linear</emph> trend line: regression through equation <item type=\"literal\">y=a∙x+b</item>. Intercept <item type=\"literal\">b</item> can be forced."
-msgstr ""
+msgstr "<emph>Lineare</emph> trendlijn: regressie door vergelijking <item type=\"literal\">y=a∙x+b</item>. Onderscheppen <item type=\"literal\">b</item> kan geforceerd worden."
#: 04050100.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_id180820161612524298\n"
"help.text"
msgid "<emph>Polynomial</emph> trend line: regression through equation <item type=\"literal\">y=Σ(a<sub>i</sub>∙x<sup>i</sup>)</item>. Intercept <item type=\"literal\">a<sub>0</sub></item> can be forced. Degree of polynomial must be given (at least 2)."
-msgstr ""
+msgstr "<emph>Polynomiale</emph> trendlijn: regressie door vergelijking <item type=\"literal\">y=Σ(a<sub>i</sub>∙x<sup>i</sup>)</item>. Onderscheppen <item type=\"literal\">a<sub>0</sub></item> kan geforceerd worden. Er moeten polynomiale graden worden opgegeven (ten minste 2)."
#: 04050100.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"par_id180820161612525364\n"
"help.text"
msgid "<emph>Logarithmic</emph> trend line: regression through equation <item type=\"literal\">y=a∙ln(x)+b</item>."
-msgstr ""
+msgstr "<emph>Logarithmische</emph> trendlijn: regressie door vergelijking <item type=\"literal\">y=a∙ln(x)+b</item>."
#: 04050100.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id180820161612526680\n"
"help.text"
msgid "<emph>Exponential</emph> trend line: regression through equation <item type=\"literal\">y=b∙exp(a∙x)</item>.This equation is equivalent to <item type=\"literal\">y=b∙m<sup>x</sup></item> with <item type=\"literal\">m=exp(a)</item>. Intercept <item type=\"literal\">b</item> can be forced."
-msgstr ""
+msgstr "<emph>Exponentiële</emph> trendlijn: regressie door vergelijking <item type=\"literal\">y=b∙exp(a∙x)</item>.Deze vergelijking is gelijk aan <item type=\"literal\">y=b∙m<sup>x</sup></item> met <item type=\"literal\">m=exp(a)</item>. Onderscheppen <item type=\"literal\">b</item> kan geforceerd worden."
#: 04050100.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_id180820161612527230\n"
"help.text"
msgid "<emph>Power</emph> trend line: regression through equation <item type=\"literal\">y=b∙x<sup>a</sup></item>."
-msgstr ""
+msgstr "<emph>Macht</emph> trendlijn: regressie door vergelijking <item type=\"literal\">y=b∙x<sup>a</sup></item>."
#: 04050100.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id180820161617342768\n"
"help.text"
msgid "<emph>Moving average</emph> trend line: simple moving average is calculated with the <emph>n</emph> previous y-values, <emph>n</emph> being the period. No equation is available for this trend line."
-msgstr ""
+msgstr "Trendlijn <emph>Voortschrijdend gemiddelde</emph>: eenvoudig voortschrijdend gemiddelde dat wordt berekend met de <emph>n</emph> vorige y-waarden, <emph>n</emph> is de periode. Er is geen vergelijking beschikbaar voor deze trendlijn."
#: 04050100.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_id7212744\n"
"help.text"
msgid "Logarithmic trend line: only positive x-values are considered."
-msgstr ""
+msgstr "Logaritmische trendlijn: alleen positieve x-waarden zijn toegestaan."
#: 04050100.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"par_id1664479\n"
"help.text"
msgid "Exponential trend line: only positive y-values are considered, except if all y-values are negative: regression will then follow equation <item type=\"literal\">y=-b∙exp(a∙x)</item>."
-msgstr ""
+msgstr "Exponentiële trendlijn: alleen positieve y-waarden zijn toegestaan, behalve als alle y-waarden negatief zijn: de regressie zal dan de vergelijking <item type=\"literal\">y=-b∙exp(a∙x)</item> volgen."
#: 04050100.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id8734702\n"
"help.text"
msgid "Power trend line: only positive x-values are considered; only positive y-values are considered, except if all y-values are negative: regression will then follow equation<item type=\"literal\"> y=-b∙x<sup>a</sup></item>."
-msgstr ""
+msgstr "Macht trendlijn: alleen positieve x-waarden zijn toegestaan, alleen positieve y-waarden zijn toegestaan, behalve als alle y-waarden negatief zijn: de regressie zal de vergelijking <item type=\"literal\"> y=-b∙x<sup>a</sup></item>volgen."
#: 04050100.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id180820161528021520\n"
"help.text"
msgid "Calculate Parameters in Calc"
-msgstr ""
+msgstr "Parameters berekenen in Calc"
#: 04050100.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id9244361\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(Data_Y;Data_X)"
-msgstr ""
+msgstr "r<sup>2</sup> = R.KWADRAAT(Gegevens_Y;Gegevens_X)"
#: 04050100.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"par_id2083498\n"
"help.text"
msgid "Besides m, b and r<sup>2</sup> the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
-msgstr ""
+msgstr "Naast m, b en r<sup>2</sup> biedt de matrixfunctie <emph>LINEST</emph> toegevoegde statistieken voor een regressie-analyse."
#: 04050100.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"hd_id2538834\n"
"help.text"
msgid "The logarithmic regression equation"
-msgstr ""
+msgstr "De logaritmische regressievergelijking"
#: 04050100.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id394299\n"
"help.text"
msgid "The <emph>logarithmic regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
-msgstr ""
+msgstr "De <emph>logaritmische regressie</emph> volgt de vergelijking <item type=\"literal\">y=a*ln(x)+b</item>"
#: 04050100.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"par_id5649281\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(Data_Y;LN(Data_X))"
-msgstr ""
+msgstr "r<sup>2</sup> = R.KWADRAAT(Gegevens_Y;(Gegevens_X))"
#: 04050100.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"par_id5437177\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(LN(Data_Y);Data_X)"
-msgstr ""
+msgstr "r<sup>2</sup> = R.KWADRAAT(LN(Gegevens_Y);Gegevens_X)"
#: 04050100.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"par_id6946317\n"
"help.text"
msgid "Besides m, b and r<sup>2</sup> the array function LOGEST provides additional statistics for a regression analysis."
-msgstr ""
+msgstr "Naast m, b en r<sup>2</sup> biedt de arrayfunctie LOGSCH toegevoegde statistieken voor een regressie-analyse."
#: 04050100.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id2357249\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(LN(Data_Y);LN(Data_X))"
-msgstr ""
+msgstr "r<sup>2</sup> = R.KWADRAAT(LN(Gegevens_Y);LN(Gegevens_X))"
#: 04050100.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id8918729\n"
"help.text"
msgid "For <emph>polynomial regression</emph> curves a transformation to a linear model takes place."
-msgstr ""
+msgstr "Voor <emph>polynomiale regressie</emph> worden bogen omgezet naar een lineair model."
#: 04050100.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"par_id33875\n"
"help.text"
msgid "Create a table with the columns x, x<sup>2</sup>, x<sup>3</sup>, … , x<sup>n</sup>, y up to the desired degree n."
-msgstr ""
+msgstr "Maak een tabel met de kolommen x, x<sup>2</sup>, x<sup>3</sup>, … , x<sup>n</sup>, y tot de gewenste graad n."
#: 04050100.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id8720053\n"
"help.text"
msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to x<sup>n</sup> (without headings) as Data_X."
-msgstr ""
+msgstr "Gebruik de formule <item type=\"literal\">=LIJNSCH(Gegevens_Y,Gegevens_X)</item> met het gehele bereik x tot x<sup>n</sup> (zonder koppen) als Gegevens_X."
#: 04050100.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id8202154\n"
"help.text"
msgid "The first element of the third row of the LINEST output is the value of r<sup>2</sup>. See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
-msgstr ""
+msgstr "Het eerste element van de derde rij van de LIJNSCH-uitvoer is de waarde van r<sup>2</sup>. Zie de <link href=\"text/scalc/01/04060107.xhp#Section8\">LIJNSCH</link>-functie voor bijzonderheden over het juiste gebruik en een verklaring van de overige uitvoerparameters."
#: 04050100.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id4562211\n"
"help.text"
msgid "<link href=\"text/schart/01/04050000.xhp\">X/Y Error Bars</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/04050000.xhp\">X/Y-foutbalken</link>"
#: 04050100.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id4562212\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060107.xhp#Section8\">LIJNSCH</link>-functie"
#: 04050100.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id4562216\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060107.xhp#Section7\">LOGEST</link> function"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060107.xhp#Section7\">LOGSCH</link>-functie"
#: 04050100.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_id4562213\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060185.xhp#slope\">SLOPE</link> function"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060185.xhp#slope\">STIJGING</link>-functie"
#: 04050100.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"par_id4562214\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060181.xhp#intercept\">INTERCEPT</link> function"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060181.xhp#intercept\">SNIJPUNT</link>-functie"
#: 04050100.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_id4562215\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060181.xhp#rsq\">RSQ</link> function"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060181.xhp#rsq\">R.KWADRAAT</link>-functie"
#: 04060000.xhp
msgctxt ""
@@ -6614,7 +6614,7 @@ msgctxt ""
"par_id4634235\n"
"help.text"
msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph> tab page of the data series properties dialog."
-msgstr ""
+msgstr "Het diagram wordt gemaakt met de standaardinstellingen. Als het diagram gereed is, kunt u de eigenschappen bewerken om het uiterlijk te wijzigen. Lijnstijlen en pictogrammen kunnen gewijzigd worden op de tabpagina <emph>Lijn</emph> van het dialoogvenster van de eigenschappen van de gegevensreeksen."
#: type_xy.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sdraw.po b/source/nl/helpcontent2/source/text/sdraw.po
index 11bce99c58d..53bd815187c 100644
--- a/source/nl/helpcontent2/source/text/sdraw.po
+++ b/source/nl/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-01-07 10:56+0000\n"
+"PO-Revision-Date: 2017-06-17 05:44+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483786595.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497678249.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "Welkom bij de Help van $[officename] Draw"
#: main0000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared.po b/source/nl/helpcontent2/source/text/shared.po
index ea4da570c98..2f2d7b3b8f1 100644
--- a/source/nl/helpcontent2/source/text/shared.po
+++ b/source/nl/helpcontent2/source/text/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-14 03:48+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-17 05:56+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494733697.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497679004.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Selecteer een extrusiediepte."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Selecteer een perspectieve of een paralelle extrusiemethode."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Selecteer een belichtingsrichting."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Selecteer een belichtingsintensiteit."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Selecteer een oppervlaktemateriaal of een draadframeweergave."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Klik om de uitlijning op de geselecteerde Fontwork-objecten toe te passen."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Klik om de tekenafstand op de geselecteerde Fontwork-objecten toe te passen."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Opent het dialoogvenster Fontwork-tekenafstand waarin u de nieuwe waarde voor tekenafstand kunt invoeren."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Schakelt de <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> van tekenparen in- en uit."
#: main0108.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN1064A\n"
"help.text"
msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">pictogram</alt></image>"
#: main0108.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"hd_id230120170827187813\n"
"help.text"
msgid "User Guides"
-msgstr ""
+msgstr "Handleidingen"
#: main0108.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id230120170827189453\n"
"help.text"
msgid "<ahelp hid=\".uno:Documentation\">Opens the documentation page in the web browser, where users can download, read or purchase %PRODUCTNAME user guides, written by the community.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Documentation\">Opent de documentatiepagina in de internetbrowser, waar gebruikers %PRODUCTNAME-handleidingen kunnen downloaden, lezen of aanschaffen, die door de gemeenschap geschreven zijn.</ahelp>"
#: main0108.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id230120170827196253\n"
"help.text"
msgid "Get Help Online"
-msgstr ""
+msgstr "Online Help krijgen"
#: main0108.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id230120170827196850\n"
"help.text"
msgid "<ahelp hid=\".uno:QuestionAnswers\">Opens the community support page in the web browser.</ahelp> Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the <link href=\"http://www.documentfoundation.org/gethelp/support/\">page of professional %PRODUCTNAME support</link>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:QuestionAnswers\">Opent de ondersteuningspagina van de gemenschap in de internetbrowser.</ahelp> Gebruik deze pagina om vragen te stellen over %PRODUCTNAME. Voor professionele ondersteuning met een 'service level agreement', gaat u naar de pagina <link href=\"http://www.documentfoundation.org/gethelp/support/\"> van professionele %PRODUCTNAME-ondersteuning</link>."
#: main0108.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id230120170903409011\n"
"help.text"
msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Restart in Safe Mode</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/profile_safe_mode.xhp\">Opnieuw opstarten in Veilige modus</link>"
#: main0108.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id281120160939285779\n"
"help.text"
msgid "<ahelp hid=\".uno:SafeMode\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SafeMode\">Veilige modus is een modus waar %PRODUCTNAME tijdelijk met een nieuw gebruikersprofiel begint en hardwareversnelling uitschakelt. Het helpt om een niet-werkende %PRODUCTNAME instantie te herstellen. </ahelp>"
#: main0108.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3134447820\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabelontwerp"
#: main0204.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id16200812240344\n"
"help.text"
msgid "<ahelp hid=\".uno:TableDesign\">Opens the Table Design. Double-click a preview to format the table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TableDesign\">Opent Tabelontwerp. Dubbelklik op een voorbeeld om de tabel op te maken.</ahelp>"
#: main0204.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3153752\n"
"help.text"
msgid "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">pictogram</alt></image>"
#: main0204.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3156429\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabelontwerp"
#: main0204.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/00.po b/source/nl/helpcontent2/source/text/shared/00.po
index 47f55e797b0..441cc5f931e 100644
--- a/source/nl/helpcontent2/source/text/shared/00.po
+++ b/source/nl/helpcontent2/source/text/shared/00.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-16 02:08+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 05:52+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494900485.000000\n"
+"X-POOTLE-MTIME: 1497765127.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -198,7 +198,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#metrik\" name=\"units of measurement\">units of measurement</link>. The default unit is inches. However, if you want a space of exactly 1cm, 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 "U kunt waarden in verschillende <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measurement\">maateenheden</link> invoeren in de invoervelden. De standaardeenheid is inches. Als u echter een spatie wilt van precies 1 cm, voert u 1 cm in. Aanvullende eenheden zijn beschikbaar volgens de context, bijvoorbeeld 12 pt voor een 12-punts spatiegrootte. Als de waarde van de nieuwe eenheid niet realistisch is, gebruikt het programma een voorgedefinieerde maximum- of minimumwaarde."
#: 00000001.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"bm_id3150702\n"
"help.text"
msgid "<bookmark_value>Internet glossary</bookmark_value> <bookmark_value>common terms;Internet glossary</bookmark_value> <bookmark_value>glossaries;Internet terms</bookmark_value> <bookmark_value>terminology;Internet glossary</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>internetwoordenlijst</bookmark_value> <bookmark_value>algemene termen; internetwoordenlijst</bookmark_value> <bookmark_value>woordenlijsten; internettermen</bookmark_value> <bookmark_value>terminologie; internetwoordenlijst</bookmark_value>"
#: 00000002.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"hd_id3150702\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Woordenlijst met internettermen\">Woordenlijst met internettermen</link>"
#: 00000002.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3155577\n"
"help.text"
msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
-msgstr ""
+msgstr "Als u niet vertrouwd bent met internet, zult u onbekende termen tegenkomen, zoals browser, bladwijzer, e-mail, homepage, zoekmachine en vele andere termen. In deze woordenlijst vindt u een aantal van de belangrijkste termen die u kunt tegenkomen op het internet, intranet, in e-mail en nieuws om uw eerste stappen wat te vergemakkelijken."
#: 00000002.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id18082016234439503\n"
"help.text"
msgid "CMIS"
-msgstr ""
+msgstr "CMIS"
#: 00000002.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id180820162344398454\n"
"help.text"
msgid "The Content Management Interoperability Services (CMIS) standard defines a domain model and Web Services and Restful AtomPub bindings that will enable greater interoperability of Enterprise Content Management (ECM) systems. CMIS uses Web services and Web 2.0 interfaces to enable rich information to be shared across Internet protocols in vendor-neutral formats, among document systems, publishers and repositories, within one enterprise and between companies."
-msgstr ""
+msgstr "De CMIS-standaard (Content Management Interoperability Services) definieert een domeinmodel en webservices en RESTful AtomPub verbindingen die de interoperabiliteit van Enterprise Content Management (ECM) systemen mogelijk maakt. CMIS maakt gebruikt van webdiensten en web 2.0 interfaces om informatie te delen over internetprotocollen in leveranciersneutrale formaten, tussen documentsystemen, uitgevers en repositories, binnen één bedrijf en tussen bedrijven."
#: 00000002.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id180820162344393005\n"
"help.text"
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: 00000002.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id180820162344394243\n"
"help.text"
msgid "Short for Web-based Distributed Authoring and Versioning, an IETF standard set of platform-independent extensions to HTTP that allows users to collaboratively edit and manage files on remote Web servers. WebDAV features XML properties on metadata, locking - which prevents authors from overwriting each other's changes - namespace manipulation and remote file management. WebDav is sometimes referred to as DAV."
-msgstr ""
+msgstr "Web-based Distributed Authoring and Versioning (WebDAV), is een IETF-standaard (Internet Engineering Task Force) van platformafhankelijke extensie voor HTTP waarmee gebruikers samen bestanden kunnen bewerken en beheren op externe webservers. WebDAV beschikt over XML-eigenschappen op metagegevens, vergrendeling - waardoor auteurs elkaar niet kunnen overschrijven - naamruimte manipulatie en extern bestandsbeheer. WebDAV wordt soms DAV genoemd."
#: 00000002.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"hd_id3153146\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "Frames"
#: 00000002.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id3157909\n"
"help.text"
msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
-msgstr ""
+msgstr "Frames zijn met name handig voor het ontwerpen van de lay-out van <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>-pagina's. $[officename] gebruikt zwevende kaders waarin u objecten kunt plaatsen zoals afbeeldingen, filmbestanden en geluiden. In het contextmenu van een frame worden de opties weergegeven voor het herstellen en bewerken van de frame-inhoud. Sommige opdrachten in contextmenu's worden ook weergegeven in <emph>Bewerken - Object</emph> als het frame is geselecteerd."
#: 00000002.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"hd_id3147077\n"
"help.text"
msgid "FTP"
-msgstr ""
+msgstr "FTP"
#: 00000002.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
-msgstr ""
+msgstr "FTP staat voor File Transfer Protocol en is het standaardoverdrachtsprotocol voor bestanden op het internet. Een FTP-server is een programma op een computer die met het internet is verbonden en waarop de bestanden worden opgeslagen die met behulp van FTP verstuurd moeten worden. Terwijl FTP verantwoordelijk is voor het verzenden en downloaden van internetbestanden, verzorgt <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) de verbindingsinstellingen en gegevensoverdracht tussen WWW-servers en clients."
#: 00000002.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3145609\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: 00000002.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3161459\n"
"help.text"
msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
-msgstr ""
+msgstr "HTML (HyperText Markup Language) is een documentcodetaal die wordt gebruikt als bestandsindeling voor WWW-documenten. De taal is ontleend aan <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> en integreert tekst, afbeeldingen, video's en geluid."
#: 00000002.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3154346\n"
"help.text"
msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
-msgstr ""
+msgstr "Als u HTML-opdrachten direct wilt invoeren (wanneer u bijvoorbeeld oefeningen uit een van de vele beschikbare HTML-boeken maakt), dient u er rekening mee te houden dat HTML-pagina's pure tekstbestanden zijn. Sla uw document op met het documenttype <emph>Tekst</emph> en geef het de bestandsnaamextensie .HTM. Zorg dat de extensie geen umlaut of andere speciale tekens uit de uitgebreide tekenset bevat. Als u dit bestand later opnieuw wilt openen in $[officename] om de HTML-code te bewerken, moet u het bestand laden met het bestandstype <emph>Tekst</emph> en niet met het bestandstype <emph>Webpagina's</emph>."
#: 00000002.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "There are several references on the Internet providing an introduction to the HTML language."
-msgstr ""
+msgstr "Op het internet kunt u referentiemateriaal vinden met een inleiding tot de HTML-taal."
#: 00000002.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3147423\n"
"help.text"
msgid "HTTP"
-msgstr ""
+msgstr "HTTP"
#: 00000002.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3153379\n"
"help.text"
msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
-msgstr ""
+msgstr "HTTP (Hypertext Transfer Protocol) is een verzendrecord van WWW-documenten tussen WWW-servers (hosts) en browsers (clients)."
#: 00000002.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"hd_id3149290\n"
"help.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hyperlink"
#: 00000002.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3145420\n"
"help.text"
msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
-msgstr ""
+msgstr "Hyperlinks zijn kruisverwijzingen, geaccentueerd in tekst van verscheidene kleuren, en worden geactiveerd door een muisklik. Met behulp van hyperlinks kunnen lezers naar specifieke informatie binnen een document springen en naar verwante informatie in andere documenten."
#: 00000002.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
-msgstr ""
+msgstr "In $[officename] kunt u hyperlinks aan tekst, evenals afbeeldingen en tekstframes toewijzen (zie het pictogram voor het hyperlink-dialoogvenster op de Standaardbalk)."
#: 00000002.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"hd_id3152805\n"
"help.text"
msgid "ImageMap"
-msgstr ""
+msgstr "ImageMap"
#: 00000002.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
-msgstr ""
+msgstr "Een ImageMap is een verwijzingsgevoelige afbeelding of tekstframe. U kunt op een gedefinieerd gebied van de afbeelding of het tekstframe klikken om naar een doel (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) te springen dat aan dat gebied is gekoppeld. De verwijzingsgebieden, samen met de gekoppelde URL's en bijbehorende tekst die worden weergegeven wanneer de muisaanwijzer op deze gebieden wordt geplaatst, worden gedefinieerd in de <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap-editor\">ImageMap-editor</link>."
#: 00000002.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3153178\n"
"help.text"
msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
-msgstr ""
+msgstr "Er zijn twee verschillende typen ImageMaps. Een ImageMap aan de clientzijde wordt geanalyseerd op de clientcomputer, waarop de afbeelding vanaf het internet geladen is, terwijl de ImageMap aan de serverzijde wordt geanalyseerd op de computer die de <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>-pagina op het internet aanbiedt. Tijdens de serveranalyse worden bij het klikken op een ImageMap de relatieve coördinaten van de cursor binnen de afbeelding naar de server verzonden, waarop vervolgens door een toegewezen programma op de server gereageerd wordt. Tijdens de clientanalyse wordt bij het klikken op een gedefinieerde hotspot van de ImageMap de URL geactiveerd, alsof het een normale tekstkoppeling is. De URL verschijnt onder de muisaanwijzer wanneer deze over de ImageMap bewogen wordt."
#: 00000002.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3150740\n"
"help.text"
msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
-msgstr ""
+msgstr "Aangezien ImageMaps op verschillende manieren kunnen worden gebruikt, kunnen ze in verschillende indelingen worden opgeslagen."
#: 00000002.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3146874\n"
"help.text"
msgid "ImageMap Formats"
-msgstr ""
+msgstr "Indelingen voor ImageMaps"
#: 00000002.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id3145153\n"
"help.text"
msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
-msgstr ""
+msgstr "ImageMaps kunnen worden onderverdeeld in twee groepen: de ImageMaps die worden geanalyseerd op de server (uw internetprovider) en de ImageMaps die worden geanalyseerd op de webbrowser op de computer van de lezer."
#: 00000002.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id3152881\n"
"help.text"
msgid "Server Side ImageMaps"
-msgstr ""
+msgstr "ImageMaps aan serverzijde"
#: 00000002.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id3153057\n"
"help.text"
msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
-msgstr ""
+msgstr "ImageMaps aan de serverzijde verschijnen voor de lezer als een afbeelding of frame op de pagina. Klik met de muis op de ImageMap, waarna de coördinaten van de relatieve positie naar de server worden verzonden. Met behulp van een extra programma wordt op de server bepaald wat de volgende stap is. Er zijn verschillende niet-compatibele methoden om deze verwerking te definiëren, de twee meest gebruikelijke zijn:"
#: 00000002.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3147502\n"
"help.text"
msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
-msgstr ""
+msgstr "W3C (CERN) HTTP-server (bestandstype: MAP - CERN)"
#: 00000002.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
-msgstr ""
+msgstr "NCSA HTTP-server (bestandstype: MAP - NCSA)"
#: 00000002.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3149483\n"
"help.text"
msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
-msgstr ""
+msgstr "$[officename] maakt voor beide methoden ImageMaps. Selecteer de indeling in de keuzelijst <emph>Bestandstype</emph> van het dialoogvenster <emph>Opslaan als</emph> in de <emph>ImageMap-editor</emph>. Er worden afzonderlijke Map-bestanden gemaakt die u moet uploaden naar de server. U moet uw provider of netwerkbeheerder vragen welk type ImageMap wordt ondersteund door de server en hoe u toegang krijgt tot het evaluatieprogramma."
#: 00000002.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"hd_id3152418\n"
"help.text"
msgid "Client Side ImageMap"
-msgstr ""
+msgstr "ImageMaps aan clientzijde"
#: 00000002.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"par_id3151290\n"
"help.text"
msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
-msgstr ""
+msgstr "Het gebied van de afbeelding of frame waar de lezer kan klikken wordt aangegeven bij het verschijnen van de gekoppelde <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> als de muis over het gebied wordt bewogen. De ImageMap is opgeslagen in een laag onder de afbeelding en bevat informatie over de gebieden waarnaar verwezen wordt. Het enige nadeel van Client Side ImageMaps is dat oudere webbrowsers ze niet kunnen lezen; een nadeel dat echter in de loop van de tijd vanzelf verdwijnt."
#: 00000002.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr ""
+msgstr "Bij het opslaan van de ImageMap selecteert u het bestandstype <emph>SIP - StarView ImageMap</emph>. Hiermee wordt de ImageMap rechtstreeks opgeslagen in een indeling die op elke actieve afbeelding of elk actief frame in het document kan worden toegepast. Als u de ImageMap echter alleen wilt gebruiken voor de huidige afbeelding of het huidige tekstframe, hoeft u deze niet in een speciale indeling op te slaan. Na het definiëren van de gebieden klikt u eenvoudig op <emph>Toepassen</emph>. Meer is niet nodig. ImageMaps aan de clientzijde die zijn opgeslagen in de <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>-indeling, worden direct in HTML-code op de pagina ingevoegd."
#: 00000002.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3159125\n"
"help.text"
msgid "Java"
-msgstr ""
+msgstr "Java"
#: 00000002.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
-msgstr ""
+msgstr "De programmeertaal Java is een platform onafhankelijke programmeertaal die speciaal geschikt is voor gebruik op het internet. Webpagina's en toepassingen die zijn geprogrammeerd zijn met Java klassebestanden kunnen op alle moderne besturingssystemen worden gebruikt. Programma's die de programmeertaal Java gebruiken worden gewoonlijk ontwikkeld in een Java-ontwikkelomgeving en dan gecompileerd tot een \"bytecode\"."
#: 00000002.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Proxy"
-msgstr ""
+msgstr "Proxy"
#: 00000002.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
-msgstr ""
+msgstr "Een proxy is een computer in het netwerk die optreedt als een soort klembord voor gegevensoverdracht. Telkens wanneer u internet bezoekt vanaf een bedrijfsnetwerk en een webpagina opvraagt die al is gelezen door een collega, kan de pagina sneller worden weergegeven dankzij de proxy, zolang die pagina nog in het geheugen is opgeslagen. Alles wat in dat geval gecontroleerd moet worden is of de pagina die is opgeslagen op de proxy, de laatste versie is. Als dit het geval is, hoeft de pagina niet te worden gedownload van het veel langzamere internet, maar kan de pagina direct vanaf de proxy worden geladen."
#: 00000002.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3154729\n"
"help.text"
msgid "SGML"
-msgstr ""
+msgstr "SGML"
#: 00000002.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
-msgstr ""
+msgstr "SGML staat voor \"Standard Generalized Markup Language\". SGML is gebaseerd op het idee dat documenten structurele en andere semantische elementen hebben die kunnen worden beschreven zonder verwijzingen naar hoe die elementen zouden moeten worden weergegeven. De werkelijke weergave van dergelijke documenten kan variëren, afhankelijk van het uitvoermedium en de opmaakvoorkeuren. In gestructureerde teksten definieert SGML niet alleen structuren (in de DTD = Document Type Definition), maar zorgt er ook voor dat zij consistent worden gebruikt."
#: 00000002.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3148747\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is een gespecialiseerde toepassing van SGML. Dit betekent dat de meeste webbrowsers alleen een beperkt bereik van SGML-standaarden ondersteunen en dat bijna alle SGML-geschikte systemen aantrekkelijke HTML-pagina's kunnen produceren."
#: 00000002.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"hd_id3153950\n"
"help.text"
msgid "Search Engines"
-msgstr ""
+msgstr "Zoekmachines"
#: 00000002.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3157965\n"
"help.text"
msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
-msgstr ""
+msgstr "Een zoekmachine is een service op internet, gebaseerd op een softwareprogramma, dat wordt gebruikt om een grote hoeveelheid informatie met behulp van sleutelwoorden te doorzoeken"
#: 00000002.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"hd_id3150751\n"
"help.text"
msgid "Tags"
-msgstr ""
+msgstr "Labels"
#: 00000002.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3156360\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>pagina's bevatten bepaalde structurele en opmaakinstructies die tags worden genoemd. Tags zijn codewoorden die in de document beschrijvingstaal HTML tussen haakjes worden geplaatst. Vele tags bevatten tekst of hyperlink verwijzingen tussen de haakjes openen en sluiten. Titels worden bijvoorbeeld aangeduid door de tags <h1> aan het begin en </h1> aan het einde van de titel. Sommige tags verschijnen alleen, zonder sluitingstags, zoals <br> voor een regeleinde of <img ...> om een afbeelding te koppelen."
#: 00000002.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3153766\n"
"help.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: 00000002.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3152931\n"
"help.text"
msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
-msgstr ""
+msgstr "De URL (Uniform Resource Locator) geeft het adres weer van een document of een server op internet. De algemene structuur van een URL varieert afhankelijk van het type, en ziet er meestal als volgt uit Service://Hostnaam:Poort/Pad/Pagina#Markering, hoewel niet alle elementen altijd nodig zijn. Een URL kan een FTP-adres, een WWW (HTTP)-adres, een bestandsadres of een e-mailadres zijn."
#: 00000003.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "in or ″"
-msgstr ""
+msgstr "in of ″"
#: 00000003.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"par_id2\n"
"help.text"
msgid "The following file types do not show an options dialog: RAS, SVG, TIFF, XPM."
-msgstr ""
+msgstr "Voor de volgende bestandstypen wordt geen dialoog voor opties getoond: RAS, SVG, TIFF, XPM."
#: 00000200.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_idN11163\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Digital Signatures</emph>"
-msgstr ""
+msgstr "Kies <emph>Bestand - Digitale handtekeningen - Digitale handtekeningen</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3153581\n"
"help.text"
msgid "On the <emph>Print Preview</emph> bar of a text document, click"
-msgstr ""
+msgstr "Klik, op de werkbalk <emph>Afdrukvoorbeeld</emph> van een tekstdocument, op"
#: 00000401.xhp
msgctxt ""
@@ -6574,7 +6574,7 @@ msgctxt ""
"par_id3153224\n"
"help.text"
msgid "<variable id=\"dvergl\">Choose <emph>Edit - Track Changes - Compare Document</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"dvergl\">Kies <emph>Bewerken - Document vergelijken</emph></variable>"
#: 00000402.xhp
msgctxt ""
@@ -7734,7 +7734,7 @@ msgctxt ""
"par_id3147230\n"
"help.text"
msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"menue\">Kies <emph>Extra - Aanpassen - Menu</emph> (tabblad)</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7742,7 +7742,7 @@ msgctxt ""
"par_idN108E9\n"
"help.text"
msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"menuenew\">Kies <emph>Extra - Aanpassen - Menu</emph> (tabblad) en klik op <emph>Nieuw</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7750,7 +7750,7 @@ msgctxt ""
"par_idN10919\n"
"help.text"
msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"menuemove\">Kies <emph>Extra - Aanpassen - Menu</emph> (tabblad) en klik op <emph>Menu - Verplaatsen</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -9134,7 +9134,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kies <emph>Opmaak - Cellen - Aziatische typografie</emph>(tabblad)</caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9262,7 +9262,7 @@ msgctxt ""
"par_id3154149\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Borders</emph> tab"
-msgstr ""
+msgstr "Kies <emph>Opmaak - Afbeelding - Eigenschappen - Randen</emph> tabblad"
#: 00040500.xhp
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"par_id3163822\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Borders</emph> tab"
-msgstr ""
+msgstr "Kies de tab<emph>Opmaak - Frame en object - Eigenschappen - Randen</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9318,7 +9318,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kies <emph>Opmaak - Cellen - Randen</emph> (tabblad) </caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9326,7 +9326,7 @@ msgctxt ""
"par_id3155915\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Opmaak - Alinea</emph> - <emph>Randen</emph> (tabblad) -<emph> Afstand tot inhoud</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9334,7 +9334,7 @@ msgctxt ""
"par_id3159130\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Opmaak - Pagina - Randen - Afstand tot inhoud</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9366,7 +9366,7 @@ msgctxt ""
"par_id3150592\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Area</emph> tab"
-msgstr ""
+msgstr "Kies de tab<emph>Opmaak - Frame en object - Eigenschappen - Oppervlak</emph>"
#: 00040500.xhp
msgctxt ""
@@ -9414,7 +9414,7 @@ msgctxt ""
"par_id3146900\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kies <emph>Opmaak - Cellen - Achtergrond</emph> (tabblad) </caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_id3159313\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Op de werkbalk <emph>Tekening</emph> klikt u op</defaultinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"par_id3150785\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Stijlen en opmaak</emph> - Presentatie-opmaakprofielen en vervolgens het contextmenu van een overzichtsstijl. Kies dan <emph>Nieuw/Wijzigen</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9654,7 +9654,7 @@ msgctxt ""
"par_id3149917\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Stijlen en opmaak - Presentatie-opmaakprofielen en vervolgens het contextmenu van een overzichtsstijl. Kies dan <emph>Nieuw/Wijzigen</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"par_id3155378\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Stijlen en opmaak</emph> - Presentatie-opmaakprofielen en vervolgens het contextmenu van een overzichtsstijl. Kies dan <emph>Nieuw/Wijzigen</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9742,14 +9742,14 @@ msgctxt ""
"par_id3151332\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Image </emph>- <emph>Crop</emph> tab</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Opmaak - Afbeelding </emph>- <emph> Bijsnijden</emph> tabblad </caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9774,7 +9774,7 @@ msgctxt ""
"par_id3151254\n"
"help.text"
msgid "Choose <emph>Format - Text</emph> or <emph>Format - Text - Change Case</emph>"
-msgstr ""
+msgstr "Kies <emph>Opmaak - Tekst</emph> of <emph>Opmaak - Tekst - Hoofd-/kleine letters wisselen</emph>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/01.po b/source/nl/helpcontent2/source/text/shared/01.po
index 4fca7123ff2..3df750f265c 100644
--- a/source/nl/helpcontent2/source/text/shared/01.po
+++ b/source/nl/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-16 03:31+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 07:41+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494905499.000000\n"
+"X-POOTLE-MTIME: 1497771699.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3154946\n"
"help.text"
msgid "Creates a new presentation document ($[officename] Impress)."
-msgstr ""
+msgstr "Maakt een nieuw presentatie document ($[officename] Impress)."
#: 01010000.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_idN10A15\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Maakt een nieuw presentatiedocument ($[officename] Impress).</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"bm_id3145211\n"
"help.text"
msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>mappen; nieuwe maken</bookmark_value> <bookmark_value>map maken</bookmark_value> <bookmark_value>map Mijn documenten; openen</bookmark_value> <bookmark_value>diverse documenten; openen</bookmark_value> <bookmark_value>openen; diverse bestanden</bookmark_value> <bookmark_value>selecteren; diverse bestanden</bookmark_value> <bookmark_value>openen; bestanden met te vervangen aanduidingen</bookmark_value> <bookmark_value>te vervangen aanduidingen;bij het openen van bestanden</bookmark_value> <bookmark_value>documenten; openen met sjablonen</bookmark_value> <bookmark_value>sjablonen; documenten openen met</bookmark_value> <bookmark_value>documenten; gewijzigde opmaakprofielen </bookmark_value> <bookmark_value>opmaakprofielen; bericht 'gewijzigd'</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"hd_id3146936\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Openen</link>"
#: 01020000.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id3151191\n"
"help.text"
msgid "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opens, opens a remote file or imports a file.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opent een lokaal bestand, opent een bestand op een server of importeert een bestand.</ahelp></variable>"
#: 01020000.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3149877\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "De volgende secties beschrijven het dialoogvenster <item type=\"productname\">%PRODUCTNAME</item> <emph>Openen</emph> keuzevak. om de keuzevakken <item type=\"productname\">%PRODUCTNAME</item> <emph>Openen</emph> en <emph>Opslaan</emph> te activeren, kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren </emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- Algemeen</emph></link> en selecteer dan <emph>%PRODUCTNAME dialoogvensters gebruiken</emph> in het gedeelte <emph>Dialoogvensters Openen/Opslaan</emph>."
#: 01020000.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id3150713\n"
"help.text"
msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
-msgstr ""
+msgstr "Als het bestand dat u wilt openen, opmaakprofielen bevat, zijn er <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"speciale regels\">speciale regels</link> van toepassing."
#: 01020000.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"hd_id3147250\n"
"help.text"
msgid "Up One Level"
-msgstr ""
+msgstr "Eén niveau hoger"
#: 01020000.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Ga één map in de mapstructuur omhoog. Houd de muisknop lang ingedrukt om de mappen op hogere niveaus te bekijken.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"hd_id3145211\n"
"help.text"
msgid "Create New Folder"
-msgstr ""
+msgstr "Nieuwe map maken"
#: 01020000.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Maakt een nieuwe map aan.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Display area"
-msgstr ""
+msgstr "Weergavebereik"
#: 01020000.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEDLG_STANDARD\">Geeft de bestanden en submappen in de map weer waarin u zich bevindt. </ahelp>Wanneer u een bestand wilt openen, selecteert u het en klikt u vervolgens op <emph>Openen</emph>."
#: 01020000.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"par_id3159256\n"
"help.text"
msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "Houdt <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ingedrukt terwijl u op de bestanden klikt en klik dan op <emph>Openen</emph> om meer dan één document op hetzelfde moment, elk in een eigen venster, te openen."
#: 01020000.xhp
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "Click a column header to sort the files. Click again to reverse the sort order."
-msgstr ""
+msgstr "Klik op een kolomkop om de bestanden te sorteren. Klik opnieuw om de sorteervolgorde om te keren."
#: 01020000.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_id3149514\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">Wanneer u een bestand wilt verwijderen, klikt u er met de rechtermuisknop op en kiest u vervolgens <emph>Verwijderen</emph>.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">Wanneer u een bestand wilt hernoemen, klikt u met de rechtermuisknop op het bestand en kiest u vervolgens <emph>Naam wijzigen</emph>.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id3153331\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Klik hierop om het bestand te verwijderen waarvan de naam in dit dialoogvenster wordt getoond.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"par_id3161458\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Klik hierop om verwijdering van het bestand waarvan de naam in dit dialoogvenster wordt getoond, te annuleren.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Klik hierop om alle geselecteerde bestanden te verwijderen.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"hd_id3154280\n"
"help.text"
msgid "File name"
-msgstr ""
+msgstr "Bestandsnaam"
#: 01020000.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Voer een bestandsnaam of een pad voor het bestand in. U kunt ook een <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> invoeren dat begint met de protocolnaam ftp, http of https.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
-msgstr ""
+msgstr "U kunt desgewenst jokertekens in het vakje <emph>Bestandsnaam </emph>gebruiken om de weergegeven lijst met bestanden te filteren."
#: 01020000.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3153779\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"> </caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Wanneer u bijvoorbeeld alle tekstbestanden in een map wilt weergeven, voert u het jokerteken * met de extensie van het tekstbestand (*.txt) in en klikt u vervolgens op <emph> Openen</emph>. Gebruik het jokerteken vraagteken (?) om een willekeurig teken aan te duiden, zoals in (??3*.txt), waarbij alleen tekstbestanden met een '3' als het derde teken in de bestandsnaam worden weergegeven.</defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"hd_id3145117\n"
"help.text"
msgid "Version"
-msgstr ""
+msgstr "Versie"
#: 01020000.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3149291\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEOPEN_VERSION\">Als er meerdere versies van het geselecteerde bestand bestaan, selecteert u de versie die u wilt openen.</ahelp> U kunt meerdere versies van een document opslaan en beheren door <emph>Bestand - Versies</emph> te kiezen. De versies van een document worden in alleen-lezen modus geopend."
#: 01020000.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "File type"
-msgstr ""
+msgstr "Bestandstype"
#: 01020000.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Selecteer het bestandstype dat u wilt openen of selecteer <emph>Alle bestanden (*)</emph> om een lijst met alle bestanden in de map weer te geven.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"hd_id3154125\n"
"help.text"
msgid "Open"
-msgstr ""
+msgstr "Openen"
#: 01020000.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Opens the selected document(s).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Opent de geselecteerde documenten.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"hd_id3147085\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Invoegen"
#: 01020000.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_id3156293\n"
"help.text"
msgid "If you opened the dialog by choosing <emph>Insert - Document</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
-msgstr ""
+msgstr "Als u het dialoogvenster hebt geopend door <emph>Invoegen - Bestand</emph> te kiezen, wordt de knop <emph>Openen</emph> met <emph>Invoegen</emph> aangeduid. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Voegt het geselecteerde bestand in het huidige document bij de cursorpositie in.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"hd_id3144762\n"
"help.text"
msgid "Read-only"
-msgstr ""
+msgstr "Alleen-lezen"
#: 01020000.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"par_id3145785\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opent het document in alleen-lezen modus.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"hd_id3149984\n"
"help.text"
msgid "Play"
-msgstr ""
+msgstr "Afspelen"
#: 01020000.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"par_id3147289\n"
"help.text"
msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Speelt het geselecteerde geluidsbestand af. Klik opnieuw om het afspelen van het geluidsbestand te stoppen.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"hd_id3149260\n"
"help.text"
msgid "Opening Documents With Templates"
-msgstr ""
+msgstr "Documenten met sjablonen openen"
#: 01020000.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
-msgstr ""
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> herkent sjablonen die zijn opgeslagen in een map uit de volgende lijst:"
#: 01020000.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id3151292\n"
"help.text"
msgid "the shared template folder"
-msgstr ""
+msgstr "de gedeelde sjabloonmap"
#: 01020000.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"par_id3144442\n"
"help.text"
msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory </caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
-msgstr ""
+msgstr "de sjabloonmap van de gebruiker <switchinline select=\"sys\"><caseinline select=\"UNIX\">in de basismap</caseinline><defaultinline>in de map Documenten en Instellingen </defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id3146905\n"
"help.text"
msgid "all template folders as defined in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - Paths</emph></link>"
-msgstr ""
+msgstr "alle mappen voor sjablonen zoals gedefinieerd in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\">%PRODUCTNAME - Paden</link></emph>"
#: 01020000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Als u <item type=\"menuitem\">Bestand - Sjablonen - Opslaan als sjabloon</item> gebruik om een sjabloon op te slaan, wordt de sjabloon opgeslagen in uw map met gebruikerssjablonen. Als u een document opent dat is gebaseerd op zo'n sjabloon, wordt het document gecontroleerd op een gewijzigd sjabloon zoals hieronder beschreven. Het sjabloon is verbonden met het document, het kan een \"gekoppeld sjabloon\" genoemd worden."
#: 01020000.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_id3150105\n"
"help.text"
msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
-msgstr ""
+msgstr "Als u een document opent dat gemaakt is met behulp van een \"gekoppeld sjabloon\" (zoals hierboven beschreven), controleert <item type=\"productname\">%PRODUCTNAME</item> of het sjabloon gewijzigd is sinds het document het laatst was geopend. Als het sjabloon gewijzigd is, wordt een dialoogvenster weergegeven waarin u kunt selecteren welke profielen toegepast worden op het document."
#: 01020000.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_id3153096\n"
"help.text"
msgid "To apply the new styles from the template to the document, click <emph>Update Styles</emph>."
-msgstr ""
+msgstr "Wanneer u de nieuwe opmaakprofielen van de sjabloon op het document wilt toepassen, klikt u op <emph>Opmaakprofielen bijwerken</emph>."
#: 01020000.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3147581\n"
"help.text"
msgid "To retain the styles that are currently used in the document, click <emph>Keep Old Styles</emph>."
-msgstr ""
+msgstr "Wanneer u de opmaakprofielen wilt behouden die momenteel in het document worden gebruikt, klikt u op <emph>Oude opmaakprofielen behouden</emph>."
#: 01020000.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_id3154988\n"
"help.text"
msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
-msgstr ""
+msgstr "Als een document met behulp van een sjabloon is gemaakt die niet kan worden gevonden, wordt er een dialoogvenster getoond waarin u wordt gevraagd hoe u de volgende keer dat het document wordt geopend, verder wilt gaan."
#: 01020000.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
-msgstr ""
+msgstr "Wanneer u de koppeling tussen het document en de ontbrekende sjabloon wilt verbreken, klikt u op <emph>Nee</emph>, anders zoekt <item type=\"productname\">%PRODUCTNAME</item> de sjabloon wanneer u het document de volgende keer opent."
#: 01020000.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3147654\n"
"help.text"
msgid "To save a document as a template, use the command <emph>File - Templates - Save As Template</emph>."
-msgstr ""
+msgstr "Gebruik om een document als sjabloon op te slaan, de opdracht <emph>Bestand - Sjablonen - Opslaan als sjabloon</emph>."
#: 01070000.xhp
msgctxt ""
@@ -2926,7 +2926,7 @@ msgctxt ""
"hd_id3149576\n"
"help.text"
msgid "Template:"
-msgstr ""
+msgstr "Sjabloon:"
#: 01100200.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id3147530\n"
"help.text"
msgid "Displays the template that was used to create the file."
-msgstr ""
+msgstr "Geeft de sjabloon weer die is gebruikt om het bestand te maken."
#: 01100200.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"hd_id3155342\n"
"help.text"
msgid "Total editing time:"
-msgstr ""
+msgstr "Totale bewerkingstijd:"
#: 01100200.xhp
msgctxt ""
@@ -2998,7 +2998,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
-msgstr ""
+msgstr "Geeft de totale tijd weer dat het bestand geopend is geweest voor bewerking. De bewerkingstijd wordt bijgewerkt wanneer u het bestand opslaat."
#: 01100200.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"hd_id3154046\n"
"help.text"
msgid "Reset Properties"
-msgstr ""
+msgstr "Eigenschappen herstellen"
#: 01100200.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"par_id3156045\n"
"help.text"
msgid "<ahelp hid=\".\">Displays statistics for the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Toont statistieken voor het huidige document.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables:</caseinline><caseinline select=\"CALC\">Sheets:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tabellen: </caseinline><caseinline select=\"CALC\">Bladen: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cells:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cellen</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_01110001\n"
"help.text"
msgid "Select <emph>File - Templates</emph>"
-msgstr ""
+msgstr "Kies <emph>Bestand - Sjablonen</emph>"
#: 01110101.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Save as Template"
-msgstr ""
+msgstr "Opslaan als sjabloon"
#: 01110300.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3160463\n"
"help.text"
msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"Save as Template\">Save as Template</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01110300.xhp\" name=\"Save as Template\">Opslaan als sjabloon</link>"
#: 01110300.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_id3157898\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the current document as a template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slaat het huidige document op als sjabloon.</ahelp>"
#: 01110300.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id01110301\n"
"help.text"
msgid "Select <emph>File - Templates - Save as Template</emph>"
-msgstr ""
+msgstr "Kies <emph>Bestand - Sjablonen - Opslaan als sjabloon</emph>"
#: 01110300.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"hd_id3147226\n"
"help.text"
msgid "Template Name"
-msgstr ""
+msgstr "Sjabloonnaam"
#: 01110300.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name for the template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voer een naam in voor de sjabloon.</ahelp>"
#: 01110300.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"hd_id3147571\n"
"help.text"
msgid "Template Category"
-msgstr ""
+msgstr "Sjabloon-categorie"
#: 01110300.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<ahelp hid=\".\">Select a category in which to save the new template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer een categorie waarin de nieuwe sjabloon wordt opgeslagen.</ahelp>"
#: 01110300.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "Set as default template"
-msgstr ""
+msgstr "Als standaardsjabloon instellen"
#: 01110300.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<ahelp hid=\".\">The new template will be used as the default template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">De nieuwe sjabloon zal als standaardsjabloon gebruikt worden.</ahelp>"
#: 01110400.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Open Template"
-msgstr ""
+msgstr "Open sjabloon"
#: 01110400.xhp
msgctxt ""
@@ -3654,7 +3654,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Open Template\">Open Template</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01110400.xhp\" name=\"Open Template\">Open sjabloon</link>"
#: 01110400.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id01110401\n"
"help.text"
msgid "Select <emph>File - Templates - Open Template</emph>"
-msgstr ""
+msgstr "Kies <emph>Bestand - Sjablonen - Open sjabloon</emph>"
#: 01130000.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_idN109CD\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for presentation documents, choose <link href=\"text/shared/optionen/01070400.xhp\" name=\"Tools - Options - Impress - Print\"><emph>Tools - Options - %PRODUCTNAME Impress - Print</emph></link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Als u de standaardprinteropties van <item type=\"productname\">%PRODUCTNAME</item> voor presentatiedocumenten wilt instellen, kiest u <link href=\"text/shared/optionen/01070400.xhp\" name=\"Extra - Opties - Impress - Afdrukken\"><emph>Extra - Opties - %PRODUCTNAME Impress - Afdrukken</emph></link>. </caseinline></switchinline>"
#: 01130000.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"bm_id3147294\n"
"help.text"
msgid "<bookmark_value>printers; properties</bookmark_value> <bookmark_value>settings; printers</bookmark_value> <bookmark_value>properties; printers</bookmark_value> <bookmark_value>default printer; setting up</bookmark_value> <bookmark_value>printers; default printer</bookmark_value> <bookmark_value>page formats; restriction</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>printers; eigenschappen</bookmark_value> <bookmark_value>instellingen; printers</bookmark_value> <bookmark_value>eigenschappen; printers</bookmark_value> <bookmark_value>standaardprinter; instellen</bookmark_value> <bookmark_value>printers; standaardprinter</bookmark_value> <bookmark_value>paginaformaten; beperking</bookmark_value>"
#: 01140000.xhp
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"hd_id3147294\n"
"help.text"
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer-instellingen</link>"
#: 01140000.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_id3154422\n"
"help.text"
msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"svt/ui/printersetupdialog/PrinterSetupDialog\">Select the default printer for the current document.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"druckereinstellungtext\"><ahelp hid=\"svt/ui/printersetupdialog/PrinterSetupDialog\">Selecteer de standaardprinter voor het huidige document.</ahelp> </variable>"
#: 01140000.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"par_id3148620\n"
"help.text"
msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects."
-msgstr ""
+msgstr "U kunt een kleine vertraging ondervinden wanneer u de standaardprinter voor een document met ingesloten $[officename] OLE-objecten wijzigt."
#: 01140000.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"hd_id3145345\n"
"help.text"
msgid "Printer"
-msgstr ""
+msgstr "Printer"
#: 01140000.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"par_id3145211\n"
"help.text"
msgid "Lists the information that applies to the selected printer."
-msgstr ""
+msgstr "Lijst met informatie van de geselecteerde printer."
#: 01140000.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer."
-msgstr ""
+msgstr "Als de lijst leeg is, moet u een standaardprinter voor uw besturingssysteem installeren. Raadpleeg de online-Help van uw besturingssysteem voor instructies over het installeren en instellen van een standaardprinter."
#: 01140000.xhp
msgctxt ""
@@ -4422,7 +4422,7 @@ msgctxt ""
"hd_id3154381\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#: 01140000.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"par_id3156155\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/name\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/name\">Geeft de geïnstalleerde printers op uw besturingssysteem weer. Wanneer u de standaardprinter wilt wijzigen, selecteert u een printernaam in de lijst.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"hd_id3156153\n"
"help.text"
msgid "Status"
-msgstr ""
+msgstr "Status"
#: 01140000.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_id3150465\n"
"help.text"
msgid "Describes the current status of the selected printer."
-msgstr ""
+msgstr "Beschrijft de huidige status van de geslecteerde printer."
#: 01140000.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"hd_id3154898\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: 01140000.xhp
msgctxt ""
@@ -4462,7 +4462,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "Displays the type of printer that you selected."
-msgstr ""
+msgstr "Toont het type van de geselecteerde printer."
#: 01140000.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Locatie"
#: 01140000.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id3149955\n"
"help.text"
msgid "Displays the port for the selected printer."
-msgstr ""
+msgstr "Toont de poort van de geselecteerde printer."
#: 01140000.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"hd_id3145316\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Notities"
#: 01140000.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_id3155923\n"
"help.text"
msgid "Displays additional information for the printer."
-msgstr ""
+msgstr "Toont aanvullende informatie van de geselecteerde printer."
#: 01140000.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"hd_id3149669\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschappen"
#: 01140000.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_id3149045\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/properties\">Changes the printer settings of your operating system for the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/properties\">Wijzigt de printerinstellingen van uw besturingssysteem voor het huidige document.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id3157322\n"
"help.text"
msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
-msgstr ""
+msgstr "Zorg ervoor dat de layout-optie Liggend of Staand die in het dialoogvenster met printereigenschappen is ingesteld, overeenkomt met het paginaformaat dat u instelt door <emph>Opmaak - Pagina</emph> te kiezen."
#: 01140000.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"hd_id201612110303091265\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Opties"
#: 01140000.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"par_id201612110239454950\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/options\">Opens the <emph>Printer Options</emph> dialog where you can override the global printer options set on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Print</emph> panel for the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/options\">Opent het dialoogvenster <emph>Printer instellen</emph> waar u de globale printerinstellingen voor het huidige document, die zijn ingesteld onder <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Afdrukken</emph> kunt wijzigen.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Selecteer het alinea-opmaakprofiel of overzichtsniveau dat u wilt gerbuiken om het brondocument te scheiden in sub-documenten.</ahelp> Standaard wordt een nieuw document gemaakt voor elk overzichtsniveau 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"hd_id3152425\n"
"help.text"
msgid "Find"
-msgstr ""
+msgstr "Zoeken"
#: 02100000.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to find, or select a previous search from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Voer de tekst in dat u wilt zoeken of kies een vorige zoekopdracht in de lijst.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "Search options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr ""
+msgstr "Zoekopties worden genoemd onder het vak <emph>Vervangen</emph> en in het gedeelte <emph>Overige opties</emph> van het dialoogvenster."
#: 02100000.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"hd_id3154924\n"
"help.text"
msgid "Match case"
-msgstr ""
+msgstr "Hoofdlettergevoelig"
#: 02100000.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Onderscheid maken tussen hoofdletters en kleine letters.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Alleen hele cellen </caseinline><defaultinline>Alleen hele woorden</defaultinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3149579\n"
"help.text"
msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Zoeken naar hele woorden of cellen die identiek zijn aan de zoektekst.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"hd_id3152960\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">All sheets</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Alle bladen</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"par_id3145619\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zoekt in alle bladen van het huidige werkbladbestand.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"hd_id3152551\n"
"help.text"
msgid "Replace"
-msgstr ""
+msgstr "Vervangen"
#: 02100000.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3150506\n"
"help.text"
msgid "Replacement options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr ""
+msgstr "Zoekopties worden vermeld onder het vak <emph>Vervangen</emph> en onder <emph>Andere opties</emph> van het dialoogvenster.."
#: 02100000.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"hd_id301020161412479230\n"
"help.text"
msgid "Find Previous"
-msgstr ""
+msgstr "Vorige zoeken"
#: 02100000.xhp
msgctxt ""
@@ -6118,7 +6118,7 @@ msgctxt ""
"par_id301020161412471558\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/backsearch\">Finds and selects the previous occurrence of the text or format that you are searching for in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/backsearch\">Zoekt en selecteert de vorig voorkomende tekst of opmaak waarnaar u in het document zoekt.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6126,7 +6126,7 @@ msgctxt ""
"hd_id3163821\n"
"help.text"
msgid "Find Next"
-msgstr ""
+msgstr "Volgende zoeken"
#: 02100000.xhp
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you are searching for in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/search\">Zoekt en selecteert de volgend voorkomende tekst of opmaak waarnaar u in het document zoekt.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3145660\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vervangt alle voorkomende tekst of opmaak die u wilt vervangen.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Herhaal deze opdracht totdat alle vervangingen op uw dia zijn gemaakt.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"hd_id3166410\n"
"help.text"
msgid "Other options"
-msgstr ""
+msgstr "Overige opties"
#: 02100000.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Shows more or fewer search options. Click this label again to hide the extended search options.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Geeft meer of minder zoekopties weer. Klik opnieuw op dit label om de uitgebreide zoekopties te verbergen.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "Current selection only"
-msgstr ""
+msgstr "Alleen huidige selectie"
#: 02100000.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_id3150866\n"
"help.text"
msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zoekt alleen in de geselecteerde tekst of cellen.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"hd_id3156192\n"
"help.text"
msgid "Replace backwards"
-msgstr ""
+msgstr "Terugwaards vervangen"
#: 02100000.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/replace_backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/replace_backwards\">De zoekopdracht start op de cursorpositie en gaat terug naar het begin van het bestand.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id8876918\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zoekt naar tekst die is opgemaakt met het opgegeven opmaakprofiel. Selecteer dit keuzevak en selecteer dan een opmaakprofiel in de keuzelijst Zoeken. Selecteer een opmaakprofiel in de keuzelijst Vervangen om een vervangend opmaakprofiel op te geven.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6262,7 +6262,7 @@ msgctxt ""
"hd_id3153524\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraph Styles / Including Styles</caseinline><caseinline select=\"CALC\">Cell Styles</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Alinea-opmaakprofielen / Inclusief Opmaakprofielen</caseinline><caseinline select=\"CALC\">Celopmaakprofielen</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id3155103\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Find</emph> list. To specify a replacement style, select a style from the <emph>Replace</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Zoekt naar tekst die is opgemaakt met het opgegeven opmaakprofiel. Selecteer dit selectievakje en dan een opmaakprofiel in de keuzelijst <emph>Zoeken</emph>. Als u een vervangend opmaakprofiel wilt opgeven, selecteert u een opmaakprofiel in de keuzelijst <emph>Vervangen</emph>.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6278,7 +6278,7 @@ msgctxt ""
"par_idN109CC\n"
"help.text"
msgid "After you select the attributes that you want to search for, the <emph>Paragraph Styles</emph> box in the <emph>Other options</emph> area of the %PRODUCTNAME Writer <emph>Find & Replace</emph> dialog changes to <emph>Including Styles</emph>."
-msgstr ""
+msgstr "Nadat u de attributen hebt geselecteerd waarnaar u wilt zoeken, verandert het vak <emph>Opmaakprofielen</emph> in het gebied <emph>Andere opties</emph> van het dialoogvenster <emph>Zoeken en vervangen </emph>in %PRODUCTNAME Writer in <emph>Inclusief opmaakprofielen</emph>."
#: 02100000.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"hd_id3147348\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attributen</link></caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"hd_id3155854\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Opmaak\">Opmaak</link></caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6382,7 +6382,7 @@ msgctxt ""
"hd_id3154188\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Geen opmaak</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3159155\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Find</emph> or the <emph>Replace</emph> box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Klik in het vak <emph>Zoeken</emph> of in het vak <emph>Vervangen</emph>, en klik vervolgens op deze knop om de zoekcriteria, op basis van de opmaak, te verwijderen.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6398,7 +6398,7 @@ msgctxt ""
"par_id1334269\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Find or the Replace box, and then click this button to remove the search criteria based on formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klik in de keuzelijst Zoeken of Vervangen en klik vervolgens op deze knop om de op opmaak gebaseerde zoekcriteria te verwijderen.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6406,7 +6406,7 @@ msgctxt ""
"par_id3150337\n"
"help.text"
msgid "The search criteria for formatting attributes are displayed under the <emph>Find</emph> or the <emph>Replace</emph> box."
-msgstr ""
+msgstr "De zoekcriteria voor opmaakattributen worden weergegeven onder het vak <emph>Zoeken</emph> of het vak <emph>Vervangen</emph>."
#: 02100000.xhp
msgctxt ""
@@ -6414,7 +6414,7 @@ msgctxt ""
"hd_id3153004\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Direction</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zoekrichting</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6430,7 +6430,7 @@ msgctxt ""
"hd_id3155064\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Rows</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Rijen</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6438,7 +6438,7 @@ msgctxt ""
"par_id301020161457217894\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from left to right across the rows.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zoekt van links naar rechts door de rijen.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6454,7 +6454,7 @@ msgctxt ""
"hd_id3156277\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Columns</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kolommen</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6462,7 +6462,7 @@ msgctxt ""
"par_id3145207\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zoekt van boven naar beneden door de kolommen.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6486,7 +6486,7 @@ msgctxt ""
"hd_id3146925\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formules</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"par_id301020161448509633\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zoekt naar de opgegeven tekens in formules en in vast (niet berekende) waarden. Bijvoorbeeld, u kunt zoeken naar formules die 'SOM' bevatten.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6510,7 +6510,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Values</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Waarden</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6534,7 +6534,7 @@ msgctxt ""
"hd_id3145650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Notes</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Notities</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6758,7 +6758,7 @@ msgctxt ""
"par_id3153700\n"
"help.text"
msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Find</emph> and <emph>Replace</emph> boxes, and then perform a search and replace."
-msgstr ""
+msgstr "Staat voor een regeleinde dat is ingevoegd met Shift+Enter. Als u een regeleinde wilt veranderen in een alinea-einde, voert u <emph>\\n</emph> in de vakken <emph>Zoeken</emph> en <emph>Vervangen</emph> in en voert u vervolgens de zoek- en vervangbewerking uit."
#: 02100001.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id9262672\n"
"help.text"
msgid "\\n in the <emph>Find</emph> text box stands for a line break that was inserted with the Shift+Enter key combination."
-msgstr ""
+msgstr "\\n in het tekstvak <emph>Zoeken</emph> staat voor een regeleinde dat werd ingevoegd met de toetscombinatie Shift+Enter."
#: 02100001.xhp
msgctxt ""
@@ -6774,7 +6774,7 @@ msgctxt ""
"par_id2366100\n"
"help.text"
msgid "\\n in the <emph>Replace</emph> text box stands for a paragraph break that can be entered with the Enter or Return key."
-msgstr ""
+msgstr "\\n in het tekstvak <emph>Vervangen</emph> staat voor een alineaeinde dat kan worden ingevoegd met de toets Enter of Return."
#: 02100001.xhp
msgctxt ""
@@ -6790,7 +6790,7 @@ msgctxt ""
"par_id3157809\n"
"help.text"
msgid "Represents a tab. You can also use this expression in the <emph>Replace</emph> box."
-msgstr ""
+msgstr "Staat voor een tabstop. U kunt deze expressie ook gebruiken in het vak <emph>Vervangen</emph>."
#: 02100001.xhp
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"par_id3153961\n"
"help.text"
msgid "Adds the string that was found by the search criteria in the <emph>Find</emph> box to the term in the <emph>Replace</emph> box when you make a replacement."
-msgstr ""
+msgstr "Voegt de tekenreeks die op basis van de zoekcriteria in het vak <emph>Zoeken</emph> is gevonden, aan de term in het vak <emph>Vervangen</emph> toe wanneer u vervangingen uitvoert."
#: 02100001.xhp
msgctxt ""
@@ -6862,7 +6862,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "For example, if you enter \"window\" in the <emph>Find</emph> box and \"&frame\" in the <emph>Replace</emph> box, the word \"window\" is replaced with \"windowframe\"."
-msgstr ""
+msgstr "Als u bijvoorbeeld \"venster\" in het vak <emph>Zoeken</emph> invoert en \"&rand\" in het vak <emph>Vervangen</emph> invoert, wordt het woord \"venster\" vervangen door \"vensterrand\"."
#: 02100001.xhp
msgctxt ""
@@ -6870,7 +6870,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "You can also enter an \"&\" in the <emph>Replace</emph> box to modify the <emph>Attributes</emph> or the <emph>Format</emph> of the string found by the search criteria."
-msgstr ""
+msgstr "U kunt ook het teken \"&\" in het vak <emph>Vervangen</emph> invoeren om de <emph>attributen</emph> of de <emph>Opmaak</emph> te wijzigen van de tekenreeks die op basis van de zoekcriteria wordt gevonden."
#: 02100001.xhp
msgctxt ""
@@ -7062,7 +7062,7 @@ msgctxt ""
"par_id2701803\n"
"help.text"
msgid "In the <emph>Find</emph> box:"
-msgstr ""
+msgstr "In het vak <emph>Zoeken</emph>:"
#: 02100001.xhp
msgctxt ""
@@ -7094,7 +7094,7 @@ msgctxt ""
"par_id9200109\n"
"help.text"
msgid "In the <emph>Replace</emph> box:"
-msgstr ""
+msgstr "In het vak <emph>Vervangen</emph>:"
#: 02100001.xhp
msgctxt ""
@@ -7358,7 +7358,7 @@ msgctxt ""
"par_id3146856\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Find terms that are similar to the <emph>Find</emph> text. Select this checkbox, and then click the <emph>Similarities</emph> button to define the similarity options.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">De termen zoeken die lijken op de tekst in <emph>Zoeken</emph>. Selecteer dit vakje en klik vervolgens op de knop <emph>...</emph> om de gewenste opties te specificeren.</ahelp>"
#: 02100100.xhp
msgctxt ""
@@ -7366,7 +7366,7 @@ msgctxt ""
"par_id3149551\n"
"help.text"
msgid "For example, a similarity search can find words that differ from the <emph>Find</emph> text by two characters."
-msgstr ""
+msgstr "Zo kunnen bij het zoeken op overeenkomsten woorden gevonden worden die twee tekens van de tekst in <emph>Zoeken</emph> verschillen."
#: 02100100.xhp
msgctxt ""
@@ -7414,7 +7414,7 @@ msgctxt ""
"par_id3152551\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Voer in hoeveel tekens in de zoekterm verwisseld mogen worden.</ahelp> Als u hier bijvoorbeeld twee invoert, worden 'groet' en 'snoet' als gelijk beschouwd."
#: 02100100.xhp
msgctxt ""
@@ -7486,7 +7486,7 @@ msgctxt ""
"par_id3153331\n"
"help.text"
msgid "<variable id=\"attributetext\"><ahelp hid=\"cui/ui/searchattrdialog/SearchAttrDialog\">Choose the text attributes that you want to search for. For example, if you search for the <emph>Font</emph> attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found. </ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"attributetext\"><ahelp hid=\"cui/ui/searchattrdialog/SearchAttrDialog\">Kies de tekstattributen waarnaar u wilt zoeken. Als u bijvoorbeeld wilt zoeken naar het attribuut <emph>Lettertype</emph>, wordt alle tekst gevonden waarvoor het standaardlettertype niet wordt gebruikt. Alle tekst met een direct gecodeerd lettertypeattribuut en alle tekst waarvoor een opmaakprofiel het lettertypeattribuut wijzigt, wordt gevonden. </ahelp></variable>"
#: 02100200.xhp
msgctxt ""
@@ -7502,7 +7502,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Select the attributes that you want to search for."
-msgstr ""
+msgstr "Selecteer de attributen waar u naar wilt zoeken."
#: 02100200.xhp
msgctxt ""
@@ -8038,7 +8038,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<variable id=\"formattext\"><ahelp hid=\"svx/ui/findreplacedialog/format\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"formattext\"><ahelp hid=\"svx/ui/findreplacedialog/format\">Zoekt specifieke tekstopmaakfuncties , zoals lettertypen, teksteffecten en tekstverloopkenmerken.</ahelp></variable>"
#: 02100300.xhp
msgctxt ""
@@ -8046,7 +8046,7 @@ msgctxt ""
"par_id3145383\n"
"help.text"
msgid "The search criteria for attributes are listed below the <emph>Find</emph> box."
-msgstr ""
+msgstr "De zoekcriteria voor attributen worden onder het vak <emph>Zoeken</emph> weergegeven."
#: 02100300.xhp
msgctxt ""
@@ -8054,7 +8054,7 @@ msgctxt ""
"par_id3150466\n"
"help.text"
msgid "You do not need to specify a search text in the <emph>Find</emph> box when you search and replace formatting."
-msgstr ""
+msgstr "U hoeft geen zoektekst in het vak <emph>Zoeken</emph> te specificeren wanneer u opmaak zoekt en vervangt."
#: 02100300.xhp
msgctxt ""
@@ -8062,7 +8062,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "To define a replacement format, click in the <emph>Replace</emph> box, and then click the <emph>Format</emph> button."
-msgstr ""
+msgstr "Wanneer u een vervangende opmaak wilt definiëren, klikt u in het vakje <emph>Vervangen</emph> en vervolgens op de knop <emph>Opmaak</emph>."
#: 02100300.xhp
msgctxt ""
@@ -8142,7 +8142,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id3159166\n"
"help.text"
msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id3149666\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Slaat een kopie van de inhoud van de gekoppelde bestanden in het hoofddocument op. Zo zorgt u ervoor dat de huidige inhoud beschikbaar blijft wanneer de gekoppelde bestanden niet kunnen worden opgeroepen.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"par_id3155852\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Verplaatst de selectie één plaats omlaag in de Navigator-lijst.</ahelp> U kunt items ook verplaatsen door ze in de lijst te slepen en neer te zetten. Als u een tekstsectie naar een ander tekstsectie verplaatst, worden deze samengevoegd."
#: 02110000.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"par_id3154790\n"
"help.text"
msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8478,7 +8478,7 @@ msgctxt ""
"par_id3146927\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Verplaatst de selectie één plaats omhoog in de Navigator-lijst.</ahelp> U kunt items ook verplaatsen door ze in de lijst te slepen en neer te zetten. Als u een tekstsectie naar een ander tekstsectie verplaatst, worden deze samengevoegd."
#: 02110000.xhp
msgctxt ""
@@ -8486,7 +8486,7 @@ msgctxt ""
"par_id3156178\n"
"help.text"
msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Pictogram</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8966,7 +8966,7 @@ msgctxt ""
"par_id3149031\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/InsertFloatingFrameDialog\">Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/InsertFloatingFrameDialog\">Wijzigt de eigenschappen van het geselecteerde zwevende kader. Zwevende kaders werken goed wanneer deze een HTML-document bevatten en wanneer deze worden ingevoegd in een ander HTML-document.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8982,7 +8982,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore ( _ ).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Voer een naam voor het zwevende kader in. De naam mag geen spaties of speciale tekens bevatten, en mag niet met een onderstrepingsteken ( _ ) beginnen.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_id3156414\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edurl\">Enter the path and the name of the file that you want to display in the floating frame. You can also click the <emph>Browse</emph> button and locate the file that you want to display.</ahelp> For example, you can enter:"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edurl\">Voer het pad en de naam van het bestand in dat u in het zwevende kader wilt weergeven. U kunt ook op de knop <emph>...</emph> klikken en het bestand zoeken dat u wilt weergeven.</ahelp> U kunt bijvoorbeeld het volgende invoeren:"
#: 02210101.xhp
msgctxt ""
@@ -9030,7 +9030,7 @@ msgctxt ""
"par_id3155355\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/buttonbrowse\">Locate the file that you want to display in the selected floating frame, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/buttonbrowse\">Zoek het bestand dat u in het geselecteerde zwevende kader wilt weergeven en klik vervolgens op <emph>Openen</emph>.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9038,7 +9038,7 @@ msgctxt ""
"hd_id3146957\n"
"help.text"
msgid "Scroll Bar"
-msgstr ""
+msgstr "Schuifbalk"
#: 02210101.xhp
msgctxt ""
@@ -9062,7 +9062,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaron\">Displays the scrollbar for the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaron\">Geeft de schuifbalk weer voor het zwevende frame.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9078,7 +9078,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaroff\">Hides the scrollbar for the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaroff\">Verbergt de schuifbalk voor het zwevende frame.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9094,7 +9094,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbarauto\">Mark this option if the currently active floating frame can have a scrollbar when needed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbarauto\">Markeer deze optie als het actieve zwevende frame een schuifbalk kan bevatten wanneer dit nodig is.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9126,7 +9126,7 @@ msgctxt ""
"par_id3159147\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/borderon\">Displays the border of the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/borderon\">Toont de de randen van het zwevende frame.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9142,7 +9142,7 @@ msgctxt ""
"par_id3156329\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/borderoff\">Hides the border of the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/borderoff\">Verbergt de randen van het zwevende frame.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9150,7 +9150,7 @@ msgctxt ""
"hd_id3148563\n"
"help.text"
msgid "Spacing to Contents"
-msgstr ""
+msgstr "Afstand tot inhoud"
#: 02210101.xhp
msgctxt ""
@@ -9174,7 +9174,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/width\">Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/width\">Voer de hoeveelheid horizontale ruimte in die u tussen de rechter- en linkerranden van het zwevende kader en de inhoud van het kader wilt vrijlaten. De documenten binnen en buiten het zwevende kader moeten HTML-documenten zijn.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Applies the default horizontal spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Past de standaard horizontale afstand toe.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9206,7 +9206,7 @@ msgctxt ""
"par_id3149670\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/height\">Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/height\">Voer de hoeveelheid verticale ruimte in die u tussen de boven- en onderrand van het zwevende kader en de inhoud van het kader wilt vrijlaten. De documenten binnen en buiten het zwevende kader moeten HTML-documenten zijn.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9214,7 +9214,7 @@ msgctxt ""
"hd_id3150866\n"
"help.text"
msgid "Default"
-msgstr ""
+msgstr "Standaard"
#: 02210101.xhp
msgctxt ""
@@ -9222,7 +9222,7 @@ msgctxt ""
"par_id3150401\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultheight\">Applies the default vertical spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultheight\">Past de standaard verticale afstand toe.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -9998,7 +9998,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Record Changes"
-msgstr ""
+msgstr "Wijzigingen bijhouden"
#: 02230100.xhp
msgctxt ""
@@ -10006,7 +10006,7 @@ msgctxt ""
"hd_id3150758\n"
"help.text"
msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record Changes\">Record Changes</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02230100.xhp\" name=\"Record Changes\">Wijzigingen bijhouden</link>"
#: 02230100.xhp
msgctxt ""
@@ -10022,7 +10022,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Edit - Track Changes - Show Changes</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Als u <emph>Bewerken - Wijzigingen bijhouden - Weergeven</emph> kiest, worden de regels met gewijzigde tekst aangegeven door een verticale lijn in de linker paginamarge. U kunt de eigenschappen van de verticale lijn en de andere opmaakelementen instellen met <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Wijzigingen</emph></link> in het dialoogvenster Opties.</caseinline></switchinline>"
#: 02230100.xhp
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcaction\">Lists the changes that were made in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcaction\">Geeft een lijst met wijzigingen die in het document gemaakt zijn.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"par_id3153178\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcauthor\">Lists the user who made the change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcauthor\">Toont de gebruiker die de wijzigingen gemaakt heeft.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10582,7 +10582,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdate\">Lists the date and time that the change was made.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdate\">Toont de datum en tijd waarop de wijziging gemaakt is.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calccomment\">Lists the comments that are attached to the change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calccomment\">Toont de notities die aan de wijzigingen zijn gekoppeld.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10710,7 +10710,7 @@ msgctxt ""
"par_id3153210\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcedit\">Edit the comment for the selected change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcedit\">Bewerk de notitie voor de geselecteerde wijziging.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10742,7 +10742,7 @@ msgctxt ""
"par_id3151280\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writeraction\">Sorts the list according to the type of change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writeraction\">Sorteert de lijst op volgorde van het type wijziging.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10758,7 +10758,7 @@ msgctxt ""
"par_id3149960\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerauthor\">Sorts the list according to the Author.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerauthor\">Sorteert de lijst op volgorde van de auteur.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3153223\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerdate\">Sorts the list according to the date and time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerdate\">Sorteert de lijst op volgorde van de datum en tijd.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"par_id3145595\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerdesc\">Sorts the list according to the comments that are attached to the changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerdesc\">Sorteert de lijst op volgorde van de notities die aan de wijzigingen zijn gekoppeld.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3157976\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcposition\">Sorts the list in a descending order according to the position of the changes in the document. This is the default sorting method.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcposition\">Sorteert de lijst in een aflopende volgorde van de positie van de wijzigingen in het document. Dit is de standaard sorteermethode.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtert de lijst met wijzigingen op basis van de datum en tijd die u opgeeft.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10870,7 +10870,7 @@ msgctxt ""
"par_id3143270\n"
"help.text"
msgid "<ahelp hid=\".\">Enters the current date and time into the corresponding boxes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voert de huidige datum en tijd in de overeenkomstige vakjes in.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtert de lijst met wijzigingen op basis van de naam van de auteur die in de lijst geselecteerd is.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10902,7 +10902,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\".\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\".\">Filtert de lijst met wijzigingen op basis van het celbereik dat u opgeeft. Als u celbereik in het blad wilt selecteren, klikt u op de knop <emph>Verwijzing instellen</emph> (<emph>...</emph>).</ahelp></caseinline></switchinline>"
#: 02230402.xhp
msgctxt ""
@@ -10926,7 +10926,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "<image id=\"img_id3154138\" src=\"media/helpimg/starmath/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154138\" src=\"media/helpimg/starmath/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Pictogram</alt></image>"
#: 02230402.xhp
msgctxt ""
@@ -10974,7 +10974,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\".\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\".\">Filtert de lijst met wijzigingen op basis van het type wijziging dat in het vak <emph>Actie</emph> is geselecteerd.</ahelp></caseinline></switchinline>"
#: 02230402.xhp
msgctxt ""
@@ -10990,7 +10990,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtert de opmerkingen van de wijzigingen op basis van de ingevoerde sleutelwoorden. </ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/zoommenu/optimal\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at the moment the command is started.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/zoommenu/optimal\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Past de weergave aan de breedte van het celgebied aan dat is geselecteerd op het moment van het starten van de opdracht. </caseinline><defaultinline> Past de weergave aan de breedte van de tekst in het document aan op .</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11438,7 +11438,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/zoommenu/page\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/zoommenu/page\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Past de weergave aan de breedte en hoogte van het celgebied aan dat is geselecteerd op het moment van het starten van de opdracht. </caseinline><defaultinline> Toont de gehele pagina op uw scherm.</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3143231\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/zoommenu/width\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/zoommenu/width\">Geeft de complete breedte van de documentpagina weer. De boven- en onderranden van de pagina kunnen onzichtbaar zijn.</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -12398,7 +12398,7 @@ msgctxt ""
"par_id3154288\n"
"help.text"
msgid "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Click the special character(s) that you want to insert, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Klik op het/de speciale teken(s) dat/die u wilt invoegen en klik dan op <emph>Invoegen</emph>.</ahelp>"
#: 04100000.xhp
msgctxt ""
@@ -13070,7 +13070,7 @@ msgctxt ""
"par_id083120160609088310\n"
"help.text"
msgid "<image id=\"img_id083120160608495768\" src=\"media/screenshots/cui/ui/charnamepage/CharNamePage.png\" width=\"9.0417in\" height=\"6.9791in\"><alt id=\"alt_id083120160608495768\">Font dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120160608495768\" src=\"media/screenshots/cui/ui/charnamepage/CharNamePage.png\" width=\"9.0417in\" height=\"6.9791in\"><alt id=\"alt_id083120160608495768\">Dialoogvenster Lettertype</alt></image>"
#: 05020100.xhp
msgctxt ""
@@ -13782,7 +13782,7 @@ msgctxt ""
"hd_id3153971\n"
"help.text"
msgid "Denominator places"
-msgstr ""
+msgstr "Positie van de noemer"
#: 05020300.xhp
msgctxt ""
@@ -13790,7 +13790,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/denominatored\">With fraction format, enter the number of places for the denominator that you want to display.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/denominatored\">Vul, bij de opmaak Deelteken, het aantal plaatsen in waarmee u de noemer wilt weergeven.</ahelp>"
#: 05020300.xhp
msgctxt ""
@@ -13870,7 +13870,7 @@ msgctxt ""
"par_id3159156\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/numberingformatpage/formatted\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/formatted\">Geeft de getalnotatiecode voor de geselecteerde opmaak. U kunt ook een aangepast formaat invoeren.</ahelp> De volgende opties zijn alleen beschikbaar voor gebruikergedefinieerde getalnotaties."
#: 05020300.xhp
msgctxt ""
@@ -13942,7 +13942,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>: <link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">custom format codes</link> defined by user."
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Getalnotatiecodes</link>: <link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Gebruikersgedefinieerd</link> gedefinieerd door de gebruiker."
#: 05020301.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"bm_id3153514\n"
"help.text"
msgid "<bookmark_value>format codes; numbers</bookmark_value> <bookmark_value>conditions; in number formats</bookmark_value> <bookmark_value>number formats; codes</bookmark_value> <bookmark_value>currency formats</bookmark_value> <bookmark_value>formats;of currencies/date/time</bookmark_value> <bookmark_value>numbers; date, time and currency formats</bookmark_value> <bookmark_value>Euro; currency formats</bookmark_value> <bookmark_value>date formats</bookmark_value> <bookmark_value>times, formats</bookmark_value> <bookmark_value>percentages, formats</bookmark_value> <bookmark_value>scientific notation, formats</bookmark_value> <bookmark_value>engineering notation, formats</bookmark_value> <bookmark_value>fraction, formats</bookmark_value> <bookmark_value>native numeral</bookmark_value> <bookmark_value>LCID, extended</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>opmaakcodes; getallen</bookmark_value> <bookmark_value>voorwaarden; bij getalopmaak</bookmark_value> <bookmark_value>getalnotaties; codes</bookmark_value> <bookmark_value>valuta opmaak</bookmark_value> <bookmark_value>opmaak;van valuta/datum/tiid</bookmark_value> <bookmark_value>getallen; datum, tijd en valutaopmaak</bookmark_value> <bookmark_value>Euro; valutaopmaak</bookmark_value> <bookmark_value>datumopmaak</bookmark_value> <bookmark_value>tijd, opmaak</bookmark_value> <bookmark_value>percentages, opmaak</bookmark_value> <bookmark_value>wetenschappelijke notatie, opmaak</bookmark_value> <bookmark_value>technische notitie, opmaak</bookmark_value> <bookmark_value>deling, opmaak</bookmark_value> <bookmark_value>betalingssysteem</bookmark_value> <bookmark_value>LCID, uitgebreid</bookmark_value>"
#: 05020301.xhp
msgctxt ""
@@ -13966,7 +13966,7 @@ msgctxt ""
"hd_id3153514\n"
"help.text"
msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Getalnotatiecodes</link></variable>"
#: 05020301.xhp
msgctxt ""
@@ -13974,7 +13974,7 @@ msgctxt ""
"par_id3150467\n"
"help.text"
msgid "Number format codes can consist of up to four sections separated by a semicolon (;)."
-msgstr ""
+msgstr "Getalnotatiecodes kunnen uit maximaal vier gedeelten bestaan, die worden gescheiden door puntkomma's (;)."
#: 05020301.xhp
msgctxt ""
@@ -13982,7 +13982,7 @@ msgctxt ""
"par_id3150146\n"
"help.text"
msgid "In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values."
-msgstr ""
+msgstr "In een getalnotatiecode met twee gedeelten is het eerste gedeelte van toepassing op positieve waarden en nul, en is het tweede gedeelte van toepassing op de negatieve waarden."
#: 05020301.xhp
msgctxt ""
@@ -13990,7 +13990,7 @@ msgctxt ""
"par_id3158442\n"
"help.text"
msgid "In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero."
-msgstr ""
+msgstr "In een getalnotatiecode met drie gedeelten is het eerste gedeelte van toepassing op positieve waarden, het tweede gedeelte op negatieve waarden en het derde gedeelte op de waarde nul."
#: 05020301.xhp
msgctxt ""
@@ -13998,7 +13998,7 @@ msgctxt ""
"par_id3155069\n"
"help.text"
msgid "You can also assign conditions to the three sections, so that the format is only applied if a condition is met."
-msgstr ""
+msgstr "U kunt ook voorwaarden toewijzen aan de drie gedeelten, zodat de notatie alleen wordt toegepast als aan een voorwaarde wordt voldaan."
#: 05020301.xhp
msgctxt ""
@@ -14006,7 +14006,7 @@ msgctxt ""
"par_id3155070\n"
"help.text"
msgid "Fourth section applies if the content is not a value, but some text. Content is represented by an at sign (@)."
-msgstr ""
+msgstr "Vierde gedeelte is van toepassing als de inhoud niet een waarde is, maar een bepaalde tekst. Inhoud wordt weergegeven door een at-teken (@)."
#: 05020301.xhp
msgctxt ""
@@ -14014,7 +14014,7 @@ msgctxt ""
"hd_id3151262\n"
"help.text"
msgid "Decimal Places and Significant Digits"
-msgstr ""
+msgstr "Decimalen en significante cijfers"
#: 05020301.xhp
msgctxt ""
@@ -14022,7 +14022,7 @@ msgctxt ""
"par_id3153624\n"
"help.text"
msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero."
-msgstr ""
+msgstr "Gebruik de nul (0) of het getalteken (#) of het vraagteken (?) als tijdelijke aanduidingen voor getallen in de getalnotatiecode. Met (#) worden alleen significante cijfers weergegeven, terwijl met (0) nullen worden weergegeven als er minder cijfers in het getal worden weergegeven dan in de getalnotatie. (?) werkt hetzelfde als (#), maar voegt een spatie toe om de decimale uitlijning te behouden wanneer er een verborgen niet-significante nul staat."
#: 05020301.xhp
msgctxt ""
@@ -14030,7 +14030,7 @@ msgctxt ""
"par_id3153323\n"
"help.text"
msgid "Use question marks (?), zeroes (0) or number signs (#) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
-msgstr ""
+msgstr "Gebruik vraagtekens (?), nullen (0) of leestekens (#) om het aantal cijfers aan te geven dat in de teller en noemer van een breuk moet worden opgenomen. Breuken die niet voldoen aan het gedefinieerde patroon, worden weergegeven als drijvende-kommagetallen."
#: 05020301.xhp
msgctxt ""
@@ -14038,7 +14038,7 @@ msgctxt ""
"par_id3148440\n"
"help.text"
msgid "If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:"
-msgstr ""
+msgstr "Als een getal rechts van het decimale scheidingsteken meer cijfers bevat dan beschikbare tijdelijke aanduidingen in de notatie, wordt het getal dienovereenkomstig afgerond. Als een getal links van het decimale scheidingsteken meer cijfers bevat dan beschikbare tijdelijke aanduidingen in de notatie, wordt het gehele getal weergegeven. Gebruik de volgende lijst als leidraad bij het gebruik van tijdelijke aanduidingen wanneer u getalnotatiecodes maakt:"
#: 05020301.xhp
msgctxt ""
@@ -14046,7 +14046,7 @@ msgctxt ""
"par_id3150902\n"
"help.text"
msgid "Placeholders"
-msgstr ""
+msgstr "Plaatsaanduiders"
#: 05020301.xhp
msgctxt ""
@@ -14054,7 +14054,7 @@ msgctxt ""
"par_id3157896\n"
"help.text"
msgid "Explanation"
-msgstr ""
+msgstr "Uitleg"
#: 05020301.xhp
msgctxt ""
@@ -14062,7 +14062,7 @@ msgctxt ""
"par_id3145090\n"
"help.text"
msgid "Does not display extra zeros."
-msgstr ""
+msgstr "Geen extra nullen weergeven."
#: 05020301.xhp
msgctxt ""
@@ -14070,7 +14070,7 @@ msgctxt ""
"par_id3145091\n"
"help.text"
msgid "Displays space characters instead of extra zeros."
-msgstr ""
+msgstr "Extra spaties weergeven in plaats van extra nullen."
#: 05020301.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "0 (Zero)"
-msgstr ""
+msgstr "0 (nul)"
#: 05020301.xhp
msgctxt ""
@@ -14086,7 +14086,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "Displays extra zeros if the number has less places than zeros in the format."
-msgstr ""
+msgstr "Extra nullen weergeven als het getal minder ruimte heeft dan nullen in de notatie."
#: 05020301.xhp
msgctxt ""
@@ -14102,7 +14102,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "Number Format"
-msgstr ""
+msgstr "Getalopmaak"
#: 05020301.xhp
msgctxt ""
@@ -14110,7 +14110,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Format Code"
-msgstr ""
+msgstr "Opmaakcode"
#: 05020301.xhp
msgctxt ""
@@ -14118,7 +14118,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "3456.78 as 3456.8"
-msgstr ""
+msgstr "3456,78 als 3456,8"
#: 05020301.xhp
msgctxt ""
@@ -14126,7 +14126,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "9.9 as 9.900"
-msgstr ""
+msgstr "9,9 als 9,900"
#: 05020301.xhp
msgctxt ""
@@ -14134,7 +14134,7 @@ msgctxt ""
"par_id3147077\n"
"help.text"
msgid "13 as 13.0 and 1234.567 as 1234.57"
-msgstr ""
+msgstr "13 als 13,0 en 1234,567 als 1234,57"
#: 05020301.xhp
msgctxt ""
@@ -14142,7 +14142,7 @@ msgctxt ""
"par_id3149578\n"
"help.text"
msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
-msgstr ""
+msgstr "5,75 als 5 3/4 en 6,3 als 6 3/10"
#: 05020301.xhp
msgctxt ""
@@ -14150,7 +14150,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid ".5 as 0.5"
-msgstr ""
+msgstr ",5 als 0,5"
#: 05020301.xhp
msgctxt ""
@@ -14158,7 +14158,7 @@ msgctxt ""
"par_id3156153\n"
"help.text"
msgid ".5 as 0.5   (with two extra spaces at the end)"
-msgstr ""
+msgstr ",5 als 0,5 (met twee extra spaties aan het eind)"
#: 05020301.xhp
msgctxt ""
@@ -14166,7 +14166,7 @@ msgctxt ""
"hd_id3149276\n"
"help.text"
msgid "Thousands Separator"
-msgstr ""
+msgstr "Duizendtal scheidingsteken"
#: 05020301.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"par_id3154380\n"
"help.text"
msgid "Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000 for each separator. The examples below use comma as thousands separator:"
-msgstr ""
+msgstr "Afhankelijk van de taalinstelling kunt u een komma, een punt of een spatie als scheidingsteken voor duizendtallen gebruiken. U kunt het scheidingsteken ook gebruiken om de grootte van het getal, dat wordt weergegeven, met een veelvoud van of 1000 te verkleinen. De voorbeelden hieronder gebruiken een komma als scheidingsteken voor duizendtallen:"
#: 05020301.xhp
msgctxt ""
@@ -14182,7 +14182,7 @@ msgctxt ""
"par_id3154905\n"
"help.text"
msgid "Number Format"
-msgstr ""
+msgstr "Getalopmaak"
#: 05020301.xhp
msgctxt ""
@@ -14190,7 +14190,7 @@ msgctxt ""
"par_id3150822\n"
"help.text"
msgid "Format Code"
-msgstr ""
+msgstr "Opmaakcode"
#: 05020301.xhp
msgctxt ""
@@ -14198,7 +14198,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "15000 as 15,000"
-msgstr ""
+msgstr "15000 als 15.000"
#: 05020301.xhp
msgctxt ""
@@ -14206,7 +14206,7 @@ msgctxt ""
"par_id3154935\n"
"help.text"
msgid "16000 as 16"
-msgstr ""
+msgstr "16000 als 16"
#: 05020301.xhp
msgctxt ""
@@ -14214,7 +14214,7 @@ msgctxt ""
"hd_id3154836\n"
"help.text"
msgid "Including Text in Number Format Codes"
-msgstr ""
+msgstr "Tekst opnemen in getalnotatiecodes"
#: 05020301.xhp
msgctxt ""
@@ -14222,7 +14222,7 @@ msgctxt ""
"hd_id3150398\n"
"help.text"
msgid "Text and Numbers"
-msgstr ""
+msgstr "Tekst en getallen"
#: 05020301.xhp
msgctxt ""
@@ -14238,7 +14238,7 @@ msgctxt ""
"hd_id3148979\n"
"help.text"
msgid "Text and Text"
-msgstr ""
+msgstr "Tekst en tekst"
#: 05020301.xhp
msgctxt ""
@@ -14246,7 +14246,7 @@ msgctxt ""
"par_id3153338\n"
"help.text"
msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
-msgstr ""
+msgstr "Als u tekst wilt opnemen in een getalnotatie die wordt toegepast op een cel die mogelijk tekst bevat, plaatst u de tekst tussen dubbele aanhalingstekens (\" \"), gevolgd door een apestaartje (@). Voer bijvoorbeeld <emph>\"Totaal voor \"@</emph> in als u de tekst \"Totaal voor december\" wilt weergeven."
#: 05020301.xhp
msgctxt ""
@@ -14254,7 +14254,7 @@ msgctxt ""
"hd_id3154330\n"
"help.text"
msgid "Spaces"
-msgstr ""
+msgstr "Ruimtes"
#: 05020301.xhp
msgctxt ""
@@ -14262,7 +14262,7 @@ msgctxt ""
"par_id3156294\n"
"help.text"
msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
-msgstr ""
+msgstr "Als u een teken wilt gebruiken om de breedte van een spatie in de getalnotatie te definiëren, typt u het onderstrepingsteken ( _ ) gevolgd door het gewenste teken. De breedte van de spatie is afhankelijk van de breedte van het gekozen teken. Met het teken <emph>_M</emph> wordt bijvoorbeeld een bredere spatie gemaakt dan met het teken <emph>_i</emph>."
#: 05020301.xhp
msgctxt ""
@@ -14270,7 +14270,7 @@ msgctxt ""
"par_id3156295\n"
"help.text"
msgid "To fill free space with a given character, use an asterisk (*) followed by this character. For instance:"
-msgstr ""
+msgstr "Gebruik een asterisk (*) gevolgd door een opgegeven teken om een vrije ruimte met een bepaald teken te vullen. Bijvoorbeeld:"
#: 05020301.xhp
msgctxt ""
@@ -14278,7 +14278,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "will display integer value (0) preceded by as many as needed backslash characters (\\) to fill column width. For accounting representation, you may left align currency symbol with a format similar to:"
-msgstr ""
+msgstr "zal de integerwaarde (0) tonen voorafgegaan door zoveel backslash-tekens (\\) als nodig om de kolombreedte te vullen. Voor boekhoudkundige toepassing, kunt u het valutasymbool links uitlijnen met een opmaak, die gelijk is aan:"
#: 05020301.xhp
msgctxt ""
@@ -14286,7 +14286,7 @@ msgctxt ""
"hd_id3155994\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Kleur"
#: 05020301.xhp
msgctxt ""
@@ -14294,7 +14294,7 @@ msgctxt ""
"par_id3156423\n"
"help.text"
msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:"
-msgstr ""
+msgstr "Als u de kleur wilt instellen van een gedeelte van een notatie code voor een getal, voegt u een van de volgende kleurnamen tussen vierkante haken in [ ]:"
#: 05020301.xhp
msgctxt ""
@@ -14302,7 +14302,7 @@ msgctxt ""
"hd_id3147435\n"
"help.text"
msgid "Conditions"
-msgstr ""
+msgstr "Voorwaarden"
#: 05020301.xhp
msgctxt ""
@@ -14310,7 +14310,7 @@ msgctxt ""
"hd_id3148575\n"
"help.text"
msgid "Conditional Brackets"
-msgstr ""
+msgstr "Voorwaardelijke haken"
#: 05020301.xhp
msgctxt ""
@@ -14318,7 +14318,7 @@ msgctxt ""
"par_id3155312\n"
"help.text"
msgid "You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ]."
-msgstr ""
+msgstr "U kunt een getalnotatie definiëren die alleen wordt toegepast als aan de opgegeven voorwaarde wordt voldaan. Voorwaarden worden tussen vierkante haken geplaatst [ ]."
#: 05020301.xhp
msgctxt ""
@@ -14326,7 +14326,7 @@ msgctxt ""
"par_id3159179\n"
"help.text"
msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
-msgstr ""
+msgstr "U kunt elke gewenste combinatie van getallen en de operatoren <, <=, >, >=, = en <> gebruiken."
#: 05020301.xhp
msgctxt ""
@@ -14334,7 +14334,7 @@ msgctxt ""
"par_id3159196\n"
"help.text"
msgid "For example, if you want to apply different colors to different temperature data, enter:"
-msgstr ""
+msgstr "Als u bijvoorbeeld verschillende kleuren op diverse temperatuurgegevens wilt toepassen, voert u het volgende in:"
#: 05020301.xhp
msgctxt ""
@@ -14342,7 +14342,7 @@ msgctxt ""
"par_id3157870\n"
"help.text"
msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
-msgstr ""
+msgstr "Alle temperaturen onder nul zijn blauw, temperaturen tussen 0 en 30 °C zijn zwart en temperaturen hoger dan 30 °C zijn rood."
#: 05020301.xhp
msgctxt ""
@@ -14350,7 +14350,7 @@ msgctxt ""
"hd_id3154833\n"
"help.text"
msgid "Positive and Negative Numbers"
-msgstr ""
+msgstr "Positieve en negatieve getallen"
#: 05020301.xhp
msgctxt ""
@@ -14358,7 +14358,7 @@ msgctxt ""
"par_id3147295\n"
"help.text"
msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
-msgstr ""
+msgstr "Als u een getalnotatie wilt definiëren waarmee verschillende tekst wordt toegevoegd aan een getal, afhankelijk van het feit of het getal positief, negatief of gelijk is aan nul, gebruikt u de volgende notatie:"
#: 05020301.xhp
msgctxt ""
@@ -14366,7 +14366,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "\"plus\" 0;\"minus\" 0;\"null\" 0"
-msgstr ""
+msgstr "\"plus\" 0;\"minus\" 0;\"null\" 0"
#: 05020301.xhp
msgctxt ""
@@ -14374,7 +14374,7 @@ msgctxt ""
"hd_id3149260\n"
"help.text"
msgid "Percentages, Scientific Notation and Fraction Representation"
-msgstr ""
+msgstr "Weergave van Percentages, Wetenschappelijke notatie en Breuken"
#: 05020301.xhp
msgctxt ""
@@ -14382,7 +14382,7 @@ msgctxt ""
"hd_id3147218\n"
"help.text"
msgid "Percentages"
-msgstr ""
+msgstr "Percentages"
#: 05020301.xhp
msgctxt ""
@@ -14390,7 +14390,7 @@ msgctxt ""
"par_id3151168\n"
"help.text"
msgid "To display numbers as percentages, add the percent sign (%) to the number format."
-msgstr ""
+msgstr "Als u getallen wilt weergeven als percentages, voegt u het procentteken (%) toe aan de getalnotatie."
#: 05020301.xhp
msgctxt ""
@@ -14398,7 +14398,7 @@ msgctxt ""
"hd_id3156005\n"
"help.text"
msgid "Scientific Notation"
-msgstr ""
+msgstr "Wetenschappelijke notatie"
#: 05020301.xhp
msgctxt ""
@@ -14406,7 +14406,7 @@ msgctxt ""
"par_id3146923\n"
"help.text"
msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10<sup>5</sup>, and 0.000065 as 6.5 x 10<sup>-5</sup>. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part: <emph>###.##E+00</emph> for instance."
-msgstr ""
+msgstr "Met behulp van de wetenschappelijke notatie kunt u zeer grote getallen of kleine breuken in compacte vorm schrijven. In de wetenschappelijke notatie wordt 650000 bijvoorbeeld geschreven als 6,5 x 10<sup>5</sup> en wordt 0,000065 geschreven als 6,5 x 10<sup>-5</sup>. In <item type=\"productname\">%PRODUCTNAME</item> worden deze getallen geschreven als 6,5E+5 en 6,5E-5. Als u een getalnotatie wilt maken waarmee getallen in de wetenschappelijke notatie worden weergegeven, voert u het teken # of het getal 0 in, gevolgd door een van deze codes: E-, E+, e- of e+. Als het teken na E of e wordt weggelaten, zal het niet vóór de positieve waarde van de exponent verschijnen. Om technische notatie te krijgen, voert u 3 cijfers (0 of #) in het gehele gedeelte in: bijvoorbeeld <emph>###.##E+00</emph>."
#: 05020301.xhp
msgctxt ""
@@ -14414,7 +14414,7 @@ msgctxt ""
"hd_id3156006\n"
"help.text"
msgid "Fraction Representation"
-msgstr ""
+msgstr "Weergave van breuken"
#: 05020301.xhp
msgctxt ""
@@ -14422,7 +14422,7 @@ msgctxt ""
"par_id3146924\n"
"help.text"
msgid "To represent a value as a fraction, format consists of two or three parts: integer optional part, numerator and denominator. Integer and numerator are separated by a blank or any quoted text. Numerator and denominator are separated by a slash character. Each part can consist of a combination of #, ? and 0 as placeholders."
-msgstr ""
+msgstr "Om een waarde als een breuk weer te geven, bestaat uit twee of drie delen: integer als optioneel deel, teller en noemer. Integer en teller worden gescheiden door een lege ruimte of een genoteerde tekst. Teller en noemer zijn gescheiden door een slash teken. Ieder deel kan een combinatie bevatten van #, ? and 0 als tijdelijke aanduidingen."
#: 05020301.xhp
msgctxt ""
@@ -14430,7 +14430,7 @@ msgctxt ""
"par_id3146925\n"
"help.text"
msgid "Denominator is calculated to get the nearest value of the fraction with respect to the number of placeholders. For example, PI value is represented as 3 16/113 with format:"
-msgstr ""
+msgstr "De noemer wordt berekend om de dichtstbijzinde waarde van de breuk te krijgen met betrekking tot het aantal tijdelijke aanduidingen. Bijvoorbeeld, de waarde PI is weergegeven als 3 16/113 met de opmaak:"
#: 05020301.xhp
msgctxt ""
@@ -14438,7 +14438,7 @@ msgctxt ""
"par_id3146927\n"
"help.text"
msgid "Denominator value can also be forced to the value replacing placeholders. For example, to get PI value as a multiple of 1/16th (i.e. 50/16), use format:"
-msgstr ""
+msgstr "De waarde van de noemer kan ook worden gedwongen om de tijdelijke aanduidingen te vervangen. Bijvoorbeeld, gebruik, om de waarde PI als een veelvoud te krijgen van 1/16e (dat wil zeggen 50/16), de opmaak:"
#: 05020301.xhp
msgctxt ""
@@ -14446,7 +14446,7 @@ msgctxt ""
"hd_id3159080\n"
"help.text"
msgid "Number Format Codes of Currency Formats"
-msgstr ""
+msgstr "Getalnotatiecodes van valutanotaties"
#: 05020301.xhp
msgctxt ""
@@ -14454,7 +14454,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros)."
-msgstr ""
+msgstr "De standaardvalutanotatie voor de cellen in werkbladen wordt bepaald aan de hand van de landinstellingen van het besturingssysteem. Indien gewenst kunt u een aangepast valutasymbool op een cel toepassen. Voer bijvoorbeeld #.##0,00 € in om 4,50 € (euro) weer te geven."
#: 05020301.xhp
msgctxt ""
@@ -14462,7 +14462,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, <emph>[$€-407]</emph> represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
-msgstr ""
+msgstr "U kunt ook de landinstelling voor de valuta opgeven door na het symbool de landcode in te voeren. <emph>[$€-407]</emph> staat bijvoorbeeld voor de euro in Duitsland. Als u de landcode voor een land wilt bekijken, selecteert u het gewenste land in de keuzelijst <emph>Taal</emph> op het tabblad <emph>Getallen</emph> in het dialoogvenster <emph>Cellen opmaken</emph>."
#: 05020301.xhp
msgctxt ""
@@ -14470,7 +14470,7 @@ msgctxt ""
"hd_id3157309\n"
"help.text"
msgid "Date and Time Formats"
-msgstr ""
+msgstr "Datum- en tijdnotaties"
#: 05020301.xhp
msgctxt ""
@@ -14478,7 +14478,7 @@ msgctxt ""
"hd_id3153740\n"
"help.text"
msgid "Date Formats"
-msgstr ""
+msgstr "Datumopmaak"
#: 05020301.xhp
msgctxt ""
@@ -14486,7 +14486,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "To display days, months and years, use the following number format codes."
-msgstr ""
+msgstr "Gebruik de volgende notatiecodes voor getallen als u dagen, maanden en jaren wilt weergeven."
#: 05020301.xhp
msgctxt ""
@@ -14502,7 +14502,7 @@ msgctxt ""
"par_id3152376\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Opmaak"
#: 05020301.xhp
msgctxt ""
@@ -14510,7 +14510,7 @@ msgctxt ""
"par_id3159130\n"
"help.text"
msgid "Format Code"
-msgstr ""
+msgstr "Opmaakcode"
#: 05020301.xhp
msgctxt ""
@@ -14518,7 +14518,7 @@ msgctxt ""
"par_id3147380\n"
"help.text"
msgid "Month as 3."
-msgstr ""
+msgstr "Maand als 3."
#: 05020301.xhp
msgctxt ""
@@ -14526,7 +14526,7 @@ msgctxt ""
"par_id3145594\n"
"help.text"
msgid "Month as 03."
-msgstr ""
+msgstr "Maand als 03."
#: 05020301.xhp
msgctxt ""
@@ -14534,7 +14534,7 @@ msgctxt ""
"par_id3145728\n"
"help.text"
msgid "Month as Jan-Dec"
-msgstr ""
+msgstr "Maand als jan-dec"
#: 05020301.xhp
msgctxt ""
@@ -14542,7 +14542,7 @@ msgctxt ""
"par_id3149909\n"
"help.text"
msgid "Month as January-December"
-msgstr ""
+msgstr "Maand als januari-december"
#: 05020301.xhp
msgctxt ""
@@ -14550,7 +14550,7 @@ msgctxt ""
"par_id3151218\n"
"help.text"
msgid "First letter of Name of Month"
-msgstr ""
+msgstr "Eerste letter van de naam van de maand"
#: 05020301.xhp
msgctxt ""
@@ -14558,7 +14558,7 @@ msgctxt ""
"par_id3154501\n"
"help.text"
msgid "Day as 2"
-msgstr ""
+msgstr "Dag als 2"
#: 05020301.xhp
msgctxt ""
@@ -14566,7 +14566,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "Day as 02"
-msgstr ""
+msgstr "Dag als 02"
#: 05020301.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3148495\n"
"help.text"
msgid "Day as Sun-Sat"
-msgstr ""
+msgstr "Dag als ma-zo"
#: 05020301.xhp
msgctxt ""
@@ -14582,7 +14582,7 @@ msgctxt ""
"par_id3154272\n"
"help.text"
msgid "Day as Sunday to Saturday"
-msgstr ""
+msgstr "Dag als maadag t/m zondag"
#: 05020301.xhp
msgctxt ""
@@ -14590,7 +14590,7 @@ msgctxt ""
"par_id3146791\n"
"help.text"
msgid "Day followed by comma, as in \"Sunday,\""
-msgstr ""
+msgstr "Dag gevolgd door komma, zoals in \"zondag,\""
#: 05020301.xhp
msgctxt ""
@@ -14598,7 +14598,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "Year as 00-99"
-msgstr ""
+msgstr "Jaar als 00-99"
#: 05020301.xhp
msgctxt ""
@@ -14606,7 +14606,7 @@ msgctxt ""
"par_id3148408\n"
"help.text"
msgid "Year as 1900-2078"
-msgstr ""
+msgstr "Jaar als 1900-2078"
#: 05020301.xhp
msgctxt ""
@@ -14614,7 +14614,7 @@ msgctxt ""
"par_id3153355\n"
"help.text"
msgid "Calendar week"
-msgstr ""
+msgstr "Kalenderweek"
#: 05020301.xhp
msgctxt ""
@@ -14622,7 +14622,7 @@ msgctxt ""
"par_id3154302\n"
"help.text"
msgid "Quarterly as Q1 to Q4"
-msgstr ""
+msgstr "Kwartaal als K1 t/m K4"
#: 05020301.xhp
msgctxt ""
@@ -14630,7 +14630,7 @@ msgctxt ""
"par_id3147583\n"
"help.text"
msgid "Quarterly as 1st quarter to 4th quarter"
-msgstr ""
+msgstr "Per kwartaal als 1e kwartaal t/m 4e kwartaal"
#: 05020301.xhp
msgctxt ""
@@ -14638,7 +14638,7 @@ msgctxt ""
"par_id3147534\n"
"help.text"
msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
-msgstr ""
+msgstr "Tijdperk in Japanse Gengou-kalender, één teken (mogelijke waarden zijn: M, T, S, H)"
#: 05020301.xhp
msgctxt ""
@@ -14646,7 +14646,7 @@ msgctxt ""
"par_id3163806\n"
"help.text"
msgid "Era, abbreviation"
-msgstr ""
+msgstr "Tijdperk, afkorting"
#: 05020301.xhp
msgctxt ""
@@ -14654,7 +14654,7 @@ msgctxt ""
"par_id3151187\n"
"help.text"
msgid "Era, full name"
-msgstr ""
+msgstr "Tijdperk, volledige naam"
#: 05020301.xhp
msgctxt ""
@@ -14662,7 +14662,7 @@ msgctxt ""
"par_id3147344\n"
"help.text"
msgid "Number of the year within an era, without a leading zero for single-digit years"
-msgstr ""
+msgstr "Getal van het jaar binnen een tijdperk, zonder voorloopnullen voor eencijferige jaren"
#: 05020301.xhp
msgctxt ""
@@ -14670,7 +14670,7 @@ msgctxt ""
"par_id3148487\n"
"help.text"
msgid "Number of the year within an era, with a leading zero for single-digit years"
-msgstr ""
+msgstr "Getal van het jaar binnen een tijdperk, met voorloopnullen voor eencijferige jaren"
#: 05020301.xhp
msgctxt ""
@@ -14678,7 +14678,7 @@ msgctxt ""
"par_id3150298\n"
"help.text"
msgid "EE or R"
-msgstr ""
+msgstr "EE of R"
#: 05020301.xhp
msgctxt ""
@@ -14686,7 +14686,7 @@ msgctxt ""
"par_id3152861\n"
"help.text"
msgid "Era, full name and year"
-msgstr ""
+msgstr "Tijdperk, volledige naam en volledig jaar"
#: 05020301.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">U kunt hier selecteren dat bladwijzers uit Writer-documenten als PDF-bladwijzers geëxporteerd moeten worden. Bladwijzers worden voor alle hoofdstukgenummerde alinea's gemaakt (Extra - Hoofdstuknummering) en voor alle inhoudsopgaven waarvoor u hyperlinks hebt gemaakt in het brondocument.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/optionen.po b/source/nl/helpcontent2/source/text/shared/optionen.po
index ee25d427f03..77904bbf1bd 100644
--- a/source/nl/helpcontent2/source/text/shared/optionen.po
+++ b/source/nl/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-05-20 05:29+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/nl/helpcontent2/source/text/swriter.po b/source/nl/helpcontent2/source/text/swriter.po
index a14fc982f35..9d852cb1835 100644
--- a/source/nl/helpcontent2/source/text/swriter.po
+++ b/source/nl/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-07 10:59+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Hoofdstuknummering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/swriter/00.po b/source/nl/helpcontent2/source/text/swriter/00.po
index 9d070e22297..0273178f671 100644
--- a/source/nl/helpcontent2/source/text/swriter/00.po
+++ b/source/nl/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-02-26 10:22+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Kies <emph>Extra - Hoofdstuknummering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Kies <emph>Extra - Hoofdstuknummering - Nummering</emph> (tabblad) </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Kies <emph>Extra - Regelnummering</emph> (niet voor HTML-opmaak</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/swriter/01.po b/source/nl/helpcontent2/source/text/swriter/01.po
index a96690fbf09..367729a92cb 100644
--- a/source/nl/helpcontent2/source/text/swriter/01.po
+++ b/source/nl/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-04-05 14:05+0000\n"
"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Klik op <emph>1 </emph>om alleen de bovenste koppen in het Navigator-venster te bekijken, en op <emph>10</emph> om alle koppen te bekijken.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Als u \"Hoofdstuknummer zonder scheidingsteken\" voor een hoofdstukveld kiest, worden de scheidingstekens die in <link href=\"text/swriter/01/06060000.xhp\" name=\"Extra - Hoofdstuknummering\"><emph>Extra - Hoofdstuknummering</emph></link> voor hoofdstuknummer gedefinieerd zijn, niet weergegeven."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Voegt het nummer van het hoofdstuk in. Kies<emph> Extra - Hoofdstuknummering</emph>.</ahelp> om de nummering van hoofdstukken toe te wijzen aan een opmaakprofiel Kop."
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Hoofdstuknummering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Hoofdstuknummering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Hoofdstuknummering is gekoppeld aan alinea-opmaakprofielen. Standaard worden de alinea-opmaakprofielen Kop (1-10) toegewezen aan de overeenkomstige hoofdstukniveaus (1-10). U kunt andere alinea-opmaakprofielen toewijzen aan de hoofdstukniveaus."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Gebruik, als u genummerde koppen wilt, de menu-opdracht<emph>Extra - Hoofdstuknummering</emph> om een nummering aan een alinea-opmaakprofiel toe te wijzen. Gebruik niet het pictogram Nummering op de werkbalk Opmaak."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Kies <emph>Beeld -</emph><emph>Veldarceringen</emph> om de hoofdstuknummering op het scherm te markeren."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Slaat een nummeringsopmaak op of laadt die. Een opgeslagen nummeringsnotatie is beschikbaar voor alle tekstdocumenten.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "De knop <emph>Opmaak</emph> is alleen beschikbaar voor hoofdstuknummering. Voor genummerde lijsten of lijsten met opsommingstekens past u de nummering van het alinea-opmaakprofiel aan."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opent een dialoogvenster waar u de huidige instellingen voor het geselecteerde hoofdstukniveau kunt opslaan. U kunt deze instellingen dan vanuit een ander document laden.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Klik op het overzichtsniveau dat u wilt wijzigen, en geef dan de nummeringsopties voor het niveau op.</ahelp> Wilt u de nummeringsopties, met uitzondering van het alinea-opmaakprofiel, op alle niveaus toepassen, dan klikt u op '1-10'."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Selecteer het alinea-opmaakprofiel dat u aan het geselecteerde overzichtsniveau wilt toewijzen.</ahelp> Als u op 'Geen' klikt, wordt het geselecteerde overzichtsniveau niet gedefinieerd."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nieuw adresblok"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nieuw adresblok"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adreselementen"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Adreselementen in onderstaand vak slepen"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/swriter/guide.po b/source/nl/helpcontent2/source/text/swriter/guide.po
index 5a349ab0a15..29d8336e54d 100644
--- a/source/nl/helpcontent2/source/text/swriter/guide.po
+++ b/source/nl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-01-07 11:00+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "U kunt met behulp van de Navigator koppen en ondergeschikte tekst omhoog en omlaag verplaatsen in een documenttekst. U kunt kopniveaus ook omhoog en omlaag verplaatsen. Maak de koppen in uw document op met een van de vooraf gedefinieerde alinea-opmaakprofielen voor koppen om deze functie te gebruiken. Wilt u een aangepast alinea-opmaakprofiel voor een kop maken, dan kiest u <emph>Extra - Hoofdstuknummering</emph>, selecteert u het opmaakprofiel in het vak <emph>Alinea-opmaakprofiel</emph> en dubbelklikt u op een getal in de lijst <emph>Niveau</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Hoofdstuknummering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>overzicht;nummering</bookmark_value> <bookmark_value>verwijderen;kopnummers</bookmark_value> <bookmark_value>hoofdstuknummering</bookmark_value> <bookmark_value>koppen;nummering/alinea-opmaakprofielen</bookmark_value> <bookmark_value>nummering;koppen</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Hoofdstuknummering\">Hoofdstuknummering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "U kunt de hiërarchie van koppen wijzigen of een niveau in de hiërarchie aan een aangepast alinea-opmaakprofiel toewijzen. U kunt ook hoofdstuk- en sectienummering toevoegen aan alinea-opmaakprofielen voor koppen. Standaard staat het opmaakprofiel Kop 1 bovenaan in de overzichtsstructuur."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Kies <item type=\"menuitem\">Extra - Hoofdstuknummering</item> en klik dan op de tab <item type=\"menuitem\">Nummering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Zo verwijdert u automatische hoofdstuknummering uit een kop van een alinea:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Kies <item type=\"menuitem\">Extra - Hoofdstuknummering</item> en klik dan op de tab <item type=\"menuitem\">Nummering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "U moet eerst de hoofdstuknummering instellen voor het alinea-opmaakprofiel dat u gebruikt voor de hoofdstuknamen vóórdat u hoofdstukinformatie in een kop- of voettekst kunt invoegen."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Kies <emph>Extra - Hoofdstuknummering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>registers; items definiëren in</bookmark_value><bookmark_value>inhoudsopgaven; items definiëren in</bookmark_value><bookmark_value>items; definiëren in registers/inhoudsopgaven</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Kies <emph>Invoegen - Inhoudsopgave en registers - Indexitem</emph> en doe het volgende:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Kies <emph>Extra - Hoofdstuknummering</emph> en klik op de tab <emph>Nummering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Als u een ander alinea-opmaakprofiel als item in de inhoudsopgave wilt gebruiken, selecteert u <item type=\"menuitem\">Opmaakprofielen</item> in het gebied <item type=\"menuitem\">Maken uit</item> en klikt u op de knop (<item type=\"menuitem\">...</item>) naast het keuzevak. Klik, in het dialoogvenster <item type=\"menuitem\">Opmaakprofielen toewijzen</item>, op het opmaakprofiel in de lijst, en dan op de knop <item type=\"menuitem\">>></item>of <item type=\"menuitem\"><<</item> om het overzichtsniveau voor het alinea-opmaakprofiel te definiëren."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>nummering; verwijderen/onderbreken</bookmark_value><bookmark_value>opsommingstekens; onderbreken</bookmark_value><bookmark_value>lijsten;nummering verwijderen/onderbreken</bookmark_value><bookmark_value>verwijderen;nummers in lijsten</bookmark_value><bookmark_value>onderbreken van genummerde lijsten</bookmark_value><bookmark_value>veranderen;beginnummers in lijsten</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Gebruik, als u genummerde koppen wilt, de menu-opdracht <emph>Extra - Hoofdstuknummering</emph> om een nummering aan een alinea-opmaakprofiel toe te wijzen. Gebruik niet het pictogram Nummering aan/uit op de werkbalk Opmaak."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
index bc04a7e9390..3d35462c46e 100644
--- a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 21:01+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-16 04:58+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496782907.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497589094.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Onderwerpen kiezen"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Invoegen..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "Dia~model"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Notitiem~odel"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "Notiti~es"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "Tab~balk weergegeven"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Hand-~outmodel"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "D~iavenster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Eigenscha~ppen..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "O~bject..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Koprijen herhalen op pagina's"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Rij om pagina's af te ~breken"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nl/sc/source/ui/src.po b/source/nl/sc/source/ui/src.po
index aa1f5d51bd9..d34c2994eee 100644
--- a/source/nl/sc/source/ui/src.po
+++ b/source/nl/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-07 05:37+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Bereik van #1 naar #2 verplaatst"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Door deze handeling wordt het bijhouden van wijzigingen afgesloten.\n"
-"De informatie over wijzigingen gaat hierdoor verloren.\n"
-"\n"
-"Bijhouden van wijzigingen beëindigen?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Geneste arrays worden niet ondersteund."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Tekst naar kolommen"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/nl/scp2/source/ooo.po b/source/nl/scp2/source/ooo.po
index af8e01f2520..227268d432d 100644
--- a/source/nl/scp2/source/ooo.po
+++ b/source/nl/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2016-12-24 11:37+0000\n"
+"PO-Revision-Date: 2017-06-16 04:59+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482579450.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497589175.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Bovensorbisch"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Instaleert de Bovensorbische gebruikersinterface"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/nl/sfx2/source/view.po b/source/nl/sfx2/source/view.po
index 2bdd0aa6302..ab9695b0b55 100644
--- a/source/nl/sfx2/source/view.po
+++ b/source/nl/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-23 07:15+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492931751.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Dit document heeft een ongeldige ondertekening."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/nl/svtools/source/control.po b/source/nl/svtools/source/control.po
index 54b230d1709..cca70f23f03 100644
--- a/source/nl/svtools/source/control.po
+++ b/source/nl/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-04 13:27+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Zwart cursief"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/nl/svtools/source/misc.po b/source/nl/svtools/source/misc.po
index b05f1d63fd3..798f5f2ec99 100644
--- a/source/nl/svtools/source/misc.po
+++ b/source/nl/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-23 08:06+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibisch"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/nl/sw/source/core/undo.po b/source/nl/sw/source/core/undo.po
index 8b9cc341209..c7f9543fa69 100644
--- a/source/nl/sw/source/core/undo.po
+++ b/source/nl/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-23 08:30+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492936241.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "kolomeinde"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 invoegen"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 verwijderen"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attributen gewijzigd"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabel gewijzigd"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Opmaakprofiel gewijzigd"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/nl/sw/source/uibase/docvw.po b/source/nl/sw/source/uibase/docvw.po
index a18cd85d365..a7cb17f709f 100644
--- a/source/nl/sw/source/uibase/docvw.po
+++ b/source/nl/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:32+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Gebruikte alinea-opmaakprofielen"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/nl/sw/source/uibase/ribbar.po b/source/nl/sw/source/uibase/ribbar.po
index 9b2b5eeb563..5a410d5c5b0 100644
--- a/source/nl/sw/source/uibase/ribbar.po
+++ b/source/nl/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-24 14:15+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formuletekst"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/nl/sw/source/uibase/uiview.po b/source/nl/sw/source/uibase/uiview.po
index a3f9346d908..e3425a39f88 100644
--- a/source/nl/sw/source/uibase/uiview.po
+++ b/source/nl/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:32+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Brontekst exporteren..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/nl/sw/uiconfig/swriter/ui.po b/source/nl/sw/uiconfig/swriter/ui.po
index 313429bdcdd..a9558e57659 100644
--- a/source/nl/sw/uiconfig/swriter/ui.po
+++ b/source/nl/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 21:07+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-16 05:02+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: none\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496783250.000000\n"
+"X-POOTLE-MTIME: 1497589340.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Notitie bewerken..."
#: managechangessidebar.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Gebruik de presentatievolgorde van Libre Office 4.3 voor verankeringspunten (in huidige document)"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/nl/wizards/source/formwizard.po b/source/nl/wizards/source/formwizard.po
index 77acbc2b263..6db6f4e5987 100644
--- a/source/nl/wizards/source/formwizard.po
+++ b/source/nl/wizards/source/formwizard.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-06-06 21:10+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2017-06-16 05:05+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496783415.000000\n"
+"X-POOTLE-MTIME: 1497589532.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "Er is geen database geïnstalleerd. Er is tenminste één database vereist voordat de assistent voor formulieren gebruikt kan worden."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "De databaseservice (com.sun.data.DatabaseEngine) kon niet geproduceerd worden."
#: dbwizres.src
msgctxt ""
diff --git a/source/nl/xmlsecurity/uiconfig/ui.po b/source/nl/xmlsecurity/uiconfig/ui.po
index 73c4df1e90a..dbd8cbf38bc 100644
--- a/source/nl/xmlsecurity/uiconfig/ui.po
+++ b/source/nl/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-22 06:26+0000\n"
"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Verwijder"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/nn/cui/uiconfig/ui.po b/source/nn/cui/uiconfig/ui.po
index f5df8cbd8aa..330ac289e37 100644
--- a/source/nn/cui/uiconfig/ui.po
+++ b/source/nn/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-20 11:29+0000\n"
+"PO-Revision-Date: 2017-06-07 15:32+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: none\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495279740.000000\n"
+"X-POOTLE-MTIME: 1496849557.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -797,7 +797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap"
-msgstr "Punktgrafikk"
+msgstr "Punktbilete"
#: areatabpage.ui
msgctxt ""
@@ -1265,7 +1265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap"
-msgstr "Punktgrafikk"
+msgstr "Punktbilete"
#: bitmaptabpage.ui
msgctxt ""
diff --git a/source/nn/desktop/source/deployment/gui.po b/source/nn/desktop/source/deployment/gui.po
index 55ba3087bb1..9698c20b69f 100644
--- a/source/nn/desktop/source/deployment/gui.po
+++ b/source/nn/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 03:53+0000\n"
-"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:31+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467690817.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449858717.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/nn/filter/source/config/fragments/filters.po b/source/nn/filter/source/config/fragments/filters.po
index 64fda77560b..a03936286f9 100644
--- a/source/nn/filter/source/config/fragments/filters.po
+++ b/source/nn/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-16 21:17+0000\n"
+"PO-Revision-Date: 2017-06-13 18:31+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492377455.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497378660.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/nn/filter/source/config/fragments/types.po b/source/nn/filter/source/config/fragments/types.po
index 099c98c20e3..9f1b3a93a21 100644
--- a/source/nn/filter/source/config/fragments/types.po
+++ b/source/nn/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-16 21:17+0000\n"
+"PO-Revision-Date: 2017-06-13 18:31+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492377467.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497378673.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/sbasic/shared.po b/source/nn/helpcontent2/source/text/sbasic/shared.po
index 8d45234ec3f..0827577afc0 100644
--- a/source/nn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nn/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 10:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-16 16:09+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496659451.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497629394.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr "Denne funksjonen er slått på med uttrykket <item type=\"literal\">Opti
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Feilkodar</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -25870,7 +25902,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option VBASupport Statement [Runtime]"
-msgstr ""
+msgstr "Uttrykket VBASupport [køyretid]"
#: 03103350.xhp
msgctxt ""
@@ -25878,7 +25910,7 @@ msgctxt ""
"bm_id3145090\n"
"help.text"
msgid "<bookmark_value>MS Excel macros support;Enable</bookmark_value> <bookmark_value>MS Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>MS Excel makrostøtte;slå på</bookmark_value> <bookmark_value>MS Excel makrostøtte;Option VBASupport-uttrykket</bookmark_value> <bookmark_value>VBA-støtte;Option VBASupport-uttrykket</bookmark_value> <bookmark_value>Option VBASupport-uttrykket</bookmark_value>"
#: 03103350.xhp
msgctxt ""
@@ -25886,7 +25918,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport-uttrykket [køyretid]</link>"
#: 03103350.xhp
msgctxt ""
@@ -25894,7 +25926,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "Specifies that %PRODUCTNAME Basic will support some VBA statements, functions and objects."
-msgstr ""
+msgstr "Gjer at %PRODUCTNAME Basic vil støtte nokre VBA-uttrykk, funksjonar og objekt."
#: 03103350.xhp
msgctxt ""
@@ -25902,7 +25934,7 @@ msgctxt ""
"par_id051720171055367194\n"
"help.text"
msgid "The support for VBA is not complete, but covers a large portion of the common usage patterns."
-msgstr ""
+msgstr "Støtta for VBA er ikkje fullstendig, men dekker ein stor del av det vanlege bruksmønsteret."
#: 03103350.xhp
msgctxt ""
@@ -25910,7 +25942,7 @@ msgctxt ""
"hd_id3149763\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaks:"
#: 03103350.xhp
msgctxt ""
@@ -25918,7 +25950,7 @@ msgctxt ""
"hd_id3145315\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameterar:"
#: 03103350.xhp
msgctxt ""
@@ -25926,7 +25958,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgstr "Dette uttrykket må setjast inn før den køyrbare programkoden i ein modul."
#: 03103350.xhp
msgctxt ""
@@ -25934,7 +25966,7 @@ msgctxt ""
"par_id051720171055361727\n"
"help.text"
msgid "1: Enable VBA support in %PRODUCTNAME"
-msgstr ""
+msgstr "1: Slå på VBA-støtte i %PRODUCTNAME"
#: 03103350.xhp
msgctxt ""
@@ -25942,7 +25974,7 @@ msgctxt ""
"par_id051720171055369857\n"
"help.text"
msgid "0: Disable VBA support"
-msgstr ""
+msgstr "0: Slå av VBA-støtte"
#: 03103350.xhp
msgctxt ""
@@ -25950,7 +25982,7 @@ msgctxt ""
"hd_id3125864\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Eksempel:"
#: 03103350.xhp
msgctxt ""
@@ -25958,7 +25990,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">VBA-eigenskapar</link>"
#: 03103350.xhp
msgctxt ""
@@ -25966,7 +25998,7 @@ msgctxt ""
"par_id051720170424259343\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA support in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA-støtte i %PRODUCTNAME</link>"
#: 03103400.xhp
msgctxt ""
@@ -26222,7 +26254,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "TypeName (Variable) / VarType (Variable)"
-msgstr ""
+msgstr "TypeName (Variabel) / VarType (Variabel)"
#: 03103600.xhp
msgctxt ""
@@ -26270,7 +26302,7 @@ msgctxt ""
"par_id051620170608269696\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Namngjeven konstant"
#: 03103600.xhp
msgctxt ""
@@ -26310,7 +26342,7 @@ msgctxt ""
"par_id051620170608331416\n"
"help.text"
msgid "Currency variable"
-msgstr ""
+msgstr "Valutavariabel"
#: 03103600.xhp
msgctxt ""
@@ -26550,7 +26582,7 @@ msgctxt ""
"par_id3153104\n"
"help.text"
msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
-msgstr ""
+msgstr "\"TextEdit1\" til \"TextEdit5\" i ei løkke for å laga fem kontrollnamn."
#: 03103800.xhp
msgctxt ""
@@ -27014,7 +27046,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "a = DimArray( 2, 2, 4 ) ' is the same as DIM a( 2, 2, 4 )"
-msgstr ""
+msgstr "a = DimArray( 2, 2, 4 ) ' er det same som Dim a( 2, 2, 4 )"
#: 03104400.xhp
msgctxt ""
@@ -27318,7 +27350,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "' Copy of objects -> same instance"
-msgstr ""
+msgstr "' Kopi av objekt -> same førekomst"
#: 03104600.xhp
msgctxt ""
@@ -27326,7 +27358,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "' Copy of structs as value -> new instance"
-msgstr ""
+msgstr "' Kopi av structs som verdi -> ny førekomst"
#: 03104700.xhp
msgctxt ""
@@ -28150,7 +28182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AscW Function [Runtime]"
-msgstr ""
+msgstr "AscW-funksjonen [køyretid]"
#: 03120111.xhp
msgctxt ""
@@ -28158,7 +28190,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>AscW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>AscW-funksjonen</bookmark_value>"
#: 03120111.xhp
msgctxt ""
@@ -28166,7 +28198,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW-funksjonen [køyretid - VBA]</link>"
#: 03120111.xhp
msgctxt ""
@@ -28174,7 +28206,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the Unicode value of the first character in a string expression."
-msgstr ""
+msgstr "Returnerer Unicodeverdien for det første teiknet i eit strenguttrykk."
#: 03120111.xhp
msgctxt ""
@@ -28182,7 +28214,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaks:"
#: 03120111.xhp
msgctxt ""
@@ -28190,7 +28222,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "AscW (Text As String)"
-msgstr ""
+msgstr "AscW (Tekst As String)"
#: 03120111.xhp
msgctxt ""
@@ -28198,7 +28230,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Returverdi:"
#: 03120111.xhp
msgctxt ""
@@ -28206,7 +28238,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "Integer"
-msgstr ""
+msgstr "Heiltal"
#: 03120111.xhp
msgctxt ""
@@ -28214,7 +28246,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameterar"
#: 03120111.xhp
msgctxt ""
@@ -28222,7 +28254,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr ""
+msgstr "<emph>Text:</emph> Eitkvart gyldig strenguttrykk. Berre det første teiknet i strengen er relevant."
#: 03120111.xhp
msgctxt ""
@@ -28230,7 +28262,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "Use the AscW function to replace keys with Unicode values. If the AscW function encounters a blank string, %PRODUCTNAME Basic reports a run-time error. Returned values are between 0 and 65535."
-msgstr ""
+msgstr "Bruk AscW-funksjonen for å byta ut Unikodeteikn med verdien. Dersom AscW-funksjonen resulterer i ein tom streng, vil %PRODUCTNAME Basic melda om køyretidsfeil. Returnerte verdiar er mellom 0 og 65 535."
#: 03120111.xhp
msgctxt ""
@@ -28238,7 +28270,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Eksempel:"
#: 03120111.xhp
msgctxt ""
@@ -28246,7 +28278,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "Print AscW(\"A\") ' returns 65"
-msgstr ""
+msgstr "Print AscW(\"A\") ' returnerer 65"
#: 03120111.xhp
msgctxt ""
@@ -28254,7 +28286,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Print AscW(\"Ω\") ' returns 937"
-msgstr ""
+msgstr "Print AscW(\"Ω\") ' returnerer 937"
#: 03120111.xhp
msgctxt ""
@@ -28262,7 +28294,7 @@ msgctxt ""
"par_id3163800\n"
"help.text"
msgid "Print AscW(\"Αθήνα\") ' returns 913, since only the first character (Alpha) is taken into account"
-msgstr ""
+msgstr "Print AscW(\"Αθήνα\") ' returnerer 913 sidan berre det første teiknet (Alfa) i strengen vert rekna med."
#: 03120111.xhp
msgctxt ""
@@ -28270,7 +28302,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120111.xhp
msgctxt ""
@@ -28278,7 +28310,7 @@ msgctxt ""
"par_id051920171027053197\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
#: 03120111.xhp
msgctxt ""
@@ -28286,7 +28318,7 @@ msgctxt ""
"par_id051920171027051338\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28294,7 +28326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChrW Function [Runtime -VBA]"
-msgstr ""
+msgstr "ChrW-funksjonen [køyretid - VBA]"
#: 03120112.xhp
msgctxt ""
@@ -28302,7 +28334,7 @@ msgctxt ""
"bm_id3149205\n"
"help.text"
msgid "<bookmark_value>ChrW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ChrW-funksjonen</bookmark_value>"
#: 03120112.xhp
msgctxt ""
@@ -28310,7 +28342,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function [Runtime]\">ChrW Function [Runtime -VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function [Runtime]\">ChrW-funksjonen [Runtime - VBA]</link>"
#: 03120112.xhp
msgctxt ""
@@ -28318,7 +28350,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Returns the Unicode character that corresponds to the specified character code."
-msgstr ""
+msgstr "Returnerer Unicodeteiknet som høyrer til den oppgjevne teiknkoden."
#: 03120112.xhp
msgctxt ""
@@ -28326,7 +28358,7 @@ msgctxt ""
"hd_id3149514\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaks:"
#: 03120112.xhp
msgctxt ""
@@ -28334,7 +28366,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "ChrW(Expression As Integer)"
-msgstr ""
+msgstr "ChrW(Exoression As Integer)"
#: 03120112.xhp
msgctxt ""
@@ -28342,7 +28374,7 @@ msgctxt ""
"hd_id3143228\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Returverdi:"
#: 03120112.xhp
msgctxt ""
@@ -28350,7 +28382,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "Streng"
#: 03120112.xhp
msgctxt ""
@@ -28358,7 +28390,7 @@ msgctxt ""
"hd_id3148944\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameterar:"
#: 03120112.xhp
msgctxt ""
@@ -28366,7 +28398,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6."
-msgstr ""
+msgstr "<emph>Expression:</emph> Numeriske variablar som representerer ein gyldig 16-bits Unicodeverdi (0-65535). Ein tom streng returnerer feilkoden 5. Ein verdi utføre området [0,65535] returnerer feilkoden 6."
#: 03120112.xhp
msgctxt ""
@@ -28374,7 +28406,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Eksempel:"
#: 03120112.xhp
msgctxt ""
@@ -28382,7 +28414,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "' This example inserts the greek letter Alpha and Omega in a string."
-msgstr ""
+msgstr "' Dette eksempelet set den greske bokstaven Alfa og Omega inn i ein streng."
#: 03120112.xhp
msgctxt ""
@@ -28390,7 +28422,7 @@ msgctxt ""
"par_id3151380\n"
"help.text"
msgid "MsgBox \"From \"+ ChrW(913)+\" to \" + ChrW(937)"
-msgstr ""
+msgstr "MsgBox \"Frå \"+ ChrW(913)+\" til \" + ChrW(937)"
#: 03120112.xhp
msgctxt ""
@@ -28398,7 +28430,7 @@ msgctxt ""
"par_id3145174\n"
"help.text"
msgid "' The printout appears in the dialog as: From Α to Ω"
-msgstr ""
+msgstr "' Utskrifta kjem fram i dialogvindauget som «Frå Α til Ω»"
#: 03120112.xhp
msgctxt ""
@@ -28406,7 +28438,7 @@ msgctxt ""
"par_id051920171010491586\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120112.xhp
msgctxt ""
@@ -28414,7 +28446,7 @@ msgctxt ""
"par_idN10668\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28422,7 +28454,7 @@ msgctxt ""
"par_id051920171009414669\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
#: 03120200.xhp
msgctxt ""
@@ -30942,7 +30974,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "InStrRev Function [Runtime - VBA]"
-msgstr ""
+msgstr "InStrRev-funksjonen [køyretid - VBA]"
#: 03120411.xhp
msgctxt ""
@@ -30950,7 +30982,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>InStrRev function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>InStrRev-funksjonen</bookmark_value>"
#: 03120411.xhp
msgctxt ""
@@ -30958,7 +30990,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function [Runtime]\">InStrRev Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function [Runtime]\">InStrRev-funksjonen [køyretid - VBA]</link>"
#: 03120411.xhp
msgctxt ""
@@ -30966,7 +30998,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the position of a string within another string, starting from the right side of the string."
-msgstr ""
+msgstr "Returnerer plasseringa av ein streng inne i ein annan streng, rekna frå høgre side av strengen."
#: 03120411.xhp
msgctxt ""
@@ -30974,7 +31006,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0."
-msgstr ""
+msgstr "InStrRev-funksjonen returnerer plasseringa, frå høgre side, der det var samsvar. Viss strengen ikkje vert funnen, returnerer funksjonen 0."
#: 03120411.xhp
msgctxt ""
@@ -30982,7 +31014,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaks:"
#: 03120411.xhp
msgctxt ""
@@ -30990,7 +31022,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
-msgstr ""
+msgstr "InStrRev (Tekst1 As String, Tekst2 As String [,Start As Long] [, Samanlikn As Integer])"
#: 03120411.xhp
msgctxt ""
@@ -30998,7 +31030,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Returverdi:"
#: 03120411.xhp
msgctxt ""
@@ -31006,7 +31038,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "Long"
-msgstr ""
+msgstr "Long"
#: 03120411.xhp
msgctxt ""
@@ -31014,7 +31046,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameterar:"
#: 03120411.xhp
msgctxt ""
@@ -31022,7 +31054,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr ""
+msgstr "<emph>Tekst1:</emph> Strenguttrykket du ønskjer å søka i."
#: 03120411.xhp
msgctxt ""
@@ -31030,7 +31062,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr ""
+msgstr "<emph>Tekst2:</emph> Streng-uttrykket det skal søkjast etter."
#: 03120411.xhp
msgctxt ""
@@ -31038,7 +31070,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
-msgstr ""
+msgstr "<emph>Start:</emph> Valfritt. Eit numerisk uttrykk som markerer plasseringa <emph>frå venstre</emph> i strengen søket skal byrja frå. Viss du sløyfer denne parameteren, vil søket byrja frå det første teiknet i strengen. Den høgste tillatne verdien er 65535."
#: 03120411.xhp
msgctxt ""
@@ -31046,7 +31078,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be"
-msgstr ""
+msgstr "<emph>Samanlikn</emph>: Valfritt. Taluttrykk som definerer samanlikningstype. Uttrykket kan vera"
#: 03120411.xhp
msgctxt ""
@@ -31054,7 +31086,7 @@ msgctxt ""
"par_id051920170326028042\n"
"help.text"
msgid "1: The default value of 1 specifies a text comparison that is not case-sensitive."
-msgstr ""
+msgstr "1: Standardverdien 1 gjev ei tekstsamanlikning som ikkje skil mellom små og store bokstavar."
#: 03120411.xhp
msgctxt ""
@@ -31062,7 +31094,7 @@ msgctxt ""
"par_id051920170326027721\n"
"help.text"
msgid "0: The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr ""
+msgstr "0: Verdien 0 gjev ei binær samanlikning som skil mellom små og store bokstavar."
#: 03120411.xhp
msgctxt ""
@@ -31070,7 +31102,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr ""
+msgstr "For å unngå køyretidsfeil, må du ikkje setja samanlikningstype viss den første returparameteren ikkje er sett."
#: 03120411.xhp
msgctxt ""
@@ -31078,7 +31110,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Eksempel:"
#: 03120411.xhp
msgctxt ""
@@ -31086,7 +31118,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
-msgstr ""
+msgstr "sInput = \"Den nye boka ligg på bordet\""
#: 03120411.xhp
msgctxt ""
@@ -31094,7 +31126,7 @@ msgctxt ""
"par_id3154125\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"den\",10,1) ' Returnerer 1, søket skil ikkje mellom små og store bokstavar"
#: 03120411.xhp
msgctxt ""
@@ -31102,7 +31134,7 @@ msgctxt ""
"par_id051920170322141162\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"den\",10,1) ' Returnerer 0, søket skil mellom små og store bokstavar"
#: 03120411.xhp
msgctxt ""
@@ -31110,7 +31142,7 @@ msgctxt ""
"par_id051920170316395065\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
#: 03120412.xhp
msgctxt ""
@@ -31118,7 +31150,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StrReverse Function [Runtime - VBA]"
-msgstr ""
+msgstr "StrReverse-funksjonen [køyretid - VBA]"
#: 03120412.xhp
msgctxt ""
@@ -31126,7 +31158,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>StrReverse function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>StrReverse-funksjonen</bookmark_value>"
#: 03120412.xhp
msgctxt ""
@@ -31134,7 +31166,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">StrReverse Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">InStrReverse-funksjonen [køyretid - VBA]</link>"
#: 03120412.xhp
msgctxt ""
@@ -31142,7 +31174,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the string with the character order reversed."
-msgstr ""
+msgstr "Returnerer strengen med omvendt rekkjefølgje på teikna."
#: 03120412.xhp
msgctxt ""
@@ -31150,7 +31182,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Syntaks:"
#: 03120412.xhp
msgctxt ""
@@ -31158,7 +31190,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "StrReverse (Text1 As String)"
-msgstr ""
+msgstr "StrReverse (Tekst1 As String)"
#: 03120412.xhp
msgctxt ""
@@ -31166,7 +31198,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Returverdi:"
#: 03120412.xhp
msgctxt ""
@@ -31174,7 +31206,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "Streng"
#: 03120412.xhp
msgctxt ""
@@ -31182,7 +31214,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parameterar:"
#: 03120412.xhp
msgctxt ""
@@ -31190,7 +31222,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
-msgstr ""
+msgstr "<emph>Tekst1:</emph> Strenguttrykket der rekkjefølgja på teikna skal bytast om."
#: 03120412.xhp
msgctxt ""
@@ -31198,7 +31230,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Eksempel:"
#: 03130000.xhp
msgctxt ""
@@ -32158,7 +32190,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "' this is the same as the following statement:"
-msgstr ""
+msgstr "' dette er det same som det neste uttrykket:"
#: 03131800.xhp
msgctxt ""
@@ -32238,7 +32270,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "' Generate \"live\" dialog"
-msgstr ""
+msgstr "' Lagar «live» dialog"
#: 03131800.xhp
msgctxt ""
@@ -32902,7 +32934,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
-msgstr ""
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MinBasicVerdi ) ' for å få ein bytesekvens "
#: 03132300.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Denne køyretidsfunksjonen returnerer standard komponentsamanheng som skal brukast viss tenesta vert instatiert via XmultiServiceFactory. Sjå kapitlet <item type=\"literal\">Professional UNO</item> i <item type=\"literal\">Developer's Guide</item> på <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for meir informasjon."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -33934,7 +34758,7 @@ msgctxt ""
"hd_id05182017030838384\n"
"help.text"
msgid "Working with VBA Macros"
-msgstr ""
+msgstr "Arbeida med VBA-makroar"
#: main0601.xhp
msgctxt ""
@@ -33950,7 +34774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Exclusive VBA functions"
-msgstr ""
+msgstr "Eksklusive VBA-funksjonar"
#: special_vba_func.xhp
msgctxt ""
@@ -33958,7 +34782,7 @@ msgctxt ""
"bm_id051920170350145208\n"
"help.text"
msgid "<bookmark_value>VBA Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33966,7 +34790,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Eksklusive VBA-funksjonar</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -33974,7 +34798,7 @@ msgctxt ""
"par_id051820170314436068\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">%PRODUCTNAME Basic legg til dette funksjonssettet når støtte for VBA vert slått på.</ahelp>"
#: special_vba_func.xhp
msgctxt ""
@@ -33982,7 +34806,7 @@ msgctxt ""
"hd_id051820170407499827\n"
"help.text"
msgid "These exclusive VBA functions are enabled when <item type=\"literal\">Option VBASupport 1</item> is the first line of a %PRODUCTNAME Basic module."
-msgstr ""
+msgstr "Desse kksklusive VBA-funksjonane vert slått på når <item type=\"literal\">Option VBASupport 1</item> er den første linja i ein %PRODUCTNAME Basic-modul."
#: special_vba_func.xhp
msgctxt ""
@@ -33990,7 +34814,7 @@ msgctxt ""
"bm_id05192017035621676\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar;tekstfunksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33998,7 +34822,7 @@ msgctxt ""
"par_id051820170355592834\n"
"help.text"
msgid "Text functions"
-msgstr ""
+msgstr "Tekstfunksjonar"
#: special_vba_func.xhp
msgctxt ""
@@ -34006,7 +34830,7 @@ msgctxt ""
"bm_id051920170357078705\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Financial Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar;finansielle funksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34014,7 +34838,7 @@ msgctxt ""
"par_id051820170355592581\n"
"help.text"
msgid "Financial functions"
-msgstr ""
+msgstr "Finansielle funksjonar"
#: special_vba_func.xhp
msgctxt ""
@@ -34022,7 +34846,7 @@ msgctxt ""
"bm_id051920170357347041\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar;Dato- og klokkeslettfunksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34030,7 +34854,7 @@ msgctxt ""
"par_id051820170356005357\n"
"help.text"
msgid "Date and time functions"
-msgstr ""
+msgstr "Dato- og klokkeslettfunksjonar"
#: special_vba_func.xhp
msgctxt ""
@@ -34038,7 +34862,7 @@ msgctxt ""
"bm_id051920170358002074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;I/O Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar;I/O-funksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34046,7 +34870,7 @@ msgctxt ""
"par_id051820170356006501\n"
"help.text"
msgid "I/O Functions"
-msgstr ""
+msgstr "I/O-funksjonar"
#: special_vba_func.xhp
msgctxt ""
@@ -34054,7 +34878,7 @@ msgctxt ""
"bm_id051920170358346963\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar;matematiske funksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34062,7 +34886,7 @@ msgctxt ""
"par_id051820170356005221\n"
"help.text"
msgid "Mathematical Functions"
-msgstr ""
+msgstr "Matematiske funksjonar"
#: special_vba_func.xhp
msgctxt ""
@@ -34070,7 +34894,7 @@ msgctxt ""
"bm_id051920170359045662\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Object Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-funksjonar;objekt-funksjonar</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34078,7 +34902,7 @@ msgctxt ""
"hd_id051920170347039686\n"
"help.text"
msgid "Object Functions"
-msgstr ""
+msgstr "Objektfunksjonar"
#: vbasupport.xhp
msgctxt ""
@@ -34086,7 +34910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Support for VBA Macros"
-msgstr ""
+msgstr "Støtte for VBA-makroar"
#: vbasupport.xhp
msgctxt ""
@@ -34094,7 +34918,7 @@ msgctxt ""
"hd_id051720170332046289\n"
"help.text"
msgid "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Working with VBA Macros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Arbeida med VBA-makroar</link></variable>"
#: vbasupport.xhp
msgctxt ""
@@ -34102,7 +34926,7 @@ msgctxt ""
"par_id05172017033242490\n"
"help.text"
msgid "<ahelp hid=\".\">Visual Basic for Applications (VBA) is an implementation of Microsoft's Visual Basic which is built into all Microsoft Office applications. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">«Visual Basic for Applications» (VBA) er ei «omsetjing» av Microsoft Visual Basic, som er innebygd i alle programma i Microsoft Office.</ahelp>"
#: vbasupport.xhp
msgctxt ""
@@ -34110,7 +34934,7 @@ msgctxt ""
"par_id051720170332428854\n"
"help.text"
msgid "Support for VBA is not complete, but it covers a large portion of the common usage patterns. Most macros use a manageable subset of objects in the Excel API (such as the Range, Worksheet, Workbook, etc.) and the support include those objects, and the most commonly used method/properties of those objects."
-msgstr ""
+msgstr "Støtta for VBA er ikkje fullstendig, men dekkjer ein stor del av dei mest brukte mønstra. Dei fleste makroane brukar ei oversiktleg undermengd av objekt i EXCEL-API (som område, tabellar, arbeidsmappe osv.) og støtta omfattar desse objekta og dei mest brukte metodane og eigenskapane for desse objekta."
#: vbasupport.xhp
msgctxt ""
@@ -34118,7 +34942,7 @@ msgctxt ""
"hd_id051720170350145604\n"
"help.text"
msgid "Loading Microsoft Office documents with executable VBA macros"
-msgstr ""
+msgstr "Lasta inn eit Microsoft Office-dokument med køyrbare VBA-makroar"
#: vbasupport.xhp
msgctxt ""
@@ -34126,7 +34950,7 @@ msgctxt ""
"par_id051720170350147298\n"
"help.text"
msgid "Go to <item type=\"menuitem\">Tools – Options – Load / Save – VBA Properties</item> and mark the <emph>Excutable code</emph> checkbox. Then load or open your document."
-msgstr ""
+msgstr "Gå til <item type=\"menuitem\">Verktøy → Innatillingar → Last inn / lagra → VBA-eigenskapar</item> og merk av for <emph>Køyrbar kode</emph>. Nå kan du opna eller lasta inn det aktuelle dokumentet."
#: vbasupport.xhp
msgctxt ""
@@ -34134,7 +34958,7 @@ msgctxt ""
"hd_id051720170400536628\n"
"help.text"
msgid "Runing VBA Macros"
-msgstr ""
+msgstr "Køyra VBA-makroar"
#: vbasupport.xhp
msgctxt ""
@@ -34142,7 +34966,7 @@ msgctxt ""
"par_id051720170400539565\n"
"help.text"
msgid "Run VBA macros in the same way as %PRODUCTNAME Basic macros."
-msgstr ""
+msgstr "Køyr VBA-makroar på same måten som du køyrer %PRODUCTNAME Basic-makroar."
#: vbasupport.xhp
msgctxt ""
@@ -34150,7 +34974,7 @@ msgctxt ""
"par_id051720170407404013\n"
"help.text"
msgid "Since support for VBA is not complete, you may have to edit the VBA code and complete the missing support with %PRODUCTNAME Basic objects, statements and functions."
-msgstr ""
+msgstr "Sidan støtta for VBA ikkje er fullstendig, kan det henda du må redigera VBA-koden og bruka uttrykk og funksjonar frå %PRODUCTNAME Basic-objekt for å erstatta dei manglande kodane."
#: vbasupport.xhp
msgctxt ""
@@ -34158,7 +34982,7 @@ msgctxt ""
"hd_id051720170400533411\n"
"help.text"
msgid "Editing VBA Macros"
-msgstr ""
+msgstr "Redigera VBA-makroar"
#: vbasupport.xhp
msgctxt ""
@@ -34166,7 +34990,7 @@ msgctxt ""
"par_id051720170400532486\n"
"help.text"
msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
-msgstr ""
+msgstr "VBA-makroar kan redigerast i %PRODUCTNAME Basic IDE."
#: vbasupport.xhp
msgctxt ""
@@ -34174,7 +34998,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">VBA-eigenskapar</link>"
#: vbasupport.xhp
msgctxt ""
@@ -34182,4 +35006,4 @@ msgctxt ""
"par_id051720170407401872\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
diff --git a/source/nn/helpcontent2/source/text/scalc/00.po b/source/nn/helpcontent2/source/text/scalc/00.po
index 06760f786f1..c8014ece7b9 100644
--- a/source/nn/helpcontent2/source/text/scalc/00.po
+++ b/source/nn/helpcontent2/source/text/scalc/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 16:54+0000\n"
+"PO-Revision-Date: 2017-06-16 16:15+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496681682.000000\n"
+"X-POOTLE-MTIME: 1497629717.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"fuellmodus\">Vel <emph>Verktøy → Sporing → Sporvisar</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3154018\n"
"help.text"
msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exzws\">Vel <emph>Verktøy → Tilpass verdi</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/scalc/01.po b/source/nn/helpcontent2/source/text/scalc/01.po
index 73bfa5a92d0..c91fb2a57e9 100644
--- a/source/nn/helpcontent2/source/text/scalc/01.po
+++ b/source/nn/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 19:30+0000\n"
+"PO-Revision-Date: 2017-06-16 16:17+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496777448.000000\n"
+"X-POOTLE-MTIME: 1497629867.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -53790,7 +53790,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
-msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Klikk på kjeldetypen for den markerte datakjelda.</ahelp> Du kan velja frå fire kjeldetypar: «Tabell», «Spørjing», «SQL» og «SQL (Native)»."
+msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Klikk på kjeldetypen for den markerte datakjelda.</ahelp> Du kan velja frå fire kjeldetypar: «Tabell», «Spørjing», «SQL» og «SQL (lokal)»."
#: 12090101.xhp
msgctxt ""
@@ -55078,7 +55078,7 @@ msgctxt ""
"par_idN105A5\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Turns on the automatic show feature.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/show\">Slår på automatisk vising.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -55094,7 +55094,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Enter the maximum number of items that you want to show automatically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/items\">Skriv inn det maksimale talet på element som skal visast automatisk.</ahelp>"
#: 12090106.xhp
msgctxt ""
@@ -62606,7 +62606,7 @@ msgctxt ""
"par_id05022017061559141\n"
"help.text"
msgid "Weekday number returned"
-msgstr ""
+msgstr "Returnerte nummeret på vekedagen"
#: func_weekday.xhp
msgctxt ""
@@ -62702,7 +62702,7 @@ msgctxt ""
"par_id3156188\n"
"help.text"
msgid "These values apply only to the standard date format that you select under <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME Calc - Calculate</item>."
-msgstr ""
+msgstr "Denne verdien vert berre brukt for standard datoformat som er vald i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME → Innstillingar</item></caseinline><defaultinline><item type=\"menuitem\">Verktøy → Innstillingar</item></defaultinline></switchinline><item type=\"menuitem\">→ %PRODUCTNAME Calc → Rekn ut</item>."
#: func_weekday.xhp
msgctxt ""
@@ -62718,7 +62718,7 @@ msgctxt ""
"par_id3150317\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"2000-06-14\")</item> returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr ""
+msgstr "<item type=\"literal\">=VEKEDAG(\"2000-06-14\")</item> returnerer 4. (Typeparameteren manglar, difor vert standardoppsettet brukt. Standardoppsettet byrjar med søndag som dag nummer 1. 14. juni 2000 var ein onsdag og difor dag nummer 4 i dette oppsettet). "
#: func_weekday.xhp
msgctxt ""
@@ -62726,7 +62726,7 @@ msgctxt ""
"par_id3153174\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";2)</item> returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr ""
+msgstr "<item type=\"literal\">=VEKEDAG(\"24.7.1996\";2)</item> returnerer 3 (Type-parameteren er 2, difor er måndag dag nummer 1. 24. juli 1996 var ein onsdag og difor dag nummer 3)."
#: func_weekday.xhp
msgctxt ""
@@ -62734,7 +62734,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"1996-07-24\";1)</item> returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr ""
+msgstr "<item type=\"literal\">=VEKEDAG(\"24.7.1996\";1)</item> returnerer 4 (Type-parameteren er 1, difor er søndag dag nummer 1. 24. Juli 1996 var ein onsdag og difor dag nummer 4)."
#: func_weekday.xhp
msgctxt ""
@@ -62742,7 +62742,7 @@ msgctxt ""
"par_id050220170616006699\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(\"2017-05-02\";14)</item> returns 6 (the Type parameter is 14, therefore Thursday is day number 1. May 2, 2017 was a Tuesday and therefore day number 6)"
-msgstr ""
+msgstr "<item type=\"literal\">=VEKEDAG(\"02.05.2017\";1)</item> returnerer 6 (Type-parameteren er 14, difor er torsdag dag nummer 1. 2.. mai 2017 var ein torsdag og difor dag nummer 6)"
#: func_weekday.xhp
msgctxt ""
@@ -62750,7 +62750,7 @@ msgctxt ""
"par_id3150575\n"
"help.text"
msgid "<item type=\"literal\">=WEEKDAY(NOW())</item> returns the number of the current day."
-msgstr ""
+msgstr "<item type=\"literal\">=VEKEDAG(NO())</item> returnerer talet for dagen i dag."
#: func_weekday.xhp
msgctxt ""
@@ -62758,7 +62758,7 @@ msgctxt ""
"par_id3150588\n"
"help.text"
msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/><item type=\"literal\">IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")</item>"
-msgstr ""
+msgstr "Dersom du ønskjer å leggja inn ein funksjon som viser om A1 er ein arbeidsdag, kan du bruka VISS og VEKEDAG slik i A1:<br/><item type=\"literal\">VISS(VEKEDAG(A1;2<6;\"Arbeidsdag\";\"Helg\")</item>"
#: func_weeknum.xhp
msgctxt ""
@@ -63014,7 +63014,7 @@ msgctxt ""
"par_idN105E4\n"
"help.text"
msgid "This function exists for interoperability with %PRODUCTNAME releases older than 5.1.0 and OpenOffice.org. It calculates week numbers for a week numbering system in that week number 1 is the week that contains the January 4th. This function does not provide interoperability with other spreadsheet applications. For new documents use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> or <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOWEEKNUM</link> function instead."
-msgstr ""
+msgstr "Denne funksjonen er tatt med slik at det er råd å bruka utgåver av %PRODUCTNAME eldre enn 5.1.0 og OpenOffice.org. Utrekninga av vekenummera tar utgangspunkt i at den veka som inneheld 4. januar er veke nummer 1. Denne funksjonen kan ikkje brkast saman med andre program i rekneark. For nyare dokument må du bruka funksjonen <link href=\"text/scalc/01/func_weeknum.xhp\">VEKENR</link> eller <link href=\"text/scalc/01/func_isoweeknum.xhp\">ISOVEKENR</link> i staden."
#: func_weeknum_ooo.xhp
msgctxt ""
@@ -63198,7 +63198,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WORKDAY.INTL"
-msgstr ""
+msgstr "ARBEIDSDAG.INTL"
#: func_workday.intl.xhp
msgctxt ""
@@ -63206,7 +63206,7 @@ msgctxt ""
"bm_id231020162341219565\n"
"help.text"
msgid "<bookmark_value>WORKDAY.INTL function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ARBEIDSDAG.INTL-funksjonen</bookmark_value>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63214,7 +63214,7 @@ msgctxt ""
"hd_id231020162348002143\n"
"help.text"
msgid "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link></variable>"
-msgstr ""
+msgstr "<variable id=\"workdaysintl\"><link href=\"text/scalc/01/func_workday.intl.xhp\">ARBEIDSDAGAR.INTL</link></variable>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63222,7 +63222,7 @@ msgctxt ""
"par_id23102016234837285\n"
"help.text"
msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Resultatet er eit datotal som kan formaterast som ein dato. Brukaren kan sjå datoen for ein dag som er eit bestemt tal på arbeidsdagar frå startdatoen (før eller etter). Det er høve til å definere helger og fridagar. Den valfrie helge-parameteren (eller ein tekststreng) kan nyttast til å definere helgedagane (eller fridagane i veka kvar veke). Brukaren kan også velja å definere ei liste med fridagar. Helgedagane og dei brukardefinerte fridagane er ikkje talde med som arbeidsdagar.</ahelp>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63230,7 +63230,7 @@ msgctxt ""
"hd_id241020160008306802\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Syntaks"
#: func_workday.intl.xhp
msgctxt ""
@@ -63238,7 +63238,7 @@ msgctxt ""
"par_id241020160008306838\n"
"help.text"
msgid "<item type=\"literal\">WORKDAY.INTL(StartDate; Days; Weekend; Holidays)</item>"
-msgstr ""
+msgstr "<item type=\"literal\">ARBEIDSDAGAR.INTL(StartDato; Dagar; Helg; Fridagar)</item>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63246,7 +63246,7 @@ msgctxt ""
"par_id241020160008308885\n"
"help.text"
msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required."
-msgstr ""
+msgstr "<emph>StartDato</emph> er den første datoen som utrekninga vert gjort for. Dersom startdatoen er ein arbeidsdag, vert også denne datoen tatt med i utrekninga. Dette er nødvendig."
#: func_workday.intl.xhp
msgctxt ""
@@ -63254,7 +63254,7 @@ msgctxt ""
"par_id241020160008305329\n"
"help.text"
msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
-msgstr ""
+msgstr "<emph>Dagar</emph> er talet på arbeidsdagar. Ein positiv verdi står for dagar etter startdagen, ein negativ verdi for dagar før startdagen."
#: func_workday.intl.xhp
msgctxt ""
@@ -63262,7 +63262,7 @@ msgctxt ""
"hd_id241020160012172138\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Eksempel"
#: func_workday.intl.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id241020160012177196\n"
"help.text"
msgid "What date comes 20 workdays after December 13, 2016? Enter the start date in C3 and the number of workdays in D3."
-msgstr ""
+msgstr "Kva dato kjem 20 arbeidsdagar etter 13. desember 2016? Skriv inn startdatoen i C3 og talet på arbeidsdagar i D3."
#: func_workday.intl.xhp
msgctxt ""
@@ -63278,7 +63278,7 @@ msgctxt ""
"par_id241020160012178429\n"
"help.text"
msgid "The weekend parameter (number) may be left blank or defined as 1 for default weekend (non-working days) – Saturday and Sunday."
-msgstr ""
+msgstr "Helgeparameteren (eit tal) kan vere tom eller definerast som 1 for standard fridagar – laurdag og søndag."
#: func_workday.intl.xhp
msgctxt ""
@@ -63286,7 +63286,7 @@ msgctxt ""
"par_id241020160012172125\n"
"help.text"
msgid "Cells F3 to J3 contain five (5) holidays for Christmas and New Year in date format: December 24, 2016; December 25, 2016; December 26, 2016; December 31, 2016; and January 1, 2017."
-msgstr ""
+msgstr "Cellene F3 til J3 inneheld fem (5) fridagar i jula og nyttåret i datoformatet: 24. desember 2016; 25 desember 2016; 26. desember 2016; 31. desember 2016; 1. januar 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63294,7 +63294,7 @@ msgctxt ""
"par_id241020160012177923\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;;F3:J3)</item> returns January 11, 2017 in the result cell, say D6 (use date format for the cell)."
-msgstr ""
+msgstr "<item type=\"literal\">=ARBEIDSDAG.INTL(C3;D3;;F3:J3)</item> returnerer 11. januar 2017 i resultatcella, for eksempel D6. (Bruk datoformat for cella)."
#: func_workday.intl.xhp
msgctxt ""
@@ -63302,7 +63302,7 @@ msgctxt ""
"par_id24102016001217206\n"
"help.text"
msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7."
-msgstr ""
+msgstr "Bruk helgeparameteren 7 for å definere fredag og laurdag som fridagar."
#: func_workday.intl.xhp
msgctxt ""
@@ -63310,7 +63310,7 @@ msgctxt ""
"par_id241020160012178562\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;7;F3:J3)</item> returns January 15, 2017 with weekend parameter 7."
-msgstr ""
+msgstr "<item type=\"literal\">=ARBEIDSDAG.INTL(C3;D3;7;F3:J3)</item> returnerer 15. januar 2017 med 7 som helgeparameter."
#: func_workday.intl.xhp
msgctxt ""
@@ -63318,7 +63318,7 @@ msgctxt ""
"par_id241020160012176149\n"
"help.text"
msgid "To define Sunday only the weekend day, use the weekend parameter 11."
-msgstr ""
+msgstr "Bruk helgeparameteren 11 for å definere søndag som einaste fridag."
#: func_workday.intl.xhp
msgctxt ""
@@ -63326,7 +63326,7 @@ msgctxt ""
"par_id241020160012181455\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;11;F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=ARBEIDSDAG.INTL(C3;D3;11;F3:J3)</item> returnerer 9. januar 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63334,7 +63334,7 @@ msgctxt ""
"par_id24102016001218469\n"
"help.text"
msgid "Alternatively, use the weekend string \"0000001\" for Sunday only weekend."
-msgstr ""
+msgstr "Alternativt kan strengen \"0000001\" brukast for søndag som einaste fridag."
#: func_workday.intl.xhp
msgctxt ""
@@ -63342,7 +63342,7 @@ msgctxt ""
"par_id241020160012183680\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3;\"0000001\";F3:J3)</item> returns January 9, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=ARBEIDSDAG.INTL(C3;D3;\"0000001\";F3:J3)</item> returnerer 9. januar 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63350,7 +63350,7 @@ msgctxt ""
"par_id241020160012181870\n"
"help.text"
msgid "The function can be used without the two optional parameters – Weekday and Holidays – by leaving them out:"
-msgstr ""
+msgstr "Funksjonen kan brukast utan dei to valfrie parametera – vekedag og fridagar – ved å sløyfa dei:"
#: func_workday.intl.xhp
msgctxt ""
@@ -63358,7 +63358,7 @@ msgctxt ""
"par_id241020160012182048\n"
"help.text"
msgid "<item type=\"literal\">=WORKDAY.INTL(C3;D3)</item> gives the result: January 10, 2017."
-msgstr ""
+msgstr "<item type=\"literal\">=ARBEIDSDAG.INTL(C3;D3)</item> gir resultatet: 10. januar 2017."
#: func_workday.intl.xhp
msgctxt ""
@@ -63366,7 +63366,7 @@ msgctxt ""
"par_id231020162253594361\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_networkdays.xhp\">NETTO.ARBEIDSDAGAR</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63374,7 +63374,7 @@ msgctxt ""
"par_id241020160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETWORKDAYS.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_networkdays.intl.xhp\">NETTO.ARBEIDSDAGAR.INTL</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63382,7 +63382,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.xhp\">ARBEIDSDAG</link>"
#: func_workday.intl.xhp
msgctxt ""
@@ -63390,7 +63390,7 @@ msgctxt ""
"par_id23102016225717242\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\">Date functions</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Datofunksjonar</link>"
#: func_workday.xhp
msgctxt ""
@@ -63510,7 +63510,7 @@ msgctxt ""
"par_id241030160012187036\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_workday.intl.xhp\">WORKDAY.INTL</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_workday.intl.xhp\">ARBEIDSDAG.INTL</link>"
#: func_workday.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/scalc/02.po b/source/nn/helpcontent2/source/text/scalc/02.po
index 8dde206834a..36808600e23 100644
--- a/source/nn/helpcontent2/source/text/scalc/02.po
+++ b/source/nn/helpcontent2/source/text/scalc/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2015-08-21 18:43+0000\n"
+"PO-Revision-Date: 2017-06-07 10:37+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1440182593.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496831837.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145785\" src=\"sc/res/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Ikon</alt></image>"
#: 06040000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/scalc/guide.po b/source/nn/helpcontent2/source/text/scalc/guide.po
index c2c933fcdda..db9e00d1543 100644
--- a/source/nn/helpcontent2/source/text/scalc/guide.po
+++ b/source/nn/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-01 09:00+0000\n"
+"PO-Revision-Date: 2017-06-07 10:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496307652.000000\n"
+"X-POOTLE-MTIME: 1496832470.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"bm_id3149456\n"
"help.text"
msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>deaktivere; automatiske endringar</bookmark_value><bookmark_value>tabellar; deaktivere automatiske endringar i</bookmark_value><bookmark_value>autoinntastingsfunksjon til/frå</bookmark_value><bookmark_value>tekst i celler; autoinntastingsfunksjon</bookmark_value><bookmark_value>celler; autoinntastingsfunksjon til tekst</bookmark_value><bookmark_value>inntastingshjelp i rekneark</bookmark_value><bookmark_value>endra; innskriving i celler</bookmark_value><bookmark_value>autokorrekturfunksjon; celleinnhald</bookmark_value><bookmark_value>celleinnskriving; autoinntastingsfunksjon</bookmark_value><bookmark_value>små bokstavar; autoinntastingsfunksjon (i celler)</bookmark_value><bookmark_value>store bokstavar; Autoinntastingsfunksjon (i celler)</bookmark_value><bookmark_value>datoformat; unngå konvertering til</bookmark_value><bookmark_value>talfullføring til/frå</bookmark_value><bookmark_value>tekstfulføring til/frå</bookmark_value><bookmark_value>ordfullføring til/frå</bookmark_value>"
#: auto_off.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"hd_id3149456\n"
"help.text"
msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Slå av automatiske endringar</link></variable>"
#: auto_off.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-msgstr ""
+msgstr "Som standard retter $[officename] automatisk opp mange vanlige skrivefeil og påfører formatering medan du skriv. Når de skjer, kan du gjere om automatiske endringar med <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Z."
#: auto_off.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Tools - AutoInput</emph></link>."
-msgstr ""
+msgstr "For å slå autoinntasting av og på, set eller fjernar du merket framføre <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Verktøy → Autoinntasting</emph></link>."
#: auto_off.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3152992\n"
"help.text"
msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Tools - AutoInput</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Verktøy → Autoinntasting</link>"
#: auto_off.xhp
msgctxt ""
@@ -8534,7 +8534,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A) on all pages, do the following:"
-msgstr ""
+msgstr "Dersom du for eksempel vil skriva ut dei to øvste radene og den første kolonnen (A) på kvar side, gjer du slik:"
#: print_title_row.xhp
msgctxt ""
@@ -9454,7 +9454,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline> key as you click each cell."
-msgstr ""
+msgstr "Merk cellene som inneheld verdiane som vert endra mellom scenarioa. Du merkjer fleire celler ved å halda nede <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Cmd</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline> medan du klikkar på kvar celle."
#: scenario.xhp
msgctxt ""
@@ -9502,7 +9502,7 @@ msgctxt ""
"par_id3155764\n"
"help.text"
msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/res/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
-msgstr ""
+msgstr "Klikk på knappen <emph>Scenario</emph> <image id=\"img_id7617114\" src=\"sc/res/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> i vindauget for dokumentstruktur."
#: scenario.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id3148842\n"
"help.text"
msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/res/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
-msgstr ""
+msgstr "Vel dramodusen <emph>Set inn som lenkje</emph> <image id=\"img_id3152985\" src=\"sw/res/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Ikon</alt></image> i dokumentstrukturen ."
#: webquery.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/schart/01.po b/source/nn/helpcontent2/source/text/schart/01.po
index 57827d922b2..cca4f996160 100644
--- a/source/nn/helpcontent2/source/text/schart/01.po
+++ b/source/nn/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-04 18:05+0000\n"
+"PO-Revision-Date: 2017-06-07 10:57+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496599530.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496833053.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3150298\n"
"help.text"
msgid "<variable id=\"titel\"><ahelp hid=\".\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
-msgstr ""
+msgstr "<variable id=\"titel\"><ahelp hid=\".\">Opnar eit dialogvindauge der du kan skriva inn eller endra titlar i ein tabell.</ahelp></variable> Du kan skriva teksten for hovudtittelen, undertittelen og akseoverskriftene og velja om dei skal visast."
#: 04010000.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3149409\n"
"help.text"
msgid "<ahelp hid=\".\">Does not show any error bars.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ikkje vis feillinjene.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3151390\n"
"help.text"
msgid "<ahelp hid=\".\">Displays constant values that you specify in the Parameters area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser konstantverdiar som er sette i parameterområdet.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3150048\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser ein prosentdel. Visinga refererer til det tilhøyrande datapunktet. Set prosentverdien i området for parameter.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"par_id3157979\n"
"help.text"
msgid "Variance: Displays the variance calculated from the number of data points and respective values."
-msgstr ""
+msgstr "Varians: Viser variansen rekna ut frå talet på datapunkt og dei respektive verdiane deira."
#: 04050000.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3153249\n"
"help.text"
msgid "Standard Deviation: Displays the standard deviation (square root of the variance). Unlike other functions, error bars are centered on the mean."
-msgstr ""
+msgstr "Standardavvik: Viser standardavviket (kvadratrota av variansen). Ulikt andre funksjonar, vert feilstolpane sentrerte på middelverdien."
#: 04050000.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_id3149870\n"
"help.text"
msgid "Error Margin: Displays the highest error margin in percent according to the highest value of the data group. Set the percentage in the Parameters area."
-msgstr ""
+msgstr "Feilmargin: Viser den høgaste feilmarginen i prosent i forhold til den høgaste verdien i datagruppa. Set prosenten i området for parameter."
#: 04050000.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"hd_id3156396\n"
"help.text"
msgid "Error Indicator"
-msgstr ""
+msgstr "Feilindikator"
#: 04050000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id18082016153820777\n"
"help.text"
msgid "The following regression types are available:"
-msgstr ""
+msgstr "Desse regresjonstypane er tilgjengelege:"
#: 04050100.xhp
msgctxt ""
@@ -6614,7 +6614,7 @@ msgctxt ""
"par_id4634235\n"
"help.text"
msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph> tab page of the data series properties dialog."
-msgstr ""
+msgstr "Diagrammet vert laga med standardinnstillingane. Etter at diagrammet er ferdig, kan du endra eigenskapane for å endra utsjånaden. Linjestilar og ikon kan endrast på fana <emph>Linje</emph> i dialogvindauget for objekteigenskapar til dataserien."
#: type_xy.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared.po b/source/nn/helpcontent2/source/text/shared.po
index 7a42a193ceb..b2c2e80f61c 100644
--- a/source/nn/helpcontent2/source/text/shared.po
+++ b/source/nn/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-26 19:16+0000\n"
+"PO-Revision-Date: 2017-06-14 19:12+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495826182.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497467579.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Vel ei ekstruderingsdjupn"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Vel ein perspektiv eller parallell ekstruderingsmetode."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Vel retning på lyssetjinga. "
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Vel styrke på lyssetjinga."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Vel eit overflatemateriale eller ei trådrammevising."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Trykk for å bruka justeringa på dei valde Fontworkobjekta."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Trykk for å bruka mellomrommet mellom teikna i dei valde Fontworksobjekta."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Opnar dialogvindauget for mellomrom mellom teikna i Fontwork. Der kan du skriva inn ein verdi for mellomrom."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Slår <link href=\"text/shared/00/00000005.xhp#kerning\">kniping</link> av teiknpar på eller av."
#: main0108.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN1064A\n"
"help.text"
msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id1619006\">ikon</alt></image>"
#: main0108.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"hd_id230120170827187813\n"
"help.text"
msgid "User Guides"
-msgstr ""
+msgstr "Brukarrettleiingar"
#: main0108.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id230120170827189453\n"
"help.text"
msgid "<ahelp hid=\".uno:Documentation\">Opens the documentation page in the web browser, where users can download, read or purchase %PRODUCTNAME user guides, written by the community.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Documentation\">Opnar dokumentasjonssida i nettlesaren der brukaren kan lasta ned, lesa eller skaffa seg brukarrettleiingar for %PRODUCTNAME.</ahelp> "
#: main0108.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id230120170827196253\n"
"help.text"
msgid "Get Help Online"
-msgstr ""
+msgstr "Få hjelp på nettet"
#: main0108.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id230120170827196850\n"
"help.text"
msgid "<ahelp hid=\".uno:QuestionAnswers\">Opens the community support page in the web browser.</ahelp> Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the <link href=\"http://www.documentfoundation.org/gethelp/support/\">page of professional %PRODUCTNAME support</link>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:QuestionAnswers\">Opnar sida for brukarstøtte (på engelsk) i nettlesaren.</ahelp> Bruk denne sida til å spørja om bruk av %PRODUCTNAME. For profesjonell støtte med ytingsavtale besøk nettsida for <link href=\"http://www.documentfoundation.org/gethelp/support/\">page of professional %PRODUCTNAME support</link>."
#: main0108.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id230120170903409011\n"
"help.text"
msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Restart in Safe Mode</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/profile_safe_mode.xhp\">Start på nytt i sikker modus</link>"
#: main0108.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id281120160939285779\n"
"help.text"
msgid "<ahelp hid=\".uno:SafeMode\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SafeMode\">Sikker modus er ein modus der %PRODUCTNAME vert opna med ein ny brukarprofil og fråkopla maskinvareakselerasjon. Dette kan vere til hjelp for å gjenopprette ein installasjon av %PRODUCTNAME som ikkje fungerer.</ahelp>"
#: main0108.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/00.po b/source/nn/helpcontent2/source/text/shared/00.po
index b9473b609b8..3d55e48aed0 100644
--- a/source/nn/helpcontent2/source/text/shared/00.po
+++ b/source/nn/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-04 18:08+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-12 11:10+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496599703.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497265837.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"par_id2\n"
"help.text"
msgid "The following file types do not show an options dialog: RAS, SVG, TIFF, XPM."
-msgstr ""
+msgstr "Desse filtypane vert ikkje viste i dialogen for eksportinnstillingar for grafikk: RAS, SVG, TIFF, XPM."
#: 00000200.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3153581\n"
"help.text"
msgid "On the <emph>Print Preview</emph> bar of a text document, click"
-msgstr ""
+msgstr "På verktøylinja <emph>Førehandsvising av utskrift</emph> i eit tekstdokument, trykk"
#: 00000401.xhp
msgctxt ""
@@ -8694,7 +8694,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
-msgstr "<variable id=\"ldap\">IVel <emph>Rediger → Database → Innstillingar</emph> i eit databasevindauge av typen Adressebok - LDAP</variable>"
+msgstr "<variable id=\"ldap\">Vel Rediger → Database → Innstillingar i eit databasevindauge av typen adressebok - LDAP</variable>"
#: 00000450.xhp
msgctxt ""
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Vel fana <emph>Verktøy → Disposisjonsnummerering → Plassering</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Knapp på <emph>Biletlinja</emph>:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/01.po b/source/nn/helpcontent2/source/text/shared/01.po
index 8c04163fde3..e7f8412aab9 100644
--- a/source/nn/helpcontent2/source/text/shared/01.po
+++ b/source/nn/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-04 18:16+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-08 19:46+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496600174.000000\n"
+"X-POOTLE-MTIME: 1496951199.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Når du brukar <item type=\"menuitem\">Fil → Malar → Lagra som mal</item> for å lagra ein mal, vert malen lagra i brukarmappa for malar. Når du opnar eit dokument som er basert på ein slik mal, vert dokumentet kontrollert for å sjå om det er endringar i malen slik som omtalt nedanfor. Malen som vert knytt til dokumentet vert av og til kalla ein «fast mal». "
#: 01020000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Vel avsnittsstilen du vil bruka for å dela kjeldedokumentet i underdokument.</ahelp> Standardstilen for avsnitt er «Overskrift 1»."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -8966,7 +8966,7 @@ msgctxt ""
"par_id3149031\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/InsertFloatingFrameDialog\">Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/InsertFloatingFrameDialog\">Endrar eigenskapane til den valde flytande ramma. Flytande rammer fungerer best når dei inneheld eit HTML-dokument og når dei vert sette inn i eit anna HTML-dokument.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8982,7 +8982,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore ( _ ).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Skriv inn eit namn for den flytande ramma. Namnet kan ikkje innehalda mellomrom, spesialteikn eller byrja med ein understrek (_).</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8998,7 +8998,7 @@ msgctxt ""
"par_id3156414\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edurl\">Enter the path and the name of the file that you want to display in the floating frame. You can also click the <emph>Browse</emph> button and locate the file that you want to display.</ahelp> For example, you can enter:"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edurl\">Skriv inn stien og namnet til fila som du vil visa i den flytande ramma. Du kan også trykkja knappen <emph>…</emph> for å finna fila du vil visa.</ahelp> For eksempel kan du skriva inn:"
#: 02210101.xhp
msgctxt ""
@@ -9030,7 +9030,7 @@ msgctxt ""
"par_id3155355\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/buttonbrowse\">Locate the file that you want to display in the selected floating frame, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/buttonbrowse\">Leit fram fila du vil visa i den flytande ramma, og trykk <emph>Opna</emph>.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9038,7 +9038,7 @@ msgctxt ""
"hd_id3146957\n"
"help.text"
msgid "Scroll Bar"
-msgstr ""
+msgstr "Rullefelt"
#: 02210101.xhp
msgctxt ""
@@ -9062,7 +9062,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaron\">Displays the scrollbar for the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaron\">Viser rullefeltet for den flytande ramma.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9078,7 +9078,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaroff\">Hides the scrollbar for the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbaroff\">Gøymer rullefeltet for den flytande ramma.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9094,7 +9094,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbarauto\">Mark this option if the currently active floating frame can have a scrollbar when needed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/scrollbarauto\">Narker for dette valet viss den aktive flytande ramma kan ha eit rullefelt når det er nødvendig.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9126,7 +9126,7 @@ msgctxt ""
"par_id3159147\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/borderon\">Displays the border of the floating frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/borderon\">Viser rullefeltet for den flytande ramma.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9174,7 +9174,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/width\">Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/width\">Vel kor stor vassrett avstand du vil ha mellom venstre- og høgrekanten og innhaldet i ramma. Både dokumentet på utsida og i ramma må vera HTML-dokument.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Applies the default horizontal spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultwidth\">Brukar standard vassrett avstand.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9206,7 +9206,7 @@ msgctxt ""
"par_id3149670\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/height\">Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/height\">Skriv inn kor stor loddrett avstand du vil ha mellom venstre- og høgrekanten og innhaldet i ramma. Både dokumentet på utsida og i ramma må vera HTML-dokument.</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -9214,7 +9214,7 @@ msgctxt ""
"hd_id3150866\n"
"help.text"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#: 02210101.xhp
msgctxt ""
@@ -9222,7 +9222,7 @@ msgctxt ""
"par_id3150401\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/defaultheight\">Applies the default vertical spacing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/defaultheight\">Brukar standard loddrett avstand.</ahelp>"
#: 02220000.xhp
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcaction\">Lists the changes that were made in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcaction\">Listar ut endringane som er gjort i dokumentet.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"par_id3153178\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcauthor\">Lists the user who made the change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcauthor\">Viser brukaren som gjorde endringane.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10582,7 +10582,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdate\">Lists the date and time that the change was made.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdate\">Viser tidspunktet då endringane vart gjort.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calccomment\">Lists the comments that are attached to the change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calccomment\">Viser merknadane som er lagt til endringa.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10710,7 +10710,7 @@ msgctxt ""
"par_id3153210\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcedit\">Edit the comment for the selected change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcedit\">Rediger merknaden til den valde endringa.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10742,7 +10742,7 @@ msgctxt ""
"par_id3151280\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writeraction\">Sorts the list according to the type of change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writeraction\">Sorterer lista i høve til endringstype.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10758,7 +10758,7 @@ msgctxt ""
"par_id3149960\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerauthor\">Sorts the list according to the Author.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerauthor\">Sorterer lista etter forfattar.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3153223\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerdate\">Sorts the list according to the date and time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/writerdate\">Sorterer lista etter tidspunkt.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3157976\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcposition\">Sorts the list in a descending order according to the position of the changes in the document. This is the default sorting method.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcposition\">Sorterer lista nedover ut frå plasseringa til endringane i dokumentet. Dette er standard sorteringsmetode.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtrerer lista over endringar etter tidspunktet du vel.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10870,7 +10870,7 @@ msgctxt ""
"par_id3143270\n"
"help.text"
msgid "<ahelp hid=\".\">Enters the current date and time into the corresponding boxes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn gjeldande dato og tidspunkt i boksane.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtrerer lista over endringar ut frå namnet på forfattaren du vel frå lista.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -10902,7 +10902,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\".\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\".\">Filtrerer lista over endringar i høve til celleområdet du oppgjev.Trykk <emph>Vel referanse</emph>-knappen (<emph>…</emph>) for å velja celleområde.</ahelp></caseinline></switchinline>"
#: 02230402.xhp
msgctxt ""
@@ -10974,7 +10974,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\".\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\".\">Filtrer lista med endringar etter kva type endringar du vel i feltet <emph>Handling</emph>.</ahelp></caseinline></switchinline>"
#: 02230402.xhp
msgctxt ""
@@ -10990,7 +10990,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtrerer merknadane til endringane ut frå stikkorda du skriv inn.</ahelp>"
#: 02230402.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/zoommenu/optimal\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at the moment the command is started.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/zoommenu/optimal\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Tilpassar storleiken på visinga av det merkte celleområdet straks kommandoen byrjar. </caseinline><defaultinline> Tilpassar visinga slik at ho passar med breidda på dokumentet straks kommandoen byrjar.</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11438,7 +11438,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/zoommenu/page\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/zoommenu/page\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Tilpassar visinga slik at ho passar høgda på det merkte celleområdet straks kommandoen byrjar.</caseinline><defaultinline>Viser heile sida på skjermen.</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3143231\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/zoommenu/width\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/zoommenu/width\">Viser heile dokumentbreidda. Det kan henda at toppen og botnen av sida ikkje vert synleg.</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -12398,7 +12398,7 @@ msgctxt ""
"par_id3154288\n"
"help.text"
msgid "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Click the special character(s) that you want to insert, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Vel dei spesialteikna du vil setja inn og trykk <emph>Set inn</emph>.</ahelp>"
#: 04100000.xhp
msgctxt ""
@@ -14030,7 +14030,7 @@ msgctxt ""
"par_id3153323\n"
"help.text"
msgid "Use question marks (?), zeroes (0) or number signs (#) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
-msgstr ""
+msgstr "Bruk spørjeteikn (?), nullar (0) eller talteiknet (#) for å representera tal på siffer som kan takast med i teljaren og nemnaren til ein brøk. Brøkar som ikkje passar til mønsteret du vel, vert viste som flyttal."
#: 05020301.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"par_id3154380\n"
"help.text"
msgid "Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000 for each separator. The examples below use comma as thousands separator:"
-msgstr ""
+msgstr "Avhengig av språkinnstillingane kan du bruka komma, punktum eller mellomrom som tusenskilje. Du kan òg bruka skiljeteiknet til å forminske talet som er vist som multippel av 1000. Eksempelet nedanfor brukar komma som tusenskilje."
#: 05020301.xhp
msgctxt ""
@@ -14230,7 +14230,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\". If you use space as thousands separator, you need to insert spaces between quotes in the previous examples: <emph>#.#\" meters\"</emph> or <emph>#.#\\ \\m</emph> to get the correct result."
-msgstr ""
+msgstr "For å setja inn tekst i ei celle set til talformat, set du teksten mellom doble hermeteikn (\") eller ein bakoverstrek (\\) framføre ein enkel bokstav. Skriv for eksempel <emph>#,#\"meter\"</emph> for å visa «3,5 meter» eller <emph>#,# m</emph> for å visa «3,5 m». Dersom du brukar mellomrom som tusenskilje, må du setja inn mellomrom i eksempla: <emph>#.#\" meter\"</emph> eller <emph>#.#\\ \\m</emph> for å få korrekt resultat."
#: 05020301.xhp
msgctxt ""
@@ -14406,7 +14406,7 @@ msgctxt ""
"par_id3146923\n"
"help.text"
msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10<sup>5</sup>, and 0.000065 as 6.5 x 10<sup>-5</sup>. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part: <emph>###.##E+00</emph> for instance."
-msgstr ""
+msgstr "Vitskapleg notasjon lèt deg skriva veldig store eller veldig små tal på ein kort måte. I vitskapleg notasjon vert for eksempel «650000» skrive som «6,5 × 10<sup>5</sup>» og «0,000065» som «6.5 × 10<sup>-5</sup>». I <item type=\"productname\">%PRODUCTNAME</item> vert desse tala skrivne som «6.5E+5» og «6.5E-5». For å laga eit talformat som viser tal i vitskapleg notasjon, skriv inn «#» eller «0» og deretter ein av desse kodane: «E-», «E+», «e-» eller «e+». Dersom teikn er sløyfa etter E eller e, vert det ikkje vist for positive eksponentverdiar. For å få teknisk notasjon, skriv inn 3 teikn (0 eller #) i heiltalsdelen. For eksempel ###,##E+00."
#: 05020301.xhp
msgctxt ""
@@ -14462,7 +14462,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, <emph>[$€-407]</emph> represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
-msgstr ""
+msgstr "Du kan òg velja lokalinnstillingar for valuta ved å skriva inn landskoden etter symbolet. For eksempel står <emph>[$€-407]</emph> for Euro i Tyskland. For å sjå koden til eit land, vel landet i lista <emph>Språk</emph> under fana <emph>Tal</emph> i dialogvindauget <emph>Formater celler</emph>."
#: 05020301.xhp
msgctxt ""
@@ -14702,7 +14702,7 @@ msgctxt ""
"par_id1002200811423518\n"
"help.text"
msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you need to know the formatting codes used in that other locale."
-msgstr ""
+msgstr "Formateringskodane som er lista opp ovanfor vil fungera i den språkversjonen av %PRODUCTNAME du brukar. Om du skifter plasseringa av %PRODUCTNAME til ein annan språkvariant, må du vita kva formateringskodar som vert brukte der."
#: 05020301.xhp
msgctxt ""
@@ -14982,7 +14982,7 @@ msgctxt ""
"par_id3152419\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Viss du utfører ei utrekning som tek med éi eller fleire celler som brukar eit datoformat, vert resultatet formatert slik:</caseinline></switchinline>"
#: 05020301.xhp
msgctxt ""
@@ -15166,7 +15166,7 @@ msgctxt ""
"par_id3149174\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dato og klokkeslett-formatet viser datoen og klokkeslettet for då ei oppføring vart gjort i ei celle med dette formatet. </caseinline></switchinline>"
#: 05020301.xhp
msgctxt ""
@@ -15310,7 +15310,7 @@ msgctxt ""
"hd_id3158404\n"
"help.text"
msgid "Displaying Numbers Using Native Characters"
-msgstr "Visa tal med nasjonale teikn"
+msgstr "Visa tal med lokale teikn"
#: 05020301.xhp
msgctxt ""
@@ -15318,7 +15318,7 @@ msgctxt ""
"hd_id231020161309289931\n"
"help.text"
msgid "NatNum modifiers"
-msgstr ""
+msgstr "NatNum-modifikatorar"
#: 05020301.xhp
msgctxt ""
@@ -15326,7 +15326,7 @@ msgctxt ""
"par_id3149998\n"
"help.text"
msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
-msgstr "For å visa tal ved hjelp av nasjonale talteikn, må du bruka ein modifikator av typen [NatNum1], [NatNum2], … [NatNum11] først i talformatkodane."
+msgstr "For å visa tal ved hjelp av lokale teikn, må du bruka ein modifikator av typen [NatNum1], [NatNum2], … [NatNum11] først i talformatkodane."
#: 05020301.xhp
msgctxt ""
@@ -15334,7 +15334,7 @@ msgctxt ""
"par_id3154600\n"
"help.text"
msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
-msgstr "[NatNum1]-modifikatoren brukar alltid éin-til-éin-teiknassosiasjon for å gjera om tal til ein streng, som svarar til den nasjonale talformatkoden under språkinnstillinga som er brukt. Dei andre modifikatorane gjev ulike resultat viss dei vert brukte under ulike språkinnstillingar. Ein lokalitet kan vera språket og territoriet som formatkoden er vald for, eller ein modifikator slik som [$-yyy] som følgjer den nasjonale talmodifikatoren. I dette tilfelle er «yyy» den heksadesimale MS-LCID, som òg vert brukt i valutaformatkodar. For for eksempel å visa eit tal ved hjelp av japansk, kort kanji-teikn i ein engelsk lokalitet, kan du bruka denne talformatkoden:"
+msgstr "[NatNum1]-modifikatoren brukar alltid éin-til-éin-teiknassosiasjon for å gjera om tal til ein streng, som svarar til den lokale talformatkoden under språkinnstillinga som er brukt. Dei andre modifikatorane gjev ulike resultat viss dei vert brukte under ulike språkinnstillingar. Ein lokalitet kan vera språket og territoriet som formatkoden er vald for, eller ein modifikator slik som [$-yyy] som følgjer den lokale talmodifikatoren. I dette tilfelle er «yyy» den heksadesimale MS-LCID, som òg vert brukt i valutaformatkodar. For for eksempel å visa eit tal ved hjelp av japansk, kort kanji-teikn i ein engelsk lokalitet, kan du bruka denne talformatkoden:"
#: 05020301.xhp
msgctxt ""
@@ -16022,7 +16022,7 @@ msgctxt ""
"par_id130820161753343499\n"
"help.text"
msgid "[<emph>NatNum5</emph>]"
-msgstr ""
+msgstr "[<emph>NatNum5</emph>]"
#: 05020301.xhp
msgctxt ""
@@ -16446,7 +16446,7 @@ msgctxt ""
"par_id23102016124541451\n"
"help.text"
msgid "If compatible, native numbering and calendar are exported to MS-Excel using extended LCID. Extended LCID can also be used in string format instead of NatNum modifier."
-msgstr ""
+msgstr "Dersom dei er kompatible, vert lokalt talformat og kalender eksportert til MS-Excel ved hjelp av utvida LCID. Utvida LCID kan også brukast i strengformat i staden for NatNum-modifikatoren."
#: 05020301.xhp
msgctxt ""
@@ -16454,7 +16454,7 @@ msgctxt ""
"par_id23102016130928602\n"
"help.text"
msgid "Extended LCID consists of 8 hexadecimal digits: <emph>[$-NNCCLLLL]</emph>, with 2 first digits NN for native numerals, CC for calendar and LLLL for LCID code. For instance, <emph>[$-0D0741E]</emph> will be converted to <emph>[NatNum1][$-41E][~buddhist]</emph>: Thai numerals (0D) with Buddhist calendar (07) in Thai locale (041E)."
-msgstr ""
+msgstr "Utvida LCID inneheld 8 heksadesimale siffer: <emph>[$-NNCCLLLL]</emph> der NN står for lokal nummerering, CC for kalender og LLLL for LCID-kode. For eksempel vert <emph>[$-0D0741E]</emph> omforma til <emph>[NatNum1][$-41E][~buddhist]</emph>: Thai-nummerering (0D) med Buddhist-kalender (07) i Thai lokal (041E)."
#: 05020301.xhp
msgctxt ""
@@ -16462,7 +16462,7 @@ msgctxt ""
"par_id231020161309295474\n"
"help.text"
msgid "<emph>Native Numerals</emph>"
-msgstr ""
+msgstr "<emph>Lokal nummerering</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16470,7 +16470,7 @@ msgctxt ""
"par_id231020161309291913\n"
"help.text"
msgid "Two first digits NN represents native numerals:"
-msgstr ""
+msgstr "Sifra NN representerer lokal nummerering:"
#: 05020301.xhp
msgctxt ""
@@ -16478,7 +16478,7 @@ msgctxt ""
"par_id231020161309383870\n"
"help.text"
msgid "<emph>Numeral</emph>"
-msgstr ""
+msgstr "<emph>Talord</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16486,7 +16486,7 @@ msgctxt ""
"par_id231020161309384878\n"
"help.text"
msgid "<emph>Representation</emph>"
-msgstr ""
+msgstr "<emph>Representasjon</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16494,7 +16494,7 @@ msgctxt ""
"par_id231020161309389959\n"
"help.text"
msgid "<emph>Compatible LCID</emph>"
-msgstr ""
+msgstr "<emph>Kompatibel LCID</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16510,7 +16510,7 @@ msgctxt ""
"par_id231020161309393242\n"
"help.text"
msgid "all"
-msgstr ""
+msgstr "alle"
#: 05020301.xhp
msgctxt ""
@@ -16790,7 +16790,7 @@ msgctxt ""
"par_id231020161510028097\n"
"help.text"
msgid "<emph>Example (YYYY-MM-DD)</emph>"
-msgstr ""
+msgstr "<emph>Eksempel (ÅÅÅÅ-MM-DD)</emph>"
#: 05020301.xhp
msgctxt ""
@@ -16822,7 +16822,7 @@ msgctxt ""
"par_id231020161510037287\n"
"help.text"
msgid "Gengou"
-msgstr ""
+msgstr "Gengou"
#: 05020301.xhp
msgctxt ""
@@ -16934,7 +16934,7 @@ msgctxt ""
"par_id231020161510072324\n"
"help.text"
msgid "Unknown"
-msgstr ""
+msgstr "Ukjend"
#: 05020301.xhp
msgctxt ""
@@ -16942,7 +16942,7 @@ msgctxt ""
"par_id231020161510079549\n"
"help.text"
msgid "Unsupported"
-msgstr ""
+msgstr "Ikkje støtta"
#: 05020301.xhp
msgctxt ""
@@ -16950,7 +16950,7 @@ msgctxt ""
"par_id231020161510074993\n"
"help.text"
msgid "Unsupported"
-msgstr ""
+msgstr "Ikkje støtta"
#: 05020301.xhp
msgctxt ""
@@ -16958,7 +16958,7 @@ msgctxt ""
"par_id231020161510086169\n"
"help.text"
msgid "Hanja"
-msgstr ""
+msgstr "Hanja"
#: 05020301.xhp
msgctxt ""
@@ -16966,7 +16966,7 @@ msgctxt ""
"par_id23102016151008696\n"
"help.text"
msgid "412 (Korean)"
-msgstr ""
+msgstr "412 (koreansk)"
#: 05020301.xhp
msgctxt ""
@@ -16974,7 +16974,7 @@ msgctxt ""
"par_id231020161510087847\n"
"help.text"
msgid "Unsupported"
-msgstr ""
+msgstr "Ikkje støtta"
#: 05020301.xhp
msgctxt ""
@@ -16982,7 +16982,7 @@ msgctxt ""
"par_id231020161510081946\n"
"help.text"
msgid "ROC"
-msgstr ""
+msgstr "ROC"
#: 05020301.xhp
msgctxt ""
@@ -16990,7 +16990,7 @@ msgctxt ""
"par_id231020161510088509\n"
"help.text"
msgid "404 (Chinese - Taiwan)"
-msgstr ""
+msgstr "404 (kinesisk - Taiwan)"
#: 05020400.xhp
msgctxt ""
@@ -20270,7 +20270,7 @@ msgctxt ""
"par_id3149123\n"
"help.text"
msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Endra måleeiningar</link>"
#: 05040200.xhp
msgctxt ""
@@ -20366,7 +20366,7 @@ msgctxt ""
"par_id3154388\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkHeaderOn\">Adds a header to the current page style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkHeaderOn\">Legg til topptekst i den gjeldande sidestilen.</ahelp>"
#: 05040300.xhp
msgctxt ""
@@ -20590,7 +20590,7 @@ msgctxt ""
"par_id3156553\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/HFFormatPage\">Adds a footer to the current page style. A footer is an area in the bottom page margin, where you can add text or graphics.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/HFFormatPage\">Legg til ein botntekst til sidestilen. Botnteksten er eit område i nedste sidemarg der du kan leggja inn tekst eller bilete.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20654,7 +20654,7 @@ msgctxt ""
"par_id3153348\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkFooterOn\">Adds a footer to the current page style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkFooterOn\">Legg til ein botntekst i den gjeldande sidestilen.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20670,7 +20670,7 @@ msgctxt ""
"par_id3149575\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMELR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMELR\">Bruk den same botnteksten på partals- og oddetalssider.<switchinline select=\"appl\"><caseinline select=\"CALC\"> For å leggja inn ulik botntekst på partals- og oddetalssider, fjern avmerkinga her og vel <emph>Rediger</emph>.</caseinline></switchinline></ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20686,7 +20686,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMEFP\">First and even/odd pages share the same content.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMEFP\">Førstesida og like/ulike sider deler det same innhaldet.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20702,7 +20702,7 @@ msgctxt ""
"par_id3156434\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_SPINMARGLEFT\">Enter the amount of space to leave between the left edge of the page and the left edge of the footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_SPINMARGLEFT\">Skriv inn kor stor avstanden skal vera mellom venstre kant av sida og venstre kant av botnteksten.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20718,7 +20718,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_SPINMARGRIGHT\">Enter the amount of space to leave between the right edge of the page and the right edge of the footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_SPINMARGRIGHT\">Skriv inn kor stor avstanden skal vera mellom høgre kant av sida og høgre kant av botnteksten.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20734,7 +20734,7 @@ msgctxt ""
"par_id3154908\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_SPINSPACING\">Enter the amount of space that you want to maintain between the bottom edge of the document text and the top edge of the footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_SPINSPACING\">Skriv inn kor stor avstanden skal vera mellom nedre kant av teksten i dokumentet og øvre kant av botnteksten.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20750,7 +20750,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKDYNSPACING\">Overrides the <emph>Spacing </emph>setting and allows the footer to expand into the area between the footer and document text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_CHECKDYNSPACING\">Opphevar innstillinga for <emph>mellomrom</emph> og tillet at området til botnteksten utvidar seg inn i området mellom dokumentteksten og botnteksten.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20766,7 +20766,7 @@ msgctxt ""
"par_id3125865\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_SPINHEIGHT\">Enter the height you want for the footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_SPINHEIGHT\">Skriv inn høgda på botnteksten.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20782,7 +20782,7 @@ msgctxt ""
"par_id3145744\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKAUTOFIT\">Automatically adjusts the height of the footer to fit the content you enter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_CHECKAUTOFIT\">Justerer automatisk høgda på botnteksten i høve til kva du skriv inn.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -20798,7 +20798,7 @@ msgctxt ""
"par_id3145421\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_FOOTER_BUTTONMORE\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_FOOTER_BUTTONMORE\">Definerer ei kantlinje, ein bakgrunnsfarge eller eit bakgrunnsmønster for botnteksten.</ahelp>"
#: 05040400.xhp
msgctxt ""
@@ -22670,7 +22670,7 @@ msgctxt ""
"par_id3147143\n"
"help.text"
msgid "<variable id=\"stiltext\"><ahelp hid=\".\">Select the line style that you want to use.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"stiltext\"><ahelp hid=\".\">Vel den linjestilen du vil bruka.</ahelp></variable>"
#: 05200100.xhp
msgctxt ""
@@ -22686,7 +22686,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<variable id=\"farbetext\"><ahelp hid=\".\">Select a color for the line.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"farbetext\"><ahelp hid=\".\">Vel ein farge for linja.</ahelp></variable>"
#: 05200100.xhp
msgctxt ""
@@ -22702,7 +22702,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<variable id=\"breitetext\"><ahelp hid=\".\">Select the width for the line. You can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"breitetext\"><ahelp hid=\".\">Vel breidda på linja. Du kan leggja til ei måleeining. Ein nullverdi gjev ei linje med ei breidd på ein piksel i mediet ho vert vist på. </ahelp></variable>"
#: 05200100.xhp
msgctxt ""
@@ -23278,7 +23278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Area window"
-msgstr ""
+msgstr "Områdevindauge"
#: 05210000.xhp
msgctxt ""
@@ -23302,7 +23302,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Area tab"
-msgstr ""
+msgstr "Områdefane"
#: 05210100.xhp
msgctxt ""
@@ -23334,7 +23334,7 @@ msgctxt ""
"par_id3154863\n"
"help.text"
msgid "You can add custom colors, gradients, hatchings, two color patterns and bitmap patterns to the default lists for later use."
-msgstr ""
+msgstr "Du kan leggja til tilpassa fargar, fargeovergangar, skraveringar, tofarga mønster og biletmønster til standardlista for seinare bruk."
#: 05210100.xhp
msgctxt ""
@@ -23350,7 +23350,7 @@ msgctxt ""
"par_id3149751\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Do not fill the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Ikkje fyll det merkte objektet.</ahelp>"
#: 05210100.xhp
msgctxt ""
@@ -23358,7 +23358,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">Color</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">Farge</link>"
#: 05210100.xhp
msgctxt ""
@@ -23366,7 +23366,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btncolor\">Fills the object with a color selected on this page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btncolor\">Fyller objektet med ein farge vald på denne sida.</ahelp>"
#: 05210100.xhp
msgctxt ""
@@ -23374,7 +23374,7 @@ msgctxt ""
"hd_id3144438\n"
"help.text"
msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradient\">Gradient</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradient\">Fargeovergang</link>"
#: 05210100.xhp
msgctxt ""
@@ -23382,7 +23382,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btngradient\">Fills the object with a gradient selected on this page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btngradient\">Fyller objektet med ein fargeovergang vald på denne sida.</ahelp>"
#: 05210100.xhp
msgctxt ""
@@ -23390,7 +23390,7 @@ msgctxt ""
"hd_id3150771\n"
"help.text"
msgid "<link href=\"text/shared/01/05210500.xhp#bitmapmuster\" name=\"Bitmap\">Bitmap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210500.xhp#bitmapmuster\" name=\"Bitmap\">Punktbilete</link>"
#: 05210100.xhp
msgctxt ""
@@ -23398,7 +23398,7 @@ msgctxt ""
"par_id3149762\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnbitmap\">Fills the object with a bitmap pattern selected on this page.</ahelp> To add a bitmap to the list, open this dialog, click the <emph>Bitmaps </emph>tab, and then click <emph>Add / Import</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnbitmap\">Fyller objektet med eit biletemønster vald på denne sida.</ahelp> Du kan leggja til punktbilete i denne lista ved å trykkja på knappen <emph>Legg til / importer</emph> frå fana <emph>Punktbilete</emph>."
#: 05210100.xhp
msgctxt ""
@@ -23406,7 +23406,7 @@ msgctxt ""
"hd_id3150504\n"
"help.text"
msgid "Pattern"
-msgstr ""
+msgstr "Mønsterelement"
#: 05210100.xhp
msgctxt ""
@@ -23414,7 +23414,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fyller objektet med eit enkelt tofarga mønster vald på denne sida.</ahelp>"
#: 05210100.xhp
msgctxt ""
@@ -23422,7 +23422,7 @@ msgctxt ""
"hd_id3154047\n"
"help.text"
msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatch\">Hatch</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatch\">Skravering</link>"
#: 05210100.xhp
msgctxt ""
@@ -23430,7 +23430,7 @@ msgctxt ""
"par_id3153698\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/areatabpage/btnhatch\">Fills the object with a hatching pattern selected on this page.</ahelp> To apply a background color to the hatching pattern, select the <emph>Background color</emph> box, and then click a color in the list."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/areatabpage/btnhatch\">Fyll det merkte objektet med det skraverte mønsteret du valde frå lista.</ahelp> For å leggja til ein bakgrunnsfarge til det skraverte mønsteret, kryssar du av for <emph>bakgrunnsfarge</emph> og trykkjer på ein farge i lista."
#: 05210100.xhp
msgctxt ""
@@ -23438,7 +23438,7 @@ msgctxt ""
"par_id3148548\n"
"help.text"
msgid "You can quickly select fill options from the list boxes on the <emph>Drawing Object Properties</emph> toolbar."
-msgstr ""
+msgstr "Du kan også velja fyllmetodar frå listeboksen på verktøylinja <emph>Teikneobjekteigenskapar</emph>."
#: 05210100.xhp
msgctxt ""
@@ -23902,7 +23902,7 @@ msgctxt ""
"par_id3155069\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/shadowtabpage/ShadowTabPage\">Add a shadow to the selected drawing object, and define the properties of the shadow.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/shadowtabpage/ShadowTabPage\">Legg til ein skugge på det valde teikneobjektet og vel skugge-eigenskapane.</ahelp>"
#: 05210600.xhp
msgctxt ""
@@ -23934,7 +23934,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/shadowtabpage/TSB_SHOW_SHADOW\">Adds a shadow to the selected drawing object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/shadowtabpage/TSB_SHOW_SHADOW\">Legg ein skugge til det merkte teikneobjektet.</ahelp>"
#: 05210600.xhp
msgctxt ""
@@ -23950,7 +23950,7 @@ msgctxt ""
"par_id3146138\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/shadowtabpage/CTL_POSITION\">Click where you want to cast the shadow.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/shadowtabpage/CTL_POSITION\">Klikk der du vil plassera skuggen.</ahelp>"
#: 05210600.xhp
msgctxt ""
@@ -23966,7 +23966,7 @@ msgctxt ""
"par_id3146847\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/shadowtabpage/MTR_FLD_DISTANCE\">Enter the distance that you want the shadow to be offset from the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/shadowtabpage/MTR_FLD_DISTANCE\">>Skriv inn kor langt skuggen skal forskyvast frå det valde objektet.</ahelp>"
#: 05210600.xhp
msgctxt ""
@@ -23982,7 +23982,7 @@ msgctxt ""
"par_id3155829\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/shadowtabpage/LB_SHADOW_COLOR\">Select a color for the shadow.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/shadowtabpage/LB_SHADOW_COLOR\">Vel ein skuggefarge.</ahelp>"
#: 05210600.xhp
msgctxt ""
@@ -23998,7 +23998,7 @@ msgctxt ""
"par_id3148642\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/shadowtabpage/MTR_SHADOW_TRANSPARENT\">Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/shadowtabpage/MTR_SHADOW_TRANSPARENT\">Skriv inn kor gjennomsiktig skuggen skal vera. Du kan velja ein verdi mellom 0% (ikkje gjennomsiktig) og 100% (heilt gjennomsiktig).</ahelp>"
#: 05210600.xhp
msgctxt ""
@@ -30206,7 +30206,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Conversion Direction"
-msgstr ""
+msgstr "Omgjeringsretning"
#: 06010600.xhp
msgctxt ""
@@ -30214,7 +30214,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Select the conversion direction."
-msgstr ""
+msgstr "Vel omgjeringsretninga."
#: 06010600.xhp
msgctxt ""
@@ -30222,7 +30222,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "Traditional Chinese to simplified Chinese"
-msgstr ""
+msgstr "Tradisjonell kinesisk til forenkla kinesisk"
#: 06010600.xhp
msgctxt ""
@@ -30238,7 +30238,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "Simplified Chinese to traditional Chinese"
-msgstr ""
+msgstr "Forenkla kinesisk til tradisjonell kinesisk"
#: 06010600.xhp
msgctxt ""
@@ -30254,7 +30254,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "Common Terms"
-msgstr ""
+msgstr "Felles termar"
#: 06010600.xhp
msgctxt ""
@@ -30262,7 +30262,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters."
-msgstr ""
+msgstr "Felles termar er ord som tyder det same i tradisjonell og forenkla kinesisk, men som vert skrivne med ulike teikn."
#: 06010600.xhp
msgctxt ""
@@ -30270,7 +30270,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Translate common terms"
-msgstr ""
+msgstr "Omset felles uttrykk"
#: 06010600.xhp
msgctxt ""
@@ -30590,7 +30590,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\".\">Select a language for the thesaurus.</ahelp> You can install languages with a thesaurus library from the <link href=\"https://extensions.libreoffice.org/\">Extensions</link> web page."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel språk for synonymordboka.</ahelp> Du kan installera språk med synonymordbok frå nettsida <link href=\"https://extensions.libreoffice.org/\">Extensions</link>."
#: 06030000.xhp
msgctxt ""
@@ -31774,7 +31774,7 @@ msgctxt ""
"par_id3149748\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set innstillingane for autoretting av hermeteikn og for språkavhengige innstillingar.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -31830,7 +31830,7 @@ msgctxt ""
"hd_id3154682\n"
"help.text"
msgid "Single Quotes / Double Quotes"
-msgstr ""
+msgstr "Enkle hermeteikn / doble hermeteikn"
#: 06040400.xhp
msgctxt ""
@@ -31854,7 +31854,7 @@ msgctxt ""
"par_id3155616\n"
"help.text"
msgid "<ahelp hid=\".\">Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Byter automatisk standardsymbola for den oppgjevne hermeteikntypen med dei teikna du vel.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -31870,7 +31870,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">spesialteiknet</link> som skal erstatta det gjeldande opningssitatteiknet i dokumentet når du vel <emph>Format → Autoretting → Bruk</emph>.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -31886,7 +31886,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">spesialteiknet</link> som skal erstatta det gjeldande sluttsitatteiknet i dokumentet når du vel <emph>Format → Autoretting → Bruk</emph>.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -31902,7 +31902,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".\">Resets the quotation marks to the default symbols.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set sitatteikna tilbake til standardsymbola.</ahelp>"
#: 06040500.xhp
msgctxt ""
@@ -31966,7 +31966,7 @@ msgctxt ""
"par_id3154497\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Opens the <link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spellcheck</link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Opnar dialogvindauget for <link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">stavekontroll</link>.</ahelp>"
#: 06040500.xhp
msgctxt ""
@@ -31982,7 +31982,7 @@ msgctxt ""
"par_id3158405\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/add\">Adds the highlighted word to a user-defined dictionary.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/add\">Legg det merkte ordet til i ei brukardefinert ordliste.</ahelp>"
#: 06040500.xhp
msgctxt ""
@@ -31998,7 +31998,7 @@ msgctxt ""
"par_id3151226\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/ignoreall\">Ignores all instances of the highlighted word in the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/ignoreall\">Ignorerer alle førekomstane av dette ordet i dokumentet.</ahelp>"
#: 06040500.xhp
msgctxt ""
@@ -33838,7 +33838,7 @@ msgctxt ""
"par_idN109C2\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from \"user\", \"share\", or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Vel ein makro eller eit skript frå «user», «share» eller eit ope dokument. Dobbeltklikk på ei oppføring for å visa tilgjengelege makroar eller skript.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33854,7 +33854,7 @@ msgctxt ""
"par_idN109D1\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/run\">To run a script, select a script in the list, and then click Run.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/run\">Du kan køyra eit skript ved å velja eit skript i lista og så trykkja «Køyr».</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33870,7 +33870,7 @@ msgctxt ""
"par_idN109EC\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/create\">Creates a new script.</ahelp> The default script editor opens after you enter a name for the script."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/create\">Lagar eit nytt skript.</ahelp> Standardverktøyet for redigering av skript vert opna etter at du har skrive inn eit namn på skriptet."
#: 06130000.xhp
msgctxt ""
@@ -33894,7 +33894,7 @@ msgctxt ""
"par_idN10A33\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/edit\">Opens the default script editor for your operating system.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/edit\">Opnar standardprogrammet for redigering av skript.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33910,7 +33910,7 @@ msgctxt ""
"par_idN10A4F\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/rename\">Opens a dialog where you can change the name of the selected script.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/rename\">Opnar eit dialogvindauge der du kan endra namnet på det valde skriptet.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -33926,7 +33926,7 @@ msgctxt ""
"par_idN10A6A\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/delete\">Prompts you to delete the selected script.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/delete\">Spør om du vil slette det merkte skriptet.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -34406,7 +34406,7 @@ msgctxt ""
"par_id3152952\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Customizes and saves current menu layouts as well as creates new menus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Brukartilpassar og lagrar gjeldande menyutforming og lagar nye menyar.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -35142,7 +35142,7 @@ msgctxt ""
"par_id3150279\n"
"help.text"
msgid "<ahelp hid=\".\">Lets you customize $[officename] toolbars.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg tilpassa verktøylinjene i $[officename].</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35158,7 +35158,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Select the toolbar you want to edit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Merk verktøylinja du vil endra.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35166,7 +35166,7 @@ msgctxt ""
"par_idN10602\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Stil"
#: 06140400.xhp
msgctxt ""
@@ -35174,7 +35174,7 @@ msgctxt ""
"par_idN10605\n"
"help.text"
msgid "Select the toolbar style you want to use."
-msgstr ""
+msgstr "Vel kva stil du vil bruka på verktøylinja."
#: 06140400.xhp
msgctxt ""
@@ -35182,7 +35182,7 @@ msgctxt ""
"par_idN1064E\n"
"help.text"
msgid "Icons"
-msgstr ""
+msgstr "Symbol"
#: 06140400.xhp
msgctxt ""
@@ -35190,7 +35190,7 @@ msgctxt ""
"par_idN10652\n"
"help.text"
msgid "<ahelp hid=\".\">Shows icons only.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vis berre symbol.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35206,7 +35206,7 @@ msgctxt ""
"par_idN1065E\n"
"help.text"
msgid "<ahelp hid=\".\">Shows icons and text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser symbol og tekst.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35214,7 +35214,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: 06140400.xhp
msgctxt ""
@@ -35222,7 +35222,7 @@ msgctxt ""
"par_idN10658\n"
"help.text"
msgid "<ahelp hid=\".\">Shows text only.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser berre tekst.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35238,7 +35238,7 @@ msgctxt ""
"par_idN1060A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Name dialog, where you can enter the name of a new toolbar and select the location of the new toolbar.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opnar eit dialogvindauge der du kan skriva inn namnet på den nye verktøylinja og kvar ho skal lagrast.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35286,7 +35286,7 @@ msgctxt ""
"par_idN10624\n"
"help.text"
msgid "Opens the <emph>Rename Toolbar</emph> dialog, where you enter a new name for the selected toolbar."
-msgstr ""
+msgstr "Opnar dialogvindauget <emph>Namn</emph>, der du kan skriva inn eit nytt namn på den valde verktøylinja."
#: 06140400.xhp
msgctxt ""
@@ -35318,7 +35318,7 @@ msgctxt ""
"par_idN10634\n"
"help.text"
msgid "Deletes the selected toolbar without any further question. You can only delete custom toolbars, not the built-in toolbars."
-msgstr ""
+msgstr "Slettar den valde verktøylinja utan vidare spørsmål. Du kan berre sletta sjølvvalde verktøylinjer, ikkje dei innebygde verktøylinjene."
#: 06140400.xhp
msgctxt ""
@@ -35366,7 +35366,7 @@ msgctxt ""
"par_idN10664\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a list of commands for the selected toolbar of the current application or document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser ei liste med kommandoar for den valde verktøylinja for det gjeldande programmet eller dokumentet.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35374,7 +35374,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "Add Command"
-msgstr ""
+msgstr "Legg til kommando"
#: 06140400.xhp
msgctxt ""
@@ -35382,7 +35382,7 @@ msgctxt ""
"par_idN1066A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> to insert the command into the <emph>Customize</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opnar dialogvindauget for å leggja til kommandoar. Merk kommandoen og trykk <emph>Legg til</emph> for å leggja han til i verktøylinja.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35390,7 +35390,7 @@ msgctxt ""
"par_idN106A9\n"
"help.text"
msgid "Add Separator"
-msgstr ""
+msgstr "Legg til skiljeteikn"
#: 06140400.xhp
msgctxt ""
@@ -35398,7 +35398,7 @@ msgctxt ""
"par_idN106AC\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a separator line under the current toolbar entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set inn ei skiljelinje under det gjeldande elementet i verktøylinja.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35478,7 +35478,7 @@ msgctxt ""
"par_idN106B2\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/06140402.xhp\" name=\"Change Icon\">Change Icon</link> dialog, where you can assign a different icon to the current command."
-msgstr ""
+msgstr "Opnar dialogvindauget <link href=\"text/shared/01/06140402.xhp\" name=\"Change Icon\">Bytt symbol</link> der du kan setja inn eit anna symbol i den gjeldande kommandoen."
#: 06140400.xhp
msgctxt ""
@@ -35502,7 +35502,7 @@ msgctxt ""
"par_idN1068B\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Fjern"
#: 06140400.xhp
msgctxt ""
@@ -35510,7 +35510,7 @@ msgctxt ""
"par_idN1068E\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected command without any further question.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slettar den merkte kommandoen utan vidare spørsmål.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35518,7 +35518,7 @@ msgctxt ""
"par_idN10687\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Tilbakestill"
#: 06140400.xhp
msgctxt ""
@@ -35526,7 +35526,7 @@ msgctxt ""
"par_idN1068F\n"
"help.text"
msgid "<ahelp hid=\".\">Restores the selected toolbar to its original state after you agree to the question.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tilbakestiller den merkte verktøylinja til slik ho var opphavleg dersom du bekreftar dette.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35566,7 +35566,7 @@ msgctxt ""
"par_idN10689\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Skildring"
#: 06140400.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"par_idN106D9\n"
"help.text"
msgid "<ahelp hid=\".\">Displays a short description of the given command.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser ein kort omtale av den valde kommandoen.</ahelp>"
#: 06140400.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"par_idN106D56\n"
"help.text"
msgid "For this feature to work the help content package for the currently used language must be installed."
-msgstr ""
+msgstr "For at dette skal verka, må pakka for det språket som er i bruk vera installert."
#: 06140402.xhp
msgctxt ""
@@ -35702,7 +35702,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventsconfigpage/savein\">Select first where to save the event binding, in the current document or in %PRODUCTNAME.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventsconfigpage/savein\">Vel først kor du vil lagra hendingskoplinga, i dette dokumentet eller i %PRODUCTNAME.</ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -35718,7 +35718,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "<ahelp hid=\".\">The big list box lists the events and the assigned macros. After you selected the location in the <emph>Save In</emph> list box, select an event in the big list box. Then click <emph>Assign Macro</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Den store listeboksen viser hendingane og dei tildelte makroane. Etter at du har vald ein stad i listeboksen <emph>Lagra i</emph>, kan du velja ei hending i den store listeboksen og trykkja <emph>Tildel makro</emph>.</ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -35734,7 +35734,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opnar <link href=\"text/shared/01/06130000.xhp\">makroveljaren</link> for å tildela ein makro til den valde hendinga.</ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -35750,7 +35750,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the macro assignment for the selected event.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slettar makrutildelinga for den merkte hendinga.</ahelp>"
#: 06140500.xhp
msgctxt ""
@@ -37582,7 +37582,7 @@ msgctxt ""
"par_idN1056D\n"
"help.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr ""
+msgstr "Bruk ein AdES-kompatibel signatur når det er mogleg"
#: digitalsignatures.xhp
msgctxt ""
@@ -37590,7 +37590,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<ahelp hid=\".\">Prefers creating XAdES signatures for ODF and OOXML, PAdES signatures for PDF.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Føretrekk å laga XAdES-signaturar for ODF og OOXML og PAdES-signaturar for PDF.</ahelp>"
#: digitalsignatures.xhp
msgctxt ""
@@ -37638,7 +37638,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fjernar den merkte signaturen frå lista. Fjernar også seinare signaturar i tilfelle PDF.</ahelp>"
#: extensionupdate.xhp
msgctxt ""
@@ -37958,7 +37958,7 @@ msgctxt ""
"par_id3149783\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_GALLERY_ICONVIEW\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_GALLERY_ICONVIEW\">Viser innhaldet i <emph>galleriet</emph> som ikon.</ahelp>"
#: gallery.xhp
msgctxt ""
@@ -37966,7 +37966,7 @@ msgctxt ""
"par_id3148983\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_GALLERY_LISTVIEW\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_GALLERY_LISTVIEW\">Viser innhaldet i <emph>galleriet</emph> som små ikon med namn og sti.</ahelp>"
#: gallery.xhp
msgctxt ""
@@ -38006,7 +38006,7 @@ msgctxt ""
"par_id3145346\n"
"help.text"
msgid "Themes are listed on the left side of the <emph>Gallery</emph>.<ahelp hid=\"SVX_HID_GALLERY_THEMELIST\">Click a theme to view the objects associated with the theme.</ahelp>"
-msgstr ""
+msgstr "Tema er lista opp på venstreside av <emph>galleriet</emph>.<ahelp hid=\"SVX_HID_GALLERY_THEMELIST\">Trykk på eit tema for å visa kvar for objekt som er knytt til det.</ahelp>"
#: gallery.xhp
msgctxt ""
@@ -38014,7 +38014,7 @@ msgctxt ""
"par_id3155355\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_GALLERY_WINDOW\">To insert a <emph>Gallery </emph>object, select the object, and then drag it into the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_GALLERY_WINDOW\">Du set eit <emph>galleriobjekt</emph> inn i dokumentet ved å merkja objektet og dra det inn i vindauget.</ahelp>"
#: gallery.xhp
msgctxt ""
@@ -38046,7 +38046,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "<ahelp hid=\"SVX_HID_GALLERY_NEWTHEME\">Adds a new theme to the <emph>Gallery</emph> and lets you choose the files to include in the theme.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVX_HID_GALLERY_NEWTHEME\">Legg til eit nytt tema i <emph>galleriet</emph>. Du kan velja kva filer som skal takast med i temaet.</ahelp>"
#: gallery.xhp
msgctxt ""
@@ -38310,7 +38310,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Grid and Help Lines"
-msgstr ""
+msgstr "Rutenett og hjelpelinjer"
#: grid_and_helplines.xhp
msgctxt ""
@@ -38318,7 +38318,7 @@ msgctxt ""
"hd_id033020170255198878\n"
"help.text"
msgid "<link href=\"text/shared/01/grid_and_helplines.xhp\">Grid and Help Lines</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/grid_and_helplines.xhp\">Rutenett og hjelpelinjer</link>"
#: grid_and_helplines.xhp
msgctxt ""
@@ -38326,7 +38326,7 @@ msgctxt ""
"par_id033020170257116434\n"
"help.text"
msgid "<ahelp hid=\".\">Toggle the visibility of grid points and guide lines to help object moving and precise position in the current sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slår rutenettet og hjelpelinjene av og på for å gjera det enklare å flytta og plassera objekt på arket.</ahelp>"
#: guides.xhp
msgctxt ""
@@ -38974,7 +38974,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the “≡” icon at the top-left position of the window and choose <item type=\"menuitem\">Menu bar</item>."
-msgstr ""
+msgstr "I fanemodus vert menylinja normalt ikkje vist. Du kan få fram menylinja ved å klikka på symbolet «≡» oppe til venstre i vindauget og velja <item type=\"menuitem\">Menylinje</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -39054,7 +39054,7 @@ msgctxt ""
"par_id6797082\n"
"help.text"
msgid "You can check for updates manually or automatically."
-msgstr ""
+msgstr "Du kan sjå etter oppdateringar manuelt eller automatisk."
#: online_update.xhp
msgctxt ""
@@ -39326,7 +39326,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">Utvidingshandteraren kan leggja til, fjerna, kopla på eller av og oppdatera %PRODUCTNAME-utvidingar.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39430,7 +39430,7 @@ msgctxt ""
"par_id7857905\n"
"help.text"
msgid "<ahelp hid=\".\">You can find a collection of extensions on the Web.</ahelp> Click the \"Get more extensions online\" link in the Extension Manager to open your Web browser and see the <link href=\"https://extensions.libreoffice.org/\">https://extensions.libreoffice.org/</link> page."
-msgstr ""
+msgstr "<ahelp hid=\".\">Du kan finna ei samling av utvidingar på Internett.</ahelp> Klikk på «Hent fleire utvidingar på Internett» i utvidingshandteraren for å opna nettlesaren med sida til <link href=\"https://extensions.libreoffice.org/\">http://extensions.libreoffice.org/</link>."
#: packagemanager.xhp
msgctxt ""
@@ -39518,7 +39518,7 @@ msgctxt ""
"par_idN106AD\n"
"help.text"
msgid "<ahelp hid=\".\">Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel utvidinga som du vil fjerna eller slå av eller slå på. Nokre utvidingar har også eit vindauge for innstillingar tilgjengeleg.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39534,7 +39534,7 @@ msgctxt ""
"par_idN106BA\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/addbtn\">Click Add to add an extension.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/addbtn\">Trykk på «Legg til» for å leggja til ei utviding.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39550,7 +39550,7 @@ msgctxt ""
"par_id4856410\n"
"help.text"
msgid "An extension can show a license dialog. <ahelp hid=\"desktop/ui/showlicensedialog/ShowLicenseDialog\">Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension.</ahelp>"
-msgstr ""
+msgstr "Ei utviding kan visa eit dialogvindauge med lisensopplysningar. <ahelp hid=\"desktop/ui/showlicensedialog/ShowLicenseDialog\">Les lisensvilkåra. Bruk rulleknappen for å rulle ned. Trykk på knappen «Aksepter» for å fortsetja å installere utvidinga.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39566,7 +39566,7 @@ msgctxt ""
"par_idN106D1\n"
"help.text"
msgid "<ahelp hid=\".\">Select the extension that you want to remove, and then click Remove.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel utvidinga du vil fjerna og trykk «Slett».</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39582,7 +39582,7 @@ msgctxt ""
"par_idN106DE\n"
"help.text"
msgid "<ahelp hid=\"DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_ENABLE\">Select the extension that you want to enable, and then click Enable.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_ENABLE\">Merk utvidinga du vil bruka og trykk på knappen «Bruk».</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39598,7 +39598,7 @@ msgctxt ""
"par_idN106EB\n"
"help.text"
msgid "<ahelp hid=\"DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_DISABLE\">Select the extension that you want to disable, and then click Disable.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_DISABLE\">Merk utvidinga du vil bruka og trykk på knappen «Slå av».</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39614,7 +39614,7 @@ msgctxt ""
"par_id4129459\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately.</ahelp> You will see the <link href=\"text/shared/01/extensionupdate.xhp\">Extension Update</link> dialog."
-msgstr ""
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Trykk for å sjå etter oppdateringar på Internett for alle installerte utvidingar. Vel «Oppdater» frå sprettoppmenyen til dei valde utvidingane for å leite etter oppdateringar berre for desse. Programmet vil straks byrje å sjå etter tilgjengelege oppdateringar</ahelp> Du får opp dialogvindauget <link href=\"text/shared/01/extensionupdate.xhp\">Oppdatering av utvidingar</link>."
#: packagemanager.xhp
msgctxt ""
@@ -39638,7 +39638,7 @@ msgctxt ""
"hd_id4921415\n"
"help.text"
msgid "Display Extensions"
-msgstr ""
+msgstr "Vis utvidingar"
#: packagemanager.xhp
msgctxt ""
@@ -39646,7 +39646,7 @@ msgctxt ""
"par_id1439559\n"
"help.text"
msgid "You can filter the list of displayed extensions by their <link href=\"text/shared/01/packagemanager.xhp#extscope\">scope</link>."
-msgstr ""
+msgstr "Du kan filtrere lista med utvidingar ut frå <link href=\"text/shared/01/packagemanager.xhp#extscope\">virkefeltet</link> deira."
#: packagemanager.xhp
msgctxt ""
@@ -39654,7 +39654,7 @@ msgctxt ""
"par_id0103201110331828\n"
"help.text"
msgid "Bundled with %PRODUCTNAME"
-msgstr ""
+msgstr "Bunta med %PRODUCTNAME"
#: packagemanager.xhp
msgctxt ""
@@ -39662,7 +39662,7 @@ msgctxt ""
"par_id1439560\n"
"help.text"
msgid "<ahelp hid=\".\">Bundled extensions are installed by the system administrator using the operating system specific installer packages. These can not be installed, updated or removed here.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bunta utvidingar vert installerte av systemadministratoren ved hjelp av installasjonspakkane i operativsystemet. Desse kan ikkje installerast, oppdaterast eller fjernast her.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39670,7 +39670,7 @@ msgctxt ""
"par_id0103201110331829\n"
"help.text"
msgid "Installed for all users"
-msgstr ""
+msgstr "Installert for alle brukarar"
#: packagemanager.xhp
msgctxt ""
@@ -39678,7 +39678,7 @@ msgctxt ""
"par_id1439561\n"
"help.text"
msgid "<ahelp hid=\".\">Filter extensions available for all users of this computer.</ahelp> These can be updated or removed only with administrator or root privileges."
-msgstr ""
+msgstr "<ahelp hid=\".\">Filtrerer utvidingar tilgjengelege for alle brukarane av datamaskinen.</ahelp> Du må vera administrator for å kunna endra desse."
#: packagemanager.xhp
msgctxt ""
@@ -39686,7 +39686,7 @@ msgctxt ""
"par_id0103201110331830\n"
"help.text"
msgid "Installed for current user"
-msgstr ""
+msgstr "Installert for gjeldande brukar"
#: packagemanager.xhp
msgctxt ""
@@ -39694,7 +39694,7 @@ msgctxt ""
"par_id1439562\n"
"help.text"
msgid "<ahelp hid=\".\">Filter extensions only available for the currently logged in user.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Dette viser utvidingar som berre er tilgjengelege for den brukaren som er logga inn.</ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id3150502\n"
"help.text"
msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn eit passord. Passorda skil mellom store og små bokstavar.</ahelp>"
#: password_dlg.xhp
msgctxt ""
@@ -40006,7 +40006,7 @@ msgctxt ""
"hd_id281120163149552\n"
"help.text"
msgid "Restart in Normal Mode"
-msgstr ""
+msgstr "Start på nytt i normalmodus"
#: profile_safe_mode.xhp
msgctxt ""
@@ -40014,7 +40014,7 @@ msgctxt ""
"par_id281120160944279161\n"
"help.text"
msgid "Choosing <emph>Restart in Normal Mode</emph> will discard all changes, terminate safe mode and start %PRODUCTNAME again in normal mode. Use this option if you got here by accident."
-msgstr ""
+msgstr "Vel du <emph>Start på nytt i normalmodus</emph> går %PRODUCTNAME ut av sikker modus og startar på nytt i normalmodus. Alle endringar vert borte. Bruk dette valet om du kom hit ved eit uhell."
#: profile_safe_mode.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Vel å eksportera bokmerke i Writer-dokument som PDF-bokmerke. Bokmerke vert laga for alle overskriftene (Verktøy → Disposisjonsnummerering) og for alle oppføringane i innhaldslista som du har tildelt lenkjer i kjeldedokumentet.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -40582,7 +40582,7 @@ msgctxt ""
"hd_id3946959\n"
"help.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Bruk XObject-referansar"
#: ref_pdf_export.xhp
msgctxt ""
@@ -40590,7 +40590,7 @@ msgctxt ""
"par_id8551897\n"
"help.text"
msgid "<ahelp hid=\".\">This option affects how PDF images are exported back to PDF. When this option is disabled, then the first page of the PDF data is included in the output. The PDF export merges the used images, fonts and other resources during export. This is a complex operation, but the result can be viewed in various viewers. When the option is enabled, then the reference XObject markup is used: this is a simple operation, but viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Dette valet påverkar korleis PDF-bilete vert eksporterte tilbake til PDF. Når dette valet er kopla frå, vert den første sida med PDF-data tatt med i utdataane. PDF-eksporten flettar dei brukte bileta, skrifttypar og anna som måtte høyra med under eksporten. Dette er ein kompleks operasjon, men resultatet kan visast i ulike lesarar. Når dette valet er slått på, vert markeringsspråket XObject brukt. Dette er ein enkel operasjon, men leseprogramma må ha støtte for dette markeringsspråket for å visa vektorbilete. Utan slik støtte vert bileta viste som punktbilete.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/02.po b/source/nn/helpcontent2/source/text/shared/02.po
index 521238168af..3ec7803ae02 100644
--- a/source/nn/helpcontent2/source/text/shared/02.po
+++ b/source/nn/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-04 18:18+0000\n"
+"PO-Revision-Date: 2017-06-08 16:21+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496600317.000000\n"
+"X-POOTLE-MTIME: 1496938893.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3166428\n"
"help.text"
msgid "<ahelp hid=\".uno:ListBox\">Creates a list box.</ahelp> A list box lets users select an entry from a list. If the form is linked to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\" name=\"List Box Wizard\"><emph>List Box Wizard</emph></link> will automatically appear after the list box is inserted in the document. This wizard helps you create the list box."
-msgstr ""
+msgstr "<ahelp hid=\".uno:ListBox\">Lag ein listeboks.</ahelp> Ein listeboks lèt brukaren velja ei oppføring frå ei liste. Dersom skjemaet du lagar er knytt til ein database, og databasekoplinga er aktiv, vil <link href=\"text/shared/02/01170900.xhp\" name=\"List Box Wizard\"><emph>Listeboksvegvisaren</emph></link> automatisk starta etter at listeboksen er sett inn i dokumentet. Vegvisaren vil hjelpa deg med å laga ferdig listeboksen."
#: 01170000.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"par_id3153724\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to use line breaks and formatting in a control field, such as a text box or label. To manually enter a line break, press the Enter key. Select \"Multi-line with formatting\" to enter formatted text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg ta med linjeskift og formatering i kontrollfelt, for eksempel i tekstboksar og etikettar. Du kan leggja inn linjeskift manuelt med Enter-tasten. Vel «Fleire linjer med formatering» for å skriva inn formatert tekst.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"par_idN1158E\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Bestemmerl om eit tekstutval eller eit kontrollelement framleis skal vera markert etter at fokus ikkje er på noko kontrollelement.</ahelp> Viss du set <emph>Gøym utval</emph> til «Nei», vil den markerte teksten framleis vera markert etter at fokus er flytt frå kontrollelementet som inneheld teksten."
#: 01170101.xhp
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"par_idN115AE\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_VISUALEFFECT\">Specifies whether Check boxes and Option buttons are displayed in a 3D look (default) or a flat look.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_VISUALEFFECT\">Bestemmer om avkryssingsboksar og valknappar skal visast tredimensjonalt (standard) eller flatt.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_idN115CE\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_BORDERCOLOR\">Specifies the border color for controls that have the Border property set to \"flat\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_BORDERCOLOR\">Vel kantfargen på kontrollelement som har kanteigenskapane sett til «Flat».</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4710,7 +4710,7 @@ msgctxt ""
"par_idN120B1\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_RECORDACTIONS\">Specifies to show or hide the action items in a selected Navigation Bar control.</ahelp> Action items are the following: Save record, Undo, New record, Delete record, Refresh."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_RECORDACTIONS\">Vel om handlingselementet skal gøymast eller visast på eit valt kontrollelement på navigasjonslinja.</ahelp> Dette er handlingselementa: lagra post, angra, ny post, slett post og oppdater."
#: 01170101.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_idN120D9\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_POSITION\">Specifies to show or hide the positioning items in a selected Navigation Bar control.</ahelp> Positioning items are the following: Record label, Record position, Record count label, Record count."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_POSITION\">Bestemmer om posisjonselement på eit vald kontrollelement på navigasjonslinja skal visast eller gøymast.</ahelp> Dette er posisjonselementa: postetikett, postposisjon, posttal-etikett, tal på postar."
#: 01170101.xhp
msgctxt ""
@@ -4742,7 +4742,7 @@ msgctxt ""
"par_idN120DB\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_NAVIGATION\">Specifies to show or hide the navigation items in a selected Navigation Bar control.</ahelp> Navigation items are the following: First record, Previous record, Next record, Last record."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_NAVIGATION\">Bestemmer om navigasjonselementa i eit kontrollelement på navigasjonslinja skal visast eller gøymast.</ahelp> Dette er navigasjonselementa: første post, førre post, neste post og siste post."
#: 01170101.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_idN1215A\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_FILTERSORT\">Specifies to show or hide the filtering and sorting items in a selected Navigation Bar control.</ahelp> Filtering and sorting items are the following: Sort ascending, Sort descending, Sort, Automatic filter, Default filter, Apply filter, Reset filter/sort."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_FILTERSORT\">Bestemmer om filtrerings- og sorteringselementa i ein vald navigasjonslinjekontroll skal visast eller gøymast.</ahelp> Desse filtrerings- og sorteringselementa finst: sorter stigande, sorter fallande, sorter, automatisk filtrering, standardfilter, bruk filter og tilbakestill filter/sortering."
#: 01170101.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_idN12179\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_ICONSIZE\">Specifies whether the icons in a selected Navigation Bar should be small or large.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_ICONSIZE\">Bestemmer om knappane på den valde navigasjonslinja skal vera små eller store.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -6598,7 +6598,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "When the event occurs, the linked macro will be called. To assign a macro to an event, press the <emph>...</emph> button. The <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\">Assign Action</link> dialog opens."
-msgstr ""
+msgstr "Når hendinga oppstår, vert den lenkja makroen kalla opp. Trykk knappen <emph>…</emph> for å kopla ein makro til ei hending. Dialogvindauget <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\">Bruk handling</link> vert opna."
#: 01170103.xhp
msgctxt ""
@@ -6686,7 +6686,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\" visibility=\"hidden\">The<emph> Item status changed </emph>event takes place if the status of the control field has changed.</ahelp> The<emph> Item status changed</emph> event takes place if the status of the control field has changed."
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\" visibility=\"hidden\">Hendinga <emph>Elementstatus endra</emph> finn stad dersom statusen til eit kontrollfelt vert endra.</ahelp> Hendinga <emph>Elementstatus endra</emph> finn stad dersom statusen til eit kontrollfelt vert endra."
#: 01170103.xhp
msgctxt ""
@@ -9382,7 +9382,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Ikon</alt></image>"
#: 01171400.xhp
msgctxt ""
@@ -9622,7 +9622,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "In $[officename] you see the available fonts only if a printer is installed as the default printer in your system. In order to install a printer as the default printer please refer to your operating system documentation."
-msgstr ""
+msgstr "I $[officename] er dei tilgjengelege skrifttypane berre synlege når ein skrivar er installert som standardskrivar. Korleis ein skrivar skal installerast som standardskrivar er avhengig av operativsystemet."
#: 02020000.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_internet\">Creates an http hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_internet\">Lagar ei http-hyperlenkje.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11470,7 +11470,7 @@ msgctxt ""
"par_id3150693\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_ftp\">Creates an FTP hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_ftp\">Lagar ei FTP-hyperlenkje.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id9887081\n"
"help.text"
msgid "<ahelp hid=\"CUI_HID_HYPERDLG_INET_PATH\">Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"CUI_HID_HYPERDLG_INET_PATH\">Skriv inn nettadressa til fila du vil opna når du vel hyperlenkja. Viss du ikkje vel ei målramme, vert fila opna i det gjeldande dokumentet eller den gjeldande ramma.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11526,7 +11526,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/login\">Specifies your login name, if you are working with FTP addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/login\">Gjev innloggingsnamnet ditt dersom du arbeider med FTP-adresser.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11542,7 +11542,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/password\">Specifies your password, if you are working with FTP addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/password\">Gjev passordet ditt dersom du arbeider med FTP-adresser.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11558,7 +11558,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/anonymous\">Allows you to log in to the FTP address as an anonymous user.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/anonymous\">Gjer at du kan logga inn på FTP-adressa som anonym brukar.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11598,7 +11598,7 @@ msgctxt ""
"par_id3149167\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether the hyperlink is inserted as text or as a button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer om hyperlenkja skal setjast inn som ein tekst eller ein knapp,</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>Assign Macro</emph> dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opnar dialogvindauget <emph>Tildel makro</emph>, der du kan tilordna programkodar til hendingar som for eksempel «mus over objekt» eller «følj hyperlenkje».</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11630,7 +11630,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the visible text or button caption for the hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer den synlege teksten på ein knapp for ei hyperlenkje.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\"CUI_HID_HYPERDLG_MAIL_PATH\">Assigns the specified e-mail address to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
-msgstr ""
+msgstr "<ahelp hid=\"CUI_HID_HYPERDLG_MAIL_PATH\">Bruk denne e-postadressa i lenkja.</ahelp> Når du trykkjer på hyperlenkja i dokumentet, opnar det seg ei ny e-postmelding, adressert til mottakaren i <emph>mottakar</emph>-feltet."
#: 09070200.xhp
msgctxt ""
@@ -11710,7 +11710,7 @@ msgctxt ""
"par_id3149514\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Hides or shows the data source browser.</ahelp> Drag the receiver's <emph>E-mail</emph> data field from the data source browser into the <emph>Recipient</emph> text field."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Gøym eller vis data frå datakjeldelesaren.</ahelp> Dra mottakaren sitt datafelt <emph>e-mail</emph> frå datakjeldelesaren til tekstfeltet <emph>Mottakar</emph>."
#: 09070200.xhp
msgctxt ""
@@ -11726,7 +11726,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/subject\">Specifies the subject that is inserted in the subject line of the new message document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkmailpage/subject\">Spesifiserer eit emne som skal setjast inn i emnelinja i den nye meldinga.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11790,7 +11790,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Opens the <emph>Open dialog,</emph> where you can select a file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Opnar dialogvindauget <emph>Opna</emph> der du kan velja ei fil.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11814,7 +11814,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkdocpage/target\">Specifies a target for the hyperlink into the document specified under <emph>Path</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkdocpage/target\">Bestemmer eit mål for hyperlenkja i dokumentet oppgjeve i <emph>Sti</emph>.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11902,7 +11902,7 @@ msgctxt ""
"par_id3154751\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinknewdocpage/editnow\">Specifies that the new document is created and immediately opened for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinknewdocpage/editnow\">Det nye dokumentet er laga og opna for redigering.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11918,7 +11918,7 @@ msgctxt ""
"par_id3153577\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinknewdocpage/editlater\">Specifies that the document is created but it is not immediately opened.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinknewdocpage/editlater\">Det nye dokumentet er laga men ikkje opna for redigering.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11934,7 +11934,7 @@ msgctxt ""
"par_id8894009\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinknewdocpage/path\">Enter a URL for the file that you want to open when you click the hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinknewdocpage/path\">Skriv inn nettadressa til fila som skal opnast når du klikkar på hyperlenkja.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11950,7 +11950,7 @@ msgctxt ""
"par_id3147653\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinknewdocpage/create\">Opens the <emph>Select Path</emph> dialog, where you can select a path.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinknewdocpage/create\">Opnar dialogvindauget <emph>Vel sti</emph> der du kan velja ein sti.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11966,7 +11966,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinknewdocpage/types\">Specifies the file type for the new document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinknewdocpage/types\">Bestemmer filtypen for det nye dokumentet.</ahelp>"
#: 10010000.xhp
msgctxt ""
@@ -13222,7 +13222,7 @@ msgctxt ""
"par_id3149716\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the logical conditions to filter your table data.</ahelp> This dialog is available for spreadsheet documents, database tables and database forms. The dialog for databases does not contain the <emph>More Options</emph> button."
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer dei logiske vilkåra for filtrering av tabelldata.</ahelp> Dette dialogvindauget er tilgjengeleg for reknearkdokument, databasetabellar og databaseskjema. Knappen <emph>Meir</emph> finst ikkje i dialogvindauge for databasar."
#: 12090100.xhp
msgctxt ""
@@ -13254,7 +13254,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "<ahelp hid=\".\">For the following arguments, you can choose between the logical operators AND / OR.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">For dei følgjande argumenta kan du velja mellom dei logiske operatorane «OG» og «ELLER».</ahelp>"
#: 12090100.xhp
msgctxt ""
@@ -13270,7 +13270,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the field names from the current table to set them in the argument.</ahelp> You will see the column identifiers if no text is available for the field names."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel feltnamna i den gjeldande tabellen for å setja dei inn i argumentet.</ahelp> Dersom det ikkje er nokon tekst tilgjengeleg som feltnamn, vert kolonneidentifikatoren vist."
#: 12090100.xhp
msgctxt ""
@@ -13286,7 +13286,7 @@ msgctxt ""
"par_id3150254\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the <link href=\"text/shared/02/12090101.xhp\" name=\"comparative operators\">comparative operators</link> through which the entries in the <emph>Field name</emph> and <emph>Value</emph> fields can be linked.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel dei <link href=\"text/shared/02/12090101.xhp\" name=\"comparative operators\">komparative operatorane</link> som oppføringane i felta<emph>feltnamn</emph> og <emph>verdi</emph> skal lenkjast ved hjelp av.</ahelp>"
#: 12090100.xhp
msgctxt ""
@@ -13302,7 +13302,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies a value to filter the field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer ein verdi som feltet skal filtrerast med.</ahelp>"
#: 12090100.xhp
msgctxt ""
@@ -15694,7 +15694,7 @@ msgctxt ""
"par_id3152363\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertMode\">Displays the current insert mode. You can toggle between INSRT = insert and OVER = overwrite.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This field is only active if the cursor is in the input line of the formula bar or in a cell. </caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertMode\">Viser den gjeldande innsetjingsmodusen. Du kan veksla mellom «INN» (sett inn) og «OVER» (skriv over).</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> Dette feltet er berre tilgjengeleg når markøren er i skrivefeltet på formellinja eller i ei celle.</caseinline></switchinline>"
#: 20040000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/04.po b/source/nn/helpcontent2/source/text/shared/04.po
index 6419c86a3e2..2cb3311f374 100644
--- a/source/nn/helpcontent2/source/text/shared/04.po
+++ b/source/nn/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2016-06-04 17:34+0000\n"
+"PO-Revision-Date: 2017-06-08 16:22+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1465061694.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496938977.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3148408\n"
"help.text"
msgid "Opens the <emph>Templates</emph> dialog."
-msgstr ""
+msgstr "Opnar dialogvindauget for <emph>Malar</emph>."
#: 01010000.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_idN10BC0\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌃M</caseinline><defaultinline>Ctrl+M</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌃M</caseinline><defaultinline>Ctrl + M</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/05.po b/source/nn/helpcontent2/source/text/shared/05.po
index 44789a950a1..754344f4912 100644
--- a/source/nn/helpcontent2/source/text/shared/05.po
+++ b/source/nn/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-04 18:20+0000\n"
+"PO-Revision-Date: 2017-06-08 16:32+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496600412.000000\n"
+"X-POOTLE-MTIME: 1496939546.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3143272\n"
"help.text"
msgid "<bookmark_value>support on the Web</bookmark_value> <bookmark_value>getting support</bookmark_value> <bookmark_value>forums and support</bookmark_value> <bookmark_value>Web support</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>hjelp på Internett</bookmark_value> <bookmark_value>få hjelp</bookmark_value> <bookmark_value>forum og hjelp</bookmark_value> <bookmark_value>Internetthjelp</bookmark_value>"
#: 00000001.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"hd_id3146873\n"
"help.text"
msgid "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Getting Support</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Få hjelp</link> </variable>"
#: 00000001.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id0915200811081778\n"
"help.text"
msgid "You can access web forums to ask and answer questions about %PRODUCTNAME. Choose menu <item type=\"menuitem\">Help – Get Help Online...</item> to access the forum in your language."
-msgstr ""
+msgstr "Du kan gå inn på nettforum for å spørja og svara på spørsmål om %PRODUCTNAME. Vel menyen <item type=\"menuitem\">Hjelp → Få hjelp på nettet …</item>. (Engelskspråkleg. Finst ikkje forum på norsk)."
#: 00000001.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3497211\n"
"help.text"
msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
-msgstr ""
+msgstr "Du kan lasta ned dokumentasjon (stort sett på engelsk) som PDF-filer med gjeringar og rettleiingar frå nettsida til %PRODUCTNAME, <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. Du kan også gå inn på nettsida for dokumentasjon frå menyen <item type=\"menuitem\">Hjelp → Brukarrettleiingar …</item> ."
#: 00000001.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/autopi.po b/source/nn/helpcontent2/source/text/shared/autopi.po
index 7dd3e8c21da..524b9facca9 100644
--- a/source/nn/helpcontent2/source/text/shared/autopi.po
+++ b/source/nn/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-02-28 10:25+0000\n"
+"PO-Revision-Date: 2017-06-08 16:35+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488277508.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496939706.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_DATE\">Specifies the date of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_DATE\">Her bestemmer du møtedatoen.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_TIME\">Specifies the time of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_TIME\">Skriv inn klokkeslett for møtet.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_id3159400\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Specifies the location of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Skriv inn staden for møtet.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -6758,7 +6758,7 @@ msgctxt ""
"hd_id4791405\n"
"help.text"
msgid "macOS Address book"
-msgstr ""
+msgstr "macOS Adressebok"
#: 01170000.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id6873683\n"
"help.text"
msgid "<ahelp hid=\".\">Select this option if you already use an address book in macOS Address book.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel dette alternativet viss du alt brukar ei adressebok i macOS-adressebok.</ahelp>"
#: 01170000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/explorer/database.po b/source/nn/helpcontent2/source/text/shared/explorer/database.po
index 1e0fbf3e66e..2fa7716eda4 100644
--- a/source/nn/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/nn/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-02-28 10:27+0000\n"
+"PO-Revision-Date: 2017-06-08 19:08+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488277665.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496948897.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
-msgstr ""
+msgstr "Du kan også opna kjeldevisinga for databasen (Ctrl + Shift + F4), merka heile databasetabellen frå databasekjelda (trykk på det øvre, venstre hjørnet i tabellen), og så dra utvalet over i tekstdokumentet eller reknearket."
#: 02000000.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3148799\n"
"help.text"
msgid "When you open the query design for the first time, you see a dialog in which you must first select the table or query that will be the basis for your new query."
-msgstr ""
+msgstr "Når du opnar spørjingsutformaren første gongen, kjem det fram eit dialogvindauge der du må velja tabellen eller spørjinga som skal vera grunnlaget for den nye spørjinga."
#: 02010100.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3154744\n"
"help.text"
msgid "... The value of the field is empty. For Yes/No fields with three states, this command automatically queries the undetermined state (neither Yes nor No)."
-msgstr ""
+msgstr "… feltnamnet er tomt. For «Ja/Nei»-felt med tre tilstandar, vil denne funksjonen automatisk spørja etter den uvisse tilstanden (verken «Ja» eller «Nei»)."
#: 02010100.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id3146842\n"
"help.text"
msgid "If you enter the SQL code manually, you can create SQL-specific queries that are not supported by the graphical interface in <emph>Query design</emph>. These queries must be executed in native SQL mode."
-msgstr "Viss du skriv inn SQL-kode manuelt, kan du oppretta SQL-bestemte søk som ikkje vert støtta i den grafiske brukarflata i <emph>Spørjingsutforming</emph>. Desse førespurnadane kan utførast i native SQL-modus."
+msgstr "Viss du skriv inn SQL-kode manuelt, kan du oppretta SQL-bestemte søk som ikkje vert støtta i den grafiske brukarflata i <emph>Spørjingsutforming</emph>. Desse førespurnadane kan utførast i lokal SQL-modus."
#: 02010100.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/view\">If the database supports Views and you selected this option, a query will be created in the table container as a table. This option allows you to view the query results as a normal table view.</ahelp> The table will be filtered in the view with a \"Select\" SQL statement."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/view\">Viss databasen støtter vising og du vel dette alternativet vert det laga ei spørjing i tabellplasshaldar som ein tabell. Dette alternativet let deg sjå spørjeresultata som ved ei normal tabellvising. </ahelp>Tabellen vert filtrert i visinga med SQL-kommandoen «Select»."
#: 05030100.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id3154143\n"
"help.text"
msgid "To open the data source view, press Ctrl+Shift+F4 in a text, spreadsheet or form document."
-msgstr ""
+msgstr "For å opna datakjeldevisinga, trykk Ctrl + Shift + F4 i eit tekst-, rekneark- eller skjemadokument."
#: 11000002.xhp
msgctxt ""
@@ -7158,7 +7158,7 @@ msgctxt ""
"par_idN1054D\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/dabawiz01.xhp\">Select Database</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/explorer/database/dabawiz01.xhp\">Vel database</link>"
#: dabawiz01.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_idN10596\n"
"help.text"
msgid "A user name can have a maximum of 18 characters."
-msgstr ""
+msgstr "Eit brukarnamn kan vera på opp til 18 teikn."
#: dabawiz02ado.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_idN10599\n"
"help.text"
msgid "A password must contain 3 to 18 characters."
-msgstr ""
+msgstr "Eit passord må innehalda frå 3 til 18 teikn."
#: dabawiz02ado.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_idN106A4\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"jdbc:mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn adressa til databasen. Viss du for eksempel bruker MySQL JDBC-drivaren, kan du skriva inn «jdbc:mysql://<tenarnamn>/<namnet på databasen>». Du finn meir informasjon om JDBC-drivaren i dokumentasjonen som følgde med drivaren.</ahelp>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"par_idN106BF\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn namnet på JDBC-drivaren.</ahelp>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -8558,7 +8558,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "Set up Spreadsheet connection"
-msgstr ""
+msgstr "Set opp reknearktilkopling"
#: dabawiz02spreadsheet.xhp
msgctxt ""
@@ -8638,7 +8638,7 @@ msgctxt ""
"par_idN1054F\n"
"help.text"
msgid "Set up a connection to text files"
-msgstr ""
+msgstr "Set opp ei tilkopling til tekstfiler"
#: dabawiz02text.xhp
msgctxt ""
@@ -8750,7 +8750,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn eller vel teiknet som skil datafelta i tekstfila.</ahelp>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8766,7 +8766,7 @@ msgctxt ""
"par_idN105A0\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn eller vel teiknet som identifiserer eit tekstfelt i tekstfila.</ahelp> Du kan ikkje bruka det same teiknet som for feltskilje."
#: dabawiz02text.xhp
msgctxt ""
@@ -8782,7 +8782,7 @@ msgctxt ""
"par_idN105BC\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn eller vel teiknet som er brukt som desimalteikn i tekstfila. Eksempel: komma (0,5) eller punktum (0.5).</ahelp>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8798,7 +8798,7 @@ msgctxt ""
"par_idN105D7\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn eller vel teiknet som er brukt som tusenskilje i tekstfila. Eksempel: komma (1,000) eller punktum (1.000).</ahelp>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8814,7 +8814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Set up user authentication"
-msgstr ""
+msgstr "Set opp brukarautentisering"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8822,7 +8822,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "Set up user authentication"
-msgstr ""
+msgstr "Set opp brukarautentisering"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8830,7 +8830,7 @@ msgctxt ""
"par_idN1053E\n"
"help.text"
msgid "Some databases require a user name and password."
-msgstr ""
+msgstr "Nokre databasar krev brukarnamn og passord."
#: dabawiz03auth.xhp
msgctxt ""
@@ -8870,7 +8870,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "Test Connection"
-msgstr ""
+msgstr "Test tilkoplinga"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8878,7 +8878,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "<ahelp hid=\".\">Check if the configured connection can be used to access the database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Kontroller om det oppsette sambandet kan brukast for å få tilgang til databasen.</ahelp>"
#: dabawiz03auth.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
+msgstr "Visar om spørjinga kan grupperast. Datakjelda må ha støtte for SQL-syntaksen «Group by clauses» for å ta i bruk denne sida i vegvisaren."
#: querywizard05.xhp
msgctxt ""
@@ -10702,7 +10702,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
+msgstr "Visar om spørjinga kan grupperast. Datakjelda må ha støtte for SQL-syntaksen «Group by clauses» for å ta i bruk denne sida i vegvisaren."
#: querywizard06.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/guide.po b/source/nn/helpcontent2/source/text/shared/guide.po
index 7c1c1609bcf..d594c4feb2c 100644
--- a/source/nn/helpcontent2/source/text/shared/guide.po
+++ b/source/nn/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-04 18:22+0000\n"
+"PO-Revision-Date: 2017-06-12 11:18+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496600565.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497266297.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id0820200803563860\n"
"help.text"
msgid "Click the <emph>Browse online templates</emph> button in the dialog to select and download more templates."
-msgstr ""
+msgstr "Trykk <emph>Få fleire malar på nett</emph>-lenkja i dialogvindauget for å velja og lasta ned fleire malar."
#: aaa_start.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id150820161816033788\n"
"help.text"
msgid "To access remote servers, you must use %PRODUCTNAME’s own Open and Save dialogs. If you currently use your operating system dialogs for saving and opening files, go to <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - General</item> and check the option <item type=\"menuitem\">Use %PRODUCTNAME dialogs</item>."
-msgstr ""
+msgstr "For å få tilgang til eksterne tenarar, må du bruka %PRODUCTNAME sine dialogvindauge for å opna og lagra. Dersom du brukar operativsystemet sine dialogvindauge for å opna og lagra filer, må du gå til <item type=\"menuitem\">Verktøy → Innstillingar → %PRODUCTNAME → Generelt</item> og merkja av for <item type=\"menuitem\">Bruk dialogvindauga til %PRODUCTNAME</item>."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_id150820161816031470\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Open Remote Files</item>"
-msgstr ""
+msgstr "Vel <item type=\"menuitem\">Filer > Opna eksterne filer …</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id150820161816037870\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Save to Remote Server</item>"
-msgstr ""
+msgstr "Select <item type=\"menuitem\">Fil → Lagra til ekstern tenar</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"par_id150820161816047387\n"
"help.text"
msgid "<variable id=\"rememberpw\"><emph>Remember password</emph>: Check to store the password in %PRODUCTNAME’s user profile. The password will be secured by the master password in <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security - Internet passwords</item>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rememberpw\"><emph>Hugs passordet</emph>: Merk av for å lagra passordet i brukarprofilen for %PRODUCTNAME. Passordet vert sikra med hovudpassordet i <item type=\"menuitem\">Verktøy → Innstillingar → %PRODUCTNAME → Tryggleik → Passord for nettilkoplingar</item>.</variable>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id19082016170716519\n"
"help.text"
msgid "Files stored in CMIS server have properties and metadata not available in a local storage. These metadata are important for controls and debugging of the CMIS connection and server implementation. All parameters displayed are read-only."
-msgstr ""
+msgstr "Filer som er lagra på ein CMIS-tenar har eigenskapar og metadata som ikkje finst i ei lokalt lagra fil. Desse metadataa er viktige for kontroll og feilfinning av CMIS-tilkoplinga og innstillingane for tenaren. Alle parametera er skriveverna."
#: cmis-remote-files.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id0821200910191774\n"
"help.text"
msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document are signed\" when loaded in the newer software."
-msgstr ""
+msgstr "Når du signerer eit dokument med OpenOffice.org 3.2 eller StarOffice 9.2 og seinare versjonar og deretter opnar dokumentet i ein tidlegare versjon, vert signaturen vist som «ugyldig». Signaturar som er laga med tidlegare versjonar vert merkte med «berre delar av dokumenta er signerte» når det vert lasta inn i nyare program."
#: digital_signatures.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id0821200910191775\n"
"help.text"
msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document are signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office."
-msgstr ""
+msgstr "Når du signerer eit OOXML-dokument vert signaturen alltid merkt med «berre delar av dokumentet er signert». Metadata for OOXML-filer vert aldri signerte. Dette for å vera kompatibel med Microsoft Office."
#: digital_signatures.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"par_idN10688\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Digital Signatures</emph>."
-msgstr ""
+msgstr "Vel <emph>Fil → Digitale signaturar → Digitale signaturar</emph>"
#: digitalsign_send.xhp
msgctxt ""
@@ -6910,7 +6910,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<image id=\"img_id3158407\" src=\"sw/res/sc20238.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3158407\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158407\" src=\"sw/res/sc20238.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3158407\">Ikon</alt></image>"
#: dragdrop.xhp
msgctxt ""
@@ -9406,7 +9406,7 @@ msgctxt ""
"par_id3159158\n"
"help.text"
msgid "An absolute path such as \"C:\\homepage\\graphics\\picture.gif\" would no longer function on the provider server. Neither a server nor the computer of a reader needs to have a C hard drive: operating systems such as Unix or macOS do not recognize drive letters, and even if the folder homepage\\graphics existed, your picture would not be available. It is better to use relative addressing for file links."
-msgstr ""
+msgstr "Ein absolutt sti, som for eksempel «C:\\heimeside\\bilete\\bilete.gif\" vil ikkje verka på leverandøren sin tenar. Korkje tenaren eller lesaren sin datamaskin treng å ha ein C-stasjon. Operativsystem som Unix og macOS kjenner ikkje stasjonsbokstavar. Sjølv om mappa «heimeside\\bilete» finst, vil ikkje bileta dine vera tilgjengelege. Det er betre å bruka relativ adressering for fil-lenkjer."
#: hyperlink_rel_abs.xhp
msgctxt ""
@@ -13510,7 +13510,7 @@ msgctxt ""
"par_id0815200803314268\n"
"help.text"
msgid "In the context menu, choose <emph>Open with - Choose another app</emph>."
-msgstr "Vel <emph>Åpne i → Velg standardprogram</emph>."
+msgstr "Vel <emph>Opna i → Vel standardprogram</emph>."
#: ms_doctypes.xhp
msgctxt ""
@@ -13518,7 +13518,7 @@ msgctxt ""
"par_id0815200803314245\n"
"help.text"
msgid "In the list of applications that appears, select the program that should open the current type of files. Make sure that “Always use this app” is checked."
-msgstr "I lista over program merkjer du programmet som den aktuelle filtypen skal opnast i. Sjå etter at det er kryssa va for «Bruk alltid valgte program til å åpne denne typen filer»."
+msgstr "I lista over program merkjer du programmet som den aktuelle filtypen skal opnast i. Sjå etter at det er kryssa va for «Bruk alltid valde program til å opna denne typen filer»."
#: ms_doctypes.xhp
msgctxt ""
@@ -15790,7 +15790,7 @@ msgctxt ""
"par_id3153087\n"
"help.text"
msgid "Open the reviewer's document and then choose <emph>Edit - Track Changes - Compare Document</emph>."
-msgstr ""
+msgstr "Opna dokumentet frå korrekturlesaren og vel <emph>Rediger → Spor endringar → Samanlikn dokument</emph>."
#: redlining_doccompare.xhp
msgctxt ""
@@ -16886,7 +16886,7 @@ msgctxt ""
"bm_id3154422\n"
"help.text"
msgid "<bookmark_value>printers; adding, UNIX</bookmark_value><bookmark_value>default printer; UNIX</bookmark_value><bookmark_value>standard printer under UNIX</bookmark_value><bookmark_value>faxes; fax programs/fax printers under UNIX</bookmark_value><bookmark_value>printers; faxes under UNIX</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>skrivarar; leggja til, UNIX</bookmark_value><bookmark_value>standardskrivar; UNIX</bookmark_value><bookmark_value>standardskrivar under UNIX</bookmark_value><bookmark_value>faksar; faksprogram/faksskrivarar under UNIX</bookmark_value><bookmark_value>skrivarar; faksar under UNIX</bookmark_value>"
#: spadmin.xhp
msgctxt ""
@@ -17054,7 +17054,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "Save the document by choosing <emph>File - Templates - Save As Template</emph> and saving the document in the <emph>My Templates</emph> category."
-msgstr ""
+msgstr "Lagra dokumentet ved å velja <emph>Fil → Malar → Lagra som mal</emph> og lagra dokumentet i kategorien <emph>Mine malar</emph>."
#: standard_template.xhp
msgctxt ""
@@ -17182,7 +17182,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or macOS platforms."
-msgstr ""
+msgstr "I Windows, vel <emph>Kjør</emph> frå startmenyen. (I Windows 7 og nyare, kan du få fram <emph>Kjør</emph> mellom anna ved å halda inne Windows-logotasten og trykkja R). I Linux, *BSD eller macOS X opnar du eit «shell»."
#: start_parameters.xhp
msgctxt ""
@@ -17374,7 +17374,7 @@ msgctxt ""
"par_id2016120409236546\n"
"help.text"
msgid "(macOS sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
-msgstr ""
+msgstr "(Berre for macOS sandbox) Returnerer stien for den mellombels mappa for den gjeldande brukaren og avsluttar. Overstyrar alle andre argument."
#: start_parameters.xhp
msgctxt ""
@@ -17390,7 +17390,7 @@ msgctxt ""
"par_id3153919\n"
"help.text"
msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deactivates the Quickstarter service. Without parameters this service is activated."
-msgstr ""
+msgstr "Aktiverer[deaktiverer] tenesta snøggstart. Det tar berre eitt parameter: <emph>no</emph> som slår av snøggtast. Utan parameter vert snøggstart slått på."
#: start_parameters.xhp
msgctxt ""
@@ -17822,7 +17822,7 @@ msgctxt ""
"par_id2016120401435616\n"
"help.text"
msgid "Ignored (macOS only)"
-msgstr ""
+msgstr "Ignorert (Berre macOS)"
#: start_parameters.xhp
msgctxt ""
@@ -17950,7 +17950,7 @@ msgctxt ""
"par_id1022200911011855\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">The Templates icon opens the Templates dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Knappen «Malar» opnar dialogvindauget for malar.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17958,7 +17958,7 @@ msgctxt ""
"par_id0820200803105045\n"
"help.text"
msgid "The <emph>Templates</emph> icon opens the <link href=\"text/shared/guide/aaa_start.xhp\">Templates</link> dialog."
-msgstr ""
+msgstr "Knappen <emph>Malar</emph> opnar dialogvindauget <link href=\"text/shared/guide/aaa_start.xhp\">Malar</link>."
#: startcenter.xhp
msgctxt ""
@@ -18278,7 +18278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Template Manager"
-msgstr ""
+msgstr "Malhandsamar"
#: template_manager.xhp
msgctxt ""
@@ -18286,7 +18286,7 @@ msgctxt ""
"bm_id041620170817452766\n"
"help.text"
msgid "<bookmark_value>template manager;filter</bookmark_value> <bookmark_value>template manager;category</bookmark_value> <bookmark_value>template manager;set as default</bookmark_value> <bookmark_value>template manager;import</bookmark_value> <bookmark_value>template manager;export</bookmark_value> <bookmark_value>template manager;settings</bookmark_value> <bookmark_value>templates;template manager</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>malhandsamar;filter</bookmark_value> <bookmark_value>malhandsamar;kategori</bookmark_value> <bookmark_value>malhandsamar;set som standard</bookmark_value> <bookmark_value>malhandsamar;import</bookmark_value> <bookmark_value>malhandsamar;eksport</bookmark_value> <bookmark_value>malhandsamar;innstillingar</bookmark_value> <bookmark_value>malar;malhandsamar</bookmark_value>"
#: template_manager.xhp
msgctxt ""
@@ -18294,7 +18294,7 @@ msgctxt ""
"hd_id041620170649101471\n"
"help.text"
msgid "<link href=\"text/shared/guide/template_manager.xhp\">Manage Templates</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/template_manager.xhp\">Handsam malar</link>"
#: template_manager.xhp
msgctxt ""
@@ -18302,7 +18302,7 @@ msgctxt ""
"par_id04162017064929216\n"
"help.text"
msgid "<ahelp hid=\".\">The Template Manager dialog makes it easy to manage templates and allows to start new documents using templates.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Malhandsamaren gjer det enkelt å handsama malar og å opna eit nytt dokument som brukar malar.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18310,7 +18310,7 @@ msgctxt ""
"par_id04162017072349624\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">File - New – Templates.</item>"
-msgstr ""
+msgstr "Vel menyen <item type=\"menuitem\">Fil → Ny → Malar</item>"
#: template_manager.xhp
msgctxt ""
@@ -18318,7 +18318,7 @@ msgctxt ""
"par_id041620170723496526\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">File – Template – Manage Templates.</item>"
-msgstr ""
+msgstr "Vel menyen <item type=\"menuitem\">Fil → Malar → Ordna malane</item>"
#: template_manager.xhp
msgctxt ""
@@ -18326,7 +18326,7 @@ msgctxt ""
"par_id041620170723493622\n"
"help.text"
msgid "Enter <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">Command</item></caseinline><defaultinline><item type=\"menuitem\">Ctrl</item></defaultinline></switchinline><item type=\"menuitem\">+Shift+N </item>in any %PRODUCTNAME module."
-msgstr ""
+msgstr "Trykk på <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">Cmd</item></caseinline><defaultinline><item type=\"menuitem\">Ctrl</item></defaultinline></switchinline><item type=\"menuitem\"> + Shift + N </item>i kva %PRODUCTNAME-modul som helst."
#: template_manager.xhp
msgctxt ""
@@ -18334,7 +18334,7 @@ msgctxt ""
"par_id041620170723497279\n"
"help.text"
msgid "Press the <item type=\"menuitem\">Templates </item>button in the Start Center."
-msgstr ""
+msgstr "Trykk på knappen <item type=\"menuitem\">Malar</item> i startsenteret."
#: template_manager.xhp
msgctxt ""
@@ -18342,7 +18342,7 @@ msgctxt ""
"par_id041620170723509119\n"
"help.text"
msgid "Select any template type from the <item type=\"menuitem\">Templates </item>button of the Start Center."
-msgstr ""
+msgstr "Vel ein maltype ved å trykkja på knappen <item type=\"menuitem\">Malar</item> i startsenteret."
#: template_manager.xhp
msgctxt ""
@@ -18350,7 +18350,7 @@ msgctxt ""
"par_id041620170723502887\n"
"help.text"
msgid "Templates save editing time by starting new documents with pre-filled contents and formatting. The Template Manager allows you to access and organize templates in %PRODUCTNAME."
-msgstr ""
+msgstr "Malane kan spare deg for mykje tid når du lagar nye dokument med ferdig utfylt innhald og formatering. Med malhandsamaren har du tilgang til malane og kan organidsera dei i %PRODUCTNAME."
#: template_manager.xhp
msgctxt ""
@@ -18358,7 +18358,7 @@ msgctxt ""
"par_id041620170753116381\n"
"help.text"
msgid "%PRODUCTNAME comes with a set of built-in templates that can be used to create documents, presentations, spreadsheets or drawings. You may use templates available in the template manager, create your own templates or browse online for additional templates."
-msgstr ""
+msgstr "%PRODUCTNAME.kjem med fleire innebygde malar (på engelsk) som kan brukast til å laga nye dokument, presentasjonar og teikningar. Du kan bruka dei malane som er tilgjengelege i malhandsamaren, laga nye malar og leita på nettet etter fleire malar."
#: template_manager.xhp
msgctxt ""
@@ -18366,7 +18366,7 @@ msgctxt ""
"par_id041620170723504381\n"
"help.text"
msgid "If you have opened the %PRODUCTNAME start center and have not yet opened a document or application, the Template Manager may be accessed differently. <item type=\"menuitem\">Ctrl-Shift-N</item> will still open the Template Manager, but it may also be accessed by choosing Templates from the left sidebar, and then choosing Manage Templates."
-msgstr ""
+msgstr "Dersom du har opna startsenteret i %PRODUCTNAME.utan å ha opna eit dokument eller program, får du tilgang til malhandsamaren på ein litt annan måte. Du kan framleis opna han med <item type=\"menuitem\">Ctrl + Shift + N</item>, men du kan i tillegg velja «Malar3 på det venstre sidepanelet og deretter velja «Administrer malane»."
#: template_manager.xhp
msgctxt ""
@@ -18374,7 +18374,7 @@ msgctxt ""
"hd_id041620170723509935\n"
"help.text"
msgid "Main Window – Template Choices"
-msgstr ""
+msgstr "Hovudvindauget – Val av malar"
#: template_manager.xhp
msgctxt ""
@@ -18382,7 +18382,7 @@ msgctxt ""
"par_id041620170723507192\n"
"help.text"
msgid "Previews of available templates show up in the main window based on your search and filtering choices. Double-click on any template icon to open a new document with the contents and formatting of the template."
-msgstr ""
+msgstr "Det vert vist bilete av dei malane som er funne i hovudvindauget ut frå korleis du søkte etter dei. Dobbeltklikk på ei av førehandsvisingane for å opna eit nytt dokument med innhaldet og formateringa frå malen."
#: template_manager.xhp
msgctxt ""
@@ -18390,7 +18390,7 @@ msgctxt ""
"hd_id041620170723501731\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Søk"
#: template_manager.xhp
msgctxt ""
@@ -18398,7 +18398,7 @@ msgctxt ""
"par_id041620170723505410\n"
"help.text"
msgid "<ahelp hid=\".\">You may search for a template by entering text in the search box at the top left. The Main window show the templates found.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Du kan søkja etter ein mal ved å skriva inn ein tekst i innskrivingsboksen oppe til venstre. Eventuelle funn vert viste i hovudvindauget.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18406,7 +18406,7 @@ msgctxt ""
"hd_id041620170723509978\n"
"help.text"
msgid "Filter"
-msgstr ""
+msgstr "Filter"
#: template_manager.xhp
msgctxt ""
@@ -18414,7 +18414,7 @@ msgctxt ""
"par_id041620170723507575\n"
"help.text"
msgid "<ahelp hid=\".\">You may filter for All Applications, Documents, Spreadsheets or Drawings by choosing an option from the dropdown box at the top-center. The main window displays the filtered templates.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">I nedtrekkslista «Filter» kan du velja å sjå gjennom alle program, dokument, rekneark eller teikningar. Hovudvindauget vil visa dei filtrerte malane. </ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18422,7 +18422,7 @@ msgctxt ""
"hd_id041620170723509321\n"
"help.text"
msgid "Categories"
-msgstr ""
+msgstr "Kategoriar"
#: template_manager.xhp
msgctxt ""
@@ -18430,7 +18430,7 @@ msgctxt ""
"par_id041620170723507710\n"
"help.text"
msgid "<ahelp hid=\".\">Categories are folders where you place your templates.</ahelp> You may choose from the defaults categories My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations, or Styles. You may create new categories for your personal use. Use the Settings button of the Template Manager to create a new category."
-msgstr ""
+msgstr "<ahelp hid=\".\">Kategoriar er mappene malane er lagra i.</ahelp> Du kan velja mellom alle kategoriar, mine malar, andre forretningsdokument, forretningskorrespondanse, MediaWiki, presentasjonar, privat korrespondanse og dokument og stilar. (Lista kan variera etter kva du har sett opp). Bruk knappen for innstillingar for å laga ein ny kategori."
#: template_manager.xhp
msgctxt ""
@@ -18438,7 +18438,7 @@ msgctxt ""
"par_id041620170946429148\n"
"help.text"
msgid "Categories inside a category are not allowed."
-msgstr ""
+msgstr "Du kan ikkje ha ein kategori inne i ein annan kategori."
#: template_manager.xhp
msgctxt ""
@@ -18446,7 +18446,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "To add the templates in another folder to the <emph>My Templates</emph> category, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
-msgstr ""
+msgstr "For å leggja malar frå andre mapper til kategorien <emph>Mine malar</emph>, vel <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Verktøy → Innstillingar</defaultinline></switchinline> → <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] → Stiar</emph></link> og skriv inn stien."
#: template_manager.xhp
msgctxt ""
@@ -18454,7 +18454,7 @@ msgctxt ""
"hd_id041620170723509814\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Innstillingar"
#: template_manager.xhp
msgctxt ""
@@ -18462,7 +18462,7 @@ msgctxt ""
"par_id041620170723504497\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the Settings icon at the bottom left to open the Settings menu.</ahelp> The options are create a New Category, Delete Category or Refresh. If a default template for new documents has been changed, an additional option to reset the factory default template is available."
-msgstr ""
+msgstr "<ahelp hid=\".\">Trykk på symbolet for innstillingar nede til venstre for å opna menyen for innstillingar.</ahelp> Her kan du laga ein ny kategori, sletta ein kategori eller oppdatera. Dersom ein standardmal for nye dokument er endra, kan finn du også eit val for å stilla denne tilbake til fabrikkinnstillingane."
#: template_manager.xhp
msgctxt ""
@@ -18470,7 +18470,7 @@ msgctxt ""
"hd_id041620170723501627\n"
"help.text"
msgid "Browse Online Templates"
-msgstr ""
+msgstr "Bla gjennom malar på nettet"
#: template_manager.xhp
msgctxt ""
@@ -18478,7 +18478,7 @@ msgctxt ""
"par_id041620170723503494\n"
"help.text"
msgid "<ahelp hid=\".\">To browse for more templates online, click on the Browse online templates icon at bottom left to open a browser window and search for templates at <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Trykk på knappen «Bla gjennom malar på nettet» nede til venstre for å opna ein nettlesar slik at du kan sjå etter malar på <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18486,7 +18486,7 @@ msgctxt ""
"hd_id041620170723503949\n"
"help.text"
msgid "Open"
-msgstr ""
+msgstr "Opna"
#: template_manager.xhp
msgctxt ""
@@ -18494,7 +18494,7 @@ msgctxt ""
"par_id041620170723503583\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
-msgstr ""
+msgstr "Vel ein mal i hovudvindauget og høgreklikk på han og vel «Opna», trykk Enter eller dobbeltklikk for å opna eit nytt dokument med denne malen."
#: template_manager.xhp
msgctxt ""
@@ -18502,7 +18502,7 @@ msgctxt ""
"hd_id041620170723504268\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Rediger"
#: template_manager.xhp
msgctxt ""
@@ -18510,7 +18510,7 @@ msgctxt ""
"par_id041620170723502297\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Edit to edit the template. This function is only available for templates that are not built-in."
-msgstr ""
+msgstr "Vel ein mal i hovudvindauget og høgreklikk og vel «Rediger» for å redigera malen. Dette gjeld berre for malar som ikkje er innebygde."
#: template_manager.xhp
msgctxt ""
@@ -18518,7 +18518,7 @@ msgctxt ""
"hd_id041620170723509251\n"
"help.text"
msgid "Set as Default"
-msgstr ""
+msgstr "Set som standard"
#: template_manager.xhp
msgctxt ""
@@ -18526,7 +18526,7 @@ msgctxt ""
"par_id041620170723501975\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear over the template and the template will automatically load when a new document is created using the matching application."
-msgstr ""
+msgstr "Vel ein mal i hovudvindauget og høgreklikk og vel «Set som standard» for å gjera malen til standardmalen. Dette vil setja eit grønt merke over malen. Malen vert då lasta inn automatisk når eit nytt dokument vert opna med det tilhøyrande programmet."
#: template_manager.xhp
msgctxt ""
@@ -18534,7 +18534,7 @@ msgctxt ""
"par_id041620171037534321\n"
"help.text"
msgid "Refer to the <link href=\"text/shared/guide/standard_template.xhp\">Standard Template</link>"
-msgstr ""
+msgstr "Referer til <link href=\"text/shared/guide/standard_template.xhp\">Standardmal</link>"
#: template_manager.xhp
msgctxt ""
@@ -18542,7 +18542,7 @@ msgctxt ""
"hd_id041620170723508003\n"
"help.text"
msgid "Rename"
-msgstr ""
+msgstr "Endra namn"
#: template_manager.xhp
msgctxt ""
@@ -18550,7 +18550,7 @@ msgctxt ""
"par_id041620170723509003\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Rename to rename the template. This will cause a dialog box to appear where a new name may be chosen for the template. Type in the name and then choose OK or choose Cancel to revert to the name that is already set."
-msgstr ""
+msgstr "Vel ein mal i hovudvindauget og høgreklikk og vel «Endra namn» for å gi malen eit nytt namn. redigera malen. Dette vil opna eit nytt dialogvindauge der du kan skriva inn eit nytt namn på malen. Trykk OK når du er ferdig eller trykk Avbryt dersom du ikkje vil endra namnet."
#: template_manager.xhp
msgctxt ""
@@ -18558,7 +18558,7 @@ msgctxt ""
"hd_id041620170723508658\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Slett"
#: template_manager.xhp
msgctxt ""
@@ -18566,7 +18566,7 @@ msgctxt ""
"par_id041620170723504317\n"
"help.text"
msgid "Select a template in the main window and press the delete button, or right-click then choose Delete to delete the template. A dialog box will appear requesting confirmation. Choose Yes to delete or No to cancel."
-msgstr ""
+msgstr "Vel ein mal i hovudvindauget og trykk knappen Slett eller høgreklikk og vel «Slett» for å sletta malen. Dette vil opna eit dialogvindauge der du kan stadfesta slettinga ved å trykka på Ja, eller Nei dersom du ikkje vil sletta malen."
#: template_manager.xhp
msgctxt ""
@@ -18574,7 +18574,7 @@ msgctxt ""
"hd_id041620170723508845\n"
"help.text"
msgid "Move"
-msgstr ""
+msgstr "Flytt"
#: template_manager.xhp
msgctxt ""
@@ -18582,7 +18582,7 @@ msgctxt ""
"par_id041620170723518776\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the Move option at the bottom right after selecting a template to move it to a different category. Default templates cannot be moved, but copies can be created in other categories.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel ein mal i hovudvindauget og trykk på knappen «Flytt» for å flytta malen til ein annan kategori. Dei innebygde malane kan ikkje flyttast, men du kan laga ein kopi og leggja han i andre kategoriar.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18590,7 +18590,7 @@ msgctxt ""
"hd_id041620170723516791\n"
"help.text"
msgid "Export"
-msgstr ""
+msgstr "Eksporter"
#: template_manager.xhp
msgctxt ""
@@ -18598,7 +18598,7 @@ msgctxt ""
"par_id041620170723513192\n"
"help.text"
msgid "<ahelp hid=\".\">Choose a template in the main window and then press the Export button at the bottom right to export the template to a folder on your computer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel ein mal i hovudvindauget og trykk knappen «Eksporter» nede til høgre for å eksportere malen til ei mappe på datamaskinen.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18606,7 +18606,7 @@ msgctxt ""
"hd_id041620170723516279\n"
"help.text"
msgid "Import"
-msgstr ""
+msgstr "Importer"
#: template_manager.xhp
msgctxt ""
@@ -18614,7 +18614,7 @@ msgctxt ""
"par_id04162017072351776\n"
"help.text"
msgid "<ahelp hid=\".\">Press the Import button at the bottom right, and then choose a Category to import a template from your computer to that category in the Template Manager.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Trykk på knappen «Importer» nede til høgre, vel deretter ein kategori for å importere ein mal frå datamaskinen til den valde kategorien i malhandsamaren.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -18622,7 +18622,7 @@ msgctxt ""
"hd_id041620170723515107\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Eksempel"
#: template_manager.xhp
msgctxt ""
@@ -18630,7 +18630,7 @@ msgctxt ""
"hd_id041620170723516260\n"
"help.text"
msgid "Example 1 – Creating a Business Letter"
-msgstr ""
+msgstr "Eksempel 1 – Laga eit forretningsbrev"
#: template_manager.xhp
msgctxt ""
@@ -18638,7 +18638,7 @@ msgctxt ""
"par_id041620170723512460\n"
"help.text"
msgid "Open %PRODUCTNAME Writer"
-msgstr ""
+msgstr "Opna %PRODUCTNAME Writer"
#: template_manager.xhp
msgctxt ""
@@ -18646,7 +18646,7 @@ msgctxt ""
"par_id041620170723518567\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or File – New Template to open the Template Manager"
-msgstr ""
+msgstr "Trykk <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + N eller Fil → Ny malar for å opna malhandsamaren."
#: template_manager.xhp
msgctxt ""
@@ -18654,7 +18654,7 @@ msgctxt ""
"par_id041620170723513600\n"
"help.text"
msgid "Type “business letter” into the search box"
-msgstr ""
+msgstr "Skriv «forretningsbrev» eller eventuelt «business» i søkjeboksen."
#: template_manager.xhp
msgctxt ""
@@ -18662,7 +18662,7 @@ msgctxt ""
"par_id041620170723518765\n"
"help.text"
msgid "Choose one of the templates from the main window by double-clicking on it or pressing tab to select and then Enter"
-msgstr ""
+msgstr "Vel ein av malane som vonleg kjem opp ved å dobbeltklikka på han eller trykk tabulatortasten for å velja og derette Enter-tasten."
#: template_manager.xhp
msgctxt ""
@@ -18670,7 +18670,7 @@ msgctxt ""
"par_id041620170723511456\n"
"help.text"
msgid "A new document using that template is created in a new instance of %PRODUCTNAME Writer"
-msgstr ""
+msgstr "Det vert nå opna eit nytt %PRODUCTNAME-dokument som brukar denne malen."
#: template_manager.xhp
msgctxt ""
@@ -18678,7 +18678,7 @@ msgctxt ""
"par_id041620170723516762\n"
"help.text"
msgid "Change text and logo as needed"
-msgstr ""
+msgstr "Gjer dei ønskte endringane i dokumentet."
#: template_manager.xhp
msgctxt ""
@@ -18686,7 +18686,7 @@ msgctxt ""
"hd_id041620170723518918\n"
"help.text"
msgid "Example 2 – Import Template – Personal Budget Spreadsheet"
-msgstr ""
+msgstr "Eksempel 2 – Importer mal – privat budsjettrekneark"
#: template_manager.xhp
msgctxt ""
@@ -18694,7 +18694,7 @@ msgctxt ""
"par_id041620170723511504\n"
"help.text"
msgid "Open %PRODUCTNAME Calc"
-msgstr ""
+msgstr "Opna %PRODUCTNAME Calc"
#: template_manager.xhp
msgctxt ""
@@ -18702,7 +18702,7 @@ msgctxt ""
"par_id041620170723518639\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or File – New Template to open the Template Manager"
-msgstr ""
+msgstr "Trykk <switchinline select=\"sys\"><caseinline select=\"MAC\">Cmd</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + N eller Fil → Ny → Malar for å opna malhandsamaren."
#: template_manager.xhp
msgctxt ""
@@ -18710,7 +18710,7 @@ msgctxt ""
"par_id041620170723512689\n"
"help.text"
msgid "Click on the world icon to browse for online templates"
-msgstr ""
+msgstr "Trykk på globussymbolet nede til venstre for å sjå etter malar på nettet."
#: template_manager.xhp
msgctxt ""
@@ -18718,7 +18718,7 @@ msgctxt ""
"par_id041620170723511300\n"
"help.text"
msgid "Search for the Personal Budget Template, then download it"
-msgstr ""
+msgstr "Søk etter ein mal for personleg budsjett (engelsk: personal budget) og last han ned."
#: template_manager.xhp
msgctxt ""
@@ -18726,7 +18726,7 @@ msgctxt ""
"par_id041620170723514055\n"
"help.text"
msgid "Open Template Manager and choose the Import button"
-msgstr ""
+msgstr "Opna malhandsamaren og trykk på knappen «Importer»."
#: template_manager.xhp
msgctxt ""
@@ -18734,7 +18734,7 @@ msgctxt ""
"par_id041620170723513485\n"
"help.text"
msgid "Select a category to save the new template in (e.g. My Templates) and press OK"
-msgstr ""
+msgstr "Vel ein kategori, for eksempel «Mine malar», og trykk OK."
#: template_manager.xhp
msgctxt ""
@@ -18742,7 +18742,7 @@ msgctxt ""
"par_id041620170723513541\n"
"help.text"
msgid "Browse to the folder where you downloaded the template, select it and press Open"
-msgstr ""
+msgstr "Finn den malen du lasta ned, merk han og trykk «Opna»"
#: template_manager.xhp
msgctxt ""
@@ -18750,7 +18750,7 @@ msgctxt ""
"par_id041620170723511411\n"
"help.text"
msgid "The Template is now available in the category you chose."
-msgstr ""
+msgstr "Malen er nå tilgjengeleg i den kategorien du valde."
#: template_manager.xhp
msgctxt ""
@@ -18758,7 +18758,7 @@ msgctxt ""
"hd_id041620170723518447\n"
"help.text"
msgid "Example 3 – %PRODUCTNAME Impress – Presentation Template"
-msgstr ""
+msgstr "Eksempel 3 – %PRODUCTNAME Impress – mal for presentasjon"
#: template_manager.xhp
msgctxt ""
@@ -18766,7 +18766,7 @@ msgctxt ""
"par_id041620170723515914\n"
"help.text"
msgid "Open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "Opna %PRODUCTNAME Impress"
#: template_manager.xhp
msgctxt ""
@@ -18774,7 +18774,7 @@ msgctxt ""
"par_id041620170723523193\n"
"help.text"
msgid "The Template Manager opens automatically when you open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "Når du opnar %PRODUCTNAME Impress vert malhandsamaren opna samstundes."
#: template_manager.xhp
msgctxt ""
@@ -18782,7 +18782,7 @@ msgctxt ""
"par_id041620170723525963\n"
"help.text"
msgid "Choose a template for your presentation, filter by categories or search"
-msgstr ""
+msgstr "Vel ein mal."
#: template_manager.xhp
msgctxt ""
@@ -18790,7 +18790,7 @@ msgctxt ""
"par_id041620170723523510\n"
"help.text"
msgid "Additional features are unavailable, and you may only select a template, filter, or import."
-msgstr ""
+msgstr "Dei einaste vala du har her er å velja eller å importera ein mal."
#: template_manager.xhp
msgctxt ""
@@ -18798,7 +18798,7 @@ msgctxt ""
"par_id041620170723525323\n"
"help.text"
msgid "After starting %PRODUCTNAME Impress you may run the Template Manager again to access additional features."
-msgstr ""
+msgstr "Etter at du har opna %PRODUCTNAME Impress kan du opna malhandsamaren igjen for å bruka andre funksjonar."
#: template_manager.xhp
msgctxt ""
@@ -18806,7 +18806,7 @@ msgctxt ""
"par_id041620170723521916\n"
"help.text"
msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
-msgstr ""
+msgstr "Organiser malane i kategoriar. Bruk malhandsamaren for å laga nye malar eller å lasta ned malar. Bruk av malar kan spara deg for mykje tid når du har fleire dokument med nokolunde same utforminga eller innhaldet."
#: template_manager.xhp
msgctxt ""
@@ -18814,7 +18814,7 @@ msgctxt ""
"par_id04162017072352773\n"
"help.text"
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
-msgstr ""
+msgstr "Du kan finna meir informasjon under <link href=\"text/swriter/guide/templates_styles.xhp\">Malar og stilar</link>."
#: template_manager.xhp
msgctxt ""
@@ -18822,7 +18822,7 @@ msgctxt ""
"par_id041620170723523966\n"
"help.text"
msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr ""
+msgstr "Du kan finna meir informasjon under <link href=\"text/swriter/guide/template_create.xhp\">Laga ein dokumentmal</link>."
#: template_manager.xhp
msgctxt ""
@@ -18830,7 +18830,7 @@ msgctxt ""
"par_id04162017072352674\n"
"help.text"
msgid "See Chapter 3 – Using Styles and Templates in the Getting Started Guide, available from the <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">documentation website</link>."
-msgstr ""
+msgstr "Sjå kapittel 3 – «Bruk av stilar og malar» i «Kom i gang», tilgjengeleg (på engelsk) frå <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">Nettsida for dokumentasjon</link>"
#: template_manager.xhp
msgctxt ""
@@ -18838,7 +18838,7 @@ msgctxt ""
"par_id041620170723529524\n"
"help.text"
msgid "Refer to <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> for templates to download."
-msgstr ""
+msgstr "Du kan finna malar for nedlasting i <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>."
#: text_color.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/optionen.po b/source/nn/helpcontent2/source/text/shared/optionen.po
index a173dcd5757..e2de7057e1b 100644
--- a/source/nn/helpcontent2/source/text/shared/optionen.po
+++ b/source/nn/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-05 09:41+0000\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-17 17:13+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496655677.000000\n"
+"X-POOTLE-MTIME: 1497719600.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id1013200911280529\n"
"help.text"
msgid "Note for macOS users: The Help mentions the menu path Tools - Options at numerous places. Replace this path with %PRODUCTNAME - Preferences on your macOS main menu. Both menu entries open the Options dialog box."
-msgstr ""
+msgstr "Merknad for brukarar av mac OS: I «Hjelp» er menystien «Verktøy → Innstillingar» nemnd mange stader. Byt ut denne stien med «%PRODUCTNAME → Innstillingar» på menyen til mac OS. Begge menyoppføringane opnar dialogvindauget for innstillingar."
#: 01000000.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "In the following list of paths, the paths for the shared folders in the directory where %PRODUCTNAME is installed, are not shown. The user data for each user is stored in the {user} directory, which is located in the user's <switchinline select=\"sys\"><caseinline select=\"UNIX\">home</caseinline><defaultinline>Documents and Settings</defaultinline></switchinline> directory."
-msgstr "I den følgjande lista over stiar, vert ikkje stiane for dei delte mappene i installasjonsmappa for %PRODUCTNAME viste. Brukarinformasjonen for kvar brukar er lagra i {user}-mappa, som ligg i mappa <switchinline select=\"sys\"><caseinline select=\"UNIX\">home</caseinline><defaultinline>Documents and Settings</defaultinline></switchinline>."
+msgstr "I den følgjande lista over stiar, vert ikkje stiane for dei delte mappene i installasjonsmappa for %PRODUCTNAME viste. Brukarinformasjonen for kvar brukar er lagra i {brukar}-mappa, som ligg i mappa <switchinline select=\"sys\"><caseinline select=\"UNIX\">home</caseinline><defaultinline>Documents and Settings</defaultinline></switchinline>."
#: 01010300.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3753776\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/autocorr</caseinline><defaultinline>{user}\\user\\autocorr</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/autocorr </caseinline><defaultinline>{user}\\user\\autocorr</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/autocorr </caseinline><defaultinline>{brukar}\\user\\autocorr</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_id7858516\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/autotext</caseinline><defaultinline>{user}\\user\\autotext</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/autotext </caseinline><defaultinline>{user}\\user\\autotext</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/autotext </caseinline><defaultinline>{brukar}\\user\\autotext</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3154484\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/gallery</caseinline><defaultinline>{user}\\user\\gallery</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/gallery </caseinline><defaultinline>{user}\\user\\gallery</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/gallery </caseinline><defaultinline>{brukar}\\user\\gallery</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3152890\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/gallery</caseinline><defaultinline>{user}\\user\\gallery</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/gallery </caseinline><defaultinline>{user}\\user\\gallery</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/gallery </caseinline><defaultinline>{brukar}\\user\\gallery</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3154915\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/backup</caseinline><defaultinline>{user}\\user\\backup</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/backup </caseinline><defaultinline>{user}\\user\\backup</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/backup </caseinline><defaultinline>{brukar}\\user\\backup</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id9014252\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/template</caseinline><defaultinline>{user}\\user\\template</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/template </caseinline><defaultinline>{user}\\user\\template</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/template </caseinline><defaultinline>{brukar}\\user\\template</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3149343\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/temp</caseinline><defaultinline>{user}\\user\\temp</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user}/user/temp </caseinline><defaultinline>{user}\\user\\temp</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{brukar}/user/temp </caseinline><defaultinline>{brukar}\\user\\temp</defaultinline></switchinline>"
#: 01010300.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"hd_id3154754\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Plukk</link>"
#: 01010501.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Velja ein ny farge"
#: 01010501.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Velja ein ny farge"
#: 01010501.xhp
msgctxt ""
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2294,14 +2302,14 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "Vindauget for å velja farge inneheld fire hovudområde."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
@@ -2310,7 +2318,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "The spin buttons are for entering the numerical value of the color component."
-msgstr ""
+msgstr "Du skriv inn talverdien for komponentane i talboksane."
#: 01010501.xhp
msgctxt ""
@@ -2318,7 +2326,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">Den loddrette glidebrytaren vert brukt for å endra verdien for kvar komponent i fargen.</ahelp> Du kan også velja fargekomponentane nokså nøyaktig i det store fargefeltet. "
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2334,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "Den nedre fargelinja viser den gamle og den nye fargen."
#: 01010501.xhp
msgctxt ""
@@ -2334,7 +2342,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Trykk på det store fargefeltet for å velja ein ny farge. Du kan endra to komponentar av fargen representerte i fargemodellane RGB og HSB. Dette er dei to komponentane som ikkje er merkte med radioknappane til høgre i vindauget.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2342,7 +2350,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Den høgre sida av fargelinja nede i vindauget viser originalfargen frå fana <emph>Fargar</emph>.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2350,7 +2358,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Den venstre sida av fargelinja nede i vindauget viser fargen du har laga.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2366,7 +2374,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: 01010501.xhp
msgctxt ""
@@ -2382,7 +2390,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg endra den raude komponenten på den loddrette glidebrytaren og den grøne og blå komponenten i det todimensjonale feltet. Verdiane må vera frå 0 til 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2390,7 +2398,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Let deg setja den raude fargeverdien direkte. Verdien må vera frå 0 til 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2406,7 +2414,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg endra den grøne komponenten på den loddrette glidebrytaren og den raude og blå komponenten i det todimensjonale feltet. Verdiane må vera frå 0 til 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2414,7 +2422,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Let deg setja den grøne fargeverdien direkte. Verdien må vera frå 0 til 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2430,7 +2438,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg endra den raude komponenten på den loddrette glidebrytaren og den grøne og blå komponenten i det todimensjonale feltet. Verdiane må vera frå 0 til 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2438,7 +2446,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Let deg setja den blå fargeverdien direkte. Verdien må vera frå 0 til 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2446,7 +2454,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "Hex #"
#: 01010501.xhp
msgctxt ""
@@ -2454,7 +2462,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser og let deg skriva inn fargeverdien i RGB-modellen som eit heksadesimalt tal.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2462,7 +2470,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2470,7 +2478,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Fargetone"
#: 01010501.xhp
msgctxt ""
@@ -2478,7 +2486,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg endra fargetone-komponenten på den loddrette glidebrytaren og komponentane metning og lysstyrke i det todimensjonale feltet. Verdiane må vera i grader frå 0 til 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2486,7 +2494,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set fargetonen direkte i HSB-modellen. Verdiane må vera i grader frå 0 til 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2502,7 +2510,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg endra metnings-komponenten på den loddrette glidebrytaren og komponentane fargetone og lysstyrke i det todimensjonale feltet. Verdiane må vera i prosent frå 0 til 100.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2510,7 +2518,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set metninga direkte i HSB-modellen. Verdiane må vera i prosent frå 0 til 100.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2518,7 +2526,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Lysstyrke"
#: 01010501.xhp
msgctxt ""
@@ -2526,7 +2534,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Let deg endra lysstyrke-komponenten på den loddrette glidebrytaren og komponentane fargetone og metning i det todimensjonale feltet. Verdiane må vera i prosent frå 0 til 100.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2534,7 +2542,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set lysstyrken direkte i HSB-modellen. Verdiane må vera i prosent frå 0 til 100.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2542,7 +2550,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2558,7 +2566,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set fargeverdien for cyanblå i fargemodellen CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2574,7 +2582,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set fargeverdien for magentaraud i fargemodellen CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2590,7 +2598,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set fargeverdien for gul i fargemodellen CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2606,7 +2614,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set fargeverdien for svart i fargemodellen CMYK. (K står for blacK eller Key).</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -3198,7 +3206,7 @@ msgctxt ""
"par_id3153947\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Specifies the display size of toolbar icons.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> The <emph>Automatic</emph> option uses the font size settings of your operating system for menus. </caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconsize\">Vel visingsstorleik for knappar på verktøylinja.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> Alternativet <emph>Automatisk</emph> bruker innstillingane for skriftstorleik i menyar som ligg i operativsystemet.</caseinline></switchinline>"
#: 01010800.xhp
msgctxt ""
@@ -3614,7 +3622,7 @@ msgctxt ""
"par_id3158407\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether the print settings apply to direct printing or to printing to a file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel om utskriftsinnstillingane skal gjelda for direkte utskrift til skrivaren eller for utskrift til ei fil.</ahelp>"
#: 01010900.xhp
msgctxt ""
@@ -3702,7 +3710,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "<ahelp hid=\".\">High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Høg utskriftskvalitet svarar til ei oppløysing på 300 dpi. Normal utskriftskvalietet svarar til ei oppløysing på 200 dpi.</ahelp>"
#: 01010900.xhp
msgctxt ""
@@ -3718,7 +3726,7 @@ msgctxt ""
"par_id3154270\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer høgaste utskriftskvalitet i dpi. Oppløysinga kan berre reduserast, ikkje aukast.</ahelp>"
#: 01010900.xhp
msgctxt ""
@@ -3742,7 +3750,7 @@ msgctxt ""
"hd_id3154362\n"
"help.text"
msgid "Reduce gradient"
-msgstr ""
+msgstr "Reduser fargeovergang"
#: 01010900.xhp
msgctxt ""
@@ -3766,7 +3774,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum number of gradient stripes for printing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer det høgste talet på fargeovergangsstriper ved utskrift.</ahelp>"
#: 01010900.xhp
msgctxt ""
@@ -4726,7 +4734,7 @@ msgctxt ""
"par_idN10644\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the \"Security Options and Warnings\" dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opnar dialogvindauget «Tryggleiksval og åtvaringar».</ahelp>"
#: 01030300.xhp
msgctxt ""
@@ -4878,7 +4886,7 @@ msgctxt ""
"par_idN10692\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsecuritypage/macro\">Opens the <emph>Macro Security</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optsecuritypage/macro\">Opnar dialogvindauget for <emph>Makrotryggleik</emph>.</ahelp>"
#: 01030300.xhp
msgctxt ""
@@ -6870,7 +6878,7 @@ msgctxt ""
"bm_id3145119\n"
"help.text"
msgid "<bookmark_value>links; updating options (Writer)</bookmark_value> <bookmark_value>updating; links in text documents</bookmark_value> <bookmark_value>updating; fields and charts, automatically (Writer)</bookmark_value> <bookmark_value>fields;updating automatically (Writer)</bookmark_value> <bookmark_value>charts; updating automatically (Writer)</bookmark_value> <bookmark_value>captions; tables/pictures/frames/OLE objects (Writer)</bookmark_value> <bookmark_value>tables in text; captions</bookmark_value> <bookmark_value>pictures; captions (Writer)</bookmark_value> <bookmark_value>frames; captions (Writer)</bookmark_value> <bookmark_value>OLE objects; captions (Writer)</bookmark_value> <bookmark_value>tab stops; spacing in text documents</bookmark_value> <bookmark_value>spacing; tab stops in text documents</bookmark_value> <bookmark_value>word counts; separators</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>lenkjer; oppdatera i Writer</bookmark_value><bookmark_value>oppdatera; lenkjer i tekstdokument</bookmark_value><bookmark_value>oppdatera; felt og diagram, automatisk</bookmark_value><bookmark_value>felt;oppdatera automatisk</bookmark_value><bookmark_value>diagram; oppdatera automatisk</bookmark_value><bookmark_value>bilettekstar; tabellar, bilete, rammer og OLE-objekt (Writer)</bookmark_value><bookmark_value>tabellar i tekst; bilettekstar</bookmark_value><bookmark_value>bilete; bilettekstar (Writer)</bookmark_value><bookmark_value>rammer; bilettekstar (Writer)</bookmark_value><bookmark_value>OLE-objekt; bilettekstar (Writer)</bookmark_value><bookmark_value>tabulatorar; mellomrom i tekstdokument</bookmark_value><bookmark_value>mellomrom; tabulatorar i tekstdokument</bookmark_value><bookmark_value>ordteljing; skiljeteikn</bookmark_value>"
#: 01040900.xhp
msgctxt ""
@@ -6910,7 +6918,7 @@ msgctxt ""
"hd_id050420171032255464\n"
"help.text"
msgid "Settings for automatic links updates stored in documents are ignored for security reasons. Link updates are always bounded by %PRODUCTNAME Security settings in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME – Security</item>."
-msgstr ""
+msgstr "Innstillingane for automatisk oppdatering av lenkjer lagra i dokumentet er ignorert på grunn av tryggleiken. Lenkjeoppdateringar er alltid avgrensa i %PRODUCTNAME i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME → Innstillingar</item></caseinline><defaultinline><item type=\"menuitem\">Verktøy → Innstillingar …</item></defaultinline></switchinline><item type=\"menuitem\"> → .%PRODUCTNAME → Tryggleik</item>."
#: 01040900.xhp
msgctxt ""
@@ -6926,7 +6934,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/always\">Always updates links while loading a document, and only if the document is in a trusted file location or the global security level is Low (Not recommended).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/always\">Oppdater alltid lenkjer når eit dokument vert opna, men berre viss dokumentet er i eit filområdet du stolar på eller det globale tryggleiksnivået er lågt. Vert ikkje tilrådd.</ahelp>"
#: 01040900.xhp
msgctxt ""
@@ -6934,7 +6942,7 @@ msgctxt ""
"par_id050420171020567355\n"
"help.text"
msgid "This setting is treated as <emph>On request</emph> unless either the global macro security level is set to Low in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - Security - Macro Security... - Security Level - Low (not recommended)</item> or the document is located in a trusted place defined by <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME - Security - Macro Security... - Trusted Sources - Trusted File Locations</item>."
-msgstr ""
+msgstr "Denne innstillinga vert handsama som <emph>På spørsmål</emph> dersom den globale makrotryggleiken er sett til låg i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME → Innstillingar</item></caseinline><defaultinline><item type=\"menuitem\">Verktøy → Innstillingar …</item></defaultinline></switchinline><item type=\"menuitem\"> → %PRODUCTNAME → Tryggleik → Makro-tryggleik → Tryggleiksnivå Låg (ikkje tilrådd)</item> eller at dokumentet er lagra på ein tiltrudd stad definert ved <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME → Innstillingar</item></caseinline><defaultinline><item type=\"menuitem\">Verktøy → Innstillingar …</item></defaultinline></switchinline><item type=\"menuitem\"> → %PRODUCTNAME → Tryggleik → Makro-tryggleik → Tiltrudde kjelder → Tiltrudde filplasseringar</item>."
#: 01040900.xhp
msgctxt ""
@@ -7294,7 +7302,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing."
-msgstr ""
+msgstr "Bestemmer at utskriftsstorleiken skal gjelda for skjermvisinga i tillegg til utskrifta. Viss det ikkje er kryssa av for dette, vert det brukt eit oppsett som er uavhengig av skrivaren for skjermvising og utskrift."
#: 01041000.xhp
msgctxt ""
@@ -7326,7 +7334,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "Specifies whether to add MS Word-compatible spacing between paragraphs and tables in $[officename] Writer text documents."
-msgstr ""
+msgstr "Bestemmer om det skal brukast MS Word-kompatible mellomrom mellom avsnitt og tabellar i $[officename] Writer tekstdokument."
#: 01041000.xhp
msgctxt ""
@@ -7342,7 +7350,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "Specifies whether paragraph spacing at the top of a page will also be effective at the beginning of a page or column if the paragraph is positioned on the first page of the document. The same applies for a page break."
-msgstr ""
+msgstr "Bestemmer om avstanden mellom avsnitt på toppen av sida også skal gjelda på starten av ei side eller ein kolonne viss avsnittet er plassert på den første sida i dokumentet. Det same gjeld for sideskift."
#: 01041000.xhp
msgctxt ""
@@ -7366,7 +7374,7 @@ msgctxt ""
"par_id3152777\n"
"help.text"
msgid "Specifies how to align text at tab stops beyond the right margin, how to handle decimal tab stops, and how to handle tab stops close to a line break. If this check box is not selected, tab stops are handled in the same way as in other Office applications."
-msgstr ""
+msgstr "Bestemmer korleis tekst skal justerast ved tabulatorar utanfor høgremargen, korleis desimaltabulator skal handsamast, og korleis tabulatorar som ligg nær linjeskift skal handsamast. Dersom det ikkje er kryssa av i denne boksen, vert tabulatorane handsama på same måte som i andre Office-program."
#: 01041000.xhp
msgctxt ""
@@ -10518,7 +10526,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "If you have activated the snap grid but wish to move or create individual objects without constraining them, keep the Shift key pressed to deactivate this function for as long as needed."
-msgstr ""
+msgstr "Dersom du har slått på fest til rutenett, men ønskjer å flytta eller laga einskilde objekt utan å avgrensa desse til rutenettet, kan du halda nede «Shift»-tasten så lenge det er nødvendig."
#: 01070300.xhp
msgctxt ""
@@ -10670,7 +10678,7 @@ msgctxt ""
"hd_id3150872\n"
"help.text"
msgid "Constrain Objects"
-msgstr ""
+msgstr "Avgrens objekta"
#: 01070300.xhp
msgctxt ""
@@ -11710,7 +11718,7 @@ msgctxt ""
"bm_id3155805\n"
"help.text"
msgid "<bookmark_value>Microsoft Office; importing/exporting VBA code</bookmark_value> <bookmark_value>importing; Microsoft Office documents with VBA code</bookmark_value> <bookmark_value>exporting; Microsoft Office documents with VBA code</bookmark_value> <bookmark_value>loading; Microsoft Office documents with VBA code</bookmark_value> <bookmark_value>saving; VBA code in Microsoft Office documents</bookmark_value> <bookmark_value>VBA code; loading/saving documents with VBA code</bookmark_value> <bookmark_value>Visual Basic for Applications; loading/saving documents with VBA code</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Microsoft Office; import/eksport av VBA-kode</bookmark_value> <bookmark_value>importera; Microsoft Office-dokument med VBA-kode</bookmark_value> <bookmark_value>eksportera; Microsoft Office-dokument med VBA-kode</bookmark_value> <bookmark_value>lasta inn; Microsoft Office-dokument med VBA-kode</bookmark_value> <bookmark_value>lagra; VBA-kode i Microsoft Office-dokument</bookmark_value> <bookmark_value>VBA-kode; lasta inn/lagra dokument med VBA-kode</bookmark_value> <bookmark_value>Visual Basic for Applikationer (VBA); lasta inn/lagra dokument med VBA-kode</bookmark_value>"
#: 01130100.xhp
msgctxt ""
@@ -11758,7 +11766,7 @@ msgctxt ""
"par_id3159399\n"
"help.text"
msgid "<variable id=\"codetext\"><ahelp hid=\"cui/ui/optfltrpage/wo_basic\">Loads and saves the Basic code from a Microsoft document as a special $[officename] Basic module with the document. The disabled Microsoft Basic code is visible in the $[officename] Basic IDE between <emph>Sub</emph> and <emph>End Sub</emph>.</ahelp> You can edit the code. When saving the document in $[officename] format, the Basic code is saved as well. When saving in another format, the Basic code from the $[officename] Basic IDE is not saved. </variable>"
-msgstr ""
+msgstr "<variable id=\"codetext\"><ahelp hid=\"cui/ui/optfltrpage/wo_basic\">Lastar inn og lagrar Basic-koden frå eit Microsoft-dokument som ein eigen $[officename] Basic-modul saman med dokumentet. Den fråkopla Microsoft Basic-koden er synleg i $[officename] Basic IDE mellom <emph>Sub</emph> og <emph>End sub</emph>.</ahelp> Du kan redigera koden. Når dokumentet vert lagra i $[officename]-format, vert også koden lagra. Vert dokumentet lagra i andre format, vert Basic-koden frå $[officename] Basic IDE ikkje lagra.</variable>"
#: 01130100.xhp
msgctxt ""
@@ -11782,7 +11790,7 @@ msgctxt ""
"par_id05172017121531273\n"
"help.text"
msgid "After loading the VBA code, %PRODUCTNAME inserts the statement <item type=\"literal\">Option VBASupport 1</item> in every Basic module to enable a limited support for VBA statements, functions and objects. See <link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport Statement [Runtime]</link> for more information."
-msgstr ""
+msgstr "Når VBA-koden er lasta inn, vil %PRODUCTNAME setja inn uttrykket <item type=\"literal\">Option VBASupport 1</item> i kvar Basic-modul for å slå på ei avgrensa støtte for VBA-uttrykk, funksjonar og objekt. Sjå <link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport Statement [køyretid]</link> for meir informasjon."
#: 01130100.xhp
msgctxt ""
@@ -11902,7 +11910,7 @@ msgctxt ""
"par_id051720170430585307\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA support in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA-støtte i %PRODUCTNAME</link>"
#: 01130200.xhp
msgctxt ""
@@ -12446,7 +12454,7 @@ msgctxt ""
"hd_id3147275\n"
"help.text"
msgid "Western text only"
-msgstr ""
+msgstr "Berre vestleg tekst"
#: 01150100.xhp
msgctxt ""
@@ -13046,7 +13054,7 @@ msgctxt ""
"par_idN10592\n"
"help.text"
msgid "<ahelp hid=\"CUI_HID_DBPATH_CTL_PATH\">Lists the registered name and database file of all registered databases. Double-click an entry to edit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"CUI_HID_DBPATH_CTL_PATH\">Viser ei liste med registrert namn og databasefil for alle databasane som er registrerte. Dobbeltklikk på ei oppføring dersom du vil redigera ho.</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -13062,7 +13070,7 @@ msgctxt ""
"par_idN10599\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dbregisterpage/new\">Opens the <link href=\"text/shared/optionen/01160201.xhp\">Database Link</link> dialog to create a new entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dbregisterpage/new\">Opnar dialogvindauget <link href=\"text/shared/optionen/01160201.xhp\">Lag databaselenkje</link>, som du kan bruka til å laga ei ny oppføring.</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -13078,7 +13086,7 @@ msgctxt ""
"par_idN105AE\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dbregisterpage/delete\">Removes the selected entry from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dbregisterpage/delete\">Fjernar den merkte oppføringa frå lista.</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -13094,7 +13102,7 @@ msgctxt ""
"par_idN105B5\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dbregisterpage/edit\">Opens the <link href=\"text/shared/optionen/01160201.xhp\">Database Link</link> dialog to edit the selected entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dbregisterpage/edit\">Opnar dialogvindauget <link href=\"text/shared/optionen/01160201.xhp\">Rediger databaselenkje</link> som du kan bruka til å redigera den merkte oppføringa.</ahelp>"
#: 01160201.xhp
msgctxt ""
@@ -14406,7 +14414,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the user information and server settings for when you send form letters as e-mail messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spesifiserer brukarinformasjon og innstillingar for tenarar som vert brukte til å senda standardbrev som e-post.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -14614,7 +14622,7 @@ msgctxt ""
"par_id8754844\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set opp nokre innstillingar for automatisk varsling om og nedlasting av nettoppdateringar for %PRODUCTNAME.</ahelp>"
#: online_update.xhp
msgctxt ""
@@ -14726,7 +14734,7 @@ msgctxt ""
"hd_id1418806\n"
"help.text"
msgid "Download updates automatically"
-msgstr ""
+msgstr "Last ned oppdateringar automatisk "
#: online_update.xhp
msgctxt ""
@@ -14734,7 +14742,7 @@ msgctxt ""
"par_id3174230\n"
"help.text"
msgid "<ahelp hid=\".\">Enable the automatic download of updates to the specified folder.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slår på den automatiske oppdateringa til den oppgjevne mappa.</ahelp>"
#: online_update.xhp
msgctxt ""
@@ -14758,7 +14766,7 @@ msgctxt ""
"hd_id1418807\n"
"help.text"
msgid "Change"
-msgstr ""
+msgstr "Endra"
#: online_update.xhp
msgctxt ""
@@ -14766,7 +14774,7 @@ msgctxt ""
"par_id0116200901063996\n"
"help.text"
msgid "<ahelp hid=\".\">Click to select a folder to download the files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klikk for å velja ei mappe som fila skal lastast ned til.</ahelp>"
#: opencl.xhp
msgctxt ""
@@ -14990,7 +14998,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Security Options and Warnings"
-msgstr ""
+msgstr "Tryggingsinnstillingar og åtvaringar"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -14998,7 +15006,7 @@ msgctxt ""
"bm_id2322154\n"
"help.text"
msgid "<bookmark_value>selecting;security warnings</bookmark_value><bookmark_value>selecting;security options</bookmark_value><bookmark_value>options;security</bookmark_value><bookmark_value>warnings;security</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>velja;tryggingsåtvaringar</bookmark_value><bookmark_value>velja;innstillingar for tryggleik</bookmark_value><bookmark_value>innstillingar;tryggleik</bookmark_value><bookmark_value>åtvaringar;tryggleik</bookmark_value>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15006,7 +15014,7 @@ msgctxt ""
"hd_id201704161714419669\n"
"help.text"
msgid "<link href=\"/text/shared/optionen/securityoptionsdialog.xhp\">Security Options and Warnings</link>"
-msgstr ""
+msgstr "<link href=\"/text/shared/optionen/securityoptionsdialog.xhp\">Tryggleiksinnstillingar og åtvaringar</link>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15014,7 +15022,7 @@ msgctxt ""
"par_id201704161715253349\n"
"help.text"
msgid "<ahelp hid=\".\">Set security related options and warnings about hidden information in documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set tryggingsrelaterte innstillingar og åtvaringar om gøymd informasjon i dokument.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15022,7 +15030,7 @@ msgctxt ""
"par_id5616645\n"
"help.text"
msgid "Press the <emph>Options</emph> button on the <link href=\"text/shared/optionen/01030300.xhp\" name=\"Security\">Security</link> page."
-msgstr ""
+msgstr "Trykk knappen <emph>Innstillingar</emph> på sida <link href=\"text/shared/optionen/01030300.xhp\" name=\"Security\">Tryggleik</link>."
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15030,7 +15038,7 @@ msgctxt ""
"par_id5616626\n"
"help.text"
msgid "The Security options and warnings dialog contains the following controls:"
-msgstr ""
+msgstr "Dialogvindauget «Tryggleiksval og åtvaringar» inneheld desse vala:"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15038,7 +15046,7 @@ msgctxt ""
"par_idN10647\n"
"help.text"
msgid "When saving or sending"
-msgstr ""
+msgstr "Ved lagring eller sending"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15046,7 +15054,7 @@ msgctxt ""
"par_idN1064B\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/savesenddocs\">Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/savesenddocs\">Vel å sjå ei åtvaring når du prøver å lagra eller senda eit dokument som inneheld registrerte endringar, versjonar eller merknadar.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15054,7 +15062,7 @@ msgctxt ""
"par_idN1064E\n"
"help.text"
msgid "When printing"
-msgstr ""
+msgstr "Ved utskriving"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15062,7 +15070,7 @@ msgctxt ""
"par_idN10652\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/whenprinting\">Select to see a warning dialog when you try to print a document that contains recorded changes or comments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/whenprinting\">Vel å sjå ei åtvaring når du prøver å skriva ut eit dokument som inneheld registrerte endringar eller merknadar.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15070,7 +15078,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "When signing"
-msgstr ""
+msgstr "Ved signering"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15078,7 +15086,7 @@ msgctxt ""
"par_idN10659\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/whensigning\">Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/whensigning\">Vel å sjå ei åtvaring når du prøver å signera eit dokument som inneheld registrerte endringar, versjonar, felt, referansar til andre kjelder (for eksempel lenkja bolkar eller lenkja bilete) eller merknadar.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15086,7 +15094,7 @@ msgctxt ""
"par_idN1065C\n"
"help.text"
msgid "When creating PDF files"
-msgstr ""
+msgstr "Ved oppretting av PDF-filer"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15094,7 +15102,7 @@ msgctxt ""
"par_idN10660\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/whenpdf\">Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/whenpdf\">Vel å sjå ei åtvaring når du prøver å eksportera i PDF-format som viser registrerte endringar i Writer eller som viser merknadar.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15102,7 +15110,7 @@ msgctxt ""
"par_idN10663\n"
"help.text"
msgid "Remove personal information on saving"
-msgstr ""
+msgstr "Fjern personleg informasjon ved lagring"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15110,7 +15118,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/removepersonal\">Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the <emph>Reset Properties</emph> button on <emph>File - Properties - General</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/removepersonal\">Vel å alltid fjerna brukarinformasjon frå fileigenskapane. Dersom dette valet ikkje er slått på, kan du likevel fjerna personleg informasjon frå det gjeldande dokumentet ved hjelp av knappen <emph>Tilbakestill</emph> på<emph>Fil → Eigenskapar → Generelt</emph></ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15118,7 +15126,7 @@ msgctxt ""
"par_idN1067C\n"
"help.text"
msgid "Recommend password protection on saving"
-msgstr ""
+msgstr "Minn om passordvern ved lagring"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15126,7 +15134,7 @@ msgctxt ""
"par_idN10680\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/password\">Select to always enable the <emph>Save with password</emph> option in the file save dialogs. Deselect the option to save files by default without password.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/password\">Vel dette om du vil at alternativet <emph>Lagra med passord</emph> i dialogvindauget for lagring av filer skal vera merkt av som standard. Fjern avmerkinga for å lagra utan passord.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15134,7 +15142,7 @@ msgctxt ""
"hd_id1972106\n"
"help.text"
msgid "Ctrl-click required to follow hyperlinks"
-msgstr ""
+msgstr "Ctrl-klikk for å følgja hyperlenkjer"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15142,7 +15150,7 @@ msgctxt ""
"par_id79042\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/ctrlclick\">If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/ctrlclick\">Når denne er slått på, må du halda nede Ctrl-knappen medan du trykkjer på ei hyperlenkje for å opna henne. Dersom dette ikkje er merkt av, vert hyperlenkjer opna med eitt klikk.</ahelp>"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15150,7 +15158,7 @@ msgctxt ""
"hd_id1972107\n"
"help.text"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
-msgstr ""
+msgstr "Blokker alle lenkjene frå dokument som ikkje er på dei stadane du stolar på (sjå makrotryggleik)"
#: securityoptionsdialog.xhp
msgctxt ""
@@ -15158,7 +15166,7 @@ msgctxt ""
"par_id79043\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blocks the use of links pointing to images not in the trusted locations defined on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\">Trusted Sources</link> tab of the Macro Security dialog.</ahelp> This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in documents, only a placeholder frame is visible."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blokkerer bruk av lenkjer til bilete som ikkje er frå stader du stolar på definert i fana <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\">Tiltrudde kjelder</link> i dialogen Makrotryggleik.</ahelp> Dette kan auka tryggleiken viss du arbeider med dokument frå ikkje tiltrudde kjelder (f.eks. Internett) og er uroa over svikt i einskilde komponentar i bilethandsamaren. bekymret for svagheder i billedbehandlende softwarekomponenter. Blokkering av lenkjer gjer at bilete ikkje vert lasta inn i dokumentet, berre ei plasshaldarramme vert vist."
#: serverauthentication.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/simpress/01.po b/source/nn/helpcontent2/source/text/simpress/01.po
index 565145142a9..f824a7706f6 100644
--- a/source/nn/helpcontent2/source/text/simpress/01.po
+++ b/source/nn/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-03-12 12:57+0000\n"
+"PO-Revision-Date: 2017-06-17 17:15+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489323425.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497719721.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3148729\n"
"help.text"
msgid "<image id=\"img_id3153034\" src=\"sd/res/nv02.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153034\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153034\" src=\"sd/res/nv02.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153034\">Ikon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3149757\n"
"help.text"
msgid "<image id=\"img_id3147254\" src=\"sw/res/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147254\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147254\" src=\"sw/res/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147254\">Ikon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3147513\n"
"help.text"
msgid "<image id=\"img_id3154258\" src=\"sw/res/sc20239.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154258\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154258\" src=\"sw/res/sc20239.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154258\">Ikon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3149944\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Applies the selected style to an object on your slide. Click the paint bucket icon and then click an object in your slide to apply the style. Click the paint bucket icon again to exit this mode.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Legg den valde stilen til eit objekt i lysbiletet. Trykk på malingsspann-knappen og deretter på eit objekt i lysbiletet for å leggja til stilen. Trykk på malingsspann-knappen igjen for å gå ut av denne modusen.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id3153009\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\"><link href=\"text/shared/01/05140100.xhp\" name=\"Creates a new style\">Creates a new style</link> using the format attributes of a selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\"><link href=\"text/shared/01/05140100.xhp\" name=\"Creates a new style\">Lag ein ny stil</link> ved å bruka formatattributta til eit merkt objekt.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3150653\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Oppdater stilen som er vald i stilhandsamaren med formateringa til det valde objektet.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"par_id3145590\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Create, edit, apply and manage styles.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Lag, rediger, legg til og handsam stilar.</ahelp>"
#: 05110500m.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the special effect that plays when you display a slide during a slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel kva spesialeffekt som skal spelast av når du viser eit lysbilete under ei lysbiletframvising.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"par_id3154704\n"
"help.text"
msgid "To apply the same transition effect to more than one slide, switch to the <link href=\"text/simpress/01/03100000.xhp\" name=\"Slide View\">Slide Sorter</link>, select the slides, and then choose <emph>Slide - Slide Transition</emph>."
-msgstr ""
+msgstr "For å bruka den same overgangseffekten på meir enn eitt lysbilete, byter du til <link href=\"text/simpress/01/03100000.xhp\" name=\"Slide View\">Lysbiletsortering</link>, vel lysbileta og vel deretter <emph>Lysbiletframvising → Lysbiletovergang</emph>."
#: 06040000.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"hd_id3149257\n"
"help.text"
msgid "Slide Transition"
-msgstr ""
+msgstr "Lysbiletovergang"
#: 06040000.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_id3145790\n"
"help.text"
msgid "<ahelp hid=\".\">Select the slide transition you want to use for the selected slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel lysbiletovergangen som skal brukast på dei merkte lysbileta.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -4846,7 +4846,7 @@ msgctxt ""
"par_idN106A5\n"
"help.text"
msgid "Variant"
-msgstr ""
+msgstr "Variant."
#: 06040000.xhp
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"par_idN106AB\n"
"help.text"
msgid "<ahelp hid=\".\">Select a variation of the transition.</ahelp> This list is only available for certain transitions."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel ein variant for overgangen.</ahelp> Denne lista er berre tilgjengeleg for ein del overgangar."
#: 06040000.xhp
msgctxt ""
@@ -4862,7 +4862,7 @@ msgctxt ""
"hd_id3159207\n"
"help.text"
msgid "Duration"
-msgstr ""
+msgstr "Lengd"
#: 06040000.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id3149048\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the duration of the slide transition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set kor lang tid overgangen skal bruka.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3153212\n"
"help.text"
msgid "<ahelp hid=\".\">Lists sounds that can played during the slide transition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Listar lydar som kan spelast under lysbiletovergangen.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -4958,7 +4958,7 @@ msgctxt ""
"par_idN1073B\n"
"help.text"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Bruk overgangen på alle lysbileta"
#: 06040000.xhp
msgctxt ""
@@ -7806,7 +7806,7 @@ msgctxt ""
"par_id2195196\n"
"help.text"
msgid "<ahelp hid=\"SD_HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX\">Specifies the direction for the effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD_HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX\">Bestemmer retninga på effekten.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -7870,7 +7870,7 @@ msgctxt ""
"par_idN10712\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/sound_list\">Select a sound from the Gallery or select one of the special entries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/sound_list\">Vel ein lyd frå galleriet eller frå ei av dei spesiell oppføringane.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -7926,7 +7926,7 @@ msgctxt ""
"par_idN10737\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/aeffect_list\">Select a color to be shown after the animation ends, or select another after-effect from the list</ahelp>:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/aeffect_list\">Vel fargen som skal visast når animasjonen er ferdig, eller vel ein annan følgjeeffekt frå lista.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"par_idN1087B\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/dim_color_list\">Select the dim color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/dim_color_list\">Vel avblendingsfargen.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -7990,7 +7990,7 @@ msgctxt ""
"par_idN1075C\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/text_animation_list\">Select the animation mode for the text of the current shape</ahelp>:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/text_animation_list\">Vel animasjonsmodus for teksten i den gjeldande forma.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -8030,7 +8030,7 @@ msgctxt ""
"par_idN1077A\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/text_delay\">Specifies the percentage of delay between animations of words or letters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/text_delay\">Bestemmer prosentdelen av forseinkinga mellom animasjon av ord eller bokstavar.</ahelp>"
#: effectoptionstext.xhp
msgctxt ""
@@ -8070,7 +8070,7 @@ msgctxt ""
"par_idN105E1\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/group_text_list\">Specifies how multiple paragraphs are animated</ahelp>:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/group_text_list\">Bestemmer korleis fleire avsnitt skal animerast.</ahelp>"
#: effectoptionstext.xhp
msgctxt ""
@@ -8110,7 +8110,7 @@ msgctxt ""
"par_idN105FF\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/auto_after\">If \"Group text - By 1st level paragraphs\" is selected, the paragraphs are animated one after the other.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/auto_after\">Viss «Gruppetekst → Ved avsnitt på første nivå» er vald, vert avsnitta animerte eitt etter eitt.</ahelp>"
#: effectoptionstext.xhp
msgctxt ""
@@ -8118,7 +8118,7 @@ msgctxt ""
"par_idN1067F\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/auto_after_value\">Enter an additional delay in seconds to animate subsequent paragraphs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/auto_after_value\">Skriv ei tilleggsforseinking i sekund som skal brukast på animeringa av dei neste avsnitta.</ahelp>"
#: effectoptionstext.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"par_idN10606\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/animate_shape\">Deselect this box to animate only the text, not the shape.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/animate_shape\">Slå av merkinga på denne boksen for å animera berre teksten, ikkje forma.</ahelp>"
#: effectoptionstext.xhp
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"par_idN1060D\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/reverse_order\">Animates the paragraphs in reverse order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtexttab/reverse_order\">Animerer avsnitta i omvendt rekkjefølgje.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8190,7 +8190,7 @@ msgctxt ""
"par_idN1066F\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/start_list\">Displays the start property of the selected animation effect.</ahelp> The following start properties are available:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/start_list\">Viser starteigenskapen til den valde animasjonseffekten.</ahelp> Desse starteigenskapane er tilgjengelege:"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_idN10693\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/delay_value\">Specifies an additional delay of n seconds until the effect starts.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/delay_value\">Legg ei tilleggsforseinking på n sekund før effekten byrjar.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8238,7 +8238,7 @@ msgctxt ""
"par_idN10587\n"
"help.text"
msgid "Duration"
-msgstr ""
+msgstr "Lengd"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"par_idN106A0\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/anim_duration\">Specifies the duration of the effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/anim_duration\">Bestemmer kor lenge effekten skal vara.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_idN106AD\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/repeat_list\">Specifies whether and how to repeat the current effect.</ahelp> Enter the number of repeats, or select from the list:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/repeat_list\">Vel om du vil gjenta den gjeldande effekten og i tilfelle korleis. </ahelp> Skriv inn tal på gjentakingar eller vel frå lista:"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_idN106D1\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rewind\">Specifies whether to let the animated shape return to its starting state after the animation ends.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rewind\">Vel om du vil la animasjonsforma gå tilbake til den opphavlege tilstanden når animasjonen er slutt.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8318,7 +8318,7 @@ msgctxt ""
"par_idN106DE\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rb_click_sequence\">Specifies whether to let the animation start in the normal click sequence.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rb_click_sequence\">Vel om animasjonen skal byrja i den normale klikksekvensen.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"par_idN106EB\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rb_interactive\">Specifies whether to let the animation start when a specified shape is clicked.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rb_interactive\">Vel om animasjonen skjal byrja når det vert trykt på ei bestemt form.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_idN107C5\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/trigger_list\">Select the shape by its name from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/trigger_list\">Vel forma etter namn eller frå listeboksen.</ahelp>"
#: slidesorter.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/simpress/guide.po b/source/nn/helpcontent2/source/text/simpress/guide.po
index 4093b8fd741..bdac25a7a1e 100644
--- a/source/nn/helpcontent2/source/text/simpress/guide.po
+++ b/source/nn/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-12 12:52+0000\n"
+"PO-Revision-Date: 2017-06-17 17:44+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489323167.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497721486.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"hd_id3153811\n"
"help.text"
msgid "To apply a transition effect to a slide"
-msgstr "Slik legg du til ein overgangseffekt til eit lysbilete"
+msgstr "Slik legg du ein overgangseffekt til eit lysbilete"
#: animated_slidechange.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master page to all slides. Right-click for a context menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Venstreklikk for å bruka hovudutforminga på alle lysbileta. Høgreklikk for å opna ein undermeny.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_idN107CB\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to apply a slide design to all selected slides. Right-click for a context menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trykk for å bruka ei utforming på dei valde lysbileta. Høgreklikk for å opna ein undermeny.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Impress Photo Album"
-msgstr ""
+msgstr "Impress Fotoalbum"
#: photo_album.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"bm_id221120161451447252\n"
"help.text"
msgid "<bookmark_value>Photo Album</bookmark_value> <bookmark_value>Impress Photo Album</bookmark_value> <bookmark_value>Multimedia show;Impress Photo Album</bookmark_value> <bookmark_value>Kiosk;Impress Photo Album</bookmark_value> <bookmark_value>Slideshow;Impress Photo Album</bookmark_value> <bookmark_value>Album;Impress Photo Album</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>fotoalbum</bookmark_value> <bookmark_value>Impress fotoalbum</bookmark_value> <bookmark_value>multimedia-vising;Impress fotoalbum</bookmark_value> <bookmark_value>Kiosk;Impress fotoalbum</bookmark_value> <bookmark_value>lysbiletvising;Impress fotoalbum</bookmark_value> <bookmark_value>album;Impressfotoalbum</bookmark_value>"
#: photo_album.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"hd_id221120161438527235\n"
"help.text"
msgid "<link href=\"text/simpress/guide/photo_album.xhp\">Impress Photo Album</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/guide/photo_album.xhp\">Impress fotoalbum</link>"
#: photo_album.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_id221120161439167558\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a photo album into your presentation document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set eit fotoalbum inn i presentasjonsdokumentet.</ahelp>"
#: photo_album.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id221120161524583460\n"
"help.text"
msgid "The Impress photo album is a quick way to insert several pictures into a presentation and create a document suitable to run continuously in a kiosk or multimedia show."
-msgstr ""
+msgstr "Fotoalbumet i Impress er ein rask måte å setja inn fleire bilete i ein presentasjon og for å laga eit dokument som skal køyrast kontinuerleg i ei kiosk- eller multimediavising."
#: photo_album.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id221120161524584397\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album </item>"
-msgstr ""
+msgstr "Vel <item type=\"menuitem\">Set inn → Media → Fotoalbum</item>"
#: photo_album.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"hd_id221120161524583459\n"
"help.text"
msgid "To insert a photo album into your presentation"
-msgstr ""
+msgstr "Setja eit fotoalbum inn i presentasjonen"
#: photo_album.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_id221120161524583519\n"
"help.text"
msgid "Open an existing or blank presentation."
-msgstr ""
+msgstr "Opna ein eksisterande eller tom presentasjon."
#: photo_album.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_id221120161524586628\n"
"help.text"
msgid "Go to the slide that precede the photo album."
-msgstr ""
+msgstr "Gå til lysbiletet som er framføre fotoalbumet."
#: photo_album.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_id221120161524581298\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert – Media – Photo Album</item>."
-msgstr ""
+msgstr "Vel <item type=\"menuitem\">Set inn → Media → Fotoalbum</item>"
#: photo_album.xhp
msgctxt ""
@@ -4086,7 +4086,7 @@ msgctxt ""
"par_id221120161524582911\n"
"help.text"
msgid "In the Create Photo Album dialog, click <item type=\"menuitem\">Add</item>."
-msgstr ""
+msgstr "Trykk på <item type=\"menuitem\">Legg til</item> i dialogvindauget «Lag fotoalbum»."
#: photo_album.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id221120161524597741\n"
"help.text"
msgid "Locate the files you want to insert."
-msgstr ""
+msgstr "Finn filene du vil leggja inn."
#: photo_album.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id221120161524594919\n"
"help.text"
msgid "Note: If several images are in the same folder, you can select a group of photos using the Shift or Ctrl keys while clicking on their filenames."
-msgstr ""
+msgstr "Dersom fleire bilete er i same mappa, kan du merka ei gruppe bilete ved å halda nede Shift- eller Ctrl-tasten medan du klikkar på bileta."
#: photo_album.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"par_id221120161524595472\n"
"help.text"
msgid "Click <item type=\"menuitem\">Open</item> to add the files to the Photo Album."
-msgstr ""
+msgstr "Trykk på <item type=\"menuitem\">Opna</item> for å leggja bileta inn i fotoalbumet."
#: photo_album.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_id221120161524591012\n"
"help.text"
msgid "Tip: Click on a file name to display it in the <item type=\"menuitem\">Preview</item> area"
-msgstr ""
+msgstr "Tips: Klikk på filnamnet for å visa det i området <item type=\"menuitem\">førehandsvising</item>."
#: photo_album.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_id221120161524595468\n"
"help.text"
msgid "Select the number of images per slide in the <item type=\"menuitem\">Slide layout</item> list box."
-msgstr ""
+msgstr "Vel i <item type=\"menuitem\">Lysbiletoppsett</item> kor mange bilete som skal visast på kvart lysbilete."
#: photo_album.xhp
msgctxt ""
@@ -4134,7 +4134,7 @@ msgctxt ""
"par_id221120161524598495\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Add caption to each slide</item> checkbox if necessary, to insert a text box for the caption."
-msgstr ""
+msgstr "Merk av for <item type=\"menuitem\">Legg tekst til kvart bilete</item> for å setja inn ein tekstboks til bilettekst."
#: photo_album.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id221120161524592767\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Keep aspect ratio</item> checkbox to avoid distorting the images when laying them in the slide. The image will be fully contained in the slide."
-msgstr ""
+msgstr "Merk av for <item type=\"menuitem\">Hald fast på høgd/breidd-forholdet</item> slik at bileta ikkje vert viste feil. Heile biletet vert då vist i lysbiletet."
#: photo_album.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_id221120161524597069\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Fill screen</item> to make the image fill the whole presentation screen. The resulting image may be larger than the slide."
-msgstr ""
+msgstr "Merk av for <item type=\"menuitem\">Fyll skjermen</item> for at biletet skal fylla heile presentasjonsskjermen. Biletet kan verta større enn lysbiletet."
#: photo_album.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"par_id221120161524595994\n"
"help.text"
msgid "Mark <item type=\"menuitem\">Link images</item> to create a link to the image location in your file system or internet. This option will not embed the images in the presentation document."
-msgstr ""
+msgstr "Merk av for <item type=\"menuitem\">Lenk bilete</item> for å lenkja biletet til ein stad i datamaskinen eller på Internett. Biletet vert då ikkje innebygd i presentasjonen."
#: photo_album.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id221120161524593343\n"
"help.text"
msgid "Click <item type=\"menuitem\">Insert Slides</item>."
-msgstr ""
+msgstr "Klikk på <item type=\"menuitem\">Set inn lysbilete</item>."
#: photo_album.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_id221120161524501012\n"
"help.text"
msgid "Warning: Clicking Undo will not delete a photo album. Right-click the slides on the slide panel and select Delete to delete the slides."
-msgstr ""
+msgstr "Åtvaring: Om du klikkar på avbryt-knappen, vert ikkje fotoalbumet sletta. Skal du sletta eit bilete, høgreklikkar du på det og vel «Slett» for å fjerna biletet frå albumet."
#: photo_album.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id221120161524598688\n"
"help.text"
msgid "<link href=\"text/simpress/guide/show.xhp\">Slide Shows</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/guide/show.xhp\">Lysbiletvisingar</link>"
#: photo_album.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id221120161524592232\n"
"help.text"
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/insert_bitmap.xhp\">Setja inn bilete</link>"
#: print_tofit.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/smath/01.po b/source/nn/helpcontent2/source/text/smath/01.po
index 997b146da7d..91c89812d9e 100644
--- a/source/nn/helpcontent2/source/text/smath/01.po
+++ b/source/nn/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: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-30 17:00+0000\n"
+"PO-Revision-Date: 2017-06-17 17:00+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496163637.000000\n"
+"X-POOTLE-MTIME: 1497718841.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Du kan velja mellom fleire ulike unære og binære operatorar for å byggja ein $[officename] Math formel. Unær viser til operatorar som påverkar éin plasshaldar, medan binær viser til operatorar som påverkar to plasshaldarar. Den nedre delen av elementvindauget viser dei enkelte operatorane. <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">Sprettoppmenyen</link> i <emph>Kommandovindauget</emph> inneheld også ei liste med desse operatorane og nokre operatorar i tillegg. Viss du treng ein operator som ikkje finst i elementvindauget, kan du bruka høgreklikkmenyen eller skriva han inn direkte i <emph>kommandovindauget</emph>."
#: 03090100.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3153152\n"
"help.text"
msgid "You can choose among various relations to structure your <emph>$[officename] Math</emph> formula. The relation functions are displayed in the lower part of the Elements pane. The list is also in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All relations that are not contained in the Elements pane or in the context menu can be typed manually in the Commands window."
-msgstr ""
+msgstr "Du kan velja mellom ulike relasjonar når du strukturerar <emph>$[officename] Math</emph>-formlar. Relasjonsfunksjonane vert viste i den nedre delen av vindauget Formelelement. Dei vert også viste i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">høgreklikkmenyen</link> for <emph>kommandovindauget</emph>. Alle relasjonar som ikkje finst i elementvindauget eller i snarmenyen må skrivast inn manuelt i kommandovindauget."
#: 03090200.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3149755\n"
"help.text"
msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Du kan velja mellom mange ulike operatorar for å strukturera ein <emph>$[officename] Math</emph>-formel. Alle variable operatorar er synlege i den nedste delen av elementvindauget. Dei vert også lista i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">høgreklikkmenyen</link> i <emph>Kommandovindauget</emph>. Dei operatorane som ikkje finst i elementvindauget eller i høgreklikkmenyen, må skrivast inn manuelt i <emph>Kommandovindauget</emph>."
#: 03090300.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the window. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Vel ein funksjon i den nedre delen av vindauget. Desse funksjonane er også lista opp i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">menyen</link> til vindauget <emph>Kommandoar</emph>. Dei funksjonane som ikkje finst i vindauget «Element» må skrivast inn for hand i vindauget «Kommandoar»."
#: 03090400.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"par_id3147258\n"
"help.text"
msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Du kan velja mellom ulike typar av parentesar for å strukturera ein <emph>$[officename] Math</emph>-formel. Dei ulike parentesane vert viste i den nedste delen av elementvindauget. Desse parentesane vert også lista ut i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">høgreklikkmenyen</link> i <emph>Kommandovindauget</emph>. Alle parentesar som ikkje finst i elementpanelet eller i høgreklikkmenyen, kan skrivast inn manuelt i <emph>Kommandovindauget</emph>."
#: 03090500.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3145802\n"
"help.text"
msgid "You can choose from various attributes for <emph>%PRODUCTNAME</emph> <emph>Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Du kan velja ulike attributt for formlar i <emph>%PRODUCTNAME</emph> <emph>Math</emph>. Nokre attributt vert viste nedst i elementvindauget. Disse attributta er også lista opp i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">lokalmenyen</link> til <emph>Kommandovindauget</emph>. Alle attributt som ikkje finst i elementvindauget eller i lokalmenyen må skrivast inn manuelt i <emph>Kommandovindauget</emph>."
#: 03090600.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower half of the Formula Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Du kan velja mellom fleire innstillingar for å formatera ein $[officename] Math-formel. Format-innstillingane vert viste i den nedste halvdelen av dialogvindauget for formelelementa. Desse innstillingane er også lista opp i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">sprettoppmenyen</link> i <emph>Kommandovindauget</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4631,6 +4631,8 @@ msgctxt ""
"help.text"
msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
msgstr ""
+"\n"
+"Bruk ulike mengdeoperatorar på teikna i formlar i <emph>$[officename] Math</emph>. Dei ulike operatorane vert viste i den nedste delen av elementvindauget. Bruk <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">høgreklikkmenyen</link> i <emph>Kommandovindauget</emph> for å sjå ei identisk liste over funksjonane. Dei operatorane som ikkje finst i elementvindauget, må skrivast inn manuelt i kommandovindauget. Du kan også skriva inn andre delar av formelen manuelt, sjølv om symbola finst i elementvindauget."
#: 03090800.xhp
msgctxt ""
@@ -11118,7 +11120,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#metrik\" name=\"metrics\">metrics</link>, which are then automatically converted to points.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">Alle elementa i ein formel vert skalerte proporsjonalt i høve til grunnstorleiken. Du kan endra grunnstorleiken ved å velja eller skriva inn punktstorleiken (pt) du ønskjer. Du kan også bruka andre måleeiningar eller <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"metrics\">mål</link> som automatisk vert omgjort til punkt.</ahelp>"
#: 05020000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/swriter.po b/source/nn/helpcontent2/source/text/swriter.po
index 246dedd048d..9171c2d2141 100644
--- a/source/nn/helpcontent2/source/text/swriter.po
+++ b/source/nn/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-11 13:58+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-13 18:28+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489240728.000000\n"
+"X-POOTLE-MTIME: 1497378538.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"bm_id030820161851045883\n"
"help.text"
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tilpassa;klassifiseringsnivå</bookmark_value> <bookmark_value>klassifiseringsnivå;tilpassing</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id030820161747133280\n"
"help.text"
msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file <item type=\"literal\">example.xml</item> located in <item type=\"menuitem\">Tools - Options - LibreOffice - Paths - Classification</item> into a local folder and edit the contents."
-msgstr ""
+msgstr "%PRODUCTNAME tillet tilpassing av klassifiseringsnivåa i verksemda. For å tilpassa talet på og namna på kvart nivå, kopier fila <item type=\"literal\">example.xml</item>som finst i <item type=\"menuitem\">Verktøy → Innstillingar → LibreOfiice → Stiar → Klassifisering</item> inn i ei lokal mappe og rediger innhaldet."
#: classificationbar.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id030820161747137522\n"
"help.text"
msgid "Save the file and make the adequate changes to the classification path above to access the file."
-msgstr ""
+msgstr "Lagra fila og gjer dei aktuelle endringane i klassifiseringstien over tilgang til fila."
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom fields tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "Verktøylinja for klassifisering inneheld listeboksar som hjelper deg å setja tryggingsnivå for dokumentet i høve til<item type=\"acronym\">BAF</item>-kategoriretningslinjene og<item type=\"acronym\">BAILS</item>-nivå. %PRODUCTNAME legg til tilpassa felt i dokumenteigenskapane(<item type=\"menuitem\">Fil → Eigenskapar</item>, fana for tilpassa felt) for å lagra klassifiseringsretningslinjene som metadata for dokumentet."
#: classificationbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id030820161754175408\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars </item>and select <item type=\"menuitem\">Classification</item>"
-msgstr ""
+msgstr "Gå til menyen <item type=\"menuitem\">Vis → Verktøylinjer</item> og vel<item type=\"menuitem\">Klassifisering</item>"
#: classificationbar.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Toolbar"
-msgstr ""
+msgstr "Verktøylinja for brevfletting"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"hd_id201703240024554113\n"
"help.text"
msgid "<link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/mailmergetoolbar.xhp\">Verktøylinja for brevfletting</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id201703240025596148\n"
"help.text"
msgid "The Mail Merge Toolbar contains commands for the final steps of the mail merge process."
-msgstr ""
+msgstr "Verktøylinja for brevfletting inneheld kommandoar for dei siste stega i flettingsprosessen."
#: mailmergetoolbar.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id030820161754175468\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars</item> and select <item type=\"menuitem\">Mail Merge</item>"
-msgstr ""
+msgstr "Gå til menyen <item type=\"menuitem\">Vis → Verktøylinjer</item> og vel<item type=\"menuitem\">Brevfletting</item>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "(Recipient number)"
-msgstr ""
+msgstr "(Mottakar nummer)"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the address record number of a recipient to preview the mail merge document for the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel adressepostnummeret til ein mottakar for å sjå korleis brevflettingsdokumentet til den mottakaren vil sjå ut.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Use the browse buttons to scroll through the address records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bla gjennom adressepostane med bla-knappane.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "Exclude recipient"
-msgstr ""
+msgstr "Utelat ein mottakar"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<ahelp hid=\".\">Excludes the current recipient from this mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ta ikkje med denne mottakaren i brevflettinga.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "Edit Individual Documents"
-msgstr ""
+msgstr "Rediger enkeltdokument"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a single merged document with page breaks between each recipient.</ahelp> The names and the addresses of the recipients are contained in the document, which can be customized as needed."
-msgstr ""
+msgstr "<ahelp hid=\".\">Lag eitt fletta dokument med sideskift mellom kvar mottakar.</ahelp> Namnet og adressa på mottakarane ligg i dokumentet og kan tilpassast om nødvendig."
#: main0000.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id03302017034826145\n"
"help.text"
msgid "Track Changes"
-msgstr ""
+msgstr "Spor endringar"
#: main0103.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galleriet</link>"
#: main0103.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Disposisjonsnummerering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_idN1060A\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the current table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slettar den gjeldande tabellen.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_idN10638\n"
"help.text"
msgid "<ahelp hid=\".\">Selects the current cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel den gjeldande cella.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_idN1071D\n"
"help.text"
msgid "Break Across Pages"
-msgstr ""
+msgstr "Del over sider"
#: main0110.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_idN10720\n"
"help.text"
msgid "Allows a page break within the current row."
-msgstr ""
+msgstr "Tillet sideskift i den gjeldande rada."
#: main0110.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_idN105FF\n"
"help.text"
msgid "Repeat Heading Rows"
-msgstr ""
+msgstr "Gjenta overskriftstrader"
#: main0110.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_idN1072D\n"
"help.text"
msgid "<ahelp hid=\".\">Repeats the table headers on subsequent pages if the table spans one or more pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gjentek tabelloverskriftene på dei neste sidene dersom tabellen går over meir enn éi side.</ahelp>"
#: main0110.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/swriter/00.po b/source/nn/helpcontent2/source/text/swriter/00.po
index a17b684cee7..448e7a97fd1 100644
--- a/source/nn/helpcontent2/source/text/swriter/00.po
+++ b/source/nn/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-26 19:31+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495827064.000000\n"
#: 00000004.xhp
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Vel <emph>Verktøy → Disposisjonsnummerering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Vel <emph>Verktøy → Disposisjonsnummerering → Nummerering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Vel <emph>Verktøy → Linjenummerering</emph> (gjeld ikkje i HTML-dokument) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/swriter/01.po b/source/nn/helpcontent2/source/text/swriter/01.po
index 0b3686ffd3c..3a1f4b596b2 100644
--- a/source/nn/helpcontent2/source/text/swriter/01.po
+++ b/source/nn/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-04 15:09+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-12 18:03+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496588959.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497290635.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3149034\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of the first record to be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer nummeret til den første posten som skal skrivast ut.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3145758\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/mailmerge/to\">Specify the number of the last record to be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/mailmerge/to\">Oppgjev nummeret på den siste posten som skal skrivast ut.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Trykk på <emph>1</emph> om du berre vil sjå overskriftene på toppnivå i dokumentstrukturvindauget. Trykk på <emph>10</emph> om du vil sjå alle overskriftene.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterup\">Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterup\">Flyttar den markerte overskrifta og teksten nedanfor denne eitt nivå opp i dokumentstrukturen og i dokumentet. Held du nede Ctrl-tasten når du trykker på denne knappen, vert berre overskrifta flytt (utan den tilhøyrande teksten).</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3154440\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterdown\">Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterdown\">Flyttar den markerte overskrifta og teksten under eitt nivå ned i dokumentstrukturen og i dokumentet. Hald nede Ctrl medan du trykkjer for berre å flytta den markerte overskrifta (utan tilhøyrande tekst).</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3151354\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Flytt den merkte overskrifta og teksten under eitt nivå opp i dokumentstrukturen og i dokumentet. Hald nede Ctrl medan du trykkjer for berre å flytta den markerte overskrifta eitt nivå opp.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3150707\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Flytt den merkte overskrifta og teksten under eitt steg ned i disposisjonsnivået. Hald nede Ctrl medan du trykkjer på denne knappen for berre å flytta overskrifta (utan tilhøyrande tekst) eitt nivå ned.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3154480\n"
"help.text"
msgid "<variable id=\"bereich\"><ahelp hid=\".\">Inserts a text section at the cursor position in the document. You can also select a block of text and then choose this command to create a section. You can use sections to insert blocks of text from other documents, to apply custom column layouts, or to protect or to hide blocks of text if a condition is met.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"bereich\"><ahelp hid=\".\">Set inn ein tekstbolk ved skrivemerket i dokumentet. Du kan også merkja ei tekstblokk og velja denne kommandoen for å laga ein bolk. Du kan nytta bolkar til å setja inn tekstblokker frå andre dokument, eller leggja til eigendefinerte spalteoppsett. Det er også mogleg å verna eller gøyma tekstblokker om eit vilkår er fylt.</ahelp></variable>"
#: 04020000.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3154644\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the properties of the section.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Set eigenskapane for bolken.</ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_id3145754\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path and the filename for the file that you want to insert, or click the <emph>Browse</emph> button to locate the file.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\"> If the <emph>DDE </emph>check box is selected, enter the DDE command that you want to use.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn stien og filnamnet til fila du vil setja inn eller trykk på knappen <emph>Bla gjennom</emph> for å finna fila.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Viss <emph>DDE</emph> er merkt, skriv du inn DDE-kommandoen du vil bruka.</caseinline></switchinline>"
#: 04020100.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3149288\n"
"help.text"
msgid "<variable id=\"beschrifttext\"><ahelp hid=\".\">Adds a numbered caption to a selected image, table, chart, frame, or shape.</ahelp> You can also access this command by right-clicking the item that you want to add the caption to. </variable>"
-msgstr ""
+msgstr "<variable id=\"beschrifttext\"><ahelp hid=\".\">Legg til ein nummerert bilettekst til eit valt bilete, tabell, ramme, tekstramme eller teikning.</ahelp> Du finn òg denne kommandoen ved å høgreklikka på det elementet du vil leggja teksten til.</variable>"
#: 04060000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Viss du vel «Kapittelnummer utan skiljeteikn» for eit kapittelfelt, vert dei skiljeteikna som er oppgjeve for kapittelnumer i <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Verktøy → Disposisjonsnummerering</emph></link> gøymde."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -6998,7 +6998,7 @@ msgctxt ""
"par_id3149837\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/list\">Choose the item that you want to display in the document, then click <emph>OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/list\">Vel kva element du vil visa i dokumentet og trykk på <emph>OK</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7014,7 +7014,7 @@ msgctxt ""
"par_id3148855\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/edit\">Displays the <emph>Edit Fields: Functions</emph> dialog, where you can edit the <emph>Input list</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/edit\">Viser dialogvindauget <emph>Rediger felt: Funksjonar</emph>, der du kan redigera <emph>innlista</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7030,7 +7030,7 @@ msgctxt ""
"par_id3148434\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/next\">Closes the current <emph>Input list</emph> and displays the next, if available.</ahelp> You see this button when you open the <emph>Choose Item</emph> dialog by Ctrl+Shift+F9."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/next\">Lukkar den gjeldande <emph>innlista</emph> og opnar den neste, om det finst fleire.</ahelp> Du vil sjå denne knappen når du opnar dialogvindauget <emph>Vel element</emph> med Ctrl + Shift + F9."
#: 04090004.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Set inn kapittelnummeret. For å kopla ei kapittelnummerering til ein overskriftsstil, vel <emph> Verktøy → Disposisjonsnummerering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -13502,7 +13502,7 @@ msgctxt ""
"par_id3147089\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/spinPageNumber\">Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/spinPageNumber\">Skriv inn sidenummeret på fen første sida etter skiftet. Ikkje merk av for denne dersom du vil halde fram med den gjeldande nummereringa.</ahelp>"
#: 05030200.xhp
msgctxt ""
@@ -15070,7 +15070,7 @@ msgctxt ""
"par_id3150568\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the size and the position of the selected object or frame on a page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer storleiken og plasseringa av det valde objektet eller den valde ramma på ei side.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15094,7 +15094,7 @@ msgctxt ""
"par_id3151180\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the width that you want for the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn breidda på det merkte objektet.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15142,7 +15142,7 @@ msgctxt ""
"par_id3154099\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the height that you want for the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn høgda på det merkte objektet.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15190,7 +15190,7 @@ msgctxt ""
"par_id3153675\n"
"help.text"
msgid "<ahelp hid=\".\">Maintains the height and width ratio when you change the width or the height setting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tek vare på høgde- og breidde-forholdet når du endrar innstillingane for høgd eller breidd.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15270,7 +15270,7 @@ msgctxt ""
"par_id3149169\n"
"help.text"
msgid "<ahelp hid=\".\">Anchors the selection to the current page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Forankrar utvalet til den gjeldande sida.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15286,7 +15286,7 @@ msgctxt ""
"par_id3145777\n"
"help.text"
msgid "<ahelp hid=\".\">Anchors the selection to the current paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Forankrar utvalet til det gjeldande avsnittet.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15302,7 +15302,7 @@ msgctxt ""
"par_id3151377\n"
"help.text"
msgid "<ahelp hid=\".\">Anchors the selection to a character.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Forankrar utvalet til eit teikn.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15318,7 +15318,7 @@ msgctxt ""
"par_id3155863\n"
"help.text"
msgid "<ahelp hid=\".\">Anchors the selection as character. The height of the current line is resized to match the height of the selection.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Forankrar utvalet som eit teikn. Høgda på den gjeldane linja vert endra for å passa høgda på utvalet.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15350,7 +15350,7 @@ msgctxt ""
"par_id3145121\n"
"help.text"
msgid "<ahelp hid=\".\">Select the horizontal alignment option for the object.</ahelp> This option is not available if you chose \"anchor as character\"."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel vassrett justering for objektet.</ahelp> Dette valet er ikkje tilgjengeleg dersom det er vald «Forankra som teikn»."
#: 05060100.xhp
msgctxt ""
@@ -15366,7 +15366,7 @@ msgctxt ""
"par_id3145258\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the <emph>To</emph> box.</ahelp> This option is only available if you select \"From Left\" in the <emph>Horizontal</emph> box."
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn kor mykje plass det skal vera mellom den venstre kanten av det valde objektet og referansepunktet som er vald i <emph>Til</emph>.</ahelp> Dette valet er berre tilgjengeleg om du har vald «Frå venstre» i boksen <emph>Vassrett</emph>."
#: 05060100.xhp
msgctxt ""
@@ -15382,7 +15382,7 @@ msgctxt ""
"par_id3149213\n"
"help.text"
msgid "<ahelp hid=\".\">Select the reference point for the selected horizontal alignment option.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel referansepunkt for for den valde vassrette justering.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15406,7 +15406,7 @@ msgctxt ""
"par_id3146337\n"
"help.text"
msgid "<ahelp hid=\".\">Reverses the current horizontal alignment settings on even pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spegelvender dei gjeldande innstillingane for vassrett justering på partalssider.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15414,7 +15414,7 @@ msgctxt ""
"par_id3148446\n"
"help.text"
msgid "You can also use the <link href=\"text/swriter/01/05060300.xhp\" name=\"Image\"><emph>Image</emph></link> flip options to adjust the layout of objects on even and odd pages."
-msgstr "Du kan også bruka spegelvendingsfunksjonen i <link href=\"text/swriter/01/05060300.xhp\" name=\"Image\"><emph>Bilete</emph></link> for å justera utforminga av objekt på oddetals- og partalssider."
+msgstr "Du kan også bruka spegelvendingsfunksjonen i <link href=\"text/swriter/01/05060300.xhp\" name=\"Image\"><emph>Bilete</emph></link> for å tilpassa utforminga av objekt på oddetals- og partalssider."
#: 05060100.xhp
msgctxt ""
@@ -15430,7 +15430,7 @@ msgctxt ""
"par_id3150161\n"
"help.text"
msgid "<ahelp hid=\".\">Select the vertical alignment option for the object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel loddrett justering for objektet.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15454,7 +15454,7 @@ msgctxt ""
"par_id3156130\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the <emph>To</emph> box.</ahelp> This option is only available if you select \"From Top\" or \"From Bottom\" (as character) in the <emph>Vertical</emph> box."
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn kor mykje plass det skal vera mellom den øvre kanten på det valde objektet og referansepunktet du valde i <emph>Til</emph>-boken.</ahelp> Dette valet er berre tilgjengeleg om du har vald «Ovanfrå» eller «Nedanfrå» (som teikn) i ruta <emph>Loddrett</emph>."
#: 05060100.xhp
msgctxt ""
@@ -15470,7 +15470,7 @@ msgctxt ""
"par_id3155075\n"
"help.text"
msgid "<ahelp hid=\".\">Select the reference point for the selected vertical alignment option.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel referansepunktet for den valde loddrette justeringa.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15486,7 +15486,7 @@ msgctxt ""
"par_idN10A92\n"
"help.text"
msgid "<ahelp hid=\".\">Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Held det valde objektet innføre stilgrensene for teksten objektet er forankra til. Ønskjer du å plassera objektet kvar som helst i teksten, må du ikkje bruka dette valet.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15542,7 +15542,7 @@ msgctxt ""
"par_id3154478\n"
"help.text"
msgid "<variable id=\"umlauftext\"><ahelp hid=\".\">Specify the way you want text to wrap around an object.</ahelp> You can also specify the spacing between the text and the object.</variable>"
-msgstr ""
+msgstr "<variable id=\"umlauftext\"><ahelp hid=\".\">Vel korleis teksten skal flyta rundt objekt.</ahelp> Du kan òg tilpassa avstanden mellom teksten og objektet.</variable>"
#: 05060200.xhp
msgctxt ""
@@ -15574,7 +15574,7 @@ msgctxt ""
"par_id3147100\n"
"help.text"
msgid "<variable id=\"keinumlauftext\"><ahelp hid=\".\">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.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"keinumlauftext\"><ahelp hid=\".\">Plasserer objektet på ei eiga linje i dokumentet. Teksten i dokumentet vert lagt over og under objektet, men ikkje ved sidene av det.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15582,7 +15582,7 @@ msgctxt ""
"par_id3149038\n"
"help.text"
msgid "<image id=\"img_id3149044\" src=\"sw/res/wr07.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149044\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149044\" src=\"sw/res/wr07.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149044\">Ikon</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15614,7 +15614,7 @@ msgctxt ""
"par_id3145774\n"
"help.text"
msgid "<image id=\"img_id3145780\" src=\"sw/res/wr02.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3145780\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145780\" src=\"sw/res/wr02.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3145780\">Ikon</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15646,7 +15646,7 @@ msgctxt ""
"par_id3149560\n"
"help.text"
msgid "<image id=\"img_id3149567\" src=\"sw/res/wr03.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149567\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149567\" src=\"sw/res/wr03.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149567\">Ikon</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15670,7 +15670,7 @@ msgctxt ""
"par_id3147740\n"
"help.text"
msgid "<variable id=\"seitenumlauftext\"><ahelp hid=\".\">Wraps text on all four sides of the border frame of the object.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenumlauftext\"><ahelp hid=\".\">Bryt teksten på alle fire sidene av objektramma.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15678,7 +15678,7 @@ msgctxt ""
"par_id3148845\n"
"help.text"
msgid "<image id=\"img_id3148851\" src=\"sw/res/wr04.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3148851\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148851\" src=\"sw/res/wr04.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3148851\">Ikon</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15702,7 +15702,7 @@ msgctxt ""
"par_id3154089\n"
"help.text"
msgid "<variable id=\"durchlauftext\"><ahelp hid=\".\">Places the object in front of the text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"durchlauftext\"><ahelp hid=\".\">Set objektet framføre teksten.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15710,7 +15710,7 @@ msgctxt ""
"par_id3150162\n"
"help.text"
msgid "<image id=\"img_id3150169\" src=\"sw/res/wr05.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150169\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150169\" src=\"sw/res/wr05.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150169\">Ikon</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15734,7 +15734,7 @@ msgctxt ""
"par_id3154716\n"
"help.text"
msgid "<variable id=\"dynamischertext\"><ahelp hid=\".\">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. </ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"dynamischertext\"><ahelp hid=\".\">Bryt teksten automatisk til venstre, høgre eller på alle fire sidene av ramma rundt objektet. Om avstanden mellom objektet og sidemargen er mindre enn 2 cm, vert ikkje teksten broten.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15742,7 +15742,7 @@ msgctxt ""
"par_id3150904\n"
"help.text"
msgid "<image id=\"img_id3150910\" src=\"sw/res/wr06.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150910\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150910\" src=\"sw/res/wr06.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150910\">Ikon</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15782,7 +15782,7 @@ msgctxt ""
"par_id3154333\n"
"help.text"
msgid "<variable id=\"ersterabsatztext\"><ahelp hid=\".\">Starts a new paragraph below the object after you press Enter.</ahelp> The space between the paragraphs is determined by the size of the object.</variable>"
-msgstr ""
+msgstr "<variable id=\"ersterabsatztext\"><ahelp hid=\".\">Byrjar eit nytt avsnitt under objektet når du trykkjer «Enter».</ahelp> Avstanden mellom avsnitta vert avgjort av storleiken på objektet.</variable>"
#: 05060200.xhp
msgctxt ""
@@ -15798,7 +15798,7 @@ msgctxt ""
"par_id3150100\n"
"help.text"
msgid "<variable id=\"hintergrundtext\"><ahelp hid=\".\">Moves the selected object to the background. This option is only available if you selected the<emph> Through</emph> wrap type.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"hintergrundtext\"><ahelp hid=\".\">Flytter det valde objektet til bakgrunnen. Dette valet kan berre brukast viss du har vald tekstbrytingstypen <emph>Gjennom</emph>.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15814,7 +15814,7 @@ msgctxt ""
"par_id3155793\n"
"help.text"
msgid "<variable id=\"konturtext\"><ahelp hid=\".\">Wraps text around the shape of the object. This option is not available for the <emph>Through</emph> wrap type, or for frames.</ahelp> To change the contour of an object, select the object, and then choose <emph>Format - Wrap - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Edit Contour</emph></link>.</variable>"
-msgstr ""
+msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">Bryt teksten rundt objektet. Dette valet er ikkje tilgjengeleg for tekstbrytinga <emph>Gjennom</emph> eller ved bruk av rammer.</ahelp> Du kan endra omrisset til eit objekt ved å merkja det og så velja <emph>Format → Tekstbryting → </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Rediger omriss</emph></link>.</variable>"
#: 05060200.xhp
msgctxt ""
@@ -16454,7 +16454,7 @@ msgctxt ""
"par_id3149485\n"
"help.text"
msgid "<variable id=\"vertikaltext\"><ahelp hid=\".\">Flips the selected image vertically.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vertikaltext\"><ahelp hid=\".\">Spegelvender det valde biletet loddrett.</ahelp></variable>"
#: 05060300.xhp
msgctxt ""
@@ -16470,7 +16470,7 @@ msgctxt ""
"par_id3151261\n"
"help.text"
msgid "<variable id=\"horizontaltext\"><ahelp hid=\".\">Flips the selected image horizontally.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"horizontaltext\"><ahelp hid=\".\">Spegelvender det valde biletet vassrett.</ahelp></variable>"
#: 05060300.xhp
msgctxt ""
@@ -16606,7 +16606,7 @@ msgctxt ""
"par_id3158429\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">Specifies the macro to run when you click an image, frame, or an OLE object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">Bestemmer kva makro som skal køyrast når du trykkjer på eit bilete, ei ramme eller eit OLE-objekt.</ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -16622,7 +16622,7 @@ msgctxt ""
"par_id3147564\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that can trigger a macro.</ahelp> Only the events that are relevant to the selected object are listed."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Viser hendingane som kan starta ein makro.</ahelp> Berre hendingane som er knytt til det valde objektet vert viste."
#: 05060700.xhp
msgctxt ""
@@ -16662,7 +16662,7 @@ msgctxt ""
"par_id3154564\n"
"help.text"
msgid "Image"
-msgstr ""
+msgstr "Bilete"
#: 05060700.xhp
msgctxt ""
@@ -16902,7 +16902,7 @@ msgctxt ""
"par_id3154780\n"
"help.text"
msgid "Image loaded successfully"
-msgstr ""
+msgstr "Innlastinga av bilete var vellukka"
#: 05060700.xhp
msgctxt ""
@@ -16910,7 +16910,7 @@ msgctxt ""
"par_id3145304\n"
"help.text"
msgid "image is loaded successfully"
-msgstr ""
+msgstr "Innlastinga av bilete var vellukka"
#: 05060700.xhp
msgctxt ""
@@ -16926,7 +16926,7 @@ msgctxt ""
"par_id3154718\n"
"help.text"
msgid "Image loading terminated"
-msgstr ""
+msgstr "Innlastinga av bilete vart avbrote"
#: 05060700.xhp
msgctxt ""
@@ -16934,7 +16934,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "loading of the image is terminated by the user (for example, when downloading)"
-msgstr ""
+msgstr "Innlastinga av bilete vart avbrote av brukaren (for eksempel under nedlasting)"
#: 05060700.xhp
msgctxt ""
@@ -16950,7 +16950,7 @@ msgctxt ""
"par_id3155079\n"
"help.text"
msgid "Could not load image"
-msgstr ""
+msgstr "Klarte ikkje lasta inn biletet"
#: 05060700.xhp
msgctxt ""
@@ -16958,7 +16958,7 @@ msgctxt ""
"par_id3149250\n"
"help.text"
msgid "image is not successfully loaded"
-msgstr ""
+msgstr "biletet er ikkje lasta inn fullstendig "
#: 05060700.xhp
msgctxt ""
@@ -17126,7 +17126,7 @@ msgctxt ""
"hd_id3156030\n"
"help.text"
msgid "Assigned Action"
-msgstr ""
+msgstr "Tildelt handling"
#: 05060700.xhp
msgctxt ""
@@ -17134,7 +17134,7 @@ msgctxt ""
"par_id3156043\n"
"help.text"
msgid "Specify the macro that executes when the selected event occurs."
-msgstr ""
+msgstr "Bestemmer kva makro som skal køyrast når den valde hendinga skjer."
#: 05060700.xhp
msgctxt ""
@@ -17150,7 +17150,7 @@ msgctxt ""
"hd_id3149271\n"
"help.text"
msgid "Macro From"
-msgstr ""
+msgstr "Makro frå"
#: 05060700.xhp
msgctxt ""
@@ -17158,7 +17158,7 @@ msgctxt ""
"par_id3149284\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the $[officename] program and any open $[officename] document.</ahelp> Within this list, select the location where you want to save the macros."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Viser $[officename]-programmet og eventuelle opne $[officename]-dokument.</ahelp> I denne lista kan du velja kvar makroane skal lagrast."
#: 05060700.xhp
msgctxt ""
@@ -17166,7 +17166,7 @@ msgctxt ""
"hd_id3156441\n"
"help.text"
msgid "Existing Macros"
-msgstr ""
+msgstr "Eksisterande makroar"
#: 05060700.xhp
msgctxt ""
@@ -17174,7 +17174,7 @@ msgctxt ""
"par_id3148458\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/macros\">Lists the available macros. Select the macro that you want to assign to the selected event, and then click <emph>Assign</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">Viser dei tilgjengelege makroane. Vel den makroen som skal brukast for den valde hendinga, og trykk på <emph>Tilordna</emph>.</ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -17190,7 +17190,7 @@ msgctxt ""
"par_id3145197\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assign\">Assigns the selected macro to the selected event.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assign\">Tilordnar den valde makroen til den valde hendinga.</ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -17206,7 +17206,7 @@ msgctxt ""
"par_id3150882\n"
"help.text"
msgid "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">Removes the macro assignment from the selected entry.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">Fjernar tilordninga av makroen frå den valde oppføringa.</ahelp></variable>"
#: 05060800.xhp
msgctxt ""
@@ -18414,7 +18414,7 @@ msgctxt ""
"par_id3148978\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/pagenonf\">Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/pagenonf\">Skriv inn sidenummeret på fen første sida etter skiftet. Ikkje merk av for denne dersom du vil halde fram med den gjeldande nummereringa.</ahelp>"
#: 05090300.xhp
msgctxt ""
@@ -19062,7 +19062,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "<variable id=\"einfuegentext\">Inserts a row or column into the table. This command is only available when the cursor is in a table.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegentext\">Set inn ei rad eller ein kolonne i tabellen. Denne kommandoen kan berre brukast når skrivemerket står i ein tabell.</variable>"
#: 05120400.xhp
msgctxt ""
@@ -19078,7 +19078,7 @@ msgctxt ""
"hd_id3150016\n"
"help.text"
msgid "Number"
-msgstr ""
+msgstr "Tal på"
#: 05120400.xhp
msgctxt ""
@@ -19086,7 +19086,7 @@ msgctxt ""
"par_id3155626\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertrowcolumn/insert_number\">Enter the number of columns or rows that you want.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertrowcolumn/insert_number\">Skriv inn kor mange rader eller kolonnar du vil ha.</ahelp>"
#: 05120400.xhp
msgctxt ""
@@ -19118,7 +19118,7 @@ msgctxt ""
"par_id3150564\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertrowcolumn/insert_before\">Adds new columns to the left of the current column, or adds new rows above the current row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertrowcolumn/insert_before\">Set inn nye kolonnar til venstre for gjeldande kolonne, eller nye rader over gjeldande rad.</ahelp>"
#: 05120400.xhp
msgctxt ""
@@ -19134,7 +19134,7 @@ msgctxt ""
"par_id3153718\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertrowcolumn/insert_after\">Adds new columns to the right of the current column, or adds new rows below the current row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertrowcolumn/insert_after\">Set inn nye kolonnar til høgre for gjeldande kolonne, eller nye rader under gjeldande rad.</ahelp>"
#: 05120500.xhp
msgctxt ""
@@ -19198,7 +19198,7 @@ msgctxt ""
"par_id3149052\n"
"help.text"
msgid "The following information concerns Writer styles that you can apply using the <link href=\"text/swriter/01/05140000.xhp\">Styles and Formatting</link> deck of the Sidebar."
-msgstr ""
+msgstr "Informasjonen nedanfor omtalar stilar i Writer som du kan bruka ved hjelp av <link href=\"text/swriter/01/05140000.xhp\">stilhandsamaren</link> i sidepanelet."
#: 05130000.xhp
msgctxt ""
@@ -19206,7 +19206,7 @@ msgctxt ""
"par_id3150015\n"
"help.text"
msgid "If you want, you can edit the styles of the current document, and then save the document as a template. To save the document as template, choose <emph>File - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save as Template\"><emph>Templates - Save as Template</emph></link>."
-msgstr ""
+msgstr "Viss du vil, kan du redigera stilane i det gjeldande dokumentet og deretter lagra dokumentet som ein mal. Du lagrar dokumentet som ein mal ved å velja <emph>Fil → </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save\"><emph>Malar → Lagra som mal</emph></link>."
#: 05130000.xhp
msgctxt ""
@@ -19222,7 +19222,7 @@ msgctxt ""
"par_id3153721\n"
"help.text"
msgid "These are the different categories of formatting styles."
-msgstr ""
+msgstr "Her er dei ulike kategoriane av formateringsstilar."
#: 05130000.xhp
msgctxt ""
@@ -19846,7 +19846,7 @@ msgctxt ""
"par_id3148391\n"
"help.text"
msgid "<ahelp hid=\".\">Use the Styles and Formatting deck of the Sidebar to apply, create, edit, and remove formatting styles. Double-click an entry to apply the style.</ahelp>"
-msgstr "<ahelp hid=\".\">Med stilhandsamaren kan du bruka, laga, redigera, leggja til og sletta formateringsstilar. Du kan ta i bruk ein stil ved å dobbeltklikka han.</ahelp>"
+msgstr "<ahelp hid=\".\">Med stilhandsamaren kan du bruka, laga, redigera, leggja til og sletta formateringsstilar. Du kan ta i bruk ein stil ved å dobbeltklikka på han.</ahelp>"
#: 05140000.xhp
msgctxt ""
@@ -19974,7 +19974,7 @@ msgctxt ""
"par_id3159194\n"
"help.text"
msgid "<image id=\"img_id3159200\" src=\"sw/res/sf03.png\"><alt id=\"alt_id3159200\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159200\" src=\"sw/res/sf03.png\"><alt id=\"alt_id3159200\">Ikon</alt></image>"
#: 05140000.xhp
msgctxt ""
@@ -19998,7 +19998,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<image id=\"img_id3149826\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149826\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149826\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149826\">Ikon</alt></image>"
#: 05140000.xhp
msgctxt ""
@@ -20022,7 +20022,7 @@ msgctxt ""
"par_id3152766\n"
"help.text"
msgid "<image id=\"img_id3152772\" src=\"sw/res/sf05.png\"><alt id=\"alt_id3152772\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152772\" src=\"sw/res/sf05.png\"><alt id=\"alt_id3152772\">Ikon</alt></image>"
#: 05140000.xhp
msgctxt ""
@@ -20062,7 +20062,7 @@ msgctxt ""
"par_id3156379\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Applies the selected style to the object or text that you select in the document. Click this icon, and then drag a selection in the document to apply the style.</ahelp> To exit this mode, click the icon again, or press Esc."
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Legg den valde stilen til eit objekt eller ein tekst. Trykk på denne knappen og merk eit objekt eller ein tekst med musepeikaren for å leggja til stilen.</ahelp>Trykk på knappen igjen eller trykk Escape for å gå ut av denne modusen."
#: 05140000.xhp
msgctxt ""
@@ -20118,7 +20118,7 @@ msgctxt ""
"par_id3146333\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles and Formatting window.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Dei manuelt formaterte eigenskapane til teksten som skrivemerket står i vert lagde til i stilen som er vald i stilhandsamaren.</ahelp>"
#: 05140000.xhp
msgctxt ""
@@ -21326,7 +21326,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/wordcount/WordCountDialog\">Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/wordcount/WordCountDialog\">Tel ord og teikn, med eller utan mellomrom, i den gjeldande markeringa og i heile dokumentet. Teljinga er til ei kvar tid oppdatert og vil endra seg når du skriv inn eller endrar utvalet.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Disposisjonsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Disposisjonsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Disposisjonsnummerering er knytt til avsnittsstilar. Som standard er avsnittsstilane «Overskrift»(1-10) tildelt til det tilsvarande disposisjonnivået (1-10). Viss du vil, kan du tildele andre avsnittsstilar til disposisjonsnivået."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Viss du vil bruka nummererte overskrifter, kan du velja <emph>Verktøy → Disposisjonsnummerering</emph> for å tildele nummerering til ein avsnittsstil. Ikkje bruk nummereringsknappen på formateringsverktøylinja til dette."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Du kan visa disposisjonsnumra tydelegare på skjermen ved å velja <emph>Vis → </emph><emph>Feltskugge</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Lagra eller hent eit format for disposisjonsnummerering. Eit slikt lagra format for disposisjonsnummerering er tilgjengeleg for alle tekstdokument.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Formater</emph>-knappen er berre tilgjengeleg når du bruker disposisjonsnummerering. Når du bruker stilar på nummererte lister og punktlister, kan du bruka nummereringsstilane for avsnittet."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opna eit dialogvindauge der du kan lagra innstillingane for det valde disposisjonsnivået. Du kan henta desse innstillingane inni eit anna dokument seinare.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Vel disposisjonsnivået du vil endra og vel nummereringsvala du vil bruka på dette nivået.</ahelp> Du kan velja «1-10» viss du vil bruka vala for nummerering, unntatt avsnittsstilen, på alle nivåa."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Veert brukt for å velja avsnittsstilen du vil bruka for det valde disposisjonsnivået.</ahelp> Viss du vel «Ingen», vert det ikkje definert nokon avsnittsstil for det valde disposisjonsnivået."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -23622,7 +23622,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "Before starting the Mail Merge Wizard you might want to review the whole process of creating a mail merge:"
-msgstr ""
+msgstr "Før du byrjar vegvisaren for brevfletting vil du kanskje friska opp korleis du lagar ei brevfletting:"
#: mailmerge00.xhp
msgctxt ""
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_idN105CC\n"
"help.text"
msgid "First step: <link href=\"text/swriter/01/mailmerge01.xhp\" name=\"Mail Merge Wizard - Select starting document\">Mail Merge Wizard - Select starting document</link>."
-msgstr ""
+msgstr "Første steg: <link href=\"text/swriter/01/mailmerge01.xhp\" name=\"Mail Merge Wizard - Select starting document\">Vegvisar for brevfletting → Vel startdokument</link>"
#: mailmerge00.xhp
msgctxt ""
@@ -23646,7 +23646,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Wizard - Select starting Document"
-msgstr ""
+msgstr "Vegvisar for brevfletting - vel startdokument"
#: mailmerge01.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"par_idN10543\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge01.xhp\">Mail Merge Wizard - Select starting document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mailmerge01.xhp\">Vegvisar for brevfletting - vel startdokument</link>"
#: mailmerge01.xhp
msgctxt ""
@@ -23662,7 +23662,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the document that you want to use as a base for the mail merge document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel dokumentet du vil bruka som grunnlag for brevflettingsdokumentet.</ahelp>"
#: mailmerge01.xhp
msgctxt ""
@@ -23758,7 +23758,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a template selector dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opna eit dialogvindauge for å velja mal.</ahelp>"
#: mailmerge01.xhp
msgctxt ""
@@ -23790,7 +23790,7 @@ msgctxt ""
"par_idN1058B\n"
"help.text"
msgid "Next step: <link href=\"text/swriter/01/mailmerge02.xhp\" name=\"Mail Merge Wizard - Document type\">Mail Merge Wizard - Select document type</link>"
-msgstr ""
+msgstr "Neste steg: <link href=\"text/swriter/01/mailmerge02.xhp\" name=\"Mail Merge Wizard - Document type\">Vegvisar for brevfletting - vel dokumenttype</link>"
#: mailmerge01.xhp
msgctxt ""
@@ -23798,7 +23798,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Oversyn over <link href=\"text/swriter/01/mailmerge00.xhp\">vegvisaren for brevfletting</link>"
#: mailmerge02.xhp
msgctxt ""
@@ -23806,7 +23806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Wizard - Select document type"
-msgstr ""
+msgstr "Vegvisar for brevfletting - vel dokumenttype"
#: mailmerge02.xhp
msgctxt ""
@@ -23814,7 +23814,7 @@ msgctxt ""
"par_idN10543\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge02.xhp\">Mail Merge Wizard - Select document type</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mailmerge02.xhp\">Vegvisar for brevfletting - vel dokumenttype</link>"
#: mailmerge02.xhp
msgctxt ""
@@ -23822,7 +23822,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the type of mail merge document to create.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel kva slag brevflettingsdokument som skal lagast.</ahelp>"
#: mailmerge02.xhp
msgctxt ""
@@ -23862,7 +23862,7 @@ msgctxt ""
"par_idN10572\n"
"help.text"
msgid "Next step: <link href=\"text/swriter/01/mailmerge03.xhp\" name=\"Mail Merge Wizard - Addresses\">Mail Merge Wizard - Addresses</link>"
-msgstr ""
+msgstr "Neste steg: <link href=\"text/swriter/01/mailmerge03.xhp\" name=\"Mail Merge Wizard - Addresses\">Vegvisar for brevfletting - adresser</link>"
#: mailmerge02.xhp
msgctxt ""
@@ -23870,7 +23870,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Oversyn over <link href=\"text/swriter/01/mailmerge00.xhp\">Vegvisaren for brevfletting</link>"
#: mailmerge03.xhp
msgctxt ""
@@ -23878,7 +23878,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Wizard - Addresses"
-msgstr "Brevflettingsvegvisar - Adresser"
+msgstr "Vegvisar for brevfletting - adresser"
#: mailmerge03.xhp
msgctxt ""
@@ -23894,7 +23894,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the recipients for the mail merge document as well as the layout of the address block.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel kven som skal motta brevflettingsdokumentet og vel utforminga for adresseblokka.</ahelp>"
#: mailmerge03.xhp
msgctxt ""
@@ -23902,7 +23902,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "The Mail Merge wizard opens to this page if you start the wizard in a text document that already contains address database fields. If the wizard opens directly to this page, the <emph>Select Address List</emph> button is called <emph>Select Different Address List</emph>."
-msgstr ""
+msgstr "Brevflettingsvegvisaen vil opna denne sida viss du startar vegvisaren i eit tekstdokument som inneheld adressedatabasefelt frå før. Viss vegvisaren vert opna direkte frå denne sida, vil teksten på knappen <emph>Vel adresseliste</emph> i staden vera <emph>Vel ei anna adresseliste</emph>."
#: mailmerge03.xhp
msgctxt ""
@@ -23910,7 +23910,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "The title of this page is <emph>Insert address block</emph> for letters and <emph>Select address list</emph> for e-mail messages."
-msgstr ""
+msgstr "Tittelen på denne sida er <emph>Adresseblokk</emph> for brev og <emph>Adresseliste</emph> for e-postmeldingar."
#: mailmerge03.xhp
msgctxt ""
@@ -23918,7 +23918,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "Select Address List"
-msgstr ""
+msgstr "Vel adresseliste"
#: mailmerge03.xhp
msgctxt ""
@@ -24014,7 +24014,7 @@ msgctxt ""
"par_idN105A1\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a preview of the address block template filled with data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Viser ei førehandsvising av adresseblokka med data.</ahelp>"
#: mailmerge03.xhp
msgctxt ""
@@ -24038,7 +24038,7 @@ msgctxt ""
"par_idN105B8\n"
"help.text"
msgid "Next step: <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Mail Merge Wizard - Create salutation\">Mail Merge Wizard - Create salutation</link>"
-msgstr ""
+msgstr "Neste steg: <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Mail Merge Wizard - Create a salutation\">Vegvisar for brevfletting → Laga ei helsing</link>"
#: mailmerge03.xhp
msgctxt ""
@@ -24046,7 +24046,7 @@ msgctxt ""
"hd_idN105834\n"
"help.text"
msgid "Alternatively you can press the <emph>Finish</emph> button and use the <link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link> to finish the mail merge process."
-msgstr ""
+msgstr "Du kan også trykka knappen <emph>Ferdig</emph> og bruka<link href=\"text/swriter/mailmergetoolbar.xhp\">verktøylinja for brevfletting</link> for å gjera ferdig brevflettinga."
#: mailmerge03.xhp
msgctxt ""
@@ -24054,7 +24054,7 @@ msgctxt ""
"par_idN10569\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Oversyn over <link href=\"text/swriter/01/mailmerge00.xhp\">vegvisaren for brevfletting</link>"
#: mailmerge04.xhp
msgctxt ""
@@ -24070,7 +24070,7 @@ msgctxt ""
"par_idN10543\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge04.xhp\">Mail Merge Wizard - Create salutation</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mailmerge04.xhp\">Vegvisar for brevfletting → Laga ei helsing</link>"
#: mailmerge04.xhp
msgctxt ""
@@ -24078,7 +24078,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the properties for the salutation.</ahelp> If the mail merge database contains gender information, you can specify different salutations based on the gender of the recipient."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel kva helsinga skal innehalda.</ahelp> Dersom brevflettingsdatabasen inneheld informasjon om kjønn, kan du velja ulike helsingar om du skriv til ei kvinne eller til ein mann."
#: mailmerge04.xhp
msgctxt ""
@@ -24278,7 +24278,7 @@ msgctxt ""
"par_idN105D4\n"
"help.text"
msgid "Next step: <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Mail Merge Wizard - Adjust layout\">Mail Merge Wizard - Adjust layout</link>"
-msgstr ""
+msgstr "Neste styg: <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Mail Merge Wizard - Adjust layout\">Vegvisar for brevfletting - tilpass utforminga</link>"
#: mailmerge04.xhp
msgctxt ""
@@ -24286,7 +24286,7 @@ msgctxt ""
"hd_idN10584\n"
"help.text"
msgid "Alternatively you can press the <emph>Finish</emph> button and use the <link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link> to finish the mail merge process."
-msgstr ""
+msgstr "Du kan også trykka knappen <emph>Ferdig</emph> og bruka<link href=\"text/swriter/mailmergetoolbar.xhp\">verktøylinja for brevfletting</link> for å gjera ferdig brevflettinga."
#: mailmerge04.xhp
msgctxt ""
@@ -24294,7 +24294,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Oversyn over <link href=\"text/swriter/01/mailmerge00.xhp\">vegvisaren for brevfletting</link>"
#: mailmerge05.xhp
msgctxt ""
@@ -24302,7 +24302,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Wizard - Adjust Layout"
-msgstr ""
+msgstr "Vegvisar for brevfletting - tilpass utforminga"
#: mailmerge05.xhp
msgctxt ""
@@ -24310,7 +24310,7 @@ msgctxt ""
"par_idN10543\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge05.xhp\">Mail Merge Wizard - Adjust layout</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mailmerge05.xhp\">Vegvisar for brevfletting - tilpass utforminga</link>"
#: mailmerge05.xhp
msgctxt ""
@@ -24318,7 +24318,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the position of the address blocks and salutations on the documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer korleis adresseblokkene og helsingane skal plasserast i dokumenta.</ahelp>"
#: mailmerge05.xhp
msgctxt ""
@@ -24326,7 +24326,7 @@ msgctxt ""
"par_idN10544\n"
"help.text"
msgid "Address Block Position"
-msgstr ""
+msgstr "Plassering av adresseblokk"
#: mailmerge05.xhp
msgctxt ""
@@ -24382,7 +24382,7 @@ msgctxt ""
"par_idN10545\n"
"help.text"
msgid "Salutation Position"
-msgstr ""
+msgstr "Plassering av helsinga"
#: mailmerge05.xhp
msgctxt ""
@@ -24422,7 +24422,7 @@ msgctxt ""
"par_idN10573\n"
"help.text"
msgid "Preview area"
-msgstr ""
+msgstr "Område for førehandsvising"
#: mailmerge05.xhp
msgctxt ""
@@ -24430,7 +24430,7 @@ msgctxt ""
"par_idN10577\n"
"help.text"
msgid "<ahelp hid=\".\">Provides a preview of the salutation positioning on the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lagar ei førehandsvising av plasseringa av helsinga på sida.</ahelp>"
#: mailmerge05.xhp
msgctxt ""
@@ -24462,7 +24462,7 @@ msgctxt ""
"hd_idN10584\n"
"help.text"
msgid "Press the <emph>Finish</emph> button and use the <link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link> to finish the mail merge process."
-msgstr ""
+msgstr "Trykk på knappen <emph>Ferdig</emph> og bruk<link href=\"text/swriter/mailmergetoolbar.xhp\">verktøylinja for brevfletting</link> for å gjera ferdig brevflettinga."
#: mailmerge05.xhp
msgctxt ""
@@ -24470,7 +24470,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Oversyn over <link href=\"text/swriter/01/mailmerge00.xhp\">vegvisaren for brevfletting</link>"
#: mm_copyto.xhp
msgctxt ""
@@ -24494,7 +24494,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "Specify additional e-mail recipients for the <link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">mail merge</link> document."
-msgstr ""
+msgstr "Vert brukt til å velja andre e-postmottakarar som <link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">brevflettings</link>-dokumentet skal sendast til."
#: mm_copyto.xhp
msgctxt ""
@@ -24774,7 +24774,7 @@ msgctxt ""
"par_idN10540\n"
"help.text"
msgid "<ahelp hid=\".\">Type the message and the salutation for files that you send as <link href=\"text/swriter/01/mailmerge08.xhp\">e-mail</link> attachments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn meldinga og helsinga du vil bruka når du sender fletta brev som vedlegg i <link href=\"text/swriter/01/mailmerge08.xhp\">e-post</link>.</ahelp>"
#: mm_emabod.xhp
msgctxt ""
@@ -24942,7 +24942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Send merged document as e-mail"
-msgstr ""
+msgstr "Senda fletta dokument som e-post"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24950,7 +24950,7 @@ msgctxt ""
"hd_id201703192214041173\n"
"help.text"
msgid "<link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">Send merged document as e-mail</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">Senda fletta dokument som e-post</link>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24958,7 +24958,7 @@ msgctxt ""
"par_id201703192214161498\n"
"help.text"
msgid "<ahelp hid=\".\">Sends the mail merge output as e-mail messages to all or some recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Senda det fletta dokumentet på e-post til alle mottakarane eller nokre av dei.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24966,7 +24966,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "E-mail options"
-msgstr ""
+msgstr "Alternativ for e-post"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24974,7 +24974,7 @@ msgctxt ""
"par_idN105E8\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "Til"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24982,7 +24982,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database field that contains the e-mail address of the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel kva databasefelt som inneheld e-postadressa til mottakaren.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24990,7 +24990,7 @@ msgctxt ""
"par_idN105EF\n"
"help.text"
msgid "Copy to"
-msgstr ""
+msgstr "Kopier til"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -24998,7 +24998,7 @@ msgctxt ""
"par_idN105F3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_copyto.xhp\">Copy To</link> dialog where you can specify one or more CC or BCC addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opna dialogvindauget <link href=\"text/swriter/01/mm_copyto.xhp\">Kopi til</link>, der du kan velja éi eller fleire kopi- og blindkopiadresser.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25006,7 +25006,7 @@ msgctxt ""
"par_idN10600\n"
"help.text"
msgid "Subject"
-msgstr ""
+msgstr "Emne"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25014,7 +25014,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the subject line for the e-mail messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn emnelinja til e-postmeldingane.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25022,7 +25022,7 @@ msgctxt ""
"par_idN10607\n"
"help.text"
msgid "Send as"
-msgstr ""
+msgstr "Send som"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25030,7 +25030,7 @@ msgctxt ""
"par_idN1060B\n"
"help.text"
msgid "<ahelp hid=\".\">Select the mail format for the e-mail messages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel formatet på e-postmeldingane.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25038,7 +25038,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "The Plain text and HTML message formats are sent in the body of the message, whereas the *.odt, *.doc, and *.pdf formats are sent as attachments."
-msgstr ""
+msgstr "Vanleg tekst og HTML-meldingar vert lagt til i meldingsteksten. Filformat som *.odt, *.doc, og *.pdf vert lagt til som vedlegg."
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25046,7 +25046,7 @@ msgctxt ""
"par_idN10611\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenskapar"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25054,7 +25054,7 @@ msgctxt ""
"par_idN10615\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the e-mail message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opna dialogvindauget <link href=\"text/swriter/01/mm_emabod.xhp\">E-postmelding</link>, der du kan skriva inn e-postmeldinga til brevflettingsfilene som vert sende som vedlegg.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25062,7 +25062,7 @@ msgctxt ""
"par_idN10626\n"
"help.text"
msgid "Name of the attachment"
-msgstr ""
+msgstr "Namn på vedlegget"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25070,7 +25070,7 @@ msgctxt ""
"par_idN1062A\n"
"help.text"
msgid "<ahelp hid=\".\">Shows the name of the attachment.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser namnet på vedlegget.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25078,7 +25078,7 @@ msgctxt ""
"par_idN10558\n"
"help.text"
msgid "Send records"
-msgstr ""
+msgstr "Send postar"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25086,7 +25086,7 @@ msgctxt ""
"par_idN1062D\n"
"help.text"
msgid "Send all documents"
-msgstr ""
+msgstr "Send alle dokumenta"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25094,7 +25094,7 @@ msgctxt ""
"par_idN10631\n"
"help.text"
msgid "<ahelp hid=\".\">Select to send e-mails to all recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Merk for å senda e-post til alle mottakarane.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25102,7 +25102,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Frå"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25110,7 +25110,7 @@ msgctxt ""
"par_idN1059F\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a range of records starting at the record number in the <emph>From</emph> box and ending at the record number in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel ei rekkje datapostar frå postnummeret i <emph>Frå</emph>-feltet opp til postnummeret i <emph>Til</emph>-feltet.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25118,7 +25118,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Frå"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25126,7 +25126,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of the first record to include in the mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nummeret på den første posten som skal takast med i brevflettinga.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25134,7 +25134,7 @@ msgctxt ""
"par_idN105A2\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "Til"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25142,7 +25142,7 @@ msgctxt ""
"par_idN105A6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of the last record to include in the mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nummeret på den siste posten som skal takast med i brevflettinga.</ahelp>"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25150,7 +25150,7 @@ msgctxt ""
"par_idN10642\n"
"help.text"
msgid "Send Documents"
-msgstr ""
+msgstr "Send dokumenta"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25158,7 +25158,7 @@ msgctxt ""
"par_idN10646\n"
"help.text"
msgid "<ahelp hid=\".\">Click to start sending e-mails.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Trykk her for å byrja å senda e-post.</ahelp>"
#: mm_finent.xhp
msgctxt ""
@@ -25182,7 +25182,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "<ahelp hid=\".\">Searches for a record or recipient in the <link href=\"text/swriter/01/mm_newaddlis.xhp\">mail merge</link> address list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vert brukt til å søkja etter ein post eller ein mottakar i adresselista for <link href=\"text/swriter/01/mm_newaddlis.xhp\">brevfletting</link>.</ahelp>"
#: mm_finent.xhp
msgctxt ""
@@ -25222,7 +25222,7 @@ msgctxt ""
"par_idN1055C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the data field where you want to search for the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel datafeltet du vil søka etter teksten i.</ahelp>"
#: mm_finent.xhp
msgctxt ""
@@ -25262,7 +25262,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "<ahelp hid=\".\">Matches the logical field names of the layout dialog to the field names in your database when you create new <link href=\"text/swriter/01/mailmerge03.xhp\">address blocks</link> or <link href=\"text/swriter/01/mailmerge04.xhp\">salutations</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vert brukt for å velja samsvar mellom dei logiske feltnamna i dialogvindauget for utforming og feltnamna i databasen når du lagar nye <link href=\"text/swriter/01/mailmerge03.xhp\">adresseblokker</link> eller <link href=\"text/swriter/01/mailmerge04.xhp\">helsingar</link>.</ahelp>"
#: mm_matfie.xhp
msgctxt ""
@@ -25270,7 +25270,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "Matches to field:"
-msgstr ""
+msgstr "Tilordna til felt:"
#: mm_matfie.xhp
msgctxt ""
@@ -25278,7 +25278,7 @@ msgctxt ""
"par_idN10552\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field name in your database for each logical address element.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel eit feltnamn i databasen for kvart logiske adresseelement.</ahelp>"
#: mm_matfie.xhp
msgctxt ""
@@ -25286,7 +25286,7 @@ msgctxt ""
"par_idN10555\n"
"help.text"
msgid "Address block preview"
-msgstr ""
+msgstr "Førehandsvising av adresseblokk"
#: mm_matfie.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Ny adresseblokk"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Ny adresseblokk"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adresseelement"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Dra element til feltet under"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25438,7 +25438,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "<ahelp hid=\".\">Enter new addresses or edit the addresses for <link href=\"text/swriter/01/mailmerge03.xhp\">mail merge</link> documents.</ahelp> When you click <emph>OK</emph>, a dialog prompts you for the location to save the address list."
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nye adresser eller rediger adressene som vert brukte til å laga <link href=\"text/swriter/01/mailmerge03.xhp\">brevflettings</link>-dokument</ahelp>. Når du trykkjer <emph>OK</emph>, kjem det fram eit dialogvindauge der du vel kor adresselista skal lagrast."
#: mm_newaddlis.xhp
msgctxt ""
@@ -25542,7 +25542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print merged document"
-msgstr ""
+msgstr "Skriv ut fletta dokument"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25550,7 +25550,7 @@ msgctxt ""
"hd_id201703192010597215\n"
"help.text"
msgid "<link href=\"text/swriter/01/mm_printmergeddoc.xhp\">Print merged document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mm_printmergeddoc.xhp\">Skriv ut fletta dokument</link>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25558,7 +25558,7 @@ msgctxt ""
"par_id201703192012043766\n"
"help.text"
msgid "<ahelp hid=\".\">Prints the mail merge output for all or some recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv ut for alle eller nokre mottakarar.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25566,7 +25566,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Printer options"
-msgstr ""
+msgstr "Skrivaroppsett"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25574,7 +25574,7 @@ msgctxt ""
"par_idN105B7\n"
"help.text"
msgid "Printer"
-msgstr ""
+msgstr "Skrivar"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25582,7 +25582,7 @@ msgctxt ""
"par_idN105BB\n"
"help.text"
msgid "<ahelp hid=\".\">Select the printer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel skrivaren</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25590,7 +25590,7 @@ msgctxt ""
"par_idN105BE\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenskapar"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25598,7 +25598,7 @@ msgctxt ""
"par_idN105C2\n"
"help.text"
msgid "<ahelp hid=\".\">Changes the printer properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Endra skrivaroppsettet.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25606,7 +25606,7 @@ msgctxt ""
"par_idN10560\n"
"help.text"
msgid "Print records"
-msgstr ""
+msgstr "Skriv postar"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25614,7 +25614,7 @@ msgctxt ""
"par_idN105C5\n"
"help.text"
msgid "Print all documents"
-msgstr ""
+msgstr "Skriv ut alle dokumenta"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25622,7 +25622,7 @@ msgctxt ""
"par_idN105C9\n"
"help.text"
msgid "<ahelp hid=\".\">Prints documents for all recipients.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv ut dokumenta til alle mottakarane.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25630,7 +25630,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Frå"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25638,7 +25638,7 @@ msgctxt ""
"par_idN1059F\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a range of records starting at the record number in the <emph>From</emph> box and ending at the record number in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel ei rekkje datapostar frå postnummeret i <emph>Frå</emph>-feltet opp til postnummeret i <emph>Til</emph>-feltet.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25646,7 +25646,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Frå"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25654,7 +25654,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of the first record to include in the mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nummeret på den første posten som skal takast med i brevflettinga.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25662,7 +25662,7 @@ msgctxt ""
"par_idN105A2\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "Til"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25670,7 +25670,7 @@ msgctxt ""
"par_idN105A6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of the last record to include in the mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nummeret på den siste posten som skal takast med i brevflettinga.</ahelp>"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25678,7 +25678,7 @@ msgctxt ""
"par_idN105DA\n"
"help.text"
msgid "Print Documents"
-msgstr ""
+msgstr "Skriv ut dokumenta"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25686,7 +25686,7 @@ msgctxt ""
"par_idN105DE\n"
"help.text"
msgid "<ahelp hid=\".\">Prints the mail merge documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv ut brevflettingsdokumenta.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25694,7 +25694,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Save merged document"
-msgstr ""
+msgstr "Lagra fletta dokument"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25702,7 +25702,7 @@ msgctxt ""
"hd_id201703191634335977\n"
"help.text"
msgid "<link href=\"text/swriter/01/mm_savemergeddoc.xhp\">Save merged document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/mm_savemergeddoc.xhp\">Lagra fletta dokument</link>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25710,7 +25710,7 @@ msgctxt ""
"par_id201703191635403846\n"
"help.text"
msgid "<ahelp hid=\".\">Save the mail merge output to file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lagra utskrifta frå brevflettinga til fil.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25718,7 +25718,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "Save As options"
-msgstr ""
+msgstr "Innstillingar for lagra som"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25726,7 +25726,7 @@ msgctxt ""
"par_idN1058D\n"
"help.text"
msgid "Save as single large document"
-msgstr ""
+msgstr "Lagra som eit enkelt stort dokument"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25734,7 +25734,7 @@ msgctxt ""
"par_idN10591\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the merged document as a single file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lagra det fletta dokumentet som ei enkelt fil.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25742,7 +25742,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "Save as individual documents"
-msgstr ""
+msgstr "Lagra som einskilde dokument"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25750,7 +25750,7 @@ msgctxt ""
"par_idN10598\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lagra det fletta dokumentet som ei eiga fil for kvar mottakar. Dokumentfilene får namn ut frå det namnet du skriv inn, følgd av ein understrek og nummeret til dataposten.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25758,7 +25758,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Frå"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25766,7 +25766,7 @@ msgctxt ""
"par_idN1059F\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a range of records starting at the record number in the <emph>From</emph> box and ending at the record number in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel ei rekkje datapostar frå postnummeret i <emph>Frå</emph>-feltet opp til postnummeret i <emph>Til</emph>-feltet.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25774,7 +25774,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "Frå"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25782,7 +25782,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of the first record to include in the mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nummeret på den første posten som skal takast med i brevflettinga.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25790,7 +25790,7 @@ msgctxt ""
"par_idN105A2\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "Til"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25798,7 +25798,7 @@ msgctxt ""
"par_idN105A6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of the last record to include in the mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv inn nummeret på den siste posten som skal takast med i brevflettinga.</ahelp>"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25806,7 +25806,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "Save Documents"
-msgstr ""
+msgstr "Lagra dokumenta"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25814,7 +25814,7 @@ msgctxt ""
"par_idN105AD\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lagrar dokumenta.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -25838,7 +25838,7 @@ msgctxt ""
"par_idN1053D\n"
"help.text"
msgid "<ahelp hid=\".\">Select, edit, or delete an address block layout for <link href=\"text/swriter/01/mailmerge03.xhp\">mail merge</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vert brukt til å velja, redigera eller sletta ei adresseblokkutforming som er brukt til <link href=\"text/swriter/01/mailmerge03.xhp\">brevfletting</link>.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -25846,7 +25846,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "Select your preferred address block"
-msgstr ""
+msgstr "Vel den føretrekte adresseblokka"
#: mm_seladdblo.xhp
msgctxt ""
@@ -25942,7 +25942,7 @@ msgctxt ""
"par_idN10583\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_newaddblo.xhp\">Edit Address Block</link> dialog where you can edit the selected address block layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opna dialogvindauget <link href=\"text/swriter/01/mm_newaddblo.xhp\">Rediger adresseblokka</link> der du kan endra på det valde adresseblokkoppsettet.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
@@ -25982,7 +25982,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "<ahelp hid=\".\">Select the address list that you want to use for <link href=\"text/swriter/01/mailmerge03.xhp\">mail merge</link>, then click <emph>OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vel adresselista du vil bruka til <link href=\"text/swriter/01/mailmerge03.xhp\">brevfletting</link> og trykk <emph>OK</emph>.</ahelp>"
#: mm_seladdlis.xhp
msgctxt ""
@@ -26214,7 +26214,7 @@ msgctxt ""
"par_id300920161443293374\n"
"help.text"
msgid "Note: Using the Default (or any other) page style for your document, you can add a header or footer as you wish to the first page by deselecting the <item type=\"menuitem\">Same content on first page</item> option on the header/footer tabs in the <emph>Page Style</emph> dialog, and then adding the header or footer. You can then add a different header or footer to the other pages of the document."
-msgstr ""
+msgstr "Merk: Om du brukar standard (eller alle andre) sidestilar for dokumentet, kan du enkelt leggja til topp- og botntekst til førstesida ved å velja bort <item type=\"menuitem\">Same innhald på første side</item> i topp-/botntekst-sidene i dialogvindauget <emph>Sidestil</emph> og så leggja til topp-/botntekst. Du kan deretter leggja til ulik topp-/botntekst for dei andre sidene i dokumentet."
#: title_page.xhp
msgctxt ""
@@ -26238,7 +26238,7 @@ msgctxt ""
"par_id300920161443301816\n"
"help.text"
msgid "From the Menu Bar, choose <item type=\"menuitem\">Format - Title page…</item>"
-msgstr ""
+msgstr "Vel menyen <item type=\"menuitem\">Format → Tittelside …</item>"
#: title_page.xhp
msgctxt ""
@@ -26254,7 +26254,7 @@ msgctxt ""
"par_id300920161443301533\n"
"help.text"
msgid "Select the style of the title page in the <emph>Edit Page Properties</emph> area"
-msgstr ""
+msgstr "Vel stilen på tittelsida under eigenskapar i <emph>Rediger sideeigenskapar</emph>."
#: title_page.xhp
msgctxt ""
@@ -26262,7 +26262,7 @@ msgctxt ""
"par_id300920161448355764\n"
"help.text"
msgid "Note: By default, %PRODUCTNAME selects the <emph>First page</emph> page style."
-msgstr ""
+msgstr "Merk: %PRODUCTNAME set sidestilen <emph>Første side</emph> som standard."
#: title_page.xhp
msgctxt ""
@@ -26310,7 +26310,7 @@ msgctxt ""
"par_id300920161443315460\n"
"help.text"
msgid "From the menu bar select <item type=\"menuitem\">Format - Title page</item>."
-msgstr ""
+msgstr "Vel menyen <item type=\"menuitem\">Format → Tittelside</item>"
#: title_page.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id30092016144332353\n"
"help.text"
msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles and Formatting</emph>."
-msgstr ""
+msgstr "Vel <emph>Innstillingar for sidepanel → Stilar og formatering</emph> i sidepanelet."
#: title_page.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/swriter/02.po b/source/nn/helpcontent2/source/text/swriter/02.po
index 98726fd2621..c36ad78e3d1 100644
--- a/source/nn/helpcontent2/source/text/swriter/02.po
+++ b/source/nn/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-04 10:31+0000\n"
+"PO-Revision-Date: 2017-06-12 18:29+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496572271.000000\n"
+"X-POOTLE-MTIME: 1497292166.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"par_id3155142\n"
"help.text"
msgid "<image id=\"img_id3155148\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155148\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155148\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155148\">Ikon</alt></image>"
#: 14020000.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/sum\">Calculates the sum of the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/sum\">Reknar ut summen av dei merkte cellene.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3145621\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/round\">Rounds a number to the specified decimal places.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/round\">Avrundar tal til dei valde desimalplassane.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_id3155953\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/phd\">Calculates a percentage</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/phd\">Reknar ut ein prosent.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id3153062\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/sqrt\">Calculates the square root.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/sqrt\">Reknar ut ein kvadratrota.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3149768\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/pow\">Calculates the power of a number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/pow\">Reknar ut potensen av eit tal.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id3153099\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/|\">Separates the elements in a list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/|\">Skil elementa i ei liste.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3150936\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/eq\">Checks if selected values are equal.</ahelp> If they are unequal, the result is zero, otherwise 1 (true) appears."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/eq\">Kontrollerer om dei valde verdiane er like.</ahelp> Er dei ulike vert resultatet null, elles 1 (sann)."
#: 14020000.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id3150526\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/neq\">Tests for inequality between selected values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/neq\">Kontrollerer om dei valde verdiane er ulike.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"par_id3153622\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/leq\">Tests for values less than or equal to a specified value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/leq\">Kontrollerer om verdiane er like ein oppgjeven verdi.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"par_id3148876\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/geq\">Tests for values greater than or equal to a specified value</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/geq\">Kontrollerer om verdiane er større enn eller like ein oppgjeven verdi.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id3155411\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/l\">Tests for values less than a specified value</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/l\">Kontrollerer om verdiane er mindre enn ein oppgjeven verdi.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3147310\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/g\">Tests for values greater than a specified value</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/g\">Kontrollerer om verdiane er større enn ein oppgjeven verdi.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"par_id3150274\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/or\">Tests for values matching the Boolean OR</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/or\">Kontrollerer om verdiane passar logisk ELLER.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_id3146980\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/xor\">Tests for values matching the Boolean exclusive OR</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/xor\">Kontrollerer om verdiane passar logisk eksklusiv ELLER.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3153792\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/and\">Tests for values matching the Boolean AND</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/and\">Kontrollerer om verdiane passar logisk OG.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3148633\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/not\">Tests for values matching the Boolean NOT</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/not\">Kontrollerer om verdiane passar logisk IKKJE.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_id3154076\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/mean\">Calculates the arithmetic mean of the values in an area or a list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/mean\">Reknar ut det aritmetiske gjennomsnittet av verdiane i eit område eller ei liste.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"par_id3155281\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/min\">Calculates the minimum value in an area or a list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/min\">Reknar ut den minste verdien i eit område eller ei liste.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"par_id3154726\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/max\">Calculates the maximum value in an area or a list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/max\">Reknar ut den største verdien i eit område eller ei liste.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_id3149530\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/sin\">Calculates the sine in radians</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/sin\">Reknar ut sinus i radianar.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3154533\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/cos\">Calculates the cosine in radians.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/cos\">Reknar ut cosinus i radianar.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"par_id3149369\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/tan\">Calculates the tangent in radians.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/tan\">Reknar ut tangens i radianar.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2126,7 +2126,7 @@ msgctxt ""
"par_id3150565\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/asin\">Calculates the arc sine in radians.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/asin\">Reknar ut invers sinus i radianar.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/acos\">Calculates the arc cosine in radians.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/acos\">Reknar ut invers cosinus i radianar.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"par_id3147080\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inputwinmenu/atan\">Calculates the arc tangent in radians.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inputwinmenu/atan\">Reknar ut invers tangens i radianar.</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"par_id3149574\n"
"help.text"
msgid "<image id=\"img_id3149580\" src=\"sw/res/sc20557.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149580\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149580\" src=\"sw/res/sc20557.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149580\">Ikon</alt></image>"
#: 14030000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/swriter/guide.po b/source/nn/helpcontent2/source/text/swriter/guide.po
index 0f884d20bc2..e88697b797f 100644
--- a/source/nn/helpcontent2/source/text/swriter/guide.po
+++ b/source/nn/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
-"PO-Revision-Date: 2017-06-04 18:01+0000\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
+"PO-Revision-Date: 2017-06-13 16:50+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496599283.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497372619.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Du kan flytta overskrifter og underordna tekst oppover og nedover i eit dokument ved å bruka verktøyet «Dokumentstruktur». Du kan også endra nivå på overskriftene. For å bruka dette verktøyet, formater overskriftene i dokumentet med ei av dei førehandsinnstilte avsnittsoverskriftene. For å bruka ein sjølvvald avsnittsstil på ei overskrift, vel <emph>Verktøy → Disposisjonsnummerering</emph>, vel stilen i boksen <emph>Avsnittsstil</emph> og dobbeltklikk på eit tal i <emph>nivålista</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3151238\n"
"help.text"
msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr ""
+msgstr "I <emph>Datastruktur</emph>, klikk på ikonet <emph>Innhaldsvising</emph><image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ikon</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3155139\n"
"help.text"
msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr ""
+msgstr "Klikk på overskrifta i <emph>Datastruktur</emph>, klikk deretter på <emph>Kapittel opp</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikon</alt></image> eller <emph>Kapittel ned</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikon</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_idN1081C\n"
"help.text"
msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr ""
+msgstr "Klikk på <emph>Flytt nivå opp</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikon</alt></image> eller <emph>Flytt nivå ned</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikon</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3151352\n"
"help.text"
msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr ""
+msgstr "Klikk på knappen <emph>Vis overskriftsnivå</emph><image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ikon</alt></image> og vel eit nummer frå lista."
#: auto_numbering.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3147759\n"
"help.text"
msgid "If you choose a word from the <item type=\"menuitem\">AutoCorrect</item> submenu, the underlined word and the replacement word are automatically added to the AutoCorrect list for the current language. To view the AutoCorrect list, choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>, and then click the <item type=\"menuitem\">Replace</item> tab."
-msgstr ""
+msgstr "Dersom du vel eit ord frå undermenyen <item type=\"menuitem\">Autoretting</item>, vert ordet som er understreka og erstatningsordet automatisk lagt til i lista over autorettingar for det gjeldande språket. Vel <item type=\"menuitem\">>Verktøy → Autoretting → Innstillingar for autoretting</item> og klikk på fana <item type=\"menuitem\">Erstatt</item>."
#: auto_spellcheck.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3145602\n"
"help.text"
msgid "Choose \"None (Do not check spelling)\"."
-msgstr ""
+msgstr "Vel «Ingen (ikkje sjekk stavinga)»."
#: auto_spellcheck.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Disposisjonsnummerering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>disposisjon;nummerering</bookmark_value> <bookmark_value>sletta;overskriftsnummer</bookmark_value> <bookmark_value>kapittelnummerering</bookmark_value><bookmark_value>overskrifter; nummerering</bookmark_value> <bookmark_value>nummerering;overskrifter</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Disposisjonsnummerering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Du kan endra disposisjonen på overskriftene eller gje eit nivå i disposisjonen ein tilpassa avsnittsstil. Du kan også leggja nummerering av kapittel og inndelingar til avsnittsoverskrifter. Som standard står avsnittsstilen «Overskrift 1» på øvste stilnivå."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vel <item type=\"menuitem\">Verktøy → Disposisjonsnummerering</item> og trykk på fana <item type=\"menuitem\">Nummerering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Slik fjernar du automatisk disposisjonsnummerering frå ein avsnittsstil"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Vel <item type=\"menuitem\">Verktøy → Disposisjonsnummerering</item> og trykk på fana <item type=\"menuitem\">Nummerering</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"par_id4286935\n"
"help.text"
msgid "Enter the text to search in the <emph>Find</emph> text box."
-msgstr ""
+msgstr "Skriv inn søkjeteksten i tekstfeltet <emph>Søk etter</emph>."
#: finding.xhp
msgctxt ""
@@ -5350,7 +5350,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "Select <item type=\"literal\">Business Correspondence</item> in the left list, and then <item type=\"literal\">\"Modern\" business letter</item> in the right list. Click <emph>OK</emph> to close the Templates dialog, and click <emph>Next</emph> in the wizard."
-msgstr ""
+msgstr "Vel <item type=\"literal\">Forretningskorrespondanse</item> i den venstre lista og <item type=\"literal\">Moderne brev</item> i den høgre. Trykk <emph>OK </emph> for å lukka dialogvindauget «Malar» og trykk på <emph>Neste</emph> i vegvisaren."
#: form_letters_main.xhp
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_id3148949\n"
"help.text"
msgid "<image id=\"img_id3148959\" src=\"sw/res/sc20246.png\" width=\"0.473cm\" height=\"0.473cm\"><alt id=\"alt_id3148959\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148959\" src=\"sw/res/sc20246.png\" width=\"0.473cm\" height=\"0.473cm\"><alt id=\"alt_id3148959\">Ikon</alt></image>"
#: globaldoc_howtos.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Før du kan setja inn kapittelinformasjon i ein topp- eller botntekst, må du velja disposisjonsnummerering for avsnittsstilen du vil bruka kapitteltitlar på."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Vel <emph>Verktøy → Disposisjonsnummerering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>register; lage oppføringar i</bookmark_value><bookmark_value>innhaldslister; lage oppføringar i</bookmark_value><bookmark_value>oppføringar; lage i register og innhaldslister</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Vel <emph>Set inn → Register/innhaldsliste → Stikkordmarkering</emph> og gjer slik:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Vel <emph>Verktøy → Disposisjonsnummerering</emph> og trykk på fana <emph>Nummerering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Viss du vil bruka ein annan avsnittsstil som ein stil i innhaldslista, kan du velja avkryssingsboksen <item type=\"menuitem\">Tilleggsstilar</item> i området <item type=\"menuitem\">Opprett frå</item> og så trykkja på <item type=\"menuitem\">Tildel stilar</item>. I dialogvindauget <item type=\"menuitem\">Tildel stilar</item> må du trykkja på ein av stilane i lista og deretter på knappen <item type=\"menuitem\">>></item> eller <item type=\"menuitem\"><<</item> for å setja disposisjonsnivået."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Viss du vil bruka ein annan avsnittsstil som ei oppføring i innhaldslista, merk av i avkryssingsboksen <item type=\"menuitem\">Tilleggsstilar</item> og trykk på knappen <item type=\"menuitem\">Bruk stilar</item> ved sida av boksen. I dialogvindauget som kjem fram vel du avsnittsstilen du vil bruka og trykkjer på knappen <item type=\"menuitem\">>></item> eller <item type=\"menuitem\"><<</item> for å velja disposisjonsnivået for avsnittsstilen."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>nummerering; fjerna/avbryta</bookmark_value><bookmark_value>punktlister; avbryta</bookmark_value><bookmark_value>lister;fjerna/avbryta nummerering</bookmark_value><bookmark_value>sletta;tal i lister</bookmark_value><bookmark_value>avbryta nummererte lister</bookmark_value><bookmark_value>endra;starttal i lister</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Viss du ønskjer nummererte overskrifter, bruk menyen <emph>Verktøy → Disposisjonsnummerering</emph> for å kopla ei nummerering til ein avsnittsstil. Ikkje bruk knappen «Nummerering» på verktøylinja «Formatering»."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -11214,7 +11214,7 @@ msgctxt ""
"bm_id3150620\n"
"help.text"
msgid "<bookmark_value>indexes;unprotecting</bookmark_value> <bookmark_value>tables of contents;unprotecting</bookmark_value> <bookmark_value>tables;protecting/unprotecting cells</bookmark_value> <bookmark_value>sections;protecting/unprotecting</bookmark_value> <bookmark_value>unprotecting tables of contents and indexes</bookmark_value> <bookmark_value>protecting;tables and sections</bookmark_value> <bookmark_value>cells;protecting/unprotecting</bookmark_value> <bookmark_value>document;protection from changes</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>register;fjern vern</bookmark_value><bookmark_value>innhaldslister;fjerna vern</bookmark_value><bookmark_value>tabellar;vern/fjerna vern av celler</bookmark_value><bookmark_value>bolkar;verna/fjerna vern</bookmark_value><bookmark_value>fjerna vern i innhaldslister og register</bookmark_value><bookmark_value>verna;tabellar og bolkar</bookmark_value><bookmark_value>celler;verna/fjerna</bookmark_value> <bookmark_value>dokument;verna mot endring</bookmark_value>"
#: protection.xhp
msgctxt ""
@@ -11222,7 +11222,7 @@ msgctxt ""
"hd_id6007263\n"
"help.text"
msgid "<variable id=\"protection\"><link href=\"text/swriter/guide/protection.xhp\" name=\"Protecting Content in %PRODUCTNAME Writer\">Protecting Contents in <item type=\"productname\">%PRODUCTNAME Writer</item></link></variable>"
-msgstr ""
+msgstr "<variable id=\"protection\"><link href=\"text/swriter/guide/protection.xhp\" name=\"Protecting Content in %PRODUCTNAME Writer\">Verna innhald i <item type=\"productname\">%PRODUCTNAME Writer</item></link> </variable>"
#: protection.xhp
msgctxt ""
@@ -11246,7 +11246,7 @@ msgctxt ""
"par_id3150592\n"
"help.text"
msgid "Any section of a <item type=\"productname\">%PRODUCTNAME</item> Writer text document can be protected against changes, and with an optional password."
-msgstr ""
+msgstr "Alle bolkar i eit tekstdokument i <item type=\"productname\">%PRODUCTNAME</item> Writer 
kan vernast mot endringar med eit valfritt passord."
#: protection.xhp
msgctxt ""
@@ -11254,7 +11254,7 @@ msgctxt ""
"par_id4545426\n"
"help.text"
msgid "<variable id=\"protwarn\">Protection is not intended to be an information security protection, it is a switch to prevent accidental changes.</variable>"
-msgstr ""
+msgstr "<variable id=\"protwarn\">Vernet er ikkje meint å vera eit tryggingsvern av innhaldet, men som eit vern mot uønskte endringar.</variable>"
#: protection.xhp
msgctxt ""
@@ -11262,7 +11262,7 @@ msgctxt ""
"hd_id1811201610293\n"
"help.text"
msgid "<variable id=\"turnon\">Turning on protection</variable>"
-msgstr ""
+msgstr "<variable id=\"turnon\">Slå på vern</variable>"
#: protection.xhp
msgctxt ""
@@ -11270,7 +11270,7 @@ msgctxt ""
"par_id1811201645676\n"
"help.text"
msgid "Information to protect must be in a section. To create or select a section:"
-msgstr ""
+msgstr "Informasjonen som skal vernast må vera i ein bolk. Slik lagar du eller vel ein bolk:"
#: protection.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id181120161920589\n"
"help.text"
msgid "If the section does not exist: Select the text, then choose menu <item type=\"menuitem\">Insert - Section...</item> ."
-msgstr ""
+msgstr "Dersom boølken ikkje finst, merk teksten ov vel menyen <item type=\"menuitem\">Set inn → Bolkar …</item>."
#: protection.xhp
msgctxt ""
@@ -11286,7 +11286,7 @@ msgctxt ""
"par_id181120164739204\n"
"help.text"
msgid "If the section already exists: <variable id=\"gotosection\">Choose menu <item type=\"menuitem\">Format - Sections...</item> and select the section in the list <emph>Section</emph>, or right-click on the section in the Navigator and choose <item type=\"menuitem\">Edit...</item>.</variable>"
-msgstr ""
+msgstr "Dersom det alt er ein bolk, <variable id=\"gotosection\">Vel <item type=\"menuitem\">Format → Bolkar …</item> og vel bolken i lista <emph>Bolk</emph> eller høgreklikk på bolken i dokumentstrukturen og vel <item type=\"menuitem\">Rediger …</item>.</variable> "
#: protection.xhp
msgctxt ""
@@ -11294,7 +11294,7 @@ msgctxt ""
"par_id1811201645678\n"
"help.text"
msgid "To enable protection"
-msgstr ""
+msgstr "Slå på vern"
#: protection.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id181120164720479\n"
"help.text"
msgid "If you want to protect the contents without a password, choose the <emph>Protect</emph> check box under the <emph>Write protection</emph>."
-msgstr ""
+msgstr "Dersom du ønskjer å verna innhaldet utan passord, merk av for <emph>Vern</emph> i <emph>Skrivevern</emph>."
#: protection.xhp
msgctxt ""
@@ -11310,7 +11310,7 @@ msgctxt ""
"par_id181120164720412\n"
"help.text"
msgid "If you want the protection with a password, choose <emph>Protect</emph> and <emph>With password</emph> check boxes and click on the <emph>Password…</emph> button. Enter and confirm a password of at least five characters."
-msgstr ""
+msgstr "Dersom du vil ha vern med passord, vel <emph>Vern</emph> og <emph>Med passord</emph> i avkryssningsboksen. Trykk på knappen <emph>Passord …</emph>. Skriv inn eit passord på minst fem teikn og bekreft passordet."
#: protection.xhp
msgctxt ""
@@ -11326,7 +11326,7 @@ msgctxt ""
"par_id18112016456780\n"
"help.text"
msgid "If the protection has no a password, and you want to give it, choose the <emph>With password</emph> checkbox and press the <emph>Password...</emph> button, enter and confirm the password of at least five characters."
-msgstr ""
+msgstr "Dersom du vil endra vernet frå vern utan passord til vern med passord, vel <emph>Med passord</emph> i avkryssingsboksen og trykk på knappen <emph>Passord …</emph>. Skriv inn eit passord på minst fem teikn og bekreft passordet."
#: protection.xhp
msgctxt ""
@@ -11334,7 +11334,7 @@ msgctxt ""
"par_id18112016234567\n"
"help.text"
msgid "If the protection has a password, and you want only to clear it, uncheck the <emph>With password</emph> under the <emph>Write protection</emph> and enter the correct password."
-msgstr ""
+msgstr "Dersom vernet er med passord og du berre vil fjerna dette, fjern merkinga i <emph>Med passord</emph> i <emph>Skrivevern</emph> og skriv inn det korrekte passordet."
#: protection.xhp
msgctxt ""
@@ -11342,7 +11342,7 @@ msgctxt ""
"par_id18112016234566\n"
"help.text"
msgid "If the protection has a password, and you want only to change it, click to the <emph>Password</emph> button in the <emph>Write protection</emph>, enter the correct password twice."
-msgstr ""
+msgstr "Dersom vernet er med passord og du berre vil endra dette, trykk på knappen <emph>Passord …</emph> i <emph>Skrivevern</emph> og skriv inn det korrekte passordet to gonger."
#: protection.xhp
msgctxt ""
@@ -11350,7 +11350,7 @@ msgctxt ""
"hd_id1811201610295\n"
"help.text"
msgid "<variable id=\"turnoff\">Turning off protection</variable>"
-msgstr ""
+msgstr "<variable id=\"turnoff\">Slå av vernet</variable>"
#: protection.xhp
msgctxt ""
@@ -11390,7 +11390,7 @@ msgctxt ""
"par_id3145643\n"
"help.text"
msgid "For one or several cells, place the cursor in a cell or select needed several cells. Choose the <item type=\"menuitem\">Table - Protect Cells</item> in menu bar."
-msgstr ""
+msgstr "For ei eller fleire celler, plasser markøren i ei celle eller merk fleire celler. Vel <item type=\"menuitem\">Tabell → Vern celler</item> i menyen."
#: protection.xhp
msgctxt ""
@@ -11398,7 +11398,7 @@ msgctxt ""
"par_id1911201610283\n"
"help.text"
msgid "For whole table, select the table, and choose the <item type=\"menuitem\">Table - Protect Cells</item> in menu bar."
-msgstr ""
+msgstr "For heile tabellen, merk tabellen og vel <item type=\"menuitem\">Tabell → Vern celler</item> i menyen."
#: protection.xhp
msgctxt ""
@@ -11406,7 +11406,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "<variable id=\"firstof\">If necessary, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item> and select <emph>Enable cursor</emph> under the <emph>Protected Areas</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"firstof\">Om det er bødvendig, vel <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME → Innstillingar</item></caseinline><defaultinline><item type=\"menuitem\">Verktøy → Innstillingar</item></defaultinline></switchinline><item type=\"menuitem\"> → %PRODUCTNAME Writer → Formateringsstøtte</item> og kryss av for <emph>Slå på markør</emph> i feltet <emph>Verna område</emph>.</variable>"
#: protection.xhp
msgctxt ""
@@ -11414,7 +11414,7 @@ msgctxt ""
"par_id1711201619364829\n"
"help.text"
msgid "Place the cursor in the cell or in the selected cells and choose the <item type=\"menuitem\">Table - Unprotect Cells</item> in menu bar."
-msgstr ""
+msgstr "Set markøren i cella eller celleområdet og vel <item type=\"menuitem\">Tabell → Opphev cellevern</item>."
#: protection.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3151189\n"
"help.text"
msgid "For whole table, right-click on the table in the Navigator, and choose <emph>Table - Unprotect</emph> in the context menu or select the whole table and choose <item type=\"menuitem\">Tools - Unprotect Cells</item> in menu bar."
-msgstr ""
+msgstr "For heile tabellen, høgreklikk på tabellen i dokumenstrukturvindauget og vel <emph>Tabell → Fjern vern</emph> i sprettoppmenyen eller merk heile tabellen og vel <item type=\"menuitem\">Verktøy → Fjern cellevern</item>."
#: protection.xhp
msgctxt ""
@@ -11430,7 +11430,7 @@ msgctxt ""
"hd_id3149259\n"
"help.text"
msgid "Contents Protection in Tables of Contents and Indexes"
-msgstr ""
+msgstr "Vern av innhaldet i innhaldslister og indeksar"
#: protection.xhp
msgctxt ""
@@ -11438,7 +11438,7 @@ msgctxt ""
"par_id3153966\n"
"help.text"
msgid "Tables of contents and indexes created in <item type=\"productname\">%PRODUCTNAME</item> Writer, are automatically protected against accidental changes."
-msgstr ""
+msgstr "Innhaldslister og register som er oppretta i eit <item type=\"productname\">%PRODUCTNAME</item> Writer-dokument er automatisk verna mot uheldige endringar."
#: protection.xhp
msgctxt ""
@@ -11446,7 +11446,7 @@ msgctxt ""
"par_id3159088\n"
"help.text"
msgid "Right-click in the index or table of contents. Choose <item type=\"menuitem\">Edit Index...</item> in the context menu. Choose <emph>Protected against manual changes</emph> on the <emph>Type</emph> tab."
-msgstr ""
+msgstr "Høgreklikk i indeks/innehaldslista. Gå til <item type=\"menuitem\">Rediger indeks...</item> i sprettoppmenyen. Vel <emph>Vern mot manuelle endringar</emph> i fana <emph>Type</emph>."
#: protection.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id181120162840123\n"
"help.text"
msgid "Right-click on the index or table of contents in the Navigator and choose <emph>Index - Read-only</emph> item."
-msgstr ""
+msgstr "Høgreklikk i indeks/innhaldslista i dokumentstukturvindauget og vel <emph>Indeks → Skriveverna</emph>"
#: protection.xhp
msgctxt ""
@@ -11462,7 +11462,7 @@ msgctxt ""
"par_id3152968\n"
"help.text"
msgid "Right-click in the index or table of contents. Choose <item type=\"menuitem\">Edit Index...</item> in the context menu. Uncheck <emph>Protected against manual changes</emph> on the <emph>Type</emph> tab."
-msgstr ""
+msgstr "Høgreklikk i indeks/innehaldslista. Gå til <item type=\"menuitem\">Rediger indeks...</item> i sprettoppmenyen. Fjern avkryssinga i <emph>Vern mot manuelle endringar</emph> i fana <emph>Type</emph>."
#: protection.xhp
msgctxt ""
@@ -11470,7 +11470,7 @@ msgctxt ""
"par_id3152774\n"
"help.text"
msgid "Right-click in the index or table of contents in the Navigator and uncheck <emph>Index - Read-only</emph>."
-msgstr ""
+msgstr "Høgreklikk i indeks/innhaldslista i dokumentstukturvindauget og fjern merkinga for <emph>Indeks → Skriveverna</emph>."
#: protection.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id31544811\n"
"help.text"
msgid "You can protect the contents of <item type=\"productname\">%PRODUCTNAME</item> Writer document from changes, with one of the following file formats: .doc, .docx, .odt, .ott."
-msgstr ""
+msgstr "Du kan verna innhaldet i eit <item type=\"productname\">%PRODUCTNAME</item> Writer-dokument mot endringar viss det er i eit av desse filformata: .doc, .docx, .odt, .ott."
#: protection.xhp
msgctxt ""
@@ -11494,7 +11494,7 @@ msgctxt ""
"par_id18112016812973\n"
"help.text"
msgid "To enable the protection of the whole document, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></emph></caseinline><defaultinline><emph><item type=\"menuitem\">Tools - Options</item></emph></defaultinline></switchinline><emph><item type=\"menuitem\"> - %PRODUCTNAME Writer - Compatibility</item></emph> and choose <emph>Protect form</emph>. To disable protection, uncheck it."
-msgstr ""
+msgstr "For å slå på vern for heile dokumentet, gå til <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph><item type=\"menuitem\">%PRODUCTNAME → Innstillingar</item></emph></caseinline><defaultinline><emph><item type=\"menuitem\">Verktøy → Innstillingar</item></emph></defaultinline></switchinline><emph><item type=\"menuitem\"> → %PRODUCTNAME Writer → Kompatibilitet</item></emph> og merk av for <emph>Vern skjemaet</emph>. Du kan slå av vernet ved å fjerna avkryssinga."
#: protection.xhp
msgctxt ""
@@ -13126,7 +13126,7 @@ msgctxt ""
"par_id0525200902184476\n"
"help.text"
msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">extensions web page</link>."
-msgstr ""
+msgstr "For å kunna kontrollera staving og grammatikk i ein tekst, må dei tilhøyrande ordbøkene vera installerte. For mange språk finst det tre ulike ordbøker: ei for stavekontroll, ei for orddelingsreglar og ei synonymordbok. Kvar ordbok dekkjer berre eitt språk. Grammatikkontroll kan lastast ned og installerast som utviding. Sjå nettsida for <link href=\"https://extensions.libreoffice.org/extension-center?getCategories=Dictionary\">utvidingar</link>."
#: spellcheck_dialog.xhp
msgctxt ""
@@ -16574,7 +16574,7 @@ msgctxt ""
"par_id3145113\n"
"help.text"
msgid "To look up the word in a different language, click the Language button, and select one of the installed thesaurus languages. A thesaurus library may not be available for all installed languages. You can install languages with a thesaurus library from the <link href=\"https://extensions.libreoffice.org/\">Extensions</link> web page."
-msgstr ""
+msgstr "For å slå opp eit ord i eit anna språk, klikk på knappen «Språk» og vel eitt av språka som har synonymordliste installert. Ikkje alle språka har ei slik ordbok. Du kan installera språk med synonymordliste frå nettsida <link href=\"https://extensions.libreoffice.org/\">Extensions</link>."
#: using_thesaurus.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/swriter/librelogo.po b/source/nn/helpcontent2/source/text/swriter/librelogo.po
index ee421d270c3..e4f7a04d07e 100644
--- a/source/nn/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/nn/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-07 21:39+0200\n"
-"PO-Revision-Date: 2016-06-26 12:24+0000\n"
+"PO-Revision-Date: 2017-06-13 17:02+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466943841.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497373371.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_230\n"
"help.text"
msgid "The LibreLogo toolbar (<item type=\"menuitem\">View - Toolbars - Logo</item>) contains turtle moving, program start, stop, home, clear screen, program editor/syntax highlighting/translating icons and an input bar (command line)."
-msgstr ""
+msgstr "Verktøylinja for LibreLogo (<item type=\"menuitem\">Vis → Verktøylinjer → Logo</item>) inneheld knappar for å flytte skjelpadda, starta og stoppa programmet, heim, tøm skjermen, redigering/utheving/omsetjing og ei innskrivingslinje (kommandolinje)."
#: LibreLogo.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_345\n"
"help.text"
msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (<item type=\"menuitem\">Tools - Options - Language Settings - Languages - Western</item>) and click on this icon to translate the Logo program to the selected language."
-msgstr ""
+msgstr "Knappen «tryllestaven» opnar for eit tosidig oppsett for programredigering, utvidar og omformar dei forkorta Logo-kommandoane til store bokstavar. Byt språk for dokumentet (<item type=\"menuitem\">Verktøy → Innstillingar → Språkinnstillingar → Språk → Vestleg</item>) og klikk på denne knappen for å omsetja Logo-programmet til det valde språket."
#: LibreLogo.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_1060\n"
"help.text"
msgid "HOME ; reset initial turtle position<br/>"
-msgstr ""
+msgstr "HEIM ; Set skjelpadda i utgangsposisjonen<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_1590\n"
"help.text"
msgid "TO tree location<br/> PENUP POSITION location HEADING 0 PENDOWN<br/> PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape<br/> END<br/> <br/> PICTURE [ tree [230, 400] tree [300, 400] ] ; grouped shapes in a grouped shape<br/>"
-msgstr ""
+msgstr "TIL tre stad<br/> PENN OPP PLASSERING stad RETNING 0 PENN NED<br/> BILETE [ FOROVER 100 SIRKEL 100 ] ; tre-liknande gruppert form<br/> SLUTT<br/> <br/> BILETE [ tre [230, 400] tre [300, 400] ] ; gruppert form i gruppert form<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_1630\n"
"help.text"
msgid "Use PICTURE to keep the consistency of positions and line shapes at the left border of Writer:"
-msgstr ""
+msgstr "Bruk BILETE for å plassera figurar i høve til den venstre kanten av Write-dokumentet:"
#: LibreLogo.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_1940\n"
"help.text"
msgid "TO triangle<br/> REPEAT 2 [ FORWARD 100 RIGHT 120 ] FILL<br/> END<br/> <br/> REPEAT 10 [ triangle PENUP POSITION ANY PENDOWN ]<br/>"
-msgstr ""
+msgstr "TIL triangel<br/> GJENTA 2 [ FOROVER 100 HØGRE 120 ] FYLL<br/> SLUTT<br/> <br/> GJENTA 10 [ triangel PENN OPP PLASSERING ALLE PENN NED ]<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_2630\n"
"help.text"
msgid "IF SEARCH (“\\w”, \"word\") [ PRINT “Letter in the word.” ]<br/>"
-msgstr ""
+msgstr "VISS SØK (“o”, ord) [ PRINT “Bokstaven finst i ordet.” ]<br/>"
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 10b07be13d3..9b678789837 100644
--- a/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-02-16 20:21+0000\n"
+"PO-Revision-Date: 2017-06-12 10:24+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487276472.000000\n"
+"X-POOTLE-MTIME: 1497263069.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"OOO_ACTIONTEXT_43\n"
"LngText.text"
msgid "Updating component registration"
-msgstr "Oppdaterer komponentregistrering"
+msgstr "Oppdaterer komponentregistreringa"
#: ActionTe.ulf
msgctxt ""
diff --git a/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
index 06741347703..b6ecca9f393 100644
--- a/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nn/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-20 11:18+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-14 18:46+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495279109.000000\n"
+"X-POOTLE-MTIME: 1497466007.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Vel tema"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Set inn …"
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Hovudutforming for lysbilete"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "~Notat"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "~Lysbiletpanel"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -17161,7 +17278,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Capitalize Every Word"
-msgstr "~Stor forbokstav på kvart ord"
+msgstr "Stor forbokstav på ~kvart ord"
#: GenericCommands.xcu
msgctxt ""
@@ -17170,7 +17287,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~tOGGLE cASE"
-msgstr "~Slå bokstavstorleik av/på"
+msgstr "Slå ~bokstavstorleik av/på"
#: GenericCommands.xcu
msgctxt ""
@@ -21544,7 +21661,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Extrusion Depth"
-msgstr "Utdrivingsdjupn"
+msgstr "Ekstruderingsdjupn"
#: GenericCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "Verktøylinje ~utforming"
#: GenericCommands.xcu
msgctxt ""
@@ -23524,7 +23641,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "Rediger panel"
#: MathWindowState.xcu
msgctxt ""
@@ -23533,7 +23650,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "Vis panel"
#: MathWindowState.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Eigenskapar …"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objekt …"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Overskriftsrada vert brukt på alle sidene"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Punktliste"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Nummerert liste"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Liste med romartal"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nn/readlicense_oo/docs.po b/source/nn/readlicense_oo/docs.po
index 4ba8dbdee54..74befbd160f 100644
--- a/source/nn/readlicense_oo/docs.po
+++ b/source/nn/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-11-04 10:07+0000\n"
+"PO-Revision-Date: 2017-06-12 17:55+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1478254047.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497290125.000000\n"
#: readme.xrm
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"A13\n"
"readmeitem.text"
msgid "You can use this copy of ${PRODUCTNAME} free of charge because individual contributors and corporate sponsors have designed, developed, tested, translated, documented, supported, marketed, and helped in many other ways to make ${PRODUCTNAME} what it is today - the world's leading Open Source productivity software for home and office."
-msgstr "Denne kopien av ${PRODUCTNAME} kan brukast gratis fordi individuelle bidragsytarar og korporative sponsorar har laga, utvikla, testa, omsett, dokumentert, støtta, marknadsført og hjelpt til på mange andre måtar for å gjere ${PRODUCTNAME} til det er i dag - verdas leiande Open kjeldekode-produktivitetgruppevare for heim og kontor."
+msgstr "Denne kopien av ${PRODUCTNAME} kan brukast gratis fordi einskilde bidragsytarar og korporative sponsorar har laga, utvikla, testa, omsett, dokumentert, støtta, marknadsført og hjelpt til på mange andre måtar for å gjere ${PRODUCTNAME} til det er i dag - verdas leiande Open kjeldekode-produktivitetgruppevare for heim og kontor."
#: readme.xrm
msgctxt ""
diff --git a/source/nn/sc/source/ui/src.po b/source/nn/sc/source/ui/src.po
index c9b6de527e8..3d8eaa3e4d4 100644
--- a/source/nn/sc/source/ui/src.po
+++ b/source/nn/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-20 11:33+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495280038.000000\n"
#: globstr.src
@@ -2701,7 +2701,7 @@ msgstr "Området flytta frå #1 til #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Dette vil avslutta endring av opptaket.\n"
-"All informasjon om endringa vert sletta.\n"
-"\n"
-"Vil du avslutta endring av opptaket?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Nøsta tabellar er ikkje støtta."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Tekst i kolonnar"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/nn/scp2/source/ooo.po b/source/nn/scp2/source/ooo.po
index ed83d912272..303e657e6b2 100644
--- a/source/nn/scp2/source/ooo.po
+++ b/source/nn/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-02-23 19:58+0000\n"
+"PO-Revision-Date: 2017-06-13 19:04+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487879887.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497380657.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Oversorbisk"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Installerer oversorbisk brukargrensesnitt"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/nn/sd/source/ui/app.po b/source/nn/sd/source/ui/app.po
index f6686dca5c7..55003620f4d 100644
--- a/source/nn/sd/source/ui/app.po
+++ b/source/nn/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-25 19:39+0000\n"
+"PO-Revision-Date: 2017-06-13 19:04+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493149184.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497380691.000000\n"
#: res_bmp.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "Den lokale målmappa «%FILENAME» er ikkje tom. Nokre filer kan verta skrivne over. Vil du halda fram?"
#: toolbox.src
msgctxt ""
diff --git a/source/nn/sd/uiconfig/simpress/ui.po b/source/nn/sd/uiconfig/simpress/ui.po
index ff3e2e7d878..d20eb04522e 100644
--- a/source/nn/sd/uiconfig/simpress/ui.po
+++ b/source/nn/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-04-25 20:13+0000\n"
+"PO-Revision-Date: 2017-06-13 19:06+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: none\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493151227.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497380768.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "Musepeikaren som penn"
#: slidecontextmenu.ui
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Very Thin"
-msgstr ""
+msgstr "_Svært tynn"
#: slidecontextmenu.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "_Endra pennfarge …"
#: slidecontextmenu.ui
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "_Fjern alt blekk frå lysbiletet"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/nn/sfx2/source/view.po b/source/nn/sfx2/source/view.po
index 9a29a077139..c167bd65b0b 100644
--- a/source/nn/sfx2/source/view.po
+++ b/source/nn/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-25 20:20+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493151648.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Dette dokumentet har ein ugyldig signatur."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/nn/svtools/source/control.po b/source/nn/svtools/source/control.po
index cfad8c2d5a4..5a7194af173 100644
--- a/source/nn/svtools/source/control.po
+++ b/source/nn/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-18 12:53+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Svart kursiv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/nn/svtools/source/misc.po b/source/nn/svtools/source/misc.po
index 8a4e0d82f22..0bf01e667ef 100644
--- a/source/nn/svtools/source/misc.po
+++ b/source/nn/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-29 09:13+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/nn/svx/source/tbxctrls.po b/source/nn/svx/source/tbxctrls.po
index b4a6c9ae132..d3ff703867e 100644
--- a/source/nn/svx/source/tbxctrls.po
+++ b/source/nn/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-02-16 10:49+0000\n"
+"PO-Revision-Date: 2017-06-13 19:06+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487242161.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497380793.000000\n"
#: colrctrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_DEFAULT\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#: tbcontrl.src
msgctxt ""
diff --git a/source/nn/svx/source/toolbars.po b/source/nn/svx/source/toolbars.po
index 57e6f4700a8..8ea86157e2f 100644
--- a/source/nn/svx/source/toolbars.po
+++ b/source/nn/svx/source/toolbars.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2014-04-19 21:42+0000\n"
-"Last-Translator: Kolbjørn <kolbjoern@stuestoel.no>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-06-14 18:47+0000\n"
+"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1397943772.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497466034.000000\n"
#: extrusionbar.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH\n"
"string.text"
msgid "Change Extrusion Depth"
-msgstr "Endra utdrivingsdjupn"
+msgstr "Endra ekstruderingsdjupn"
#: extrusionbar.src
msgctxt ""
diff --git a/source/nn/svx/uiconfig/ui.po b/source/nn/svx/uiconfig/ui.po
index 65e9bac3a4e..645e2ad3b4b 100644
--- a/source/nn/svx/uiconfig/ui.po
+++ b/source/nn/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-20 11:23+0000\n"
+"PO-Revision-Date: 2017-06-15 19:42+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495279410.000000\n"
+"X-POOTLE-MTIME: 1497555766.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3395,7 +3395,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Extrusion Depth"
-msgstr "Utdrivingsdjupn"
+msgstr "Ekstruderingsdjupn"
#: extrustiondepthdialog.ui
msgctxt ""
diff --git a/source/nn/sw/source/core/undo.po b/source/nn/sw/source/core/undo.po
index 522311ccf4f..c90cd1b6431 100644
--- a/source/nn/sw/source/core/undo.po
+++ b/source/nn/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-23 10:12+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492942368.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "spalteskift"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Set inn $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Slett $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Eigenskapar endra"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabell endra"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil endra"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/nn/sw/source/uibase/docvw.po b/source/nn/sw/source/uibase/docvw.po
index 759249efe9b..e3b309ee864 100644
--- a/source/nn/sw/source/uibase/docvw.po
+++ b/source/nn/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:36+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Brukte avsnittsstilar"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/nn/sw/source/uibase/ribbar.po b/source/nn/sw/source/uibase/ribbar.po
index 1b2ae5e6731..d1aa71398c4 100644
--- a/source/nn/sw/source/uibase/ribbar.po
+++ b/source/nn/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-20 17:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formeltekst"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/nn/sw/source/uibase/uiview.po b/source/nn/sw/source/uibase/uiview.po
index a2d2c859cfe..1ac53807f91 100644
--- a/source/nn/sw/source/uibase/uiview.po
+++ b/source/nn/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:36+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Eksporter kjelde …"
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/nn/sw/uiconfig/swriter/ui.po b/source/nn/sw/uiconfig/swriter/ui.po
index 25d949fb64c..789c502678d 100644
--- a/source/nn/sw/uiconfig/swriter/ui.po
+++ b/source/nn/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-20 11:20+0000\n"
+"PO-Revision-Date: 2017-06-13 19:24+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: none\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495279245.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497381884.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Beskriving:"
#: frmaddpage.ui
msgctxt ""
@@ -7830,7 +7830,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sa_ve as individual documents"
-msgstr "Lagra som _individuelle dokument"
+msgstr "Lagra som _einskilde dokument"
#: mailmerge.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Rediger merknad …"
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Sortert etter"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Handling"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Forfattar"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Merknad"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Dokumentplassering"
#: mergeconnectdialog.ui
msgctxt ""
@@ -8820,7 +8820,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sa_ve as individual documents"
-msgstr "Lagra som _individuelle dokument"
+msgstr "Lagra som _einskilde dokument"
#: mmresultsavedialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Bruk rekkjefølgja for LibreOffice 4.3 (i det gjeldande dokumentet)."
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Brukarinnstillingar>"
#: optcompatpage.ui
msgctxt ""
@@ -19043,7 +19043,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Skrifttype"
#: watermarkdialog.ui
msgctxt ""
@@ -19052,7 +19052,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Vinkel"
#: watermarkdialog.ui
msgctxt ""
@@ -19061,7 +19061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Gjennomsikt"
#: watermarkdialog.ui
msgctxt ""
@@ -19070,7 +19070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Farge"
#: wordcount.ui
msgctxt ""
diff --git a/source/nn/wizards/source/formwizard.po b/source/nn/wizards/source/formwizard.po
index 886bbeb5fa9..07f605f0b55 100644
--- a/source/nn/wizards/source/formwizard.po
+++ b/source/nn/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2015-11-17 13:39+0000\n"
+"PO-Revision-Date: 2017-06-13 19:15+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447767553.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497381354.000000\n"
#: dbwizres.src
msgctxt ""
@@ -260,7 +260,7 @@ msgctxt ""
"RID_DB_COMMON_START + 8\n"
"string.text"
msgid "No database has been installed. At least one database is required before the wizard for forms can be started."
-msgstr ""
+msgstr "Det er ikkje installert noko database. Det må vera minst ein database for at vegvisaren for skjema kan opnast."
#: dbwizres.src
msgctxt ""
@@ -268,7 +268,7 @@ msgctxt ""
"RID_DB_COMMON_START + 9\n"
"string.text"
msgid "The database does not contain any tables."
-msgstr ""
+msgstr "Databasen inneheld ingen tabellar."
#: dbwizres.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"RID_DB_COMMON_START + 10\n"
"string.text"
msgid "This title already exists in the database. Please enter another name."
-msgstr ""
+msgstr "Denne tittelen finst frå før i databasen. Skriv inn eit anna namn."
#: dbwizres.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"RID_DB_COMMON_START + 11\n"
"string.text"
msgid "The title must not contain any spaces or special characters."
-msgstr ""
+msgstr "Tittelen må ikkje innehalda mellomrom eller spesialteikn."
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Kunne ikkje laga databasetenesta (com.sun.data.DatabaseEngine)."
#: dbwizres.src
msgctxt ""
@@ -300,7 +300,7 @@ msgctxt ""
"RID_DB_COMMON_START + 13\n"
"string.text"
msgid "The selected table or query could not be opened."
-msgstr ""
+msgstr "Fekk ikkje opna den valde tabellen eller spørjinga."
#: dbwizres.src
msgctxt ""
diff --git a/source/nn/xmlsecurity/uiconfig/ui.po b/source/nn/xmlsecurity/uiconfig/ui.po
index b62ee5421c0..1a6b4e61831 100644
--- a/source/nn/xmlsecurity/uiconfig/ui.po
+++ b/source/nn/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-20 14:15+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Fjern"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/nr/desktop/source/deployment/gui.po b/source/nr/desktop/source/deployment/gui.po
index 2d8801f5cad..0342aaa8a5c 100644
--- a/source/nr/desktop/source/deployment/gui.po
+++ b/source/nr/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 04:04+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467691488.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449858516.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -170,6 +170,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -181,6 +189,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po
index d9a758d9b2c..9b736b31709 100644
--- a/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nr/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 04:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -635,8 +635,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Khetha Imiqondo"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4150,6 +4150,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27432,15 +27549,6 @@ msgid "~Properties..."
msgstr "Izinto..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/nr/sc/source/ui/src.po b/source/nr/sc/source/ui/src.po
index b9430238ba5..67892b44a33 100644
--- a/source/nr/sc/source/ui/src.po
+++ b/source/nr/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 05:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2743,7 +2743,7 @@ msgstr "Ukwehluka kususwe ku #1 kwasiwa ku #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2911,7 +2911,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/nr/sfx2/source/view.po b/source/nr/sfx2/source/view.po
index 2722e5f9b9c..b9e7f8ba974 100644
--- a/source/nr/sfx2/source/view.po
+++ b/source/nr/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -249,6 +249,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/nr/svtools/source/control.po b/source/nr/svtools/source/control.po
index 100201b801e..6899c82a93b 100644
--- a/source/nr/svtools/source/control.po
+++ b/source/nr/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,6 +292,110 @@ msgstr "I-italiki enzima"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/nr/svtools/source/misc.po b/source/nr/svtools/source/misc.po
index 53849e8c8a2..26a3f72d62d 100644
--- a/source/nr/svtools/source/misc.po
+++ b/source/nr/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3206,9 +3206,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3935,6 +3935,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/nr/sw/source/core/undo.po b/source/nr/sw/source/core/undo.po
index f2e7af4deb4..1dbe9122705 100644
--- a/source/nr/sw/source/core/undo.po
+++ b/source/nr/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 01:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -896,46 +896,84 @@ msgid "column break"
msgstr "isihlukanisi-kholomu"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Faka njenga-"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Sula #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Okuphawuliweko kutjhugulukile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Ithebula itjhugulukile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Istayela sitjhugulukile"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/nr/sw/source/uibase/docvw.po b/source/nr/sw/source/uibase/docvw.po
index cd04091730a..c338ed49d1e 100644
--- a/source/nr/sw/source/uibase/docvw.po
+++ b/source/nr/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 09:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/nr/sw/source/uibase/ribbar.po b/source/nr/sw/source/uibase/ribbar.po
index 43865176311..fe50c262856 100644
--- a/source/nr/sw/source/uibase/ribbar.po
+++ b/source/nr/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 18:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/nr/sw/source/uibase/uiview.po b/source/nr/sw/source/uibase/uiview.po
index 2b874830e9b..12d516d3b97 100644
--- a/source/nr/sw/source/uibase/uiview.po
+++ b/source/nr/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 09:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/nr/xmlsecurity/uiconfig/ui.po b/source/nr/xmlsecurity/uiconfig/ui.po
index aac945235ed..237ae7e3d07 100644
--- a/source/nr/xmlsecurity/uiconfig/ui.po
+++ b/source/nr/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/nso/desktop/source/deployment/gui.po b/source/nso/desktop/source/deployment/gui.po
index b3cb874ca1a..71d95a04651 100644
--- a/source/nso/desktop/source/deployment/gui.po
+++ b/source/nso/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 04:09+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nso\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467691742.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449858544.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po
index 15f7e521724..31ec53daf8b 100644
--- a/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nso/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 04:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Kgetha dihlogo"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4094,6 +4094,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27057,15 +27174,6 @@ msgid "~Properties..."
msgstr "Diteng..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/nso/sc/source/ui/src.po b/source/nso/sc/source/ui/src.po
index 1dcf3e7d820..701861f0fb2 100644
--- a/source/nso/sc/source/ui/src.po
+++ b/source/nso/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 05:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2751,7 +2751,7 @@ msgstr "Tatelano e šuthišitšwe go tloga go #1 go ya go #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2920,7 +2920,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/nso/sfx2/source/view.po b/source/nso/sfx2/source/view.po
index f0f414a68fa..238926cb67f 100644
--- a/source/nso/sfx2/source/view.po
+++ b/source/nso/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/nso/svtools/source/control.po b/source/nso/svtools/source/control.po
index cbdc423a661..b59fd475911 100644
--- a/source/nso/svtools/source/control.po
+++ b/source/nso/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Moseka o moso"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/nso/svtools/source/misc.po b/source/nso/svtools/source/misc.po
index 9b3ed7b9584..5877c3a3aa5 100644
--- a/source/nso/svtools/source/misc.po
+++ b/source/nso/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3192,9 +3192,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3922,6 +3922,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/nso/sw/source/core/undo.po b/source/nso/sw/source/core/undo.po
index aa0cdeddacd..8f3e72608a7 100644
--- a/source/nso/sw/source/core/undo.po
+++ b/source/nso/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 06:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "kgaotšo ya kholomo"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Tsenya $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Phumola $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Dipharologantšho di fetogile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Lenaneo le fetotšwe"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Setaele se fetotšwe"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/nso/sw/source/uibase/docvw.po b/source/nso/sw/source/uibase/docvw.po
index 9b28804f86e..a4204c23085 100644
--- a/source/nso/sw/source/uibase/docvw.po
+++ b/source/nso/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 10:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/nso/sw/source/uibase/ribbar.po b/source/nso/sw/source/uibase/ribbar.po
index cbc9f0029a2..19e9709fdb1 100644
--- a/source/nso/sw/source/uibase/ribbar.po
+++ b/source/nso/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 18:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/nso/sw/source/uibase/uiview.po b/source/nso/sw/source/uibase/uiview.po
index 388e5a6d2a3..22ec4f4a3cb 100644
--- a/source/nso/sw/source/uibase/uiview.po
+++ b/source/nso/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 10:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/nso/xmlsecurity/uiconfig/ui.po b/source/nso/xmlsecurity/uiconfig/ui.po
index 4037cc40314..967c7fce06a 100644
--- a/source/nso/xmlsecurity/uiconfig/ui.po
+++ b/source/nso/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/oc/desktop/source/deployment/gui.po b/source/oc/desktop/source/deployment/gui.po
index 429ce75d8be..b488fa9d5fd 100644
--- a/source/oc/desktop/source/deployment/gui.po
+++ b/source/oc/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 04:14+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-20 06:58+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467692077.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1463727512.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po b/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po
index 185eb0eba73..fcbc4a373e5 100644
--- a/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/oc/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-22 15:43+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Seleccionar de tèmas"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Inserir..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Proprietats..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objècte..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/oc/sc/source/ui/src.po b/source/oc/sc/source/ui/src.po
index 600dc106b60..da7e155cabc 100644
--- a/source/oc/sc/source/ui/src.po
+++ b/source/oc/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-22 15:49+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Plaja desplaçada de #1 cap a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Las matrises imbricadas son pas presas en carga."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/oc/sfx2/source/view.po b/source/oc/sfx2/source/view.po
index 995bed4baf8..697388eb3a7 100644
--- a/source/oc/sfx2/source/view.po
+++ b/source/oc/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-20 16:06+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/oc/svtools/source/control.po b/source/oc/svtools/source/control.po
index 9166b735fad..54043e96bd1 100644
--- a/source/oc/svtools/source/control.po
+++ b/source/oc/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-06-20 10:12+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Negre Italic"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/oc/svtools/source/misc.po b/source/oc/svtools/source/misc.po
index 30fd55b89a9..0a93d51fb68 100644
--- a/source/oc/svtools/source/misc.po
+++ b/source/oc/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 05:22+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/oc/sw/source/core/undo.po b/source/oc/sw/source/core/undo.po
index ce0b84562e7..a61c1c06220 100644
--- a/source/oc/sw/source/core/undo.po
+++ b/source/oc/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-19 12:13+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "Saut de colomna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Inserir $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Suprimir $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributs cambiats"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tablèu modificat"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Estil cambiat"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/oc/sw/source/uibase/docvw.po b/source/oc/sw/source/uibase/docvw.po
index bed80d96370..ed289b548cb 100644
--- a/source/oc/sw/source/uibase/docvw.po
+++ b/source/oc/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-04-28 13:40+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Estils de paragraf aplicats"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/oc/sw/source/uibase/ribbar.po b/source/oc/sw/source/uibase/ribbar.po
index 9e0e399918f..881af09b2b7 100644
--- a/source/oc/sw/source/uibase/ribbar.po
+++ b/source/oc/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-24 08:20+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Tèxte de la formula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/oc/sw/source/uibase/uiview.po b/source/oc/sw/source/uibase/uiview.po
index b8b7b6d7269..dab6a4a7818 100644
--- a/source/oc/sw/source/uibase/uiview.po
+++ b/source/oc/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 21:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exportar la font..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/oc/xmlsecurity/uiconfig/ui.po b/source/oc/xmlsecurity/uiconfig/ui.po
index 004ff30862a..a0837afa30b 100644
--- a/source/oc/xmlsecurity/uiconfig/ui.po
+++ b/source/oc/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-06-20 10:18+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Suprimir"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/om/desktop/source/deployment/gui.po b/source/om/desktop/source/deployment/gui.po
index ad8e9420940..36c226e4ae4 100644
--- a/source/om/desktop/source/deployment/gui.po
+++ b/source/om/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 04:14+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: om\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467692042.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449859037.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/om/helpcontent2/source/text/sbasic/shared.po b/source/om/helpcontent2/source/text/sbasic/shared.po
index da8e5ba5877..39a73b2ddf4 100644
--- a/source/om/helpcontent2/source/text/sbasic/shared.po
+++ b/source/om/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-20 23:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -482,10 +482,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Dogoggora lakkaddoota </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33039,6 +33071,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Faankishiniin sa'aa darbee kun kan deebisu qaama akka durtiitti fayyade dha, yoo tajaajilli battalee XmultiServiceFactory irraati. Odeeffannoo dabalataaf <item type=\"literal\">UNO profeeshinii </item> boqonnaa <item type=\"literal\">Qajeelfama Dagaagsitootaaf </item>fuula <link href=\"http://api.openoffice.org\">api.openoffice.org</link> irra jiru ilaali."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/om/helpcontent2/source/text/shared/00.po b/source/om/helpcontent2/source/text/shared/00.po
index 3b5d09e5485..e7248cf774c 100644
--- a/source/om/helpcontent2/source/text/shared/00.po
+++ b/source/om/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9724,7 +9724,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9748,7 +9748,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/om/helpcontent2/source/text/shared/01.po b/source/om/helpcontent2/source/text/shared/01.po
index bfcc5148332..5d387572d09 100644
--- a/source/om/helpcontent2/source/text/shared/01.po
+++ b/source/om/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-23 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4804,8 +4804,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Haalata keewwataa kan madda galmee galmee xiqqoo keessaa adda fayyadamuun adda baasuu barbaaddu fili.</ahelp> Durtiidhaan galmee haaraan toorii irrantoo 1 hundaaf uumama."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40468,8 +40468,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Toorbarruulee galmeewwan Barreessa akka toorbarruulee PDFtti aleerguuf fila. Toorbarruuleen keeyyatoota toorii maraaf(Meeshaalee - Toorii lakkoofsaa kennuu) fi galfata qabeentaa maraaf kan galmee maddaa keessatti geessituu ramaddeef uumamanii dha.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/shared/optionen.po b/source/om/helpcontent2/source/text/shared/optionen.po
index 4efa33da1ca..d466dac02e1 100644
--- a/source/om/helpcontent2/source/text/shared/optionen.po
+++ b/source/om/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 16:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2276,7 +2276,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2284,7 +2284,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2300,7 +2308,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/om/helpcontent2/source/text/swriter.po b/source/om/helpcontent2/source/text/swriter.po
index a6dccb37230..31f0bd3ae43 100644
--- a/source/om/helpcontent2/source/text/swriter.po
+++ b/source/om/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 21:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1052,8 +1052,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Lakkaawwii Toorii</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/swriter/00.po b/source/om/helpcontent2/source/text/swriter/00.po
index 65e14579773..43751a8f486 100644
--- a/source/om/helpcontent2/source/text/swriter/00.po
+++ b/source/om/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 21:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2252,24 +2252,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>Meeshaalee - Lakkaawwii Toorii</emph> filadhu</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>Meeshaalee - Lakkaawwii Toorii - Lakkaawwii</emph>caancala jedhu filadhu</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>Meeshaalee - Lakkaawwii Sarara</emph>(dhangii HTML tiif miti) filadhu</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/swriter/01.po b/source/om/helpcontent2/source/text/swriter/01.po
index 9473a65ddf2..c0be4467419 100644
--- a/source/om/helpcontent2/source/text/swriter/01.po
+++ b/source/om/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 16:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1124,8 +1124,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Foddaa Naanna'aa keessatti matadureewwan sadarkaa olii qofaa mul'isuuf <emph>1 </emph> cuqaasitii, kana booda matadureewwan mara mul'isuuf, <emph>10</emph> cuqaasi.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5828,8 +5828,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Dirree boqonnaatiif yoo \"Gargareessaa malee lakkoofsa boqonnaa\" filattee, gargareessaawwan sana lakkoofsa boqonnaaf <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Meeshaalee - Lakkaawwii toorii</emph></link> keessatti ifteefamee hinagarsiifamu."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11212,8 +11212,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Matadureewwan boqonnaa, yoo jiratee ammoo lakkoofsa isaanii dabalatee, guutumaa-guuttuun saaga. Akkaataa mataduree tokkoof lakkaawwii boqonnaa ramaduudhaaf <emph> Meeshaalee - Lakkaawwii Toorii</emph> filadhu.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21340,16 +21340,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Lakkaawwii Toorii"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Lakkaawwii Toorii"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21364,24 +21364,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Lakkaawwiin toorii akkaataawwan keewwataatti walqabateera. Durtiin, \"Mataduree\" akkaataawwan keewwataa (1-10) sadarkaawwan lakkoofsa tooriitti (1-10) walitti dhufootti ramadameera. Yoo barbaaddee, akkaataawwan keewwataa adda addaa, sadarkaa lakkoofsa tooriitti ramaduu nidandeessa."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Matadureewwan lakkoofseefaman yoo barbaaddee, ajaja bafata <emph>Meeshaalee - Lakkaawwii Toorii</emph> akkaataa keewwata tokkotti lakkaawwii ramaduudhaaf fayyadami."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Agarsiissaa argii kan lakkoofsawwan toorii shooluudhaaf, <emph>Mul'annoo -</emph><emph>Gaaddiddeessaa Dirree</emph> filadhu."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21396,16 +21396,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Dhangii lakkoofsa toorii olkaa'a yk fe'a. Dhangiin lakkoofsa toorii olkaa'ame, galmeewwan barruu maraa irratti jiraata.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Qabduun <emph>Dhangi'i</emph> lakkaawwii tooriitiif qofa jirata. Akkaataawwan tarree lakkoofseefamanii yk raasaaseefamaniif, Akkaataawwan Lakkaawwii keewwatoota fooyyessi."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21436,8 +21436,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Qaaqa bakka ijaarsa ammaa sadarkaa toorii filatameetiif olkaa'uu dandeessu bana. Ijaarsa kana galmee kan biraa irraa fe'uu nidandeessa.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21492,8 +21492,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Sadarkaa toorii isa fooyyessuudhaaf barbaadduu cuqaasi, kana booda dirqalaawwan lakkaawwii sadarkaadhaaf ifteessi.</ahelp> dirqalaawwan lakkaawwii, akkaataa keewwata malee, sadarkaawwan maraatiif fayyadamuudhaaf, \"1-10\" cuqaasi."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21524,8 +21524,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Akkaataa keewwata isa sadarkaa toorii filatametti ramaduudhaaf barbaaddu fili.</ahelp> Yoo \"Homma\" cuqaaste, sadarkaan toorii filatamee, hinbeekamu."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25300,16 +25300,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Garee Teessoo Filadhu"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Garee Teessoo Filadhu"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25324,8 +25324,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Miseensa Teessoo"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25372,8 +25372,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Miseensa teessoo gara dirree jalatti harkisi"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/swriter/guide.po b/source/om/helpcontent2/source/text/swriter/guide.po
index b974c3fb21b..eb586200858 100644
--- a/source/om/helpcontent2/source/text/swriter/guide.po
+++ b/source/om/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 16:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -188,8 +188,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Matadureewwanii fi barruu hirkataa, naanna'aa fayyadamuudhaan, barruu galmee tokko keessaa olii fi gadii siqsuu nidandeessa. Akkasumas, sadarkaalee mataduree oleessuu fi gadeessuu nidandeessa. Halataa kana fayyadamuudhaaf, matadureewwan galmee kee keessaa, akkaataalee keewwataa-mataduree-durmurtaawaa tahan keessaa tokkoon dhangeessi. Mataduree tokkoof, akkaataa keewwataa maamiloo fayyadamuuf, <emph>Meeshaalee - Lakkaawwii Toorii</emph> fili, akkaataa isaa ammoo, sanduuqa <emph>Akkaataa Keewwataa </emph>keessaa filadhu, kana booda lakkoofsa tarree <emph>Sadarkaalee </emph>keessatti lama-cuqaasi."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2900,32 +2900,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Lakkaawwii Toorii"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>tooriiwwan;lakkaawwii</bookmark_value> <bookmark_value>haquu;lakkofsoota mataduree</bookmark_value> <bookmark_value>lakkaawwii boqonnaa</bookmark_value> <bookmark_value>matadureewwan; lakkaawwii/haalataalee keewwataa</bookmark_value> <bookmark_value>lakkaawwii;matadureewwan</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Lakkaawwii Toorii</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Akkaataa keewwataa maamileessuuf, sadarkaa mataduree ykn hamma sadarkaa keessaa fooyyessuu nidandeessa. Akkasumas, akkaataalee keewwataa matadureetiif, boqonnaa fi lakkaawwii kutaa ida'uu nidandeessa. Durtiin, akkaataan keewwata \"Mataduree 1\" sadarkaa toorii gubbaa irra ta'a."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2940,8 +2940,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">Meeshaalee - Lakkaawwii Toorii</item> Fili, kana booda caancala <item type=\"menuitem\">Lakkaawwii</item> cuqaasi."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2964,8 +2964,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Mataduree keewwataa irra lakkaawwii toori ofumaan haqu:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2996,8 +2996,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">Meeshaalee - Lakkaawwii Toorii</item> Fili, kana booda caancala <item type=\"menuitem\">Lakkaawwii</item> cuqaasi."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6108,8 +6108,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Odeeffannoo boqoonnaa osoo olaantoo ykn gadaantoo keessa hin galchiin, mata duree boqonnaaf akkaataalee keewwata fayyadamu barbaaddu, toorii dirqalaalee lakkaawwii jalqaba qindeessuu qabda."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6124,8 +6124,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>Meeshaalee - Toorii Lakkaawwii</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7124,8 +7124,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>kasoot; maalimoota qindeessuu</bookmark_value> <bookmark_value>qabiyyee gabatee; maalima qindeesuu</bookmark_value> <bookmark_value>maalimoota; kasoota keessatti/qabiyyee gabatee</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7156,8 +7156,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>Saagi - Kasaawwan fi Gabateewwan - Galchi</emph> filuun,kan armaan gadii keessaa tokko dalagi:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7212,8 +7212,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>Meeshaalee - Lakkaawwii Toori</emph>filuun caancala<emph>Lakkaawwii</emph> cuqaasi."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7836,8 +7836,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Yoo akkaataa keewwataa garagaraa akka galchii gabatee qabiiyyeewwaniitti fayyadamuu barbaadde, sanduuqa filannoo <item type=\"menuitem\">Akkaataalee Dabalataa</item> kan naannoo <item type=\"menuitem\">Uumi kanarraa</item> keessaa fili, sana booda qabdoo (<item type=\"menuitem\">...</item>) sanduuqa filannootti aanee jiru cuqaasi. Qaaqa <item type=\"menuitem\">Akkaataalee Ramadi</item> keessaa, akkaataa tarree keessa cuqaasi, sana booda moggaasa toorii kan akkaataa keewwataa qindeessuuf qabdoo <item type=\"menuitem\">>></item> ykn <item type=\"menuitem\"><<</item> cuqaasi."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8012,7 +8012,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9484,8 +9484,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>lakkaawwii; haquu/jeequu</bookmark_value><bookmark_value>tarreewwan kitaabee; jeequu</bookmark_value><bookmark_value>Tarreewwan;haquu/lakkaawwii jeequu</bookmark_value><bookmark_value>haquu;lakkoofsota tarree keessaa</bookmark_value><bookmark_value></bookmark_value><bookmark_value>jijjiiruu;lakkoofsota jalqabaa tarree keessaa</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9508,8 +9508,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Matadureewwan lakkofsi kennameef yoo barbaadde,<emph> Meeshaalee fayyadami. Haalata keeyyataaf lakkaawwii ramaduuf </emph> baafata ajaja lakkaawwii toori.Kamshaa dhangeessuurratti sajoo lakkaawwii hin fayyadamin."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/om/officecfg/registry/data/org/openoffice/Office/UI.po b/source/om/officecfg/registry/data/org/openoffice/Office/UI.po
index 2cbd8ab0380..80d7a9420b4 100644
--- a/source/om/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/om/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 05:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Dhamsawwan fili"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4093,6 +4093,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27053,15 +27170,6 @@ msgid "~Properties..."
msgstr "Amaloota..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/om/sc/source/ui/src.po b/source/om/sc/source/ui/src.po
index acff49fb63b..67bc6adde68 100644
--- a/source/om/sc/source/ui/src.po
+++ b/source/om/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 05:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2714,7 +2714,7 @@ msgstr "Hangiin #1 gara #2tti siiqfame"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2882,7 +2882,7 @@ msgstr "Waraantoonni walkeessoon hin deeggaraman."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/om/sfx2/source/view.po b/source/om/sfx2/source/view.po
index 9bbcd0f04c2..4be02cc1188 100644
--- a/source/om/sfx2/source/view.po
+++ b/source/om/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 10:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/om/svtools/source/control.po b/source/om/svtools/source/control.po
index cc901482d48..e598018a1fd 100644
--- a/source/om/svtools/source/control.po
+++ b/source/om/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "Mirgada Gurraacha"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/om/svtools/source/misc.po b/source/om/svtools/source/misc.po
index dfd1b394aad..c2a2d78361a 100644
--- a/source/om/svtools/source/misc.po
+++ b/source/om/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3187,9 +3187,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3917,6 +3917,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/om/sw/source/core/undo.po b/source/om/sw/source/core/undo.po
index 90d696c6cfe..52f75c23c9a 100644
--- a/source/om/sw/source/core/undo.po
+++ b/source/om/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 07:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "xumuura tarjaa"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Saagi $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Haqi $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Amali jijjiirameera"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Gabateen jijjiirameera"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Haalata jijjiiramaa"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/om/sw/source/uibase/docvw.po b/source/om/sw/source/uibase/docvw.po
index fad700a3ad6..5942afcaffc 100644
--- a/source/om/sw/source/uibase/docvw.po
+++ b/source/om/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/om/sw/source/uibase/ribbar.po b/source/om/sw/source/uibase/ribbar.po
index a8c4531bb3d..066f5a36fa1 100644
--- a/source/om/sw/source/uibase/ribbar.po
+++ b/source/om/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 21:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/om/sw/source/uibase/uiview.po b/source/om/sw/source/uibase/uiview.po
index 35e2f439d62..854c27b0b24 100644
--- a/source/om/sw/source/uibase/uiview.po
+++ b/source/om/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/om/xmlsecurity/uiconfig/ui.po b/source/om/xmlsecurity/uiconfig/ui.po
index 163553e1e19..ca3230adb57 100644
--- a/source/om/xmlsecurity/uiconfig/ui.po
+++ b/source/om/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/or/desktop/source/deployment/gui.po b/source/or/desktop/source/deployment/gui.po
index ed30e934c04..1233ccee14b 100644
--- a/source/or/desktop/source/deployment/gui.po
+++ b/source/or/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 04:24+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-09-04 07:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
"Language: or\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467692654.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1441353371.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/or/officecfg/registry/data/org/openoffice/Office/UI.po b/source/or/officecfg/registry/data/org/openoffice/Office/UI.po
index 8baf9dbb2df..d095f007d73 100644
--- a/source/or/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/or/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 05:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ବିଷଯଗୁଡିକ ବାଛ"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26995,15 +27112,6 @@ msgid "~Properties..."
msgstr "ଗୁଣଗୁଡିକ"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/or/sc/source/ui/src.po b/source/or/sc/source/ui/src.po
index 3bbb8cffa17..8657c8d09cf 100644
--- a/source/or/sc/source/ui/src.po
+++ b/source/or/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 05:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -2702,7 +2702,7 @@ msgstr " #1 ଠାରୁ #2 କୁ ପରିସର ଘୁଞ୍ଚାୟାଇ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2867,7 +2867,7 @@ msgstr "ସଂଲଗ୍ନ ବିନ୍ୟାସଗୁଡ଼ିକ ସମର୍
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/or/sfx2/source/view.po b/source/or/sfx2/source/view.po
index d22f7c0ae68..d468b42a8f4 100644
--- a/source/or/sfx2/source/view.po
+++ b/source/or/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/or/svtools/source/control.po b/source/or/svtools/source/control.po
index 8ddf59ed523..3026f74e0b7 100644
--- a/source/or/svtools/source/control.po
+++ b/source/or/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "କଳା ତେର୍ଚ୍ଛା"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/or/svtools/source/misc.po b/source/or/svtools/source/misc.po
index bd1021287ff..b928253548a 100644
--- a/source/or/svtools/source/misc.po
+++ b/source/or/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 22:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -3181,10 +3181,10 @@ msgstr "ବେକୱେଲ"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "କିତୁବା"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3912,6 +3912,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/or/sw/source/core/undo.po b/source/or/sw/source/core/undo.po
index 94bb9fc75a1..a52e7b5582c 100644
--- a/source/or/sw/source/core/undo.po
+++ b/source/or/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 07:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -892,42 +892,82 @@ msgstr "ସ୍ତମ୍ଭ ଭାଙ୍ଗ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 କୁ ଭର୍ତ୍ତି କରନ୍ତୁ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 କୁ ବିଲୋପ କରନ୍ତୁ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ଗୁଣଗୁଡିକ ପରିବର୍ତ୍ତିତ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ଟେବୁଲ ପରିବର୍ତ୍ତିତ "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ଶୈଳୀ ପରିବର୍ତ୍ତିତ "
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/or/sw/source/uibase/docvw.po b/source/or/sw/source/uibase/docvw.po
index dbedef3464e..3778d7d0e8c 100644
--- a/source/or/sw/source/uibase/docvw.po
+++ b/source/or/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 11:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/or/sw/source/uibase/ribbar.po b/source/or/sw/source/uibase/ribbar.po
index c4ec96df9e5..03d01fae1ea 100644
--- a/source/or/sw/source/uibase/ribbar.po
+++ b/source/or/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 21:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/or/sw/source/uibase/uiview.po b/source/or/sw/source/uibase/uiview.po
index dfc11737291..b74da8d4218 100644
--- a/source/or/sw/source/uibase/uiview.po
+++ b/source/or/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 11:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/or/xmlsecurity/uiconfig/ui.po b/source/or/xmlsecurity/uiconfig/ui.po
index a9efb86f2c9..19e1d1fc3eb 100644
--- a/source/or/xmlsecurity/uiconfig/ui.po
+++ b/source/or/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 22:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "ହଟାଅ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/pa-IN/desktop/source/deployment/gui.po b/source/pa-IN/desktop/source/deployment/gui.po
index 369ab802c66..71c75faa758 100644
--- a/source/pa-IN/desktop/source/deployment/gui.po
+++ b/source/pa-IN/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 04:52+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 18:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pa_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467694355.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449859975.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index fcdbddcecd4..a17ed019e54 100644
--- a/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pa-IN/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 06:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "ਥੀਮ ਚੁਣੋ"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26995,15 +27112,6 @@ msgid "~Properties..."
msgstr "ਵਿਸ਼ੇਸ਼ਤਾ..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/pa-IN/sc/source/ui/src.po b/source/pa-IN/sc/source/ui/src.po
index bb9573f33f9..e3a9843de10 100644
--- a/source/pa-IN/sc/source/ui/src.po
+++ b/source/pa-IN/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 06:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Punjabi/Panjabi <kde-i18n-doc@kde.org>\n"
@@ -2699,7 +2699,7 @@ msgstr "#1 ਤੋਂ #2 ਵੱਲ ਸੀਮਾ ਤਬਦੀਲ ਕੀਤਾ ਗ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2864,7 +2864,7 @@ msgstr "ਅੰਦਰੂਨੀ ਅਰੇ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/pa-IN/sfx2/source/view.po b/source/pa-IN/sfx2/source/view.po
index aacb009b5a0..d54e36254fd 100644
--- a/source/pa-IN/sfx2/source/view.po
+++ b/source/pa-IN/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/pa-IN/svtools/source/control.po b/source/pa-IN/svtools/source/control.po
index ad285b12f2f..530e721dfba 100644
--- a/source/pa-IN/svtools/source/control.po
+++ b/source/pa-IN/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "ਕਾਲੇ ਤਿਰਛੇ"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/pa-IN/svtools/source/misc.po b/source/pa-IN/svtools/source/misc.po
index 966c7d66711..5d2109d7351 100644
--- a/source/pa-IN/svtools/source/misc.po
+++ b/source/pa-IN/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-29 15:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "ਬਿਕਵੇਲ"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "ਕਿਟੂਬਾ"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pa-IN/sw/source/core/undo.po b/source/pa-IN/sw/source/core/undo.po
index 646c6fcbbf2..c299f9369bb 100644
--- a/source/pa-IN/sw/source/core/undo.po
+++ b/source/pa-IN/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 02:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "ਕਾਲਮ ਬਰੇਕ"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ਸ਼ਾਮਿਲ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 ਹਟਾਓ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ਗੁਣ ਬਦਲੇ ਗਏ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ਟੇਬਲ ਬਦਲਿਆ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ਸਟਾਈਲ ਬਦਲਿਆ"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/pa-IN/sw/source/uibase/docvw.po b/source/pa-IN/sw/source/uibase/docvw.po
index 88b5c016f9b..1d63ab5a08b 100644
--- a/source/pa-IN/sw/source/uibase/docvw.po
+++ b/source/pa-IN/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/pa-IN/sw/source/uibase/ribbar.po b/source/pa-IN/sw/source/uibase/ribbar.po
index bc88f129c2c..03288bc5ae7 100644
--- a/source/pa-IN/sw/source/uibase/ribbar.po
+++ b/source/pa-IN/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-11 21:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/pa-IN/sw/source/uibase/uiview.po b/source/pa-IN/sw/source/uibase/uiview.po
index 8e9982bf272..af201c0ca61 100644
--- a/source/pa-IN/sw/source/uibase/uiview.po
+++ b/source/pa-IN/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/pa-IN/xmlsecurity/uiconfig/ui.po b/source/pa-IN/xmlsecurity/uiconfig/ui.po
index 9e63a7631f4..4d134391cd5 100644
--- a/source/pa-IN/xmlsecurity/uiconfig/ui.po
+++ b/source/pa-IN/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 21:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/pl/desktop/source/deployment/gui.po b/source/pl/desktop/source/deployment/gui.po
index 00356eb0661..d001246bd8b 100644
--- a/source/pl/desktop/source/deployment/gui.po
+++ b/source/pl/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-25 19:01+0000\n"
-"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
+"Last-Translator: m4sk1n <m4sk1n@o2.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1464202879.000000\n"
#: dp_gui_dialog.src
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/pl/helpcontent2/source/text/sbasic/shared.po b/source/pl/helpcontent2/source/text/sbasic/shared.po
index fc5e5016788..c8943a83cae 100644
--- a/source/pl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/pl/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-05 17:42+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Kody błędów </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Ta funkcja zwraca domyślny kontekst składnika, który ma zostać użyty, w przypadku konkretyzacji usług za pośrednictwem XmultiServiceFactory. Więcej informacji można znaleźć w rozdziale <item type=\"literal\">Professional UNO</item> (profesjonalne UNO) podręcznika programisty <item type=\"literal\">Developer's Guide</item> w witrynie <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/pl/helpcontent2/source/text/shared/00.po b/source/pl/helpcontent2/source/text/shared/00.po
index 2e6a466ee8f..f045909d7fa 100644
--- a/source/pl/helpcontent2/source/text/shared/00.po
+++ b/source/pl/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-01 15:33+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/pl/helpcontent2/source/text/shared/01.po b/source/pl/helpcontent2/source/text/shared/01.po
index 6d4925606e9..1f58b9b8f6c 100644
--- a/source/pl/helpcontent2/source/text/shared/01.po
+++ b/source/pl/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-09 12:17+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Wybierz styl paragrafu lub poziom konspektu, który ma zostać użyty do rozdzielenia dokumentu źródłowego na dokumenty podrzędne.</ahelp> Domyślnym ustawieniem jest tworzenie nowego dokumentu dla każdego poziomu 1 konspektu."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Włącza eksportowanie zakładek dokumentów programu Writer jako zakładek PDF. Zakładki są tworzone dla wszystkich akapitów konspektu (Narzędzia – Numeracja konspektu) oraz dla wszystkich pozycji spisu treści, do których zostały przypisane hiperłącza w dokumencie źródłowym.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/shared/optionen.po b/source/pl/helpcontent2/source/text/shared/optionen.po
index 6681a1c03f0..d9d64f83a85 100644
--- a/source/pl/helpcontent2/source/text/shared/optionen.po
+++ b/source/pl/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-04-09 07:41+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/pl/helpcontent2/source/text/swriter.po b/source/pl/helpcontent2/source/text/swriter.po
index d8e71d9ec26..012ef62d911 100644
--- a/source/pl/helpcontent2/source/text/swriter.po
+++ b/source/pl/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-04-09 07:57+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Numeracja konspektu</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/swriter/00.po b/source/pl/helpcontent2/source/text/swriter/00.po
index cf035068459..25b3d6d4f4a 100644
--- a/source/pl/helpcontent2/source/text/swriter/00.po
+++ b/source/pl/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-03-12 08:54+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Wybierz <emph>Narzędzia - Numeracja konspektu</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Wybierz <emph>Narzędzia - Numeracja konspektu - zakładka Numeracja</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Wybierz polecenie <emph>Narzędzia - Numeracja wierszy</emph> (nie w przypadku formatu HTML) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/swriter/01.po b/source/pl/helpcontent2/source/text/swriter/01.po
index 4d6580485d8..c7f2c96e375 100644
--- a/source/pl/helpcontent2/source/text/swriter/01.po
+++ b/source/pl/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-03-12 21:13+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Kliknij <emph>1</emph>, aby wyświetlać w oknie Nawigatora tylko nagłówki najwyższego poziomu, lub <emph>10</emph>, aby wyświetlać wszystkie nagłówki.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Wybranie opcji \"Numer rozdziału bez separatora\" dla pola rozdziału oznacza, że separatory ustawione dla numeru rozdziału w menu <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Narzędzia – Numerowanie konspektu</emph></link> nie będą wyświetlane."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Wstawia numer rozdziału. Aby przypisać numerowanie rozdziałów do stylu nagłówka, wybierz opcję <emph> Narzędzia – Numeracja konspektu</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeracja konspektu"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeracja konspektu"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Numeracja konspektu jest powiązana ze stylami akapitów. Style akapitu \"Nagłówek\" (1-10) są domyślnie przypisane do odpowiednich poziomów konspektu (1-10). W razie potrzeby można przypisać poziomom konspektu inne style akapitu."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Aby uzyskać numerowane nagłówki, wybierz polecenie menu <emph>Narzędzia – Numeracja konspektu</emph>, aby przypisać numerację do stylu akapitu. Nie należy wybierać ikony Numeracja na pasku narzędzi Format."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Aby wyróżnić wyświetlane poziomy konspektów, należy wybrać <emph>Widok -</emph><emph>Cieniowanie pól</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Zapisuje lub ładuje format numeracji konspektu. Zapisany format numeracji konspektu jest dostępny dla wszystkich dokumentów tekstowych.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Przycisk <emph>Format</emph> jest dostępny tylko dla numeracji konspektu. W przypadku list numerowanych lub wypunktowanych należy zmodyfikować style listy akapitów."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Otwiera okno dialogowe, w którym można zapisać bieżące ustawienia zaznaczonego poziomu konspektu. Te ustawienia mogą być następnie załadowane w innym dokumencie.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Kliknij poziom konspektu do modyfikacji, a następnie określ opcje numeracji dla wybranego poziomu.</ahelp> Aby zastosować opcje numeracji dla wszystkich poziomów poza stylem akapitu, należy kliknąć opcję \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Określa styl akapitu, który ma zostać przypisany do wybranego poziomu konspektu.</ahelp> W przypadku kliknięcia opcji \"Brak\" wybrany poziom konspektu nie zostanie zdefiniowany."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nowy blok adresowy"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nowy blok adresowy"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementy adresu"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Przeciągnij element adresu do poniższego pola"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/swriter/guide.po b/source/pl/helpcontent2/source/text/swriter/guide.po
index a51aef0e227..39d77e7bb0a 100644
--- a/source/pl/helpcontent2/source/text/swriter/guide.po
+++ b/source/pl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-03-12 16:41+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Korzystając z Nawigatora, można przesuwać nagłówki i powiązany z nimi tekst w górę i w dół dokumentu. Nawigator pozwala także na podnoszenie i obniżanie poziomu nagłówków. Aby skorzystać z tej funkcji, należy sformatować nagłówki dokumentu za pomocą jednego ze wstępnie zdefiniowanych stylów akapitu nagłówka. Aby zastosować własny styl akapitu dla nagłówka, wybierz polecenie <emph>Narzędzia - Numeracja konspektu</emph>, wybierz styl w polu <emph>Styl akapitu</emph>, a następnie kliknij dwukrotnie liczbę na liście <emph>Poziom</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeracja konspektu"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>konspekty; numeracja</bookmark_value> <bookmark_value>usuwanie; numeracja nagłówków</bookmark_value> <bookmark_value>numeracja rozdziałów</bookmark_value> <bookmark_value>nagłówki; numeracja/style akapitów</bookmark_value> <bookmark_value>numeracja; nagłówki</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeracja konspektu\">Numeracja konspektu</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Hierarchię nagłówków można modyfikować, można także przypisać wybrany poziom hierarchii do własnego stylu nagłówka. Do stylów akapitów nagłówków można także dodać numerację rozdziałów i sekcji. Domyślnie styl akapitu \"Nagłówek 1\" znajduje się na najwyższym poziomie hierarchii konspektu."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Wybierz polecenie <item type=\"menuitem\">Narzędzia - Numeracja konspektu</item> i kliknij kartę <item type=\"menuitem\">Numeracja</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Usuwanie automatycznej numeracji konspektu z akapitu nagłówka"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Wybierz polecenie <item type=\"menuitem\">Narzędzia - Numeracja konspektu</item> i kliknij kartę <item type=\"menuitem\">Numeracja</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Przed wstawieniem informacji do główki lub stopki należy ustawić opcje numerowania konspektów w stylu akapitu stosowanym do tytułów rozdziałów."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Wybierz <emph>Narzędzia - Numeracja konspektu</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>indeksy; definiowanie wpisów</bookmark_value> <bookmark_value>spisy treści; definiowanie wpisów</bookmark_value> <bookmark_value>wpisy; definiowanie w indeksach/spisach treści</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Wybierz <emph>Wstaw - Spis treści i indeks - Wpis indeksu</emph> i wykonaj jedną z poniższych czynności:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Wybierz <emph>Narzędzia - Numeracja konspektu</emph> i kliknij zakładkę <emph>Numeracja</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Aby użyć innego stylu akapitu jako elementu spisu treści, zaznacz pole wyboru <item type=\"menuitem\">Dodatkowe style</item> w obszarze <item type=\"menuitem\">Utwórz z</item>, a następnie kliknij przycisk <item type=\"menuitem\">Przypisz style</item> obok pola zaznaczenia. W oknie dialogowym <item type=\"menuitem\">Przypisz style</item> kliknij styl na liście, a następnie kliknij przycisk <item type=\"menuitem\">>></item> lub <item type=\"menuitem\"><<</item>, aby zdefiniować poziom kontekstu dla stylu akapitu."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Aby użyć innego stylu akapitu jako elementu spisu treści, zaznacz pole wyboru <item type=\"menuitem\">Dodatkowe style</item>, a następnie kliknij przycisk <item type=\"menuitem\">Przypisz style</item> obok pola wyboru. Kliknij styl na liście, a następnie kliknij przycisk <item type=\"menuitem\">>></item> lub <item type=\"menuitem\"><<</item>, aby zdefiniować poziom kontekstu dla stylu akapitu."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numeracja; usuwanie lub przerwanie</bookmark_value> <bookmark_value>listy wypunktowane; przerywanie</bookmark_value> <bookmark_value>listy; usuwanie lub przerwanie numerowania</bookmark_value> <bookmark_value>usuwanie; numeracja list</bookmark_value> <bookmark_value>przerywanie list numerowanych</bookmark_value> <bookmark_value>zmiana; liczba początkowa numeracji listy</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Aby uzyskać numerowane nagłówki, wybierz polecenie menu <emph>Narzędzia – Numeracja konspektu</emph>, aby przypisać numerację do stylu akapitu. Nie należy wybierać ikony Numeracja na pasku narzędzi Format."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
index 0a7baf6c2ac..bb94da59158 100644
--- a/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pl/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-09 14:35+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Wybór motywów"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Wstaw..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Właściwości..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Obiekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/pl/sc/source/ui/src.po b/source/pl/sc/source/ui/src.po
index 21d48e90e39..11fbb33129d 100644
--- a/source/pl/sc/source/ui/src.po
+++ b/source/pl/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-09 12:13+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Zakres przeniesiony z #1 do #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Zagnieżdżone macierze nie są obsługiwane."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/pl/sfx2/source/view.po b/source/pl/sfx2/source/view.po
index 734b5aa18af..1701b69fc64 100644
--- a/source/pl/sfx2/source/view.po
+++ b/source/pl/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-22 19:55+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/pl/svtools/source/control.po b/source/pl/svtools/source/control.po
index 983a6f8c008..d82b192fccf 100644
--- a/source/pl/svtools/source/control.po
+++ b/source/pl/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-31 17:41+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Czarna kursywa"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/pl/svtools/source/misc.po b/source/pl/svtools/source/misc.po
index 17b2c49eba6..a4a9d97304b 100644
--- a/source/pl/svtools/source/misc.po
+++ b/source/pl/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-18 07:36+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pl/sw/source/core/undo.po b/source/pl/sw/source/core/undo.po
index 7f58efc8a2c..3c7490ba648 100644
--- a/source/pl/sw/source/core/undo.po
+++ b/source/pl/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-16 18:31+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "podział kolumny"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Wstaw $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Usuń $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atrybuty zostały zmienione"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabela została zmieniona"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Styl został zmieniony"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/pl/sw/source/uibase/docvw.po b/source/pl/sw/source/uibase/docvw.po
index fd9eafb3f95..c169d7ab0d5 100644
--- a/source/pl/sw/source/uibase/docvw.po
+++ b/source/pl/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 19:14+0000\n"
"Last-Translator: m4sk1n <m4sk1n@o2.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Zastosowane style akapitu"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/pl/sw/source/uibase/ribbar.po b/source/pl/sw/source/uibase/ribbar.po
index 9d2737c07bf..f9b86bba9be 100644
--- a/source/pl/sw/source/uibase/ribbar.po
+++ b/source/pl/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-02-19 07:07+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Tekst formuły"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/pl/sw/source/uibase/uiview.po b/source/pl/sw/source/uibase/uiview.po
index 41d889b17a9..bcdaa389ec9 100644
--- a/source/pl/sw/source/uibase/uiview.po
+++ b/source/pl/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-25 19:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Eksportuj tekst źródłowy..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/pl/xmlsecurity/uiconfig/ui.po b/source/pl/xmlsecurity/uiconfig/ui.po
index 0fa5447cfa1..826e46276a1 100644
--- a/source/pl/xmlsecurity/uiconfig/ui.po
+++ b/source/pl/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-18 07:48+0000\n"
"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Usuń"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/pt-BR/desktop/source/deployment/gui.po b/source/pt-BR/desktop/source/deployment/gui.po
index b22133b0356..739e32899c3 100644
--- a/source/pt-BR/desktop/source/deployment/gui.po
+++ b/source/pt-BR/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 06:04+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 19:18+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467698685.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497986300.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "A instalação de extensões está desativada. Consulte o administrador do sistema para mais informações."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "A remoção de extensões está desativada. Consulte o administrador do sistema para mais informações."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/pt-BR/helpcontent2/source/text/sbasic/shared.po b/source/pt-BR/helpcontent2/source/text/sbasic/shared.po
index 48008d40bcf..e5859216356 100644
--- a/source/pt-BR/helpcontent2/source/text/sbasic/shared.po
+++ b/source/pt-BR/helpcontent2/source/text/sbasic/shared.po
@@ -3,9 +3,9 @@ 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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-03 20:19+0000\n"
-"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-12 00:26+0000\n"
+"Last-Translator: tulio <tuliomac@gmail.com>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496521172.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497227210.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr "Esta função torna-se ativa pela instrução <item type=\"literal\">Opt
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Códigos de erro</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -30966,7 +30998,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the position of a string within another string, starting from the right side of the string."
-msgstr ""
+msgstr "Retorna a posição de uma cadeia de caracteres dentro de outra, começando pela direita."
#: 03120411.xhp
msgctxt ""
@@ -30974,7 +31006,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0."
-msgstr ""
+msgstr "A função InstrRev retorna a posição na qual a cadeia correspondente foi encontrada pela direita. Se a cadeia de caracteres não for encontrada, a função retornará 0."
#: 03120411.xhp
msgctxt ""
@@ -30982,7 +31014,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaxe:"
#: 03120411.xhp
msgctxt ""
@@ -30990,7 +31022,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
-msgstr ""
+msgstr "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
#: 03120411.xhp
msgctxt ""
@@ -30998,7 +31030,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valor de retorno:"
#: 03120411.xhp
msgctxt ""
@@ -31006,7 +31038,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "Long"
-msgstr ""
+msgstr "Long"
#: 03120411.xhp
msgctxt ""
@@ -31014,7 +31046,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parâmetros:"
#: 03120411.xhp
msgctxt ""
@@ -31022,7 +31054,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr ""
+msgstr "<emph>Text1:</emph> a expressão da cadeia de caracteres que deseja pesquisar."
#: 03120411.xhp
msgctxt ""
@@ -31030,7 +31062,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr ""
+msgstr "<emph>Text2:</emph> a expressão da cadeia de caracteres pela qual deseja procurar."
#: 03120411.xhp
msgctxt ""
@@ -31038,7 +31070,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
-msgstr ""
+msgstr "<emph>Start: </emph>Expressão numérica opcional que marca a posição <emph>da esquerda</emph> em uma cadeia de caracteres onde deve ter início a pesquisa na subcadeia especificada. Se omitir esse parâmetro, a pesquisa será iniciada no primeiro caractere da cadeia. O valor máximo permitido é 65535."
#: 03120411.xhp
msgctxt ""
@@ -31046,7 +31078,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be"
-msgstr ""
+msgstr "<emph>Compare:</emph> Uma expressão numérica opcional que define o tipo de comparação. O valor deste parâmetro pode ser"
#: 03120411.xhp
msgctxt ""
@@ -31054,7 +31086,7 @@ msgctxt ""
"par_id051920170326028042\n"
"help.text"
msgid "1: The default value of 1 specifies a text comparison that is not case-sensitive."
-msgstr ""
+msgstr "1: O valor padrão de 1 especifica que a comparação não depende da caixa."
#: 03120411.xhp
msgctxt ""
@@ -31062,7 +31094,7 @@ msgctxt ""
"par_id051920170326027721\n"
"help.text"
msgid "0: The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr ""
+msgstr "0: O valor 0 especifica que a comparação depende da caixa."
#: 03120411.xhp
msgctxt ""
@@ -31070,7 +31102,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr ""
+msgstr "Para evitar um erro em tempo de execução, não defina o parâmetro Compare quando o primeiro parâmetro de retorno tiver sido omitido."
#: 03120411.xhp
msgctxt ""
@@ -31078,7 +31110,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemplo:"
#: 03120411.xhp
msgctxt ""
@@ -31086,7 +31118,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "sInput = \"The book is on the table\""
-msgstr ""
+msgstr "sInput = \"The book is on the table\""
#: 03120411.xhp
msgctxt ""
@@ -31094,7 +31126,7 @@ msgctxt ""
"par_id3154125\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"the\",10,1) ' Retorna 1, a pesquisa não depende da caixa"
#: 03120411.xhp
msgctxt ""
@@ -31102,7 +31134,7 @@ msgctxt ""
"par_id051920170322141162\n"
"help.text"
msgid "iPos = Instr(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
-msgstr ""
+msgstr "iPos = Instr(sInput,\"the\",10,0) ' Retorna 0 a pesquisa depende da caixa"
#: 03120411.xhp
msgctxt ""
@@ -31110,7 +31142,7 @@ msgctxt ""
"par_id051920170316395065\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
#: 03120412.xhp
msgctxt ""
@@ -31118,7 +31150,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StrReverse Function [Runtime - VBA]"
-msgstr ""
+msgstr "Função StrReverse [Runtime - VBA]"
#: 03120412.xhp
msgctxt ""
@@ -31126,7 +31158,7 @@ msgctxt ""
"bm_id3155934\n"
"help.text"
msgid "<bookmark_value>StrReverse function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>função StrReverse</bookmark_value>"
#: 03120412.xhp
msgctxt ""
@@ -31134,7 +31166,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">StrReverse Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"InStrRev Function [Runtime]\">Função StrReverse [Runtime - VBA]</link>"
#: 03120412.xhp
msgctxt ""
@@ -31142,7 +31174,7 @@ msgctxt ""
"par_id3153990\n"
"help.text"
msgid "Returns the string with the character order reversed."
-msgstr ""
+msgstr "Retorna a cadeia de caracteres com a ordem dos caracteres invertida."
#: 03120412.xhp
msgctxt ""
@@ -31150,7 +31182,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaxe:"
#: 03120412.xhp
msgctxt ""
@@ -31158,7 +31190,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "StrReverse (Text1 As String)"
-msgstr ""
+msgstr "StrReverse (Text1 As String)"
#: 03120412.xhp
msgctxt ""
@@ -31166,7 +31198,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valor de retorno:"
#: 03120412.xhp
msgctxt ""
@@ -31174,7 +31206,7 @@ msgctxt ""
"par_id3149763\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "String"
#: 03120412.xhp
msgctxt ""
@@ -31182,7 +31214,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parâmetros:"
#: 03120412.xhp
msgctxt ""
@@ -31190,7 +31222,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<emph>Text1:</emph> The string expression that you want to reverse the character order."
-msgstr ""
+msgstr "<emph>Text1:</emph> a expressão da cadeia de caracteres que deseja inverter."
#: 03120412.xhp
msgctxt ""
@@ -31198,7 +31230,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemplo:"
#: 03130000.xhp
msgctxt ""
@@ -32158,7 +32190,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "' this is the same as the following statement:"
-msgstr ""
+msgstr "' é o mesmo que a seguinte instrução:"
#: 03131800.xhp
msgctxt ""
@@ -32238,7 +32270,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "' Generate \"live\" dialog"
-msgstr ""
+msgstr "' gerar caixa de diálogo \"ativa\""
#: 03131800.xhp
msgctxt ""
@@ -32902,7 +32934,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
-msgstr ""
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' para obter uma sequência de bytes."
#: 03132300.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Essa função de tempo de execução retorna o contexto de componente a ser utilizado, se a instância de serviços for efetuada através de XmultiServiceFactory. Consulte o capítulo <item type=\"literal\">Professional UNO</item> no <item type=\"literal\">Guia do desenvolvedor</item> em <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -33934,7 +34758,7 @@ msgctxt ""
"hd_id05182017030838384\n"
"help.text"
msgid "Working with VBA Macros"
-msgstr ""
+msgstr "Trabalhar com macros VBA"
#: main0601.xhp
msgctxt ""
@@ -33950,7 +34774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Exclusive VBA functions"
-msgstr ""
+msgstr "Funções VBA exclusivas"
#: special_vba_func.xhp
msgctxt ""
@@ -33958,7 +34782,7 @@ msgctxt ""
"bm_id051920170350145208\n"
"help.text"
msgid "<bookmark_value>VBA Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33966,7 +34790,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Funções VBA exclusivas</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -33974,7 +34798,7 @@ msgctxt ""
"par_id051820170314436068\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">O %PRODUCTNAME Basic acrescenta as seguintes funções quando o suporte ao VBA está ativado</ahelp>"
#: special_vba_func.xhp
msgctxt ""
@@ -33982,7 +34806,7 @@ msgctxt ""
"hd_id051820170407499827\n"
"help.text"
msgid "These exclusive VBA functions are enabled when <item type=\"literal\">Option VBASupport 1</item> is the first line of a %PRODUCTNAME Basic module."
-msgstr ""
+msgstr "As funções VBA exclusivas são ativadas quando <item type=\"literal\">Option VBASupport 1</item> está na primeira linha de um módulo do %PRODUCTNAME Basic."
#: special_vba_func.xhp
msgctxt ""
@@ -33990,7 +34814,7 @@ msgctxt ""
"bm_id05192017035621676\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA;Funções de texto</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -33998,7 +34822,7 @@ msgctxt ""
"par_id051820170355592834\n"
"help.text"
msgid "Text functions"
-msgstr ""
+msgstr "Funções de texto"
#: special_vba_func.xhp
msgctxt ""
@@ -34006,7 +34830,7 @@ msgctxt ""
"bm_id051920170357078705\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Financial Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA;Funções financeiras</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34014,7 +34838,7 @@ msgctxt ""
"par_id051820170355592581\n"
"help.text"
msgid "Financial functions"
-msgstr ""
+msgstr "Funções financeiras"
#: special_vba_func.xhp
msgctxt ""
@@ -34022,7 +34846,7 @@ msgctxt ""
"bm_id051920170357347041\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA;Funções de data e hora</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34030,7 +34854,7 @@ msgctxt ""
"par_id051820170356005357\n"
"help.text"
msgid "Date and time functions"
-msgstr ""
+msgstr "Funções de data e hora"
#: special_vba_func.xhp
msgctxt ""
@@ -34038,7 +34862,7 @@ msgctxt ""
"bm_id051920170358002074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;I/O Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA;Funções de E/S</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34046,7 +34870,7 @@ msgctxt ""
"par_id051820170356006501\n"
"help.text"
msgid "I/O Functions"
-msgstr ""
+msgstr "Funções de E/S de arquivos"
#: special_vba_func.xhp
msgctxt ""
@@ -34054,7 +34878,7 @@ msgctxt ""
"bm_id051920170358346963\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA;Funções matemáticas</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34062,7 +34886,7 @@ msgctxt ""
"par_id051820170356005221\n"
"help.text"
msgid "Mathematical Functions"
-msgstr ""
+msgstr "Funções matemáticas"
#: special_vba_func.xhp
msgctxt ""
@@ -34070,7 +34894,7 @@ msgctxt ""
"bm_id051920170359045662\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Object Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Funções VBA; Funções de objetos</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -34078,7 +34902,7 @@ msgctxt ""
"hd_id051920170347039686\n"
"help.text"
msgid "Object Functions"
-msgstr ""
+msgstr "Funções de objetos"
#: vbasupport.xhp
msgctxt ""
@@ -34086,7 +34910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Support for VBA Macros"
-msgstr ""
+msgstr "Suporte para macros VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34094,7 +34918,7 @@ msgctxt ""
"hd_id051720170332046289\n"
"help.text"
msgid "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Working with VBA Macros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbamacros\"><link href=\"text/sbasic/shared/vbasupport.xhp\">Trabalhar com macros de VBA</link></variable>"
#: vbasupport.xhp
msgctxt ""
@@ -34102,7 +34926,7 @@ msgctxt ""
"par_id05172017033242490\n"
"help.text"
msgid "<ahelp hid=\".\">Visual Basic for Applications (VBA) is an implementation of Microsoft's Visual Basic which is built into all Microsoft Office applications. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">O Visual Basic for Applications (VBA) é uma implementação do Microsoft's Visual Basic contido nas aplicações do Microsoft Office.</ahelp>"
#: vbasupport.xhp
msgctxt ""
@@ -34110,7 +34934,7 @@ msgctxt ""
"par_id051720170332428854\n"
"help.text"
msgid "Support for VBA is not complete, but it covers a large portion of the common usage patterns. Most macros use a manageable subset of objects in the Excel API (such as the Range, Worksheet, Workbook, etc.) and the support include those objects, and the most commonly used method/properties of those objects."
-msgstr ""
+msgstr "O suporte para VBA não está completo, mas abrange uma grande parte dos padrões comuns de uso. A maioria das macros usa um subconjunto gerenciável de objetos na API do Excel (como o intervalo, planilha, pasta de trabalho, etc.) e o suporte inclui esses objetos e o método / propriedades mais utilizados desses objetos."
#: vbasupport.xhp
msgctxt ""
@@ -34118,7 +34942,7 @@ msgctxt ""
"hd_id051720170350145604\n"
"help.text"
msgid "Loading Microsoft Office documents with executable VBA macros"
-msgstr ""
+msgstr "Carregando documentos do Microsoft Office com macros VBA executáveis"
#: vbasupport.xhp
msgctxt ""
@@ -34126,7 +34950,7 @@ msgctxt ""
"par_id051720170350147298\n"
"help.text"
msgid "Go to <item type=\"menuitem\">Tools – Options – Load / Save – VBA Properties</item> and mark the <emph>Excutable code</emph> checkbox. Then load or open your document."
-msgstr ""
+msgstr "Vá em <item type=\"menuitem\">Ferramentas - Opções - Carregar / Salvar - Propriedades VBA</item> e marque a caixa de seleção <emph>Código executável</emph>. Em seguida, carregue ou abra seu documento."
#: vbasupport.xhp
msgctxt ""
@@ -34134,7 +34958,7 @@ msgctxt ""
"hd_id051720170400536628\n"
"help.text"
msgid "Runing VBA Macros"
-msgstr ""
+msgstr "Executando Macro VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34142,7 +34966,7 @@ msgctxt ""
"par_id051720170400539565\n"
"help.text"
msgid "Run VBA macros in the same way as %PRODUCTNAME Basic macros."
-msgstr ""
+msgstr "Execute as macros VBA da mesma forma que as macros Basic do %PRODUCTNAME."
#: vbasupport.xhp
msgctxt ""
@@ -34150,7 +34974,7 @@ msgctxt ""
"par_id051720170407404013\n"
"help.text"
msgid "Since support for VBA is not complete, you may have to edit the VBA code and complete the missing support with %PRODUCTNAME Basic objects, statements and functions."
-msgstr ""
+msgstr "Uma vez que o suporte para o VBA não está completo, talvez você precise editar o código VBA e completar o suporte faltante com objetos, declarações e funções Basic do %PRODUCTNAME."
#: vbasupport.xhp
msgctxt ""
@@ -34158,7 +34982,7 @@ msgctxt ""
"hd_id051720170400533411\n"
"help.text"
msgid "Editing VBA Macros"
-msgstr ""
+msgstr "Editando Macros VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34166,7 +34990,7 @@ msgctxt ""
"par_id051720170400532486\n"
"help.text"
msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
-msgstr ""
+msgstr "Macros VBA podem ser editadas no %PRODUCTNAME IDE do Basic"
#: vbasupport.xhp
msgctxt ""
@@ -34174,7 +34998,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Propriedades do VBA</link>"
#: vbasupport.xhp
msgctxt ""
@@ -34182,4 +35006,4 @@ msgctxt ""
"par_id051720170407401872\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME IDE do Basic</link>"
diff --git a/source/pt-BR/helpcontent2/source/text/scalc/01.po b/source/pt-BR/helpcontent2/source/text/scalc/01.po
index 91c36af2276..38aa79affd4 100644
--- a/source/pt-BR/helpcontent2/source/text/scalc/01.po
+++ b/source/pt-BR/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ 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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-07 00:21+0000\n"
-"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
+"PO-Revision-Date: 2017-06-08 20:04+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496794863.000000\n"
+"X-POOTLE-MTIME: 1496952244.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -42638,7 +42638,7 @@ msgctxt ""
"par_id2859147\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.EXC(A1:A50;10%)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
-msgstr "<item type=\"input\">=PERCENTIL.EXC(A1:A50;0,1)</item> representa o valor no conjunto de dados, que iguala 10% da escala total dos dados em A1:A50."
+msgstr "<item type=\"input\">=PERCENTIL.EXC(A1:A50;0,10%)</item> representa o valor no conjunto de dados, que iguala 10% da escala total dos dados em A1:A50."
#: 04060184.xhp
msgctxt ""
@@ -63222,7 +63222,7 @@ msgctxt ""
"par_id23102016234837285\n"
"help.text"
msgid "<ahelp hid=\".\">The result is a date number that can be formatted as a date. User can see the date of a day that is a certain number of workdays away from the start date (before or after). There are options to define weekend days and holidays. The optional weekend parameter (or a string) can be used to define the weekend days (or the non-working days in each week). Also, optionally, the user can define a holiday list. The weekend days and user-defined holidays are not counted as working days.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">O resultado é um numeral que pode ser formatado como data. Retorna uma data antes ou depois da data inicial. Há opções para definir fins de semana e feriados. O parâmetro (ou string) opcional FimDeSemana pode ser usado para definir os dias de fim de semana. Os feriados são representados por um intervalo contendo as datas. </ahelp>"
#: func_workday.intl.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared.po b/source/pt-BR/helpcontent2/source/text/shared.po
index f3abfd5f394..3eadc059f8e 100644
--- a/source/pt-BR/helpcontent2/source/text/shared.po
+++ b/source/pt-BR/helpcontent2/source/text/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-09 05:45+0000\n"
-"Last-Translator: tulio <tuliomac@gmail.com>\n"
+"PO-Revision-Date: 2017-06-07 12:27+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494308741.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496838422.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Seleciona uma profundidade de extrusão."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Seleciona um método de extrusão em perspectiva ou em paralelo."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Seleciona uma direção de iluminação."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Seleciona uma intensidade de iluminação."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10717\n"
"help.text"
msgid "Select a surface material or a wireframe display."
-msgstr ""
+msgstr "Seleciona a exibição com material de superfície ou em aramado."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Clique para aplicar o alinhamento aos objetos Fontwork selecionados."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Clique para aplicar o espaçamento de caractere aos objetos Fontwork selecionados."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Abre a caixa de diálogo Espaçamento de caracteres em Fontwork, onde você pode inserir um novo valor de espaçamento de caracteres."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Ativa e desativa o <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> de pares de caracteres."
#: main0108.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/00.po b/source/pt-BR/helpcontent2/source/text/shared/00.po
index 1bded162219..2fad6512ad5 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/00.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/00.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-30 20:47+0000\n"
-"Last-Translator: qoelhex <qoelhex@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 15:25+0000\n"
+"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496177259.000000\n"
+"X-POOTLE-MTIME: 1498058718.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3154820\n"
"help.text"
msgid "You can create a DDE link using the following procedure: Select cells from a Calc spreadsheet, copy them into the clipboard and switch to another spreadsheet and select the <emph>Edit - Paste Special</emph> dialog. Select <emph>the Link</emph> option to insert the contents as a DDE link. When activating a link, the inserted cell area will be read from its original file."
-msgstr "Você pode criar um vínculo DDE usando o seguinte procedimento: Selecione as células de uma planilha do $[officename] Calc, copie-as para a área de transferência, alterne para outra planilha e selecione a caixa de diálogo <emph>Editar - Colar especial</emph>. Para inserir o conteúdo como vínculo DDE, selecione a opção <emph>Vincular</emph>. Quando ativar um vínculo, a área de célula inserida será lida no arquivo original."
+msgstr "Você pode criar um vínculo DDE usando o seguinte procedimento: Selecione as células de uma planilha do Calc, copie-as para a área de transferência, alterne para outra planilha e selecione a caixa de diálogo <emph>Editar - Colar especial</emph>. Para inserir o conteúdo como vínculo DDE, selecione a opção <emph>Vincular</emph>. Quando ativar um vínculo, a área da célula inserida será lida no arquivo original."
#: 00000005.xhp
msgctxt ""
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Escolha a guia <emph>Ferramentas - Numeração da estrutura de tópicos - Posição</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Escolha <emph>Ferramentas - Numeração da estrutura de tópicos - guia Posição</emph> </caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>>Ícone na barra de ferramentas <emph>Figura</emph>:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Ícone na barra de ferramentas <emph>Imagem</emph>:</defaultinline></switchinline>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/01.po b/source/pt-BR/helpcontent2/source/text/shared/01.po
index bb9bf16301f..17687c177f6 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/01.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-07 00:35+0000\n"
-"Last-Translator: tulio <tuliomac@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 16:43+0000\n"
+"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496795729.000000\n"
+"X-POOTLE-MTIME: 1498063415.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Selecione o estilo de parágrafo ou nível da estrutura de tópicos que deseja utilizar para separar o documento de origem em subdocumentos.</ahelp> Normalmente, um novo documento será criado para cada nível 1 da estrutura de tópicos."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Selecione o estilo de parágrafo ou nível da estrutura de tópicos que deseja utilizar para separar o documento de origem em subdocumentos.</ahelp> Por padrão, um novo documento será criado para cada nível 1 da estrutura de tópicos."
#: 01160300.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"par_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Para selecionar todas as células numa planilha, clique no botão situado na interseção dos cabeçalhos de coluna e de linha no canto superior esquerdo da planilha.</caseinline> <defaultinline/> </switchinline>"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Para selecionar todas as células numa planilha, clique no botão situado na interseção dos cabeçalhos de coluna e de linha no canto superior esquerdo da planilha.</caseinline> <defaultinline></defaultinline> </switchinline>"
#: 02090000.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Selecione para exportar marcadores dos documentos do Writer como marcadores PDF. Marcadores serão criados para todos os parágrafos da estrutura de tópicos (Ferramentas - Numeração da estrutura de tópicos) e para todas as entradas do Índice, quando estes foram definidos como hiperlink no documento original.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr "<ahelp hid=\".\">Selecione exportar marcadores dos documentos do Writer como marcadores PDF. Marcadores serão criados para todos os parágrafos da estrutura de tópicos (<item type=\"menuitem\">Ferramentas - Numeração da estrutura de tópicos</item>) e para todas as entradas do Índice, quando estes foram definidos como hiperlink no documento original.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/explorer/database.po b/source/pt-BR/helpcontent2/source/text/shared/explorer/database.po
index 01276e927af..cfbe9a24935 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/explorer/database.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-05 19:21+0000\n"
-"Last-Translator: qoelhex <qoelhex@gmail.com>\n"
+"PO-Revision-Date: 2017-06-09 07:12+0000\n"
+"Last-Translator: tulio <tuliomac@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496690501.000000\n"
+"X-POOTLE-MTIME: 1496992372.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/view\">If the database supports Views and you selected this option, a query will be created in the table container as a table. This option allows you to view the query results as a normal table view.</ahelp> The table will be filtered in the view with a \"Select\" SQL statement."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/view\">Se o banco de dados aceitar Exibições e essa opção for selecionada, uma consulta será criada no recipiente de tabela como uma tabela. Essa opção permite visualizar a consulta como uma tabela.</ahelp> A tabela será filtrada na visualização com o comando SQL \"Select\"."
#: 05030100.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id3154143\n"
"help.text"
msgid "To open the data source view, press Ctrl+Shift+F4 in a text, spreadsheet or form document."
-msgstr ""
+msgstr "Para abrir a tela de exibição de fontes de dados, pressione Crtl+Shift+F4 em um texto, planilha ou documento de formulário."
#: 11000002.xhp
msgctxt ""
@@ -7158,7 +7158,7 @@ msgctxt ""
"par_idN1054D\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/dabawiz01.xhp\">Select Database</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/explorer/database/dabawiz01.xhp\">Selecionar Banco de dados</link>"
#: dabawiz01.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_idN10596\n"
"help.text"
msgid "A user name can have a maximum of 18 characters."
-msgstr ""
+msgstr "Um nome de usuário pode ter até 18 caracteres no máximo."
#: dabawiz02ado.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_idN10599\n"
"help.text"
msgid "A password must contain 3 to 18 characters."
-msgstr ""
+msgstr "Uma senha deve conter de 3 a 18 caracteres."
#: dabawiz02ado.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_idN106A4\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the URL for the database. For example, for the MySQL JDBC driver, enter \"jdbc:mysql://<Servername>/<name of the database>\". For more information on the JDBC driver, consult the documentation that came with the driver.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Digite o URL do banco de dados. Por exemplo, para o driver JDBC MySQL, digite \"jdbc:mysql://<Nome do servidor>/<nome do banco de dados>\". Para obter mais informações sobre o driver JDBC, consulte a documentação que acompanha o driver.</ahelp>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"par_idN106BF\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the JDBC driver.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Digite o nome do driver JDBC.</ahelp>"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -8558,7 +8558,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "Set up Spreadsheet connection"
-msgstr ""
+msgstr "Configurar a conexão com a planilha"
#: dabawiz02spreadsheet.xhp
msgctxt ""
@@ -8638,7 +8638,7 @@ msgctxt ""
"par_idN1054F\n"
"help.text"
msgid "Set up a connection to text files"
-msgstr ""
+msgstr "Configurar uma conexão com arquivos de texto"
#: dabawiz02text.xhp
msgctxt ""
@@ -8750,7 +8750,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that separates data fields in the text file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Insira ou selecione o caractere que irá separar os campos de dados no arquivo de texto.</ahelp>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8766,7 +8766,7 @@ msgctxt ""
"par_idN105A0\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that identifies a text field in the text file.</ahelp> You cannot use the same character as the field separator."
-msgstr ""
+msgstr "<ahelp hid=\".\">Insira ou selecione o caractere que identifica um campo de texto no arquivo de texto.</ahelp> Você não pode utilizar o mesmo caractere como separador de campo."
#: dabawiz02text.xhp
msgctxt ""
@@ -8782,7 +8782,7 @@ msgctxt ""
"par_idN105BC\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that is used as a decimal separator in the text file, for example, a period (0.5) or a comma (0,5).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Insira ou selecione o caractere que será utilizado como separador decimal no arquivo de texto como, por exemplo, um ponto (0.5) ou uma vírgula (0,5).</ahelp>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8798,7 +8798,7 @@ msgctxt ""
"par_idN105D7\n"
"help.text"
msgid "<ahelp hid=\".\">Enter or select the character that is used as a thousands separator in the text file, for example a comma (1,000), or a period (1.000).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Insira ou selecione o caractere que será utilizado como separador de milhar no arquivo de texto como, por exemplo, uma vírgula (1,000) ou um ponto (1.000).</ahelp>"
#: dabawiz02text.xhp
msgctxt ""
@@ -8814,7 +8814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Set up user authentication"
-msgstr ""
+msgstr "Configurar a autenticação de usuário"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8822,7 +8822,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "Set up user authentication"
-msgstr ""
+msgstr "Configurar a autenticação de usuário"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8830,7 +8830,7 @@ msgctxt ""
"par_idN1053E\n"
"help.text"
msgid "Some databases require a user name and password."
-msgstr ""
+msgstr "Alguns bancos de dados requerem um nome de usuário e uma senha."
#: dabawiz03auth.xhp
msgctxt ""
@@ -8870,7 +8870,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "Test Connection"
-msgstr ""
+msgstr "Testar conexão"
#: dabawiz03auth.xhp
msgctxt ""
@@ -8878,7 +8878,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "<ahelp hid=\".\">Check if the configured connection can be used to access the database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Verifique se a conexão configurada pode ser usada para acessar o banco de dados.</ahelp>"
#: dabawiz03auth.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
+msgstr "Especifica se é necessário agrupar a consulta. A fonte de dados deve oferecer suporte à instrução SQL \"Group by clauses\" (Agrupar por cláusulas) para ativar essa página do Assistente."
#: querywizard05.xhp
msgctxt ""
@@ -10702,7 +10702,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
+msgstr "Especifica se é necessário agrupar a consulta. A fonte de dados deve oferecer suporte à instrução SQL \"Group by clauses\" (Agrupar por cláusulas) para ativar essa página do Assistente."
#: querywizard06.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/guide.po b/source/pt-BR/helpcontent2/source/text/shared/guide.po
index feff661e746..35ef4bb1d36 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/guide.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-07 01:06+0000\n"
-"Last-Translator: tulio <tuliomac@gmail.com>\n"
+"PO-Revision-Date: 2017-06-10 01:07+0000\n"
+"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
"Language-Team: Brazilian Portuguese <kde-i18n-doc@kde.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496797587.000000\n"
+"X-POOTLE-MTIME: 1497056849.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -18686,7 +18686,7 @@ msgctxt ""
"hd_id041620170723518918\n"
"help.text"
msgid "Example 2 – Import Template – Personal Budget Spreadsheet"
-msgstr ""
+msgstr "Exemplo 2 – Importar modelos – Orçamento pessoal"
#: template_manager.xhp
msgctxt ""
@@ -18694,7 +18694,7 @@ msgctxt ""
"par_id041620170723511504\n"
"help.text"
msgid "Open %PRODUCTNAME Calc"
-msgstr ""
+msgstr "Abra o %PRODUCTNAME Calc"
#: template_manager.xhp
msgctxt ""
@@ -18702,7 +18702,7 @@ msgctxt ""
"par_id041620170723518639\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or File – New Template to open the Template Manager"
-msgstr ""
+msgstr "Pressione <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N ou Arquivo – Novo – Modelo para abrir o Gerenciador de modelos"
#: template_manager.xhp
msgctxt ""
@@ -18710,7 +18710,7 @@ msgctxt ""
"par_id041620170723512689\n"
"help.text"
msgid "Click on the world icon to browse for online templates"
-msgstr ""
+msgstr "Clique no ícone do mundo para buscar modelos online"
#: template_manager.xhp
msgctxt ""
@@ -18718,7 +18718,7 @@ msgctxt ""
"par_id041620170723511300\n"
"help.text"
msgid "Search for the Personal Budget Template, then download it"
-msgstr ""
+msgstr "Pesquise pelo modelo Orçamento pessoal, então baixe-o"
#: template_manager.xhp
msgctxt ""
@@ -18726,7 +18726,7 @@ msgctxt ""
"par_id041620170723514055\n"
"help.text"
msgid "Open Template Manager and choose the Import button"
-msgstr ""
+msgstr "Abra o Gerenciador de modelos e selecione o botão Importar"
#: template_manager.xhp
msgctxt ""
@@ -18734,7 +18734,7 @@ msgctxt ""
"par_id041620170723513485\n"
"help.text"
msgid "Select a category to save the new template in (e.g. My Templates) and press OK"
-msgstr ""
+msgstr "Selecione a categoria na qual salvar o modelo (por exemplo Meus modelos) e pressione Ok"
#: template_manager.xhp
msgctxt ""
@@ -18742,7 +18742,7 @@ msgctxt ""
"par_id041620170723513541\n"
"help.text"
msgid "Browse to the folder where you downloaded the template, select it and press Open"
-msgstr ""
+msgstr "Navegue até a pasta onde o modelo baixado está, selecione-o e pressione Abrir"
#: template_manager.xhp
msgctxt ""
@@ -18750,7 +18750,7 @@ msgctxt ""
"par_id041620170723511411\n"
"help.text"
msgid "The Template is now available in the category you chose."
-msgstr ""
+msgstr "O modelo está disponível agora na categoria escolhida."
#: template_manager.xhp
msgctxt ""
@@ -18758,7 +18758,7 @@ msgctxt ""
"hd_id041620170723518447\n"
"help.text"
msgid "Example 3 – %PRODUCTNAME Impress – Presentation Template"
-msgstr ""
+msgstr "Exemplo 3 – %PRODUCTNAME Impress – Modelo de apresentação"
#: template_manager.xhp
msgctxt ""
@@ -18766,7 +18766,7 @@ msgctxt ""
"par_id041620170723515914\n"
"help.text"
msgid "Open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "Abra o %PRODUCTNAME Impress"
#: template_manager.xhp
msgctxt ""
@@ -18774,7 +18774,7 @@ msgctxt ""
"par_id041620170723523193\n"
"help.text"
msgid "The Template Manager opens automatically when you open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "O Gerenciador de modelos abre automaticamente quando você abre o %PRODUCTNAME Impress"
#: template_manager.xhp
msgctxt ""
@@ -18782,7 +18782,7 @@ msgctxt ""
"par_id041620170723525963\n"
"help.text"
msgid "Choose a template for your presentation, filter by categories or search"
-msgstr ""
+msgstr "Escolha um modelo para a sua apresentação, filtre por categorias ou pesquise"
#: template_manager.xhp
msgctxt ""
@@ -18790,7 +18790,7 @@ msgctxt ""
"par_id041620170723523510\n"
"help.text"
msgid "Additional features are unavailable, and you may only select a template, filter, or import."
-msgstr ""
+msgstr "Funcionalidades adicionais não estão disponíveis e só é possível selecionar o modelo, filtrar ou importar."
#: template_manager.xhp
msgctxt ""
@@ -18798,7 +18798,7 @@ msgctxt ""
"par_id041620170723525323\n"
"help.text"
msgid "After starting %PRODUCTNAME Impress you may run the Template Manager again to access additional features."
-msgstr ""
+msgstr "Depois de iniciar o %PRODUCTNAME Impress é possível rodar o Gerenciador de modelos novamente para acessar funcionalidades adicionais."
#: template_manager.xhp
msgctxt ""
@@ -18806,7 +18806,7 @@ msgctxt ""
"par_id041620170723521916\n"
"help.text"
msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
-msgstr ""
+msgstr "Faça uso de categorias para organizar seus modelos. Crie novos modelos ou baixe modelos e organize no Gerenciador de modelos. Use modelos para economizar tempo em documentos repetitivos."
#: template_manager.xhp
msgctxt ""
@@ -18814,7 +18814,7 @@ msgctxt ""
"par_id04162017072352773\n"
"help.text"
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
-msgstr ""
+msgstr "Veja <link href=\"text/swriter/guide/templates_styles.xhp\">Modelos e estilos</link> para informação relacionada."
#: template_manager.xhp
msgctxt ""
@@ -18822,7 +18822,7 @@ msgctxt ""
"par_id041620170723523966\n"
"help.text"
msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr ""
+msgstr "Veja <link href=\"text/swriter/guide/template_create.xhp\">Criar um modelo de documento</link> para informação relacionada."
#: template_manager.xhp
msgctxt ""
@@ -18830,7 +18830,7 @@ msgctxt ""
"par_id04162017072352674\n"
"help.text"
msgid "See Chapter 3 – Using Styles and Templates in the Getting Started Guide, available from the <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">documentation website</link>."
-msgstr ""
+msgstr "Veja o Capítulo 3 – Usar Estilos e Modelos no Guia do Iniciante, disponível no link <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">website de documentação</link>."
#: template_manager.xhp
msgctxt ""
@@ -18838,7 +18838,7 @@ msgctxt ""
"par_id041620170723529524\n"
"help.text"
msgid "Refer to <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> for templates to download."
-msgstr ""
+msgstr "Verifique em <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> para modelos para baixar."
#: text_color.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/optionen.po b/source/pt-BR/helpcontent2/source/text/shared/optionen.po
index 993c98441ca..8bb62346f63 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/optionen.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/optionen.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-07 00:54+0000\n"
-"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
+"PO-Revision-Date: 2017-06-21 15:36+0000\n"
+"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496796878.000000\n"
+"X-POOTLE-MTIME: 1498059402.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,23 +2285,31 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
msgstr ""
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">j</caption></image>anela Escolher uma cor"
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
"par_id3148944\n"
"help.text"
msgid "The Pick a Color Dialog window consist of four main areas."
-msgstr ""
+msgstr "A caixa de diálogo Escolher uma cor consiste de 4 áreas principais."
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
@@ -2310,7 +2318,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "The spin buttons are for entering the numerical value of the color component."
-msgstr ""
+msgstr "Os botões giratórios permitem inserir valores numéricos do componente da cor."
#: 01010501.xhp
msgctxt ""
@@ -2318,7 +2326,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximatively."
-msgstr ""
+msgstr "<ahelp hid=\".\">Com a régua vertical pode-se modificar o valor de cada componente de cor.</ahelp> Com o quadrado grande só é possível selecionar o componente aproximadamente."
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2334,7 @@ msgctxt ""
"par_id3148948\n"
"help.text"
msgid "The horizontal bottom color bar shows the current color and the new color, side by side."
-msgstr ""
+msgstr "A barra horizontal inferior mostra a cor atual e a nova cor, lado a lado."
#: 01010501.xhp
msgctxt ""
@@ -2334,7 +2342,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "<ahelp hid=\".\">Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Clique na grande área colorida à esquerda para selecionar uma nova cor. Ao utilizar este seletor você pode modificar dois componentes da cor como representado nos modelos de cor RGB e HSB. Note que são os dois componentes não selecionados com os botões de rádio à direita da caixa de diálogo.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2342,7 +2350,7 @@ msgctxt ""
"par_id3154164\n"
"help.text"
msgid "<ahelp hid=\".\">In the right part of the bottom bar, you will see the original color from the parent tab, <emph>Colors</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Na parte direita da barra inferior, a cor original da aba <emph>Cores</emph>.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2350,7 +2358,7 @@ msgctxt ""
"par_id3154165\n"
"help.text"
msgid "<ahelp hid=\".\">In the left part of the bottom bar, the current result of your work in this dialog is visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Na parte esquerda da barra inferior, o resultado de sua escolha.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2366,7 +2374,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: 01010501.xhp
msgctxt ""
@@ -2382,7 +2390,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o componente vermelho modificável pela barra vertical, e o os componentes verde e azul do seletor de cor bidimensional. Valores permitidos vão de 0 a 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2390,7 +2398,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Set the Red color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/redSpinbutton\" visibility=\"hidden\">Define o valor do vermelho diretamente. Valores permitidos vão de 0 a 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2406,7 +2414,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o componente verde modificável pela barra vertical, e o os componentes vermelho e azul do seletor de cor bidimensional. Valores permitidos vão de 0 a 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2414,7 +2422,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Set the Green color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/greenSpinbutton\" visibility=\"hidden\">Define o valor do verde diretamente. Valores permitidos vão de 0 a 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2430,7 +2438,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o componente vermelho modificável pela barra vertical, e o os componentes verde e azul do seletor de cor bidimensional. Valores permitidos vão de 0 a 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2438,7 +2446,7 @@ msgctxt ""
"par_id3148455\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Set the Blue color value directly. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/blueSpinbutton\" visibility=\"hidden\">Define o valor do azul diretamente. Valores permitidos vão de 0 a 255.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2446,7 +2454,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "Hex #"
-msgstr ""
+msgstr "N.º hex."
#: 01010501.xhp
msgctxt ""
@@ -2454,7 +2462,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "<ahelp hid=\".\">Displays and sets the color value in the RGB color model expressed as a hexadecimal number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Exibe e define o valor da cor no modelos de cor RGB expresso com um número hexadecimal.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2462,7 +2470,7 @@ msgctxt ""
"hd_id315201\n"
"help.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: 01010501.xhp
msgctxt ""
@@ -2470,7 +2478,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Hue"
-msgstr ""
+msgstr "Matiz"
#: 01010501.xhp
msgctxt ""
@@ -2478,7 +2486,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o componente matiz modificável pela barra vertical, e os componentes saturação e brilho do seletor de cor bidimensional. Os valores são expressos em graus e vão de 0 a 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2486,7 +2494,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/hueSpinbutton\" visibility=\"hidden\">Define a matiz diretamente no modelo de cor HSB. Os valores são expressos em graus de 0 a 359.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2502,7 +2510,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o componente saturação modificável pela barra vertical, e os componentes matiz e brilho do seletor de cor bidimensional. Os valores são expressos em porcentagem (0 a 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2510,7 +2518,7 @@ msgctxt ""
"par_id3153512\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Set the Saturation directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/satSpinbutton\" visibility=\"hidden\">Define a saturação diretamente no modelo de cor HSB. Os valores são expressos em porcentagem (0 a 100.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2518,7 +2526,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Brilho"
#: 01010501.xhp
msgctxt ""
@@ -2526,7 +2534,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two dimensional color picker field. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o componente de brilho modificável pela barra vertical, e os componentes matiz e saturação do seletor de cor bidimensional. Os valores são expressos em porcentagem (0 a 100).</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2534,7 +2542,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Set the Brightness directly in the HSB color model. Values are expressed in percent ( 0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpickerdialog/brightSpinbutton\" visibility=\"hidden\">Define o brilho diretamente no modelo de cor HSB. Os valores são expressos em porcentagem (0 a 100.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2542,7 +2550,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2558,7 +2566,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Cyan color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o valor do ciano expresso no modelo de cor CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2574,7 +2582,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Magenta color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o valor do magenta expresso no modelo de cor CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2590,7 +2598,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Yellow color value as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o valor do amarelo expresso no modelo de cor CMYK.</ahelp>"
#: 01010501.xhp
msgctxt ""
@@ -2606,7 +2614,7 @@ msgctxt ""
"par_id3146148\n"
"help.text"
msgid "<ahelp hid=\".\">Set the Black color value or key (black) as expressed in the CMYK color model.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define o valor do preto ou \"key\" expresso no modelo de cor CMYK.</ahelp>"
#: 01010600.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter.po b/source/pt-BR/helpcontent2/source/text/swriter.po
index 2ec51ec022f..688d66da99a 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-29 01:18+0000\n"
-"Last-Translator: tulio <tuliomac@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 19:22+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496020730.000000\n"
+"X-POOTLE-MTIME: 1497986563.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeração da estrutura de tópicos\">Numeração da estrutura de tópicos</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Numeração de capítulos</link>"
#: main0106.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/00.po b/source/pt-BR/helpcontent2/source/text/swriter/00.po
index 6b76b72003b..e73015d775c 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/00.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-14 22:25+0000\n"
"Last-Translator: qoelhex <qoelhex@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494800721.000000\n"
#: 00000004.xhp
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Escolha <emph>Ferramentas - Numeração da estrutura de tópicos</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Escolha a aba <emph>Ferramentas - Numeração da estrutura de tópicos - Numeração</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Escolha <emph>Ferramentas - Numeração de linhas</emph> (não vale para o formato HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/01.po b/source/pt-BR/helpcontent2/source/text/swriter/01.po
index b5ef725366f..193de59d632 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/01.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-05-30 20:29+0000\n"
"Last-Translator: qoelhex <qoelhex@gmail.com>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496176175.000000\n"
#: 01120000.xhp
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Clique em <emph>1 </emph>para exibir somente os níveis superiores de títulos na janela do Navegador e em <emph>10</emph> para exibir todos os títulos.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Ao escolher a opção \"Número de capítulo sem separador\" para um campo de capítulo, os separadores especificados em <link href=\"text/swriter/01/06060000.xhp\" name=\"Ferramentas - Número do capítulo\"><emph>Ferramentas - Numeração da estrutura de tópicos</emph></link> serão ignorados."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Insere o número do capítulo. Para atribuir numeração de capítulo a um estilo de título, selecione<emph> Ferramentas - Numeração da estrutura de tópicos</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeração da estrutura de tópicos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeração da estrutura de tópicos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "A numeração da estrutura de tópicos está vinculada aos estilos de parágrafos. Por padrão, os estilos \"Título\" (1-10) são atribuídos aos níveis correspondentes dessa estrutura (1-10). Se desejar, você poderá atribuir estilos de parágrafos diferentes ao nível da estrutura de tópicos."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Se desejar títulos numerados, use o comando do menu <emph>Ferramentas – Numeração da estrutura de tópicos</emph> para atribuir uma numeração a um estilo de parágrafo. Não use o ícone Numeração na barra de ferramentas Formatação."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Para realçar a exibição de tela dos números da estrutura de tópicos, escolha <emph>Exibir -</emph><emph>Sombreamentos de campos</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Salva ou carrega um formato de número da estrutura de tópicos. Uma vez salvo, esse formato estará disponível para todos os documentos de texto.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "O botão <emph>Formatar</emph> está somente disponível para a numeração da estrutura de tópicos. Para estilos de lista numerados ou com marcadores, modifique os Estilos de Numeração dos parágrafos."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Abre uma caixa de diálogo na qual você pode salvar as configurações atuais do nível selecionado da estrutura de tópicos. Depois, você poderá carregar essas configurações a partir de outro documento.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Clique no nível da estrutura de tópicos que você deseja modificar e, em seguida, especifique as opções de numeração do nível.</ahelp> Para aplicá-las a todos os níveis (exceto ao estilo de parágrafo), clique em \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Selecione o estilo de parágrafo que você deseja atribuir ao nível de estrutura de tópicos selecionado.</ahelp> Se você clicar em \"Nenhum\", esse nível não será definido."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novo bloco de endereço"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novo bloco de endereço"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementos de endereço"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arraste o elemento de endereço até o campo abaixo"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/guide.po b/source/pt-BR/helpcontent2/source/text/swriter/guide.po
index 171a8e23328..68e9cc26eb8 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/guide.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-05-30 20:39+0000\n"
"Last-Translator: qoelhex <qoelhex@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496176763.000000\n"
#: anchor_object.xhp
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Você pode mover títulos e textos subordinados para cima e para baixo em um documento de texto utilizando o Navegador. Também pode promover ou rebaixar níveis de título. Para utilizar este recurso, formate os títulos do documento com um dos estilos de título de parágrafo predefinidos. Para utilizar um estilo de parágrafo predefinido para um título, escolha <emph>Ferramentas - Numeração da estrutura de tópicos</emph>, selecione o estilo na caixa <emph>Estilo de parágrafo</emph> e, em seguida, clique duas vezes em um número na lista <emph>Níveis</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeração da estrutura de tópicos"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>estrutura de tópicos;numeração</bookmark_value> <bookmark_value>excluir;números de títulos</bookmark_value> <bookmark_value>numeração de capítulos</bookmark_value> <bookmark_value>títulos; estilos de numeração/parágrafo</bookmark_value> <bookmark_value>numerar;títulos</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeração da estrutura de tópicos\">Numeração da estrutura de tópicos</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Você pode modificar a hierarquia de títulos ou atribuir um nível da hierarquia a um estilo de parágrafo personalizado. Também pode adicionar numerações de capítulo e de seção aos estilos de título de parágrafo. Por padrão, o estilo de parágrafo \"Título 1\" aparece na parte superior da estrutura de tópicos hierárquica."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escolha <item type=\"menuitem\">Ferramentas - Numeração da estrutura de tópicos</item>, e clique na guia <item type=\"menuitem\">Numeração</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Para remover a numeração automática de estrutura de tópicos de um parágrafo de título"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escolha <item type=\"menuitem\">Ferramentas - Numeração da estrutura de tópicos</item>, e clique na guia <item type=\"menuitem\">Numeração</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Antes de inserir informações sobre o capítulo em um cabeçalho ou rodapé, você precisa definir as opções de numeração da estrutura de tópicos do estilo de parágrafo que deseja utilizar nos títulos de capítulo."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Escolha <emph>Ferramentas - Numeração da estrutura de tópicos</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>índices; definir entradas em</bookmark_value><bookmark_value>sumários; definir entradas em</bookmark_value><bookmark_value>entradas; definir em índices e sumários</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Escolha <emph>Inserir - Sumário e índices - Entrada de índice</emph> e adote um dos seguintes procedimentos:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Escolha <emph>Ferramentas - Numeração da estrutura de tópicos</emph> e clique na guia <emph>Numeração</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Se desejar utilizar um estilo de parágrafo diferente para ser uma entrada do sumário, selecione a caixa <item type=\"menuitem\">Estilos adicionais</item> na área <item type=\"menuitem\">Criar a partir de</item>, e então clique no botão <item type=\"menuitem\">Atribuir estilos</item> ao lado da marca. Na caixa de diálogo <item type=\"menuitem\">Atribuir estilos</item>, clique no estilo da lista e clique no botão <item type=\"menuitem\">>></item> ou <item type=\"menuitem\"><<</item> para definir o nível da estrutura de tópicos para o estilo do parágrafo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Se desejar utilizar um estilo de parágrafo diferente para ser uma entrada do sumário, selecione a caixa <item type=\"menuitem\">Estilos adicionais</item> e então clique no botão <item type=\"menuitem\">Atribuir estilos</item> ao lado da caixa. Clique no estilo da lista e clique no botão <item type=\"menuitem\">>></item> ou <item type=\"menuitem\"><<</item> para definir o nível da estrutura de tópicos para o estilo do parágrafo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numeração; remover/interromper</bookmark_value><bookmark_value>listas com marcadores; interromper</bookmark_value><bookmark_value>listas;remover/interromper numeração</bookmark_value><bookmark_value>excluir;números em listas</bookmark_value><bookmark_value>interromper listas numeradas</bookmark_value><bookmark_value>alterar;números iniciais em listas</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Se desejar títulos numerados, utilize o comando de menu <emph>Ferramentas – Numeração da estrutura de tópicos</emph> para atribuir uma numeração a um estilo de parágrafo. Não use o ícone Numeração na barra de ferramentas Formatação."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/librelogo.po b/source/pt-BR/helpcontent2/source/text/swriter/librelogo.po
index 1b3eb9f2842..bbae5a8af5e 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-07 21:39+0200\n"
-"PO-Revision-Date: 2017-06-04 19:18+0000\n"
+"PO-Revision-Date: 2017-06-08 18:07+0000\n"
"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496603918.000000\n"
+"X-POOTLE-MTIME: 1496945265.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_1590\n"
"help.text"
msgid "TO tree location<br/> PENUP POSITION location HEADING 0 PENDOWN<br/> PICTURE [ FORWARD 100 CIRCLE 100 ] ; tree-like grouped shape<br/> END<br/> <br/> PICTURE [ tree [230, 400] tree [300, 400] ] ; grouped shapes in a grouped shape<br/>"
-msgstr ""
+msgstr "APRENDER arvore localizacao<br/> USARNADA POSICIONAR localizacao MUDARDIREÇÃO 0 USARLÁPIS<br/> AGRUPAR [ PARAFRENTE 100 CÍRCULO 100 ] ; agrupa na forma de árvore<br/> FIM<br/> <br/> AGRUPAR [ arvore [230, 400] arvore [300, 400] ] ; formas agrupadas em outra forma agrupada<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_1940\n"
"help.text"
msgid "TO triangle<br/> REPEAT 2 [ FORWARD 100 RIGHT 120 ] FILL<br/> END<br/> <br/> REPEAT 10 [ triangle PENUP POSITION ANY PENDOWN ]<br/>"
-msgstr ""
+msgstr "APRENDER triangulo <br/> REPETIR 2 [ PARAFRENTE 100 PARADIREITA 120 ] PINTAR<br/> FIM<br/> <br/> REPETIR 10 [ triangulo USARNADA POSICIONAR QUALQUER USARLÁPIS ]<br/>"
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po
index 1af0d0b719f..00a0220bab8 100644
--- a/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 23:19+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 19:21+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496791153.000000\n"
+"X-POOTLE-MTIME: 1497986479.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Escolher temas"
+msgid "Spreadsheet Theme"
+msgstr "Tema da planilha"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Inserir..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Padrão"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Acento 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Acento 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Acento 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Título 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Título 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Ruim"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Erro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Bom"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Atenção"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Nota de rodapé"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Nota"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Propriedades..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objeto..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/pt-BR/sc/source/ui/src.po b/source/pt-BR/sc/source/ui/src.po
index 086e73898eb..696c8835055 100644
--- a/source/pt-BR/sc/source/ui/src.po
+++ b/source/pt-BR/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-09 15:38+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 19:16+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494344300.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497986182.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Intervalo deslocado de #1 para #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,7 +2710,7 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Esta ação encerra o modo de gravação de alterações.\n"
+"Esta ação sairá do modo de gravação de alterações.\n"
"Todas as informações sobre alterações serão perdidas.\n"
"\n"
"Sair do modo de gravação de alterações?\n"
@@ -2871,7 +2871,7 @@ msgstr "Matrizes aninhadas não possuem suporte."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "Texto para colunas"
diff --git a/source/pt-BR/sfx2/source/view.po b/source/pt-BR/sfx2/source/view.po
index 30e825d5a41..9ee79d8252c 100644
--- a/source/pt-BR/sfx2/source/view.po
+++ b/source/pt-BR/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-11 22:12+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 19:14+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494540771.000000\n"
+"X-POOTLE-MTIME: 1497986084.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "Este documento contém uma assinatura inválida."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "A assinatura era válida, mas o documento foi modificado"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/pt-BR/svtools/source/control.po b/source/pt-BR/svtools/source/control.po
index 155db861e0c..34e5e2fed1d 100644
--- a/source/pt-BR/svtools/source/control.po
+++ b/source/pt-BR/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-06-27 21:50+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 13:52+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1435441800.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498053153.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Itálico Preto"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Negrito oblíquo"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Negrito condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Negrito condensado itálico"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Negrito condensado oblíquo"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Itálico condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Oblíquo condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "Extrafino"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "Itálico extrafino"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Oblíquo"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Semi-negrito"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Semi-negrito itálico"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/pt-BR/svtools/source/misc.po b/source/pt-BR/svtools/source/misc.po
index 66f5fc3f8ac..a13b2067120 100644
--- a/source/pt-BR/svtools/source/misc.po
+++ b/source/pt-BR/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-19 15:17+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 19:12+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495207026.000000\n"
+"X-POOTLE-MTIME: 1497985922.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (República Democrática do Congo)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pt-BR/sw/source/core/undo.po b/source/pt-BR/sw/source/core/undo.po
index 3e5070bdb12..bf7abd95255 100644
--- a/source/pt-BR/sw/source/core/undo.po
+++ b/source/pt-BR/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-29 20:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 19:10+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493497230.000000\n"
+"X-POOTLE-MTIME: 1497985818.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "quebra de coluna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Inserir $1"
@@ -899,7 +899,7 @@ msgstr "Inserir $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Excluir $1"
@@ -907,26 +907,66 @@ msgstr "Excluir $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributos alterados"
+msgstr "Atributos modificados"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabela alterada"
+msgstr "Tabela modificada"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Estilo alterado"
+msgstr "Estilo modificado"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formatação do parágrafo modificada"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Inserir linha"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Excluir linha"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Inserir célula"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Excluir célula"
#: undo.src
msgctxt ""
diff --git a/source/pt-BR/sw/source/uibase/docvw.po b/source/pt-BR/sw/source/uibase/docvw.po
index 9ff463160c8..d45f795f4a7 100644
--- a/source/pt-BR/sw/source/uibase/docvw.po
+++ b/source/pt-BR/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-05-02 02:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 19:11+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462155607.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497985863.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Estilos de parágrafo aplicados"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formatação do parágrafo modificada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Linha inserida"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Linha excluída"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Célula inserida"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Célula excluída"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/pt-BR/sw/source/uibase/ribbar.po b/source/pt-BR/sw/source/uibase/ribbar.po
index b3b72bbd0ac..b4f06f8cec3 100644
--- a/source/pt-BR/sw/source/uibase/ribbar.po
+++ b/source/pt-BR/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-22 18:42+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 19:05+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482432126.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497985527.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Texto da fórmula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Texto da fórmula"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/pt-BR/sw/source/uibase/uiview.po b/source/pt-BR/sw/source/uibase/uiview.po
index 32eafff2c6a..b0fb90258d5 100644
--- a/source/pt-BR/sw/source/uibase/uiview.po
+++ b/source/pt-BR/sw/source/uibase/uiview.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-12 01:10+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 19:05+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457745010.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497985507.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Exportar origem..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Exportar uma cópia da fonte..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/pt-BR/xmlsecurity/uiconfig/ui.po b/source/pt-BR/xmlsecurity/uiconfig/ui.po
index de77c5c08f8..f41e9607c0b 100644
--- a/source/pt-BR/xmlsecurity/uiconfig/ui.po
+++ b/source/pt-BR/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-17 18:57+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 19:03+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492455435.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497985414.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Remover"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Iniciar o gerenciador de certificados..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/pt/desktop/source/deployment/gui.po b/source/pt/desktop/source/deployment/gui.po
index 1aebe54547e..e109088332b 100644
--- a/source/pt/desktop/source/deployment/gui.po
+++ b/source/pt/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 05:57+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:16+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467698279.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497996981.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "A instalação de extensões está desativada. Consulte o administrador de sistemas para mais informações."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "A remoção de extensões está desativada. Consulte o administrador de sistemas para mais informações."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/pt/filter/source/config/fragments/filters.po b/source/pt/filter/source/config/fragments/filters.po
index 2314b24f363..817c2cc750b 100644
--- a/source/pt/filter/source/config/fragments/filters.po
+++ b/source/pt/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-01 23:08+0000\n"
+"PO-Revision-Date: 2017-06-08 21:36+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493680100.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496957770.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/pt/filter/source/config/fragments/types.po b/source/pt/filter/source/config/fragments/types.po
index a73ccca1c81..10010e56a42 100644
--- a/source/pt/filter/source/config/fragments/types.po
+++ b/source/pt/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-01 23:08+0000\n"
+"PO-Revision-Date: 2017-06-08 21:36+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1493680102.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496957775.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/sbasic/shared.po b/source/pt/helpcontent2/source/text/sbasic/shared.po
index c5429afd64a..bdab219a487 100644
--- a/source/pt/helpcontent2/source/text/sbasic/shared.po
+++ b/source/pt/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-28 21:08+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-21 00:11+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496005731.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498003872.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -478,14 +478,46 @@ msgctxt ""
"par_id051920171018124524\n"
"help.text"
msgid "This function is enabled with the statement <item type=\"literal\">Option VBASupport 1</item> placed before the executable program code in a module."
-msgstr ""
+msgstr "Esta função é ativada com a instrução <item type=\"literal\">Option VBASupport 1</item> imediatamente antes do código executável existente no módulo."
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr "<variable id=\"functsyntax\">Sintaxe:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr "<variable id=\"functvalue\">Valor de retorno:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr "<variable id=\"functparameters\">Parâmetros:</variable>"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr "<variable id=\"functexample\">Exemplo:</variable>"
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr "<variable id=\"errorcode\">Códigos de erro</variable>"
#: 00000003.xhp
@@ -1350,7 +1382,7 @@ msgctxt ""
"par_id31455973\n"
"help.text"
msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err973\">973 não permitido dentro de um procedimento</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1358,7 +1390,7 @@ msgctxt ""
"par_id31455974\n"
"help.text"
msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err974\">974 não permitido fora de um procedimento</variable>"
#: 00000003.xhp
msgctxt ""
@@ -6662,7 +6694,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr ""
+msgstr "Adicionar o ícone de Informação à caixa de diálogo."
#: 03010101.xhp
msgctxt ""
@@ -6670,7 +6702,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "First button in the dialog as default button."
-msgstr ""
+msgstr "Primeiro botão na caixa de diálogo como botão padrão."
#: 03010101.xhp
msgctxt ""
@@ -6678,7 +6710,7 @@ msgctxt ""
"par_id3153765\n"
"help.text"
msgid "Second button in the dialog as default button."
-msgstr ""
+msgstr "Segundo botão da caixa de diálogo como botão padrão."
#: 03010101.xhp
msgctxt ""
@@ -6686,7 +6718,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "Third button in the dialog as default button."
-msgstr ""
+msgstr "Terceiro botão da caixa de diálogo como botão padrão."
#: 03010101.xhp
msgctxt ""
@@ -6830,7 +6862,7 @@ msgctxt ""
"par_id051220170241588881\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante com nome"
#: 03010102.xhp
msgctxt ""
@@ -6838,7 +6870,7 @@ msgctxt ""
"par_id051220170241585541\n"
"help.text"
msgid "Integer value"
-msgstr ""
+msgstr "Valor inteiro"
#: 03010102.xhp
msgctxt ""
@@ -6846,7 +6878,7 @@ msgctxt ""
"par_id051220170241585124\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definição"
#: 03010102.xhp
msgctxt ""
@@ -6854,7 +6886,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "Display OK button only."
-msgstr ""
+msgstr "Mostrar apenas o botão Aceitar."
#: 03010102.xhp
msgctxt ""
@@ -6862,7 +6894,7 @@ msgctxt ""
"par_id3145646\n"
"help.text"
msgid "Display OK and Cancel buttons."
-msgstr ""
+msgstr "Mostrar os botões Aceitar e Cancelar."
#: 03010102.xhp
msgctxt ""
@@ -6870,7 +6902,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "Display Abort, Retry, and Ignore buttons."
-msgstr ""
+msgstr "Mostrar os botões Cancelar, Tentar novamente e Ignorar."
#: 03010102.xhp
msgctxt ""
@@ -6878,7 +6910,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Display Yes, No, and Cancel buttons."
-msgstr ""
+msgstr "Mostrar os botões Sim, Não e Cancelar."
#: 03010102.xhp
msgctxt ""
@@ -6886,7 +6918,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Display Yes and No buttons."
-msgstr ""
+msgstr "Mostrar os botões Sim e Não."
#: 03010102.xhp
msgctxt ""
@@ -6894,7 +6926,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Display Retry and Cancel buttons."
-msgstr ""
+msgstr "Mostrar os botões Tentar novamente e Cancelar."
#: 03010102.xhp
msgctxt ""
@@ -6902,7 +6934,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "Add the Stop icon to the dialog."
-msgstr ""
+msgstr "Adicionar o ícone Parar à caixa de diálogo."
#: 03010102.xhp
msgctxt ""
@@ -6910,7 +6942,7 @@ msgctxt ""
"par_id3153837\n"
"help.text"
msgid "Add the Question icon to the dialog."
-msgstr ""
+msgstr "Adicionar o ícone Ponto de interrogação à caixa de diálogo."
#: 03010102.xhp
msgctxt ""
@@ -6918,7 +6950,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "Add the Exclamation Point icon to the dialog."
-msgstr ""
+msgstr "Adicionar o ícone Ponto de exclamação à caixa de diálogo."
#: 03010102.xhp
msgctxt ""
@@ -6926,7 +6958,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr ""
+msgstr "Adicionar o ícone Informação à caixa de diálogo."
#: 03010102.xhp
msgctxt ""
@@ -6934,7 +6966,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "First button in the dialog as default button."
-msgstr ""
+msgstr "Primeiro botão na caixa de diálogo como botão padrão."
#: 03010102.xhp
msgctxt ""
@@ -6942,7 +6974,7 @@ msgctxt ""
"par_id3153765\n"
"help.text"
msgid "Second button in the dialog as default button."
-msgstr ""
+msgstr "Segundo botão da caixa de diálogo como botão padrão."
#: 03010102.xhp
msgctxt ""
@@ -6950,7 +6982,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "Third button in the dialog as default button."
-msgstr ""
+msgstr "Terceiro botão da caixa de diálogo como botão padrão."
#: 03010102.xhp
msgctxt ""
@@ -7078,7 +7110,7 @@ msgctxt ""
"par_id051220170242005479\n"
"help.text"
msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Dialog title\")"
-msgstr ""
+msgstr "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Título da caixa de diálogo\")"
#: 03010103.xhp
msgctxt ""
@@ -12518,7 +12550,7 @@ msgctxt ""
"par_id3151099\n"
"help.text"
msgid "Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4"
-msgstr ""
+msgstr "Desde a versão 5.4 do %PRODUCTNAME tem suporte a anos inferiores a 100 e superiores a 9999."
#: 03030107.xhp
msgctxt ""
@@ -12614,7 +12646,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "Returns the internal date number from a string that contains a date in ISO format (YYYYMMDD or YYYY-MM-DD)."
-msgstr ""
+msgstr "Devolve o número de data interno de uma cadeia que contenha uma data no formato ISO (AAAAMMDD ou AAAA-MM-DD)"
#: 03030108.xhp
msgctxt ""
@@ -12646,7 +12678,7 @@ msgctxt ""
"par_id3148554\n"
"help.text"
msgid "The YYYY-MM-DD format with separators is supported since %PRODUCTNAME 5.3.4. Years less than 100 or greater than 9999 are accepted since %PRODUCTNAME 5.4 if not in VBA compatibility mode."
-msgstr ""
+msgstr "O formato AAAA-MM-DD, com separadores, é suportado desde o %PRODUCTNAME 5.3.4. Os anos menores do que 100 ou maiores do que 9999 são aceites desde o %PRODUCTNAME 5.4, a não ser que esteja no no modo de compatibilidade VBA."
#: 03030108.xhp
msgctxt ""
@@ -12686,7 +12718,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<emph>String:</emph> A string that contains a date in ISO format."
-msgstr ""
+msgstr "<emph>Cadeia:</emph> uma cadeia de caracteres que contenha a data no formato ISO."
#: 03030108.xhp
msgctxt ""
@@ -15014,7 +15046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic Constants"
-msgstr ""
+msgstr "Constantes do BASIC"
#: 03040000.xhp
msgctxt ""
@@ -15022,7 +15054,7 @@ msgctxt ""
"bm_id051720170831387233\n"
"help.text"
msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pi;Constante do Basic</bookmark_value> <bookmark_value>Null;Constante do Basic</bookmark_value> <bookmark_value>Empty;Constante do Basic</bookmark_value> <bookmark_value>Nothing;Constante do Basic</bookmark_value> <bookmark_value>Constante do Basic;Nothing</bookmark_value> <bookmark_value>Constante do Basic;Null</bookmark_value> <bookmark_value>Constante do Basic;Empty</bookmark_value> <bookmark_value>Constante do Basic;Pi</bookmark_value> <bookmark_value>Constante do Basic;False</bookmark_value> <bookmark_value>Constante do Basic;True</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15030,7 +15062,7 @@ msgctxt ""
"hd_id051620171022255424\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03040000.xhp\">Basic Constants</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03040000.xhp\">Constantes do Basic</link>"
#: 03040000.xhp
msgctxt ""
@@ -15038,7 +15070,7 @@ msgctxt ""
"par_id051620171022384640\n"
"help.text"
msgid "<ahelp hid=\".\">Constants used in Basic programs</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Constantes utilizadas no Basic</ahelp>"
#: 03040000.xhp
msgctxt ""
@@ -15046,7 +15078,7 @@ msgctxt ""
"par_id051620171022382581\n"
"help.text"
msgid "Boolean constants"
-msgstr ""
+msgstr "Constantes booleanas"
#: 03040000.xhp
msgctxt ""
@@ -15054,7 +15086,7 @@ msgctxt ""
"par_id051620171114565335\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: 03040000.xhp
msgctxt ""
@@ -15062,7 +15094,7 @@ msgctxt ""
"par_id051620171114565484\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: 03040000.xhp
msgctxt ""
@@ -15070,7 +15102,7 @@ msgctxt ""
"par_id051620171114563271\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#: 03040000.xhp
msgctxt ""
@@ -15078,7 +15110,7 @@ msgctxt ""
"hd_id051620171114566623\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemplo"
#: 03040000.xhp
msgctxt ""
@@ -15086,7 +15118,7 @@ msgctxt ""
"hd_id051620171114573549\n"
"help.text"
msgid "Mathematical constant"
-msgstr ""
+msgstr "Constantes matemáticas"
#: 03040000.xhp
msgctxt ""
@@ -15094,7 +15126,7 @@ msgctxt ""
"par_id051620171114576150\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: 03040000.xhp
msgctxt ""
@@ -15102,7 +15134,7 @@ msgctxt ""
"par_id051620171114575122\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: 03040000.xhp
msgctxt ""
@@ -15110,7 +15142,7 @@ msgctxt ""
"par_id051620171114574987\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#: 03040000.xhp
msgctxt ""
@@ -15118,7 +15150,7 @@ msgctxt ""
"hd_id051620171114571721\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemplo"
#: 03040000.xhp
msgctxt ""
@@ -15126,7 +15158,7 @@ msgctxt ""
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
-msgstr ""
+msgstr "Constantes de objetos"
#: 03040000.xhp
msgctxt ""
@@ -15134,7 +15166,7 @@ msgctxt ""
"par_id051620171114576921\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: 03040000.xhp
msgctxt ""
@@ -15142,7 +15174,7 @@ msgctxt ""
"par_id051620171114578188\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: 03040000.xhp
msgctxt ""
@@ -15150,7 +15182,7 @@ msgctxt ""
"par_id051720170824099845\n"
"help.text"
msgid "Usage"
-msgstr ""
+msgstr "Utilização"
#: 03040000.xhp
msgctxt ""
@@ -15158,7 +15190,7 @@ msgctxt ""
"par_id05172017082409622\n"
"help.text"
msgid "The <emph>Empty</emph> value indicates that the variable is not initialized."
-msgstr ""
+msgstr "O valor <emph>Empty</emph> indica que a variável não foi inicializada."
#: 03040000.xhp
msgctxt ""
@@ -15166,7 +15198,7 @@ msgctxt ""
"par_id051720170824093395\n"
"help.text"
msgid "Indicates that the variable does not contain data."
-msgstr ""
+msgstr "Indica que a variável não contém dados."
#: 03040000.xhp
msgctxt ""
@@ -15174,7 +15206,7 @@ msgctxt ""
"par_id051720170824097935\n"
"help.text"
msgid "Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
-msgstr ""
+msgstr "atribua o objeto <emph>Nothing</emph> a uma variável para o remover a atribuição anterior."
#: 03040000.xhp
msgctxt ""
@@ -15182,7 +15214,7 @@ msgctxt ""
"hd_id051620171114572289\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Exemplo"
#: 03050000.xhp
msgctxt ""
@@ -23694,7 +23726,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "cCur=Currency ' cCur is an implicit currency variable"
-msgstr ""
+msgstr "cCur=Currency ' cCur é uma variável monetária implícita"
#: 03101120.xhp
msgctxt ""
@@ -25870,7 +25902,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option VBASupport Statement [Runtime]"
-msgstr ""
+msgstr "Instrução Option VBASupport [Runtime]"
#: 03103350.xhp
msgctxt ""
@@ -25878,7 +25910,7 @@ msgctxt ""
"bm_id3145090\n"
"help.text"
msgid "<bookmark_value>MS Excel macros support;Enable</bookmark_value> <bookmark_value>MS Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suporte a macros do MS Excel;Ativar</bookmark_value> <bookmark_value>suporte a macros do MS Excel macros;Instrução Option VBASupport </bookmark_value> <bookmark_value>suporte a VBA;Instrução Option VBASupport </bookmark_value> <bookmark_value>Instrução Option VBASupport</bookmark_value>"
#: 03103350.xhp
msgctxt ""
@@ -25886,7 +25918,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Instrução Option VBASupport [Runtime]</link>"
#: 03103350.xhp
msgctxt ""
@@ -25894,7 +25926,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "Specifies that %PRODUCTNAME Basic will support some VBA statements, functions and objects."
-msgstr ""
+msgstr "Especifica que o %PRODUCTNAME Basic terá suporte a algumas instruções, funções e objetos VBA."
#: 03103350.xhp
msgctxt ""
@@ -25902,7 +25934,7 @@ msgctxt ""
"par_id051720171055367194\n"
"help.text"
msgid "The support for VBA is not complete, but covers a large portion of the common usage patterns."
-msgstr ""
+msgstr "O suporte a VBA ainda não está completo mas já abrange uma grande parte dos padrões normais de utilização."
#: 03103350.xhp
msgctxt ""
@@ -25910,7 +25942,7 @@ msgctxt ""
"hd_id3149763\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaxe:"
#: 03103350.xhp
msgctxt ""
@@ -25918,7 +25950,7 @@ msgctxt ""
"hd_id3145315\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parâmetros:"
#: 03103350.xhp
msgctxt ""
@@ -25926,7 +25958,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgstr "Esta instrução terá de ser adicionada a um módulo antes do código do programa executável."
#: 03103350.xhp
msgctxt ""
@@ -25934,7 +25966,7 @@ msgctxt ""
"par_id051720171055361727\n"
"help.text"
msgid "1: Enable VBA support in %PRODUCTNAME"
-msgstr ""
+msgstr "1: ativa o suporte ao VBA"
#: 03103350.xhp
msgctxt ""
@@ -25942,7 +25974,7 @@ msgctxt ""
"par_id051720171055369857\n"
"help.text"
msgid "0: Disable VBA support"
-msgstr ""
+msgstr "0: desativa o suporte ao VBA"
#: 03103350.xhp
msgctxt ""
@@ -25950,7 +25982,7 @@ msgctxt ""
"hd_id3125864\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemplo:"
#: 03103350.xhp
msgctxt ""
@@ -25958,7 +25990,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Propriedades VBA</link>"
#: 03103350.xhp
msgctxt ""
@@ -25966,7 +25998,7 @@ msgctxt ""
"par_id051720170424259343\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/vbasupport.xhp\">VBA support in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/vbasupport.xhp\">Suporte a VBA no %PRODUCTNAME</link>"
#: 03103400.xhp
msgctxt ""
@@ -26222,7 +26254,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "TypeName (Variable) / VarType (Variable)"
-msgstr ""
+msgstr "TypeName (Variável) / VarType (Variável)"
#: 03103600.xhp
msgctxt ""
@@ -26270,7 +26302,7 @@ msgctxt ""
"par_id051620170608269696\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "Constante com nome"
#: 03103600.xhp
msgctxt ""
@@ -26310,7 +26342,7 @@ msgctxt ""
"par_id051620170608331416\n"
"help.text"
msgid "Currency variable"
-msgstr ""
+msgstr "Variável monetária"
#: 03103600.xhp
msgctxt ""
@@ -26550,7 +26582,7 @@ msgctxt ""
"par_id3153104\n"
"help.text"
msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
-msgstr ""
+msgstr "\"TextEdit1\" to TextEdit5\" num ciclo para criar cinco nomes de controlo."
#: 03103800.xhp
msgctxt ""
@@ -27014,7 +27046,7 @@ msgctxt ""
"par_id3154939\n"
"help.text"
msgid "a = DimArray( 2, 2, 4 ) ' is the same as DIM a( 2, 2, 4 )"
-msgstr ""
+msgstr "a = DimArray( 2, 2, 4 ) ' produz o mesmo resultado que DIM a( 2, 2, 4 )"
#: 03104400.xhp
msgctxt ""
@@ -27318,7 +27350,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "' Copy of objects -> same instance"
-msgstr ""
+msgstr "' Copy of objects -> mesma instância"
#: 03104600.xhp
msgctxt ""
@@ -27326,7 +27358,7 @@ msgctxt ""
"par_id3153525\n"
"help.text"
msgid "' Copy of structs as value -> new instance"
-msgstr ""
+msgstr "' Copy of structs as value -> nova instância"
#: 03104700.xhp
msgctxt ""
@@ -28150,7 +28182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AscW Function [Runtime]"
-msgstr ""
+msgstr "Função AscW [Runtime]"
#: 03120111.xhp
msgctxt ""
@@ -28158,7 +28190,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>AscW function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Função AscW</bookmark_value>"
#: 03120111.xhp
msgctxt ""
@@ -28166,7 +28198,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">AscW Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [Runtime - VBA]\">Função AscW [Runtime - VBA]</link>"
#: 03120111.xhp
msgctxt ""
@@ -28174,7 +28206,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the Unicode value of the first character in a string expression."
-msgstr ""
+msgstr "Devolve o valor Unicode do primeiro carácter de um expressão de cadeia."
#: 03120111.xhp
msgctxt ""
@@ -28182,7 +28214,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaxe:"
#: 03120111.xhp
msgctxt ""
@@ -28190,7 +28222,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "AscW (Text As String)"
-msgstr ""
+msgstr "AscW (Text As String)"
#: 03120111.xhp
msgctxt ""
@@ -28198,7 +28230,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Return value:"
-msgstr ""
+msgstr "Valor devolvido:"
#: 03120111.xhp
msgctxt ""
@@ -28206,7 +28238,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "Integer"
-msgstr ""
+msgstr "Inteiro"
#: 03120111.xhp
msgctxt ""
@@ -28214,7 +28246,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parâmetros:"
#: 03120111.xhp
msgctxt ""
@@ -28222,7 +28254,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
-msgstr ""
+msgstr "<emph>Texto:</emph> qualquer cadeia de caracteres válida. Apenas o primeiro carácter na cadeia de caracteres é relevante."
#: 03120111.xhp
msgctxt ""
@@ -28238,7 +28270,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemplo:"
#: 03120111.xhp
msgctxt ""
@@ -28246,7 +28278,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "Print AscW(\"A\") ' returns 65"
-msgstr ""
+msgstr "Print AscW(\"A\") ' devolve 65"
#: 03120111.xhp
msgctxt ""
@@ -28254,7 +28286,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Print AscW(\"Ω\") ' returns 937"
-msgstr ""
+msgstr "Print AscW(\"Ω\") ' devolve 937"
#: 03120111.xhp
msgctxt ""
@@ -28270,7 +28302,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120111.xhp
msgctxt ""
@@ -28278,7 +28310,7 @@ msgctxt ""
"par_id051920171027053197\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\">ChrW</link>"
#: 03120111.xhp
msgctxt ""
@@ -28286,7 +28318,7 @@ msgctxt ""
"par_id051920171027051338\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28294,7 +28326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChrW Function [Runtime -VBA]"
-msgstr ""
+msgstr "Função ChrW [Runtime -VBA]"
#: 03120112.xhp
msgctxt ""
@@ -28374,7 +28406,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemplo:"
#: 03120112.xhp
msgctxt ""
@@ -28406,7 +28438,7 @@ msgctxt ""
"par_id051920171010491586\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">Chr</link>"
#: 03120112.xhp
msgctxt ""
@@ -28414,7 +28446,7 @@ msgctxt ""
"par_idN10668\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">Asc</link>"
#: 03120112.xhp
msgctxt ""
@@ -28422,7 +28454,7 @@ msgctxt ""
"par_id051920171009414669\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\">AscW</link>"
#: 03120200.xhp
msgctxt ""
@@ -31078,7 +31110,7 @@ msgctxt ""
"hd_id3154366\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Exemplo:"
#: 03120411.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Esta função devolve o contexto do componente a utilizar, na ocorrência de serviços por XmultiServiceFactory. Consulte o capítulo <item type=\"literal\">Professional UNO</item> do <item type=\"literal\">Guia do programador</item> em <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> para mais informações."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>Custo</emph> é o custo inicial de um ativo."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>Valor_residual</emph> é o valor de um ativo no fim da vida útil."
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -34158,7 +34982,7 @@ msgctxt ""
"hd_id051720170400533411\n"
"help.text"
msgid "Editing VBA Macros"
-msgstr ""
+msgstr "Editar macros VBA"
#: vbasupport.xhp
msgctxt ""
@@ -34166,7 +34990,7 @@ msgctxt ""
"par_id051720170400532486\n"
"help.text"
msgid "VBA macros can be edited in the %PRODUCTNAME Basic IDE."
-msgstr ""
+msgstr "As macros VBA podem ser editadas no IDE do %PRODUCTNAME Basic."
#: vbasupport.xhp
msgctxt ""
@@ -34174,7 +34998,7 @@ msgctxt ""
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Propriedades VBA</link>"
#: vbasupport.xhp
msgctxt ""
@@ -34182,4 +35006,4 @@ msgctxt ""
"par_id051720170407401872\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01030000.xhp\">%PRODUCTNAME Basic IDE</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\">IDEO do %PRODUCTNAME Basic</link>"
diff --git a/source/pt/helpcontent2/source/text/scalc/00.po b/source/pt/helpcontent2/source/text/scalc/00.po
index 5898e8eaa84..f8325512c84 100644
--- a/source/pt/helpcontent2/source/text/scalc/00.po
+++ b/source/pt/helpcontent2/source/text/scalc/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-28 21:09+0000\n"
+"PO-Revision-Date: 2017-06-08 22:01+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496005751.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496959303.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3146776\n"
"help.text"
msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External data</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eiextdata\">Escolha <emph>Folha - Ligar a dados externos</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exdektv\">Escolha <emph>Ferramentas - Auditoria</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"silbentrennungc\">Menu <emph>Ferramentas - Idioma - Hifenização</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"par_id3145785\n"
"help.text"
msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exdvore\">Escolha <emph>Ferramentas - Auditoria - Remover precedentes</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exdszne\">Escolha <emph>Ferramentas - Auditoria - Remover dependentes</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3154014\n"
"help.text"
msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exdase\">Escolha <emph>Ferramentas - Auditoria - Remover todos os rastreios</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exdszfe\">Escolha <emph>Ferramentas - Auditoria - Rastrear erro</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"fuellmodus\">Escolha <emph>Ferramentas - Auditoria - Modo de preenchimento</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3156284\n"
"help.text"
msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"dateneinkreisen\">Escolha <emph>Ferramentas - Auditoria - Marcar dados inválidos</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3153159\n"
"help.text"
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"spurenaktualisieren\">Escolha <emph>Ferramentas - Auditoria - Atualizar rastreios</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"automatisch\">Escolha <emph>Ferramentas - Auditoria - Atualização automática</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3154018\n"
"help.text"
msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exzws\">Escolha <emph>Ferramentas - Atingir objetivo</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3269142\n"
"help.text"
msgid "<variable id=\"solver\">Choose <emph>Tools - Solver</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"solver\">Escolha <emph>Ferramentas - Sistema de resolução</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id8554338\n"
"help.text"
msgid "<variable id=\"solver_options\">Choose <emph>Tools - Solver</emph>, <emph>Options</emph> button </variable>"
-msgstr ""
+msgstr "<variable id=\"solver_options\">Escolha <emph>Ferramentas - Sistema de resolução</emph> - <emph>Opções</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3146919\n"
"help.text"
msgid "Choose <emph>Data - Calculate - Recalculate</emph>"
-msgstr ""
+msgstr "Escolha <emph>Dados - Calcular - Recalcular</emph>"
#: 00000406.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3150941\n"
"help.text"
msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"exatmb\">Escolha <emph>Dados - Calcular - Cálculo automático</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3151276\n"
"help.text"
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - AutoInput</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"autoeingabe\">Escolha <emph>Ferramentas - Preenchimento automático</emph></variable>"
#: 00000407.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/scalc/01.po b/source/pt/helpcontent2/source/text/scalc/01.po
index 0c492dfeea8..ccce447c486 100644
--- a/source/pt/helpcontent2/source/text/scalc/01.po
+++ b/source/pt/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-28 21:15+0000\n"
+"PO-Revision-Date: 2017-06-08 22:10+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496006124.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496959800.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_idN10A96\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scenariomenu/edit\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/scenariomenu/edit\">Abre a caixa de diálogo <link href=\"text/scalc/01/06050000.xhp\">Editar cenário</link>, na qual pode editar as propriedades do cenário.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id3146938\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/hyperlink\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/dropmenu/hyperlink\">Insere uma hiperligação ao arrastar e largar um objeto do Navegador para o documento.</ahelp> Pode depois clicar na hiperligação criada para definir o cursor e a vista para o respetivo objeto."
#: 02110000.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3150746\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/link\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/dropmenu/link\">Cria uma ligação ao arrastar e largar um objeto do Navegador para o documento.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3147471\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/dropmenu/copy\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/dropmenu/copy\">Cria uma cópia ao arrastar e largar um objeto do Navegador para o documento.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_idN105D1\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a sheet from a different spreadsheet file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Insere uma folha a partir de uma folha de cálculo distinta.</ahelp>"
#: 04050100.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
-msgstr ""
+msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Abre o <emph>Assistente de funções</emph>, que ajuda o utilizador a criar fórmulas de forma interativa.</ahelp></variable> Antes de iniciar o assistente, selecione uma célula ou intervalo de células da folha atual, para determinar a posição na qual será inserida a fórmula."
#: 04060000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"hd_id3154731\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Procurar"
#: 04060000.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3155440\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/functionpage/search\">Search for a part of the function name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/functionpage/search\">Procura por uma parte do nome da função.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3446,7 +3446,7 @@ msgctxt ""
"par_id3153417\n"
"help.text"
msgid "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
-msgstr ""
+msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Mostra uma lista de todas as categorias às quais são atribuídas as várias funções. Selecione uma categoria para ver as funções no campo de lista abaixo.</ahelp> Selecione \"Todas\" para ver todas as funções por ordem alfabética, independentemente da sua categoria. A categoria \"Recentes\" mostra a lista das funções utilizadas recentemente.</variable>"
#: 04060000.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
-msgstr ""
+msgstr "Você também pode explorar a <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">Lista de categorias e funções</link>"
#: 04060000.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3155445\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/functionpage/function\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/functionpage/function\">Mostra as funções pertencentes à categoria selecionada. Clique duas vezes para selecionar uma função.</ahelp> Um clique mostra uma breve descrição da função."
#: 04060000.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id3149566\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/array\">Especifica que a função selecionada é inserida no intervalo de células selecionado como fórmula de matriz.</ahelp> As fórmulas de matriz funcionam em células múltiplas. Cada célula da matriz contém a fórmula, não como cópia, mas como fórmula comum partilhada por todas as células matrizes."
#: 04060000.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Permite aceder a um nível subordinado do <emph>Assistente de funções</emph> de modo a imbricar uma função em outra função, em vez de um valor ou referência.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_id3159097\n"
"help.text"
msgid "The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table."
-msgstr ""
+msgstr "O número de campos de texto visíveis depende da função. Introduza os argumentos diretamente nos campos do argumento ou clicando na célula da tabela."
#: 04060000.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3150211\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Displays the calculation result or an error message.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/formula_result\">Mostra o resultado da função ou uma mensagem de erro.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_id3149898\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Mostra a fórmula criada. Introduza as entradas diretamente ou crie a fórmula com o assistente.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -24134,7 +24134,7 @@ msgctxt ""
"par_id3156074\n"
"help.text"
msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
-msgstr ""
+msgstr "<item type=\"input\">COMPACTAR(\" Olá mundo \")</item> devolve Olá mundo, sem os espaços antes e depois do texto e com apenas um espaço entre as palavras."
#: 04060110.xhp
msgctxt ""
@@ -47102,7 +47102,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the area as a print range.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define a área como um intervalo de impressão.</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -47118,7 +47118,7 @@ msgctxt ""
"par_id3155766\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Define a área selecionada a ser utilizada no <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">filtro avançado</link>.</ahelp>"
#: 04070100.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared.po b/source/pt/helpcontent2/source/text/shared.po
index f059c36ecf0..c182eae24f8 100644
--- a/source/pt/helpcontent2/source/text/shared.po
+++ b/source/pt/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-03 16:06+0000\n"
+"PO-Revision-Date: 2017-06-13 22:04+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496505994.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497391472.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "Select an extrusion depth."
-msgstr ""
+msgstr "Selecione a profundidade de extrusão."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "Select a perspective or parallel extrusion method."
-msgstr ""
+msgstr "Selecione o método de extrusão em perspetiva ou em paralelo."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "Select a lighting direction."
-msgstr ""
+msgstr "Selecione a direção de iluminação."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "Select a lighting intensity."
-msgstr ""
+msgstr "Seleciona a intensidade de iluminação."
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Click to apply the alignment to the selected Fontwork objects."
-msgstr ""
+msgstr "Clique para aplicar o alinhamento aos objetos Fontwork selecionados."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_idN1060E\n"
"help.text"
msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr ""
+msgstr "Clique para aplicar o espaçamento de caracteres aos objetos Fontwork selecionados."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr ""
+msgstr "Abre a caixa de diálogo Espaçamento entre caracteres Fontwork, na qual pode introduzir um novo valor para o espaçamento entre os caracteres."
#: fontwork_toolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr ""
+msgstr "Ativa e desativa o <link href=\"text/shared/00/00000005.xhp#kerning\">kerning</link> dos pares de caracteres."
#: main0108.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/00.po b/source/pt/helpcontent2/source/text/shared/00.po
index 80fe20b4c92..7c53949e1ba 100644
--- a/source/pt/helpcontent2/source/text/shared/00.po
+++ b/source/pt/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-23 23:49+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 20:55+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495583369.000000\n"
+"X-POOTLE-MTIME: 1497819344.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -198,7 +198,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#metrik\" name=\"units of measurement\">units of measurement</link>. The default unit is inches. However, if you want a space of exactly 1cm, 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 "Nos campos de entrada, pode introduzir valores em diversas <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measurement\">unidades de medida</link>. A unidade padrão é polegadas. No entanto, caso pretenda um espaço de 1 cm, digite \"1cm\". Consoante o contexto, estão disponíveis outras unidades como, por exemplo, 12 pt para um espaçamento de 12 pontos. Se o valor da nova unidade não se adequar à realidade, o programa utilizará um valor máximo ou mínimo pré-definido."
#: 00000001.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3153581\n"
"help.text"
msgid "On the <emph>Print Preview</emph> bar of a text document, click"
-msgstr ""
+msgstr "Na barra <emph>Pré-visualizar impressão</emph> de um documento de texto, clique em"
#: 00000401.xhp
msgctxt ""
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Escolha <emph>Ferramentas - Numeração de tópicos - Posição</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Ícone na barra de ferramentas <emph>Imagem</emph>:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/01.po b/source/pt/helpcontent2/source/text/shared/01.po
index a60a1f770d5..783149ddac2 100644
--- a/source/pt/helpcontent2/source/text/shared/01.po
+++ b/source/pt/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-23 23:53+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-18 21:19+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495583615.000000\n"
+"X-POOTLE-MTIME: 1497820771.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"bm_id3145211\n"
"help.text"
msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>diretórios;criar novo</bookmark_value> <bookmark_value>criação de pastas</bookmark_value> <bookmark_value>pasta Meus documentos;abrir</bookmark_value> <bookmark_value>vários documentos;abrir</bookmark_value> <bookmark_value>abrir;vários ficheiros</bookmark_value><bookmark_value>selecionar;vários ficheiros</bookmark_value> <bookmark_value>abrir; ficheiros com marcadores de posição</bookmark_value> <bookmark_value>marcadores de posição;abrir ficheiros</bookmark_value> <bookmark_value>documentos; abrir com modelos</bookmark_value> <bookmark_value>modelos;abrir documentos com</bookmark_value> <bookmark_value>documentos;estilos aterados</bookmark_value> <bookmark_value>estilos;mensagem 'alterado'</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id3150713\n"
"help.text"
msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
-msgstr ""
+msgstr "Se o ficheiro que pretende abrir incluir estilos, aplicam-se <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">regras especiais</link>."
#: 01020000.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Subir uma pasta na hierarquia. Clique longo para ver as pastas de nível superior.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_id3156293\n"
"help.text"
msgid "If you opened the dialog by choosing <emph>Insert - Document</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
-msgstr ""
+msgstr "Se tiver aberto a caixa de diálogo, escolhendo <emph>Inserir - Documento</emph>, o botão <emph>Abrir</emph> estará identificado como <emph>Inserir</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Insere o ficheiro selecionado no documento atual, na posição do cursor.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Se utilizar <item type=\"menuitem\">Ficheiro - Modelo - Guardar como modelo</item> para guardar um modelo, este será guardado na pasta de modelos do utilizador. Ao abrir um documento baseado nesse modelo, este é verificado para averiguar se existe um modelo alterado, conforme descrito abaixo. O modelo é associado ao documento, podendo ser chamado de \"modelo fixo\"."
#: 01020000.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
-msgstr ""
+msgstr "Para quebrar a ligação entre o documento e o modelo em falta, clique em <emph>Não</emph>, caso contrário, o <item type=\"productname\">%PRODUCTNAME</item> procurará o modelo na próxima vez que o documento for aberto."
#: 01020000.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id3157322\n"
"help.text"
msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
-msgstr ""
+msgstr "Certifique-se de que a opção Horizontal ou Vertical, definida na caixa de diálogo de propriedades da impressora, corresponde ao formato de página definido escolhendo <emph>Formatar - Página</emph>."
#: 01140000.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"par_id201612110239454950\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/options\">Opens the <emph>Printer Options</emph> dialog where you can override the global printer options set on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Print</emph> panel for the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/options\">Abre a caixa de diálago <emph>Opções da impressora</emph>, na qual pode sobrepor as definições globais de impressão, especificadas em <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferências</emph></caseinline><defaultinline><emph>Ferramentas - Opções</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Imprimir</emph>, para o documento atual.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -4542,7 +4542,7 @@ msgctxt ""
"par_id3157323\n"
"help.text"
msgid "The <emph>Options</emph> button is only available in %PRODUCTNAME Writer and Calc."
-msgstr ""
+msgstr "O botão <emph>Opções</emph> apenas está disponível no %PRODUCTNAME Writer e Calc."
#: 01160000.xhp
msgctxt ""
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Selecione o estilo de parágrafo ou nível de tópicos que deseja utilizar, para separar o documento de origem em subdocumentos.</ahelp> Por norma, é criado um novo documento para cada nível 1 de tópicos."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"par_id3151299\n"
"help.text"
msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> This command does not exist on macOS systems."
-msgstr ""
+msgstr "<ahelp hid=\".\">Fecha todos os programas do $[officename] e pergunta se o utilizador deseja guardar as alterações.</ahelp> Este comando não existe em sistemas Mac."
#: 01170000.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"par_id3149893\n"
"help.text"
msgid "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Finds or replaces text or formats in the current document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Localiza ou substitui texto ou formatos do documento atual.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to find, or select a previous search from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Introduza o texto que pretende localizar ou selecione uma procura anterior na lista.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "Search options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr ""
+msgstr "As opções de procura estão listadas na caixa <emph>Substituir</emph> e na área <emph>Outras opções</emph> da caixa de diálogo."
#: 02100000.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"hd_id3154924\n"
"help.text"
msgid "Match case"
-msgstr ""
+msgstr "Maiúsculas/minúsculas"
#: 02100000.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Faz a distinção entre letras maiúsculas e minúsculas.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Células completas</caseinline><defaultinline>Apenas palavras completas</defaultinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3149579\n"
"help.text"
msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Procura por palavras inteiras idênticas ao texto de procura.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"hd_id3152960\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">All sheets</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Todas as folhas</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"par_id3145619\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Procura em todas as folhas do ficheiro atual.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id3150506\n"
"help.text"
msgid "Replacement options are listed under the <emph>Replace</emph> box and in the <emph>Other options</emph> area of the dialog."
-msgstr ""
+msgstr "As opções de substituição estão listadas na caixa <emph>Substituir</emph> e na área <emph>Outras opções</emph> da caixa de diálogo."
#: 02100000.xhp
msgctxt ""
@@ -6118,7 +6118,7 @@ msgctxt ""
"par_id301020161412471558\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/backsearch\">Finds and selects the previous occurrence of the text or format that you are searching for in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/backsearch\">Localiza e seleciona a ocorrência anterior do texto ou formato que está a procurar.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you are searching for in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/search\">Localiza e seleciona a ocorrência seguinte do texto ou formato que está a procurar.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3145660\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Substitui todas as ocorrências do texto ou formato que pretende substituir.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Repita o comando até serem realizadas todas as substituições no dispositivo.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Shows more or fewer search options. Click this label again to hide the extended search options.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Mostra mais ou menos opções de procura. Clique novamente neste botão para ocultar as opções avançadas de procura.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "Current selection only"
-msgstr ""
+msgstr "Apenas seleção atual"
#: 02100000.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_id3150866\n"
"help.text"
msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Procura apenas no texto ou células selecionadas.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"hd_id3156192\n"
"help.text"
msgid "Replace backwards"
-msgstr ""
+msgstr "Substituir para trás"
#: 02100000.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/replace_backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/replace_backwards\">A procura tem início na posição atual do cursor e recua até ao início do ficheiro.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id8876918\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Procura o texto formatado com o estilo especificado. Selecione esta caixa e, em seguida, selecione um estilo na lista Localizar. Para especificar um estilo de substituição, selecione um estilo na lista Substituir.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6262,7 +6262,7 @@ msgctxt ""
"hd_id3153524\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraph Styles / Including Styles</caseinline><caseinline select=\"CALC\">Cell Styles</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Estilos de parágrafos/Incluir estilos</caseinline><caseinline select=\"CALC\">Estilos de células</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -8142,7 +8142,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Ícone</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Ícone</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id3159166\n"
"help.text"
msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Ícone</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Ícone</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id3149666\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Guarda uma cópia do conteúdo dos ficheiros associados ao modelo global de documentos. Este procedimento garante que o conteúdo atual está disponível quando não for possível aceder aos ficheiros associados.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Ícone</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"par_id3155852\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Move a seleção uma posição para baixo na lista do Navegador.</ahelp> Também é possível mover entradas, arrastando e largando-as na posição da lista. Se mover uma secção de texto para outra, as secções de texto serão unidas."
#: 02110000.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"par_id3154790\n"
"help.text"
msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Ícone</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -9038,7 +9038,7 @@ msgctxt ""
"hd_id3146957\n"
"help.text"
msgid "Scroll Bar"
-msgstr ""
+msgstr "Barra de deslocação"
#: 02210101.xhp
msgctxt ""
@@ -9214,7 +9214,7 @@ msgctxt ""
"hd_id3150866\n"
"help.text"
msgid "Default"
-msgstr ""
+msgstr "Padrão"
#: 02210101.xhp
msgctxt ""
@@ -13782,7 +13782,7 @@ msgctxt ""
"hd_id3153971\n"
"help.text"
msgid "Denominator places"
-msgstr ""
+msgstr "Casas do denominador"
#: 05020300.xhp
msgctxt ""
@@ -14046,7 +14046,7 @@ msgctxt ""
"par_id3150902\n"
"help.text"
msgid "Placeholders"
-msgstr ""
+msgstr "Marcadores de posição"
#: 05020301.xhp
msgctxt ""
@@ -14054,7 +14054,7 @@ msgctxt ""
"par_id3157896\n"
"help.text"
msgid "Explanation"
-msgstr ""
+msgstr "Exposição"
#: 05020301.xhp
msgctxt ""
@@ -14062,7 +14062,7 @@ msgctxt ""
"par_id3145090\n"
"help.text"
msgid "Does not display extra zeros."
-msgstr ""
+msgstr "Não mostra zeros adicionais."
#: 05020301.xhp
msgctxt ""
@@ -14070,7 +14070,7 @@ msgctxt ""
"par_id3145091\n"
"help.text"
msgid "Displays space characters instead of extra zeros."
-msgstr ""
+msgstr "Mostra caracteres de espaço em vez de zeros adicionais."
#: 05020301.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "0 (Zero)"
-msgstr ""
+msgstr "0 (Zero)"
#: 05020301.xhp
msgctxt ""
@@ -14086,7 +14086,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "Displays extra zeros if the number has less places than zeros in the format."
-msgstr ""
+msgstr "Mostra zeros adicionais, caso o número possua menos casas do que zeros no formato."
#: 05020301.xhp
msgctxt ""
@@ -14102,7 +14102,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "Number Format"
-msgstr ""
+msgstr "Formato numérico"
#: 05020301.xhp
msgctxt ""
@@ -14110,7 +14110,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Format Code"
-msgstr ""
+msgstr "Código do formato"
#: 05020301.xhp
msgctxt ""
@@ -14118,7 +14118,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "3456.78 as 3456.8"
-msgstr ""
+msgstr "3456,78 como 3456,8"
#: 05020301.xhp
msgctxt ""
@@ -14126,7 +14126,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "9.9 as 9.900"
-msgstr ""
+msgstr "9,9 como 9,900"
#: 05020301.xhp
msgctxt ""
@@ -14134,7 +14134,7 @@ msgctxt ""
"par_id3147077\n"
"help.text"
msgid "13 as 13.0 and 1234.567 as 1234.57"
-msgstr ""
+msgstr "13 como 13,0 e 1234,567 como 1234,57"
#: 05020301.xhp
msgctxt ""
@@ -14142,7 +14142,7 @@ msgctxt ""
"par_id3149578\n"
"help.text"
msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
-msgstr ""
+msgstr "5,75 como 5 3/4 e 6,3 como 6 3/10"
#: 05020301.xhp
msgctxt ""
@@ -14150,7 +14150,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid ".5 as 0.5"
-msgstr ""
+msgstr ",5 como 0,5"
#: 05020301.xhp
msgctxt ""
@@ -14158,7 +14158,7 @@ msgctxt ""
"par_id3156153\n"
"help.text"
msgid ".5 as 0.5   (with two extra spaces at the end)"
-msgstr ""
+msgstr ",5 como 0,5   (com dois espaços extra no final)"
#: 05020301.xhp
msgctxt ""
@@ -14166,7 +14166,7 @@ msgctxt ""
"hd_id3149276\n"
"help.text"
msgid "Thousands Separator"
-msgstr ""
+msgstr "Separador dos milhares"
#: 05020301.xhp
msgctxt ""
@@ -14238,7 +14238,7 @@ msgctxt ""
"hd_id3148979\n"
"help.text"
msgid "Text and Text"
-msgstr ""
+msgstr "Texto e texto"
#: 05020301.xhp
msgctxt ""
@@ -14246,7 +14246,7 @@ msgctxt ""
"par_id3153338\n"
"help.text"
msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
-msgstr ""
+msgstr "Para incluir texto num formato numérico, delimite o texto por aspas (\" \") e, em seguida, adicione o sinal de arroba (@). Por exemplo, introduza <emph>\"Total de \"@</emph> para mostrar \"Total de dezembro\"."
#: 05020301.xhp
msgctxt ""
@@ -14254,7 +14254,7 @@ msgctxt ""
"hd_id3154330\n"
"help.text"
msgid "Spaces"
-msgstr ""
+msgstr "Espaços"
#: 05020301.xhp
msgctxt ""
@@ -14302,7 +14302,7 @@ msgctxt ""
"hd_id3147435\n"
"help.text"
msgid "Conditions"
-msgstr ""
+msgstr "Condições"
#: 05020301.xhp
msgctxt ""
@@ -14310,7 +14310,7 @@ msgctxt ""
"hd_id3148575\n"
"help.text"
msgid "Conditional Brackets"
-msgstr ""
+msgstr "Parênteses condicionais"
#: 05020301.xhp
msgctxt ""
@@ -14382,7 +14382,7 @@ msgctxt ""
"hd_id3147218\n"
"help.text"
msgid "Percentages"
-msgstr ""
+msgstr "Percentagens"
#: 05020301.xhp
msgctxt ""
@@ -14390,7 +14390,7 @@ msgctxt ""
"par_id3151168\n"
"help.text"
msgid "To display numbers as percentages, add the percent sign (%) to the number format."
-msgstr ""
+msgstr "Para mostrar números como percentagens, adicione o sinal de percentagem (%) ao formato numérico."
#: 05020301.xhp
msgctxt ""
@@ -14398,7 +14398,7 @@ msgctxt ""
"hd_id3156005\n"
"help.text"
msgid "Scientific Notation"
-msgstr ""
+msgstr "Notação científica"
#: 05020301.xhp
msgctxt ""
@@ -14414,7 +14414,7 @@ msgctxt ""
"hd_id3156006\n"
"help.text"
msgid "Fraction Representation"
-msgstr ""
+msgstr "Representação em fração"
#: 05020301.xhp
msgctxt ""
@@ -14470,7 +14470,7 @@ msgctxt ""
"hd_id3157309\n"
"help.text"
msgid "Date and Time Formats"
-msgstr ""
+msgstr "Formatos de data e hora"
#: 05020301.xhp
msgctxt ""
@@ -14478,7 +14478,7 @@ msgctxt ""
"hd_id3153740\n"
"help.text"
msgid "Date Formats"
-msgstr ""
+msgstr "Formatos de data"
#: 05020301.xhp
msgctxt ""
@@ -14486,7 +14486,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "To display days, months and years, use the following number format codes."
-msgstr ""
+msgstr "Para mostrar dias, meses e anos, utilize os seguintes formatos numéricos."
#: 05020301.xhp
msgctxt ""
@@ -14502,7 +14502,7 @@ msgctxt ""
"par_id3152376\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formato"
#: 05020301.xhp
msgctxt ""
@@ -14510,7 +14510,7 @@ msgctxt ""
"par_id3159130\n"
"help.text"
msgid "Format Code"
-msgstr ""
+msgstr "Código do formato"
#: 05020301.xhp
msgctxt ""
@@ -14518,7 +14518,7 @@ msgctxt ""
"par_id3147380\n"
"help.text"
msgid "Month as 3."
-msgstr ""
+msgstr "Mês como 3."
#: 05020301.xhp
msgctxt ""
@@ -14526,7 +14526,7 @@ msgctxt ""
"par_id3145594\n"
"help.text"
msgid "Month as 03."
-msgstr ""
+msgstr "Mês como 03."
#: 05020301.xhp
msgctxt ""
@@ -14534,7 +14534,7 @@ msgctxt ""
"par_id3145728\n"
"help.text"
msgid "Month as Jan-Dec"
-msgstr ""
+msgstr "Mês como jan-dez"
#: 05020301.xhp
msgctxt ""
@@ -14542,7 +14542,7 @@ msgctxt ""
"par_id3149909\n"
"help.text"
msgid "Month as January-December"
-msgstr ""
+msgstr "Mês como janeiro-dezembro"
#: 05020301.xhp
msgctxt ""
@@ -14550,7 +14550,7 @@ msgctxt ""
"par_id3151218\n"
"help.text"
msgid "First letter of Name of Month"
-msgstr ""
+msgstr "Primeira letra do nome do mês"
#: 05020301.xhp
msgctxt ""
@@ -14558,7 +14558,7 @@ msgctxt ""
"par_id3154501\n"
"help.text"
msgid "Day as 2"
-msgstr ""
+msgstr "Dia como 2"
#: 05020301.xhp
msgctxt ""
@@ -14566,7 +14566,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "Day as 02"
-msgstr ""
+msgstr "Dia como 02"
#: 05020301.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3148495\n"
"help.text"
msgid "Day as Sun-Sat"
-msgstr ""
+msgstr "Dia como dom-sáb"
#: 05020301.xhp
msgctxt ""
@@ -14582,7 +14582,7 @@ msgctxt ""
"par_id3154272\n"
"help.text"
msgid "Day as Sunday to Saturday"
-msgstr ""
+msgstr "Dia como domingo a sábado"
#: 05020301.xhp
msgctxt ""
@@ -14590,7 +14590,7 @@ msgctxt ""
"par_id3146791\n"
"help.text"
msgid "Day followed by comma, as in \"Sunday,\""
-msgstr ""
+msgstr "Dia seguido de vírgula, tal como em \"domingo,\""
#: 05020301.xhp
msgctxt ""
@@ -14598,7 +14598,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "Year as 00-99"
-msgstr ""
+msgstr "Ano como 00-99"
#: 05020301.xhp
msgctxt ""
@@ -14606,7 +14606,7 @@ msgctxt ""
"par_id3148408\n"
"help.text"
msgid "Year as 1900-2078"
-msgstr ""
+msgstr "Ano como 1900-2078"
#: 05020301.xhp
msgctxt ""
@@ -14614,7 +14614,7 @@ msgctxt ""
"par_id3153355\n"
"help.text"
msgid "Calendar week"
-msgstr ""
+msgstr "Semana de calendário"
#: 05020301.xhp
msgctxt ""
@@ -14622,7 +14622,7 @@ msgctxt ""
"par_id3154302\n"
"help.text"
msgid "Quarterly as Q1 to Q4"
-msgstr ""
+msgstr "Trimestral como 1T a 4T"
#: 05020301.xhp
msgctxt ""
@@ -14630,7 +14630,7 @@ msgctxt ""
"par_id3147583\n"
"help.text"
msgid "Quarterly as 1st quarter to 4th quarter"
-msgstr ""
+msgstr "Trimestral como 1.º trimestre a 4.º trimestre"
#: 05020301.xhp
msgctxt ""
@@ -14638,7 +14638,7 @@ msgctxt ""
"par_id3147534\n"
"help.text"
msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
-msgstr ""
+msgstr "Era no calendário Gengou japonês, carácter individual (os valores possíveis são os seguintes: M, T, S, H)"
#: 05020301.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Selecione para exportar os marcadores dos documentos do Writer como marcadores PDF. Os marcadores são criados para todos os parágrafos de tópicos (Ferramentas - Numeração de tópicos) e para todas as entradas do índice remissivo às quais não foram atribuídas hiperligações no documento de origem.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/05.po b/source/pt/helpcontent2/source/text/shared/05.po
index 39a8a61bc0e..deb76687d3b 100644
--- a/source/pt/helpcontent2/source/text/shared/05.po
+++ b/source/pt/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-10 07:11+0000\n"
+"PO-Revision-Date: 2017-06-18 20:48+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494400276.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497818890.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id1318380\n"
"help.text"
msgid "The %PRODUCTNAME localization projects offer support pages in local languages. Find an overview of the native language projects at <link href=\"http://www.libreoffice.org/international-sites/\">http://www.libreoffice.org/international-sites/</link>. You can find help and support in English language on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
-msgstr "Os projetos de tradução do %PRODUCTNAME disponibilizam páginas de suporte em diversos idiomas. Consulte um resumo dos projetos de idioma em <link href=\"http://www.libreoffice.org/international-sites/\">http://www.libreoffice.org/international-sites/</link>. Pode obter ajuda e suporte em inglês no site do %PRODUCTNAME, disponível em <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
+msgstr "Os projetos de tradução do %PRODUCTNAME disponibilizam páginas de suporte em diversos idiomas. Consulte um resumo dos projetos de idioma em <link href=\"http://www.libreoffice.org/international-sites/\">http://www.libreoffice.org/international-sites/</link>. Pode obter ajuda e suporte em inglês no sítio web do %PRODUCTNAME em <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
#: 00000001.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3166335\n"
"help.text"
msgid "Ask about %PRODUCTNAME, find help by volunteers, and discuss topics on the public mailing lists. You can find many general and specialized mailing lists on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/mailing-lists/\">www.libreoffice.org/get-help/mailing-lists/</link>."
-msgstr "Coloque questões sobre o %PRODUCTNAME, obtenha ajuda de voluntários e debata tópicos nas listas de correio públicas. Pode aceder a várias listas de correio gerais e especializadas no site do %PRODUCTNAME, disponível em <link href=\"http://www.libreoffice.org/get-help/mailing-lists/\">www.libreoffice.org/get-help/mailing-lists/</link>."
+msgstr "Coloque questões sobre o %PRODUCTNAME, obtenha ajuda de voluntários e debata tópicos nas listas de correio públicas. Pode aceder a várias listas de correio, genéricas e especializadas, no site do %PRODUCTNAME, disponível em <link href=\"http://www.libreoffice.org/get-help/mailing-lists/\">www.libreoffice.org/get-help/mailing-lists/</link>."
#: 00000001.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/optionen.po b/source/pt/helpcontent2/source/text/shared/optionen.po
index 6f0ae28351b..bcd22f15948 100644
--- a/source/pt/helpcontent2/source/text/shared/optionen.po
+++ b/source/pt/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-05-01 21:19+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/pt/helpcontent2/source/text/simpress/01.po b/source/pt/helpcontent2/source/text/simpress/01.po
index 763909da943..6af1abef2ee 100644
--- a/source/pt/helpcontent2/source/text/simpress/01.po
+++ b/source/pt/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-06-03 15:41+0000\n"
+"PO-Revision-Date: 2017-06-13 21:55+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496504496.000000\n"
+"X-POOTLE-MTIME: 1497390935.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id083120160555409190\n"
"help.text"
msgid "<image id=\"img_id083120160554511738\" src=\"media/screenshots/modules/sdraw/ui/dlgsnap/SnapObjectDialog.png\" width=\"3.0728in\" height=\"2.6354in\"><alt id=\"alt_id083120160554511738\">Snap points dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120160554511738\" src=\"media/screenshots/modules/sdraw/ui/dlgsnap/SnapObjectDialog.png\" width=\"3.0728in\" height=\"2.6354in\"><alt id=\"alt_id083120160554511738\">Caixa de diálogo Pontos de alinhamento</alt></image>"
#: 04030000.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_idN106D1\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rewind\">Specifies whether to let the animated shape return to its starting state after the animation ends.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/rewind\">Especifica se a forma animada volta ao seu estado inicial após o final da animação.</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_idN107C5\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/trigger_list\">Select the shape by its name from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationtimingtab/trigger_list\">Selecione a forma pelo seu nome na caixa de lista.</ahelp>"
#: slidesorter.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/simpress/guide.po b/source/pt/helpcontent2/source/text/simpress/guide.po
index b914a7280f9..54640fe9b4d 100644
--- a/source/pt/helpcontent2/source/text/simpress/guide.po
+++ b/source/pt/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 15:56+0000\n"
+"PO-Revision-Date: 2017-06-13 22:00+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496505404.000000\n"
+"X-POOTLE-MTIME: 1497391237.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select <emph>Slide - Slide Master Design</emph>."
-msgstr ""
+msgstr "Selecione <emph>Diapositivo - Design de modelo global de diapositivos</emph>."
#: masterpage.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master page to all slides. Right-click for a context menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Clique com o botão esquerdo do rato para aplicar o modelo global a todos os diapositivos. Clique com o botão direito do rato para abrir o menu de contexto.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"par_idN10747\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page to all slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aplica o modelo global a todos os diapositivos.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_idN10762\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page or the slide design to the selected slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aplica o modelo global ou design a todos os diapositivos selecionados.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the preview of the master pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Redimensiona a pré-visualização dos modelos globais.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_idN107CB\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to apply a slide design to all selected slides. Right-click for a context menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Clique para aplicar um design a todos os diapositivos selecionados. Clique com o botão direito do rato para abrir o menu de contexto.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Impress Photo Album"
-msgstr ""
+msgstr "Álbum de fotos do Impress"
#: photo_album.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"bm_id221120161451447252\n"
"help.text"
msgid "<bookmark_value>Photo Album</bookmark_value> <bookmark_value>Impress Photo Album</bookmark_value> <bookmark_value>Multimedia show;Impress Photo Album</bookmark_value> <bookmark_value>Kiosk;Impress Photo Album</bookmark_value> <bookmark_value>Slideshow;Impress Photo Album</bookmark_value> <bookmark_value>Album;Impress Photo Album</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Álbum de fotos</bookmark_value> <bookmark_value>Álbum de fotos do Impress</bookmark_value> <bookmark_value>Apresentação multimédia;Álbum de fotos do Impress</bookmark_value> <bookmark_value>kiosk;Álbum de fotos do Impress</bookmark_value> <bookmark_value>Apresentação;Álbum de fotos do Impress</bookmark_value> <bookmark_value>Álbum;Álbum de fotos do Impress</bookmark_value>"
#: photo_album.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id221120161524598688\n"
"help.text"
msgid "<link href=\"text/simpress/guide/show.xhp\">Slide Shows</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/guide/show.xhp\">Apresentações</link>"
#: photo_album.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id221120161524592232\n"
"help.text"
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/insert_bitmap.xhp\">Inserir imagens</link>"
#: print_tofit.xhp
msgctxt ""
@@ -4606,7 +4606,7 @@ msgctxt ""
"par_id3145248\n"
"help.text"
msgid "If you want the whole presentation to auto-repeat, open the menu <emph>Slide Show - Slide Show Settings</emph>. Click <emph>Loop and repeat after</emph> and <emph>OK</emph>."
-msgstr ""
+msgstr "Se quiser que a apresentação seja repetida automaticamente, abra o menu <emph>Apresentação - Definições da apresentação</emph>. Clique <emph>Ciclo e repetir até</emph> e <emph>Aceitar</emph>."
#: rehearse_timings.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/smath/00.po b/source/pt/helpcontent2/source/text/smath/00.po
index a1411af6006..22c3bc2a588 100644
--- a/source/pt/helpcontent2/source/text/smath/00.po
+++ b/source/pt/helpcontent2/source/text/smath/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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2015-11-27 23:15+0000\n"
+"PO-Revision-Date: 2017-06-21 00:23+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1448666102.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1498004637.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id3154106\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Unary/Binary Operators</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Operadores unários/binários</emph>."
#: 00000004.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3154473\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Relations</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Relações</emph>."
#: 00000004.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id3149342\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Operators</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Operadores</emph>."
#: 00000004.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3143275\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Functions</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Funções</emph>."
#: 00000004.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3147220\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Brackets</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Parênteses</emph>."
#: 00000004.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3147126\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Attributes</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Atributos</emph>."
#: 00000004.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3150581\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Formats</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Formatos</emph>."
#: 00000004.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3147313\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Set Operations</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Operadores de conjuntos</emph>."
#: 00000004.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Others</emph> from the listbox."
-msgstr ""
+msgstr "Escolha <emph>Ver - Elementos</emph> e no painel, selecione <emph>Outros</emph>."
#: 00000004.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/smath/01.po b/source/pt/helpcontent2/source/text/smath/01.po
index 0393e2e3c24..8dabd958411 100644
--- a/source/pt/helpcontent2/source/text/smath/01.po
+++ b/source/pt/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: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-23 23:26+0000\n"
+"PO-Revision-Date: 2017-06-21 00:32+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495581970.000000\n"
+"X-POOTLE-MTIME: 1498005161.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Pode escolher vários operadores unários e binários para criar a sua fórmula no $[officename] Math. Os operadores unários são aqueles que afetam um marcador de posição. Os operadores binários são os que ligam dois marcadores de posição. A parte inferior do painel Elementos mostra os operadores individuais. O <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">menu de contexto</link> da janela <emph>Comandos</emph> contém uma lista destes operadores, bem como alguns operadores extra. Se necessitar de um operador que não esteja presente no painel Elementos, utilize o menu de contexto ou escreva-o diretamente na janela <emph>Comandos</emph>."
#: 03090100.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3146963\n"
"help.text"
msgid "The following is a complete list of the unary and binary operators. The symbol next to the operator indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the Commands window."
-msgstr ""
+msgstr "O que se segue é uma lista completa dos operadores unários e binários. O símbolo junto ao operador indica que este pode ser acedido através do painel Elementos (escolha <emph>Ver - Elementos</emph>) ou através do menu de contexto da janela Comandos."
#: 03090100.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN10085\n"
"help.text"
msgid "<image id=\"img_id3156399\" src=\"media/helpimg/starmath/un21201.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156399\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156399\" src=\"media/helpimg/starmath/un21201.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156399\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_idN100C1\n"
"help.text"
msgid "<image id=\"img_id3148776\" src=\"media/helpimg/starmath/un21202.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148776\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148776\" src=\"media/helpimg/starmath/un21202.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148776\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_idN100FD\n"
"help.text"
msgid "<image id=\"img_id3150757\" src=\"media/helpimg/starmath/un21203.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150757\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150757\" src=\"media/helpimg/starmath/un21203.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150757\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_idN10139\n"
"help.text"
msgid "<image id=\"img_id3145410\" src=\"media/helpimg/starmath/un21204.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145410\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145410\" src=\"media/helpimg/starmath/un21204.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145410\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_idN10175\n"
"help.text"
msgid "<image id=\"img_id3151098\" src=\"media/helpimg/starmath/un21205.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151098\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151098\" src=\"media/helpimg/starmath/un21205.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151098\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_idN101B0\n"
"help.text"
msgid "<image id=\"img_id3155898\" src=\"media/helpimg/starmath/un21206.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155898\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155898\" src=\"media/helpimg/starmath/un21206.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155898\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_idN101E9\n"
"help.text"
msgid "<image id=\"img_id3149308\" src=\"media/helpimg/starmath/un21207.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149308\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149308\" src=\"media/helpimg/starmath/un21207.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149308\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_idN10226\n"
"help.text"
msgid "<image id=\"img_id3148982\" src=\"media/helpimg/starmath/un21208.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148982\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148982\" src=\"media/helpimg/starmath/un21208.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148982\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_idN1025F\n"
"help.text"
msgid "<image id=\"img_id3155140\" src=\"media/helpimg/starmath/un21209.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155140\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155140\" src=\"media/helpimg/starmath/un21209.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155140\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_idN10298\n"
"help.text"
msgid "<image id=\"img_id3149168\" src=\"media/helpimg/starmath/un21210.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149168\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149168\" src=\"media/helpimg/starmath/un21210.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149168\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_idN102D1\n"
"help.text"
msgid "<image id=\"img_id3148765\" src=\"media/helpimg/starmath/un21211.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148765\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148765\" src=\"media/helpimg/starmath/un21211.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148765\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_idN1030A\n"
"help.text"
msgid "<image id=\"img_id3147418\" src=\"media/helpimg/starmath/un21212.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147418\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147418\" src=\"media/helpimg/starmath/un21212.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147418\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_idN10343\n"
"help.text"
msgid "<image id=\"img_id3149566\" src=\"media/helpimg/starmath/un21213.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149566\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149566\" src=\"media/helpimg/starmath/un21213.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149566\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"par_idN10383\n"
"help.text"
msgid "<image id=\"img_id3147116\" src=\"media/helpimg/starmath/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147116\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147116\" src=\"media/helpimg/starmath/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147116\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_idN103C3\n"
"help.text"
msgid "<image id=\"img_id3148440\" src=\"media/helpimg/starmath/un21215.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148440\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148440\" src=\"media/helpimg/starmath/un21215.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148440\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_idN10403\n"
"help.text"
msgid "<image id=\"img_id3150173\" src=\"media/helpimg/starmath/un21221.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150173\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150173\" src=\"media/helpimg/starmath/un21221.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150173\">Ícone</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3153152\n"
"help.text"
msgid "You can choose among various relations to structure your <emph>$[officename] Math</emph> formula. The relation functions are displayed in the lower part of the Elements pane. The list is also in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All relations that are not contained in the Elements pane or in the context menu can be typed manually in the Commands window."
-msgstr ""
+msgstr "Pode escolher entre várias relações para estruturar a fórmula do <emph>$[officename] Math</emph>. As funções de relação são mostradas na parte inferior do painel Elementos. A funções também estão disponíveis no <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">menu de contexto</link> da janela <emph>Comandos</emph>. Todas as relações que não estejam no painel Elementos ou no menu de contexto, podem ser introduzidas manualmente na janela Comandos."
#: 03090200.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3147258\n"
"help.text"
msgid "The following is a complete list of the relations. The symbol next to the name of the relation indicates that it can be accessed through the Elements pane (choose <emph>View - Elements</emph>) or through the context menu of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "O que se segue é uma lista completa dos tipos de relações. O símbolo junto à relação indica que esta pode ser acedida através do painel Elementos (escolha <emph>Ver - Elementos</emph>) ou através do menu de contexto da janela <emph>Comandos</emph>."
#: 03090200.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_idN10086\n"
"help.text"
msgid "<image id=\"img_id3153573\" src=\"media/helpimg/starmath/bi21301.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153573\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153573\" src=\"media/helpimg/starmath/bi21301.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153573\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_idN100BF\n"
"help.text"
msgid "<image id=\"img_id3147523\" src=\"media/helpimg/starmath/bi21302.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147523\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147523\" src=\"media/helpimg/starmath/bi21302.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147523\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_idN10101\n"
"help.text"
msgid "<image id=\"img_id3154196\" src=\"media/helpimg/starmath/bi21303.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154196\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154196\" src=\"media/helpimg/starmath/bi21303.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154196\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_idN10140\n"
"help.text"
msgid "<image id=\"img_id3154835\" src=\"media/helpimg/starmath/bi21304.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154835\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154835\" src=\"media/helpimg/starmath/bi21304.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154835\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_idN10182\n"
"help.text"
msgid "<image id=\"img_id3147321\" src=\"media/helpimg/starmath/bi21322.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147321\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147321\" src=\"media/helpimg/starmath/bi21322.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147321\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_idN101BF\n"
"help.text"
msgid "<image id=\"img_id3151030\" src=\"media/helpimg/starmath/bi21323.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151030\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151030\" src=\"media/helpimg/starmath/bi21323.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151030\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_idN101FC\n"
"help.text"
msgid "<image id=\"img_id3155133\" src=\"media/helpimg/starmath/bi21305.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155133\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155133\" src=\"media/helpimg/starmath/bi21305.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155133\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_idN1023B\n"
"help.text"
msgid "<image id=\"img_id3147468\" src=\"media/helpimg/starmath/bi21306.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147468\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147468\" src=\"media/helpimg/starmath/bi21306.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147468\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_idN10279\n"
"help.text"
msgid "<image id=\"img_id3155982\" src=\"media/helpimg/starmath/bi21307.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155982\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155982\" src=\"media/helpimg/starmath/bi21307.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155982\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_idN102B5\n"
"help.text"
msgid "<image id=\"img_id3155773\" src=\"media/helpimg/starmath/bi21308.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155773\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155773\" src=\"media/helpimg/starmath/bi21308.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155773\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_idN102F3\n"
"help.text"
msgid "<image id=\"img_id3148442\" src=\"media/helpimg/starmath/bi21309.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148442\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148442\" src=\"media/helpimg/starmath/bi21309.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148442\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_idN10331\n"
"help.text"
msgid "<image id=\"img_id3153299\" src=\"media/helpimg/starmath/bi21310.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153299\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153299\" src=\"media/helpimg/starmath/bi21310.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153299\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_idN1036F\n"
"help.text"
msgid "<image id=\"img_id3153976\" src=\"media/helpimg/starmath/bi21311.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153976\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153976\" src=\"media/helpimg/starmath/bi21311.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153976\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_idN103AD\n"
"help.text"
msgid "<image id=\"img_id3151195\" src=\"media/helpimg/starmath/bi21312.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151195\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151195\" src=\"media/helpimg/starmath/bi21312.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151195\">Ícone</alt></image>"
#: 03090200.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter.po b/source/pt/helpcontent2/source/text/swriter.po
index fa8c25c661a..7902375c1de 100644
--- a/source/pt/helpcontent2/source/text/swriter.po
+++ b/source/pt/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 16:09+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-21 00:17+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496506195.000000\n"
+"X-POOTLE-MTIME: 1498004223.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id030820161747122444\n"
"help.text"
msgid "Default levels of classification"
-msgstr ""
+msgstr "Níveis padrão de classificação"
#: classificationbar.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"bm_id030820161849574719\n"
"help.text"
msgid "<bookmark_value>classification levels;Internal use only</bookmark_value> <bookmark_value>classification levels;Confidential</bookmark_value> <bookmark_value>classification levels;General Business</bookmark_value> <bookmark_value>classification levels;Non-Business</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>níveis de classificação;apenas para utilização interna</bookmark_value><bookmark_value>níveis de classificação;confidencial</bookmark_value><bookmark_value>níveis de classificação;negócios</bookmark_value><bookmark_value>níveis de classificação;público</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id030820161747134459\n"
"help.text"
msgid "Customizing classification levels."
-msgstr ""
+msgstr "Personalizar níveis de classificação"
#: classificationbar.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"bm_id030820161851045883\n"
"help.text"
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>personalizar;níveis de classificação</bookmark_value> <bookmark_value>níveis de classificação;personalização</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id030820161747137522\n"
"help.text"
msgid "Save the file and make the adequate changes to the classification path above to access the file."
-msgstr ""
+msgstr "Guarde o ficheiro e efetue as alterações desejadas ao caminho da classificação acima para aceder ao ficheiro."
#: classificationbar.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id030820161747135133\n"
"help.text"
msgid "Your system administrator can place the file in a network folder and make all users access the classification settings file."
-msgstr ""
+msgstr "O administrador de sistemas pode colocar o ficheiro numa pasta de rede e permitir que todos os utilizadores acedam ao ficheiro de definições de classificação."
#: classificationbar.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"hd_id03082016174713354\n"
"help.text"
msgid "Pasting contents in documents with different levels of classification."
-msgstr ""
+msgstr "Colar conteúdo em documentos com diferentes níveis de classificação."
#: classificationbar.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"bm_id030820161851512902\n"
"help.text"
msgid "<bookmark_value>document classification;pasting contents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>classificação de documentos;copiar conteúdo</bookmark_value>"
#: classificationbar.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mail Merge Toolbar"
-msgstr ""
+msgstr "Barra de ferramentas Impressão em série"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"hd_id201703240024554113\n"
"help.text"
msgid "<link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/mailmergetoolbar.xhp\">Barra de ferramentas Impressão em série</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id201703240025596148\n"
"help.text"
msgid "The Mail Merge Toolbar contains commands for the final steps of the mail merge process."
-msgstr ""
+msgstr "A barra de ferramentas Impressão em série contém os comandos para os passos finais do processo de impressão."
#: mailmergetoolbar.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id030820161754175468\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars</item> and select <item type=\"menuitem\">Mail Merge</item>"
-msgstr ""
+msgstr "Aceda a <item type=\"menuitem\">Ver - Barras de ferramentas</item> e selecione <item type=\"menuitem\">Impressão em série</item>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "(Recipient number)"
-msgstr ""
+msgstr "(Número do destinatário)"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the address record number of a recipient to preview the mail merge document for the recipient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduza o número de registo do destinatário para pré-visualizar o documento de impressão em série.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<ahelp hid=\".\">Use the browse buttons to scroll through the address records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilize os botões de procura para percorrer os registos de endereço.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "Exclude recipient"
-msgstr ""
+msgstr "Excluir destinatário"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<ahelp hid=\".\">Excludes the current recipient from this mail merge.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Exclui o destinatário atual desta impressão em série.</ahelp>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "Edit Individual Documents"
-msgstr ""
+msgstr "Editar documentos individualmente"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id03302017034826145\n"
"help.text"
msgid "Track Changes"
-msgstr ""
+msgstr "Registar alterações"
#: main0103.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Numeração de tópicos</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Numeração de capítulos</link>"
#: main0106.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter/00.po b/source/pt/helpcontent2/source/text/swriter/00.po
index ff6b9befd80..7c1d6ed360f 100644
--- a/source/pt/helpcontent2/source/text/swriter/00.po
+++ b/source/pt/helpcontent2/source/text/swriter/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 16:11+0000\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
+"PO-Revision-Date: 2017-06-21 00:34+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496506265.000000\n"
+"X-POOTLE-MTIME: 1498005258.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -2253,23 +2253,23 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Escolha <emph>Ferramentas - Numeração de tópicos</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr "<variable id=\"kapitelnumerierung\">Escolha <emph>Ferramentas - Numeração de capítulos</emph></variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Escolha <emph>Ferramentas - Numeração de tópicos - separador Numeração</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr "<variable id=\"kapitelnumerierung1\">Escolha <emph>Ferramentas - Numeração de capítulos - Nuneração</emph></variable>"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr "<variable id=\"zeilennumerierung\">Escolha <emph>Ferramentas - Numeração de linhas</emph> (não para formato HTML) </variable>"
#: 00000406.xhp
@@ -2414,7 +2414,7 @@ msgctxt ""
"par_idN107E6\n"
"help.text"
msgid "Click the <emph>Mail Merge</emph> icon on the <emph>Mail Merge</emph> bar:"
-msgstr ""
+msgstr "Clique no ícone <emph>Impressão em série</emph> da barra <emph>Impressão em série</emph>:"
#: 00000406.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"par_idN107E7\n"
"help.text"
msgid "Click the <emph>Mail Merge</emph> icon on the <emph>Table Data</emph> bar:"
-msgstr ""
+msgstr "Clique no ícone <emph>Impressão em série</emph> da barra <emph>Dados da tabela</emph>:"
#: 00000406.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter/01.po b/source/pt/helpcontent2/source/text/swriter/01.po
index 8f39925f440..c4069cfdf59 100644
--- a/source/pt/helpcontent2/source/text/swriter/01.po
+++ b/source/pt/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-03 16:13+0000\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
+"PO-Revision-Date: 2017-06-21 00:36+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496506400.000000\n"
+"X-POOTLE-MTIME: 1498005384.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id3151187\n"
"help.text"
msgid "<variable id=\"serienbrieftext\"><ahelp hid=\".\">The <emph>Mail Merge</emph> dialog helps you in printing and saving form letters.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"serienbrieftext\"><ahelp hid=\".\">Abre a caixa de diálogo <emph>Impressão em série</emph>, que o ajuda a imprimir e a guardar cartas modelo.</ahelp></variable>"
#: 01150000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3149034\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of the first record to be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Especifique o número do primeiro registo a imprimir.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3145758\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/mailmerge/to\">Specify the number of the last record to be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/mailmerge/to\">Especifique o número do último registo a imprimir.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"hd_id3150109\n"
"help.text"
msgid "Save as single document"
-msgstr ""
+msgstr "Guardar como documento único"
#: 01150000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3101901\n"
"help.text"
msgid "<ahelp hid=\".\">Create one big document containing all data records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Cria um documento grande com todos os registos de dados.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"hd_id3150110\n"
"help.text"
msgid "Save as individual documents"
-msgstr ""
+msgstr "Guardar como documentos individuais"
#: 01150000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id5345011\n"
"help.text"
msgid "<ahelp hid=\".\">Create one document for every one data record.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Cria um documento para cada registo de dados.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Clique em <emph>1</emph> para só visualizar os títulos de nível superior na janela do Navegador e em <emph>10</emph> para visualizar todos os títulos.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Se escolher \"Número de capítulo sem separador\" para um campo do capítulo, os separadores especificados para o número do capítulo em <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Ferramentas - Numeração de tópicos</emph></link> não são exibidos."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Insere o número do capítulo. Para atribuir um número de capítulo a um estilo de título, escolha <emph> Ferramentas - Numeração de tópicos</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -15582,7 +15582,7 @@ msgctxt ""
"par_id3149038\n"
"help.text"
msgid "<image id=\"img_id3149044\" src=\"sw/res/wr07.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149044\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149044\" src=\"sw/res/wr07.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149044\">Ícone</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15614,7 +15614,7 @@ msgctxt ""
"par_id3145774\n"
"help.text"
msgid "<image id=\"img_id3145780\" src=\"sw/res/wr02.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3145780\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145780\" src=\"sw/res/wr02.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3145780\">Ícone</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15646,7 +15646,7 @@ msgctxt ""
"par_id3149560\n"
"help.text"
msgid "<image id=\"img_id3149567\" src=\"sw/res/wr03.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149567\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149567\" src=\"sw/res/wr03.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149567\">Ícone</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15670,7 +15670,7 @@ msgctxt ""
"par_id3147740\n"
"help.text"
msgid "<variable id=\"seitenumlauftext\"><ahelp hid=\".\">Wraps text on all four sides of the border frame of the object.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenumlauftext\"><ahelp hid=\".\">Ajusta o texto aos quatro lados da moldura do objeto.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15678,7 +15678,7 @@ msgctxt ""
"par_id3148845\n"
"help.text"
msgid "<image id=\"img_id3148851\" src=\"sw/res/wr04.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3148851\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148851\" src=\"sw/res/wr04.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3148851\">Ícone</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15702,7 +15702,7 @@ msgctxt ""
"par_id3154089\n"
"help.text"
msgid "<variable id=\"durchlauftext\"><ahelp hid=\".\">Places the object in front of the text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"durchlauftext\"><ahelp hid=\".\">Coloca o objeto à frente do texto.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15710,7 +15710,7 @@ msgctxt ""
"par_id3150162\n"
"help.text"
msgid "<image id=\"img_id3150169\" src=\"sw/res/wr05.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150169\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150169\" src=\"sw/res/wr05.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150169\">Ícone</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15734,7 +15734,7 @@ msgctxt ""
"par_id3154716\n"
"help.text"
msgid "<variable id=\"dynamischertext\"><ahelp hid=\".\">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. </ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"dynamischertext\"><ahelp hid=\".\">Ajusta o texto automaticamente à esquerda, à direita ou aos quatro lados da moldura do objeto. Se a distância entre o objeto e a margem da página for menor do que 2 cm, o texto não será ajustado.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15742,7 +15742,7 @@ msgctxt ""
"par_id3150904\n"
"help.text"
msgid "<image id=\"img_id3150910\" src=\"sw/res/wr06.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150910\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150910\" src=\"sw/res/wr06.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150910\">Ícone</alt></image>"
#: 05060200.xhp
msgctxt ""
@@ -15782,7 +15782,7 @@ msgctxt ""
"par_id3154333\n"
"help.text"
msgid "<variable id=\"ersterabsatztext\"><ahelp hid=\".\">Starts a new paragraph below the object after you press Enter.</ahelp> The space between the paragraphs is determined by the size of the object.</variable>"
-msgstr ""
+msgstr "<variable id=\"ersterabsatztext\"><ahelp hid=\".\">Inicia um novo parágrafo por baixo do objeto, depois de premir Enter.</ahelp> O espaço entre os parágrafos é determinado pelo tamanho do objeto.</variable>"
#: 05060200.xhp
msgctxt ""
@@ -15798,7 +15798,7 @@ msgctxt ""
"par_id3150100\n"
"help.text"
msgid "<variable id=\"hintergrundtext\"><ahelp hid=\".\">Moves the selected object to the background. This option is only available if you selected the<emph> Through</emph> wrap type.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"hintergrundtext\"><ahelp hid=\".\">Move o objeto selecionado para segundo plano. Esta opção só está disponível se tiver selecionado o tipo de moldagem <emph>Através</emph>.</ahelp></variable>"
#: 05060200.xhp
msgctxt ""
@@ -15814,7 +15814,7 @@ msgctxt ""
"par_id3155793\n"
"help.text"
msgid "<variable id=\"konturtext\"><ahelp hid=\".\">Wraps text around the shape of the object. This option is not available for the <emph>Through</emph> wrap type, or for frames.</ahelp> To change the contour of an object, select the object, and then choose <emph>Format - Wrap - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Edit Contour</emph></link>.</variable>"
-msgstr ""
+msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">Ajusta o texto em redor da forma do objeto. Esta opção não está disponível para molduras nem para o tipo de moldagem <emph>Através</emph>.</ahelp> Para alterar o contorno do objeto, selecione-o e escolha <emph>Formatar - Moldar - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Editar contorno</emph></link>.</variable>"
#: 05060200.xhp
msgctxt ""
@@ -16454,7 +16454,7 @@ msgctxt ""
"par_id3149485\n"
"help.text"
msgid "<variable id=\"vertikaltext\"><ahelp hid=\".\">Flips the selected image vertically.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vertikaltext\"><ahelp hid=\".\">Inverte verticalmente a imagem selecionada.</ahelp></variable>"
#: 05060300.xhp
msgctxt ""
@@ -16470,7 +16470,7 @@ msgctxt ""
"par_id3151261\n"
"help.text"
msgid "<variable id=\"horizontaltext\"><ahelp hid=\".\">Flips the selected image horizontally.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"horizontaltext\"><ahelp hid=\".\">Inverte horizontalmente a imagem selecionada.</ahelp></variable>"
#: 05060300.xhp
msgctxt ""
@@ -16606,7 +16606,7 @@ msgctxt ""
"par_id3158429\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">Specifies the macro to run when you click an image, frame, or an OLE object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/EventAssignPage\">Especifica a macro a executar ao clicar na imagem, moldura ou objeto OLE.</ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -16622,7 +16622,7 @@ msgctxt ""
"par_id3147564\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Lists the events that can trigger a macro.</ahelp> Only the events that are relevant to the selected object are listed."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assignments\">Mostra a lista de eventos que podem ativar uma macro.</ahelp> Só são mostrados os eventos relevantes para o objeto selecionado."
#: 05060700.xhp
msgctxt ""
@@ -16662,7 +16662,7 @@ msgctxt ""
"par_id3154564\n"
"help.text"
msgid "Image"
-msgstr ""
+msgstr "Imagem"
#: 05060700.xhp
msgctxt ""
@@ -16902,7 +16902,7 @@ msgctxt ""
"par_id3154780\n"
"help.text"
msgid "Image loaded successfully"
-msgstr ""
+msgstr "Imagem carregada com sucesso"
#: 05060700.xhp
msgctxt ""
@@ -16910,7 +16910,7 @@ msgctxt ""
"par_id3145304\n"
"help.text"
msgid "image is loaded successfully"
-msgstr ""
+msgstr "a imagem foi carregada com sucesso"
#: 05060700.xhp
msgctxt ""
@@ -16926,7 +16926,7 @@ msgctxt ""
"par_id3154718\n"
"help.text"
msgid "Image loading terminated"
-msgstr ""
+msgstr "Carregamento de imagem interrompido"
#: 05060700.xhp
msgctxt ""
@@ -16934,7 +16934,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "loading of the image is terminated by the user (for example, when downloading)"
-msgstr ""
+msgstr "o carregamento da imagem foi interrompido pelo utilizador (por exemplo, numa descarga)"
#: 05060700.xhp
msgctxt ""
@@ -16950,7 +16950,7 @@ msgctxt ""
"par_id3155079\n"
"help.text"
msgid "Could not load image"
-msgstr ""
+msgstr "Imagem não carregada"
#: 05060700.xhp
msgctxt ""
@@ -16958,7 +16958,7 @@ msgctxt ""
"par_id3149250\n"
"help.text"
msgid "image is not successfully loaded"
-msgstr ""
+msgstr "a imagem não foi carregada com sucesso"
#: 05060700.xhp
msgctxt ""
@@ -17126,7 +17126,7 @@ msgctxt ""
"hd_id3156030\n"
"help.text"
msgid "Assigned Action"
-msgstr ""
+msgstr "Ação atribuída"
#: 05060700.xhp
msgctxt ""
@@ -17134,7 +17134,7 @@ msgctxt ""
"par_id3156043\n"
"help.text"
msgid "Specify the macro that executes when the selected event occurs."
-msgstr ""
+msgstr "Especifique a macro que é executada quando o evento selecionado ocorre."
#: 05060700.xhp
msgctxt ""
@@ -17150,7 +17150,7 @@ msgctxt ""
"hd_id3149271\n"
"help.text"
msgid "Macro From"
-msgstr ""
+msgstr "Macro de"
#: 05060700.xhp
msgctxt ""
@@ -17158,7 +17158,7 @@ msgctxt ""
"par_id3149284\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lists the $[officename] program and any open $[officename] document.</ahelp> Within this list, select the location where you want to save the macros."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/libraries\">Lista o programa do $[officename] e todos os documentos abertos do $[officename] .</ahelp> Nesta lista, selecione o local para onde pretende guardar as macros."
#: 05060700.xhp
msgctxt ""
@@ -17166,7 +17166,7 @@ msgctxt ""
"hd_id3156441\n"
"help.text"
msgid "Existing Macros"
-msgstr ""
+msgstr "Macros existentes"
#: 05060700.xhp
msgctxt ""
@@ -17174,7 +17174,7 @@ msgctxt ""
"par_id3148458\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/macros\">Lists the available macros. Select the macro that you want to assign to the selected event, and then click <emph>Assign</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/macros\">Mostra a lista das macros disponíveis. Selecione a macro que pretende atribuir ao evento selecionado e clique em <emph>Atribuir</emph>.</ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -17190,7 +17190,7 @@ msgctxt ""
"par_id3145197\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/eventassignpage/assign\">Assigns the selected macro to the selected event.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/eventassignpage/assign\">Atribui a macro escolhida ao evento selecionado.</ahelp>"
#: 05060700.xhp
msgctxt ""
@@ -17206,7 +17206,7 @@ msgctxt ""
"par_id3150882\n"
"help.text"
msgid "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">Removes the macro assignment from the selected entry.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"cui/ui/eventassignpage/delete\">Remove a atribuição da macro da entrada selecionada.</ahelp></variable>"
#: 05060800.xhp
msgctxt ""
@@ -19078,7 +19078,7 @@ msgctxt ""
"hd_id3150016\n"
"help.text"
msgid "Number"
-msgstr ""
+msgstr "Número"
#: 05120400.xhp
msgctxt ""
@@ -19086,7 +19086,7 @@ msgctxt ""
"par_id3155626\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertrowcolumn/insert_number\">Enter the number of columns or rows that you want.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertrowcolumn/insert_number\">Introduza o número de linhas ou colunas desejadas.</ahelp>"
#: 05120400.xhp
msgctxt ""
@@ -19118,7 +19118,7 @@ msgctxt ""
"par_id3150564\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertrowcolumn/insert_before\">Adds new columns to the left of the current column, or adds new rows above the current row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertrowcolumn/insert_before\">Adiciona as novas colunas à esquerda da coluna atual ou adiciona as novas linhas por cima da linha atual.</ahelp>"
#: 05120400.xhp
msgctxt ""
@@ -19134,7 +19134,7 @@ msgctxt ""
"par_id3153718\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertrowcolumn/insert_after\">Adds new columns to the right of the current column, or adds new rows below the current row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertrowcolumn/insert_after\">Adiciona as novas colunas à direita da coluna atual ou adiciona as novas linhas por baixo da linha atual.</ahelp>"
#: 05120500.xhp
msgctxt ""
@@ -19198,7 +19198,7 @@ msgctxt ""
"par_id3149052\n"
"help.text"
msgid "The following information concerns Writer styles that you can apply using the <link href=\"text/swriter/01/05140000.xhp\">Styles and Formatting</link> deck of the Sidebar."
-msgstr ""
+msgstr "As informações seguintes dizem respeito aos estilos do Writer que podem ser aplicados através do painel <link href=\"text/swriter/01/05140000.xhp\">Estilos e formatação</link> da barra lateral."
#: 05130000.xhp
msgctxt ""
@@ -19206,7 +19206,7 @@ msgctxt ""
"par_id3150015\n"
"help.text"
msgid "If you want, you can edit the styles of the current document, and then save the document as a template. To save the document as template, choose <emph>File - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save as Template\"><emph>Templates - Save as Template</emph></link>."
-msgstr ""
+msgstr "Se desejar, pode editar os estilos do documento atual e, em seguida, guardar o documento como um modelo. Para guardar o documento como modelo, escolha <emph>Ficheiro - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save as Template\"><emph>Modelos - Guardar como modelo</emph></link>."
#: 05130000.xhp
msgctxt ""
@@ -19222,7 +19222,7 @@ msgctxt ""
"par_id3153721\n"
"help.text"
msgid "These are the different categories of formatting styles."
-msgstr ""
+msgstr "Estas são as diferentes categorias dos estilos de formatação."
#: 05130000.xhp
msgctxt ""
@@ -19974,7 +19974,7 @@ msgctxt ""
"par_id3159194\n"
"help.text"
msgid "<image id=\"img_id3159200\" src=\"sw/res/sf03.png\"><alt id=\"alt_id3159200\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159200\" src=\"sw/res/sf03.png\"><alt id=\"alt_id3159200\">Ícone</alt></image>"
#: 05140000.xhp
msgctxt ""
@@ -19998,7 +19998,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<image id=\"img_id3149826\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149826\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149826\" src=\"sw/res/sf04.png\"><alt id=\"alt_id3149826\">Ícone</alt></image>"
#: 05140000.xhp
msgctxt ""
@@ -20022,7 +20022,7 @@ msgctxt ""
"par_id3152766\n"
"help.text"
msgid "<image id=\"img_id3152772\" src=\"sw/res/sf05.png\"><alt id=\"alt_id3152772\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152772\" src=\"sw/res/sf05.png\"><alt id=\"alt_id3152772\">Ícone</alt></image>"
#: 05140000.xhp
msgctxt ""
@@ -20062,7 +20062,7 @@ msgctxt ""
"par_id3156379\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Applies the selected style to the object or text that you select in the document. Click this icon, and then drag a selection in the document to apply the style.</ahelp> To exit this mode, click the icon again, or press Esc."
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_WATERCAN\">Aplica o estilo selecionado ao objeto ou texto selecionado no documento. Clique neste ícone e arraste a seleção do documento para aplicar o estilo.</ahelp> Para sair deste modo, clique novamente no ícone ou prima a tecla Esc."
#: 05140000.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeração de tópicos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeração de tópicos"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "A numeração de tópicos está associada aos estilos de parágrafo. Por norma, os estilos de parágrafo do \"Título\" (1-10) são atribuídos os níveis correspondentes (1-10). Se pretender, pode atribuir diferentes estilos de parágrafo ao nível de tópicos."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Se pretender títulos numerados, utilize o comando de menu <emph>Ferramentas - Numeração de tópicos</emph> para atribuir uma numeração a um estilo de parágrafo. Não utilize o ícone Numeração na barra de ferramentas Formatação."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Para realçar a exibição dos números de tópicos, escolha <emph>Ver -</emph><emph>Sombreado de campos</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Guarda ou carrega um formato numérico de tópicos. Está disponível um formato numérico de tópicos para todos os documentos de texto.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "O botão <emph>Formato</emph> só está disponível para a numeração de tópicos. Para estilos de lista numerados ou com marcas, modifique os Estilos de numeração dos parágrafos."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Abre uma caixa de diálogo onde é possível guardar as atuais definições para o nível de tópicos selecionado. Agora, já pode carregar estas definições a partir de outro documento.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Clique no nível de tópicos que pretende modificar e, em seguida, especifique as opções de numeração para o nível.</ahelp> Para aplicar as opções de numeração a todos os níveis, exceto no caso do estilo de parágrafos, clique em \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Selecione o estilo de parágrafo que pretende atribuir ao nível de tópicos selecionado.</ahelp> Se clicar em \"Nenhum\", o nível de tópicos não é definido."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -24974,7 +24974,7 @@ msgctxt ""
"par_idN105E8\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "Para"
#: mm_emailmergeddoc.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novo bloco do endereços"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Novo bloco do endereços"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementos do endereço"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Arrastar o elemento do endereço para o campo abaixo"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25630,7 +25630,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "De"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25646,7 +25646,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "De"
#: mm_printmergeddoc.xhp
msgctxt ""
@@ -25758,7 +25758,7 @@ msgctxt ""
"par_idN1059B\n"
"help.text"
msgid "From"
-msgstr ""
+msgstr "De"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25790,7 +25790,7 @@ msgctxt ""
"par_idN105A2\n"
"help.text"
msgid "To"
-msgstr ""
+msgstr "Para"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25806,7 +25806,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "Save Documents"
-msgstr ""
+msgstr "Guardar documentos"
#: mm_savemergeddoc.xhp
msgctxt ""
@@ -25814,7 +25814,7 @@ msgctxt ""
"par_idN105AD\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Guarda os documentos.</ahelp>"
#: mm_seladdblo.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter/guide.po b/source/pt/helpcontent2/source/text/swriter/guide.po
index e53455dce88..0e48973a37d 100644
--- a/source/pt/helpcontent2/source/text/swriter/guide.po
+++ b/source/pt/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-05-02 21:56+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Em documentos de texto, pode mover títulos e texto subordinado para cima e para baixo utilizando o Navegador. Também pode promover e despromover níveis de título. Para utilizar esta funcionalidade, formate os títulos do documento com um dos estilos de parágrafo padrão. Para utilizar um estilo de parágrafo personalizado num título, escolha <emph>Ferramentas - Numeração de tópicos</emph>, selecione o estilo na caixa <emph>Estilo de parágrafo</emph> e clique duas vezes num número da lista de <emph>Níveis</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Numeração de tópicos"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>tópicos;numeração</bookmark_value><bookmark_value>eliminar;números de títulos</bookmark_value><bookmark_value>numeração de capítulos</bookmark_value><bookmark_value>títulos; estilos de numeração/parágrafo</bookmark_value><bookmark_value>numeração;títulos</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Numeração de tópicos</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Pode modificar a hierarquia dos títulos ou atribuir um nível na hierarquia a um estilo de parágrafo personalizado. Também pode adicionar numerações de capítulos e de secções, a estilos de parágrafos. Por norma, o estilo de parágrafo \"Título 1\" está no topo da hierarquia de tópicos."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escolha <item type=\"menuitem\">Ferramentas - Numeração de tópicos</item> e clique no separador <item type=\"menuitem\">Numeração</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Para remover a numeração automática de tópicos em parágrafos de título"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Escolha <item type=\"menuitem\">Ferramentas - Numeração de tópicos</item> e clique no separador <item type=\"menuitem\">Numeração</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Antes de poder introduzir informações num cabeçalho ou rodapé, as opções de numeração de tópicos, terão de ser definidas para o estilo de parágrafo que pretende utilizar nos títulos dos capítulos."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Escolha <emph>Ferramentas - Numeração de tópicos</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>índices; definir entradas em</bookmark_value><bookmark_value>índice remissivo; definir entradas em</bookmark_value><bookmark_value>entradas; definir em índices e em índices remissivos</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Escolha <emph>Inserir - Índice remissivo e índice - Entrada de índice</emph> e execute um dos seguintes passos:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Escolha <emph>Ferramentas - Numeração de tópicos</emph> e clique no separador <emph>Numeração</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Se quiser utilizar um estilo de parágrafo diferente como entrada de um índice remissivo, selecione a caixa de verificação <item type=\"menuitem\">Estilos adicionais</item> da área <item type=\"menuitem\">Criar a partir de</item> e, em seguida, clique no botão <item type=\"menuitem\">Atribuir estilos</item> junto à caixa de verificação. Na caixa de diálogo <item type=\"menuitem\">Atribuir estilos</item>, clique em um estilo da lista e, em seguida, clique no botão <item type=\"menuitem\">>></item> ou <item type=\"menuitem\"><<</item> para definir o nível de tópicos do estilo de parágrafo."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numeração; remover/interromper</bookmark_value><bookmark_value>listas de marcas; interromper</bookmark_value><bookmark_value>listas;remover/interromper numeração</bookmark_value><bookmark_value>eliminar;números em listas</bookmark_value><bookmark_value>interromper listas numeradas</bookmark_value><bookmark_value>alterar;iniciar números em listas</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Se quiser títulos numerados, utilize o comando de menu <emph>Ferramentas - Numeração de tópicos</emph> para atribuir uma numeração a um estilo de parágrafo. Não utilize o ícone Numeração na barra de ferramentas Formatação."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po
index 62688e9bdfc..622453b9889 100644
--- a/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pt/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-23 23:26+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:17+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495581990.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997047.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Escolher temas"
+msgid "Spreadsheet Theme"
+msgstr "Tema da folha de cálculo"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Inserir..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Padrão"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Acento 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Acento 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Acento 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Título 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Título 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Mau"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Erro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "Bom"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Neutro"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Aviso"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Nota de rodapé"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Nota"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7223,7 +7340,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Master"
-msgstr ""
+msgstr "~Modelo global de diapositivos"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7349,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes M~aster"
-msgstr ""
+msgstr "Modelo glob~al de notas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7898,7 +8015,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Master D~esign..."
-msgstr "D~esign do modelo global de diapositivos..."
+msgstr "D~esign de modelo global de diapositivos..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +8033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr ""
+msgstr "No~tas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +8051,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Views Tab ~Bar"
-msgstr ""
+msgstr "~Barra de visualização"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7952,7 +8069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hando~ut Master"
-msgstr ""
+msgstr "Modelo global de fol~hetos"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8852,7 +8969,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Pane"
-msgstr ""
+msgstr "~Painel de diapositivos"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21544,7 +21661,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Extrusion Depth"
-msgstr "Profundidade da extrusão"
+msgstr "Profundidade de extrusão"
#: GenericCommands.xcu
msgctxt ""
@@ -21571,7 +21688,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar ~Layout"
-msgstr ""
+msgstr "~Disposição da barra de ferramentas"
#: GenericCommands.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Propriedades..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objeto..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Repetir linhas de título em todas as páginas"
#: WriterCommands.xcu
msgctxt ""
@@ -28438,7 +28546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row to ~Break Across Pages"
-msgstr ""
+msgstr "Qu~bra de linha em todas as páginas"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Lista de marcas"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Lista numerada"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Lista romana"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/pt/sc/source/ui/src.po b/source/pt/sc/source/ui/src.po
index dcd0c624393..128797073d8 100644
--- a/source/pt/sc/source/ui/src.po
+++ b/source/pt/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-23 23:30+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:17+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495582239.000000\n"
+"X-POOTLE-MTIME: 1497997067.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Intervalo movido de #1 para #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2871,7 +2871,7 @@ msgstr "As matrizes imbricadas não são permitidas."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "Texto para colunas"
diff --git a/source/pt/scp2/source/ooo.po b/source/pt/scp2/source/ooo.po
index f5e8b444415..95508fefd9d 100644
--- a/source/pt/scp2/source/ooo.po
+++ b/source/pt/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-01-07 17:48+0000\n"
+"PO-Revision-Date: 2017-06-08 21:38+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483811325.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496957938.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Upper Sorbian"
-msgstr ""
+msgstr "Alto sórbio"
#: module_langpack.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Instala a interface de utilizador em alto sórbio"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/pt/sfx2/source/view.po b/source/pt/sfx2/source/view.po
index 1d6284dc86d..4198509aa39 100644
--- a/source/pt/sfx2/source/view.po
+++ b/source/pt/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-18 23:20+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:17+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492557646.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997074.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "Este documento contém uma assinatura inválida."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "A assinatura era válida, mas o documento foi modificado"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/pt/starmath/source.po b/source/pt/starmath/source.po
index 2e13fa119ff..091087d0315 100644
--- a/source/pt/starmath/source.po
+++ b/source/pt/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-05-21 22:02+0000\n"
+"PO-Revision-Date: 2017-06-08 21:39+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495404161.000000\n"
+"X-POOTLE-MTIME: 1496957966.000000\n"
#: commands.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"RID_XODIVIDEY_HELP\n"
"string.text"
msgid "Circled Slash"
-msgstr ""
+msgstr "Barra cercada"
#: commands.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"RID_XODOTY_HELP\n"
"string.text"
msgid "Circled Dot"
-msgstr ""
+msgstr "Ponto cercado"
#: commands.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"RID_XOMINUSY_HELP\n"
"string.text"
msgid "Circled Minus"
-msgstr ""
+msgstr "Sinal de menos cercado"
#: commands.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_XOPLUSY_HELP\n"
"string.text"
msgid "Circled Plus"
-msgstr ""
+msgstr "Sinal de mais cercado"
#: commands.src
msgctxt ""
diff --git a/source/pt/svtools/source/control.po b/source/pt/svtools/source/control.po
index dfe73c91109..0d2765b2f40 100644
--- a/source/pt/svtools/source/control.po
+++ b/source/pt/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-04-15 12:22+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:25+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1460722958.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997520.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Preto itálico"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Livro"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Negrito oblíquo"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Negrito condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Negrito condensado itálico"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Negrito condensado oblíquo"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Itálico condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Oblíquo condensado"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "Extrafino"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "Itálico extrafino"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Oblíquo"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Semi-negrito"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Semi-negrito itálico"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/pt/svtools/source/misc.po b/source/pt/svtools/source/misc.po
index c3377b49673..0aad2c51f0e 100644
--- a/source/pt/svtools/source/misc.po
+++ b/source/pt/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-21 22:02+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:21+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495404163.000000\n"
+"X-POOTLE-MTIME: 1497997278.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Congo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (República democrática do Congo)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/pt/sw/source/core/undo.po b/source/pt/sw/source/core/undo.po
index 55fc3b81c6f..9bb3993cf67 100644
--- a/source/pt/sw/source/core/undo.po
+++ b/source/pt/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-26 12:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:22+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493210676.000000\n"
+"X-POOTLE-MTIME: 1497997335.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "quebra de coluna"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Inserir $1"
@@ -899,7 +899,7 @@ msgstr "Inserir $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Eliminar $1"
@@ -907,7 +907,7 @@ msgstr "Eliminar $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr "Atributos alterados"
@@ -915,7 +915,7 @@ msgstr "Atributos alterados"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr "Tabela alterada"
@@ -923,7 +923,7 @@ msgstr "Tabela alterada"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
msgstr "Estilo alterado"
@@ -931,6 +931,46 @@ msgstr "Estilo alterado"
#: undo.src
msgctxt ""
"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formatação de parágrafo alterada"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Inserir linha"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Eliminar linha"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Inserir célula"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Eliminar célula"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
"STR_N_REDLINES\n"
"string.text"
msgid "$1 changes"
diff --git a/source/pt/sw/source/uibase/docvw.po b/source/pt/sw/source/uibase/docvw.po
index 08093ebac86..61c863119c1 100644
--- a/source/pt/sw/source/uibase/docvw.po
+++ b/source/pt/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-05-28 22:00+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:22+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464472816.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997356.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Estilos de parágrafo aplicados"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Formatação de parágrafo alterada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Linha inserida"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Linha eliminada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Célula inserida"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Célula eliminada"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/pt/sw/source/uibase/ribbar.po b/source/pt/sw/source/uibase/ribbar.po
index e3bb10b3445..a15d4bc9f67 100644
--- a/source/pt/sw/source/uibase/ribbar.po
+++ b/source/pt/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-01-15 22:25+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:22+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484519105.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997368.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Texto da fórmula"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Texto da fórmula"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/pt/sw/source/uibase/uiview.po b/source/pt/sw/source/uibase/uiview.po
index 54ddba39e6d..99adedb57cb 100644
--- a/source/pt/sw/source/uibase/uiview.po
+++ b/source/pt/sw/source/uibase/uiview.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-16 22:13+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 22:22+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492380782.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997379.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Exportar origem..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Exportar cópia da origem..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/pt/sw/uiconfig/swriter/ui.po b/source/pt/sw/uiconfig/swriter/ui.po
index 261d7229afa..0981646eb38 100644
--- a/source/pt/sw/uiconfig/swriter/ui.po
+++ b/source/pt/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-01 22:03+0000\n"
+"PO-Revision-Date: 2017-06-08 21:41+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: none\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496354592.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496958076.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Descrição:"
#: frmaddpage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Editar comentário..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Ordenar por"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Ação"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Data"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Comentário"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Posição no documento"
#: mergeconnectdialog.ui
msgctxt ""
@@ -11947,7 +11947,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "Use LibreOffice 4.3 anchoring paint order (in current document)"
-msgstr ""
+msgstr "Utilizar ordem de ancoragem de pintura do LibreOffice 4.3 (documento atual)"
#: optcompatpage.ui
msgctxt ""
@@ -11956,7 +11956,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "<User settings>"
-msgstr ""
+msgstr "<Definições do utilizador>"
#: optcompatpage.ui
msgctxt ""
diff --git a/source/pt/xmlsecurity/uiconfig/ui.po b/source/pt/xmlsecurity/uiconfig/ui.po
index 7acaf360c54..92067195aa3 100644
--- a/source/pt/xmlsecurity/uiconfig/ui.po
+++ b/source/pt/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-16 21:30+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 22:23+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492378239.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497997387.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Remover"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Iniciar gestor de certificados..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ro/desktop/source/deployment/gui.po b/source/ro/desktop/source/deployment/gui.po
index 4ee16ded955..16038ff35a3 100644
--- a/source/ro/desktop/source/deployment/gui.po
+++ b/source/ro/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 06:05+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ro\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467698735.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449861004.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ro/helpcontent2/source/text/sbasic/shared.po b/source/ro/helpcontent2/source/text/sbasic/shared.po
index e8196c43bf4..bef2cd2cdc9 100644
--- a/source/ro/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ro/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 13:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ro/helpcontent2/source/text/shared/00.po b/source/ro/helpcontent2/source/text/shared/00.po
index 4250b246fbf..cb6a2ad77b4 100644
--- a/source/ro/helpcontent2/source/text/shared/00.po
+++ b/source/ro/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 22:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ro/helpcontent2/source/text/shared/01.po b/source/ro/helpcontent2/source/text/shared/01.po
index 84335948e39..48a3b44b83d 100644
--- a/source/ro/helpcontent2/source/text/shared/01.po
+++ b/source/ro/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-24 22:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ro/helpcontent2/source/text/shared/optionen.po b/source/ro/helpcontent2/source/text/shared/optionen.po
index 9cd981b4a66..73775b24bad 100644
--- a/source/ro/helpcontent2/source/text/shared/optionen.po
+++ b/source/ro/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 16:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ro/helpcontent2/source/text/swriter.po b/source/ro/helpcontent2/source/text/swriter.po
index 66ca6f65863..18d7f04e154 100644
--- a/source/ro/helpcontent2/source/text/swriter.po
+++ b/source/ro/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-06-14 12:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,7 +1053,7 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
msgstr ""
#: main0106.xhp
diff --git a/source/ro/helpcontent2/source/text/swriter/00.po b/source/ro/helpcontent2/source/text/swriter/00.po
index d5ca0696322..942514de96a 100644
--- a/source/ro/helpcontent2/source/text/swriter/00.po
+++ b/source/ro/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-24 23:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/ro/helpcontent2/source/text/swriter/01.po b/source/ro/helpcontent2/source/text/swriter/01.po
index c5a85a18946..19fce2f64ae 100644
--- a/source/ro/helpcontent2/source/text/swriter/01.po
+++ b/source/ro/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 17:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,7 +21341,7 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21349,7 +21349,7 @@ msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/ro/helpcontent2/source/text/swriter/guide.po b/source/ro/helpcontent2/source/text/swriter/guide.po
index 542215cd642..f70a29b1143 100644
--- a/source/ro/helpcontent2/source/text/swriter/guide.po
+++ b/source/ro/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: chapter_numbering.xhp
@@ -2909,7 +2909,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po
index 33fc4c220e7..bf324965898 100644
--- a/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ro/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-16 14:23+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Alege o temă"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Inserează..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Proprietăți..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Obiect..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/ro/sc/source/ui/src.po b/source/ro/sc/source/ui/src.po
index 4a5da5f69e1..4173f4780ee 100644
--- a/source/ro/sc/source/ui/src.po
+++ b/source/ro/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-21 09:08+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Intervalul a fost modificat de la #1 la #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Matricile imbricate nu sunt suportate."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ro/sfx2/source/view.po b/source/ro/sfx2/source/view.po
index 2a500b6637b..fcb5e274bca 100644
--- a/source/ro/sfx2/source/view.po
+++ b/source/ro/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-16 14:05+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ro/svtools/source/control.po b/source/ro/svtools/source/control.po
index c550bb15386..55422f538fd 100644
--- a/source/ro/svtools/source/control.po
+++ b/source/ro/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-29 14:10+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Negru cursiv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ro/svtools/source/misc.po b/source/ro/svtools/source/misc.po
index dcbf14f4015..8bb16659651 100644
--- a/source/ro/svtools/source/misc.po
+++ b/source/ro/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-19 09:10+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495185011.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ro/sw/source/core/undo.po b/source/ro/sw/source/core/undo.po
index bda406d0e6a..5f7d5f15af7 100644
--- a/source/ro/sw/source/core/undo.po
+++ b/source/ro/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-19 09:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495185374.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "întrerupere de coloană"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Inserează $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Șterge $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atribute schimbate"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabel modificat"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stil schimbat"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ro/sw/source/uibase/docvw.po b/source/ro/sw/source/uibase/docvw.po
index e59a50bb8f3..5baec7fce0f 100644
--- a/source/ro/sw/source/uibase/docvw.po
+++ b/source/ro/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-04-15 12:40+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Stiluri de paragraf aplicate"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ro/sw/source/uibase/ribbar.po b/source/ro/sw/source/uibase/ribbar.po
index b660119eed7..f9c6549c645 100644
--- a/source/ro/sw/source/uibase/ribbar.po
+++ b/source/ro/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-19 14:28+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Textul formulei"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ro/sw/source/uibase/uiview.po b/source/ro/sw/source/uibase/uiview.po
index e99f6b4c17e..de7cb26ec99 100644
--- a/source/ro/sw/source/uibase/uiview.po
+++ b/source/ro/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 00:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exportă sursa..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ro/xmlsecurity/uiconfig/ui.po b/source/ro/xmlsecurity/uiconfig/ui.po
index 20793c28019..8b7965baf80 100644
--- a/source/ro/xmlsecurity/uiconfig/ui.po
+++ b/source/ro/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-19 09:12+0000\n"
"Last-Translator: Ákos Nagy <nagy.akos@libreoffice.ro>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495185141.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Șterge"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ru/desktop/source/deployment/gui.po b/source/ru/desktop/source/deployment/gui.po
index dc98c3a7155..0742d6dea70 100644
--- a/source/ru/desktop/source/deployment/gui.po
+++ b/source/ru/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-17 06:13+0000\n"
"Last-Translator: Helen <helenrussian@gmail.com>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484633631.000000\n"
#: dp_gui_dialog.src
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ru/filter/source/config/fragments/filters.po b/source/ru/filter/source/config/fragments/filters.po
index 671cd4912be..046e1f3d9e7 100644
--- a/source/ru/filter/source/config/fragments/filters.po
+++ b/source/ru/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-01 12:10+0000\n"
+"PO-Revision-Date: 2017-06-14 14:07+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496319041.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497449241.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Устаревшая презентация StarOffice"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/ru/filter/source/config/fragments/types.po b/source/ru/filter/source/config/fragments/types.po
index 0bacd0546be..0e6cebbc7b7 100644
--- a/source/ru/filter/source/config/fragments/types.po
+++ b/source/ru/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: types\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-01 12:10+0000\n"
+"PO-Revision-Date: 2017-06-14 13:57+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496319045.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497448665.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/sbasic/shared.po b/source/ru/helpcontent2/source/text/sbasic/shared.po
index 6615f4dd544..b0232db7633 100644
--- a/source/ru/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ru/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-24 14:20+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Коды ошибок</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Эта функция времени выполнения возвращает контекст компонента по умолчанию, который используется при создании экземпляров служб с помощью XmultiServiceFactory. Дополнительные сведения см. в разделе <item type=\"literal\">Профессиональная UNO</item> в <item type=\"literal\">руководстве разработчика</item> по адресу <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ru/helpcontent2/source/text/shared/00.po b/source/ru/helpcontent2/source/text/shared/00.po
index 692ba505124..88b3dd3efe6 100644
--- a/source/ru/helpcontent2/source/text/shared/00.po
+++ b/source/ru/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-10-08 09:07+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ru/helpcontent2/source/text/shared/01.po b/source/ru/helpcontent2/source/text/shared/01.po
index b154ec30985..660cf830705 100644
--- a/source/ru/helpcontent2/source/text/shared/01.po
+++ b/source/ru/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-10-15 07:25+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Выберите стиль абзаца или уровень структуры, который будет разделять исходный документ на вложенные документы.</ahelp> По умолчанию новый документ создаётся при каждом уровне структуры 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Экспорт закладок документов Writer как закладок PDF. Закладки создаются для всех абзацев структуры (Сервис - Структура нумерации) и для всех пунктов оглавления, которым в исходном документе присвоены гиперссылки.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/shared/optionen.po b/source/ru/helpcontent2/source/text/shared/optionen.po
index eab92325cfa..6625edfda1d 100644
--- a/source/ru/helpcontent2/source/text/shared/optionen.po
+++ b/source/ru/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-10-08 09:11+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ru/helpcontent2/source/text/swriter.po b/source/ru/helpcontent2/source/text/swriter.po
index f32ef1a1e44..27c180261d3 100644
--- a/source/ru/helpcontent2/source/text/swriter.po
+++ b/source/ru/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-10-08 10:43+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Структура нумерации\">Структура нумерации</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/swriter/00.po b/source/ru/helpcontent2/source/text/swriter/00.po
index c06d1fd9d24..b23c0d20dd8 100644
--- a/source/ru/helpcontent2/source/text/swriter/00.po
+++ b/source/ru/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-10-08 09:13+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Выберите <emph>Сервис - Структура нумерации</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Выберите вкладку <emph>Сервис - Структура нумерации - Нумерация</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Выберите <emph>Сервис - Нумерация строк</emph> (не для формата HTML) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/swriter/01.po b/source/ru/helpcontent2/source/text/swriter/01.po
index 2404d138647..63780086601 100644
--- a/source/ru/helpcontent2/source/text/swriter/01.po
+++ b/source/ru/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-01-17 06:25+0000\n"
"Last-Translator: Helen <helenrussian@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Щёлкните <emph>1 </emph>, чтобы отобразить в окне Навигатора заголовки верхнего уровня, или щёлкните <emph>10</emph>, чтобы отобразить все заголовки.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Если для поля главы задано значение \"Номер главы без разделителя\", то разделители, указанные для номеров глав в пункте меню <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Сервис – Структура нумерации</emph></link>, не отображаются."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Вставляет номер главы. Чтобы назначить нумерацию глав для стиля заголовка, выберите пункты меню<emph>Сервис - Структура нумерации</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Структура нумерации"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Структура нумерации"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Структура нумерации связана со стилями абзаца. По умолчанию соответствующим уровням структуры (1-10) назначены стили абзаца «Заголовок» (1-10). При желании можно назначить уровням структуры другие стили абзаца."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "При необходимости пронумеровать заголовки выберите пункты меню <emph>Сервис - Структура нумерации</emph> для присвоения нумерации стилю абзаца. Не используйте значок нумерации на панели инструментов форматирования."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Чтобы уровни структуры выделялись на экране цветом, выберите команду <emph>Вид - </emph><emph>Затенение полей</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Сохраняет или загружает формат нумерации структуры. Сохраненный формат нумерации доступен для всех текстовых документов.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Кнопка <emph>Формат</emph> доступна только для нумерации структуры. Для нумерованных и маркированных списков используйте стили нумерации абзацев."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Открывает диалоговое окно, где можно сохранить текущие параметры для выбранного уровня структуры. Затем эти параметры можно загрузить из другого документа.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Выберите уровень структуры, который требуется изменить, а затем задайте для него параметры нумерации.</ahelp> Чтобы применить параметры нумерации (кроме стиля абзаца) ко всем уровням, щёлкните \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Выберите стиль абзаца, который требуется назначить выбранному уровню структуры.</ahelp> Если выбрать запись «[Нет]», выбранный уровень структуры не будет определен."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Новый блок с адресом"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Новый блок с адресом"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Элементы адреса"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Перетащите элемент адреса в поле внизу."
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/swriter/guide.po b/source/ru/helpcontent2/source/text/swriter/guide.po
index 55b87f99f40..194909b15ea 100644
--- a/source/ru/helpcontent2/source/text/swriter/guide.po
+++ b/source/ru/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-10-08 09:15+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "С помощью навигатора можно перемещать заголовки и относящийся к ним текст вверх или вниз в документе. Можно также повышать или понижать уровни заголовков. Для использования этой функции заголовки в документе должны быть отформатированы в одном из стандартных стилей абзаца для заголовков. Чтобы применить для заголовка пользовательский стиль абзаца, выберите пункт меню <emph>Сервис - Структура нумерации</emph>, выберите стиль в поле <emph>Стиль абзаца</emph>, а затем дважды щёлкните номер в списке <emph>Уровень</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Структура нумерации"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>структура;нумерация</bookmark_value> <bookmark_value>удаление;номера заголовков</bookmark_value> <bookmark_value>нумерация глав</bookmark_value> <bookmark_value>заголовки; стили нумерации/абзаца</bookmark_value> <bookmark_value>нумерация;заголовки</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Структура нумерации\">Структура нумерации</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Можно изменить иерархию заголовков или назначить уровень в иерархии пользовательскому стилю абзаца. Можно также добавлять нумерацию глав или разделов к стилям абзаца для заголовков. По умолчанию стиль абзаца \"Заголовок 1\" - верхний в иерархии структуры."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Выберите команду <item type=\"menuitem\">Сервис – Структура и нумерация</item> и перейдите на вкладку <item type=\"menuitem\">Нумерация</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Удаление автоматической нумерации из абзаца заголовка:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Выберите команду <item type=\"menuitem\">Сервис – Структура и нумерация</item> и перейдите на вкладку <item type=\"menuitem\">Нумерация</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Прежде чем вставить сведения о главе в колонтитул, следует задать параметры нумерации структуры для стиля абзаца, который нужно применять к заголовкам глав."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Выберите команду <emph>Сервис - Структура нумерации</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>индексы; определение элементов</bookmark_value> <bookmark_value>оглавления; определение элементов</bookmark_value> <bookmark_value>элементы; определение в индексах/оглавлениях</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Выберите команду <emph>Вставка - Оглавление и указатели - Элемент</emph> и выполните одно из следующих действий."
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Выберите команду <emph>Сервис - Структура нумерации</emph> и откройте вкладку <emph>Нумерация</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Если к элементу оглавления требуется применить другой стиль абзаца, установите в области <item type=\"menuitem\">Использовать</item> флажок <item type=\"menuitem\">Дополнительные стили</item> , а затем нажмите кнопку обзора (<item type=\"menuitem\">...</item>) рядом с флажком. В диалоговом окне <item type=\"menuitem\">Назначить стиль</item> выберите стиль в списке, а затем нажмите кнопку <item type=\"menuitem\">>></item> или <item type=\"menuitem\"><<</item> для определения уровня структуры для стиля абзаца."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>нумерация; удаление/прерывание</bookmark_value> <bookmark_value>маркированные списки; прерывание</bookmark_value> <bookmark_value>списки;удаление/прерывание нумерации</bookmark_value> <bookmark_value>удаление;номера в списках</bookmark_value> <bookmark_value>прерывание нумерованных списков</bookmark_value> <bookmark_value>изменение;первый номер в списке</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Если необходимо пронумеровать заголовки, выберите меню <emph>Сервис - Структура нумерации</emph> для присвоения нумерации стилю абзаца. Не используйте значок нумерации на панели инструментов форматирования."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
index cbfe59c05ad..5f81d249488 100644
--- a/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 14:51+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 03:21+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496155889.000000\n"
+"X-POOTLE-MTIME: 1497928898.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Выбор тем"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Вставка..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -9581,7 +9698,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Титульный слайд"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -23578,7 +23695,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Групповая компактная"
#: Notebookbar.xcu
msgctxt ""
@@ -23587,7 +23704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Full"
-msgstr ""
+msgstr "Групповая полная"
#: Notebookbar.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "Свойства..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "Объект..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -26980,7 +27088,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr ""
+msgstr "Повторять строки заголовка"
#: WriterCommands.xcu
msgctxt ""
@@ -28762,7 +28870,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chapter ~Numbering..."
-msgstr "Нумерация по главам..."
+msgstr "Нумерация глав..."
#: WriterCommands.xcu
msgctxt ""
@@ -28771,7 +28879,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Chapter Numbering"
-msgstr "Нумерация по главам"
+msgstr "Задание нумерации глав"
#: WriterCommands.xcu
msgctxt ""
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Маркированный список"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Нумерованный список"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Римская нумерация"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ru/sc/source/ui/src.po b/source/ru/sc/source/ui/src.po
index b95963e3c18..e79bb87d685 100644
--- a/source/ru/sc/source/ui/src.po
+++ b/source/ru/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-30 14:51+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496155896.000000\n"
#: globstr.src
@@ -2701,7 +2701,7 @@ msgstr "Область перемещена из #1 в #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Режим записи изменений будет отключён.\n"
-"Вся накопленная информация об изменениях будет удалена.\n"
-"\n"
-"Отключить режим записи изменений?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Вложенные массивы не поддерживаются."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Текст по столбцам"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/ru/sfx2/source/view.po b/source/ru/sfx2/source/view.po
index 5ca46be378b..a3ea8732d81 100644
--- a/source/ru/sfx2/source/view.po
+++ b/source/ru/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: view\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-30 14:51+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496155906.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr "Подпись документа недействительна."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ru/svtools/source/control.po b/source/ru/svtools/source/control.po
index 821194b4a42..e29b42ad792 100644
--- a/source/ru/svtools/source/control.po
+++ b/source/ru/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-28 13:57+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Чёрный курсив"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ru/svtools/source/dialogs.po b/source/ru/svtools/source/dialogs.po
index ffc0d841aa8..be6b9dbb81c 100644
--- a/source/ru/svtools/source/dialogs.po
+++ b/source/ru/svtools/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dialogs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-25 13:52+0200\n"
-"PO-Revision-Date: 2017-04-06 12:41+0000\n"
+"PO-Revision-Date: 2017-06-14 14:03+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1491482471.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497449006.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"STR_FORMAT_ID_RICHTEXT\n"
"string.text"
msgid "Formatted text [Richtext]"
-msgstr ""
+msgstr "Форматированный текст [RTF]"
#: formats.src
msgctxt ""
@@ -847,7 +847,7 @@ msgctxt ""
"General OLE error.\n"
"itemlist.text"
msgid "General OLE error."
-msgstr ""
+msgstr "Общая ошибка OLE."
#: so3res.src
msgctxt ""
@@ -865,7 +865,7 @@ msgctxt ""
"Data not available at this time.\n"
"itemlist.text"
msgid "Data not available at this time."
-msgstr ""
+msgstr "Данные в настоящий момент недоступны."
#: so3res.src
msgctxt ""
@@ -874,7 +874,7 @@ msgctxt ""
"The action cannot be executed in the object's current state.\n"
"itemlist.text"
msgid "The action cannot be executed in the object's current state."
-msgstr ""
+msgstr "В этом состоянии объект не может выполнить это действие"
#: so3res.src
msgctxt ""
@@ -883,7 +883,7 @@ msgctxt ""
"The object does not support any actions.\n"
"itemlist.text"
msgid "The object does not support any actions."
-msgstr ""
+msgstr "Этот объект не поддерживает никаких действий."
#: so3res.src
msgctxt ""
@@ -892,7 +892,7 @@ msgctxt ""
"Object does not support this action.\n"
"itemlist.text"
msgid "Object does not support this action."
-msgstr ""
+msgstr "Объект не поддерживает это действие."
#: so3res.src
msgctxt ""
@@ -901,7 +901,7 @@ msgctxt ""
"$(ERR) activating object\n"
"itemlist.text"
msgid "$(ERR) activating object"
-msgstr ""
+msgstr "$(ERR) при активировании объекта"
#: so3res.src
msgctxt ""
diff --git a/source/ru/svtools/source/misc.po b/source/ru/svtools/source/misc.po
index 2c45b81f6d2..713f190d37b 100644
--- a/source/ru/svtools/source/misc.po
+++ b/source/ru/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-30 14:51+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496155908.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Бэквил"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Китуба"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Сибинский"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ru/svtools/uiconfig/ui.po b/source/ru/svtools/uiconfig/ui.po
index e74d9ffd2a4..4591e72d7bb 100644
--- a/source/ru/svtools/uiconfig/ui.po
+++ b/source/ru/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-12-26 21:27+0000\n"
+"PO-Revision-Date: 2017-06-14 14:03+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482787675.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497449017.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "Удалить"
#: fileviewmenu.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr ""
+msgstr "Переименовать"
#: graphicexport.ui
msgctxt ""
diff --git a/source/ru/sw/source/core/undo.po b/source/ru/sw/source/core/undo.po
index f620553faad..bfd7c624ac5 100644
--- a/source/ru/sw/source/core/undo.po
+++ b/source/ru/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: undo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-30 14:51+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496155914.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "разрыв колонки"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Вставить $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Удалить $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Атрибуты изменены"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Таблица изменена"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Стиль изменён"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ru/sw/source/uibase/docvw.po b/source/ru/sw/source/uibase/docvw.po
index 00c19b85a66..b361ef37059 100644
--- a/source/ru/sw/source/uibase/docvw.po
+++ b/source/ru/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-30 00:12+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Применён стиль абзаца"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ru/sw/source/uibase/ribbar.po b/source/ru/sw/source/uibase/ribbar.po
index 75ed0c7e01c..f8467ec77ac 100644
--- a/source/ru/sw/source/uibase/ribbar.po
+++ b/source/ru/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-26 21:33+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Текст формулы"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ru/sw/source/uibase/uiview.po b/source/ru/sw/source/uibase/uiview.po
index 1edb4e9a01c..119ec0fb1cd 100644
--- a/source/ru/sw/source/uibase/uiview.po
+++ b/source/ru/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Экспорт исходного текста..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ru/sw/uiconfig/swriter/ui.po b/source/ru/sw/uiconfig/swriter/ui.po
index 0391aac8c1c..6b6c9560a0e 100644
--- a/source/ru/sw/uiconfig/swriter/ui.po
+++ b/source/ru/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ 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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-30 14:52+0000\n"
+"PO-Revision-Date: 2017-06-19 14:22+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496155920.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497882174.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Действие"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Автор"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Дата"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Комментарий"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Положение в документе"
#: mergeconnectdialog.ui
msgctxt ""
@@ -10128,13 +10128,14 @@ msgid "Tools"
msgstr "Сервис"
#: notebookbar_groupedbar_compact.ui
+#, fuzzy
msgctxt ""
"notebookbar_groupedbar_compact.ui\n"
"MenuBar\n"
"label\n"
"string.text"
msgid " "
-msgstr ""
+msgstr " "
#: notebookbar_groupedbar_full.ui
msgctxt ""
@@ -12919,7 +12920,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Chapter Numbering"
-msgstr "Нумерация по главам"
+msgstr "Нумерация глав"
#: outlinenumbering.ui
msgctxt ""
diff --git a/source/ru/wizards/source/formwizard.po b/source/ru/wizards/source/formwizard.po
index d330ab4a73d..c89e171e5b3 100644
--- a/source/ru/wizards/source/formwizard.po
+++ b/source/ru/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: formwizard\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-30 14:52+0000\n"
+"PO-Revision-Date: 2017-06-14 14:06+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
"Language: ru\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496155923.000000\n"
+"X-POOTLE-MTIME: 1497449193.000000\n"
#: dbwizres.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"RID_DB_COMMON_START + 12\n"
"string.text"
msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated."
-msgstr ""
+msgstr "Невозможно создать экземпляр сервиса баз данных (com.sun.data.DatabaseEngine)."
#: dbwizres.src
msgctxt ""
diff --git a/source/ru/xmlsecurity/uiconfig/ui.po b/source/ru/xmlsecurity/uiconfig/ui.po
index deec1a4cc26..95060195e2c 100644
--- a/source/ru/xmlsecurity/uiconfig/ui.po
+++ b/source/ru/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-30 14:52+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496155923.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Удалить"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/rw/desktop/source/deployment/gui.po b/source/rw/desktop/source/deployment/gui.po
index 589983798bd..a4d0075ab15 100644
--- a/source/rw/desktop/source/deployment/gui.po
+++ b/source/rw/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 06:16+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 02:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: rw\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467699375.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462156883.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po b/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po
index af5dd716ee8..a4945b78e90 100644
--- a/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/rw/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 07:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Guhitamo Insanganyamatsiko"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4098,6 +4098,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27078,15 +27195,6 @@ msgid "~Properties..."
msgstr "Indangakintu..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/rw/sc/source/ui/src.po b/source/rw/sc/source/ui/src.po
index 3331457180c..2cab84333a1 100644
--- a/source/rw/sc/source/ui/src.po
+++ b/source/rw/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 07:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "Igice cyimuwe kuva kuri #1 ujya kuri #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2884,7 +2884,7 @@ msgstr "Amatsinda bwari ntabwo yemewe."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/rw/sfx2/source/view.po b/source/rw/sfx2/source/view.po
index baffe0e1397..1ff50776806 100644
--- a/source/rw/sfx2/source/view.po
+++ b/source/rw/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/rw/svtools/source/control.po b/source/rw/svtools/source/control.po
index 199ec515725..0cdeba500e1 100644
--- a/source/rw/svtools/source/control.po
+++ b/source/rw/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 02:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "Byirabura kandi biberamye"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/rw/svtools/source/misc.po b/source/rw/svtools/source/misc.po
index 031d1fb4db0..7c8f8922757 100644
--- a/source/rw/svtools/source/misc.po
+++ b/source/rw/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3195,9 +3195,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3925,6 +3925,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/rw/sw/source/core/undo.po b/source/rw/sw/source/core/undo.po
index 605819acd14..575d4983f0e 100644
--- a/source/rw/sw/source/core/undo.po
+++ b/source/rw/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "gusimbuka inkingi"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Kwinjizamo $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Gusiba $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Ibiranga byahindutse"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Imbonerahamwe yahindutse"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Imisusire yahindutse"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/rw/sw/source/uibase/docvw.po b/source/rw/sw/source/uibase/docvw.po
index bc353b679c6..55a2f71e9cf 100644
--- a/source/rw/sw/source/uibase/docvw.po
+++ b/source/rw/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 13:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/rw/sw/source/uibase/ribbar.po b/source/rw/sw/source/uibase/ribbar.po
index 3fd568f78a3..4dbb73b7ded 100644
--- a/source/rw/sw/source/uibase/ribbar.po
+++ b/source/rw/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/rw/sw/source/uibase/uiview.po b/source/rw/sw/source/uibase/uiview.po
index db199f14e50..3cc82d13d7d 100644
--- a/source/rw/sw/source/uibase/uiview.po
+++ b/source/rw/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 13:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/rw/xmlsecurity/uiconfig/ui.po b/source/rw/xmlsecurity/uiconfig/ui.po
index f21dd654a19..7dbfee0704c 100644
--- a/source/rw/xmlsecurity/uiconfig/ui.po
+++ b/source/rw/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sa-IN/desktop/source/deployment/gui.po b/source/sa-IN/desktop/source/deployment/gui.po
index faca9236db9..5252ce6af8f 100644
--- a/source/sa-IN/desktop/source/deployment/gui.po
+++ b/source/sa-IN/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 06:32+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sa_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467700342.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449861704.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index d9428aafcea..1a6f74eef12 100644
--- a/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sa-IN/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-05-16 09:20+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "वीथिकाः वृणु"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4098,6 +4098,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27061,15 +27178,6 @@ msgid "~Properties..."
msgstr "गुणजातानि..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/sa-IN/sc/source/ui/src.po b/source/sa-IN/sc/source/ui/src.po
index 463b34621d7..1d3a9674687 100644
--- a/source/sa-IN/sc/source/ui/src.po
+++ b/source/sa-IN/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:21+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2721,7 +2721,7 @@ msgstr "#1 तः #2 मध्ये प्रसरम् अगच्छत
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2889,7 +2889,7 @@ msgstr "नेस्टेड् विन्यासाः न समर्थ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sa-IN/sfx2/source/view.po b/source/sa-IN/sfx2/source/view.po
index f9449113a1e..7770ae03aba 100644
--- a/source/sa-IN/sfx2/source/view.po
+++ b/source/sa-IN/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sa-IN/svtools/source/control.po b/source/sa-IN/svtools/source/control.po
index 4146b239fb6..75b615a8f8d 100644
--- a/source/sa-IN/svtools/source/control.po
+++ b/source/sa-IN/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "श्यामसाचीकृतम्"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sa-IN/svtools/source/misc.po b/source/sa-IN/svtools/source/misc.po
index ab2ab5ca8e8..f8391e0a11a 100644
--- a/source/sa-IN/svtools/source/misc.po
+++ b/source/sa-IN/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 11:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3195,10 +3195,10 @@ msgstr "बेक्वै"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "किटुबा"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3928,6 +3928,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/sa-IN/sw/source/core/undo.po b/source/sa-IN/sw/source/core/undo.po
index 172ebd8473b..ebf902d27e7 100644
--- a/source/sa-IN/sw/source/core/undo.po
+++ b/source/sa-IN/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "स्तम्भखण्डनम्"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 समावेशय"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 लोपय"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "गुणाः परिणताः"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "सारणी परिणता"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "शैली परिणता"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sa-IN/sw/source/uibase/docvw.po b/source/sa-IN/sw/source/uibase/docvw.po
index 117896307af..954791de2db 100644
--- a/source/sa-IN/sw/source/uibase/docvw.po
+++ b/source/sa-IN/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sa-IN/sw/source/uibase/ribbar.po b/source/sa-IN/sw/source/uibase/ribbar.po
index 0ff53b09578..ec80749ecf6 100644
--- a/source/sa-IN/sw/source/uibase/ribbar.po
+++ b/source/sa-IN/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sa-IN/sw/source/uibase/uiview.po b/source/sa-IN/sw/source/uibase/uiview.po
index 08628e89223..4baf05d54ff 100644
--- a/source/sa-IN/sw/source/uibase/uiview.po
+++ b/source/sa-IN/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sa-IN/xmlsecurity/uiconfig/ui.po b/source/sa-IN/xmlsecurity/uiconfig/ui.po
index 78370e450bd..0b019cd1089 100644
--- a/source/sa-IN/xmlsecurity/uiconfig/ui.po
+++ b/source/sa-IN/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 22:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr "अपनय"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sat/desktop/source/deployment/gui.po b/source/sat/desktop/source/deployment/gui.po
index e4c285978c2..2eecd6dc4c3 100644
--- a/source/sat/desktop/source/deployment/gui.po
+++ b/source/sat/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 06:28+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sat\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467700120.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449861920.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po
index 5d5efcaa1f1..9bda99f5798 100644
--- a/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sat/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 07:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -645,8 +645,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "उयहा़र को बाछाव"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4183,6 +4183,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27529,15 +27646,6 @@ msgid "~Properties..."
msgstr ""
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/sat/sc/source/ui/src.po b/source/sat/sc/source/ui/src.po
index 50e05ab116c..8001360b540 100644
--- a/source/sat/sc/source/ui/src.po
+++ b/source/sat/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 07:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2722,7 +2722,7 @@ msgstr "पासनाव #1 खोन #2 रे चालाव .
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2889,7 +2889,7 @@ msgstr "तुका़वाक् साजाव बाय गोड़ोव
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sat/sfx2/source/view.po b/source/sat/sfx2/source/view.po
index 27732bae067..59f79cc8254 100644
--- a/source/sat/sfx2/source/view.po
+++ b/source/sat/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sat/svtools/source/control.po b/source/sat/svtools/source/control.po
index 75bb3c2a67e..babcfc4f42a 100644
--- a/source/sat/svtools/source/control.po
+++ b/source/sat/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "हेंदे कोचे ओल"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sat/svtools/source/misc.po b/source/sat/svtools/source/misc.po
index 467fc42e089..90dbf4aefee 100644
--- a/source/sat/svtools/source/misc.po
+++ b/source/sat/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 11:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3191,10 +3191,10 @@ msgstr "बेकवेल"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "किटुबा"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3924,6 +3924,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sat/sw/source/core/undo.po b/source/sat/sw/source/core/undo.po
index b3800fb29f0..85e4abccb48 100644
--- a/source/sat/sw/source/core/undo.po
+++ b/source/sat/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "कांधा केचेत्"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "सोगेसो़गे $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr " मेटाव(~D)मेटाव (~D)"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "गालाङ बोदोल"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ता़लिका बोदोलटेबुल बोदोल"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "हुना़र बोदोल"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sat/sw/source/uibase/docvw.po b/source/sat/sw/source/uibase/docvw.po
index 08d7d989fba..88548c45c4c 100644
--- a/source/sat/sw/source/uibase/docvw.po
+++ b/source/sat/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sat/sw/source/uibase/ribbar.po b/source/sat/sw/source/uibase/ribbar.po
index d5b9bc29ef5..712ffbee089 100644
--- a/source/sat/sw/source/uibase/ribbar.po
+++ b/source/sat/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sat/sw/source/uibase/uiview.po b/source/sat/sw/source/uibase/uiview.po
index dac0357fa82..3479e246bd7 100644
--- a/source/sat/sw/source/uibase/uiview.po
+++ b/source/sat/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sat/xmlsecurity/uiconfig/ui.po b/source/sat/xmlsecurity/uiconfig/ui.po
index 4dc84a3db41..a6875da5b72 100644
--- a/source/sat/xmlsecurity/uiconfig/ui.po
+++ b/source/sat/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 22:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr "Removeओचोक्"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sd/desktop/source/deployment/gui.po b/source/sd/desktop/source/deployment/gui.po
index e9c62e63018..c8722534d48 100644
--- a/source/sd/desktop/source/deployment/gui.po
+++ b/source/sd/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 06:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467701094.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449861934.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -169,6 +169,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po
index 5e1e7fbb6a9..e128bc45e02 100644
--- a/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sd/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 07:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -627,8 +627,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "وشيون چونڊيو"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4117,6 +4117,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27111,15 +27228,6 @@ msgid "~Properties..."
msgstr "خاصيتون۔۔۔"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/sd/sc/source/ui/src.po b/source/sd/sc/source/ui/src.po
index 04d49a2c8b3..1b493008939 100644
--- a/source/sd/sc/source/ui/src.po
+++ b/source/sd/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 07:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2717,7 +2717,7 @@ msgstr " کيتر کي #1 کان #2 تائين سوريو ويو۔"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2885,7 +2885,7 @@ msgstr "آکاري جيان صفبنديوُن کي سمرٿن نٿو ڏنو و
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sd/sfx2/source/view.po b/source/sd/sfx2/source/view.po
index eabbdcbc0da..c072dc32be6 100644
--- a/source/sd/sfx2/source/view.po
+++ b/source/sd/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -250,6 +250,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sd/svtools/source/control.po b/source/sd/svtools/source/control.po
index 47fb1e918b3..b7018bf1455 100644
--- a/source/sd/svtools/source/control.po
+++ b/source/sd/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "ڪارو اِٽيلڪ"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sd/svtools/source/misc.po b/source/sd/svtools/source/misc.po
index a6c73536a57..f014958899b 100644
--- a/source/sd/svtools/source/misc.po
+++ b/source/sd/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 10:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3193,10 +3193,10 @@ msgstr "بيڪويل"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "ڪٽوبا"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3926,6 +3926,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/sd/sw/source/core/undo.po b/source/sd/sw/source/core/undo.po
index 98a36bc76e1..03480db7a9e 100644
--- a/source/sd/sw/source/core/undo.po
+++ b/source/sd/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 14:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "ڪالم ۾ رخنو "
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 داخل ڪريو "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 خارج ڪريو "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "لاڳاپو رکندڙن ۾ تبديل ڪئي ويئي "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "تختيءَ ۾ تبديل ڪئي ويئي "
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "نموني ۾ تبديل ڪئي ويئي "
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sd/sw/source/uibase/docvw.po b/source/sd/sw/source/uibase/docvw.po
index accfce858d9..ed610aaa566 100644
--- a/source/sd/sw/source/uibase/docvw.po
+++ b/source/sd/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sd/sw/source/uibase/ribbar.po b/source/sd/sw/source/uibase/ribbar.po
index 972c9eb3b68..37684ba1cdb 100644
--- a/source/sd/sw/source/uibase/ribbar.po
+++ b/source/sd/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sd/sw/source/uibase/uiview.po b/source/sd/sw/source/uibase/uiview.po
index 3b960a003a9..cc098e0c1aa 100644
--- a/source/sd/sw/source/uibase/uiview.po
+++ b/source/sd/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sd/xmlsecurity/uiconfig/ui.po b/source/sd/xmlsecurity/uiconfig/ui.po
index 4605c3e83de..0edb3f1fe6d 100644
--- a/source/sd/xmlsecurity/uiconfig/ui.po
+++ b/source/sd/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr "ڪڍي ڇڏيو"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/si/desktop/source/deployment/gui.po b/source/si/desktop/source/deployment/gui.po
index 0a25306059c..c94826442e5 100644
--- a/source/si/desktop/source/deployment/gui.po
+++ b/source/si/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-12-11 19:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/si/helpcontent2/source/text/sbasic/shared.po b/source/si/helpcontent2/source/text/sbasic/shared.po
index e46b53c5b98..f0571a8635c 100644
--- a/source/si/helpcontent2/source/text/sbasic/shared.po
+++ b/source/si/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"fozei\">Choose <emph>පේලිය හැඩසවන්න</emph></variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/si/helpcontent2/source/text/shared/00.po b/source/si/helpcontent2/source/text/shared/00.po
index d96b585f5d0..fb8d2603d35 100644
--- a/source/si/helpcontent2/source/text/shared/00.po
+++ b/source/si/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-24 23:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/si/helpcontent2/source/text/shared/01.po b/source/si/helpcontent2/source/text/shared/01.po
index 0dac660c82f..dfd18465c85 100644
--- a/source/si/helpcontent2/source/text/shared/01.po
+++ b/source/si/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 13:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/si/helpcontent2/source/text/shared/optionen.po b/source/si/helpcontent2/source/text/shared/optionen.po
index 0dce9d48bc1..546326bb885 100644
--- a/source/si/helpcontent2/source/text/shared/optionen.po
+++ b/source/si/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/si/helpcontent2/source/text/swriter.po b/source/si/helpcontent2/source/text/swriter.po
index d4c3f2043ff..d55bcb3d537 100644
--- a/source/si/helpcontent2/source/text/swriter.po
+++ b/source/si/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 00:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">සංක්ෂිප්ත අංකනය</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/si/helpcontent2/source/text/swriter/00.po b/source/si/helpcontent2/source/text/swriter/00.po
index fd1c7ed9ae4..8a74c87394a 100644
--- a/source/si/helpcontent2/source/text/swriter/00.po
+++ b/source/si/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-25 00:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>මෙවලම්- පිටදාර අංකනය</emph>තෝරන්න</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"> <emph>මෙවලම් -පිටදාර අංකනය - අංකනය</emph>ටැබ තෝරන්න</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>මෙවලම්- රේඛා අංකනය</emph> තෝරන්න(HTML ආකාරයට නොමැත) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/si/helpcontent2/source/text/swriter/01.po b/source/si/helpcontent2/source/text/swriter/01.po
index 43b4d1a83b8..7a7607a4fd2 100644
--- a/source/si/helpcontent2/source/text/swriter/01.po
+++ b/source/si/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,7 +21341,7 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21349,7 +21349,7 @@ msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/si/helpcontent2/source/text/swriter/guide.po b/source/si/helpcontent2/source/text/swriter/guide.po
index 0c4cb4816c5..e5b93139190 100644
--- a/source/si/helpcontent2/source/text/swriter/guide.po
+++ b/source/si/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,7 +2901,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: chapter_numbering.xhp
@@ -2909,7 +2909,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">ආකෘති - මෝස්තර සහ ආකෘතීකරණය</item> තෝරන්න, ඊලඟට <item type=\"menuitem\">පිටු මෝස්තර</item> අයිකනය ක්ලික් කරන්න."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">ආකෘති - මෝස්තර සහ ආකෘතීකරණය</item> තෝරන්න, ඊලඟට <item type=\"menuitem\">පිටු මෝස්තර</item> අයිකනය ක්ලික් කරන්න."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/si/officecfg/registry/data/org/openoffice/Office/UI.po b/source/si/officecfg/registry/data/org/openoffice/Office/UI.po
index ddc5a4bda82..56d8c2427bd 100644
--- a/source/si/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/si/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 08:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "තේමා තෝරන්න"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26989,15 +27106,6 @@ msgid "~Properties..."
msgstr "වත්කම්..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/si/sc/source/ui/src.po b/source/si/sc/source/ui/src.po
index 07d035dff9c..c6c9a7e93b7 100644
--- a/source/si/sc/source/ui/src.po
+++ b/source/si/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 08:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2696,7 +2696,7 @@ msgstr "පරාසය #1 සිට #2 ට ගෙනයන ලදි"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2861,7 +2861,7 @@ msgstr "කූඩු කළ අරා සහාය දක්වන්නේ න
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/si/sfx2/source/view.po b/source/si/sfx2/source/view.po
index 44af85752c0..26414568bd8 100644
--- a/source/si/sfx2/source/view.po
+++ b/source/si/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -251,6 +251,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/si/svtools/source/control.po b/source/si/svtools/source/control.po
index 12102609fd8..5344b69479c 100644
--- a/source/si/svtools/source/control.po
+++ b/source/si/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "කළු ඇලකුරු"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/si/svtools/source/misc.po b/source/si/svtools/source/misc.po
index 561fd7f446b..3b148f72c3c 100644
--- a/source/si/svtools/source/misc.po
+++ b/source/si/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 11:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3181,9 +3181,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/si/sw/source/core/undo.po b/source/si/sw/source/core/undo.po
index 703ff168b9b..7c099e085e5 100644
--- a/source/si/sw/source/core/undo.po
+++ b/source/si/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 03:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -892,42 +892,82 @@ msgstr "තීරු බිඳුම"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ඇතුල් කරන්න"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 මකන්න"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "වෙනස්වූ උපලක්ෂණ"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "වගුව වෙනස්විය"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "වෙනස්වූ විලාසය"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/si/sw/source/uibase/docvw.po b/source/si/sw/source/uibase/docvw.po
index 5fb461fc16e..afa5c669518 100644
--- a/source/si/sw/source/uibase/docvw.po
+++ b/source/si/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/si/sw/source/uibase/ribbar.po b/source/si/sw/source/uibase/ribbar.po
index 3e832f0861e..37a96189a3a 100644
--- a/source/si/sw/source/uibase/ribbar.po
+++ b/source/si/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/si/sw/source/uibase/uiview.po b/source/si/sw/source/uibase/uiview.po
index befdc13d75e..fbdc4de790d 100644
--- a/source/si/sw/source/uibase/uiview.po
+++ b/source/si/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/si/xmlsecurity/uiconfig/ui.po b/source/si/xmlsecurity/uiconfig/ui.po
index 89b55bba229..a2702c2dd3c 100644
--- a/source/si/xmlsecurity/uiconfig/ui.po
+++ b/source/si/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sid/desktop/source/deployment/gui.po b/source/sid/desktop/source/deployment/gui.po
index 802e8764a02..e91f274cb87 100644
--- a/source/sid/desktop/source/deployment/gui.po
+++ b/source/sid/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 07:14+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-05-13 16:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: sid\n"
"Language: sid\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467702848.000000\n"
+"X-POOTLE-MTIME: 1431533296.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sid/helpcontent2/source/text/sbasic/shared.po b/source/sid/helpcontent2/source/text/sbasic/shared.po
index 4192614138f..1d86bcbd652 100644
--- a/source/sid/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sid/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 16:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Translators\\\n"
@@ -484,10 +484,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">So'ro koodubba</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33041,6 +33073,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Kuni dodammete assishshi horonsi'rattota gadimma ganaasine eigara qolanno. instantiating XbacaOwaanteFaktore widoonni owaatannoha ikkiro. Lexxo mashalaqqera<item type=\"literal\">Ogeessa UNO</item> fooliishsho <item type=\"literal\">Tantanaanchu Massago</item> giddo <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>aana la'i."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/sid/helpcontent2/source/text/shared/00.po b/source/sid/helpcontent2/source/text/shared/00.po
index 396b2dd0b5f..aec368b4775 100644
--- a/source/sid/helpcontent2/source/text/shared/00.po
+++ b/source/sid/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 00:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -9726,7 +9726,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9750,7 +9750,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/sid/helpcontent2/source/text/shared/01.po b/source/sid/helpcontent2/source/text/shared/01.po
index 2ce1b3a152a..bdb818251bc 100644
--- a/source/sid/helpcontent2/source/text/shared/01.po
+++ b/source/sid/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 20:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: milkyswd@gmail.com\n"
@@ -4806,8 +4806,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Borgufote akata woy gumishshu deerra buete bortaje cinaancho bortajubbara horoonsi'ra hasi'roottoha doori.</ahelp> Haaroo bortaje gadete mittu mitunku gumishshi deerrira 1. kalaqi."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40470,7 +40470,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/sid/helpcontent2/source/text/shared/optionen.po b/source/sid/helpcontent2/source/text/shared/optionen.po
index 4ceeb37a474..b5b90011c91 100644
--- a/source/sid/helpcontent2/source/text/shared/optionen.po
+++ b/source/sid/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 20:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Malaate Alemu\n"
@@ -2278,7 +2278,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2286,7 +2286,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2302,7 +2310,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/sid/helpcontent2/source/text/swriter.po b/source/sid/helpcontent2/source/text/swriter.po
index 546f8d0bb88..4f0580b5149 100644
--- a/source/sid/helpcontent2/source/text/swriter.po
+++ b/source/sid/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 01:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -1054,8 +1054,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Qummishshaho Kiiro soma</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter/00.po b/source/sid/helpcontent2/source/text/swriter/00.po
index 886101ed842..74129a6dc30 100644
--- a/source/sid/helpcontent2/source/text/swriter/00.po
+++ b/source/sid/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-25 01:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Translators\n"
@@ -2256,24 +2256,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>Uduunne - Gumishsha Kiirote wora doori</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>Uduunne - Gumishsha Kiirote wora - Kiirote wora</emph> giggishsha doori </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>Uduunne - Xuruuraho Kiiro aa</emph> (HTML Suudissate ikkikki)doori </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter/01.po b/source/sid/helpcontent2/source/text/swriter/01.po
index 47f38c0259c..36f6e6a0b84 100644
--- a/source/sid/helpcontent2/source/text/swriter/01.po
+++ b/source/sid/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 20:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidamaa Translation\n"
@@ -1126,8 +1126,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Dooyyishshu xullaallo giddo sammote deerri umaallo calla illachishate <emph>1 </emph>qiphisi, aante baalanka umaallo illachishate <emph>10</emph> qiphisi.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5832,8 +5832,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "\"Fooliishshote kiiro badaanchu nookkiha \" fooliishshote barera tirittoha ikkiro, hakku bandoonni badaanchi fooliishshote kiirora <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Uduunnu - Gummishshaho kiiro somate</emph></link> giddo dileellanno."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11216,8 +11216,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Fooliishshote kiiro eessi. Fooliishshote umu akatira kiirote some gaamate, <emph> Uduunne/Coye - Gummishshu kiiote some</emph>doori.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21344,16 +21344,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kiiro somate Gumishsha"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "kiiro somate Gumishsha"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21368,24 +21368,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Kiiro somate gumishshi borgufote akati ledo amadisiisamanno. Gadete garinni, \"Umu\" borgufo akatira (1-10) mimmitu ledo amadisiisante dagganno kiirote gumishshi deerra (1-10)gaammoonni. Hasirittoha ikkiro, kiirote gumishshi deerrira babbaxinoha borgufote akata gaama dandaatto."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Kiiro worroonni umo hasiritto ikkiro, <emph>Uduunne - Kiiro somate Gumishshi</emph> mayino hajajo borgufote akatira kiiro somate gaamooshshira horoonsiri. Suudisate uduunni-gaxi aana kiiro somate bido horoonsidhooti."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Gumishshu kiiro leellishanni leellishialba kuulsiisate, <emph>Lai -</emph><emph>Bare caalsiisi</emph>yaannoha doori."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21400,7 +21400,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21408,8 +21408,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Suudishshu</emph> ilki afamannohu kiiro somate gumishshi aana callaati. Kiiro uyinoonni woyi bixxilleessine worroonni dirto akatira, borgufonniha kiiro somate kakata soorri."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21440,7 +21440,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21496,7 +21496,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21528,7 +21528,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25306,16 +25306,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Haaro Teessote Tayishsha"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Haaro Teessote Tayishsha"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25330,8 +25330,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Teessote bisubba"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25378,8 +25378,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Teessote bisinni woroonni noo barewa goshooshi"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/sid/helpcontent2/source/text/swriter/guide.po b/source/sid/helpcontent2/source/text/swriter/guide.po
index 1ec4a071d8d..328b30b3385 100644
--- a/source/sid/helpcontent2/source/text/swriter/guide.po
+++ b/source/sid/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Bortajete borro giddo dowaancho horoonsi'ratenni bortajete borro alenna woro doyissa dandandaatto. Umisate deerrano hattonni lossanna ajisha dandaatto. Tenne assate, bortajekki giddo balaxxe afoottota bortajete akatta umisi. Gadete borgufo akata umisate horoonsi'rate uduunnu fushshaato, kiirishsha, <emph>Borgofote akati garinni</emph> akata dooranna hakkiinni <emph>Borgofote Akati </emph>dira lame hige kisa <emph>Deerru </emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kiirishsha umaalluwwa"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,16 +2917,16 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Kiirishsha Fushshaata</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Umaalli aante woyyeessa woy miwaawete gufo aante gade akatira deerra gaama dandaatto. Hattono fooliishsho nna kifilla kiirishsha niwaawete gufo umaallis ate akata leda dandaatto. Gadetenni \"Umaalishshu 1\" niwaawete gufi akati fushshaatote aantera."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">Uduunnuwwa -Fushshaatu Kiirishsha</item> doori, hakkinni <item type=\"menuitem\">Kiirishsh</item> taabi qiphi assi."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Umaallishshu Niwaawete Gufonni umiloosaansu fushshaatu kiirishsha hunate"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">Uduunnuwwa -Fushshaatu Kiirishsha</item> doori, hakkinni <item type=\"menuitem\">Kiirishsh</item> taabi qiphi assi."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "mashalaqqe umaalote woyi lekkaallote giddo eessa dandaakkira albaanni, fooliishshote ummara horoonsi'rate hasi'ratto fooliishshote akattara balaxxe fishshaatote, Kiirishshi doorsha wora noohe."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>Uduunnwwa - Fashshaatote Kiirishsha</emph>doori."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>mashalaqqishaancho; e'o xawisa furcho</bookmark_value> <bookmark_value>eo xawisa e'o; e'o xawisa furcho</bookmark_value> <bookmark_value>e'o; mashalaqishaanchu gido xawisa/furcho</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>Eesate mashalaqaasinchora sha'ete-eo</emph> doorte, aantinori qido mito assi:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>Uduunu - gumishi kiirisnenna</emph> <emph>kiirishu</emph> fincaane ho doorte qiphi assi"
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>kirishsha; hoola/gufisa</bookmark_value> <bookmark_value>bixxille dirtuwwa; gufishsha</bookmark_value> <bookmark_value>dirtuwwa;hoola/kiirishsha gufisa</bookmark_value> <bookmark_value>huna;kiiruwwa dirtote giddonni</bookmark_value> <bookmark_value>kiirantino dirtu gufisa </bookmark_value> <bookmark_value>soorra;kiiro dirtote giddo hanafa</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "<emph>Uduunnuwa – Fushshaatu kiirishshi</emph> mayino hajajo horoonsi'ri akata. Suudishshu uduunni gixi aana kiirishshu bido horoonsidhooti."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po
index e6a1ce79a9e..dc8f83e779b 100644
--- a/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-08 23:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidaama Translators\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Baadhillachu Kuuliishsha Doori"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26996,15 +27113,6 @@ msgid "~Properties..."
msgstr "Akatta..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/sid/sc/source/ui/src.po b/source/sid/sc/source/ui/src.po
index 43635fdc537..b4424f4bebd 100644
--- a/source/sid/sc/source/ui/src.po
+++ b/source/sid/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 05:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama Translators\n"
@@ -2703,7 +2703,7 @@ msgstr "Hakkigeeshsho #1 ..nni #2 sa'ino"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "Ofoltino dirto irkishsha diafidhanno."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sid/sfx2/source/view.po b/source/sid/sfx2/source/view.po
index cd64b544bb1..9dbee0255de 100644
--- a/source/sid/sfx2/source/view.po
+++ b/source/sid/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 18:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sdaama ICT\n"
@@ -258,6 +258,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sid/svtools/source/control.po b/source/sid/svtools/source/control.po
index 8ba70b15030..e28c11962ef 100644
--- a/source/sid/svtools/source/control.po
+++ b/source/sid/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama translators\n"
@@ -292,6 +292,110 @@ msgstr "Kolishsho Haawiittaamo"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sid/svtools/source/misc.po b/source/sid/svtools/source/misc.po
index 90bdef30a37..a78abcd9059 100644
--- a/source/sid/svtools/source/misc.po
+++ b/source/sid/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama translators\n"
@@ -3182,10 +3182,10 @@ msgstr "Beekiweeli"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3912,6 +3912,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sid/sw/source/core/undo.po b/source/sid/sw/source/core/undo.po
index 85160beddeb..f3e3437d8bf 100644
--- a/source/sid/sw/source/core/undo.po
+++ b/source/sid/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-10 01:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Sidama translators\n"
@@ -893,42 +893,82 @@ msgstr "caccafote badooshshe"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 Surki"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 Huni"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Sonna soorrantino"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Shae soorrantino"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Akatu soorramino"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sid/sw/source/uibase/docvw.po b/source/sid/sw/source/uibase/docvw.po
index 9aba1aee486..1c1927090aa 100644
--- a/source/sid/sw/source/uibase/docvw.po
+++ b/source/sid/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sid/sw/source/uibase/ribbar.po b/source/sid/sw/source/uibase/ribbar.po
index da197c216db..813c56fd135 100644
--- a/source/sid/sw/source/uibase/ribbar.po
+++ b/source/sid/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-10 01:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sid/sw/source/uibase/uiview.po b/source/sid/sw/source/uibase/uiview.po
index c7872101530..86fcd8dfcc1 100644
--- a/source/sid/sw/source/uibase/uiview.po
+++ b/source/sid/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 14:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sid/xmlsecurity/uiconfig/ui.po b/source/sid/xmlsecurity/uiconfig/ui.po
index e4ba8a0dd4c..22d27cb6576 100644
--- a/source/sid/xmlsecurity/uiconfig/ui.po
+++ b/source/sid/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO4-1\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-10 06:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -174,6 +174,15 @@ msgstr "Huni"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sk/dbaccess/source/ui/browser.po b/source/sk/dbaccess/source/ui/browser.po
index da69c062dd9..9c94d7ea936 100644
--- a/source/sk/dbaccess/source/ui/browser.po
+++ b/source/sk/dbaccess/source/ui/browser.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-19 14:21+0000\n"
+"PO-Revision-Date: 2017-06-07 12:11+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484835678.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837492.000000\n"
#: sbabrw.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"RID_STR_COLUMN_FORMAT\n"
"string.text"
msgid "Column ~Format..."
-msgstr ""
+msgstr "~Formát stĺpca..."
#: sbagrid.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"RID_STR_COLUMN_WIDTH\n"
"string.text"
msgid "Column ~Width..."
-msgstr ""
+msgstr "Šírka ~stĺpca..."
#: sbagrid.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"RID_STR_TABLE_FORMAT\n"
"string.text"
msgid "Table Format..."
-msgstr ""
+msgstr "Formát tabuľky..."
#: sbagrid.src
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"RID_STR_ROW_HEIGHT\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Výška riadka..."
#: sbagrid.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"RID_STR_COPY\n"
"string.text"
msgid "~Copy"
-msgstr ""
+msgstr "~Kopírovať"
#: sbagrid.src
msgctxt ""
diff --git a/source/sk/dbaccess/uiconfig/ui.po b/source/sk/dbaccess/uiconfig/ui.po
index cba35d103dd..c45873eec0a 100644
--- a/source/sk/dbaccess/uiconfig/ui.po
+++ b/source/sk/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-19 14:21+0000\n"
+"PO-Revision-Date: 2017-06-07 12:13+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484835679.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837609.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Odstrániť"
#: joinviewmenu.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Odstrániť"
#: joinviewmenu.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit..."
-msgstr ""
+msgstr "Upraviť..."
#: keymenu.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Primárny kľúč"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1937,7 +1937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column _Width..."
-msgstr ""
+msgstr "Šírka _stĺpca..."
#: querycolmenu.ui
msgctxt ""
@@ -1946,7 +1946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr ""
+msgstr "_Odstrániť"
#: queryfilterdialog.ui
msgctxt ""
@@ -2162,7 +2162,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Funkcie"
#: queryfuncmenu.ui
msgctxt ""
@@ -2171,7 +2171,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table Name"
-msgstr ""
+msgstr "Názov tabuľky"
#: queryfuncmenu.ui
msgctxt ""
@@ -2180,7 +2180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alias"
-msgstr ""
+msgstr "Alias"
#: queryfuncmenu.ui
msgctxt ""
@@ -2189,7 +2189,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distinct Values"
-msgstr ""
+msgstr "Jedinečné hodnoty"
#: querypropertiesdialog.ui
msgctxt ""
diff --git a/source/sk/desktop/source/deployment/gui.po b/source/sk/desktop/source/deployment/gui.po
index c110f00ddd1..471627a2782 100644
--- a/source/sk/desktop/source/deployment/gui.po
+++ b/source/sk/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 07:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:42+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467704172.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449862942.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sk/editeng/source/editeng.po b/source/sk/editeng/source/editeng.po
index 3a05982a59d..ea7fd6ab968 100644
--- a/source/sk/editeng/source/editeng.po
+++ b/source/sk/editeng/source/editeng.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-12-03 20:39+0000\n"
+"PO-Revision-Date: 2017-06-07 12:04+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449175145.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837040.000000\n"
#: editeng.src
msgctxt ""
@@ -110,4 +110,4 @@ msgctxt ""
"RID_SVXSTR_AUTOMATIC\n"
"string.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automatická"
diff --git a/source/sk/editeng/source/items.po b/source/sk/editeng/source/items.po
index c95268b4316..2edb2757193 100644
--- a/source/sk/editeng/source/items.po
+++ b/source/sk/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-01-19 14:21+0000\n"
+"PO-Revision-Date: 2017-06-07 12:04+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484835683.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837091.000000\n"
#: page.src
msgctxt ""
@@ -1623,7 +1623,7 @@ msgctxt ""
"RID_SVXITEMS_TEXTROTATE_OFF\n"
"string.text"
msgid "Text is not rotated"
-msgstr ""
+msgstr "Text nie je otočený"
#: svxitems.src
msgctxt ""
diff --git a/source/sk/editeng/uiconfig/ui.po b/source/sk/editeng/uiconfig/ui.po
index 88c5447cec0..166444e1355 100644
--- a/source/sk/editeng/uiconfig/ui.po
+++ b/source/sk/editeng/uiconfig/ui.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-06-07 12:06+0000\n"
+"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837172.000000\n"
#: spellmenu.ui
msgctxt ""
@@ -20,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_gnore All"
-msgstr ""
+msgstr "I_gnorovať všetky"
#: spellmenu.ui
msgctxt ""
@@ -29,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_Pridať do slovníka"
#: spellmenu.ui
msgctxt ""
@@ -38,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add to Dictionary"
-msgstr ""
+msgstr "_Pridať do slovníka"
#: spellmenu.ui
msgctxt ""
@@ -47,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Spellcheck..."
-msgstr ""
+msgstr "_Kontrola pravopisu"
#: spellmenu.ui
msgctxt ""
@@ -56,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoCorrect _To"
-msgstr ""
+msgstr "_Automaticky opravovať na"
#: spellmenu.ui
msgctxt ""
@@ -65,4 +68,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Correct Options..."
-msgstr ""
+msgstr "_Nastavenia automatickej opravy..."
diff --git a/source/sk/filter/source/config/fragments/filters.po b/source/sk/filter/source/config/fragments/filters.po
index 3f0fabfb2c2..5b5ca28a4ce 100644
--- a/source/sk/filter/source/config/fragments/filters.po
+++ b/source/sk/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-19 14:21+0000\n"
+"PO-Revision-Date: 2017-06-07 12:09+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484835681.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837370.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "XML sady riadkov ADO"
#: AbiWord.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 1-4 and 95's"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4 a 95"
#: PublisherDocument.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Staršie prezentácie StarOffice"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/sk/filter/source/config/fragments/types.po b/source/sk/filter/source/config/fragments/types.po
index 605a9d9914f..d38df68bd18 100644
--- a/source/sk/filter/source/config/fragments/types.po
+++ b/source/sk/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-01-19 14:21+0000\n"
+"PO-Revision-Date: 2017-06-07 12:09+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484835682.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837380.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "XML sady riadkov ADO"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/sk/filter/uiconfig/ui.po b/source/sk/filter/uiconfig/ui.po
index c82acb460a2..e356e2accaa 100644
--- a/source/sk/filter/uiconfig/ui.po
+++ b/source/sk/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-01-19 14:21+0000\n"
+"PO-Revision-Date: 2017-06-07 12:10+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484835683.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496837428.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "Vý_ber/Vybrané hárky"
#: pdfgeneralpage.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "Použiť odkazové XObject"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/sbasic/shared.po b/source/sk/helpcontent2/source/text/sbasic/shared.po
index ad78eb05bfd..ccde57aff03 100644
--- a/source/sk/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sk/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-21 16:13+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Chybové kódy </variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Táto funkcia vráti predvolený kontext komponentu pre použitie pri vytváraní inštancií služieb pomocou XmultiServiceFactory. Viac informácií získate v kapitole <item type=\"literal\">Professional UNO</item> v <item type=\"literal\">Developer's Guide</item> na adrese <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/sk/helpcontent2/source/text/shared/00.po b/source/sk/helpcontent2/source/text/shared/00.po
index 83a5412b1ae..483a941c964 100644
--- a/source/sk/helpcontent2/source/text/shared/00.po
+++ b/source/sk/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-02-21 15:46+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/sk/helpcontent2/source/text/shared/01.po b/source/sk/helpcontent2/source/text/shared/01.po
index 2b0afb8cf19..c5e9ed584d4 100644
--- a/source/sk/helpcontent2/source/text/shared/01.po
+++ b/source/sk/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-02-22 08:53+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/sk/helpcontent2/source/text/shared/optionen.po b/source/sk/helpcontent2/source/text/shared/optionen.po
index c6a9da695d0..b441b42f21d 100644
--- a/source/sk/helpcontent2/source/text/shared/optionen.po
+++ b/source/sk/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-01-19 15:42+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/sk/helpcontent2/source/text/swriter.po b/source/sk/helpcontent2/source/text/swriter.po
index 2d7a99da6ee..20c6e96fc0e 100644
--- a/source/sk/helpcontent2/source/text/swriter.po
+++ b/source/sk/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-19 15:42+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Číslovanie osnovy\">Číslovanie osnovy</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/swriter/00.po b/source/sk/helpcontent2/source/text/swriter/00.po
index f420eb7c3ee..9fe37494ce4 100644
--- a/source/sk/helpcontent2/source/text/swriter/00.po
+++ b/source/sk/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-01-19 14:41+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Zvoľte <emph>Nástroje - Číslovanie osnovy</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Zvoľte záložku <emph>Nástroje - Číslovanie osnovy - Číslovanie</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Zvoľte <emph>Nástroje - Číslovanie riadkov</emph> (nie pre formát HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/swriter/01.po b/source/sk/helpcontent2/source/text/swriter/01.po
index 4f16adee634..74b1cf05e9c 100644
--- a/source/sk/helpcontent2/source/text/swriter/01.po
+++ b/source/sk/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-02-22 09:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Kliknite na <emph>1</emph> pre zobrazenie iba nadpisov najvyššej úrovne v Navigátore, kliknite na <emph>10</emph> pre zobrazenie všetkých úrovní nadpisov.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Číslovanie osnovy"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Číslovanie osnovy"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\"> Kliknite na úroveň osnovy, ktorú chcete upraviť, a potom nastavte číslovanie pre túto úroveň. </ahelp> Ak chcete, okrem štýlu odseku, nastaviť všetkým úrovniam číslovanie, kliknite na \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\"> Vyberte štýl odseku, ktorý chcete priradiť vybranej úrovni osnovy. </ahelp> Ak kliknete na \"Žiadny\", vybraná úroveň osnovy nebude určená."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nový blok adresy"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nový blok adresy"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Prvky adresy"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Presuňte prvok adresy do vedľajšieho poľa."
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/swriter/guide.po b/source/sk/helpcontent2/source/text/swriter/guide.po
index c4f87faf428..68dd90220bb 100644
--- a/source/sk/helpcontent2/source/text/swriter/guide.po
+++ b/source/sk/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-01-19 15:42+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Nadpisy a im podradený text môžete v dokumente premiestňovať pomocou Navigátora. Zároveň môžete meniť aj veľkosť nadpisu. Na využitie tejto vlastnosti zmeňte formát nadpisov vo vašom dokumente na jeden z preddefinovaných štýlov odseku pre nadpisy. Na použitie vlastného štýlu odseku pre nadpis zvoľte <emph>Nástroje - Číslovanie osnovy</emph>, vyberte štýl v poli <emph>Štýl odseku </emph> a potom kliknite na číslo v zozname <emph>Úrovne</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Číslovanie osnovy"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,16 +2917,16 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Číslovanie osnovy\">Číslovanie osnovy</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Je možné meniť hierarchiu nadpisov alebo priradiť úroveň v hierarchii vlastnému štýlu odseku. Taktiež je možné ku štýlu odseku pre nadpis pridať číslovanie kapitol a podkapitol. Vo východzom stave je na najvyššej úrovni v hierarchii štýlov štýl odseku \"Nadpis 1\""
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Pred vložením informácií o kapitole do hlavičky alebo päty je nutné najskôr nastaviť možnosti číslovania osnovy pre štýl odseku, ktorý chcete použiť pre nadpisy kapitoly."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Zvoľte <emph>Nástroje - Číslovanie osnovy</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Zvoľte <emph>Vložiť - Registre a tabuľky - Položka</emph> a preveďte jedno z následujúcich:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Zvoľte <emph>Nástroje - Číslovanie osnovy</emph> a kliknite na záložku <emph>Číslovanie</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ak chcete číslované nadpisy, použite príkaz <emph>Nástroje - Číslovanie osnovy</emph> pre priradenie číslovania k štýlom odseku. Nepoužívajte ikonu Číslovanie na paneli Formátovanie."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po
index b5d0ec5af52..67a6964f2b3 100644
--- a/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sk/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-02 12:04+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Výber tém"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Vlož~iť..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Vlastnosti..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "O~bjekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/sk/sc/source/ui/src.po b/source/sk/sc/source/ui/src.po
index 2f68626b339..c080d191c73 100644
--- a/source/sk/sc/source/ui/src.po
+++ b/source/sk/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-02-20 15:28+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Oblasť presunutá z #1 na #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Zložené polia nie sú podporované"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sk/scp2/source/ooo.po b/source/sk/scp2/source/ooo.po
index 80f3870c7de..ebbc59d5a51 100644
--- a/source/sk/scp2/source/ooo.po
+++ b/source/sk/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-29 20:02+0000\n"
+"PO-Revision-Date: 2017-06-07 12:02+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496088172.000000\n"
+"X-POOTLE-MTIME: 1496836965.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HSB\n"
"LngText.text"
msgid "Installs the Upper Sorbian user interface"
-msgstr ""
+msgstr "Nainštaluje používateľské rozhranie v hornolužickej srbčine"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/sk/sfx2/source/view.po b/source/sk/sfx2/source/view.po
index 8a91a7b2199..962db3f1352 100644
--- a/source/sk/sfx2/source/view.po
+++ b/source/sk/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-14 10:50+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sk/svtools/source/control.po b/source/sk/svtools/source/control.po
index 71780c3913c..318a1a5a271 100644
--- a/source/sk/svtools/source/control.po
+++ b/source/sk/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-19 14:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Čierne kurzíva"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sk/svtools/source/misc.po b/source/sk/svtools/source/misc.po
index 7931940770e..043bdae9eef 100644
--- a/source/sk/svtools/source/misc.po
+++ b/source/sk/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-01-19 14:22+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwelčina"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kitubčina"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sk/sw/source/core/undo.po b/source/sk/sw/source/core/undo.po
index f36274396e5..e960b7a44f7 100644
--- a/source/sk/sw/source/core/undo.po
+++ b/source/sk/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-19 14:21+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "zalomenie stĺpca"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Vložiť $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Odstrániť $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atribúty boli zmenené"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabuľka bola zmenená"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Štýl bol zmenený"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sk/sw/source/uibase/docvw.po b/source/sk/sw/source/uibase/docvw.po
index 4f083e4fc6b..8065c58c4e0 100644
--- a/source/sk/sw/source/uibase/docvw.po
+++ b/source/sk/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-19 14:21+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Použité štýly odseku"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sk/sw/source/uibase/ribbar.po b/source/sk/sw/source/uibase/ribbar.po
index 9174ca1a3c4..277e7408022 100644
--- a/source/sk/sw/source/uibase/ribbar.po
+++ b/source/sk/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-07 16:02+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Text vzorca"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sk/sw/source/uibase/uiview.po b/source/sk/sw/source/uibase/uiview.po
index bb95df284d7..4cd26536d40 100644
--- a/source/sk/sw/source/uibase/uiview.po
+++ b/source/sk/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 03:12+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Exportovať zdroj..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sk/xmlsecurity/uiconfig/ui.po b/source/sk/xmlsecurity/uiconfig/ui.po
index 4f03be054db..844522d084a 100644
--- a/source/sk/xmlsecurity/uiconfig/ui.po
+++ b/source/sk/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-18 12:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Odstrániť"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sq/desktop/source/deployment/gui.po b/source/sq/desktop/source/deployment/gui.po
index 21ca9a93ca4..15f6a6c19f0 100644
--- a/source/sq/desktop/source/deployment/gui.po
+++ b/source/sq/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:02+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-06-13 08:57+0000\n"
+"Last-Translator: Indrit Bashkimi <indrit.bashkimi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467705763.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1465808266.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sq/helpcontent2/source/text/sbasic/shared.po b/source/sq/helpcontent2/source/text/sbasic/shared.po
index 75b532840c7..42b644f124a 100644
--- a/source/sq/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sq/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 17:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/sq/helpcontent2/source/text/shared/00.po b/source/sq/helpcontent2/source/text/shared/00.po
index 90854578dd4..1ecbaa694d5 100644
--- a/source/sq/helpcontent2/source/text/shared/00.po
+++ b/source/sq/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 00:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/sq/helpcontent2/source/text/shared/01.po b/source/sq/helpcontent2/source/text/shared/01.po
index 0bced6c3028..a8ce00e48f6 100644
--- a/source/sq/helpcontent2/source/text/shared/01.po
+++ b/source/sq/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-06 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/sq/helpcontent2/source/text/shared/optionen.po b/source/sq/helpcontent2/source/text/shared/optionen.po
index 3a37dfee80a..83d70d93c54 100644
--- a/source/sq/helpcontent2/source/text/shared/optionen.po
+++ b/source/sq/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 20:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/sq/helpcontent2/source/text/swriter.po b/source/sq/helpcontent2/source/text/swriter.po
index 2e55afa0e79..077e090c114 100644
--- a/source/sq/helpcontent2/source/text/swriter.po
+++ b/source/sq/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 01:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,7 +1053,7 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
msgstr ""
#: main0106.xhp
diff --git a/source/sq/helpcontent2/source/text/swriter/00.po b/source/sq/helpcontent2/source/text/swriter/00.po
index 7426f8da0f3..05ac26bcc43 100644
--- a/source/sq/helpcontent2/source/text/swriter/00.po
+++ b/source/sq/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-25 01:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/sq/helpcontent2/source/text/swriter/01.po b/source/sq/helpcontent2/source/text/swriter/01.po
index 5d346c95e61..7b02b1df9ce 100644
--- a/source/sq/helpcontent2/source/text/swriter/01.po
+++ b/source/sq/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 20:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Përvijo numërimin"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Përvijo numërimin"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bllok i ri i adresave"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Bllok i ri i adresave"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Elementet e adresës"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "1. Tërheq elementet përshëndetëse në kutinë më poshtë"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/sq/helpcontent2/source/text/swriter/guide.po b/source/sq/helpcontent2/source/text/swriter/guide.po
index d49d991cd33..34893fd33f8 100644
--- a/source/sq/helpcontent2/source/text/swriter/guide.po
+++ b/source/sq/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 20:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Përvijo numërimin"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po
index 91393e68285..0ebf14e6f17 100644
--- a/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sq/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-08 03:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: sq\n"
@@ -626,8 +626,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Zgjidhni Temat"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4064,6 +4064,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26964,15 +27081,6 @@ msgid "~Properties..."
msgstr "Vetitë..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/sq/sc/source/ui/src.po b/source/sq/sc/source/ui/src.po
index a7fd0db6eae..67636fcd8c2 100644
--- a/source/sq/sc/source/ui/src.po
+++ b/source/sq/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-08 15:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2698,7 +2698,7 @@ msgstr "Intervali i lëvizur nga #1 në #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2863,7 +2863,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sq/sfx2/source/view.po b/source/sq/sfx2/source/view.po
index 56a534bbce4..45841ea6012 100644
--- a/source/sq/sfx2/source/view.po
+++ b/source/sq/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 03:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sq/svtools/source/control.po b/source/sq/svtools/source/control.po
index e603378bc47..f3fcf1e9f19 100644
--- a/source/sq/svtools/source/control.po
+++ b/source/sq/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Të pjerrëta të zeza"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sq/svtools/source/misc.po b/source/sq/svtools/source/misc.po
index e8c2aafef35..8691f3bbcdb 100644
--- a/source/sq/svtools/source/misc.po
+++ b/source/sq/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-09 07:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: sq\n"
@@ -3181,9 +3181,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3908,6 +3908,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sq/sw/source/core/undo.po b/source/sq/sw/source/core/undo.po
index 5dc9c346dbe..b031e41a3aa 100644
--- a/source/sq/sw/source/core/undo.po
+++ b/source/sq/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-09 16:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "ndërprerje shtyllash"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Shto $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Fshije $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributet e ndryshuara"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabela e ndryshuar"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stili i ndryshuar"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sq/sw/source/uibase/docvw.po b/source/sq/sw/source/uibase/docvw.po
index 155586ca87c..84a3db8774a 100644
--- a/source/sq/sw/source/uibase/docvw.po
+++ b/source/sq/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-09 11:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Stilet e zbatuar të paragrafëve"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sq/sw/source/uibase/ribbar.po b/source/sq/sw/source/uibase/ribbar.po
index 92b0be88fef..0dc7c734369 100644
--- a/source/sq/sw/source/uibase/ribbar.po
+++ b/source/sq/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-09 18:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Teksti i formulës"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sq/sw/source/uibase/uiview.po b/source/sq/sw/source/uibase/uiview.po
index b71e590e33b..d5b5378cb93 100644
--- a/source/sq/sw/source/uibase/uiview.po
+++ b/source/sq/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 02:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Eksporto burimin..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sq/xmlsecurity/uiconfig/ui.po b/source/sq/xmlsecurity/uiconfig/ui.po
index 896bc28649e..e44d5db0bf8 100644
--- a/source/sq/xmlsecurity/uiconfig/ui.po
+++ b/source/sq/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-10 01:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ss/desktop/source/deployment/gui.po b/source/ss/desktop/source/deployment/gui.po
index a80d5d170d9..c3b4e95d178 100644
--- a/source/ss/desktop/source/deployment/gui.po
+++ b/source/ss/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 07:59+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ss\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467705581.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449862373.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -170,6 +170,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -181,6 +189,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po
index d033bc08465..66770c7d5c8 100644
--- a/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ss/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 08:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -637,8 +637,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Khetsa tingcikitsi"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4155,6 +4155,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27451,15 +27568,6 @@ msgid "~Properties..."
msgstr "Timphahla..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ss/sc/source/ui/src.po b/source/ss/sc/source/ui/src.po
index 72e2f8a7ed0..ee72350fdb7 100644
--- a/source/ss/sc/source/ui/src.po
+++ b/source/ss/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 08:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2744,7 +2744,7 @@ msgstr "Libanga lihambe kusuka ku #1 kuye ku #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2913,7 +2913,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ss/sfx2/source/view.po b/source/ss/sfx2/source/view.po
index 446bbc6c715..92ff06ab9c8 100644
--- a/source/ss/sfx2/source/view.po
+++ b/source/ss/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -236,6 +236,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ss/svtools/source/control.po b/source/ss/svtools/source/control.po
index 288e033be9e..44b858745ca 100644
--- a/source/ss/svtools/source/control.po
+++ b/source/ss/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,6 +292,110 @@ msgstr "I-Ithaliki lemnyama"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ss/svtools/source/misc.po b/source/ss/svtools/source/misc.po
index c2c46537c51..fe39efbac91 100644
--- a/source/ss/svtools/source/misc.po
+++ b/source/ss/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 10:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3207,9 +3207,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3936,6 +3936,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ss/sw/source/core/undo.po b/source/ss/sw/source/core/undo.po
index 42ab32d30c4..b3a2636c252 100644
--- a/source/ss/sw/source/core/undo.po
+++ b/source/ss/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 03:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -896,46 +896,84 @@ msgid "column break"
msgstr "kuncamuka kwekholamu"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Faka njenge"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Cisha #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Tigucukile tincomo"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Ligucukile litafula"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Sigucukile sitayela"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ss/sw/source/uibase/docvw.po b/source/ss/sw/source/uibase/docvw.po
index 244ee681019..d583f670eaa 100644
--- a/source/ss/sw/source/uibase/docvw.po
+++ b/source/ss/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 15:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ss/sw/source/uibase/ribbar.po b/source/ss/sw/source/uibase/ribbar.po
index 2383522236e..d55d4af1fa5 100644
--- a/source/ss/sw/source/uibase/ribbar.po
+++ b/source/ss/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ss/sw/source/uibase/uiview.po b/source/ss/sw/source/uibase/uiview.po
index c6fd2a97353..8adc49acbf2 100644
--- a/source/ss/sw/source/uibase/uiview.po
+++ b/source/ss/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 15:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ss/xmlsecurity/uiconfig/ui.po b/source/ss/xmlsecurity/uiconfig/ui.po
index 1b21f68710c..173142a0ce5 100644
--- a/source/ss/xmlsecurity/uiconfig/ui.po
+++ b/source/ss/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/st/desktop/source/deployment/gui.po b/source/st/desktop/source/deployment/gui.po
index 7bd3c906878..d221f8e3d7b 100644
--- a/source/st/desktop/source/deployment/gui.po
+++ b/source/st/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:02+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: st\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467705744.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449862599.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/st/officecfg/registry/data/org/openoffice/Office/UI.po b/source/st/officecfg/registry/data/org/openoffice/Office/UI.po
index c8d665d4f9b..d840dd9a132 100644
--- a/source/st/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/st/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 08:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -638,8 +638,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Kgetha Ditabakgolo"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4154,6 +4154,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27450,15 +27567,6 @@ msgid "~Properties..."
msgstr "Dithepa..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/st/sc/source/ui/src.po b/source/st/sc/source/ui/src.po
index 8745ff78763..c125462454b 100644
--- a/source/st/sc/source/ui/src.po
+++ b/source/st/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 09:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2741,7 +2741,7 @@ msgstr "Sebaka se tlohile ho tswa ho #1 ho ya ho #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2910,7 +2910,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/st/sfx2/source/view.po b/source/st/sfx2/source/view.po
index f2943fa3cec..cd28247e74a 100644
--- a/source/st/sfx2/source/view.po
+++ b/source/st/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -237,6 +237,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/st/svtools/source/control.po b/source/st/svtools/source/control.po
index 85c6e4763df..656ade5fda7 100644
--- a/source/st/svtools/source/control.po
+++ b/source/st/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,6 +293,110 @@ msgstr "Ithalike e Ntsho"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/st/svtools/source/misc.po b/source/st/svtools/source/misc.po
index 00a9c5078b3..fb4658abc2a 100644
--- a/source/st/svtools/source/misc.po
+++ b/source/st/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 10:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3207,9 +3207,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3936,6 +3936,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/st/sw/source/core/undo.po b/source/st/sw/source/core/undo.po
index 59d9c4525c8..7010a07686e 100644
--- a/source/st/sw/source/core/undo.po
+++ b/source/st/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 03:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -897,46 +897,84 @@ msgid "column break"
msgstr "ho kgaolwa ha kholomo"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Kenya jwaleka"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Hlakola #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Matshwao fetohile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Theibole fetohile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Setaele fetohile"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/st/sw/source/uibase/docvw.po b/source/st/sw/source/uibase/docvw.po
index 2d1716e5848..92ffe395ead 100644
--- a/source/st/sw/source/uibase/docvw.po
+++ b/source/st/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/st/sw/source/uibase/ribbar.po b/source/st/sw/source/uibase/ribbar.po
index 154864adfa3..5f37866638b 100644
--- a/source/st/sw/source/uibase/ribbar.po
+++ b/source/st/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 01:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/st/sw/source/uibase/uiview.po b/source/st/sw/source/uibase/uiview.po
index 42c29d9c006..723e56f049e 100644
--- a/source/st/sw/source/uibase/uiview.po
+++ b/source/st/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/st/xmlsecurity/uiconfig/ui.po b/source/st/xmlsecurity/uiconfig/ui.po
index 4176e9d29b0..f3dfa30166d 100644
--- a/source/st/xmlsecurity/uiconfig/ui.po
+++ b/source/st/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sv/desktop/source/deployment/gui.po b/source/sv/desktop/source/deployment/gui.po
index 720cadd4631..42c0389255a 100644
--- a/source/sv/desktop/source/deployment/gui.po
+++ b/source/sv/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:27+0000\n"
-"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 19:47+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467707228.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449863232.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sv/helpcontent2/source/text/sbasic/shared.po b/source/sv/helpcontent2/source/text/sbasic/shared.po
index ad067b97f4e..1e31de9f19a 100644
--- a/source/sv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sv/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-30 10:23+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Felkoder</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Denna runtime-funktion returnerar sammanhanget som ska användas för standardkomponenten, om den instansierar tjänster via XmultiServiceFactory. Mer information finns i kapitlet <item type=\"literal\">Professional UNO</item> i <item type=\"literal\">Developer's Guide</item> på <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/sv/helpcontent2/source/text/shared/00.po b/source/sv/helpcontent2/source/text/shared/00.po
index 832cc6b6eb0..91f1965271e 100644
--- a/source/sv/helpcontent2/source/text/shared/00.po
+++ b/source/sv/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-11-21 21:04+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/sv/helpcontent2/source/text/shared/01.po b/source/sv/helpcontent2/source/text/shared/01.po
index 72bb533fae1..7ad330e1f31 100644
--- a/source/sv/helpcontent2/source/text/shared/01.po
+++ b/source/sv/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-03-30 10:37+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Markera den styckeformatmall eller dispositionsnivå som du vill använda för att dela upp källdokumentet i underdokument.</ahelp> Som standard skapas ett nytt dokument för varje dispositionsnivå 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Markeras om du vill exportera bokmärken från Writer-dokument som PDF-bokmärken. Bokmärken skapas för alla dispositionsstycken (Verktyg - Kapitelnumrering) och för alla poster i innehållsförteckning som du har tilldelat länkar till i källdokumentet.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/shared/optionen.po b/source/sv/helpcontent2/source/text/shared/optionen.po
index 160f82f0c78..897aeb316aa 100644
--- a/source/sv/helpcontent2/source/text/shared/optionen.po
+++ b/source/sv/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-03-30 12:50+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/sv/helpcontent2/source/text/swriter.po b/source/sv/helpcontent2/source/text/swriter.po
index 8af28d226d8..1566016497b 100644
--- a/source/sv/helpcontent2/source/text/swriter.po
+++ b/source/sv/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-11-21 21:24+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Kapitelnumrering\">Kapitelnumrering</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/00.po b/source/sv/helpcontent2/source/text/swriter/00.po
index e44998b3b78..15932e8b1ea 100644
--- a/source/sv/helpcontent2/source/text/swriter/00.po
+++ b/source/sv/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-08-27 11:47+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Menyn <emph>Verktyg - Kapitelnumrering...</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Välj <emph>Verktyg - Kapitelnumrering - fliken Numrering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Välj <emph>Verktyg - Radnumrering</emph> (inte för HTML-format)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/01.po b/source/sv/helpcontent2/source/text/swriter/01.po
index 08053d27235..6b494ab97da 100644
--- a/source/sv/helpcontent2/source/text/swriter/01.po
+++ b/source/sv/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-04-04 10:43+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Klicka på <emph>1</emph> om du bara vill visa den översta nivån i Navigator-fönstret och på <emph>10</emph> om du vill visa alla nivåer.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Om du väljer \"Kapitelnummer utan skiljetecken\" för ett kapitelfält så utelämnas de avgränsare som finns under <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Verktyg - Kapitelnumrering</emph></link>."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Infogar kapitelnummer. Du kan ange kapitelnumrering för ett överskriftsformat genom att välja <emph>Verktyg – Kapitelnumrering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitelnumrering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitelnumrering"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Kapitelnivåernas numrering beror på styckeformatmallen. Standardinställningen är att styckeformatmallarna Rubrik 1 - Rubrik 10 har motsvarande kapitelnumreringsnivå (1-10). Om du vill kan du använda andra styckeformat för kapitelnivåer."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Om du vill ha numrerade rubriker använder du menykommandot <emph>Verktyg - Kapitelnumrering</emph> för att koppla numreringsfunktionen till en styckeformatmall. Använd inte ikonen Numrering på verktygsraden Formatera."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Om du vill markera kapitelnumren på skärmen väljer du <emph>Visa - </emph><emph> >Markeringar</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Sparar eller laddar ett kapitelnumreringsformat. Ett sparat kapitelnummerformat kan användas i alla textdokument.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Knappen <emph>Format</emph> är bara tillgänglig för kapitelnumrering. Om du använder numrerade listor eller punktlistor ändrar du numreringsformatet för styckena."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Öppnar en dialogruta där du kan spara de aktuella inställningarna för den markerade kapitelnivån. Du kan sedan ladda inställningarna och använda dem i ett annat dokument.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Klicka på den kapitelnivå som du vill ändra och ange sedan numreringsalternativen för den.</ahelp> Om du vill använda numreringsalternativen för alla nivåer, utom för styckeformatmallen, klickar du på \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Välj den styckeformatmall som du vill tilldela den markerade kapitelnivån.</ahelp> Om du klickar på \"Ingen\" definieras inte den markerade kapitelnivån."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nytt adressblock"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Nytt adressblock"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adresselement"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Dra adresselementet till fälten nedanför."
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/sv/helpcontent2/source/text/swriter/guide.po b/source/sv/helpcontent2/source/text/swriter/guide.po
index 668849662f4..e90d9d75779 100644
--- a/source/sv/helpcontent2/source/text/swriter/guide.po
+++ b/source/sv/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-04-04 10:48+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Du kan flytta sidhuvuden och underordnad text uppåt eller nedåt i dokumenttext med hjälp av Navigator. Du kan också flytta rubriknivåer uppåt eller nedåt. Om du vill använda den här funktionen formaterar du dokumentets rubriker med någon av de fördefinierade styckeformatmallarna för rubriker. Om du vill använda en användardefinierad styckeformatmall i en rubrik väljer du <emph>Verktyg - Kapitelnumrering</emph>, markerar formatmallen i rutan <emph>Styckeformatmall</emph>, och dubbelklickar sedan på ett nummer i listan <emph>Nivåer</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Kapitelnumrering"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>dispositioner;numrering</bookmark_value> <bookmark_value>ta bort;rubriknummer</bookmark_value> <bookmark_value>kapitelnumrering</bookmark_value> <bookmark_value>rubriker; numrering/styckeformatmallar</bookmark_value> <bookmark_value>numrering; rubriker</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Kapitelnumrering\">Kapitelnumrering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Du kan ändra rubrikernas hierarki eller tilldela en nivå i hierarkin till en användardefinierad styckeformatmall. Du kan också lägga till kapitel- och avsnittsnumrering i styckeformatmallar för rubriker. Styckeformatmallen \"Rubrik 1\" befinner sig som standard högst i kapitelhierarkin."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Välj <item type=\"menuitem\">Verktyg - Kapitelnumrering</item> och klicka sedan på fliken <item type=\"menuitem\">Numrering</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Så här tar du bort automatisk kapitelnumrering från en styckerubrik"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Välj <item type=\"menuitem\">Verktyg - Kapitelnumrering</item> och klicka sedan på fliken <item type=\"menuitem\">Numrering</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Innan du kan infoga kapitelinformation i ett sidhuvud eller en sidfot måste du första ange kapitelnumreringsalternativ för styckeformatmallen som du vill använda för kapitelrubrikerna."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Välj <emph>Verktyg - Kapitelnumrering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>index; definiera poster i</bookmark_value> <bookmark_value>innehållsförteckningar; definiera poster i</bookmark_value> <bookmark_value>poster; definiera i index/innehållsförteckningar</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Välj <emph>Infoga - Förteckningar - Post</emph> och gör något av följande:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Välj <emph>Verktyg - Kapitelnumrering</emph> och klicka på fliken <emph>Numrering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Om du vill använda en annan styckeformatmall som en post i en innehållsförteckning markerar du kryssrutan <item type=\"menuitem\">Ytterligare mallar</item> under <item type=\"menuitem\">Skapa från</item> och klickar sedan på knappen (<item type=\"menuitem\">...</item>) bredvid kryssrutan. Du definierar kapitelnivån för styckeformatmallen genom att klicka på formatmallen i listan i dialogrutan <item type=\"menuitem\">Tilldela mall</item>, och sedan på någon av knapparna <item type=\"menuitem\">>></item> eller <item type=\"menuitem\"><<</item> ."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numrering; ta bort/avbryta</bookmark_value> <bookmark_value>punktlistor; avbryta</bookmark_value> <bookmark_value>listor;ta bort/avbryta numrering</bookmark_value> <bookmark_value>ta bort;nummer i listor</bookmark_value> <bookmark_value>avbryta numrerade listor</bookmark_value> <bookmark_value>ändra;startnummer i listor</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Om du vill ha numrerade rubriker använder du menykommandot <emph>Verktyg - Kapitelnumrering</emph> för att koppla numreringsfunktionen till en styckeformatmall. Använd inte ikonen Numrering på verktygsraden Formatera."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po
index fe22d1cd0ea..109aceac899 100644
--- a/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sv/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-31 18:34+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Välj tema"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "Infoga..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "Egenskaper…"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Objekt..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/sv/sc/source/ui/src.po b/source/sv/sc/source/ui/src.po
index 005a2bdfc67..89376936076 100644
--- a/source/sv/sc/source/ui/src.po
+++ b/source/sv/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-15 14:21+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Område flyttat från #1 till #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "Nästlade räckor stöds ej."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sv/sfx2/source/view.po b/source/sv/sfx2/source/view.po
index 4ed249948cb..2436e3a0e26 100644
--- a/source/sv/sfx2/source/view.po
+++ b/source/sv/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-23 16:48+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sv/svtools/source/control.po b/source/sv/svtools/source/control.po
index c51e3f87f58..babee06c960 100644
--- a/source/sv/svtools/source/control.po
+++ b/source/sv/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-07-12 19:39+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Svart Kursiv"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sv/svtools/source/misc.po b/source/sv/svtools/source/misc.po
index a106a777c4d..3a900950f74 100644
--- a/source/sv/svtools/source/misc.po
+++ b/source/sv/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-09-14 06:59+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/sv/sw/source/core/undo.po b/source/sv/sw/source/core/undo.po
index 80691e5130a..ff326842e43 100644
--- a/source/sv/sw/source/core/undo.po
+++ b/source/sv/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-31 09:07+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -891,42 +891,82 @@ msgstr "kolumnbrytning"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Infoga $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Ta bort $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attribut har ändrats"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabell ändrad"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Formatmall har ändrats"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sv/sw/source/uibase/docvw.po b/source/sv/sw/source/uibase/docvw.po
index 6376229217f..3593efdaa64 100644
--- a/source/sv/sw/source/uibase/docvw.po
+++ b/source/sv/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 03:28+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Styckeformatmall applicerad"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sv/sw/source/uibase/ribbar.po b/source/sv/sw/source/uibase/ribbar.po
index 9ecac06ded1..1093a673d3b 100644
--- a/source/sv/sw/source/uibase/ribbar.po
+++ b/source/sv/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-05 09:03+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formeltext"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sv/sw/source/uibase/uiview.po b/source/sv/sw/source/uibase/uiview.po
index 2acdf18f597..6fdd88acd13 100644
--- a/source/sv/sw/source/uibase/uiview.po
+++ b/source/sv/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 03:28+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "Exportera källtext..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sv/xmlsecurity/uiconfig/ui.po b/source/sv/xmlsecurity/uiconfig/ui.po
index 161f2ededb3..959f2aba3aa 100644
--- a/source/sv/xmlsecurity/uiconfig/ui.po
+++ b/source/sv/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-29 14:31+0000\n"
"Last-Translator: Niklas Johansson <sleeping.pillow@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "Ta bort"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/sw-TZ/desktop/source/deployment/gui.po b/source/sw-TZ/desktop/source/deployment/gui.po
index 4915b868180..94c35b2c508 100644
--- a/source/sw-TZ/desktop/source/deployment/gui.po
+++ b/source/sw-TZ/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:26+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 03:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sw_TZ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467707193.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462159898.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -170,6 +170,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -181,6 +189,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po
index 616e6324710..73408ab1871 100644
--- a/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sw-TZ/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 09:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -628,8 +628,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Chagua Mandhari"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4110,6 +4110,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27096,15 +27213,6 @@ msgid "~Properties..."
msgstr "Properties..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/sw-TZ/sc/source/ui/src.po b/source/sw-TZ/sc/source/ui/src.po
index fc702cb816d..eb6c3e1837e 100644
--- a/source/sw-TZ/sc/source/ui/src.po
+++ b/source/sw-TZ/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 09:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "Masafa yamesogezwa kutoka #1 kwenda #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2885,7 +2885,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/sw-TZ/sfx2/source/view.po b/source/sw-TZ/sfx2/source/view.po
index a1e10653644..f5a33d6fa98 100644
--- a/source/sw-TZ/sfx2/source/view.po
+++ b/source/sw-TZ/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -255,6 +255,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/sw-TZ/svtools/source/control.po b/source/sw-TZ/svtools/source/control.po
index 4c5bab10171..76216752838 100644
--- a/source/sw-TZ/svtools/source/control.po
+++ b/source/sw-TZ/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,6 +290,110 @@ msgstr "Italiki Nyeusi"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/sw-TZ/svtools/source/misc.po b/source/sw-TZ/svtools/source/misc.po
index f36faeaedc7..14b9021cf8b 100644
--- a/source/sw-TZ/svtools/source/misc.po
+++ b/source/sw-TZ/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 11:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3196,9 +3196,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3926,6 +3926,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/sw-TZ/sw/source/core/undo.po b/source/sw-TZ/sw/source/core/undo.po
index 1ea4d3f8470..54de87f11df 100644
--- a/source/sw-TZ/sw/source/core/undo.po
+++ b/source/sw-TZ/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 21:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "column break"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Insert $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Delete $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Attributes changed"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Jedwali limebadilishwa"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Style changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/sw-TZ/sw/source/uibase/docvw.po b/source/sw-TZ/sw/source/uibase/docvw.po
index 89c8f58b3eb..60ecf9e07cc 100644
--- a/source/sw-TZ/sw/source/uibase/docvw.po
+++ b/source/sw-TZ/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 16:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/sw-TZ/sw/source/uibase/ribbar.po b/source/sw-TZ/sw/source/uibase/ribbar.po
index 4ef37911849..5b64f3a4305 100644
--- a/source/sw-TZ/sw/source/uibase/ribbar.po
+++ b/source/sw-TZ/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 02:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/sw-TZ/sw/source/uibase/uiview.po b/source/sw-TZ/sw/source/uibase/uiview.po
index e2a9ea7cc84..3f7da0e7a81 100644
--- a/source/sw-TZ/sw/source/uibase/uiview.po
+++ b/source/sw-TZ/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 16:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/sw-TZ/xmlsecurity/uiconfig/ui.po b/source/sw-TZ/xmlsecurity/uiconfig/ui.po
index 9b47f1b1fc6..728baeb1ca5 100644
--- a/source/sw-TZ/xmlsecurity/uiconfig/ui.po
+++ b/source/sw-TZ/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/szl/desktop/source/deployment/gui.po b/source/szl/desktop/source/deployment/gui.po
index 3e26127561f..59137bea905 100644
--- a/source/szl/desktop/source/deployment/gui.po
+++ b/source/szl/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-29 09:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1472462391.000000\n"
#: dp_gui_dialog.src
@@ -169,6 +169,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -180,6 +188,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po
index 0186258461b..bf9999c9159 100644
--- a/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/szl/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-08-29 09:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,7 +616,7 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
+msgid "Spreadsheet Theme"
msgstr ""
#: CalcCommands.xcu
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/szl/sc/source/ui/src.po b/source/szl/sc/source/ui/src.po
index fa11d14da03..d0090a48637 100644
--- a/source/szl/sc/source/ui/src.po
+++ b/source/szl/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-23 09:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2674,7 +2674,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2839,7 +2839,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/szl/sfx2/source/view.po b/source/szl/sfx2/source/view.po
index 7b73693df1b..7c1a92fc865 100644
--- a/source/szl/sfx2/source/view.po
+++ b/source/szl/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-29 10:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -236,6 +236,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/szl/svtools/source/control.po b/source/szl/svtools/source/control.po
index 2a5ae7c1b09..87633b94508 100644
--- a/source/szl/svtools/source/control.po
+++ b/source/szl/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-29 10:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr ""
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/szl/svtools/source/misc.po b/source/szl/svtools/source/misc.po
index 2dd5b8d32e5..2f690d37fed 100644
--- a/source/szl/svtools/source/misc.po
+++ b/source/szl/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-29 10:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,9 +3180,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/szl/sw/source/core/undo.po b/source/szl/sw/source/core/undo.po
index 3e0028f04df..7ded9d9e1a5 100644
--- a/source/szl/sw/source/core/undo.po
+++ b/source/szl/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-08-29 10:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -892,7 +892,7 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr ""
@@ -900,7 +900,7 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr ""
@@ -908,7 +908,7 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr ""
@@ -916,7 +916,7 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr ""
@@ -924,7 +924,7 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
msgstr ""
@@ -932,6 +932,46 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
"STR_N_REDLINES\n"
"string.text"
msgid "$1 changes"
diff --git a/source/szl/sw/source/uibase/docvw.po b/source/szl/sw/source/uibase/docvw.po
index 7bbe880683e..125d1676302 100644
--- a/source/szl/sw/source/uibase/docvw.po
+++ b/source/szl/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-08-29 10:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/szl/sw/source/uibase/ribbar.po b/source/szl/sw/source/uibase/ribbar.po
index 644e783b94a..2318a8edb6b 100644
--- a/source/szl/sw/source/uibase/ribbar.po
+++ b/source/szl/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-08-29 10:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/szl/sw/source/uibase/uiview.po b/source/szl/sw/source/uibase/uiview.po
index c64566908f5..9199a908acc 100644
--- a/source/szl/sw/source/uibase/uiview.po
+++ b/source/szl/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-08-29 10:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/szl/xmlsecurity/uiconfig/ui.po b/source/szl/xmlsecurity/uiconfig/ui.po
index 104c0d457fa..3896547ca59 100644
--- a/source/szl/xmlsecurity/uiconfig/ui.po
+++ b/source/szl/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-29 10:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ta/desktop/source/deployment/gui.po b/source/ta/desktop/source/deployment/gui.po
index d143843c611..b8ae347f122 100644
--- a/source/ta/desktop/source/deployment/gui.po
+++ b/source/ta/desktop/source/deployment/gui.po
@@ -3,18 +3,18 @@ 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: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:35+0000\n"
-"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-03-29 06:06+0000\n"
+"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: American English <>\n"
"Language: ta\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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467707759.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1459231566.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ta/helpcontent2/source/text/sbasic/shared.po b/source/ta/helpcontent2/source/text/sbasic/shared.po
index 3e527710c2a..55494af826a 100644
--- a/source/ta/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ta/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: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-03-12 08:44+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-15 16:11+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ta\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489308294.000000\n"
+"X-POOTLE-MTIME: 1497543087.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3168612\n"
"help.text"
msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
-msgstr ""
+msgstr "பொதுவாக URL பயன்பாடானது இணையத்தில் வலைப்பக்கங்களைக் குறிப்பிடும்போதுதான். எ.காநெறிமுறௌகளுக்கான "
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">பிழை குறியீடுகள்</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ta/helpcontent2/source/text/shared/00.po b/source/ta/helpcontent2/source/text/shared/00.po
index 356c5cda3ad..11d0ba0c648 100644
--- a/source/ta/helpcontent2/source/text/shared/00.po
+++ b/source/ta/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-16 06:13+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ta/helpcontent2/source/text/shared/01.po b/source/ta/helpcontent2/source/text/shared/01.po
index 03d4e043b04..bf55126e027 100644
--- a/source/ta/helpcontent2/source/text/shared/01.po
+++ b/source/ta/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-03-15 10:38+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ta/helpcontent2/source/text/shared/optionen.po b/source/ta/helpcontent2/source/text/shared/optionen.po
index 079032cf8f4..59a88058928 100644
--- a/source/ta/helpcontent2/source/text/shared/optionen.po
+++ b/source/ta/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-08-24 07:22+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ta/helpcontent2/source/text/swriter.po b/source/ta/helpcontent2/source/text/swriter.po
index ddd99f43bc3..dafe5e949df 100644
--- a/source/ta/helpcontent2/source/text/swriter.po
+++ b/source/ta/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-01-23 14:39+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">திட்டவரை எண்ணிடல்</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ta/helpcontent2/source/text/swriter/00.po b/source/ta/helpcontent2/source/text/swriter/00.po
index 25f0d6c3ced..dc5d25cf305 100644
--- a/source/ta/helpcontent2/source/text/swriter/00.po
+++ b/source/ta/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-01-16 08:10+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"> <emph>கருவிகள் - திட்டவரை எண்ணிடல்</emph> ஐத் தேர்க</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"> <emph>கருவிகள் - திட்டவரை எண்ணிடல் - எண்ணிடல்</emph> கீற்றைத் தேர்க</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"> <emph>கருவிகள் - வரி எண்ணிடல்</emph> (HTML வடிவத்திற்காக இல்லை) ஐத் தேர்க</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ta/helpcontent2/source/text/swriter/01.po b/source/ta/helpcontent2/source/text/swriter/01.po
index 580cbdcb08c..54abd16eb22 100644
--- a/source/ta/helpcontent2/source/text/swriter/01.po
+++ b/source/ta/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-01-18 14:31+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\"> மாலுமி சாளரத்திலுள்ள மேல்மட்ட தலைப்புரைகளை மட்டும் பார்வையிட<emph>1 </emph> ஐச் சொடுக்குக, அனைத்துத் தலைப்புரைகளையும் பார்வையிட <emph>10</emph>ஐச் சொடுக்குக. </ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "நீங்கள் ஒர் அத்தியாயத்திற்குப் \" பிரிப்பானன்றி அத்தியாய எண்ணைத்\" தேர்ந்தெடுத்தால், அத்தியாய எண்ணுக்காகக் குறிப்பிடப்படும் பிரிப்பான்கள் <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>கருவி - திட்டவரை எண்ணிடல்</emph></link> இல் காட்சியளிக்கப்படுவதில்லை. "
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">அத்தியாய எண்ணிக்கையை நுழைக்கிறது. தலைப்புரைப் பாணிக்கு அத்தியாய எண்ணிடலை ஒப்படைக்க, <emph>கருவிகள் - திட்டவரை எண்ணிடல்</emph> ஐத் தேர்க.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,7 +21341,7 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21349,7 +21349,7 @@ msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
+msgid "Chapter Numbering"
msgstr ""
#: 06060000.xhp
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">நீங்கள் மாற்றியமைக்கவிருக்கும் திட்டவரை மட்டத்தைச் சொடுக்குக, பிறகு மட்டத்திற்கான எண்ணிடல் தேர்வுகளைக் குறிப்பிடுக.</ahelp>எண்ணிடல் தேர்வுகளைச் செயல்படுத்த, பத்திப் பாணியைத் தவிர்த்து, அனைத்து மட்டங்களுக்கும் \"1-10\" ஐச் சொடுக்குக."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/ta/helpcontent2/source/text/swriter/guide.po b/source/ta/helpcontent2/source/text/swriter/guide.po
index b9a9ed0cb9d..ec08e4bfe1c 100644
--- a/source/ta/helpcontent2/source/text/swriter/guide.po
+++ b/source/ta/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-11-16 15:08+0000\n"
"Last-Translator: ரேவதி மதியழகன்/ REVATHI.M <revathi@rajula.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "திட்டவரை எண்ணிடல்"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">கருவிகள் - திட்டவரை எண்ணிடல்</item> ஐத் தேர்தெடுப்பதோடு, பிறகு <item type=\"menuitem\">எண்ணிடல்</item> கீற்றைச் சொடுக்குக."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "ஒரு தலைப்புரை பத்தியிலிருந்து தானியக்கத் திட்டவரை எண்ணிடலை அகற்றுவதற்கு"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">கருவிகள் - திட்டவரை எண்ணிடல்</item> ஐத் தேர்ந்தெடுப்பதோடு, <item type=\"menuitem\">எண்ணிடல்</item> கீற்றைச் சொடுக்குக."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "உங்களுக்கு எண்ணிட்ட தலைப்புரைகள் வேண்டுமென்றால், ஒரு பத்திக்கு எண்ணிடலை அளிக்க<emph>கருவிகள் - திட்டவரை எண்ணிடல்</emph> பட்டி கட்டளையைப் பயன்படுத்தவும். வடிவூட்டல் கருவிப்பட்டையிலுள்ள எண்ணிடலைப் பயன்படுத்த வேண்டாம்."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po
index 172f3951cc4..c7d41f5a1e2 100644
--- a/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ta/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-21 17:49+0000\n"
"Last-Translator: அருண் குமார் (Arun Kumar) <thangam.arunx@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "தோற்றக்கருவைத் தேர்ந்தெடு"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26761,15 +26878,6 @@ msgid "~Properties..."
msgstr "பண்புகள்..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ta/sc/source/ui/src.po b/source/ta/sc/source/ui/src.po
index a64c6053e11..3f7a07ee412 100644
--- a/source/ta/sc/source/ui/src.po
+++ b/source/ta/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-29 22:49+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -2701,7 +2701,7 @@ msgstr "வீச்சு #1 இலிருந்து #2 க்கு நக
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "உட்பொதிவு வரிசைகளுக்கு ஆ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ta/sfx2/source/view.po b/source/ta/sfx2/source/view.po
index 577b88a2879..2f2f2a34431 100644
--- a/source/ta/sfx2/source/view.po
+++ b/source/ta/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-09-19 07:48+0000\n"
"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ta/svtools/source/control.po b/source/ta/svtools/source/control.po
index ff1f7abdf52..113b65e8c41 100644
--- a/source/ta/svtools/source/control.po
+++ b/source/ta/svtools/source/control.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-10-12 11:08+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -291,6 +291,110 @@ msgstr "கருப்பு கோணலான"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ta/svtools/source/misc.po b/source/ta/svtools/source/misc.po
index b7e21a26b6b..37d3d180aeb 100644
--- a/source/ta/svtools/source/misc.po
+++ b/source/ta/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-09-19 08:37+0000\n"
"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
"Language-Team: American English <>\n"
@@ -3180,10 +3180,10 @@ msgstr "பெக்வெல்"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "கிட்டுபா"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ta/sw/source/core/undo.po b/source/ta/sw/source/core/undo.po
index 980246bdf62..efecce747d7 100644
--- a/source/ta/sw/source/core/undo.po
+++ b/source/ta/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-10-19 02:52+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -891,42 +891,82 @@ msgstr "நிரல் பிரிப்பு"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ஐ இடு"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 ஐ அழி"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "மதிப்புருக்கள் மாற்றப்பட்டது"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "அட்டவணை மாற்றப்பட்டது"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "தோற்றம் மாற்றப்பட்டது"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ta/sw/source/uibase/docvw.po b/source/ta/sw/source/uibase/docvw.po
index 95a78ed5bcf..54ad71c853c 100644
--- a/source/ta/sw/source/uibase/docvw.po
+++ b/source/ta/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-10-19 03:06+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "பயன்படுத்தப்பட்ட பத்தி பா
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ta/sw/source/uibase/ribbar.po b/source/ta/sw/source/uibase/ribbar.po
index 99f1daf8680..d5dd1e0ccfd 100644
--- a/source/ta/sw/source/uibase/ribbar.po
+++ b/source/ta/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-19 09:22+0000\n"
"Last-Translator: dahranicatherine <catherinedahrani@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "சூத்திர உரை"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ta/sw/source/uibase/uiview.po b/source/ta/sw/source/uibase/uiview.po
index e77bdd44ddb..e1552a9f3e0 100644
--- a/source/ta/sw/source/uibase/uiview.po
+++ b/source/ta/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 05:31+0000\n"
"Last-Translator: tamil <translate.libreoffice@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "மூலத்தை ஏற்றுக..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ta/xmlsecurity/uiconfig/ui.po b/source/ta/xmlsecurity/uiconfig/ui.po
index c34c8e2bc9a..3cd9584ba36 100644
--- a/source/ta/xmlsecurity/uiconfig/ui.po
+++ b/source/ta/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-08-25 18:36+0000\n"
"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) <tamiliam@gmail.com>\n"
"Language-Team: Tamil <>\n"
@@ -172,6 +172,15 @@ msgstr "அகற்று"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/te/desktop/source/deployment/gui.po b/source/te/desktop/source/deployment/gui.po
index 37703bda326..3a887e669c2 100644
--- a/source/te/desktop/source/deployment/gui.po
+++ b/source/te/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
"Language: te\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467707775.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864480.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -172,6 +172,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -183,6 +191,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/te/officecfg/registry/data/org/openoffice/Office/UI.po b/source/te/officecfg/registry/data/org/openoffice/Office/UI.po
index a8d0972f88e..2fba2c0e3c1 100644
--- a/source/te/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/te/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-12-23 13:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -621,8 +621,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "వైవిద్యాంశంను ఎన్నుకొనుము"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4074,6 +4074,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26995,15 +27112,6 @@ msgid "~Properties..."
msgstr "లక్షణాలు..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/te/sc/source/ui/src.po b/source/te/sc/source/ui/src.po
index 231a660b6f0..e2b3d7d52bb 100644
--- a/source/te/sc/source/ui/src.po
+++ b/source/te/sc/source/ui/src.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 09:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -2703,7 +2703,7 @@ msgstr "విస్త్రుతి #1 నుండి #2 కు మార
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2868,7 +2868,7 @@ msgstr "నెస్టెడ్ యెరేలు మద్దతివ్వ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/te/sfx2/source/view.po b/source/te/sfx2/source/view.po
index 9f57f3367b3..e7454e316e8 100644
--- a/source/te/sfx2/source/view.po
+++ b/source/te/sfx2/source/view.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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/te/svtools/source/control.po b/source/te/svtools/source/control.po
index f7a3a3f2313..5a480832b9f 100644
--- a/source/te/svtools/source/control.po
+++ b/source/te/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "నలుపు వాలు"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/te/svtools/source/misc.po b/source/te/svtools/source/misc.po
index 0ad7fab134e..a6dcc97e8c4 100644
--- a/source/te/svtools/source/misc.po
+++ b/source/te/svtools/source/misc.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: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -3180,10 +3180,10 @@ msgstr "బెక్వెల్"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "కిటుబా"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3910,6 +3910,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/te/sw/source/core/undo.po b/source/te/sw/source/core/undo.po
index 257e95bf36d..0cdc1c0216d 100644
--- a/source/te/sw/source/core/undo.po
+++ b/source/te/sw/source/core/undo.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: 2017-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-13 23:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -892,42 +892,82 @@ msgstr "నిలువు పట్టి నిలుపు"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 చేర్చుము"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 తొలగించుము"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "ఆపాదించు మారినవి"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "పట్టిక మార్చబడినది"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "శైల మారినది"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/te/sw/source/uibase/docvw.po b/source/te/sw/source/uibase/docvw.po
index 379f29b6586..3d5f5301129 100644
--- a/source/te/sw/source/uibase/docvw.po
+++ b/source/te/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 17:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/te/sw/source/uibase/ribbar.po b/source/te/sw/source/uibase/ribbar.po
index b263cf4742c..8378fb21ae6 100644
--- a/source/te/sw/source/uibase/ribbar.po
+++ b/source/te/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 06:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/te/sw/source/uibase/uiview.po b/source/te/sw/source/uibase/uiview.po
index b6ad7f26433..266362f77e8 100644
--- a/source/te/sw/source/uibase/uiview.po
+++ b/source/te/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 17:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/te/xmlsecurity/uiconfig/ui.po b/source/te/xmlsecurity/uiconfig/ui.po
index e32b66d7779..94af7d23d1a 100644
--- a/source/te/xmlsecurity/uiconfig/ui.po
+++ b/source/te/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Telugu <Fedora-trans-te@redhat.com>\n"
@@ -174,6 +174,15 @@ msgstr "తీసివేయి"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/tg/desktop/source/deployment/gui.po b/source/tg/desktop/source/deployment/gui.po
index bac31341e78..0656743420e 100644
--- a/source/tg/desktop/source/deployment/gui.po
+++ b/source/tg/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 08:58+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 03:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467709120.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462161360.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -173,6 +173,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -184,6 +192,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/tg/helpcontent2/source/text/sbasic/shared.po b/source/tg/helpcontent2/source/text/sbasic/shared.po
index 445433e1765..2155e74aca2 100644
--- a/source/tg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/tg/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 17:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,9 +483,41 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
msgstr ""
#: 00000003.xhp
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/tg/helpcontent2/source/text/shared/00.po b/source/tg/helpcontent2/source/text/shared/00.po
index 2b0c2bc194b..853333370e6 100644
--- a/source/tg/helpcontent2/source/text/shared/00.po
+++ b/source/tg/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 12:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/tg/helpcontent2/source/text/shared/01.po b/source/tg/helpcontent2/source/text/shared/01.po
index 56f3d3ea04e..7c068877622 100644
--- a/source/tg/helpcontent2/source/text/shared/01.po
+++ b/source/tg/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-22 13:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/tg/helpcontent2/source/text/shared/optionen.po b/source/tg/helpcontent2/source/text/shared/optionen.po
index 8ceb3e21c47..c6461f96a0f 100644
--- a/source/tg/helpcontent2/source/text/shared/optionen.po
+++ b/source/tg/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 21:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/tg/helpcontent2/source/text/swriter.po b/source/tg/helpcontent2/source/text/swriter.po
index ab9675ef90b..5decef9f836 100644
--- a/source/tg/helpcontent2/source/text/swriter.po
+++ b/source/tg/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 04:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Рақамгузории тарҳ</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/tg/helpcontent2/source/text/swriter/00.po b/source/tg/helpcontent2/source/text/swriter/00.po
index 18fa7b9762a..b86fc8fe105 100644
--- a/source/tg/helpcontent2/source/text/swriter/00.po
+++ b/source/tg/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-25 04:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,7 +2253,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -2261,7 +2261,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -2269,7 +2269,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
msgstr ""
#: 00000406.xhp
diff --git a/source/tg/helpcontent2/source/text/swriter/01.po b/source/tg/helpcontent2/source/text/swriter/01.po
index b46b74815b4..1ebfc593493 100644
--- a/source/tg/helpcontent2/source/text/swriter/01.po
+++ b/source/tg/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 22:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Пахш кунед <emph>1 </emph>танҳо барои дидани дараҷаи болоии сарлавҳаҳо дар равзанаи Роҳнамо ва <emph>10</emph> дидани ҳама сарлавҳаҳо.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Сохтори рақамгузорӣ"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Сохтори рақамгузорӣ"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,7 +25301,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block / Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25309,7 +25309,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
+msgid "New Address Block or Edit Address Block"
msgstr ""
#: mm_newaddblo.xhp
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/tg/helpcontent2/source/text/swriter/guide.po b/source/tg/helpcontent2/source/text/swriter/guide.po
index 4a42e202fd5..dd1f0d523bf 100644
--- a/source/tg/helpcontent2/source/text/swriter/guide.po
+++ b/source/tg/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 22:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Сохтори рақамгузорӣ"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,7 +2997,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
msgstr ""
#: chapter_numbering.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po
index 882a9927a39..4d7f65c1335 100644
--- a/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/tg/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 09:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -629,8 +629,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Интихоби мавзӯъ"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4098,6 +4098,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27080,15 +27197,6 @@ msgid "~Properties..."
msgstr "Хосиятҳо..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/tg/sc/source/ui/src.po b/source/tg/sc/source/ui/src.po
index b09565ae3b4..2be9b51fe4f 100644
--- a/source/tg/sc/source/ui/src.po
+++ b/source/tg/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 10:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2717,7 +2717,7 @@ msgstr "Қитъа аз #1 ба #2 кӯчонида шуд"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2885,7 +2885,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/tg/sfx2/source/view.po b/source/tg/sfx2/source/view.po
index 5b25c5092a2..8df23230ce2 100644
--- a/source/tg/sfx2/source/view.po
+++ b/source/tg/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -259,6 +259,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/tg/svtools/source/control.po b/source/tg/svtools/source/control.po
index 768641ef3fd..b451439e0f7 100644
--- a/source/tg/svtools/source/control.po
+++ b/source/tg/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Хамидаи сиёҳ"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/tg/svtools/source/misc.po b/source/tg/svtools/source/misc.po
index d66c5eef9eb..94cec386ab0 100644
--- a/source/tg/svtools/source/misc.po
+++ b/source/tg/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 10:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3197,9 +3197,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3927,6 +3927,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/tg/sw/source/core/undo.po b/source/tg/sw/source/core/undo.po
index 171bac2e954..8531046651c 100644
--- a/source/tg/sw/source/core/undo.po
+++ b/source/tg/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-14 00:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,42 +895,82 @@ msgstr "бурриши сутун"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Иловакунии $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Кӯркунии $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Атрибутҳо тағир ёфтанд"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Ҷадвал тағир ёфт"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Тағироти сабк"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/tg/sw/source/uibase/docvw.po b/source/tg/sw/source/uibase/docvw.po
index ce2bd4e1951..0daa15ec154 100644
--- a/source/tg/sw/source/uibase/docvw.po
+++ b/source/tg/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 17:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/tg/sw/source/uibase/ribbar.po b/source/tg/sw/source/uibase/ribbar.po
index bde1361c6d6..de01cf042c8 100644
--- a/source/tg/sw/source/uibase/ribbar.po
+++ b/source/tg/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 07:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/tg/sw/source/uibase/uiview.po b/source/tg/sw/source/uibase/uiview.po
index 0143d01cf71..8b52ba4c750 100644
--- a/source/tg/sw/source/uibase/uiview.po
+++ b/source/tg/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 17:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/tg/xmlsecurity/uiconfig/ui.po b/source/tg/xmlsecurity/uiconfig/ui.po
index 6f34b060300..3934e1c01e9 100644
--- a/source/tg/xmlsecurity/uiconfig/ui.po
+++ b/source/tg/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/th/desktop/source/deployment/gui.po b/source/th/desktop/source/deployment/gui.po
index 73c904130f9..0012839519c 100644
--- a/source/th/desktop/source/deployment/gui.po
+++ b/source/th/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 09:01+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: th\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467709268.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864608.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -174,6 +174,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -185,6 +193,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/th/officecfg/registry/data/org/openoffice/Office/UI.po b/source/th/officecfg/registry/data/org/openoffice/Office/UI.po
index b6bf0f80a65..281f468c8d9 100644
--- a/source/th/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/th/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 09:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -625,8 +625,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "เลือกธีม"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4080,6 +4080,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27012,15 +27129,6 @@ msgid "~Properties..."
msgstr "คุณสมบัติ..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/th/sc/source/ui/src.po b/source/th/sc/source/ui/src.po
index bbb8a04b85b..54fb9574016 100644
--- a/source/th/sc/source/ui/src.po
+++ b/source/th/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 10:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2699,7 +2699,7 @@ msgstr "ย้ายช่วงจาก #1 ไปยัง #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2864,7 +2864,7 @@ msgstr "ไม่สนับสนุนอาเรย์ซ้อนในอ
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/th/sfx2/source/view.po b/source/th/sfx2/source/view.po
index c1ba8a371f9..3ddb5500de2 100644
--- a/source/th/sfx2/source/view.po
+++ b/source/th/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/th/svtools/source/control.po b/source/th/svtools/source/control.po
index 2dd7301245d..5feee0cd63f 100644
--- a/source/th/svtools/source/control.po
+++ b/source/th/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "ดำเอียง"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/th/svtools/source/misc.po b/source/th/svtools/source/misc.po
index ef462e4c39b..3acf3bb49e9 100644
--- a/source/th/svtools/source/misc.po
+++ b/source/th/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 11:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3184,10 +3184,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3915,6 +3915,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/th/sw/source/core/undo.po b/source/th/sw/source/core/undo.po
index 229063b2014..14037297b8b 100644
--- a/source/th/sw/source/core/undo.po
+++ b/source/th/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-01-21 17:22+0000\n"
"Last-Translator: jteera <jteera5@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "การแบ่งคอลัมน์"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "แทรก $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "ลบ $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "คุณลักษณะเปลี่ยน"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "ตารางเปลี่ยน"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "รูปแบบเปลี่ยน"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/th/sw/source/uibase/docvw.po b/source/th/sw/source/uibase/docvw.po
index 5253d2d7e22..4645cc8ed31 100644
--- a/source/th/sw/source/uibase/docvw.po
+++ b/source/th/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-14 01:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "กระบวนแบบย่อหน้าที่ใช้"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/th/sw/source/uibase/ribbar.po b/source/th/sw/source/uibase/ribbar.po
index 7cc177e0960..8d2b5f277f6 100644
--- a/source/th/sw/source/uibase/ribbar.po
+++ b/source/th/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 06:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "ข้อความของสูตร"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/th/sw/source/uibase/uiview.po b/source/th/sw/source/uibase/uiview.po
index 56a5be22f3f..ceec361f673 100644
--- a/source/th/sw/source/uibase/uiview.po
+++ b/source/th/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 17:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/th/xmlsecurity/uiconfig/ui.po b/source/th/xmlsecurity/uiconfig/ui.po
index 78d22b04f29..ff1844837b9 100644
--- a/source/th/xmlsecurity/uiconfig/ui.po
+++ b/source/th/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-23 23:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -174,6 +174,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/tn/desktop/source/deployment/gui.po b/source/tn/desktop/source/deployment/gui.po
index fa13f638ecd..c9bce81f0b3 100644
--- a/source/tn/desktop/source/deployment/gui.po
+++ b/source/tn/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 09:32+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467711135.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449864681.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po
index 952cb2494f1..3b4d297b7f9 100644
--- a/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/tn/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 10:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -639,8 +639,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Tlhopha Dintlhakgolo"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4163,6 +4163,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27426,15 +27543,6 @@ msgid "~Properties..."
msgstr ""
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/tn/sc/source/ui/src.po b/source/tn/sc/source/ui/src.po
index c0cbe5c6594..49492c08cda 100644
--- a/source/tn/sc/source/ui/src.po
+++ b/source/tn/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 10:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2761,7 +2761,7 @@ msgstr "Tatelano e tlositswe go tswa #1 go #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2931,7 +2931,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/tn/sfx2/source/view.po b/source/tn/sfx2/source/view.po
index bcce563f95c..bd3e9daba09 100644
--- a/source/tn/sfx2/source/view.po
+++ b/source/tn/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -246,6 +246,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/tn/svtools/source/control.po b/source/tn/svtools/source/control.po
index 5950944ee7c..843b6f39dd6 100644
--- a/source/tn/svtools/source/control.po
+++ b/source/tn/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,6 +292,110 @@ msgstr "bonthso Ithaliki"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/tn/svtools/source/misc.po b/source/tn/svtools/source/misc.po
index f6de1467f58..6721ede2272 100644
--- a/source/tn/svtools/source/misc.po
+++ b/source/tn/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 13:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3207,9 +3207,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3936,6 +3936,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/tn/sw/source/core/undo.po b/source/tn/sw/source/core/undo.po
index e4e4162b791..5b336dae83a 100644
--- a/source/tn/sw/source/core/undo.po
+++ b/source/tn/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 04:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -910,27 +910,25 @@ msgid "column break"
msgstr "~Kholomo thubega"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Tsenya jaaka"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Phimola #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr ""
@@ -938,19 +936,58 @@ msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tafole-fetotswe"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Tafole-fetotswe"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/tn/sw/source/uibase/docvw.po b/source/tn/sw/source/uibase/docvw.po
index 206a3a251fa..585cd660b87 100644
--- a/source/tn/sw/source/uibase/docvw.po
+++ b/source/tn/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 18:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/tn/sw/source/uibase/ribbar.po b/source/tn/sw/source/uibase/ribbar.po
index 2f1c89aafbf..ff951e7b751 100644
--- a/source/tn/sw/source/uibase/ribbar.po
+++ b/source/tn/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 05:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/tn/sw/source/uibase/uiview.po b/source/tn/sw/source/uibase/uiview.po
index 9d9edb5f554..649d119fc41 100644
--- a/source/tn/sw/source/uibase/uiview.po
+++ b/source/tn/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 18:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/tn/xmlsecurity/uiconfig/ui.po b/source/tn/xmlsecurity/uiconfig/ui.po
index 7c2d94255b3..2e3ffdbaa02 100644
--- a/source/tn/xmlsecurity/uiconfig/ui.po
+++ b/source/tn/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-24 00:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/tr/desktop/source/deployment/gui.po b/source/tr/desktop/source/deployment/gui.po
index 67c743cde3b..02bfeb5532b 100644
--- a/source/tr/desktop/source/deployment/gui.po
+++ b/source/tr/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-23 00:24+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:50+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485131078.000000\n"
+"X-POOTLE-MTIME: 1497966617.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr "Eklenti kurulumu şimdilik kapalıdır. Daha fazla bilgi için sistem yöneticinizle görüşün."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr "Eklenti kaldırılması şimdilik kapalıdır. Daha fazla bilgi için sistem yöneticinizle görüşün."
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/tr/helpcontent2/source/text/sbasic/shared.po b/source/tr/helpcontent2/source/text/sbasic/shared.po
index 24214788eca..a60d3599d70 100644
--- a/source/tr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/tr/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-06-02 12:56+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496408217.000000\n"
#: 00000002.xhp
@@ -483,10 +483,42 @@ msgstr "Bu fonksiyon bir modülün çalıştırılabilir program kodunda <item t
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Hata Kodları</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Bu çalışma zamanı fonksiyonu eğer XmultiServiceFactory ile örnekleniyorsa, kullanılacak varsayılan bileşen içeriğini döndürür. Daha fazla bilgi için <item type=\"literal\">Geliştirici Rehberi</item>'indeki <item type=\"literal\">Profesyonel UNO</item> bölümü <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> bağlantısından inceleyin."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/tr/helpcontent2/source/text/scalc/01.po b/source/tr/helpcontent2/source/text/scalc/01.po
index 455479ace7d..de0e9dc6bea 100644
--- a/source/tr/helpcontent2/source/text/scalc/01.po
+++ b/source/tr/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 17:12+0000\n"
+"PO-Revision-Date: 2017-06-07 14:29+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496769178.000000\n"
+"X-POOTLE-MTIME: 1496845770.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60334,7 +60334,7 @@ msgctxt ""
"par_id764617646176461\n"
"help.text"
msgid "<ahelp hid=\".\"><variable id=\"imcot_des\">Returns the cotangent of a complex number.</variable> The cotangent of a complex number can be expressed by:</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><variable id=\"imcot_des\">Bir karmaşık sayının kotanjantını döndürür.</variable> Bir karmaşık sayının kotanjantı şöyle gösterilebilir:</ahelp>"
#: func_imcot.xhp
msgctxt ""
@@ -60342,7 +60342,7 @@ msgctxt ""
"par_id311713256011430\n"
"help.text"
msgid "<image id=\"img_id5988220084990\" src=\"media/helpimg/sc_func_imcot.png\"><alt id=\"alt_id5988220084990\">cot(a+bi)=cos(a+bi)/sin(a+bi)</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id5988220084990\" src=\"media/helpimg/sc_func_imcot.png\"><alt id=\"alt_id5988220084990\">cot(a+bi)=cos(a+bi)/sin(a+bi)</alt></image>"
#: func_imcot.xhp
msgctxt ""
@@ -60358,7 +60358,7 @@ msgctxt ""
"par_id766137661376613\n"
"help.text"
msgid "Complex_number is a complex number whose cotangent is to be calculated."
-msgstr ""
+msgstr "Karmaşık_sayı kotanjantı hesaplanacak karmaşık sayıdır."
#: func_imcot.xhp
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/shared/00.po b/source/tr/helpcontent2/source/text/shared/00.po
index f834d4ec4eb..a2f231dc47a 100644
--- a/source/tr/helpcontent2/source/text/shared/00.po
+++ b/source/tr/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-06-03 15:36+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496504201.000000\n"
#: 00000001.xhp
@@ -9725,8 +9725,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Araçlar -Anahat Numaralama - Konum</emph> sekmesini seçin </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
@@ -9749,8 +9749,8 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline><emph>Görüntü</emph> araç çubuğundaki simge:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgstr ""
#: 00040500.xhp
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/shared/01.po b/source/tr/helpcontent2/source/text/shared/01.po
index 6f081ed58be..cc4666b9693 100644
--- a/source/tr/helpcontent2/source/text/shared/01.po
+++ b/source/tr/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-06-03 15:41+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Kaynak belgeyi alt belgelere ayırmak için kullanılacak, paragraf biçimini ve anahat düzeyini seçin.</ahelp> Varsayılan olarak her anahat düzeyi 1 için bir yeni belge yaratılır."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Writer belgelerinin yer imlerini PDF yer imleri olarak dışa aktarmak için seçer. Yer imleri; paragraf anahatlarının (Araçlar - Anahat Numaralandırma) ve kaynak belgede köprüler atadığınız içindekiler tablosu girdilerinin tümü için oluşturulur.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/shared/optionen.po b/source/tr/helpcontent2/source/text/shared/optionen.po
index 7fdb10dd735..b3324c7b177 100644
--- a/source/tr/helpcontent2/source/text/shared/optionen.po
+++ b/source/tr/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-06-06 21:10+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496783436.000000\n"
#: 01000000.xhp
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/tr/helpcontent2/source/text/swriter.po b/source/tr/helpcontent2/source/text/swriter.po
index ac99f8e3abd..4d77e34a5e2 100644
--- a/source/tr/helpcontent2/source/text/swriter.po
+++ b/source/tr/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-06-03 21:34+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 14:08+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496525645.000000\n"
+"X-POOTLE-MTIME: 1497967680.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Anahat Numaralama</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Bölüm Numaralandırma</link>"
#: main0106.xhp
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/swriter/00.po b/source/tr/helpcontent2/source/text/swriter/00.po
index ce92bea131e..6d0985317dd 100644
--- a/source/tr/helpcontent2/source/text/swriter/00.po
+++ b/source/tr/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-05-08 18:09+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>Araçlar - Anahat Numaralama </emph>seçeneğini seçin</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>Araçlar - Anahat Numaralama - Numaralama</emph> sekmesini seçin</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>Araçlar - Satır Numaralama</emph> seçeneğini seçin (HTML biçimi için değil)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/swriter/01.po b/source/tr/helpcontent2/source/text/swriter/01.po
index d3fd38ee55d..59837aa5410 100644
--- a/source/tr/helpcontent2/source/text/swriter/01.po
+++ b/source/tr/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-06-03 20:57+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496523438.000000\n"
#: 01120000.xhp
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Gezgin penceresinde sadece en üst seviyedeki başlıkları görmek için <emph>1 </emph>, tüm başlıkları görmek için <emph>10 </emph>'a tıklayın.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Bir bölüm alanı için eğer \"Ayraç olmadan bölüm numarası\" seçerseniz, <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Araçlar - Anahat Numaralama</emph></link> içinde tanımlananan bölüm numaları gösterilmez."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Bölüm numarasını girin. Bir başlık biçemine başlık numarası atamak için <emph>Araçlar - Anahat Numaralandırması</emph> 'nı seçin.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Bölüm numaralaması"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Bölüm numaralaması"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Anahat numaralandırma paragraf biçemlerine bağlanmıştır. Varsayılan olarak, \"Başlık\" paragraf biçemleri (1-10) karşılık gelen anahat numaralandırma seviyelerine (1-10) atanır. Eğer isterseniz, farklı paragraf biçemlerini farklı anahat numaraladırma seviyelerine atayabilirsiniz."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Numaralandırılmış başlıklar istiyorsanız, bir paragraf biçemine numaralandırma atamak için <emph>Araçlar - Anahat Numaralama</emph> menü komutunu kullanın. Biçimlendirme araç çubuğındaki Numaralandırma simgesini kullanmayın."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Ekran görüntüsündeki anahat numaralarını vurgulamak için, <emph>Görünüm -</emph><emph>Alan Gölgeleme</emph>'yi seçin."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Anahat numara biçimini kaydeder veya yükler. Kaydedilmiş anahat biçimi tüm metin belgeleri için kullanılabilir.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "<emph>Biçim</emph> düğmesi sadece anahat numaralama için kullanılabilir. Numaralandırılmış veya madde imli liste biçemleri için, paragrafların Numaralandırma Biçemleri'ni değiştirin."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Anahat seviyesi için mevcut ayarları kaydedebileceğiniz iletişim penceresi açar. Daha sonra bu ayarları başka bir belgeden yükleyebilirsiniz.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Değişiklik yapmak istediğiniz taslak seviyesine tıklayınız, ve daha sonra seviye için numaralandırma seçeneğini belirleyiniz.</ahelp> Paragraf biçemi hariç, tüm seviyelere numaralandırma seçeneklerini uygulamak için \"1-10\"a tıklayın."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Seçilen taslak seviyesine atamak istediğiniz paragraf biçemini seçiniz.</ahelp> Eğer \"Hiçbiri\"ne tıklarsanız, seçilen taslak seviyesi tanımlanmaz."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Adres Listesini Seç"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Adres Listesini Seç"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Adres Ögeleri"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Adres ögesini aşağıdaki alana sürükle"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/tr/helpcontent2/source/text/swriter/guide.po b/source/tr/helpcontent2/source/text/swriter/guide.po
index 63825047e29..c4cc1974444 100644
--- a/source/tr/helpcontent2/source/text/swriter/guide.po
+++ b/source/tr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-06-06 11:01+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1496746882.000000\n"
#: anchor_object.xhp
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Gezgini kullanarak bir belge metnindeki başlıkları taşıyabilir ve başına ve sonuna bir metin bağlanabilir. Ayrıca başlık düzeylerini yükseltebilir ve düşürebilirsiniz. Bu özelliği kullanmak için, belgenizdeki başlıkları tanımlı paragraf başlığı biçemlerinden biriyle biçimlendirin. Başlıkta özel bir paragraf biçemi kullanmak için, <emph>Araçlar - Bölüm Numaralaması</emph> seçeneklerini seçin, <emph>Paragraf Biçemi </emph>kutucuğundaki biçemlerden birini seçin<emph>Düzeyler </emph>listesindeki bir numaraya çift tıklayın."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Anahat numaralama"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>anahat;numaralandırma</bookmark_value> <bookmark_value>silme;başlık numaraları</bookmark_value> <bookmark_value>bölüm numaralandırma</bookmark_value> <bookmark_value>başlıklar; numaralandırma/paragraf biçemleri</bookmark_value> <bookmark_value>numaralandırma;başlıklar</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Anahat Numaralama</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Başlık sıralamasını değiştirebilir ya da özel bir paragraf biçemine sıralamada bir seviye atayabilirsiniz. Ayrıca başlık paragraf biçemlerine bölüm numaralandırması ekleyebilirsiniz. Varsayılan olarak \"Başlık 1\" paragraf biçemi anahat sıralamasında en üstedir."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">Araçlar - Anahat Numaralama</item>'ı seçin, ve sonra <item type=\"menuitem\">Numaralama</item> sekmesine tıklayın."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Bir Başlık Paragrafından Otomatik Anahat Numaralandırmasını Kaldımak için:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "<item type=\"menuitem\">Araçlar - Anahat Numaralama</item>'ı seçin, ve sonra <item type=\"menuitem\">Numaralama</item> sekmesine tıklayın."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Bir üst bilgiye ya da alt bilgiye bölüm bilgisi eklemeden önce, bölüm başlıklarında kullanmak istediğiniz paragraf biçemi için anahat numaralandırma seçeneklerini belirlemelisiniz."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "<emph>Araçlar - Anahat Numaralandırma</emph>'yı seçin."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>dizinler; girdileri tanımlama</bookmark_value> <bookmark_value>içindekiler dizini; girdileri tanımlama</bookmark_value> <bookmark_value>girdiler; dizinleri/içindekiler dizinini tanımlama</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "<emph>Ekle - Dizinler ve Tablolar - Giriş</emph>' seçin, ve aşağıdakilerden birini yapın:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "<emph>Araçlar - Anahat Numaralandırma</emph>'yı seçin ve <emph>Numaralandırma</emph> sekmesine tıklayın."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "İçindekiler dizini girdisi olarak farklı bir paragraf biçemi kullanmak istiyorsanız <item type=\"menuitem\">Oluştur</item> alanındaki <item type=\"menuitem\">Ek Biçemler</item> seçim kutusunu seçin ve daha sonra seçim kutucuğunun yanındaki (<item type=\"menuitem\">...</item>) butonuna tıklayın.<item type=\"menuitem\">Biçem Ata</item> penceresinde, listedeki biçeme tıklayın ve daha sonra paragraf biçeminin sınırını tanımlamak için <item type=\"menuitem\">>></item> veya <item type=\"menuitem\"><<</item> butonuna tıklayın."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Eğer bir içindekiler tablosu girdisi olarak farklı bir paragraf biçemi kullanmak istiyorsanız, <item type=\"menuitem\">Ek Biçemler</item>'i seçin ve ardınan kutunun yanındaki <item type=\"menuitem\">Biçem ata</item> düğmesine tıklayın. Listedeki biçemi seçin ve ardından paragraf biçemi için anahat düzeyi belirmek için <item type=\"menuitem\">>></item> veya <item type=\"menuitem\"><<</item> düğmesine tıklayın."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>numaralandırmak;kaldırmak/durdurmak</bookmark_value><bookmark_value>büyük noktalı listeler; durdurmak</bookmark_value><bookmark_value>listeler;numaralandırmayı kaldırmak/durdurmak</bookmark_value><bookmark_value>silmek;listedeki sayılar</bookmark_value><bookmark_value>numaralandırılmış listeyi durdurmak</bookmark_value><bookmark_value>değiştirmek;listede sayıları başlatmak</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Numaralandırılmış başlıklar istiyorsanız, paragraf biçemine numara atamak için <emph>Araçlar - Anahat Numaralandırma</emph> menü komutunu kullanın. Biçimlendirme araç çubuğundaki Numaralandırma simgesini kullanmayın."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po
index 8864fe7185c..4ce9d2f91e1 100644
--- a/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/tr/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-06 21:16+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 13:51+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496783817.000000\n"
+"X-POOTLE-MTIME: 1497966699.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Tema Seçimi"
+msgid "Spreadsheet Theme"
+msgstr "Çalışma Sayfası Teması"
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Ekle..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr "Varsayılan"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr "Vurgu 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr "Vurgu 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr "Vurgu 3"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr "Başlık 1"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr "Başlık 2"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr "Kötü"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr "Hata"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr "İyi"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr "Tarafsız"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr "Uyarı"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr "Dipnot"
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr "Not"
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "~Özellikler..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Nesne..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/tr/sc/source/ui/src.po b/source/tr/sc/source/ui/src.po
index da737fda89e..56f1f7106b4 100644
--- a/source/tr/sc/source/ui/src.po
+++ b/source/tr/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-27 13:34+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:52+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495892049.000000\n"
+"X-POOTLE-MTIME: 1497966737.000000\n"
#: globstr.src
msgctxt ""
@@ -2701,7 +2701,7 @@ msgstr "Aralık #1 'den #2 'ye taşındı"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,7 +2710,7 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Bu işlem ile değişikliklerin izlenmesi sona erdirilecek.\n"
+"Bu işlem ile değişikliklerin kaydedilmesi sona erdirilecek.\n"
"Daha önceki değişiklikler ile ilgili tüm bilgiler kaybolacak.\n"
"\n"
"Kayıt durdurulsun mu?\n"
@@ -2871,7 +2871,7 @@ msgstr "İçiçe diziler desteklenmiyor."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr "Metinden Sütunlara"
diff --git a/source/tr/sfx2/source/view.po b/source/tr/sfx2/source/view.po
index 645039bdc4d..b93c5ed378d 100644
--- a/source/tr/sfx2/source/view.po
+++ b/source/tr/sfx2/source/view.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-03 21:38+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:52+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493847512.000000\n"
+"X-POOTLE-MTIME: 1497966752.000000\n"
#: view.src
msgctxt ""
@@ -253,6 +253,14 @@ msgstr "Belgenin geçersiz bir imzası mevcut."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr "İmza geçerli ancak belge düzenlenmiş"
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/tr/svtools/source/control.po b/source/tr/svtools/source/control.po
index c9e7f8eb678..fd783ac0927 100644
--- a/source/tr/svtools/source/control.po
+++ b/source/tr/svtools/source/control.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-13 23:02+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:54+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1436828547.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497966888.000000\n"
#: calendar.src
msgctxt ""
@@ -291,6 +291,110 @@ msgstr "Siyah italik"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr "Kitap"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr "Kalın Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr "Yoğun"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr "Çok Kalın"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr "Çok Kalın Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr "Çok Kalın Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr "Yoğun Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr "Yoğun Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr "Çok İnce"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr "Çok İnce Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr "Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr "Biraz Kalın"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr "Biraz Kalın Eğik"
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/tr/svtools/source/misc.po b/source/tr/svtools/source/misc.po
index 439fbe9349a..44d299ceebf 100644
--- a/source/tr/svtools/source/misc.po
+++ b/source/tr/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-17 21:59+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:55+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495058383.000000\n"
+"X-POOTLE-MTIME: 1497966920.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3180,10 +3180,10 @@ msgstr "Bekwel dili"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba dili"
+msgid "Kituba (Congo)"
+msgstr "Kituba (Kongo)"
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr "Kituba (Demokratik Kongo Cumhuriyeti)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/tr/sw/source/core/undo.po b/source/tr/sw/source/core/undo.po
index 0b92d74ac89..005d82ad095 100644
--- a/source/tr/sw/source/core/undo.po
+++ b/source/tr/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-03 21:02+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 13:56+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493845353.000000\n"
+"X-POOTLE-MTIME: 1497966998.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "sütunu sonlandır"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "$1 Ekle"
@@ -899,7 +899,7 @@ msgstr "$1 Ekle"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "$1 Sil"
@@ -907,26 +907,66 @@ msgstr "$1 Sil"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Özellikler değiştirildi"
+msgstr "Öznitelikler değişti"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tablo değiştirildi"
+msgstr "Tablo değişti"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Biçem değiştirildi"
+msgstr "Biçem değişti"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Paragraf biçimlendirme değişti"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Satır Ekle"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Satır Sil"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Hücre Ekle"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Hücre Sil"
#: undo.src
msgctxt ""
diff --git a/source/tr/sw/source/uibase/docvw.po b/source/tr/sw/source/uibase/docvw.po
index 3ca242a716b..5d9eeaf31f9 100644
--- a/source/tr/sw/source/uibase/docvw.po
+++ b/source/tr/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2014-11-21 00:07+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 13:57+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1416528426.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497967034.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Uygulanan Paragraf Biçemleri"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Paragraf biçimlendirme değişti"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Satır Eklendi"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Satır Silindi"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Hücre Eklendi"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Hücre Silindi"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/tr/sw/source/uibase/ribbar.po b/source/tr/sw/source/uibase/ribbar.po
index f35c6f489ea..49e524f74d3 100644
--- a/source/tr/sw/source/uibase/ribbar.po
+++ b/source/tr/sw/source/uibase/ribbar.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-01-07 00:41+0000\n"
-"Last-Translator: Zeki Bildirici <kobzeci@gmail.com>\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 13:57+0000\n"
+"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1483749678.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497967043.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Formül Metni"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Metin Formülü"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/tr/sw/source/uibase/uiview.po b/source/tr/sw/source/uibase/uiview.po
index f247b596664..4b0bba7c8ab 100644
--- a/source/tr/sw/source/uibase/uiview.po
+++ b/source/tr/sw/source/uibase/uiview.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-12 06:34+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 13:57+0000\n"
+"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457764497.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497967060.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Kaynağı dışa aktar..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Kaynağın kopyasını dışa aktar..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/tr/wizards/source/formwizard.po b/source/tr/wizards/source/formwizard.po
index a1481ad8144..923b56fd376 100644
--- a/source/tr/wizards/source/formwizard.po
+++ b/source/tr/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:39+0200\n"
-"PO-Revision-Date: 2017-05-29 20:16+0000\n"
+"PO-Revision-Date: 2017-06-19 20:26+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496088967.000000\n"
+"X-POOTLE-MTIME: 1497904002.000000\n"
#: dbwizres.src
msgctxt ""
@@ -1092,7 +1092,7 @@ msgctxt ""
"RID_DB_QUERY_WIZARD_START + 16\n"
"string.text"
msgid "Aggregate functions"
-msgstr "Küme işlevleri"
+msgstr "Toplama fonksiyonları"
#: dbwizres.src
msgctxt ""
@@ -1364,7 +1364,7 @@ msgctxt ""
"RID_DB_QUERY_WIZARD_START + 55\n"
"string.text"
msgid "Aggregate functions: "
-msgstr "Toplu işlevler: "
+msgstr "Toplama fonksiyonları:"
#: dbwizres.src
msgctxt ""
@@ -1372,7 +1372,7 @@ msgctxt ""
"RID_DB_QUERY_WIZARD_START + 56\n"
"string.text"
msgid "No aggregate functions were assigned."
-msgstr "Hiç toplu işlev atanmamış."
+msgstr "Hiç toplama işlevi atanmamış."
#: dbwizres.src
msgctxt ""
diff --git a/source/tr/xmlsecurity/uiconfig/ui.po b/source/tr/xmlsecurity/uiconfig/ui.po
index e9a726c3900..07d835aa736 100644
--- a/source/tr/xmlsecurity/uiconfig/ui.po
+++ b/source/tr/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-03 20:41+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 13:57+0000\n"
"Last-Translator: Necdet Yucel <necdetyucel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493844112.000000\n"
+"X-POOTLE-MTIME: 1497967075.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Kaldır"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Sertifika Yöneticisini Başlat..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ts/desktop/source/deployment/gui.po b/source/ts/desktop/source/deployment/gui.po
index f100b360935..ceb17a00445 100644
--- a/source/ts/desktop/source/deployment/gui.po
+++ b/source/ts/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 09:47+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ts\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467712076.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449865146.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -170,6 +170,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -181,6 +189,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po
index 2c232f6aca7..b7591fbd164 100644
--- a/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ts/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 10:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -635,8 +635,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Hlawula Swihloko"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4150,6 +4150,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27426,15 +27543,6 @@ msgid "~Properties..."
msgstr "Vundzeni..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ts/sc/source/ui/src.po b/source/ts/sc/source/ui/src.po
index 1febc6e9309..a4888317d38 100644
--- a/source/ts/sc/source/ui/src.po
+++ b/source/ts/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 10:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2742,7 +2742,7 @@ msgstr "Vunavi byi sukile eka #1 ku ya eka #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2910,7 +2910,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ts/sfx2/source/view.po b/source/ts/sfx2/source/view.po
index 2c5a1c1bd9b..b74de5e69a1 100644
--- a/source/ts/sfx2/source/view.po
+++ b/source/ts/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -236,6 +236,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ts/svtools/source/control.po b/source/ts/svtools/source/control.po
index 8046d6dd165..cea5c867028 100644
--- a/source/ts/svtools/source/control.po
+++ b/source/ts/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,6 +292,110 @@ msgstr "Ithaliki ya ntima"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ts/svtools/source/misc.po b/source/ts/svtools/source/misc.po
index 9767b2b4d62..9791d63f62b 100644
--- a/source/ts/svtools/source/misc.po
+++ b/source/ts/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3205,9 +3205,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3934,6 +3934,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ts/sw/source/core/undo.po b/source/ts/sw/source/core/undo.po
index ab5c3c0034e..e9fb97f0df2 100644
--- a/source/ts/sw/source/core/undo.po
+++ b/source/ts/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 04:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -896,46 +896,84 @@ msgid "column break"
msgstr "ku tsemeka ka kholomu"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Nghenisa tanihi"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Tima #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Swihlawulekisi swi cincile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tafula ri cincile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Xitayili xi cincile"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ts/sw/source/uibase/docvw.po b/source/ts/sw/source/uibase/docvw.po
index 37efdb6a2d3..0dfeeba1646 100644
--- a/source/ts/sw/source/uibase/docvw.po
+++ b/source/ts/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 18:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ts/sw/source/uibase/ribbar.po b/source/ts/sw/source/uibase/ribbar.po
index 65cedf88c20..e490e1318b3 100644
--- a/source/ts/sw/source/uibase/ribbar.po
+++ b/source/ts/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 06:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ts/sw/source/uibase/uiview.po b/source/ts/sw/source/uibase/uiview.po
index 9b932f3f89a..d7ada8741a5 100644
--- a/source/ts/sw/source/uibase/uiview.po
+++ b/source/ts/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 18:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ts/xmlsecurity/uiconfig/ui.po b/source/ts/xmlsecurity/uiconfig/ui.po
index 3934dda3628..7785dc82f91 100644
--- a/source/ts/xmlsecurity/uiconfig/ui.po
+++ b/source/ts/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-24 00:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ug/desktop/source/deployment/gui.po b/source/ug/desktop/source/deployment/gui.po
index 839f658d066..16e5508334f 100644
--- a/source/ug/desktop/source/deployment/gui.po
+++ b/source/ug/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 10:09+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 04:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ug\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467713396.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462162749.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ug/helpcontent2/source/text/sbasic/shared.po b/source/ug/helpcontent2/source/text/sbasic/shared.po
index 0defb00299a..d176d22ba5f 100644
--- a/source/ug/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ug/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-06 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"solver\">قورال - يېشىمچىنى تاللاڭ</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/ug/helpcontent2/source/text/shared/00.po b/source/ug/helpcontent2/source/text/shared/00.po
index dc7cf9d8a35..009b0c21367 100644
--- a/source/ug/helpcontent2/source/text/shared/00.po
+++ b/source/ug/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 03:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/ug/helpcontent2/source/text/shared/01.po b/source/ug/helpcontent2/source/text/shared/01.po
index 7ed1c906e53..a1632eabe49 100644
--- a/source/ug/helpcontent2/source/text/shared/01.po
+++ b/source/ug/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-12-25 06:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/ug/helpcontent2/source/text/shared/optionen.po b/source/ug/helpcontent2/source/text/shared/optionen.po
index 8e812478006..61c25b34fd1 100644
--- a/source/ug/helpcontent2/source/text/shared/optionen.po
+++ b/source/ug/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-06 22:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/ug/helpcontent2/source/text/swriter.po b/source/ug/helpcontent2/source/text/swriter.po
index 31ec6e83dbf..8b992bd5db8 100644
--- a/source/ug/helpcontent2/source/text/swriter.po
+++ b/source/ug/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 04:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"باب تەرتىپ نومۇرى\">باب تەرتىپ نومۇرى</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/ug/helpcontent2/source/text/swriter/00.po b/source/ug/helpcontent2/source/text/swriter/00.po
index e74eb05eb58..096c67ebb1f 100644
--- a/source/ug/helpcontent2/source/text/swriter/00.po
+++ b/source/ug/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-25 04:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\"><emph>قورال - باب تەرتىپ نومۇرى</emph>نى تاللاڭ</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\"><emph>قورال - باب تەرتىپ نومۇرى - تەرتىپ نومۇرى</emph> بەتكۈچنى تاللاڭ </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\"><emph>قورال - قۇر نومۇرى</emph> نى تاللاڭ(HTML فورماتىدا ئىشلەتكىلى بولمايدۇ) </variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/ug/helpcontent2/source/text/swriter/01.po b/source/ug/helpcontent2/source/text/swriter/01.po
index a90b6d10e76..960a7334c65 100644
--- a/source/ug/helpcontent2/source/text/swriter/01.po
+++ b/source/ug/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-06 22:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,7 +1125,7 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
msgstr ""
#: 02110000.xhp
@@ -5829,7 +5829,7 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
msgstr ""
#: 04090001.xhp
@@ -11213,7 +11213,7 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
msgstr ""
#: 04120221.xhp
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "باب تەرتىپ نومۇرى"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "باب تەرتىپ نومۇرى"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,7 +21365,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
msgstr ""
#: 06060000.xhp
@@ -21373,7 +21373,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: 06060000.xhp
@@ -21381,7 +21381,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
msgstr ""
#: 06060000.xhp
@@ -21397,7 +21397,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21405,7 +21405,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
msgstr ""
#: 06060000.xhp
@@ -21437,7 +21437,7 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
msgstr ""
#: 06060000.xhp
@@ -21493,7 +21493,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
msgstr ""
#: 06060100.xhp
@@ -21525,7 +21525,7 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#: 06060100.xhp
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "يېڭى ئادرېس بۆلىكى"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "يېڭى ئادرېس بۆلىكى"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,7 +25325,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
+msgid "Address elements"
msgstr ""
#: mm_newaddblo.xhp
@@ -25373,7 +25373,7 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
+msgid "Drag address elements here"
msgstr ""
#: mm_newaddblo.xhp
diff --git a/source/ug/helpcontent2/source/text/swriter/guide.po b/source/ug/helpcontent2/source/text/swriter/guide.po
index f63ff20674f..f8a60e9da45 100644
--- a/source/ug/helpcontent2/source/text/swriter/guide.po
+++ b/source/ug/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-06 22:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,7 +189,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
msgstr ""
#: arrange_chapters.xhp
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "باب تەرتىپ نومۇرى"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,7 +2917,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
msgstr ""
#: chapter_numbering.xhp
@@ -2925,7 +2925,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
msgstr ""
#: chapter_numbering.xhp
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose <item type=\"menuitem\">Insert ? Frame</item> and click <item type=\"menuitem\">OK</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,7 +2965,7 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
msgstr ""
#: chapter_numbering.xhp
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Choose <item type=\"menuitem\">Insert ? Frame</item> and click <item type=\"menuitem\">OK</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,7 +6109,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
msgstr ""
#: header_with_chapter.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
msgstr ""
#: header_with_chapter.xhp
@@ -7125,7 +7125,7 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
msgstr ""
#: indices_enter.xhp
@@ -7157,7 +7157,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
msgstr ""
#: indices_enter.xhp
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -7837,7 +7837,7 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: indices_toc.xhp
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,7 +9485,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
#: numbering_paras.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#: numbering_paras.xhp
diff --git a/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po
index 055d9946623..1afa883a111 100644
--- a/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ug/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-13 15:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "باش تېما تاللا"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26697,15 +26814,6 @@ msgstr "خاسلىق(~P)…"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "ئوبيېكت(_O)…"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/ug/sc/source/ui/src.po b/source/ug/sc/source/ui/src.po
index 12e4c51f655..e57f788c934 100644
--- a/source/ug/sc/source/ui/src.po
+++ b/source/ug/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-09-29 01:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "دائىرە #1 دىن #2 غا يۆتكەلدى"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2866,7 +2866,7 @@ msgstr "قاتلانما سانلار قاتارىنى قوللىمايدۇ."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ug/sfx2/source/view.po b/source/ug/sfx2/source/view.po
index e6960f6d277..545aaaa695d 100644
--- a/source/ug/sfx2/source/view.po
+++ b/source/ug/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -257,6 +257,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ug/svtools/source/control.po b/source/ug/svtools/source/control.po
index c53d10bdaa8..3888e12f91d 100644
--- a/source/ug/svtools/source/control.po
+++ b/source/ug/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-01-06 16:55+0000\n"
"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "قارا يانتۇ"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ug/svtools/source/misc.po b/source/ug/svtools/source/misc.po
index 1a5df2e794d..af05e0e1739 100644
--- a/source/ug/svtools/source/misc.po
+++ b/source/ug/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-14 00:10+0000\n"
"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "بېكۋېلچە"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "كىتۇباچە"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ug/sw/source/core/undo.po b/source/ug/sw/source/core/undo.po
index 1f94bc8aff7..018050e9291 100644
--- a/source/ug/sw/source/core/undo.po
+++ b/source/ug/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-12-28 17:01+0000\n"
"Last-Translator: Abduqadir Abliz <Sahran@live.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -892,42 +892,82 @@ msgstr "رەت ئايرىش بەلگىسى"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 قىستۇر"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 ئۆچۈر"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "خاسلىق ئۆزگەردى"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "جەدۋەل ئۆزگەردى"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "ئۇسلۇب ئۆزگەردى"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ug/sw/source/uibase/docvw.po b/source/ug/sw/source/uibase/docvw.po
index d97a15c5226..bb712332818 100644
--- a/source/ug/sw/source/uibase/docvw.po
+++ b/source/ug/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ug/sw/source/uibase/ribbar.po b/source/ug/sw/source/uibase/ribbar.po
index 27f03175cb9..fd8f83a32c3 100644
--- a/source/ug/sw/source/uibase/ribbar.po
+++ b/source/ug/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 06:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ug/sw/source/uibase/uiview.po b/source/ug/sw/source/uibase/uiview.po
index 0a059857c8f..d4a4690c5de 100644
--- a/source/ug/sw/source/uibase/uiview.po
+++ b/source/ug/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ug/xmlsecurity/uiconfig/ui.po b/source/ug/xmlsecurity/uiconfig/ui.po
index 7d89d0a9a6d..97c63f28dce 100644
--- a/source/ug/xmlsecurity/uiconfig/ui.po
+++ b/source/ug/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-31 16:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr "چىقىرىۋەت"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/uk/desktop/source/deployment/gui.po b/source/uk/desktop/source/deployment/gui.po
index 7c86777be75..b0bd4aade3e 100644
--- a/source/uk/desktop/source/deployment/gui.po
+++ b/source/uk/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 10:28+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:35+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467714532.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449866134.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/uk/filter/source/config/fragments/filters.po b/source/uk/filter/source/config/fragments/filters.po
index 1d32e10ac08..85101213233 100644
--- a/source/uk/filter/source/config/fragments/filters.po
+++ b/source/uk/filter/source/config/fragments/filters.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 13:16+0000\n"
-"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
+"PO-Revision-Date: 2017-06-12 07:06+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492434976.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497251174.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
diff --git a/source/uk/filter/source/config/fragments/types.po b/source/uk/filter/source/config/fragments/types.po
index f85caa4b867..f953ca28320 100644
--- a/source/uk/filter/source/config/fragments/types.po
+++ b/source/uk/filter/source/config/fragments/types.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-17 13:16+0000\n"
-"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
+"PO-Revision-Date: 2017-06-12 07:06+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492434984.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497251183.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/sbasic/shared.po b/source/uk/helpcontent2/source/text/sbasic/shared.po
index f4c1779cb2c..f8630de743c 100644
--- a/source/uk/helpcontent2/source/text/sbasic/shared.po
+++ b/source/uk/helpcontent2/source/text/sbasic/shared.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-26 10:59+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-19 14:20+0000\n"
+"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495796386.000000\n"
+"X-POOTLE-MTIME: 1497882056.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Коди помилок</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -1350,7 +1382,7 @@ msgctxt ""
"par_id31455973\n"
"help.text"
msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err973\">973 не допускається всередині процедури</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1358,7 +1390,7 @@ msgctxt ""
"par_id31455974\n"
"help.text"
msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr ""
+msgstr "<variable id=\"err974\">974 не допускається поза процедурою</variable>"
#: 00000003.xhp
msgctxt ""
@@ -15014,7 +15046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic Constants"
-msgstr ""
+msgstr "Основні сталі"
#: 03040000.xhp
msgctxt ""
@@ -15046,7 +15078,7 @@ msgctxt ""
"par_id051620171022382581\n"
"help.text"
msgid "Boolean constants"
-msgstr ""
+msgstr "Булеві сталі"
#: 03040000.xhp
msgctxt ""
@@ -15054,7 +15086,7 @@ msgctxt ""
"par_id051620171114565335\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Назва"
#: 03040000.xhp
msgctxt ""
@@ -15062,7 +15094,7 @@ msgctxt ""
"par_id051620171114565484\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Тип"
#: 03040000.xhp
msgctxt ""
@@ -15070,7 +15102,7 @@ msgctxt ""
"par_id051620171114563271\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Значення"
#: 03040000.xhp
msgctxt ""
@@ -15078,7 +15110,7 @@ msgctxt ""
"hd_id051620171114566623\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Приклад"
#: 03040000.xhp
msgctxt ""
@@ -15086,7 +15118,7 @@ msgctxt ""
"hd_id051620171114573549\n"
"help.text"
msgid "Mathematical constant"
-msgstr ""
+msgstr "Математична стала"
#: 03040000.xhp
msgctxt ""
@@ -15094,7 +15126,7 @@ msgctxt ""
"par_id051620171114576150\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Назва"
#: 03040000.xhp
msgctxt ""
@@ -15102,7 +15134,7 @@ msgctxt ""
"par_id051620171114575122\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Тип"
#: 03040000.xhp
msgctxt ""
@@ -15110,7 +15142,7 @@ msgctxt ""
"par_id051620171114574987\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Значення"
#: 03040000.xhp
msgctxt ""
@@ -15118,7 +15150,7 @@ msgctxt ""
"hd_id051620171114571721\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Приклад"
#: 03040000.xhp
msgctxt ""
@@ -15126,7 +15158,7 @@ msgctxt ""
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
-msgstr ""
+msgstr "Об'єктні сталі"
#: 03040000.xhp
msgctxt ""
@@ -15134,7 +15166,7 @@ msgctxt ""
"par_id051620171114576921\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Назва"
#: 03040000.xhp
msgctxt ""
@@ -15142,7 +15174,7 @@ msgctxt ""
"par_id051620171114578188\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Тип"
#: 03040000.xhp
msgctxt ""
@@ -15150,7 +15182,7 @@ msgctxt ""
"par_id051720170824099845\n"
"help.text"
msgid "Usage"
-msgstr ""
+msgstr "Використання"
#: 03040000.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Ця функція часу виконання повертає контекст стандартної компоненти, який використовується при створенні примірників служб з допомогою XmultiServiceFactory. Додаткові відомості див. у розділі <item type=\"literal\">Професійна UNO</item> <item type=\"literal\">посібник розробника</item> за адресою <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link>."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/uk/helpcontent2/source/text/sdraw/guide.po b/source/uk/helpcontent2/source/text/sdraw/guide.po
index 8bed5613285..704bd5095d2 100644
--- a/source/uk/helpcontent2/source/text/sdraw/guide.po
+++ b/source/uk/helpcontent2/source/text/sdraw/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-13 09:15+0000\n"
-"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
+"PO-Revision-Date: 2017-06-07 11:26+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494666941.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496834764.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "Select a drawing object."
-msgstr "Виберіть намальований об'єкт."
+msgstr "Виберіть мальований об'єкт."
#: gradient.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys for Drawing Objects"
-msgstr "Сполучення клавіш для намальованих об'єктів"
+msgstr "Сполучення клавіш для мальованих об'єктів"
#: keyboard.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/00.po b/source/uk/helpcontent2/source/text/shared/00.po
index a5e0b40c914..faec6ec36bd 100644
--- a/source/uk/helpcontent2/source/text/shared/00.po
+++ b/source/uk/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-05-12 22:10+0000\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-12 08:07+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494627023.000000\n"
+"X-POOTLE-MTIME: 1497254865.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
-msgstr "<variable id=\"etikettenein\">Виберіть вкладку <emph>Файл - Створити - Етикетки - Етикетка</emph></variable>"
+msgstr "<variable id=\"etikettenein\">Виберіть вкладку <emph>Файл - Створити - Етикетки - Етикетки</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3154522\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Format</emph> tab"
-msgstr "Виберіть вкладку <emph>Файл - Створити - Візитні картки - Формат</emph>"
+msgstr "Виберіть вкладку <emph>Файл - Створити - Етикетки - Формат</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5294,7 +5294,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "Choose <emph>File - New - Labels - Options</emph> tab"
-msgstr "Виберіть вкладку <emph>Файл - Створити - Візитні картки - Параметри</emph>"
+msgstr "Виберіть вкладку <emph>Файл - Створити - Етикетки - Параметри</emph>"
#: 00000401.xhp
msgctxt ""
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/uk/helpcontent2/source/text/shared/01.po b/source/uk/helpcontent2/source/text/shared/01.po
index 560ae631503..34a7a188065 100644
--- a/source/uk/helpcontent2/source/text/shared/01.po
+++ b/source/uk/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-04-09 11:58+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
+"PO-Revision-Date: 2017-06-20 19:12+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1491739109.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497985942.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3153528\n"
"help.text"
msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates.</emph></ahelp>"
-msgstr "<ahelp hid=\".\">Якщо бажаєте створити документ з шаблону, то виберіть <emph>Новий - Шаблони.</emph></ahelp>"
+msgstr "<ahelp hid=\".\">Якщо ви бажаєте створити документ з шаблону, оберіть <emph>Створити - Шаблони</emph>.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3147009\n"
"help.text"
msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
-msgstr "Шаблон - це файл, в якому містяться елементи оформлення документа, у тому числі стилі форматування, фони, рамки, графічні об'єкти, файли, поля, розмітка сторінок і текст."
+msgstr "Шаблон являє собою файл, що містить елементи оформлення документа, включаючи стилі форматування, фони, вставки, графічні об'єкти, поля, розмітку сторінки та текст."
#: 01010000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3147242\n"
"help.text"
msgid "<emph>Icon</emph>"
-msgstr "<emph>Піктограма</emph>"
+msgstr "<emph>Значок</emph>"
#: 01010000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3149580\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr "<emph>Ім'я</emph>"
+msgstr "<emph>Назва</emph>"
#: 01010000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3145317\n"
"help.text"
msgid "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">піктограма</alt></image>"
+msgstr "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Піктограма</alt></image>"
#: 01010000.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3156153\n"
"help.text"
msgid "Creates a new text document ($[officename] Writer)."
-msgstr "Створення нового текстового документа ($[officename] Writer)."
+msgstr "Створює новий текстовий документ ($[officename] Writer)."
#: 01010000.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3145121\n"
"help.text"
msgid "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">піктограма</alt></image>"
+msgstr "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Піктограма</alt></image>"
#: 01010000.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_id3148552\n"
"help.text"
msgid "Spreadsheet"
-msgstr "Електронна таблиця"
+msgstr "Електронну таблицю"
#: 01010000.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_id3154280\n"
"help.text"
msgid "Creates a new spreadsheet document ($[officename] Calc)."
-msgstr "Створення нового документа електронної таблиці ($[officename] Calc)."
+msgstr "Створює новий документ електронної таблиці ($[officename] Calc)."
#: 01010000.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">піктограма</alt></image>"
+msgstr "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Піктограма</alt></image>"
#: 01010000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3153798\n"
"help.text"
msgid "Presentation"
-msgstr "Презентація"
+msgstr "Презентацію"
#: 01010000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3149167\n"
"help.text"
msgid "Creates a new drawing document ($[officename] Draw)."
-msgstr "Створення нового рисунку ($[officename] Draw)."
+msgstr "Створює новий документ для малювання ($[officename] Draw)."
#: 01010000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_idN108CB\n"
"help.text"
msgid "Database"
-msgstr "База даних"
+msgstr "Базу даних"
#: 01010000.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN108D0\n"
"help.text"
msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>."
-msgstr "Відкриття вікна <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Майстер баз даних</link> для створення<link href=\"text/shared/explorer/database/dabadoc.xhp\">файлу бази даних</link>."
+msgstr "Відчиняє вікно <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Помічника баз даних</link> для створення <link href=\"text/shared/explorer/database/dabadoc.xhp\">файлу бази даних</link>."
#: 01010000.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3152460\n"
"help.text"
msgid "Creates a new HTML document."
-msgstr "Створює новий документ HTML."
+msgstr "]Створює новий HTML документ."
#: 01010000.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_idN107F0\n"
"help.text"
msgid "XML Form Document"
-msgstr "Документ XML-форм"
+msgstr "Документ XML Form"
#: 01010000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_idN107F5\n"
"help.text"
msgid "Creates a new <link href=\"text/shared/guide/xforms.xhp\">XForms</link> document."
-msgstr "Створює новий документ <link href=\"text/shared/guide/xforms.xhp\">XForms</link>."
+msgstr "Створює новий <link href=\"text/shared/guide/xforms.xhp\">XForms</link> документ."
#: 01010000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3150961\n"
"help.text"
msgid "Creates a new <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
-msgstr "Створення нового <link href=\"text/shared/01/01010001.xhp\" name=\"Складений документ\">складеного документа</link>."
+msgstr "Створює новий <link href=\"text/shared/01/01010001.xhp\" name=\"складений документ\">складений документ</link>."
#: 01010000.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3155511\n"
"help.text"
msgid "Formula"
-msgstr "Формула"
+msgstr "Формулу"
#: 01010000.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3150872\n"
"help.text"
msgid "Creates a new formula document ($[officename] Math)."
-msgstr "Створення нової формули ($[officename] Math)."
+msgstr "Створює новий документ формули ($[officename] Math)."
#: 01010000.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id3149417\n"
"help.text"
msgid "Labels"
-msgstr "Мітки"
+msgstr "Етикетки"
#: 01010000.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3148388\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link> dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer)."
-msgstr "Відкриває діалогове вікно <link href=\"text/shared/01/01010200.xhp\" name=\"Етикетки\">Етикетки</link>, в якому можна задати параметри для етикеток, і створює новий текстовий документ для етикеток ($[officename] Writer)."
+msgstr "Відчиняє діалогове вікно <link href=\"text/shared/01/01010200.xhp\" name=\"Етикетки\">Етикетки</link>, у якому ви можете визначити параметри ваших етикеток, та створити новий текстовий документ ($[officename] Writer) для етикеток."
#: 01010000.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3150968\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link> dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer)."
-msgstr "Відкриває діалогове вікно <link href=\"text/shared/01/01010300.xhp\" name=\"Візитні картки\">Візитні картки</link>, в якому можна задати параметри для візитних карток, і створює новий текстовий документ ($[officename] Writer)."
+msgstr "Відчиняє діалогове вікно <link href=\"text/shared/01/01010300.xhp\" name=\"Візитні картки\">Візитні картки</link>, у якому ви можете визначити параметри ваших візитних карток, та створити новий текстовий документ ($[officename] Writer)."
#: 01010000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "Creates a new document using an existing template."
-msgstr "Створює новий документ на основі наявного взірця."
+msgstr "Створює новий документ на основі наявного шаблона."
#: 01010000.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN10A43\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Database Wizard to create a database file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відкриття вікна \"Майстр баз даних\" для створення файлу бази даних.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відчиняє Помічник баз даних для створення файлу бази даних.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_idN10A5A\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new HTML document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Виберіть формат файлу.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створює новий HTML документ.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN10A71\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new XForms document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Виберіть формат файлу.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створює новий XForms документ.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN10A88\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new master document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Виберіть формат файлу.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створює новий складений документ.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN10A9F\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new formula document ($[officename] Math).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створення нового документа формули ($[officename] Math).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створює новий документ формули ($[officename] Math).</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_idN10AB6\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Labels dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відкриває діалогове вікно Візитні картки, в якому можна задати параметри для візитних карток, і створює новий текстовий документ ($[officename] Writer).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відчиняє діалогове вікно Етикетки, у якому ви можете визначити параметри ваших етикеток, та створити новий текстовий документ ($[officename] Writer) для етикеток.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN10ACD\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Business Cards dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відкриває діалогове вікно Візитні картки, в якому можна задати параметри для візитних карток, і створює новий текстовий документ ($[officename] Writer).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відчиняє діалогове вікно Візитні картки, у якому ви можете визначити параметри ваших візитних карток, та створити новий текстовий документ ($[officename] Writer).</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_idN10AE4\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new document using an existing template or opens a sample document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створення нового документа з використанням існуючого шаблону або відкриття зразка документа.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Створює новий документ використовуючи наявний шаблон або відчиняє зразок документа.</ahelp>"
#: 01010001.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3154682\n"
"help.text"
msgid "Use a <emph>Master Document</emph> to organize complex projects, such as a book. <ahelp hid=\".\">A <emph>Master Document</emph> can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
-msgstr "<emph>Складений документ</emph> служить для організації складних проектів, наприклад, книг.<ahelp hid=\".\"> <emph>Складений документ</emph> може містити окремі файли для кожної глави книги, а також зміст і індекс.</ahelp>"
+msgstr "Використовуйте <emph>Складений документ</emph> для організації складних проектів, таких як книги. <ahelp hid=\".\"><emph>Складений документ</emph> може містити окремі файли для кожного розділу книги, а також зміст та покажчик.</ahelp>"
#: 01010001.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Labels"
-msgstr "Мітки"
+msgstr "Етикетки"
#: 01010200.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">Allows you to create labels. Labels are created in a text document.</ahelp> You can print labels using a pre-defined or a custom paper format. </variable>"
-msgstr "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">Надається можливість створення наклейок. Наклейки створюються в текстовому документі.</ahelp> Наклейки можна друкувати з використанням заздалегідь визначеного або користувача формату паперу. </variable>"
+msgstr "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">Дає вам змогу створювати етикетки. Етикетки створюються у текстовому документі.</ahelp> Ви можете друкувати етикетки використовуючи заздалегідь визначений або нестандартний формат паперу.</variable>"
#: 01010200.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3145314\n"
"help.text"
msgid "You can also print a single label or an entire sheet of labels."
-msgstr "Також є можливість друку однієї етикетки або цілого аркуша етикеток."
+msgstr "Ви також можете роздрукувати одну етикетку або увесь аркуш етикеток."
#: 01010200.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3154810\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">Creates a new document for editing.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">Використовується для створення нового документа, який можна змінити.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">Створює новий документ для редагування.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Labels"
-msgstr "Мітки"
+msgstr "Етикетки"
#: 01010201.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3152952\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/CardMediumPage\">Specify the label text and choose the paper size for the label.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/CardMediumPage\">Тут можна ввести текст етикетки і вказати формат паперу для етикетки.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/CardMediumPage\">Тут можна ввести текст етикетки та вказати формат паперу для етикетки.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3154350\n"
"help.text"
msgid "Enter or insert the text that you want to appear on the label(s)."
-msgstr "Введіть текст, який повинен бути присутнім на етикетках."
+msgstr "Введіть або вставте текст, який повинен бути присутнім на етикетках."
#: 01010201.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"hd_id3147294\n"
"help.text"
msgid "Label text"
-msgstr "Текст позначки"
+msgstr "Текст етикетки"
#: 01010201.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3150838\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/textview\">Enter the text that you want to appear on the label. You can also insert a database field.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/textview\">Введіть текст для конкретної етикетки. Також можна вставити поле бази даних.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/textview\">Введіть текст, який ви хочете, мати на етикетці. Крім того, ви можете вставити поле бази даних.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id3153089\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">Створення етикеток зі зворотною адресою. При установці цього прапорця введений текст замінює текст, наявний у полі <emph>Текст етикетки</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">Створює етикетку зі зворотною адресою. Текст, що наразі знаходиться у полі <emph>Текст етикетки</emph>, буде перезаписано.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "To change your return address, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, and then click on the <emph>User Data</emph> tab."
-msgstr "Щоб змінити свою зворотну адресу, необхідно вибрати пункт <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – Налаштування</emph></caseinline><defaultinline><emph>Засоби – Параметри</emph></defaultinline></switchinline><emph> – </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, а потім виберіть вкладку <emph>Дані</emph>."
+msgstr "Щоб змінити вашу зворотну адресу, оберіть <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – Налаштування</emph></caseinline><defaultinline><emph>Засоби – Параметри</emph></defaultinline></switchinline><emph> – </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, а потім натисніть на вкладку <emph>Дані користувача</emph>."
#: 01010201.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id3148620\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/database\">Select the database that you want to use as the data source for your label. </ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/database\">Виберіть базу даних, яка буде служити в якості джерела даних для етикетки. </ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/database\">Оберіть базу даних, котру ви бажаєте використовувати у якості джерела даних для вашої етикетки.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3149827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/table\">Select the database table containing the field(s) that you want to use in your label.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/table\">Виберіть таблицю бази даних, яка містить поля, які будуть використовуватися в етикетці.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/table\">Оберіть таблицю бази даних, яка містять поля, котрі ви хочете використати у вашій етикетці.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/insert\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/insert\">Виберіть потрібне поле бази даних і клацніть стрілку, яка знаходиться зліва від нього, щоб ввести текст з цього поля в полі <emph>Текст етикетки</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/insert\">Оберіть потрібне вам поле бази даних та натисніть стрілку, яка знаходиться зліва від цього поля, щоб вставити його в поле <emph>Текст етикетки</emph>.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3152780\n"
"help.text"
msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
-msgstr "Ім'я поля бази даних з'явиться в дужках у полі <emph>Текст етикетки</emph>. При необхідності текст окремих полів бази даних можна розділити пробілами. Для створення нового рядка натисніть клавішу ENTER."
+msgstr "Назва поля бази даних з'явиться в дужках у полі <emph>Текст етикетки</emph>. При необхідності ви можете розділити поля бази даних пробілами. Щоб вставити поле бази даних на новому рядку натисніть Enter."
#: 01010201.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3149762\n"
"help.text"
msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab.."
-msgstr "Для етикетки можна вибрати формат паперу заздалегідь визначеного розміру або заданий на вкладці <emph>Формат</emph>."
+msgstr "Ви можете обрати попередньо визначений формат розміру для вашої етикетки або формат, визначений вами на вкладці <emph>Формат</emph>."
#: 01010201.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3151339\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/continuous\">Prints labels on continuous paper.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/continuous\">Друк етикеток на суцільному папері.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/continuous\">Друк етикеток на рулонному папері.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3150466\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">Виберіть марку паперу, яка буде використовуватися.</ahelp> У кожної марки існують власні формати певних розмірів."
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/brand\">Оберіть марку паперу, яку ви бажаєте використати.</ahelp> Кожен бренд має свої власні формати певних розмірів."
#: 01010201.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"par_id3149235\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Виберіть формат, який буде використовуватися. Доступні формати залежать від марки, вибраній у списку <emph>Марка</emph>. Якщо повинен використовуватися особливий формат етикетки, виберіть <emph>[User]</emph> і відкрийте вкладку <link href=\"text/shared/01/01010202.xhp\" name=\"Формат\"><emph>Формат</emph></link>, щоб визначити формат.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Оберіть формат розміру, який ви бажаєте використати. Доступні формати залежать від марки, котру ви обрали у списку <emph>Марка</emph>. Якщо ви хочете використати особливий формат етикетки, оберіть <emph>[Користувач]</emph>, а потім натисніть вкладку <link href=\"text/shared/01/01010202.xhp\" name=\"Формат\"><emph>Формат</emph></link>, щоб визначити формат.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "The paper type and the dimensions of the label are displayed at the bottom of the <emph>Format</emph> area."
-msgstr "Тип паперу і розміри етикетки відображаються в нижній частині області <emph>Формат</emph>."
+msgstr "Тип паперу та розміри етикетки виводяться у нижній частині області <emph>Формат</emph>."
#: 01010202.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/LabelFormatPage\">Set paper formatting options.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/LabelFormatPage\">Встановіть параметри форматування.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/LabelFormatPage\">Встановіть параметри форматування паперу.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3159194\n"
"help.text"
msgid "Horizontal pitch"
-msgstr "Крок по горизонталі"
+msgstr "Горизонтальний крок"
#: 01010202.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3154186\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/hori\">Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/hori\">Відображається відстань між лівим краєм етикетки і лівим краєм сусідньої етикетки (або візитної картки). Якщо визначається особливий формат, то тут слід ввести значення.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/hori\">Показує відстань між лівими краями сусідніх етикеток або візитних карток. Якщо ви визначаєте власний формат, введіть тут значення.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "Vertical pitch"
-msgstr "Крок по вертикалі"
+msgstr "Вертикальний крок"
#: 01010202.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Відображається відстань між верхньою межею однієї етикетки і верхньою межею етикетки (або візитної картки) знизу. Якщо визначається особливий формат, то тут слід ввести значення.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Показує відстань між верхнім краєм етикетки або візитної картки та верхнім краєм етикетки або візитної картки розташованої під нею. Якщо ви визначаєте власний формат, введіть тут значення.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/width\">Displays the width for the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/width\">Відображається ширина етикетки або візитної картки. Якщо визначається особливий формат, то тут слід ввести значення.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/width\">Показує ширину етикетки або візитної картки. Якщо ви визначаєте власний формат, введіть тут значення.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3149827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/height\">Displays the height for the label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/height\">Відображається висота етикетки або візитної картки. Якщо визначається особливий формат, то тут слід ввести значення.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/height\">Показує висоту етикетки або візитної картки. Якщо ви визначаєте власний формат, введіть тут значення.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3149182\n"
"help.text"
msgid "Left margin"
-msgstr "Ліве поле"
+msgstr "Лівий край"
#: 01010202.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/left\">Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/left\">Відображається відстань між лівою межею сторінки і лівої кордоном першої етикетки або візитної картки. Якщо визначається особливий формат, то тут слід ввести значення.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/left\">Показує відстань від лівого краю сторінки до лівого краю першої етикетки або візитної картки. Якщо ви визначаєте власний формат, введіть тут значення.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3156346\n"
"help.text"
msgid "Upper margin"
-msgstr "Верхнє поле"
+msgstr "Верхній край"
#: 01010202.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/top\">Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/top\">Відображається відстань від верхнього краю сторінки до верхнього краю першої етикетки або візитної картки. Якщо визначається особливий формат, то тут слід ввести значення.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/top\">Показує відстань від верхнього краю сторінки до верхнього краю першої етикетки або візитної картки. Якщо ви визначаєте власний формат, введіть тут значення.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3147573\n"
"help.text"
msgid "Columns"
-msgstr "Стовпці"
+msgstr "Стовпчиків"
#: 01010202.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3153252\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/cols\">Enter the number of labels or business cards that you want to span the width of the page.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/cols\">Введіть число етикеток або візитних карток, розташованих поруч одна з одною на цій сторінці.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/cols\">Введіть кількість етикеток або візитних карток, яку ви бажаєте розташувати у ширину сторінки.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"hd_id3154143\n"
"help.text"
msgid "Rows"
-msgstr "Рядки"
+msgstr "Рядків"
#: 01010202.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3145119\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\">Введіть число етикеток або візитних карток, розташованих на сторінці зверху вниз.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\">Введіть кількість етикеток або візитних карток, яку ви бажаєте розташувати у висоту сторінки.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/save\">Saves the current label or business card format.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/save\">Збереження поточного формату етикеток або візитних карток.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/save\">Зберігає поточний формат етикетки або візитної картки.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3146773\n"
"help.text"
msgid "Save Label Format"
-msgstr "Зберегти формат позначки"
+msgstr "Зберегти формат етикетки"
#: 01010202.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3155421\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/savelabeldialog/brand\">Enter or select the desired brand.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/savelabeldialog/brand\">Введіть або виберіть потрібну марку.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/savelabeldialog/brand\">Введіть або оберіть бажану марку.</ahelp>"
#: 01010202.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id3154497\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/LabelOptionsPage\" visibility=\"visible\">Sets additional options for your labels or business cards, including text synchronization and printer settings.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/LabelOptionsPage\" visibility=\"visible\">Задання додаткових параметрів для етикеток або візитних карток, включаючи синхронізацію тексту і параметри принтера.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/LabelOptionsPage\" visibility=\"visible\">Встановлення додаткових параметрів для етикеток або візитних карток, включаючи синхронізацію тексту та налаштування принтера.</ahelp>"
#: 01010203.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"hd_id3150713\n"
"help.text"
msgid "Entire Page"
-msgstr "На всю сторінку"
+msgstr "Уся сторінка"
#: 01010203.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3155355\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Етикетки або візитні картки друкуються на всій сторінці.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Створює повну сторінку етикеток або візитних карток.</ahelp>"
#: 01010203.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"hd_id3146958\n"
"help.text"
msgid "Single Label"
-msgstr "Окрема позначка"
+msgstr "Одна на сторінку"
#: 01010203.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3155342\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/synchronize\">Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the <emph>Synchronize Labels </emph>button.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/synchronize\"> Дозволяє редагування однієї етикетки або візитної картки, а потім оновлення змісту інших наклейок або візитних карток на сторінці, при натисканні кнопки <emph>Синхронізація етикетки</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/synchronize\">Дозволяє вам відредагувати одну етикетку або візитну картку, а потім оновити вміст інших етикеток або візитних карток на сторінці, натиснувши кнопку <emph>Синхронізувати позначки</emph>.</ahelp>"
#: 01010203.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"hd_id3149164\n"
"help.text"
msgid "Synchronize Labels"
-msgstr "Синхронізувати етикетки"
+msgstr "Синхронізувати позначки"
#: 01010203.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3148474\n"
"help.text"
msgid "The <emph>Synchronize labels </emph>button only appears in your document if you selected the <emph>Synchronize contents </emph>on the<emph> Options tab </emph>when you created the labels or business cards."
-msgstr "Кнопка <emph>Синхронізувати етикетки</emph> відображається в документі, лише якщо під час створення етикеток або візитних карток вибрано параметр <emph>Синхронізувати вміст </emph>на вкладці<emph> Параметри</emph>."
+msgstr "Кнопка <emph>Синхронізувати позначки</emph> з'являється у вашому документі, лише якщо під час створення етикеток або візитних карток ви обрали <emph>Синхронізувати вміст</emph> на вкладці <emph>Параметри</emph>."
#: 01010203.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_id3148990\n"
"help.text"
msgid "Displays the name of the currently selected printer."
-msgstr "Відображення назва поточного принтера."
+msgstr "Показує назву обраного наразі принтера."
#: 01010203.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "Setup"
-msgstr "Установка"
+msgstr "Налаштувати"
#: 01010203.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3144438\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Відкриває вікно<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Установки принтера</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Відчиняє вікно <link href=\"text/shared/01/01140000.xhp\" name=\"Параметри принтера\">Параметри принтера</link>.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3149987\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertBusinessCard\">Design and create your own business cards.</ahelp> You can choose from a number of pre-defined size formats or create your own."
-msgstr "<ahelp hid=\".uno:InsertBusinessCard\">Розробіть і створіть власні візитні картки.</ahelp> Можна вибрати формати визначених розмірів або створити власні."
+msgstr "<ahelp hid=\".uno:InsertBusinessCard\">Розробіть та створіть власні візитні картки.</ahelp> Ви можете обрати один з визначених форматів розміру або створити свій власний."
#: 01010301.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Medium"
-msgstr "Середній"
+msgstr "Носій"
#: 01010301.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"hd_id3148765\n"
"help.text"
msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
-msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Середній\">Середній</link>"
+msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Носій\">Носій</link>"
#: 01010301.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3150278\n"
"help.text"
msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>"
-msgstr "<ahelp hid=\".\">Виберіть розмір візитної картки з числа форматів визначених розмірів або формат, зазначений на вкладці <emph>Формат</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Оберіть розмір вашої візитної картки з переліку заздалегідь визначених форматів розміру, або формат, визначений вами на вкладці <emph>Формат</emph>.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id3147543\n"
"help.text"
msgid "Select a size format for your business card."
-msgstr "Виберіть формат певного розміру для бізнес-картки."
+msgstr "Оберіть формат розміру для вашої візитної картки."
#: 01010301.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3150279\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">Prints business cards on continuous paper.</ahelp>"
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\" visibility=\"visible\">Друк візитних карток на суцільному папері.</ahelp>"
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\" visibility=\"visible\">Друк візитних карток на рулонному папері.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3155351\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\" visibility=\"visible\">Виберіть марку паперу, яка буде використовуватися.</ahelp> Кожна марка має власні формати певних розмірів."
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\" visibility=\"visible\">Оберіть марку паперу, яку ви бажаєте використати.</ahelp> Кожен бренд має свої власні формати певних розмірів."
#: 01010301.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Виберіть використовуваний формат. Доступні формати визначаються значенням, вибраним зі списку <emph>Марка</emph>. Якщо буде використовуватися особливий формат, виберіть <emph>[User]</emph> і відкрийте вкладку <link href=\"text/shared/01/01010202.xhp\" name=\"Формат\"><emph>Формат</emph></link>, щоб визначити формат.</ahelp>"
+msgstr "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Оберіть формат розміру, який ви бажаєте використати. Доступні формати залежать від того, що ви обрали у списку <emph>Марка</emph>. Якщо ви хочете використати особливий формат, оберіть <emph>[Користувач]</emph>, а потім натисніть вкладку <link href=\"text/shared/01/01010202.xhp\" name=\"Формат\"><emph>Формат</emph></link>, щоб визначити формат.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area."
-msgstr "Тип паперу і розміри візитної картки відображаються в нижній частині області <emph>Формат</emph>."
+msgstr "Тип паперу та розміри візитної картки виводяться у нижній частині області <emph>Формат</emph>."
#: 01010302.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id3147527\n"
"help.text"
msgid "Select a design layout for your business card."
-msgstr "Виберіть розмітку для візитної картки."
+msgstr "Оберіть дизайн шаблону для вашої візитної картки."
#: 01010302.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id3158442\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/treeview\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/treeview\">У полі <emph>Автотекст - Розділ</emph> виберіть категорію візитки, а потім у списку <emph>Вміст</emph> вказати розташування.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/treeview\">Оберіть категорію візитної картки у полі <emph>Автотекст - Розділ</emph>, а потім клацніть шаблон у списку <emph>Зміст</emph>.</ahelp>"
#: 01010302.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"hd_id3148668\n"
"help.text"
msgid "AutoText - Section"
-msgstr "Автотекст - розділ"
+msgstr "Автотекст - Розділ"
#: 01010302.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/autotext\">Select a business card category, and then click a layout in the <emph>Content </emph>list.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/autotext\">Виберіть категорію візитки, а потім у списку <emph>Вміст</emph> виберіть розмітку.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/autotext\">Оберіть категорію візитної картки, а потім у списку <emph>Зміст</emph> оберіть шаблон.</ahelp>"
#: 01010303.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Private"
-msgstr "Особистий"
+msgstr "Особисте"
#: 01010303.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3149031\n"
"help.text"
msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
-msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Особисті\"> Особисті</link>"
+msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Особисте\">Особисте</link>"
#: 01010303.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\".\">Містить персональну контактну інформацію для візитних карток. Формати візитних карток вибираються на вкладці <emph>Візитні картки</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Містить особисту контактну інформацію для візитних карток. Шаблони візитних карток обираються на вкладці <emph>Візитні картки</emph>.</ahelp>"
#: 01010303.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>."
-msgstr "Введення контактної інформації, які будуть розміщені на картці. Ви також можете змінити або оновити записи. Для цього слід вибрати команду <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – Налаштування</emph></caseinline><defaultinline><emph>Засоби – Параметри</emph></defaultinline></switchinline><emph> – $[officename] – Дані користувача</emph>."
+msgstr "Введіть контактну інформацію, котру ви хочете розмістити на вашій візитній картці. Ви також можете змінити або оновити ці записи, обравши <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – Налаштування</emph></caseinline><defaultinline><emph>Засоби – Параметри</emph></defaultinline></switchinline><emph> – $[officename] – Дані користувача</emph>."
#: 01010303.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3150085\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/country\">Enter the name of the country in which you live.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/country\" visibility=\"visible\">Введіть назву країни, в якій проживаєте.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/country\" visibility=\"visible\">Введіть назву країни, в якій ви живете.</ahelp>"
#: 01010303.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3156192\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/privateuserpage/job\">Enter the title of your profession.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/job\" visibility=\"visible\">Введіть свою професію.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/privateuserpage/job\" visibility=\"visible\">Введіть назву вашої професії.</ahelp>"
#: 01010303.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Business"
-msgstr "Ділове"
+msgstr "Службове"
#: 01010304.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id3152942\n"
"help.text"
msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
-msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Ділові\">Ділові</link>"
+msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Службове\">Службове</link>"
#: 01010304.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_id3151097\n"
"help.text"
msgid "<ahelp hid=\".\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
-msgstr "<ahelp hid=\".\">Містить ділові контактні дані, розміщені на візитних картках та в макеті з категорії \"Візитна Картка, робота'. Макет візитки можна вибрати на вкладці <emph>Візитні картки</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Містить контактну інформацію для візитних карток, котрі використовують шаблон з категорії 'Візитні картки, Робота'. Шаблони візитних карток обираються на вкладці <emph>Візитні картки</emph>.</ahelp>"
#: 01010304.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3156027\n"
"help.text"
msgid "Enter the contact information that you want to include on your business card."
-msgstr "Введіть дані, які будуть включені у візитну картку."
+msgstr "Введіть контактну інформацію, котру ви хочете розмістити на вашій візитній картці."
#: 01010304.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "If you want to include your name on a business card, enter your name on the <emph>Private </emph>tab. Then choose a layout on the <emph>Business Cards </emph>tab that includes a name placeholder."
-msgstr "Якщо потрібно включити своє ім'я, то введіть його на вкладці <emph>Особисті</emph>. Виберіть розмітку на вкладці <emph>Візитні картки</emph>, яка містить ім'я."
+msgstr "Якщо ви бажаєте додати своє ім'я на візитну картку, введіть його на вкладці <emph>Особисте</emph>. Потім на вкладці <emph>Візитні картки</emph> оберіть шаблон, що містить заповнювач імені."
#: 01010304.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3150355\n"
"help.text"
msgid "Company 2nd line"
-msgstr "Організація 2-ий рядок"
+msgstr "Компанія 2-ий рядок"
#: 01010304.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/businessdatapage/company2\">Enter additional company details.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/company2\">Введіть додаткові відомості про організацію.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/company2\">Введіть додаткові відомості про компанію.</ahelp>"
#: 01010304.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id3156327\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/businessdatapage/slogan\">Enter the slogan of your company.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/slogan\">Введіть гасло своєї організації.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/slogan\">Введіть гасло вашої компанії.</ahelp>"
#: 01010304.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/businessdatapage/state\">Enter the name of the country where your business is located.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/state\">Введіть назву країни, в якій здійснюється діяльність організації.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/state\">Введіть назву країни, де розташована ваша компанія.</ahelp>"
#: 01010304.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3154046\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/businessdatapage/phone\">Enter your business telephone number.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/phone\">Введіть номер свого робочого телефону.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/phone\">Введіть номер вашого службового телефону.</ahelp>"
#: 01010304.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"hd_id3154306\n"
"help.text"
msgid "Homepage"
-msgstr "Домашня сторінка"
+msgstr "Сайт"
#: 01010304.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/businessdatapage/url\">Enter the address of your company's internet homepage.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/url\">Введіть адресу домашньої сторінки в Інтернеті.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/url\">Введіть адресу домашньої сторінки вашої компанії в інтернеті.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"bm_id3145211\n"
"help.text"
msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
-msgstr "<bookmark_value>каталоги; створення нових</bookmark_value> <bookmark_value>створення теки</bookmark_value> <bookmark_value>тека Мої документи; відкриття</bookmark_value> <bookmark_value>множинний вибір; відкриття</bookmark_value> <bookmark_value>відкриття; кілька файлів</bookmark_value> <bookmark_value>вибір; кілька файлів</bookmark_value> <bookmark_value>відкриття; файли, з покажчиками місця заповнення</bookmark_value> <bookmark_value>заповнювачів;при відкритті файлів</bookmark_value> <bookmark_value> \"документи\"; відкриття за допомогою шаблонів</bookmark_value> <bookmark_value>шаблони; відкриття документів з допомогою</bookmark_value> <bookmark_value>документи; стилі змінені</bookmark_value> <bookmark_value>стилі; повідомлення \"змінені\"</bookmark_value>"
+msgstr "<bookmark_value>каталоги; створення нових</bookmark_value> <bookmark_value>створення теки</bookmark_value> <bookmark_value>тека Мої документи; відкриття</bookmark_value> <bookmark_value>множинний вибір; відкриття</bookmark_value> <bookmark_value>відкриття; кілька файлів</bookmark_value> <bookmark_value>вибір; кілька файлів</bookmark_value> <bookmark_value>відкриття; файли, з заповнювачами</bookmark_value> <bookmark_value>заповнювачі;при відкритті файлів</bookmark_value> <bookmark_value>документи; відкриття за допомогою шаблонів</bookmark_value> <bookmark_value>шаблони; відкриття документів з допомогою</bookmark_value> <bookmark_value>документи; змінені стилі</bookmark_value> <bookmark_value>стилі; повідомлення 'змінено'</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id3151191\n"
"help.text"
msgid "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opens, opens a remote file or imports a file.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Відкриває, відкриває віддалений файл або імпортує файл.</ahelp> </variable>"
#: 01020000.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3149877\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Наступні розділи описують діалогове вікно <item type=\"productname\">%PRODUCTNAME</item> <emph>Відкрити</emph>. Щоб активувати діалогові вікна <item type=\"productname\">%PRODUCTNAME</item> <emph>Відкрити</emph> та <emph>Зберегти</emph>, оберіть <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Параметри</emph></caseinline><defaultinline><emph>Засоби - Параметри</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Загальне\"><emph>%PRODUCTNAME - Загальне</emph></link>, а потім у секції <emph>Діалоги відкриття/збереження</emph> оберіть <emph>Використовувати діалоги %PRODUCTNAME</emph>."
#: 01020000.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id3150713\n"
"help.text"
msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
-msgstr ""
+msgstr "Якщо файл, який ви хочете відкрити, містить стилі, застосовуються <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"особливі правила\">особливі правила</link>."
#: 01020000.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"hd_id3147250\n"
"help.text"
msgid "Up One Level"
-msgstr ""
+msgstr "На рівень вгору"
#: 01020000.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Перехід на один рівень вгору в ієрархії тек. Щоб побачити теки вищих рівнів, утримайте кнопку миші натиснутою довше.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"hd_id3145211\n"
"help.text"
msgid "Create New Folder"
-msgstr ""
+msgstr "Створити нову теку"
#: 01020000.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Створює нову теку.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Display area"
-msgstr ""
+msgstr "Область показу"
#: 01020000.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEDLG_STANDARD\">Показує файли та теки, наявні у теці, де ви наразі перебуваєте.</ahelp> Щоб відкрити файл, оберіть його, а потім натисніть кнопку <emph>Відкрити</emph>."
#: 01020000.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"par_id3159256\n"
"help.text"
msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "Щоб одночасно відкрити більше одного документа, кожен у власному вікні, тримайте натиснутою клавішу <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> під час натискання на файли, а потім натисніть кнопку <emph>Відкрити</emph>."
#: 01020000.xhp
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "Click a column header to sort the files. Click again to reverse the sort order."
-msgstr ""
+msgstr "Клацніть заголовок стовпця, щоб виконати сортування файлів. Натисніть ще раз, щоб змінити порядок сортування."
#: 01020000.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_id3149514\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">Щоб видалити файл, клацніть його правою кнопкою миші та виберіть команду <emph>Видалити</emph>.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">Щоб перейменувати файл, клацніть його правою кнопкою миші та виберіть команду <emph>Перейменувати</emph>.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id3153331\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Натисніть, щоб видалити файл з ім'ям, зазначеним у цьому діалоговому вікні.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"par_id3161458\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Натисніть, щоб скасувати видалення файлу з ім'ям, зазначеним у цьому діалоговому вікні.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Натисніть, щоб видалити всі виділені файли.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"hd_id3154280\n"
"help.text"
msgid "File name"
-msgstr ""
+msgstr "Назва файлу"
#: 01020000.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Введіть назву файлу або шлях до нього. Ви також можете ввести <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL-адресу</link>, починаючи з назви протоколу: ftp, http або https.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
-msgstr ""
+msgstr "За бажання, ви можете скористатися шаблонами заміни у полі <emph>Назва файлу</emph>, щоб відфільтрувати наявний перелік файлів."
#: 01020000.xhp
msgctxt ""
@@ -4805,7 +4805,7 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
msgstr ""
#: 01160300.xhp
@@ -24998,7 +24998,7 @@ msgctxt ""
"bm_id3149988\n"
"help.text"
msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
-msgstr "<bookmark_value>нахиляня намальованих об'єктів</bookmark_value><bookmark_value>намальовані об'єкти; нахиляння</bookmark_value><bookmark_value>області; нахиляння</bookmark_value>"
+msgstr "<bookmark_value>нахиляння мальованих об'єктів</bookmark_value><bookmark_value>мальовані об'єкти; нахиляння</bookmark_value><bookmark_value>області; нахиляння</bookmark_value>"
#: 05230400.xhp
msgctxt ""
@@ -40469,7 +40469,7 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
#: ref_pdf_export.xhp
diff --git a/source/uk/helpcontent2/source/text/shared/autopi.po b/source/uk/helpcontent2/source/text/shared/autopi.po
index 82cb5d51dff..58b257ddecf 100644
--- a/source/uk/helpcontent2/source/text/shared/autopi.po
+++ b/source/uk/helpcontent2/source/text/shared/autopi.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-04-12 18:46+0000\n"
-"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
+"PO-Revision-Date: 2017-06-12 07:33+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492022788.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497252792.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/chgDefaultRadiobutton\">The slide transition depends on the timing that you set for each slide in the presentation. If you set a manual page transition, the HTML presentation introduces a new page by pressing any key from your keyboard.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/chgDefaultRadiobutton\">Спосіб зміни слайдів залежить від часу, заданого для кожного слайду презентації. Якщо задана зміна сторінок вручну, то нова сторінка презентації HTML викликається натисканням будь-якої клавіші на клавіатурі.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/chgDefaultRadiobutton\">Спосіб зміни слайдів залежить від часу, заданого для кожного слайда презентації. Якщо задана зміна сторінок вручну, то нова сторінка презентації HTML викликається натисканням будь-якої клавіші на клавіатурі.</ahelp>"
#: 01110200.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/explorer/database.po b/source/uk/helpcontent2/source/text/shared/explorer/database.po
index 145269d8f02..f92e3612b5d 100644
--- a/source/uk/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/uk/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-30 09:54+0200\n"
-"PO-Revision-Date: 2017-06-06 11:54+0000\n"
+"PO-Revision-Date: 2017-06-08 11:41+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496750050.000000\n"
+"X-POOTLE-MTIME: 1496922108.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -9422,7 +9422,7 @@ msgctxt ""
"par_idN10603\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the default e-mail application to send a new e-mail. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export.</ahelp>"
-msgstr "<ahelp hid=\".\">Відкрити діалогове вікно типового поштового клієнта. Вибраний звіт прикріплюється як вкладення. Ви зможете ввести тему, адресата і текст листа. Динамічний звіт експортується з даними, наявними у базі на момент експорту.</ahelp>"
+msgstr "<ahelp hid=\".\">Відкриває програму електронної пошти за замовчуванням для надсилання нового повідомлення електронної пошти. Обраний звіт прикріплюється як вкладення. Ви можете ввести тему, адресатів та текст листа. Динамічний звіт експортується як копія вмісту бази даних на момент експорту.</ahelp>"
#: menufile.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/guide.po b/source/uk/helpcontent2/source/text/shared/guide.po
index 845906e07c1..a81def15c01 100644
--- a/source/uk/helpcontent2/source/text/shared/guide.po
+++ b/source/uk/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-12 22:19+0000\n"
+"PO-Revision-Date: 2017-06-12 08:07+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494627552.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497254878.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -11550,7 +11550,7 @@ msgctxt ""
"par_id3153880\n"
"help.text"
msgid "Choose <link href=\"text/shared/01/01010200.xhp\" name=\"File - New - Labels\"><emph>File - New - Labels</emph></link> to open the <emph>Labels</emph> dialog."
-msgstr ""
+msgstr "Вибір команди <link href=\"text/shared/01/01010200.xhp\" name=\"Файл - Створити - Етикетки\"><emph>Файл - Створити - Етикетки</emph></link> відчинить діалогове вікно <emph>Етикетки</emph>."
#: labels.xhp
msgctxt ""
@@ -11662,7 +11662,7 @@ msgctxt ""
"par_id3153824\n"
"help.text"
msgid "Choose <emph>File - New - Labels</emph> to open the <emph>Labels</emph> dialog."
-msgstr ""
+msgstr "Оберіть <emph>Файл - Створити - Етикетки</emph>, щоб відчинити діалогове вікно <emph>Етикетки</emph>."
#: labels_database.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/shared/optionen.po b/source/uk/helpcontent2/source/text/shared/optionen.po
index bf49aab9a1b..4d767fb19da 100644
--- a/source/uk/helpcontent2/source/text/shared/optionen.po
+++ b/source/uk/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2017-04-12 17:49+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/uk/helpcontent2/source/text/simpress.po b/source/uk/helpcontent2/source/text/simpress.po
index 5518dfa0442..28db7ce6d70 100644
--- a/source/uk/helpcontent2/source/text/simpress.po
+++ b/source/uk/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-26 13:19+0000\n"
+"PO-Revision-Date: 2017-06-12 07:12+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1490534382.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497251535.000000\n"
#: main0000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id102720150112257941\n"
"help.text"
msgid "Toggle the visibility of a slide master's background to be used as the background of the current slide."
-msgstr "Перемикає видимість тла слайда взірця, яке використовується як фон поточного слайда."
+msgstr "Перемикає видимість тла слайда зразка, яке використовується як фон поточного слайда."
#: main0103.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"hd_id102720151246521837\n"
"help.text"
msgid "Master Objects"
-msgstr "Об'єкти - взірці"
+msgstr "Об'єкти зразка"
#: main0103.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id102720150112256473\n"
"help.text"
msgid "Toggle the visibility of a slide master's objects to appear on the current slide."
-msgstr "Перемикає видимість об'єктів слайда-взірця, які з'являються на поточному слайді."
+msgstr "Перемикає видимість об'єктів зразка слайда, які з'являються на поточному слайді."
#: main0103.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/simpress/00.po b/source/uk/helpcontent2/source/text/simpress/00.po
index 3e14f1402b8..028e968ac3a 100644
--- a/source/uk/helpcontent2/source/text/simpress/00.po
+++ b/source/uk/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-03-09 14:01+0000\n"
+"PO-Revision-Date: 2017-06-07 12:57+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489068094.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496840223.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Slide Master Design</emph></variable>"
-msgstr "<variable id=\"seitenvorlage\">Виберіть команду <emph>Слайд - Помічник майстра слайдів</emph></variable>"
+msgstr "<variable id=\"seitenvorlage\">Виберіть команду <emph>Слайд - Вибір зразка слайдів</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/simpress/01.po b/source/uk/helpcontent2/source/text/simpress/01.po
index ece89e05a65..edcca04e0f7 100644
--- a/source/uk/helpcontent2/source/text/simpress/01.po
+++ b/source/uk/helpcontent2/source/text/simpress/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2017-05-14 07:56+0000\n"
-"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
+"PO-Revision-Date: 2017-06-12 07:33+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494748565.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497252803.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id9628894\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the background of the slide master.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">При виборі цього параметру на поточному слайді відображається фонове зображення майстра слайдів.</ahelp> "
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">При виборі цього параметру на поточному слайді відображається фонове зображення зразка слайда.</ahelp> "
#: 03080000.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id7587206\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the objects of the slide master.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">При виборі цього параметру на поточному слайді відображаються об'єкти майстра слайдів.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">При виборі цього параметру на поточному слайді відображаються об'єкти зразка слайда.</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id3257545\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current slide master. Use Format - Slide/Page - Background to remove the picture.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відкриває діалогове вікно файлів для вибору зображення. Зображення масштабується і вставляється як тло поточного взірця слайда. Для видалення зображення вживайте команду \"Формат - Слайд/Сторінка - Тло\".</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Відкриває діалогове вікно файлів для вибору зображення. Зображення масштабується і вставляється як тло поточного зразка слайда. Для видалення зображення вживайте команду \"Формат - Слайд/Сторінка - Тло\".</ahelp>"
#: 03090000.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master"
-msgstr "Взірець"
+msgstr "Зразок"
#: 03150000.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"bm_id3153142\n"
"help.text"
msgid "<bookmark_value>master views</bookmark_value>"
-msgstr "<bookmark_value>види взірця</bookmark_value>"
+msgstr "<bookmark_value>види зразка</bookmark_value>"
#: 03150000.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_BTN_MASTERPAGE\">Switches to one of several master views, where you can add elements that you want to appear on all of the slides in your show.</ahelp>"
-msgstr "<ahelp hid=\"HID_SD_BTN_MASTERPAGE\">Перемикає у один із видів взірців, який дозволяє додавати елементи, що повинні відображатися на усіх слайдах у цьому показі.</ahelp>"
+msgstr "<ahelp hid=\"HID_SD_BTN_MASTERPAGE\">Перемикає у один із видів зразків, який дозволяє додавати елементи, що повинні виводитися на усіх слайдах у цьому показі.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"bm_id3154013\n"
"help.text"
msgid "<bookmark_value>normal view; backgrounds</bookmark_value> <bookmark_value>backgrounds; normal view</bookmark_value> <bookmark_value>views;slide master view</bookmark_value> <bookmark_value>slide master view</bookmark_value>"
-msgstr "<bookmark_value>звичайний вид; тло</bookmark_value> <bookmark_value>тло; звичайний вид</bookmark_value> <bookmark_value>види; перегляд зразка слайдів</bookmark_value> <bookmark_value>вид взірця слайдів</bookmark_value>"
+msgstr "<bookmark_value>звичайний вид; тло</bookmark_value> <bookmark_value>тло; звичайний вид</bookmark_value> <bookmark_value>види; перегляд зразка слайдів</bookmark_value> <bookmark_value>вид зразка слайдів</bookmark_value>"
#: 03150100.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to slide master view, where you can add elements that you want to appear on all of the slides that use the same slide master.</ahelp>"
-msgstr "<ahelp hid=\".\">Перемикає у режим взірця слайдів, в якому можна додавати елементи, які мають відображатися на усіх слайдах, що використовують однаковий взірець слайдів.</ahelp>"
+msgstr "<ahelp hid=\".\">Перемикає у режим зразка слайдів, в якому можна додавати елементи, які мають виводитися на усіх слайдах, що використовують однаковий зразок слайдів.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id4941557\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new slide master into the document. Double-click the new slide master on the Slides pane to apply it to all slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Вставка нового взірця слайдів у документ. Для застосування нового взірця слайдів до усіх слайдів двічі клацніть по ньому на панелі слайдів.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Вставка нового зразка слайдів у документ. Для застосування нового зразка слайдів до усіх слайдів двічі клацніть по ньому на панелі слайдів.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Elements"
-msgstr "Елементи взірця"
+msgstr "Елементи зразка"
#: 03151000.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"bm_id4083986\n"
"help.text"
msgid "<bookmark_value>headers and footers;master layouts</bookmark_value> <bookmark_value>master layouts with headers and footers</bookmark_value>"
-msgstr "<bookmark_value>колонтитули;розмітки взірців</bookmark_value> <bookmark_value>розмітки взірців із колонтитулами</bookmark_value>"
+msgstr "<bookmark_value>колонтитули;розмітки зразків</bookmark_value> <bookmark_value>розмітки зразків із колонтитулами</bookmark_value>"
#: 03151000.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Add header, footer, date, and slide number placeholders to the slide master.</ahelp>"
-msgstr "<ahelp hid=\".\">Додайте у взірець слайда заповнювачі верхнього колонтитула, нижнього колонтитула, дати і номерів слайдів.</ahelp>"
+msgstr "<ahelp hid=\".\">Додайте у зразок слайда заповнювачі верхнього колонтитула, нижнього колонтитула, дати і номерів слайдів.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Layout"
-msgstr "Елементи взірця"
+msgstr "Розмітка зразка"
#: 03151100.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_idN1053B\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Adds or removes header, footer, date, and slide number placeholders to the layout of the slide master.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Додавання або вилучення заповнювачів верхнього колонтитула, нижнього колонтитула, дати і номерів слайдів у взірці слайда.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Додавання або вилучення заповнювачів верхнього колонтитула, нижнього колонтитула, дати і номерів слайдів у зразку слайда.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Adds a header placeholder to the slide master for notes.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Додавання заповнювача верхнього колонтитула у взірець слайда для заміток.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Додавання заповнювача верхнього колонтитула у зразок слайда для заміток.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_idN10575\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Adds a date/time placeholder to the slide master.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Додавання заповнювача дати/часу у взірець слайда.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Додавання заповнювача дати/часу в зразок слайда.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Adds a footer placeholder to the slide master.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Додавання заповнювача нижнього колонтитула у взірець слайда.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Додавання заповнювача нижнього колонтитула у зразок слайда.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_idN105AB\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Adds a slide number placeholder to the slide master.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Додавання заповнювача номера слайда у взірець слайду.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Додавання заповнювача номера слайда в зразок слайда.</ahelp>"
#: 03151200.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Notes Master Layout"
-msgstr "Розмітка взірця приміток"
+msgstr "Розмітка зразка приміток"
#: 03151200.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"par_idN1052B\n"
"help.text"
msgid "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Add header, footer, date, and slide number to the notes master.</ahelp>"
-msgstr "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Додавання заповнювача верхнього колонтитула, нижнього колонтитула, дати і номерів слайдів у взірець слайда.</ahelp>"
+msgstr "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Додавання заповнювача верхнього колонтитула, нижнього колонтитула, дати і номерів слайдів у зразок слайда.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Adds or changes text in placeholders at the top and the bottom of slides and slide masters.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Додавання або зміна тексту у мітках-заповнювачах у верхній і нижній частині слайдів і взірцях слайдів.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Додавання або зміна тексту в мітках-заповнювачах у верхній і нижній частині слайдів і зразках слайдів.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2950,7 +2950,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Unused master pages are not inserted.</ahelp>"
-msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Невикористані взірці сторінок не вставляються.</ahelp>"
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Невикористані зразки сторінок не вставляються.</ahelp>"
#: 04110200.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id3154016\n"
"help.text"
msgid "Select a design category, and then a template you want to apply."
-msgstr "Виберіть категорію оформлення, а тоді бажаний взірець для застосування."
+msgstr "Виберіть категорію оформлення, а тоді бажаний зразок для застосування."
#: 05120100.xhp
msgctxt ""
@@ -6550,7 +6550,7 @@ msgctxt ""
"par_id3156305\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/changeslidesbyclick\">Advances to the next slide when you click on the background of a slide.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/changeslidesbyclick\">Перехід до чергового слайда відбувається при клацанні в області тла слайду.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/changeslidesbyclick\">Перехід до чергового слайда відбувається при клацанні в області тла слайда.</ahelp>"
#: 06080000.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/simpress/guide.po b/source/uk/helpcontent2/source/text/simpress/guide.po
index 04c7864f305..cdf26faaba6 100644
--- a/source/uk/helpcontent2/source/text/simpress/guide.po
+++ b/source/uk/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-05-28 08:29+0000\n"
+"PO-Revision-Date: 2017-06-12 07:35+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495960192.000000\n"
+"X-POOTLE-MTIME: 1497252903.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3148826123\n"
"help.text"
msgid "On Slide Pane an <image id=\"img_id3151172123\" src=\"sd/res/click_16.png\"/> icon appears next to the preview of those slides, which have one or more objects with custom animation. When you present the slide show with the Presenter Console, <image id=\"img_id3151172235\" src=\"sd/res/presenterscreen-Animation.png\"/> icon indicates that the next slide has custom animation."
-msgstr "На панелі слайдів поруч з переглядом слайду з'являється піктограма <image id=\"img_id3151172123\" src=\"sd/res/click_16.png\"/>, якщо на ньому є один або більше об'єктів з власною анімацією. При демонструванні презентації за допомогою консолі доповідача, піктограма <image id=\"img_id3151172235\" src=\"sd/res/presenterscreen-Animation.png\"/> вказує на те, що наступний слайд має особливу анімацію."
+msgstr "На панелі слайдів поруч з переглядом слайда з'являється піктограма <image id=\"img_id3151172123\" src=\"sd/res/click_16.png\"/>, якщо на ньому є один або більше об'єктів з власною анімацією. При демонструванні презентації за допомогою консолі доповідача, піктограма <image id=\"img_id3151172235\" src=\"sd/res/presenterscreen-Animation.png\"/> вказує на те, що наступний слайд має особливу анімацію."
#: animated_objects.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_idN10827\n"
"help.text"
msgid "Choose <emph>View - Master - Slide Master</emph> to change to the slide master."
-msgstr "Виберіть <emph>Перегляд - Майстер - Майстер слайдів</emph> для зміни майстра слайдів."
+msgstr "Виберіть <emph>Перегляд - Зразок - Зразок слайдів</emph> для зміни зразка слайдів."
#: background.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_idN1082F\n"
"help.text"
msgid "Choose <emph>Format - Page</emph> to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this slide master."
-msgstr "Виберіть команду <emph>Формат - Сторінка</emph> для зміни тла слайда, або виберіть інші команди форматування. Додані тут об'єкти відображаються на всіх слайдах, заснованих на цьому взірці слайдів."
+msgstr "Виберіть команду <emph>Формат - Сторінка</emph> для зміни тла слайда, або виберіть інші команди форматування. Додані тут об'єкти виводяться на всіх слайдах, заснованих на цьому зразку слайдів."
#: background.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"bm_id3153191\n"
"help.text"
msgid "<bookmark_value>footers;slide masters</bookmark_value><bookmark_value>slide masters; headers and footers</bookmark_value><bookmark_value>headers and footers; slide masters</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
-msgstr "<bookmark_value>колонтитули; взірці слайдів</bookmark_value><bookmark_value>взірці слайдів; нижні і верхні колонтитули</bookmark_value><bookmark_value>нижні і верхні колонтитули; взірці слайдів</bookmark_value><bookmark_value>вставка;верхні колонтитули/нижні колонтитули в усі слайди</bookmark_value><bookmark_value>номери слайдів у всі слайди</bookmark_value><bookmark_value>номери сторінок у всі слайди</bookmark_value><bookmark_value>дати в усі слайди</bookmark_value><bookmark_value> дату у всі слайди</bookmark_value>"
+msgstr "<bookmark_value>колонтитули; зразки слайдів</bookmark_value><bookmark_value>зразки слайдів; нижні і верхні колонтитули</bookmark_value><bookmark_value>нижні і верхні колонтитули; зразки слайдів</bookmark_value><bookmark_value>вставка;верхні колонтитули/нижні колонтитули в усі слайди</bookmark_value><bookmark_value>номери слайдів у всі слайди</bookmark_value><bookmark_value>номери сторінок у всі слайди</bookmark_value><bookmark_value>дати в усі слайди</bookmark_value><bookmark_value>час і дату у всі слайди</bookmark_value>"
#: footer.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id1356547\n"
"help.text"
msgid "Every slide is based on a slide master. The text, pictures, tables, fields or other objects that you place on the slide master are visible as a background on all slides that are based on that slide master."
-msgstr "Кожен слайд заснований на взірці слайдів. Текст, зображення, таблиці, поля або інші об'єкти, розміщені на взірці слайдів є тлом всіх слайдів, заснованих на цьому взірці."
+msgstr "Кожен слайд заснований на зразку слайдів. Текст, зображення, таблиці, поля або інші об'єкти, розміщені на зразку слайдів є тлом всіх слайдів, заснованих на цьому зразку."
#: footer.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id704672\n"
"help.text"
msgid "Masters exist for slides, notes, and handouts."
-msgstr "Наявні взірці для слайдів, приміток і тез."
+msgstr "Наявні зразки для слайдів, приміток і тез."
#: footer.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "Choose <emph>View - Slide Master</emph>."
-msgstr "Виберіть <emph>Перегляд - Взірець слайдів</emph>."
+msgstr "Виберіть <emph>Перегляд - Зразки слайдів</emph>."
#: footer.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select <emph>Slide - Slide Master Design</emph>."
-msgstr "Виберіть <emph>Слайд - Дизайн майстра слайдів</emph>."
+msgstr "Виберіть <emph>Слайд - Вибір зразка слайдів</emph>."
#: masterpage.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master page to all slides. Right-click for a context menu.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Клацання лівою кнопкою застосовує взірець до всіх слайдів. Клацання правою кнопкою миші відкриває контекстне меню.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Клацання лівою кнопкою застосовує зразок до всіх слайдів. Клацання правою кнопкою миші відкриває контекстне меню.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"par_idN10747\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page to all slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Застосовує взірець до всіх слайдів.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Застосовує зразок до всіх слайдів.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_idN10762\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page or the slide design to the selected slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Застосовує взірець сторінки або шаблон оформлення слайда до виділених слайдів.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Застосовує зразок сторінки або шаблон оформлення слайда до виділених слайдів.</ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the preview of the master pages.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Зміна розміру попереднього перегляду взірців сторінок.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Зміна розміру попереднього перегляду зразків сторінок.</ahelp>"
#: masterpage.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/swriter.po b/source/uk/helpcontent2/source/text/swriter.po
index 4b77c606486..3bed595b34e 100644
--- a/source/uk/helpcontent2/source/text/swriter.po
+++ b/source/uk/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2017-05-24 22:01+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495663299.000000\n"
#: classificationbar.xhp
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Нумерація структури\">Нумерація структури</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/swriter/00.po b/source/uk/helpcontent2/source/text/swriter/00.po
index 5319303595e..dda72d8ca1b 100644
--- a/source/uk/helpcontent2/source/text/swriter/00.po
+++ b/source/uk/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2017-03-16 20:44+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Виберіть <emph>Засоби - Структура нумерації</emph></variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Відкрийте вкладку <emph>Засоби - Структура нумерації - Нумерація</emph> </variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Виберіть <emph>Засоби - Нумерація рядків</emph> (не для формату HTML)</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/swriter/01.po b/source/uk/helpcontent2/source/text/swriter/01.po
index a926dbd7182..dde3f6ef8c1 100644
--- a/source/uk/helpcontent2/source/text/swriter/01.po
+++ b/source/uk/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2017-04-09 12:03+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Виберіть <emph>1 </emph>, щоб відобразити у вікні навігатора заголовки верхнього рівня, і натисніть <emph>10</emph>, щоб відобразити всі заголовки.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Якщо для поля глави задано значення \"Номер глави без розділювача\", то символи, зазначені для номерів глав у пункті меню <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Засоби - Структура нумерації</emph></link>, не відображаються."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Вставляє номер глави. Щоби призначити нумерацію глав для стилю заголовка, виберіть <emph>Засоби - Структура нумерації</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Нумерація рядків"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Нумерація рядків"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Структура нумерації пов'язана зі стилями абзаців. Типово відповідним рівням структури (1-10) призначено стилі абзаців «Заголовок» (1-10). При бажанні можна призначити рівням структури інші стилі абзацу."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Якщо потрібно пронумерувати заголовки виберіть команду меню <emph>Засоби - Структура нумерації</emph> для присвоєння нумерації стилю абзацу. Не користуйтесь значком нумерації на панелі інструментів Форматування."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Щоб рівні структури позначались на екрані кольором, виберіть команду <emph>Перегляд - </emph><emph>Затінення полів</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Зберігає або завантажує формат нумерації структури. Збережений формат нумерації доступний для всіх текстових документів.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Кнопка <emph>Формат</emph> доступна лише для нумерації структури. Для стилів нумерованих і маркованих списків змінюйте стилі нумерації абзаців."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Відкриває діалогове вікно, де можна зберегти поточні параметри для вибраного рівня структури. Потім ці параметри можна завантажити з іншого документа.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Виберіть рівень структури, який потрібно змінити, а потім задайте параметри для нумерації цього рівня.</ahelp> Щоб застосувати параметри нумерації (крім стилю абзацу) до всіх рівнів, клацніть \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Виберіть стиль абзацу, який потрібно призначити вибраному рівню структури.</ahelp> Якщо вибрати «Немає», вибраний рівень структури не буде визначено."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Новий блок адреси"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Новий блок адреси"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Елементи адреси"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Пересуньте елемент адреси в поле внизу"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/swriter/guide.po b/source/uk/helpcontent2/source/text/swriter/guide.po
index 2f72f1ea3fc..1aa469ac513 100644
--- a/source/uk/helpcontent2/source/text/swriter/guide.po
+++ b/source/uk/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2017-05-14 07:50+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "За допомогою навігатора можна переміщати вгору або вниз у документі заголовки та текст, що до них відноситься. Можна також підвищувати або знижувати рівні заголовків. Щоб скористатися цією функцією, заголовки у документі слід відформатувати одним зі стандартних стилів абзаців для заголовків. Щоб застосувати для заголовка користувацький стиль абзацу, виберіть пункт меню <emph>Засоби - Структура нумерації</emph>, виберіть стиль у полі <emph>Стиль абзацу</emph> , а потім двічі клацніть номер у списку <emph>Рівні</emph> ."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,32 +2901,32 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Структура нумерації"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
-msgstr "<bookmark_value>структура;нумерація</bookmark_value> <bookmark_value>вилучення;номери заголовків</bookmark_value> <bookmark_value>нумерація розділів</bookmark_value> <bookmark_value>заголовки; стилі нумерації/абзацу</bookmark_value> <bookmark_value>нумерація;заголовки</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Нумерація структури\">Нумерація структури</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Ви можете змінити ієрархію заголовків або призначити рівень в ієрархії призначеному для користувача стилі абзацу. Можна також додавати нумерацію розділів або підрозділів до стилів абзацу для заголовків. Усталено стиль абзацу \"Заголовок 1\" - верхній в ієрархії структури."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Виберіть команду <item type=\"menuitem\">Засоби – Структура і нумерація</item> і перейдіть на вкладку <item type=\"menuitem\">Нумерація</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Щоб видалити інтерактивну автоматичну нумерацію з абзацу заголовка:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Виберіть команду <item type=\"menuitem\">Засоби – Структура і нумерація</item> і перейдіть на вкладку <item type=\"menuitem\">Нумерація</item>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Перш ніж ви вставите інформацію про розділ у колонтитул, слід задати параметри нумерації структури для стилю абзацу, який потрібно застосовувати до заголовків розділів."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Виберіть команду <emph>Засоби - Структура нумерації</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>покажчики; визначення елементів у</bookmark_value><bookmark_value>змісти; визначення елементів у</bookmark_value><bookmark_value>елементи; визначення у покажчиках/змістах</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Виберіть команду <emph>Вставка - Покажчики і таблиці - Елемент</emph> і виконайте одну з наступних дій:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Виберіть команду <emph>Сервіс - Структура нумерації</emph> і відкрийте вкладку <emph>Нумерація</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Якщо до елементу змісту потрібно застосувати інший стиль абзацу, встановіть в області <item type=\"menuitem\">Створити із</item> параметр <item type=\"menuitem\">Додаткові стилі</item> , а потім натисніть кнопку <item type=\"menuitem\">Призначити стилі</item> поруч із прапорцем. У діалоговому вікні <item type=\"menuitem\">Призначити стиль</item> виберіть стиль у списку, а потім натисніть кнопку <item type=\"menuitem\">>></item> чи <item type=\"menuitem\"><<</item> для визначення рівня структури у стилі абзацу."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,8 +8013,8 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Якщо до елементу змісту необхідно застосувати інший стиль абзацу, встановіть прапорець <item type=\"menuitem\">Додаткові стилі</item> та натисніть поруч кнопку <item type=\"menuitem\">Призначити стилі</item>. Виберіть стиль у списку, а потім натисніть кнопку <item type=\"menuitem\">>></item> або <item type=\"menuitem\"><<</item> для визначення рівня структури у стилі абзацу."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: insert_beforetable.xhp
msgctxt ""
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>нумерація; видалення/переривання</bookmark_value><bookmark_value>маркіровані списки; переривання</bookmark_value><bookmark_value>списки; видалення/переривання нумерації</bookmark_value><bookmark_value>видалення;номери у списках</bookmark_value><bookmark_value>переривання нумерованих списків</bookmark_value><bookmark_value>зміна; початкові номери у списках</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Якщо вам необхідно пронумерувати заголовки, виберіть меню <emph>Засоби - Структура нумерації</emph> для привласнення нумерації стилю абзацу. Не використовуйте піктограму нумерації на панелі інструментів форматування."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/uk/helpcontent2/source/text/swriter/librelogo.po b/source/uk/helpcontent2/source/text/swriter/librelogo.po
index 45a0316faa7..e502f4b4f79 100644
--- a/source/uk/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/uk/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-07 21:39+0200\n"
-"PO-Revision-Date: 2017-05-08 13:09+0000\n"
+"PO-Revision-Date: 2017-06-09 19:34+0000\n"
"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494248987.000000\n"
+"X-POOTLE-MTIME: 1497036895.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_340\n"
"help.text"
msgid "Click on the icon “Clear screen” to remove the drawing objects of the document."
-msgstr "Клацніть піктограму „CLEARSCREEN“ для вилучення накреслених об'єктів із документу."
+msgstr "Клацніть піктограму “CLEARSCREEN” для вилучення накреслених об'єктів із документа."
#: LibreLogo.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_415\n"
"help.text"
msgid "Turtle shape of LibreLogo is a normal fixed size drawing object. You can positionate and rotate it on standard way, too, using the mouse and the Rotate icon of the Drawing Object Properties toolbar. Modify Line Width, Line Color and Area Color settings of the turtle shape to set PENSIZE, PENCOLOR and FILLCOLOR attributes of LibreLogo."
-msgstr "Черепаха LibreLogo це звичайний графічний об'єкт фіксованого розміру. Ви можете переміщувати і повертати його стандартними засобами, за допомогою миші, та піктограми \"Обернути\" на панелі \"Властивості рисунка\". Зміна налаштування Ширини Лінії, Кольору Лінії, Кольору Заповнення малюнку черепахи, змінить PENSIZE, PENCOLOR та FILLCOLOR властивості LibreLogo."
+msgstr "Черепаха LibreLogo це звичайний графічний об'єкт фіксованого розміру. Ви можете переміщувати та повертати його стандартними засобами, за допомогою миші, та піктограми \"Обернути\" на панелі \"Властивості рисунка\". Зміна налаштування Ширини Лінії, Кольору Лінії, Кольору Заповнення малюнку черепахи, змінить PENSIZE, PENCOLOR та FILLCOLOR властивості LibreLogo."
#: LibreLogo.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_430\n"
"help.text"
msgid "LibreLogo drawings and programs use the same Writer document. The LibreLogo canvas is on the first page of the Writer document. You can insert a page break before the LibreLogo programs and set page zoom using the “magic wand” icon of the Logo toolbar, also change the font size for a comfortable 2-page layout for LibreLogo programming: left (first) page is the canvas, right (second) page is the LibreLogo program editor."
-msgstr "Рисунки і програми для LibreLogo використовують один і той же документ Writer. Полотно LibreLogo знаходиться на першій сторінці документа Writer. Ви можете вставити розрив сторінки перед програмою LibreLogo і встановити масштаб, використовуючи піктограму \"чарівної палички\", що відображається на панелі інструментів Logo і змінити розмір шрифту для зручного перегляду двох сторінок в процесі програмування на LibreLogo: ліва (перша) сторінка - полотно, а права (друга) буде відведена на програмний редактор LibreLogo."
+msgstr "Рисунки та програми LibreLogo використовують один і той же документ Writer. Полотно LibreLogo знаходиться на першій сторінці документа Writer. Ви можете вставити розрив сторінки перед програмою LibreLogo та встановити масштаб сторінки за допомогою “чарівної палички” з панелі інструментів Logo, а також змінити розмір шрифту для зручного перегляду двох сторінок в процесі програмування на LibreLogo: ліва (перша) сторінка це полотно, а права (друга) сторінка це редактор LibreLogo програми."
#: LibreLogo.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_490\n"
"help.text"
msgid "Program blocks and lists are different"
-msgstr "Блоки і списки програм відрізняються"
+msgstr "Блоки та списки програм відрізняються"
#: LibreLogo.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_520\n"
"help.text"
msgid "1-line function declarations are not supported (TO and END need new lines)."
-msgstr "Оголошення 1-рядкової функції не підтримуються (TO і END потребують нових рядків)."
+msgstr "Оголошення 1-рядкової функції не підтримуються (TO та END потребують нових рядків)."
#: LibreLogo.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_1020\n"
"help.text"
msgid "HIDETURTLE ; hide turtle (until the showturtle command)<br/>"
-msgstr "HIDETURTLE ; приховати черепаху (перед використанням команди showturtle )<br/>"
+msgstr "HIDETURTLE ; приховати черепаху (перед використанням команди showturtle)<br/>"
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/uk/officecfg/registry/data/org/openoffice/Office.po b/source/uk/officecfg/registry/data/org/openoffice/Office.po
index f6c9b928f38..6174aa45d7a 100644
--- a/source/uk/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/uk/officecfg/registry/data/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-03-10 06:58+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-06-19 17:44+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489129119.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497894264.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"STR_IMAGE_RESOLUTION_0\n"
"value.text"
msgid "0;<no change>"
-msgstr "0;<no change>"
+msgstr "0;<без змін>"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1220,7 +1220,7 @@ msgctxt ""
"STR_CUSTOM_SHOW\n"
"value.text"
msgid "Delete slides that are not used for the ~custom slide show"
-msgstr "Вилучити слайди, які невикористані для власного показу слайдів"
+msgstr "Вилучити слайди, які не використані для власного показу слайдів"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1985,7 +1985,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -1994,7 +1994,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -2003,7 +2003,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "CategoryName"
+msgstr "НазваКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -2012,7 +2012,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategName"
-msgstr "CategName"
+msgstr "НазваКатег"
#: TableWizard.xcu
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -2039,7 +2039,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -2048,7 +2048,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductName"
-msgstr "ProductName"
+msgstr "НазваПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -2057,7 +2057,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProdName"
-msgstr "ProdName"
+msgstr "НазваПрод"
#: TableWizard.xcu
msgctxt ""
@@ -2066,7 +2066,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductDescription"
-msgstr "ProductDescription"
+msgstr "ОписПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -2075,7 +2075,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProdDescr"
-msgstr "ProdDescr"
+msgstr "ОписПрод"
#: TableWizard.xcu
msgctxt ""
@@ -2084,7 +2084,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -2093,7 +2093,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "КодПостачальника"
#: TableWizard.xcu
msgctxt ""
@@ -2111,7 +2111,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "КодПостач"
#: TableWizard.xcu
msgctxt ""
@@ -2120,7 +2120,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Serialnumber"
-msgstr "Serialnumber"
+msgstr "СерійнийНомер"
#: TableWizard.xcu
msgctxt ""
@@ -2129,7 +2129,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr "SerialNo"
+msgstr "СерійнийНом"
#: TableWizard.xcu
msgctxt ""
@@ -2138,7 +2138,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitsInStock"
-msgstr "UnitsInStock"
+msgstr "ОдиницьВНаявності"
#: TableWizard.xcu
msgctxt ""
@@ -2147,7 +2147,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitsStock"
-msgstr "UnitsStock"
+msgstr "ОдинНаявн"
#: TableWizard.xcu
msgctxt ""
@@ -2156,7 +2156,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitsOnOrder"
-msgstr "UnitsOnOrder"
+msgstr "ОдиницьНаЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -2165,7 +2165,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitsOrder"
-msgstr "UnitsOrder"
+msgstr "ОдинЗамовл"
#: TableWizard.xcu
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ВартістьОдиниці"
#: TableWizard.xcu
msgctxt ""
@@ -2183,7 +2183,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ВартістьОдиниці"
#: TableWizard.xcu
msgctxt ""
@@ -2192,7 +2192,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReorderLevel"
-msgstr "ReorderLevel"
+msgstr "РівеньДозамовлень"
#: TableWizard.xcu
msgctxt ""
@@ -2201,7 +2201,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReordLevel"
-msgstr "ReordLevel"
+msgstr "РівеньДозам"
#: TableWizard.xcu
msgctxt ""
@@ -2210,7 +2210,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Discontinued"
-msgstr "Discontinued"
+msgstr "Припинений"
#: TableWizard.xcu
msgctxt ""
@@ -2219,7 +2219,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Discontin"
-msgstr "Discontin"
+msgstr "Припин"
#: TableWizard.xcu
msgctxt ""
@@ -2228,7 +2228,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LeadTime"
-msgstr "LeadTime"
+msgstr "ЧасВиконання"
#: TableWizard.xcu
msgctxt ""
@@ -2237,7 +2237,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LeadTime"
-msgstr "LeadTime"
+msgstr "ЧасВиконання"
#: TableWizard.xcu
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "КодПостачальника"
#: TableWizard.xcu
msgctxt ""
@@ -2264,7 +2264,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "КодПостачальника"
#: TableWizard.xcu
msgctxt ""
@@ -2273,7 +2273,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierName"
-msgstr "SupplierName"
+msgstr "НазваПостачальника"
#: TableWizard.xcu
msgctxt ""
@@ -2282,7 +2282,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplName"
-msgstr "SupplName"
+msgstr "НазваПостач"
#: TableWizard.xcu
msgctxt ""
@@ -2291,7 +2291,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactName"
-msgstr "ContactName"
+msgstr "КонтактнаОсоба"
#: TableWizard.xcu
msgctxt ""
@@ -2300,7 +2300,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ContctName"
-msgstr "ContctName"
+msgstr "КонтОсоба"
#: TableWizard.xcu
msgctxt ""
@@ -2309,7 +2309,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactTitle"
-msgstr "ContactTitle"
+msgstr "ПосадаКонтактноїОсоби"
#: TableWizard.xcu
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ContctTitl"
-msgstr "ContctTitl"
+msgstr "ПосадаКонтакту"
#: TableWizard.xcu
msgctxt ""
@@ -2327,7 +2327,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -2336,7 +2336,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -2381,7 +2381,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ОбластьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ОбластьКрай"
#: TableWizard.xcu
msgctxt ""
@@ -2399,7 +2399,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраїнаАбоРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -2408,7 +2408,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "КраїнаРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -2417,7 +2417,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НомерТелефону"
#: TableWizard.xcu
msgctxt ""
@@ -2426,7 +2426,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "Телефон"
#: TableWizard.xcu
msgctxt ""
@@ -2435,7 +2435,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "НомерФаксу"
#: TableWizard.xcu
msgctxt ""
@@ -2444,7 +2444,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "Факс"
#: TableWizard.xcu
msgctxt ""
@@ -2453,7 +2453,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentTerms"
-msgstr "PaymentTerms"
+msgstr "УмовиОплати"
#: TableWizard.xcu
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntTerm"
-msgstr "PaymntTerm"
+msgstr "УмовОпл"
#: TableWizard.xcu
msgctxt ""
@@ -2471,7 +2471,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "ЕлектроннаАдреса"
#: TableWizard.xcu
msgctxt ""
@@ -2480,7 +2480,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрЕлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -2516,7 +2516,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MailingListID"
-msgstr "MailingListID"
+msgstr "КодСпискуРозсилки"
#: TableWizard.xcu
msgctxt ""
@@ -2525,7 +2525,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MailingID"
-msgstr "MailingID"
+msgstr "КодРозсилки"
#: TableWizard.xcu
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Prefix"
-msgstr "Prefix"
+msgstr "Префікс"
#: TableWizard.xcu
msgctxt ""
@@ -2543,7 +2543,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Prefix"
-msgstr "Prefix"
+msgstr "Префікс"
#: TableWizard.xcu
msgctxt ""
@@ -2552,7 +2552,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -2561,7 +2561,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -2570,7 +2570,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MiddleName"
-msgstr "MiddleName"
+msgstr "ПоБатькові"
#: TableWizard.xcu
msgctxt ""
@@ -2579,7 +2579,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MiddleName"
-msgstr "MiddleName"
+msgstr "ПоБатькові"
#: TableWizard.xcu
msgctxt ""
@@ -2588,7 +2588,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -2597,7 +2597,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Suffix"
-msgstr "Suffix"
+msgstr "Суфікс"
#: TableWizard.xcu
msgctxt ""
@@ -2615,7 +2615,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Suffix"
-msgstr "Suffix"
+msgstr "Суфікс"
#: TableWizard.xcu
msgctxt ""
@@ -2624,7 +2624,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -2633,7 +2633,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -2642,7 +2642,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrganizationName"
-msgstr "OrganizationName"
+msgstr "НазваОрганізації"
#: TableWizard.xcu
msgctxt ""
@@ -2651,7 +2651,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrgName"
-msgstr "OrgName"
+msgstr "НазваОрг"
#: TableWizard.xcu
msgctxt ""
@@ -2660,7 +2660,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -2669,7 +2669,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -2696,7 +2696,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -2705,7 +2705,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -2714,7 +2714,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ОбластьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -2723,7 +2723,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ОбластьКрай"
#: TableWizard.xcu
msgctxt ""
@@ -2732,7 +2732,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраїнаАбоРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "КраїнаРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -2750,7 +2750,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НомерТелефону"
#: TableWizard.xcu
msgctxt ""
@@ -2759,7 +2759,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "Телефон"
#: TableWizard.xcu
msgctxt ""
@@ -2768,7 +2768,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "НомерФаксу"
#: TableWizard.xcu
msgctxt ""
@@ -2777,7 +2777,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "Факс"
#: TableWizard.xcu
msgctxt ""
@@ -2786,7 +2786,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "НомерМобільного"
#: TableWizard.xcu
msgctxt ""
@@ -2795,7 +2795,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "Мобільний"
#: TableWizard.xcu
msgctxt ""
@@ -2804,7 +2804,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "ЕлектроннаАдреса"
#: TableWizard.xcu
msgctxt ""
@@ -2813,7 +2813,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрЕлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -2831,7 +2831,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -2840,7 +2840,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Nationality"
-msgstr "Nationality"
+msgstr "Національність"
#: TableWizard.xcu
msgctxt ""
@@ -2849,7 +2849,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Nationality"
-msgstr "Nationality"
+msgstr "Національність"
#: TableWizard.xcu
msgctxt ""
@@ -2858,7 +2858,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateUpdated"
-msgstr "DateUpdated"
+msgstr "ДатаОновлення"
#: TableWizard.xcu
msgctxt ""
@@ -2867,7 +2867,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateUpdate"
-msgstr "DateUpdate"
+msgstr "ДатаОновл"
#: TableWizard.xcu
msgctxt ""
@@ -2876,7 +2876,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateJoined"
-msgstr "DateJoined"
+msgstr "ДатаПідписки"
#: TableWizard.xcu
msgctxt ""
@@ -2885,7 +2885,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateJoined"
-msgstr "DateJoined"
+msgstr "ДатаПідписки"
#: TableWizard.xcu
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MembershipStatus"
-msgstr "MembershipStatus"
+msgstr "СтатусУчасника"
#: TableWizard.xcu
msgctxt ""
@@ -2903,7 +2903,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MemberStat"
-msgstr "MemberStat"
+msgstr "СтатУчасн"
#: TableWizard.xcu
msgctxt ""
@@ -2912,7 +2912,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PledgeAmount"
-msgstr "PledgeAmount"
+msgstr "СумаЗастави"
#: TableWizard.xcu
msgctxt ""
@@ -2921,7 +2921,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PledgeAmnt"
-msgstr "PledgeAmnt"
+msgstr "СумЗастав"
#: TableWizard.xcu
msgctxt ""
@@ -2930,7 +2930,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PledgePaidDate"
-msgstr "PledgePaidDate"
+msgstr "ДатаСплатиЗастави"
#: TableWizard.xcu
msgctxt ""
@@ -2939,7 +2939,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PldgPdDate"
-msgstr "PldgPdDate"
+msgstr "ДатСплЗаст"
#: TableWizard.xcu
msgctxt ""
@@ -2948,7 +2948,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DuesAmount"
-msgstr "DuesAmount"
+msgstr "СумаВнеску"
#: TableWizard.xcu
msgctxt ""
@@ -2957,7 +2957,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DuesAmount"
-msgstr "DuesAmount"
+msgstr "СумаВнеску"
#: TableWizard.xcu
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DuesPaidDate"
-msgstr "DuesPaidDate"
+msgstr "ДатаСплатиВнеску"
#: TableWizard.xcu
msgctxt ""
@@ -2975,7 +2975,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DuesPdDate"
-msgstr "DuesPdDate"
+msgstr "ДатСплВнеск"
#: TableWizard.xcu
msgctxt ""
@@ -2984,7 +2984,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -2993,7 +2993,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -3029,7 +3029,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactID"
-msgstr "ContactID"
+msgstr "КодКонтакту"
#: TableWizard.xcu
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ContactID"
-msgstr "ContactID"
+msgstr "КодКонтакту"
#: TableWizard.xcu
msgctxt ""
@@ -3047,7 +3047,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -3056,7 +3056,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -3065,7 +3065,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -3074,7 +3074,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -3083,7 +3083,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -3092,7 +3092,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -3101,7 +3101,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -3137,7 +3137,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -3146,7 +3146,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -3155,7 +3155,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ОбластьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -3164,7 +3164,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ОбластьКрай"
#: TableWizard.xcu
msgctxt ""
@@ -3173,7 +3173,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраїнаАбоРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "КраїнаРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -3191,7 +3191,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НомерТелефону"
#: TableWizard.xcu
msgctxt ""
@@ -3200,7 +3200,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "Телефон"
#: TableWizard.xcu
msgctxt ""
@@ -3209,7 +3209,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "НомерФаксу"
#: TableWizard.xcu
msgctxt ""
@@ -3218,7 +3218,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "Факс"
#: TableWizard.xcu
msgctxt ""
@@ -3227,7 +3227,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "НомерМобільного"
#: TableWizard.xcu
msgctxt ""
@@ -3236,7 +3236,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "Мобільний"
#: TableWizard.xcu
msgctxt ""
@@ -3245,7 +3245,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "ЕлектроннаАдреса"
#: TableWizard.xcu
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрЕлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Salutation"
-msgstr "Salutation"
+msgstr "Вітання"
#: TableWizard.xcu
msgctxt ""
@@ -3272,7 +3272,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Salutation"
-msgstr "Salutation"
+msgstr "Вітання"
#: TableWizard.xcu
msgctxt ""
@@ -3281,7 +3281,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -3290,7 +3290,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -3299,7 +3299,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactTypeID"
-msgstr "ContactTypeID"
+msgstr "КодТипуКонтакту"
#: TableWizard.xcu
msgctxt ""
@@ -3308,7 +3308,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CntctTypID"
-msgstr "CntctTypID"
+msgstr "КодТипКонт"
#: TableWizard.xcu
msgctxt ""
@@ -3317,7 +3317,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MaritalStatus"
-msgstr "MaritalStatus"
+msgstr "СімейнийСтан"
#: TableWizard.xcu
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MaritlStat"
-msgstr "MaritlStat"
+msgstr "СімСтан"
#: TableWizard.xcu
msgctxt ""
@@ -3335,7 +3335,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SpouseName"
-msgstr "SpouseName"
+msgstr "Ім'яЧоловікаЧиДружини"
#: TableWizard.xcu
msgctxt ""
@@ -3344,7 +3344,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr "SpouseName"
+msgstr "Ім'яЧолЧиДруж"
#: TableWizard.xcu
msgctxt ""
@@ -3353,7 +3353,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SpousesInterests"
-msgstr "SpousesInterests"
+msgstr "ЗахопленняЧоловікаЧиДружини"
#: TableWizard.xcu
msgctxt ""
@@ -3362,7 +3362,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SpouseIntr"
-msgstr "SpouseIntr"
+msgstr "ЗахоплЧолЧиДруж"
#: TableWizard.xcu
msgctxt ""
@@ -3371,7 +3371,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactsInterests"
-msgstr "ContactsInterests"
+msgstr "ЗахопленняКонтакту"
#: TableWizard.xcu
msgctxt ""
@@ -3380,7 +3380,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CntctInter"
-msgstr "CntctInter"
+msgstr "ЗахопКонт"
#: TableWizard.xcu
msgctxt ""
@@ -3389,7 +3389,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ChildrenNames"
-msgstr "Імена дітей"
+msgstr "ІменаДітей"
#: TableWizard.xcu
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ChildName"
-msgstr "ChildName"
+msgstr "ІменаДіт"
#: TableWizard.xcu
msgctxt ""
@@ -3407,7 +3407,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -3416,7 +3416,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -3452,7 +3452,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -3461,7 +3461,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CompanyName"
-msgstr "CompanyName"
+msgstr "НазваКомпанії"
#: TableWizard.xcu
msgctxt ""
@@ -3479,7 +3479,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CompnyName"
-msgstr "CompnyName"
+msgstr "НазваКомп"
#: TableWizard.xcu
msgctxt ""
@@ -3488,7 +3488,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -3497,7 +3497,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -3506,7 +3506,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -3515,7 +3515,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -3551,7 +3551,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -3578,7 +3578,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -3587,7 +3587,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -3596,7 +3596,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ОбластьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -3605,7 +3605,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ОбластьКрай"
#: TableWizard.xcu
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраїнаАбоРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -3623,7 +3623,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "КраїнаРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -3632,7 +3632,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НомерТелефону"
#: TableWizard.xcu
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "Телефон"
#: TableWizard.xcu
msgctxt ""
@@ -3650,7 +3650,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "НомерФаксу"
#: TableWizard.xcu
msgctxt ""
@@ -3659,7 +3659,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "Факс"
#: TableWizard.xcu
msgctxt ""
@@ -3668,7 +3668,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "НомерМобільного"
#: TableWizard.xcu
msgctxt ""
@@ -3677,7 +3677,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "Мобільний"
#: TableWizard.xcu
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "ЕлектроннаАдреса"
#: TableWizard.xcu
msgctxt ""
@@ -3695,7 +3695,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрЕлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -3704,7 +3704,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -3713,7 +3713,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -3740,7 +3740,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Employees"
-msgstr "Робітники"
+msgstr "Працівники"
#: TableWizard.xcu
msgctxt ""
@@ -3749,7 +3749,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -3767,7 +3767,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -3776,7 +3776,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -3785,7 +3785,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MiddleName"
-msgstr "MiddleName"
+msgstr "ПоБатькові"
#: TableWizard.xcu
msgctxt ""
@@ -3794,7 +3794,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MiddleName"
-msgstr "MiddleName"
+msgstr "ПоБатькові"
#: TableWizard.xcu
msgctxt ""
@@ -3803,7 +3803,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -3812,7 +3812,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -3821,7 +3821,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -3857,7 +3857,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SocialSecurityNumber"
-msgstr "SocialSecurityNumber"
+msgstr "НомерСоціальногоСтрахування"
#: TableWizard.xcu
msgctxt ""
@@ -3866,7 +3866,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SocSecNo"
-msgstr "SocSecNo"
+msgstr "НомСоцСтрах"
#: TableWizard.xcu
msgctxt ""
@@ -3875,7 +3875,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeNumber"
-msgstr "EmployeeNumber"
+msgstr "КількістьПрацівників"
#: TableWizard.xcu
msgctxt ""
@@ -3884,7 +3884,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeNo"
-msgstr "EmployeeNo"
+msgstr "КількПрац"
#: TableWizard.xcu
msgctxt ""
@@ -3893,7 +3893,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "ЕлектроннаАдреса"
#: TableWizard.xcu
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрЕлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -3911,7 +3911,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Extension"
-msgstr "Extension"
+msgstr "Додатково"
#: TableWizard.xcu
msgctxt ""
@@ -3920,7 +3920,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Extension"
-msgstr "Extension"
+msgstr "Додатково"
#: TableWizard.xcu
msgctxt ""
@@ -3929,7 +3929,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -3938,7 +3938,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -3965,7 +3965,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -3983,7 +3983,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ОбластьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -3992,7 +3992,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ОбластьКрай"
#: TableWizard.xcu
msgctxt ""
@@ -4001,7 +4001,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраїнаАбоРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -4010,7 +4010,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "КраїнаРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -4019,7 +4019,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НомерТелефону"
#: TableWizard.xcu
msgctxt ""
@@ -4028,7 +4028,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "Телефон"
#: TableWizard.xcu
msgctxt ""
@@ -4037,7 +4037,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "НомерФаксу"
#: TableWizard.xcu
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "Факс"
#: TableWizard.xcu
msgctxt ""
@@ -4055,7 +4055,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "НомерМобільного"
#: TableWizard.xcu
msgctxt ""
@@ -4064,7 +4064,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "Мобільний"
#: TableWizard.xcu
msgctxt ""
@@ -4073,7 +4073,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -4082,7 +4082,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -4091,7 +4091,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateHired"
-msgstr "DateHired"
+msgstr "ДатаПрацевлаштування"
#: TableWizard.xcu
msgctxt ""
@@ -4100,7 +4100,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateHired"
-msgstr "DateHired"
+msgstr "ДатаПрацевлаштування"
#: TableWizard.xcu
msgctxt ""
@@ -4109,7 +4109,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepartmentID"
-msgstr "DepartmentID"
+msgstr "КодВідділу"
#: TableWizard.xcu
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprtmntID"
-msgstr "DeprtmntID"
+msgstr "КодВідділу"
#: TableWizard.xcu
msgctxt ""
@@ -4127,7 +4127,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Salary"
-msgstr "Salary"
+msgstr "Зарплатня"
#: TableWizard.xcu
msgctxt ""
@@ -4136,7 +4136,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Salary"
-msgstr "Salary"
+msgstr "Зарплатня"
#: TableWizard.xcu
msgctxt ""
@@ -4145,7 +4145,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BillingRate"
-msgstr "BillingRate"
+msgstr "Розцінки"
#: TableWizard.xcu
msgctxt ""
@@ -4154,7 +4154,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BillngRate"
-msgstr "BillngRate"
+msgstr "Розцінки"
#: TableWizard.xcu
msgctxt ""
@@ -4163,7 +4163,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Deductions"
-msgstr "Deductions"
+msgstr "Податки"
#: TableWizard.xcu
msgctxt ""
@@ -4172,7 +4172,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Deductions"
-msgstr "Deductions"
+msgstr "Податки"
#: TableWizard.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupervisorID"
-msgstr "SupervisorID"
+msgstr "КодКерівника"
#: TableWizard.xcu
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupervisID"
-msgstr "SupervisID"
+msgstr "КодКерівника"
#: TableWizard.xcu
msgctxt ""
@@ -4199,7 +4199,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SpouseName"
-msgstr "SpouseName"
+msgstr "Ім'яЧоловікаЧиДружини"
#: TableWizard.xcu
msgctxt ""
@@ -4208,7 +4208,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr "SpouseName"
+msgstr "Ім'яЧоловікаЧиДружини"
#: TableWizard.xcu
msgctxt ""
@@ -4217,7 +4217,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OfficeLocation"
-msgstr "OfficeLocation"
+msgstr "РозташуванняОфісу"
#: TableWizard.xcu
msgctxt ""
@@ -4226,7 +4226,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OfficeLoc"
-msgstr "OfficeLoc"
+msgstr "РозташОфіс"
#: TableWizard.xcu
msgctxt ""
@@ -4235,7 +4235,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -4244,7 +4244,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4298,7 +4298,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -4307,7 +4307,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderDate"
-msgstr "OrderDate"
+msgstr "ДатаЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderDate"
-msgstr "OrderDate"
+msgstr "ДатаЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4352,7 +4352,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchaseOrderNumber"
-msgstr "PurchaseOrderNumber"
+msgstr "НомерЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchOrdNo"
-msgstr "PurchOrdNo"
+msgstr "НомЗамовл"
#: TableWizard.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RequiredByDate"
-msgstr "RequiredByDate"
+msgstr "НеобхідноНаДату"
#: TableWizard.xcu
msgctxt ""
@@ -4379,7 +4379,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RequirDate"
-msgstr "RequirDate"
+msgstr "НеобхДат"
#: TableWizard.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PromisedByDate"
-msgstr "PromisedByDate"
+msgstr "ОбіцяноНаДату"
#: TableWizard.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PromisDate"
-msgstr "PromisDate"
+msgstr "ОбіцянДат"
#: TableWizard.xcu
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipName"
-msgstr "ShipName"
+msgstr "Об'єктДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipName"
-msgstr "ShipName"
+msgstr "Об'єктДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipAddress"
-msgstr "ShipAddress"
+msgstr "АдресаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4433,7 +4433,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipAddres"
-msgstr "ShipAddres"
+msgstr "АдресаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipCity"
-msgstr "ShipCity"
+msgstr "МістоДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipCity"
-msgstr "ShipCity"
+msgstr "МістоДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4460,7 +4460,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipStateOrProvince"
-msgstr "ShipStateOrProvince"
+msgstr "ОбластьАбоКрайДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShpStatPro"
-msgstr "ShpStatPro"
+msgstr "ОблКрайДост"
#: TableWizard.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipPostalCode"
-msgstr "ShipPostalCode"
+msgstr "ПоштовийІндексДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4487,7 +4487,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipPostlC"
-msgstr "ShipPostlC"
+msgstr "ПоштІндДост"
#: TableWizard.xcu
msgctxt ""
@@ -4496,7 +4496,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipCountryOrRegion"
-msgstr "ShipCountryOrRegion"
+msgstr "КраїнаАбоРегіонДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4505,7 +4505,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipCouReg"
-msgstr "ShipCouReg"
+msgstr "КраїРегДост"
#: TableWizard.xcu
msgctxt ""
@@ -4514,7 +4514,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipPhoneNumber"
-msgstr "ShipPhoneNumber"
+msgstr "НомерТелефонуДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4523,7 +4523,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipPhonNo"
-msgstr "ShipPhonNo"
+msgstr "НомТелДост"
#: TableWizard.xcu
msgctxt ""
@@ -4532,7 +4532,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipDate"
-msgstr "ShipDate"
+msgstr "ДатаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4541,7 +4541,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipDate"
-msgstr "ShipDate"
+msgstr "ДатаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShippingMethodID"
-msgstr "ShippingMethodID"
+msgstr "КодМетодуДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -4559,7 +4559,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipMethID"
-msgstr "ShipMethID"
+msgstr "КодМетДост"
#: TableWizard.xcu
msgctxt ""
@@ -4568,7 +4568,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FreightCharge"
-msgstr "FreightCharge"
+msgstr "ВартістьПеревезень"
#: TableWizard.xcu
msgctxt ""
@@ -4577,7 +4577,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FreightCharge"
-msgstr "FreightCharge"
+msgstr "ВартістьПеревезень"
#: TableWizard.xcu
msgctxt ""
@@ -4586,7 +4586,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SalesTaxRate"
-msgstr "SalesTaxRate"
+msgstr "ПодатокЗПродажів"
#: TableWizard.xcu
msgctxt ""
@@ -4595,7 +4595,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SalesTaxRt"
-msgstr "SalesTaxRt"
+msgstr "ПодатЗПрод"
#: TableWizard.xcu
msgctxt ""
@@ -4604,7 +4604,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderDetails"
-msgstr "Подробиці_Замовлень"
+msgstr "ПодробиціЗамовлень"
#: TableWizard.xcu
msgctxt ""
@@ -4613,7 +4613,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderDetailID"
-msgstr "OrderDetailID"
+msgstr "КодПодробицьЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4622,7 +4622,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderDetID"
-msgstr "OrderDetID"
+msgstr "КодПодЗам"
#: TableWizard.xcu
msgctxt ""
@@ -4631,7 +4631,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4640,7 +4640,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4649,7 +4649,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -4658,7 +4658,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -4667,7 +4667,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "ДатаПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -4676,7 +4676,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "ДатаПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -4685,7 +4685,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Кількість"
#: TableWizard.xcu
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Кількість"
#: TableWizard.xcu
msgctxt ""
@@ -4703,7 +4703,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ВартістьОдиниці"
#: TableWizard.xcu
msgctxt ""
@@ -4712,7 +4712,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ВартістьОдиниці"
#: TableWizard.xcu
msgctxt ""
@@ -4721,7 +4721,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Discount"
-msgstr "Discount"
+msgstr "Знижка"
#: TableWizard.xcu
msgctxt ""
@@ -4730,7 +4730,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Discount"
-msgstr "Discount"
+msgstr "Знижка"
#: TableWizard.xcu
msgctxt ""
@@ -4739,7 +4739,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SalePrice"
-msgstr "SalePrice"
+msgstr "Ціна"
#: TableWizard.xcu
msgctxt ""
@@ -4748,7 +4748,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SalePrice"
-msgstr "SalePrice"
+msgstr "Ціна"
#: TableWizard.xcu
msgctxt ""
@@ -4757,7 +4757,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SalesTax"
-msgstr "SalesTax"
+msgstr "ПодатокЗПродажів"
#: TableWizard.xcu
msgctxt ""
@@ -4766,7 +4766,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SalesTax"
-msgstr "SalesTax"
+msgstr "ПодатокЗПродажів"
#: TableWizard.xcu
msgctxt ""
@@ -4775,7 +4775,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LineTotal"
-msgstr "LineTotal"
+msgstr "Усього"
#: TableWizard.xcu
msgctxt ""
@@ -4784,7 +4784,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LineTotal"
-msgstr "LineTotal"
+msgstr "Усього"
#: TableWizard.xcu
msgctxt ""
@@ -4802,7 +4802,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentID"
-msgstr "PaymentID"
+msgstr "КодПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -4811,7 +4811,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymentID"
-msgstr "PaymentID"
+msgstr "КодПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -4820,7 +4820,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -4829,7 +4829,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WorkorderID"
-msgstr "WorkorderID"
+msgstr "КодНарядуНаРоботу"
#: TableWizard.xcu
msgctxt ""
@@ -4847,7 +4847,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WorkordrID"
-msgstr "WorkordrID"
+msgstr "КодНарядРоб"
#: TableWizard.xcu
msgctxt ""
@@ -4856,7 +4856,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4865,7 +4865,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -4874,7 +4874,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReservationID"
-msgstr "ReservationID"
+msgstr "КодБронювання"
#: TableWizard.xcu
msgctxt ""
@@ -4883,7 +4883,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReservID"
-msgstr "ReservID"
+msgstr "КодБрон"
#: TableWizard.xcu
msgctxt ""
@@ -4892,7 +4892,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MemberID"
-msgstr "MemberID"
+msgstr "КодКористувача"
#: TableWizard.xcu
msgctxt ""
@@ -4901,7 +4901,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MemberID"
-msgstr "MemberID"
+msgstr "КодКористувача"
#: TableWizard.xcu
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RegistrationID"
-msgstr "RegistrationID"
+msgstr "КодРеєстрації"
#: TableWizard.xcu
msgctxt ""
@@ -4919,7 +4919,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RegistraID"
-msgstr "RegistraID"
+msgstr "КодРеєстр"
#: TableWizard.xcu
msgctxt ""
@@ -4928,7 +4928,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -4937,7 +4937,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -4946,7 +4946,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentAmount"
-msgstr "PaymentAmount"
+msgstr "СумаПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -4955,7 +4955,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntAmnt"
-msgstr "PaymntAmnt"
+msgstr "СумПлат"
#: TableWizard.xcu
msgctxt ""
@@ -4964,7 +4964,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentDate"
-msgstr "PaymentDate"
+msgstr "ДатаПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -4973,7 +4973,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntDate"
-msgstr "PaymntDate"
+msgstr "ДатаПлат"
#: TableWizard.xcu
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentMethod"
-msgstr "PaymentMethod"
+msgstr "МетодПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -4991,7 +4991,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntMeth"
-msgstr "PaymntMeth"
+msgstr "МетПлат"
#: TableWizard.xcu
msgctxt ""
@@ -5000,7 +5000,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CheckNumber"
-msgstr "CheckNumber"
+msgstr "НомерЧеку"
#: TableWizard.xcu
msgctxt ""
@@ -5009,7 +5009,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CheckNo"
-msgstr "CheckNo"
+msgstr "НомЧеку"
#: TableWizard.xcu
msgctxt ""
@@ -5018,7 +5018,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardType"
-msgstr "CreditCardType"
+msgstr "ТипКредитноїКартки"
#: TableWizard.xcu
msgctxt ""
@@ -5027,7 +5027,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCardType"
-msgstr "CCardType"
+msgstr "ТипКредКарт"
#: TableWizard.xcu
msgctxt ""
@@ -5036,7 +5036,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardNumber"
-msgstr "CreditCardNumber"
+msgstr "НомерКредитноїКартки"
#: TableWizard.xcu
msgctxt ""
@@ -5045,7 +5045,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCardNo"
-msgstr "CCardNo"
+msgstr "НомКрКарт"
#: TableWizard.xcu
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Cardholder"
-msgstr "Cardholder"
+msgstr "ВласникКартки"
#: TableWizard.xcu
msgctxt ""
@@ -5063,7 +5063,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Cardholder"
-msgstr "Cardholder"
+msgstr "ВласникКартки"
#: TableWizard.xcu
msgctxt ""
@@ -5072,7 +5072,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardExpDate"
-msgstr "CreditCardExpDate"
+msgstr "ДатаАнуляціїКредитноїКартки"
#: TableWizard.xcu
msgctxt ""
@@ -5081,7 +5081,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCExpDate"
-msgstr "CCExpDate"
+msgstr "ДатАнулКрКарт"
#: TableWizard.xcu
msgctxt ""
@@ -5090,7 +5090,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardAuthorizationNumber"
-msgstr "CreditCardAuthorizationNumber"
+msgstr "НомерАвторизаціїКредитноїКартки"
#: TableWizard.xcu
msgctxt ""
@@ -5099,7 +5099,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCAuthorNo"
-msgstr "CCAuthorNo"
+msgstr "НомАвторизКрКарт"
#: TableWizard.xcu
msgctxt ""
@@ -5108,7 +5108,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentTerms"
-msgstr "PaymentTerms"
+msgstr "УмовиОплати"
#: TableWizard.xcu
msgctxt ""
@@ -5117,7 +5117,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntTerm"
-msgstr "PaymntTerm"
+msgstr "УмовОпл"
#: TableWizard.xcu
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentMethodID"
-msgstr "PaymentMethodID"
+msgstr "КодМетодуПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -5135,7 +5135,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymMethID"
-msgstr "PaymMethID"
+msgstr "КодМетПлат"
#: TableWizard.xcu
msgctxt ""
@@ -5171,7 +5171,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvoiceID"
-msgstr "InvoiceID"
+msgstr "КодРахунка"
#: TableWizard.xcu
msgctxt ""
@@ -5180,7 +5180,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InvoiceID"
-msgstr "InvoiceID"
+msgstr "КодРахунка"
#: TableWizard.xcu
msgctxt ""
@@ -5189,7 +5189,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -5198,7 +5198,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -5207,7 +5207,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -5216,7 +5216,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -5225,7 +5225,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DeliveryID"
-msgstr "DeliveryID"
+msgstr "КодДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -5234,7 +5234,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeliveryID"
-msgstr "DeliveryID"
+msgstr "КодДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -5243,7 +5243,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Status"
-msgstr "Status"
+msgstr "Стан"
#: TableWizard.xcu
msgctxt ""
@@ -5252,7 +5252,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Status"
-msgstr "Status"
+msgstr "Стан"
#: TableWizard.xcu
msgctxt ""
@@ -5261,7 +5261,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvoiceDate"
-msgstr "InvoiceDate"
+msgstr "ДатаРахунка"
#: TableWizard.xcu
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InvoiceDat"
-msgstr "InvoiceDat"
+msgstr "ДатаРахунка"
#: TableWizard.xcu
msgctxt ""
@@ -5279,7 +5279,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Salesperson"
-msgstr "Salesperson"
+msgstr "Продавець"
#: TableWizard.xcu
msgctxt ""
@@ -5288,7 +5288,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Salespersn"
-msgstr "Salespersn"
+msgstr "Продавець"
#: TableWizard.xcu
msgctxt ""
@@ -5297,7 +5297,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipDate"
-msgstr "ShipDate"
+msgstr "ДатаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -5306,7 +5306,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipDate"
-msgstr "ShipDate"
+msgstr "ДатаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -5315,7 +5315,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShippedTo"
-msgstr "ShippedTo"
+msgstr "ДоставкаДо"
#: TableWizard.xcu
msgctxt ""
@@ -5324,7 +5324,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShippedTo"
-msgstr "ShippedTo"
+msgstr "ДоставкаДо"
#: TableWizard.xcu
msgctxt ""
@@ -5333,7 +5333,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShippedVia"
-msgstr "ShippedVia"
+msgstr "ДоставкаЧерез"
#: TableWizard.xcu
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShippedVia"
-msgstr "ShippedVia"
+msgstr "ДоставкаЧерез"
#: TableWizard.xcu
msgctxt ""
@@ -5351,7 +5351,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShippingCost"
-msgstr "ShippingCost"
+msgstr "ВартістьДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -5360,7 +5360,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipCost"
-msgstr "ShipCost"
+msgstr "ВартДост"
#: TableWizard.xcu
msgctxt ""
@@ -5387,7 +5387,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvoiceDetails"
-msgstr "Подробиці_рахунків"
+msgstr "ПодробиціРахунків"
#: TableWizard.xcu
msgctxt ""
@@ -5396,7 +5396,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvoiceDetailID"
-msgstr "InvoiceDetailID"
+msgstr "КодПодробицьРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -5405,7 +5405,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InvoiDetID"
-msgstr "InvoiDetID"
+msgstr "КодПодРах"
#: TableWizard.xcu
msgctxt ""
@@ -5414,7 +5414,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvoiceID"
-msgstr "InvoiceID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -5423,7 +5423,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InvoiceID"
-msgstr "InvoiceID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -5432,7 +5432,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -5441,7 +5441,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -5450,7 +5450,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -5459,7 +5459,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "КодПродукту"
#: TableWizard.xcu
msgctxt ""
@@ -5468,7 +5468,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Кількість"
#: TableWizard.xcu
msgctxt ""
@@ -5477,7 +5477,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Quantity"
-msgstr "Quantity"
+msgstr "Кількість"
#: TableWizard.xcu
msgctxt ""
@@ -5486,7 +5486,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ВартістьОдиниці"
#: TableWizard.xcu
msgctxt ""
@@ -5495,7 +5495,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ВартістьОдиниці"
#: TableWizard.xcu
msgctxt ""
@@ -5504,7 +5504,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Discount"
-msgstr "Discount"
+msgstr "Знижка"
#: TableWizard.xcu
msgctxt ""
@@ -5513,7 +5513,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Discount"
-msgstr "Discount"
+msgstr "Знижка"
#: TableWizard.xcu
msgctxt ""
@@ -5522,7 +5522,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentTerms"
-msgstr "PaymentTerms"
+msgstr "УмовиОплати"
#: TableWizard.xcu
msgctxt ""
@@ -5531,7 +5531,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntTerm"
-msgstr "PaymntTerm"
+msgstr "УмовОпл"
#: TableWizard.xcu
msgctxt ""
@@ -5549,7 +5549,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -5558,7 +5558,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -5567,7 +5567,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProjectName"
-msgstr "ProjectName"
+msgstr "НазваПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -5576,7 +5576,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProjctName"
-msgstr "ProjctName"
+msgstr "НазваПрокту"
#: TableWizard.xcu
msgctxt ""
@@ -5585,7 +5585,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProjectDescription"
-msgstr "ProjectDescription"
+msgstr "ОписПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -5594,7 +5594,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProjctDscr"
-msgstr "ProjctDscr"
+msgstr "ОпсПркту"
#: TableWizard.xcu
msgctxt ""
@@ -5603,7 +5603,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ClientID"
-msgstr "ClientID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -5612,7 +5612,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ClientID"
-msgstr "ClientID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -5621,7 +5621,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchaseOrderNumber"
-msgstr "PurchaseOrderNumber"
+msgstr "НомерЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchOrdNo"
-msgstr "PurchOrdNo"
+msgstr "НомЗамовл"
#: TableWizard.xcu
msgctxt ""
@@ -5639,7 +5639,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TotalBillingEstimate"
-msgstr "TotalBillingEstimate"
+msgstr "ЗагальнийКошторис"
#: TableWizard.xcu
msgctxt ""
@@ -5648,7 +5648,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TotBillEst"
-msgstr "TotBillEst"
+msgstr "ЗагалКошт"
#: TableWizard.xcu
msgctxt ""
@@ -5657,7 +5657,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -5666,7 +5666,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -5675,7 +5675,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BeginDate"
-msgstr "BeginDate"
+msgstr "ДатаПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -5684,7 +5684,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BeginDate"
-msgstr "BeginDate"
+msgstr "ДатаПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -5693,7 +5693,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EndDate"
-msgstr "EndDate"
+msgstr "ДатаЗакінчення"
#: TableWizard.xcu
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EndDate"
-msgstr "EndDate"
+msgstr "ДатаКінця"
#: TableWizard.xcu
msgctxt ""
@@ -5720,7 +5720,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EventID"
-msgstr "EventID"
+msgstr "КодПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5729,7 +5729,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EventID"
-msgstr "EventID"
+msgstr "КодПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5738,7 +5738,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EventName"
-msgstr "EventName"
+msgstr "НазваПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5747,7 +5747,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EventName"
-msgstr "EventName"
+msgstr "НазваПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5756,7 +5756,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EventDescription"
-msgstr "EventDescription"
+msgstr "ОписПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5765,7 +5765,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EventDescr"
-msgstr "EventDescr"
+msgstr "ОписПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5774,7 +5774,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EventTypeID"
-msgstr "EventTypeID"
+msgstr "КодТипуПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5783,7 +5783,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EventTypID"
-msgstr "EventTypID"
+msgstr "КодТипПодії"
#: TableWizard.xcu
msgctxt ""
@@ -5792,7 +5792,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -5801,7 +5801,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -5810,7 +5810,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Status"
-msgstr "Status"
+msgstr "Стан"
#: TableWizard.xcu
msgctxt ""
@@ -5819,7 +5819,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Status"
-msgstr "Status"
+msgstr "Стан"
#: TableWizard.xcu
msgctxt ""
@@ -5828,7 +5828,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Location"
-msgstr "Location"
+msgstr "Розташування"
#: TableWizard.xcu
msgctxt ""
@@ -5837,7 +5837,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Location"
-msgstr "Location"
+msgstr "Розташування"
#: TableWizard.xcu
msgctxt ""
@@ -5846,7 +5846,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BeginDate"
-msgstr "BeginDate"
+msgstr "ДатаПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -5855,7 +5855,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BeginDate"
-msgstr "BeginDate"
+msgstr "ДатаПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -5864,7 +5864,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BeginTime"
-msgstr "BeginTime"
+msgstr "ЧасПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -5873,7 +5873,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BeginTime"
-msgstr "BeginTime"
+msgstr "ЧасПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -5882,7 +5882,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EndDate"
-msgstr "EndDate"
+msgstr "ДатаКінця"
#: TableWizard.xcu
msgctxt ""
@@ -5891,7 +5891,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EndDate"
-msgstr "EndDate"
+msgstr "ДатаКінця"
#: TableWizard.xcu
msgctxt ""
@@ -5900,7 +5900,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EndTime"
-msgstr "EndTime"
+msgstr "ЧасКінця"
#: TableWizard.xcu
msgctxt ""
@@ -5909,7 +5909,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EndTime"
-msgstr "EndTime"
+msgstr "ЧасКінця"
#: TableWizard.xcu
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RequiredStaffing"
-msgstr "RequiredStaffing"
+msgstr "КількістьУчасників"
#: TableWizard.xcu
msgctxt ""
@@ -5927,7 +5927,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReqStaffng"
-msgstr "ReqStaffng"
+msgstr "КількУчасн"
#: TableWizard.xcu
msgctxt ""
@@ -5936,7 +5936,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Confirmation"
-msgstr "Confirmation"
+msgstr "Підтвердження"
#: TableWizard.xcu
msgctxt ""
@@ -5945,7 +5945,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Confirmation"
-msgstr "Confirmation"
+msgstr "Підтвердження"
#: TableWizard.xcu
msgctxt ""
@@ -5954,7 +5954,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AvailableSpaces"
-msgstr "AvailableSpaces"
+msgstr "КількістьМісць"
#: TableWizard.xcu
msgctxt ""
@@ -5963,7 +5963,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AvailSpace"
-msgstr "AvailSpace"
+msgstr "КількМісць"
#: TableWizard.xcu
msgctxt ""
@@ -5972,7 +5972,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CostPerPerson"
-msgstr "CostPerPerson"
+msgstr "ВартістьНаОсобу"
#: TableWizard.xcu
msgctxt ""
@@ -5981,7 +5981,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CostPPersn"
-msgstr "CostPPersn"
+msgstr "ВартОсобу"
#: TableWizard.xcu
msgctxt ""
@@ -6017,7 +6017,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReservationID"
-msgstr "ReservationID"
+msgstr "КодБронювання"
#: TableWizard.xcu
msgctxt ""
@@ -6026,7 +6026,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReservID"
-msgstr "ReservID"
+msgstr "КодБрон"
#: TableWizard.xcu
msgctxt ""
@@ -6035,7 +6035,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -6044,7 +6044,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -6053,7 +6053,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EventID"
-msgstr "EventID"
+msgstr "КодПодії"
#: TableWizard.xcu
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EventID"
-msgstr "EventID"
+msgstr "КодПодії"
#: TableWizard.xcu
msgctxt ""
@@ -6071,7 +6071,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6080,7 +6080,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6089,7 +6089,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "QuantityReserved"
-msgstr "QuantityReserved"
+msgstr "КількістьБронювань"
#: TableWizard.xcu
msgctxt ""
@@ -6098,7 +6098,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "QuntityRes"
-msgstr "QuntityRes"
+msgstr "КількБрон"
#: TableWizard.xcu
msgctxt ""
@@ -6107,7 +6107,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReservationDate"
-msgstr "ReservationDate"
+msgstr "ДатаБронювання"
#: TableWizard.xcu
msgctxt ""
@@ -6116,7 +6116,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReservDate"
-msgstr "ReservDate"
+msgstr "ДатаБроню"
#: TableWizard.xcu
msgctxt ""
@@ -6125,7 +6125,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReservationTime"
-msgstr "ReservationTime"
+msgstr "ЧасБронювання"
#: TableWizard.xcu
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReservTime"
-msgstr "ReservTime"
+msgstr "ЧасБроню"
#: TableWizard.xcu
msgctxt ""
@@ -6143,7 +6143,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepositDue"
-msgstr "DepositDue"
+msgstr "Завдаток"
#: TableWizard.xcu
msgctxt ""
@@ -6152,7 +6152,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DepositDue"
-msgstr "DepositDue"
+msgstr "Завдаток"
#: TableWizard.xcu
msgctxt ""
@@ -6161,7 +6161,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TotalDue"
-msgstr "TotalDue"
+msgstr "ЗагальнаСума"
#: TableWizard.xcu
msgctxt ""
@@ -6170,7 +6170,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TotalDue"
-msgstr "TotalDue"
+msgstr "ЗагальнаСума"
#: TableWizard.xcu
msgctxt ""
@@ -6179,7 +6179,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AmountPaid"
-msgstr "AmountPaid"
+msgstr "СплаченаСума"
#: TableWizard.xcu
msgctxt ""
@@ -6188,7 +6188,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AmountPaid"
-msgstr "AmountPaid"
+msgstr "СплаченаСума"
#: TableWizard.xcu
msgctxt ""
@@ -6197,7 +6197,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Confirmation"
-msgstr "Confirmation"
+msgstr "Підтвердження"
#: TableWizard.xcu
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Confirmation"
-msgstr "Confirmation"
+msgstr "Підтвердження"
#: TableWizard.xcu
msgctxt ""
@@ -6242,7 +6242,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeBilledID"
-msgstr "TimeBilledID"
+msgstr "КодОплачуванихГодин"
#: TableWizard.xcu
msgctxt ""
@@ -6251,7 +6251,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimeBillID"
-msgstr "TimeBillID"
+msgstr "КодОплГодин"
#: TableWizard.xcu
msgctxt ""
@@ -6260,7 +6260,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -6269,7 +6269,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -6278,7 +6278,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -6287,7 +6287,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПроекту"
#: TableWizard.xcu
msgctxt ""
@@ -6296,7 +6296,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6305,7 +6305,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6314,7 +6314,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BillingDate"
-msgstr "BillingDate"
+msgstr "ДатаРозрахунку"
#: TableWizard.xcu
msgctxt ""
@@ -6323,7 +6323,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BillingDate"
-msgstr "BillingDate"
+msgstr "ДатаРозрахунку"
#: TableWizard.xcu
msgctxt ""
@@ -6332,7 +6332,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RatePerHour"
-msgstr "RatePerHour"
+msgstr "ВартістьЗаГодину"
#: TableWizard.xcu
msgctxt ""
@@ -6341,7 +6341,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RatePrHour"
-msgstr "RatePrHour"
+msgstr "ВартістьГодини"
#: TableWizard.xcu
msgctxt ""
@@ -6350,7 +6350,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BillableHours"
-msgstr "BillableHours"
+msgstr "ОплачуваніГодини"
#: TableWizard.xcu
msgctxt ""
@@ -6359,7 +6359,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BillablHrs"
-msgstr "BillablHrs"
+msgstr "ОплачГодин"
#: TableWizard.xcu
msgctxt ""
@@ -6395,7 +6395,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ExpenseID"
-msgstr "ExpenseID"
+msgstr "КодВитрат"
#: TableWizard.xcu
msgctxt ""
@@ -6404,7 +6404,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ExpenseID"
-msgstr "ExpenseID"
+msgstr "КодВитрат"
#: TableWizard.xcu
msgctxt ""
@@ -6413,7 +6413,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ExpenseType"
-msgstr "ExpenseType"
+msgstr "ТипВитрат"
#: TableWizard.xcu
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ExpensType"
-msgstr "ExpensType"
+msgstr "ТипВитр"
#: TableWizard.xcu
msgctxt ""
@@ -6431,7 +6431,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Purpose"
-msgstr "Purpose"
+msgstr "Призначення"
#: TableWizard.xcu
msgctxt ""
@@ -6440,7 +6440,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Purpose"
-msgstr "Purpose"
+msgstr "Призначення"
#: TableWizard.xcu
msgctxt ""
@@ -6449,7 +6449,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6458,7 +6458,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6467,7 +6467,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr "DatePurchased"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -6476,7 +6476,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurchd"
-msgstr "DatePurchd"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -6485,7 +6485,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateSubmitted"
-msgstr "DateSubmitted"
+msgstr "ДатаПодання"
#: TableWizard.xcu
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateSubmit"
-msgstr "DateSubmit"
+msgstr "ДатаПодан"
#: TableWizard.xcu
msgctxt ""
@@ -6503,7 +6503,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AmountSpent"
-msgstr "AmountSpent"
+msgstr "СумаВитрат"
#: TableWizard.xcu
msgctxt ""
@@ -6512,7 +6512,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AmountSpnt"
-msgstr "AmountSpnt"
+msgstr "СумаВитр"
#: TableWizard.xcu
msgctxt ""
@@ -6521,7 +6521,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AdvanceAmount"
-msgstr "AdvanceAmount"
+msgstr "СумаЗавдатку"
#: TableWizard.xcu
msgctxt ""
@@ -6530,7 +6530,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AdvnceAmnt"
-msgstr "AdvnceAmnt"
+msgstr "СумЗавд"
#: TableWizard.xcu
msgctxt ""
@@ -6539,7 +6539,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentMethod"
-msgstr "PaymentMethod"
+msgstr "МетодПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -6548,7 +6548,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntMeth"
-msgstr "PaymntMeth"
+msgstr "МетПлат"
#: TableWizard.xcu
msgctxt ""
@@ -6584,7 +6584,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DeliveryID"
-msgstr "DeliveryID"
+msgstr "КодДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -6593,7 +6593,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeliveryID"
-msgstr "DeliveryID"
+msgstr "КодДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -6602,7 +6602,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -6611,7 +6611,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКлієнта"
#: TableWizard.xcu
msgctxt ""
@@ -6620,7 +6620,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -6629,7 +6629,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "OrderID"
-msgstr "OrderID"
+msgstr "КодЗамовлення"
#: TableWizard.xcu
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6647,7 +6647,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -6656,7 +6656,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShippedFrom"
-msgstr "ShippedFrom"
+msgstr "ДоставкаЗ"
#: TableWizard.xcu
msgctxt ""
@@ -6665,7 +6665,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShippedFrm"
-msgstr "ShippedFrm"
+msgstr "ДоставЗ"
#: TableWizard.xcu
msgctxt ""
@@ -6674,7 +6674,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShippedVia"
-msgstr "ShippedVia"
+msgstr "ДоставкаЧерез"
#: TableWizard.xcu
msgctxt ""
@@ -6683,7 +6683,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShippedVia"
-msgstr "ShippedVia"
+msgstr "ДоставкаЧерез"
#: TableWizard.xcu
msgctxt ""
@@ -6692,7 +6692,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TrackingCode"
-msgstr "TrackingCode"
+msgstr "КодВідстеження"
#: TableWizard.xcu
msgctxt ""
@@ -6701,7 +6701,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TrckngCode"
-msgstr "TrckngCode"
+msgstr "КодВідстеж"
#: TableWizard.xcu
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipDate"
-msgstr "ShipDate"
+msgstr "ДатаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -6719,7 +6719,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipDate"
-msgstr "ShipDate"
+msgstr "ДатаДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -6728,7 +6728,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipperPhoneNumber"
-msgstr "ShipperPhoneNumber"
+msgstr "ТелефонДоставки"
#: TableWizard.xcu
msgctxt ""
@@ -6737,7 +6737,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipPhonNo"
-msgstr "ShipPhonNo"
+msgstr "НомТелДост"
#: TableWizard.xcu
msgctxt ""
@@ -6746,7 +6746,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationAddress"
-msgstr "DestinationAddress"
+msgstr "АдресаПризначення"
#: TableWizard.xcu
msgctxt ""
@@ -6755,7 +6755,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DestAddres"
-msgstr "DestAddres"
+msgstr "АдрПризнач"
#: TableWizard.xcu
msgctxt ""
@@ -6764,7 +6764,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationCity"
-msgstr "DestinationCity"
+msgstr "МістоПризначення"
#: TableWizard.xcu
msgctxt ""
@@ -6773,7 +6773,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DestinCity"
-msgstr "DestinCity"
+msgstr "МістоПризнач"
#: TableWizard.xcu
msgctxt ""
@@ -6782,7 +6782,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationStateProvince"
-msgstr "DestinationStateProvince"
+msgstr "ОбластьКрайПризначення"
#: TableWizard.xcu
msgctxt ""
@@ -6791,7 +6791,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DestStaPro"
-msgstr "DestStaPro"
+msgstr "ОблПризн"
#: TableWizard.xcu
msgctxt ""
@@ -6800,7 +6800,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationPostalCode"
-msgstr "DestinationPostalCode"
+msgstr "ПоштовийІндексПризначення"
#: TableWizard.xcu
msgctxt ""
@@ -6809,7 +6809,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DestPstCde"
-msgstr "DestPstCde"
+msgstr "ПоштІндПризн"
#: TableWizard.xcu
msgctxt ""
@@ -6818,7 +6818,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationCountryRegion"
-msgstr "DestinationCountryRegion"
+msgstr "КраїнаРегіонПризначення"
#: TableWizard.xcu
msgctxt ""
@@ -6827,7 +6827,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DestCouReg"
-msgstr "DestCouReg"
+msgstr "КраїнаПризн"
#: TableWizard.xcu
msgctxt ""
@@ -6836,7 +6836,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ArrivalDate"
-msgstr "ArrivalDate"
+msgstr "ДатаПрибуття"
#: TableWizard.xcu
msgctxt ""
@@ -6845,7 +6845,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ArrivlDate"
-msgstr "ArrivlDate"
+msgstr "ДатаПриб"
#: TableWizard.xcu
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ArrivalTime"
-msgstr "ArrivalTime"
+msgstr "ЧасПрибуття"
#: TableWizard.xcu
msgctxt ""
@@ -6863,7 +6863,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ArrivlTime"
-msgstr "ArrivlTime"
+msgstr "ЧасПриб"
#: TableWizard.xcu
msgctxt ""
@@ -6872,7 +6872,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CurrentLocation"
-msgstr "CurrentLocation"
+msgstr "ПоточнеМісцеперебування"
#: TableWizard.xcu
msgctxt ""
@@ -6881,7 +6881,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CurrLocatn"
-msgstr "CurrLocatn"
+msgstr "ПотМісце"
#: TableWizard.xcu
msgctxt ""
@@ -6890,7 +6890,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PackageDimensions"
-msgstr "PackageDimensions"
+msgstr "РозміриПакунку"
#: TableWizard.xcu
msgctxt ""
@@ -6899,7 +6899,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PackDimens"
-msgstr "PackDimens"
+msgstr "РозмірПак"
#: TableWizard.xcu
msgctxt ""
@@ -6908,7 +6908,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PackageWeight"
-msgstr "PackageWeight"
+msgstr "ВагаПакунку"
#: TableWizard.xcu
msgctxt ""
@@ -6917,7 +6917,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PackWeight"
-msgstr "PackWeight"
+msgstr "ВагаПак"
#: TableWizard.xcu
msgctxt ""
@@ -6926,7 +6926,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PickUpLocation"
-msgstr "PickUpLocation"
+msgstr "МісцеПрибуття"
#: TableWizard.xcu
msgctxt ""
@@ -6935,7 +6935,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PickUpLoca"
-msgstr "PickUpLoca"
+msgstr "МісцеПриб"
#: TableWizard.xcu
msgctxt ""
@@ -6944,7 +6944,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PickUpDate"
-msgstr "PickUpDate"
+msgstr "ДатаПрибуття"
#: TableWizard.xcu
msgctxt ""
@@ -6953,7 +6953,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PickUpDate"
-msgstr "PickUpDate"
+msgstr "ДатаПриб"
#: TableWizard.xcu
msgctxt ""
@@ -6962,7 +6962,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PickUpTime"
-msgstr "PickUpTime"
+msgstr "ЧасПрибуття"
#: TableWizard.xcu
msgctxt ""
@@ -6971,7 +6971,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PickUpTime"
-msgstr "PickUpTime"
+msgstr "ЧасПриб"
#: TableWizard.xcu
msgctxt ""
@@ -6980,7 +6980,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReceivedBy"
-msgstr "ReceivedBy"
+msgstr "Отримувач"
#: TableWizard.xcu
msgctxt ""
@@ -6989,7 +6989,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReceivedBy"
-msgstr "ReceivedBy"
+msgstr "Отримувач"
#: TableWizard.xcu
msgctxt ""
@@ -6998,7 +6998,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FreightCharge"
-msgstr "FreightCharge"
+msgstr "ВартістьПеревезень"
#: TableWizard.xcu
msgctxt ""
@@ -7007,7 +7007,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FrghtChrge"
-msgstr "FrghtChrge"
+msgstr "ВартПеревез"
#: TableWizard.xcu
msgctxt ""
@@ -7043,7 +7043,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AssetID"
-msgstr "AssetID"
+msgstr "КодАктиву"
#: TableWizard.xcu
msgctxt ""
@@ -7052,7 +7052,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AssetID"
-msgstr "AssetID"
+msgstr "КодАктиву"
#: TableWizard.xcu
msgctxt ""
@@ -7070,7 +7070,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr "Descrption"
+msgstr "Опис"
#: TableWizard.xcu
msgctxt ""
@@ -7079,7 +7079,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -7088,7 +7088,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -7097,7 +7097,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AssetCategoryID"
-msgstr "AssetCategoryID"
+msgstr "КодКатегоріїАктиву"
#: TableWizard.xcu
msgctxt ""
@@ -7106,7 +7106,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AssetCatID"
-msgstr "AssetCatID"
+msgstr "КодКатАктиву"
#: TableWizard.xcu
msgctxt ""
@@ -7115,7 +7115,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StatusID"
-msgstr "StatusID"
+msgstr "КодСтану"
#: TableWizard.xcu
msgctxt ""
@@ -7124,7 +7124,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StatusID"
-msgstr "StatusID"
+msgstr "КодСтану"
#: TableWizard.xcu
msgctxt ""
@@ -7133,7 +7133,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepartmentID"
-msgstr "DepartmentID"
+msgstr "КодВідділу"
#: TableWizard.xcu
msgctxt ""
@@ -7142,7 +7142,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprtmntID"
-msgstr "DeprtmntID"
+msgstr "КодВідділу"
#: TableWizard.xcu
msgctxt ""
@@ -7151,7 +7151,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "VendorID"
-msgstr "VendorID"
+msgstr "КодВиробника"
#: TableWizard.xcu
msgctxt ""
@@ -7160,7 +7160,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "VendorID"
-msgstr "VendorID"
+msgstr "КодВиробника"
#: TableWizard.xcu
msgctxt ""
@@ -7169,7 +7169,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Виріб"
#: TableWizard.xcu
msgctxt ""
@@ -7178,7 +7178,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Виріб"
#: TableWizard.xcu
msgctxt ""
@@ -7187,7 +7187,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Model"
-msgstr "Model"
+msgstr "Модель"
#: TableWizard.xcu
msgctxt ""
@@ -7196,7 +7196,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Model"
-msgstr "Model"
+msgstr "Модель"
#: TableWizard.xcu
msgctxt ""
@@ -7205,7 +7205,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ModelNumber"
-msgstr "ModelNumber"
+msgstr "НомерМоделі"
#: TableWizard.xcu
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ModelNo"
-msgstr "ModelNo"
+msgstr "НомМоделі"
#: TableWizard.xcu
msgctxt ""
@@ -7223,7 +7223,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SerialNumber"
-msgstr "SerialNumber"
+msgstr "СерійнийНомер"
#: TableWizard.xcu
msgctxt ""
@@ -7232,7 +7232,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr "SerialNo"
+msgstr "СерійнийНом"
#: TableWizard.xcu
msgctxt ""
@@ -7241,7 +7241,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BarcodeNumber"
-msgstr "BarcodeNumber"
+msgstr "НомерШтрихкоду"
#: TableWizard.xcu
msgctxt ""
@@ -7250,7 +7250,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BarcodeNo"
-msgstr "BarcodeNo"
+msgstr "НомШтрихкоду"
#: TableWizard.xcu
msgctxt ""
@@ -7259,7 +7259,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateAcquired"
-msgstr "DateAcquired"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -7268,7 +7268,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateAcquir"
-msgstr "DateAcquir"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -7277,7 +7277,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "ДатаПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -7286,7 +7286,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "ДатаПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -7295,7 +7295,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr "PurchasePrice"
+msgstr "ЦінаЗакупки"
#: TableWizard.xcu
msgctxt ""
@@ -7304,7 +7304,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr "PurchPrice"
+msgstr "ЦінаЗакуп"
#: TableWizard.xcu
msgctxt ""
@@ -7313,7 +7313,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepreciationMethod"
-msgstr "DepreciationMethod"
+msgstr "МетодАмортизації"
#: TableWizard.xcu
msgctxt ""
@@ -7322,7 +7322,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprecMeth"
-msgstr "DeprecMeth"
+msgstr "МетодАморт"
#: TableWizard.xcu
msgctxt ""
@@ -7331,7 +7331,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepreciableLife"
-msgstr "DepreciableLife"
+msgstr "ТермінАмортизації"
#: TableWizard.xcu
msgctxt ""
@@ -7340,7 +7340,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DeprecLife"
-msgstr "DeprecLife"
+msgstr "ТермАморт"
#: TableWizard.xcu
msgctxt ""
@@ -7349,7 +7349,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SalvageValue"
-msgstr "SalvageValue"
+msgstr "ЗалишковаВартість"
#: TableWizard.xcu
msgctxt ""
@@ -7358,7 +7358,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SalvageVal"
-msgstr "SalvageVal"
+msgstr "ЗалишВарт"
#: TableWizard.xcu
msgctxt ""
@@ -7367,7 +7367,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CurrentValue"
-msgstr "CurrentValue"
+msgstr "ПоточнаВартість"
#: TableWizard.xcu
msgctxt ""
@@ -7376,7 +7376,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CurrentVal"
-msgstr "CurrentVal"
+msgstr "ПоточВарт"
#: TableWizard.xcu
msgctxt ""
@@ -7385,7 +7385,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Comments"
-msgstr "Примітки"
+msgstr "Коментарі"
#: TableWizard.xcu
msgctxt ""
@@ -7394,7 +7394,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Comments"
-msgstr "Примітки"
+msgstr "Коментарі"
#: TableWizard.xcu
msgctxt ""
@@ -7403,7 +7403,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NextScheduledMaintenance"
-msgstr "NextScheduledMaintenance"
+msgstr "НаступнеПлановеОбслуговування"
#: TableWizard.xcu
msgctxt ""
@@ -7412,7 +7412,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NtSchMaint"
-msgstr "NtSchMaint"
+msgstr "НастПлОбсл"
#: TableWizard.xcu
msgctxt ""
@@ -7430,7 +7430,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TransactionID"
-msgstr "TransactionID"
+msgstr "КодТранзакції"
#: TableWizard.xcu
msgctxt ""
@@ -7439,7 +7439,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TrnsactnID"
-msgstr "TrnsactnID"
+msgstr "КодТранз"
#: TableWizard.xcu
msgctxt ""
@@ -7448,7 +7448,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentID"
-msgstr "PaymentID"
+msgstr "КодПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -7457,7 +7457,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymentID"
-msgstr "PaymentID"
+msgstr "КодПлатежу"
#: TableWizard.xcu
msgctxt ""
@@ -7466,7 +7466,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TransactionNumber"
-msgstr "TransactionNumber"
+msgstr "НомерТранзакції"
#: TableWizard.xcu
msgctxt ""
@@ -7475,7 +7475,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TrnsactnNo"
-msgstr "TrnsactnNo"
+msgstr "НомТранз"
#: TableWizard.xcu
msgctxt ""
@@ -7484,7 +7484,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Date"
-msgstr "Date"
+msgstr "Дата"
#: TableWizard.xcu
msgctxt ""
@@ -7493,7 +7493,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Date"
-msgstr "Date"
+msgstr "Дата"
#: TableWizard.xcu
msgctxt ""
@@ -7511,7 +7511,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr "Descrption"
+msgstr "Опис"
#: TableWizard.xcu
msgctxt ""
@@ -7520,7 +7520,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Amount"
-msgstr "Amount"
+msgstr "Сума"
#: TableWizard.xcu
msgctxt ""
@@ -7529,7 +7529,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Amount"
-msgstr "Amount"
+msgstr "Сума"
#: TableWizard.xcu
msgctxt ""
@@ -7538,7 +7538,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountID"
-msgstr "AccountID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -7547,7 +7547,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountID"
-msgstr "AccountID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -7556,7 +7556,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReferenceNumber"
-msgstr "ReferenceNumber"
+msgstr "НомерПосилання"
#: TableWizard.xcu
msgctxt ""
@@ -7565,7 +7565,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RefrenceNo"
-msgstr "RefrenceNo"
+msgstr "НомПосил"
#: TableWizard.xcu
msgctxt ""
@@ -7574,7 +7574,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofUnits"
-msgstr "NumberofUnits"
+msgstr "КількістьОдиниць"
#: TableWizard.xcu
msgctxt ""
@@ -7583,7 +7583,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NumberUnit"
-msgstr "NumberUnit"
+msgstr "КількОдин"
#: TableWizard.xcu
msgctxt ""
@@ -7592,7 +7592,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WithdrawalAmount"
-msgstr "WithdrawalAmount"
+msgstr "СумаВикупу"
#: TableWizard.xcu
msgctxt ""
@@ -7601,7 +7601,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WithdrwAmt"
-msgstr "WithdrwAmt"
+msgstr "СумВикуп"
#: TableWizard.xcu
msgctxt ""
@@ -7610,7 +7610,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DepositAmount"
-msgstr "DepositAmount"
+msgstr "СумаВнеску"
#: TableWizard.xcu
msgctxt ""
@@ -7619,7 +7619,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DepositAmt"
-msgstr "DepositAmt"
+msgstr "СумВнеск"
#: TableWizard.xcu
msgctxt ""
@@ -7628,7 +7628,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InterestEarned"
-msgstr "InterestEarned"
+msgstr "ВідсотокПрибутку"
#: TableWizard.xcu
msgctxt ""
@@ -7637,7 +7637,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "IntrstEarn"
-msgstr "IntrstEarn"
+msgstr "ВідсотПриб"
#: TableWizard.xcu
msgctxt ""
@@ -7646,7 +7646,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BuySellDate"
-msgstr "BuySellDate"
+msgstr "ДатаКупівліПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -7655,7 +7655,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BuySellDat"
-msgstr "BuySellDat"
+msgstr "ДатКупПрод"
#: TableWizard.xcu
msgctxt ""
@@ -7664,7 +7664,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BuySellPrice"
-msgstr "BuySellPrice"
+msgstr "ЦінаКупівліПродажу"
#: TableWizard.xcu
msgctxt ""
@@ -7673,7 +7673,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BuySellPrc"
-msgstr "BuySellPrc"
+msgstr "ЦінКупПрод"
#: TableWizard.xcu
msgctxt ""
@@ -7682,7 +7682,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ServiceCharge"
-msgstr "ServiceCharge"
+msgstr "СплатаОбслуговування"
#: TableWizard.xcu
msgctxt ""
@@ -7691,7 +7691,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ServiChrge"
-msgstr "ServiChrge"
+msgstr "СплатОбсл"
#: TableWizard.xcu
msgctxt ""
@@ -7700,7 +7700,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Taxable"
-msgstr "Taxable"
+msgstr "Оподатковувана"
#: TableWizard.xcu
msgctxt ""
@@ -7709,7 +7709,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Taxable"
-msgstr "Taxable"
+msgstr "Оподатковувана"
#: TableWizard.xcu
msgctxt ""
@@ -7745,7 +7745,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TaskID"
-msgstr "TaskID"
+msgstr "КодЗавдання"
#: TableWizard.xcu
msgctxt ""
@@ -7754,7 +7754,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TaskID"
-msgstr "TaskID"
+msgstr "КодЗавдання"
#: TableWizard.xcu
msgctxt ""
@@ -7772,7 +7772,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr "Descrption"
+msgstr "Опис"
#: TableWizard.xcu
msgctxt ""
@@ -7781,7 +7781,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StartDate"
-msgstr "StartDate"
+msgstr "ДатаПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StartDate"
-msgstr "StartDate"
+msgstr "ДатаПочатку"
#: TableWizard.xcu
msgctxt ""
@@ -7799,7 +7799,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EndDate"
-msgstr "EndDate"
+msgstr "ДатаЗакінчення"
#: TableWizard.xcu
msgctxt ""
@@ -7808,7 +7808,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EndDate"
-msgstr "EndDate"
+msgstr "ДатаЗакінчення"
#: TableWizard.xcu
msgctxt ""
@@ -7835,7 +7835,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeesTasks"
-msgstr "Завдання_робітників"
+msgstr "ЗавданняПрацівників"
#: TableWizard.xcu
msgctxt ""
@@ -7844,7 +7844,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeTaskID"
-msgstr "EmployeeTaskID"
+msgstr "КодЗавданняПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -7853,7 +7853,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmplTaskID"
-msgstr "EmplTaskID"
+msgstr "КодЗавдПрац"
#: TableWizard.xcu
msgctxt ""
@@ -7862,7 +7862,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -7871,7 +7871,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmployeeID"
-msgstr "EmployeeID"
+msgstr "КодПрацівника"
#: TableWizard.xcu
msgctxt ""
@@ -7880,7 +7880,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TaskID"
-msgstr "TaskID"
+msgstr "КодЗавдання"
#: TableWizard.xcu
msgctxt ""
@@ -7889,7 +7889,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TaskID"
-msgstr "TaskID"
+msgstr "КодЗавдання"
#: TableWizard.xcu
msgctxt ""
@@ -7916,7 +7916,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -7925,7 +7925,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -7934,7 +7934,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "CategoryName"
+msgstr "НазваКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -7943,7 +7943,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategName"
-msgstr "CategName"
+msgstr "НазваКатег"
#: TableWizard.xcu
msgctxt ""
@@ -7961,7 +7961,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AddressID"
-msgstr "AddressID"
+msgstr "КодАдреси"
#: TableWizard.xcu
msgctxt ""
@@ -7970,7 +7970,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AddressID"
-msgstr "AddressID"
+msgstr "КодАдреси"
#: TableWizard.xcu
msgctxt ""
@@ -7979,7 +7979,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -7988,7 +7988,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -7997,7 +7997,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -8006,7 +8006,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -8015,7 +8015,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -8024,7 +8024,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Посада"
#: TableWizard.xcu
msgctxt ""
@@ -8033,7 +8033,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -8042,7 +8042,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Address"
+msgstr "Адреса"
#: TableWizard.xcu
msgctxt ""
@@ -8069,7 +8069,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -8078,7 +8078,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПоштовийІндекс"
#: TableWizard.xcu
msgctxt ""
@@ -8087,7 +8087,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ОбластьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -8096,7 +8096,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ОбластьКрай"
#: TableWizard.xcu
msgctxt ""
@@ -8105,7 +8105,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраїнаАбоРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -8114,7 +8114,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "КраїнаРегіон"
#: TableWizard.xcu
msgctxt ""
@@ -8123,7 +8123,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НомерТелефону"
#: TableWizard.xcu
msgctxt ""
@@ -8132,7 +8132,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "Телефон"
#: TableWizard.xcu
msgctxt ""
@@ -8141,7 +8141,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "НомерФаксу"
#: TableWizard.xcu
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "Факс"
#: TableWizard.xcu
msgctxt ""
@@ -8159,7 +8159,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "НомерМобільного"
#: TableWizard.xcu
msgctxt ""
@@ -8168,7 +8168,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "Мобільний"
#: TableWizard.xcu
msgctxt ""
@@ -8177,7 +8177,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "ЕлектроннаАдреса"
#: TableWizard.xcu
msgctxt ""
@@ -8186,7 +8186,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "АдрЕлПошт"
#: TableWizard.xcu
msgctxt ""
@@ -8195,7 +8195,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Salutation"
-msgstr "Salutation"
+msgstr "Вітання"
#: TableWizard.xcu
msgctxt ""
@@ -8204,7 +8204,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Salutation"
-msgstr "Salutation"
+msgstr "Вітання"
#: TableWizard.xcu
msgctxt ""
@@ -8213,7 +8213,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -8231,7 +8231,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SendCard"
-msgstr "SendCard"
+msgstr "НадіслатиЛистівку"
#: TableWizard.xcu
msgctxt ""
@@ -8240,7 +8240,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SendCard"
-msgstr "SendCard"
+msgstr "НадіслатиЛистівку"
#: TableWizard.xcu
msgctxt ""
@@ -8249,7 +8249,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MaritalStatus"
-msgstr "MaritalStatus"
+msgstr "СімейнийСтан"
#: TableWizard.xcu
msgctxt ""
@@ -8258,7 +8258,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MaritlStat"
-msgstr "MaritlStat"
+msgstr "СімСтан"
#: TableWizard.xcu
msgctxt ""
@@ -8267,7 +8267,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SpouseName"
-msgstr "SpouseName"
+msgstr "Ім'яЧоловікаЧиДружини"
#: TableWizard.xcu
msgctxt ""
@@ -8276,7 +8276,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr "SpouseName"
+msgstr "Ім'яЧоловікаЧиДружини"
#: TableWizard.xcu
msgctxt ""
@@ -8303,7 +8303,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Hobbies"
-msgstr "Hobbies"
+msgstr "Захоплення"
#: TableWizard.xcu
msgctxt ""
@@ -8312,7 +8312,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Hobbies"
-msgstr "Hobbies"
+msgstr "Захоплення"
#: TableWizard.xcu
msgctxt ""
@@ -8321,7 +8321,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ChildrenNames"
-msgstr "Імена дітей"
+msgstr "ІменаДітей"
#: TableWizard.xcu
msgctxt ""
@@ -8330,7 +8330,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ChildName"
-msgstr "ChildName"
+msgstr "ІменаДіт"
#: TableWizard.xcu
msgctxt ""
@@ -8339,7 +8339,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -8348,7 +8348,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -8375,7 +8375,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateUpdated"
-msgstr "DateUpdated"
+msgstr "ДатаОновлення"
#: TableWizard.xcu
msgctxt ""
@@ -8384,7 +8384,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatUpdated"
-msgstr "DatUpdated"
+msgstr "ДатаОновл"
#: TableWizard.xcu
msgctxt ""
@@ -8393,7 +8393,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HouseholdInventory"
-msgstr "Домашній_Інвентар"
+msgstr "ПобутовийІнвентар"
#: TableWizard.xcu
msgctxt ""
@@ -8402,7 +8402,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InventoryID"
-msgstr "InventoryID"
+msgstr "КодІнвентарю"
#: TableWizard.xcu
msgctxt ""
@@ -8411,7 +8411,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InventryID"
-msgstr "InventryID"
+msgstr "КодІнвент"
#: TableWizard.xcu
msgctxt ""
@@ -8420,7 +8420,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -8429,7 +8429,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -8438,7 +8438,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RoomID"
-msgstr "RoomID"
+msgstr "КодКімнати"
#: TableWizard.xcu
msgctxt ""
@@ -8447,7 +8447,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RoomID"
-msgstr "RoomID"
+msgstr "КодКімнати"
#: TableWizard.xcu
msgctxt ""
@@ -8456,7 +8456,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Item"
-msgstr "Item"
+msgstr "Елемент"
#: TableWizard.xcu
msgctxt ""
@@ -8465,7 +8465,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Item"
-msgstr "Item"
+msgstr "Елемент"
#: TableWizard.xcu
msgctxt ""
@@ -8474,7 +8474,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ItemType"
-msgstr "ItemType"
+msgstr "ТипЕлемента"
#: TableWizard.xcu
msgctxt ""
@@ -8483,7 +8483,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ItemType"
-msgstr "ItemType"
+msgstr "ТипЕлемента"
#: TableWizard.xcu
msgctxt ""
@@ -8501,7 +8501,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr "Descrption"
+msgstr "Опис"
#: TableWizard.xcu
msgctxt ""
@@ -8510,7 +8510,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Manufacturer"
-msgstr "Manufacturer"
+msgstr "Виробник"
#: TableWizard.xcu
msgctxt ""
@@ -8519,7 +8519,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Manufactur"
-msgstr "Manufactur"
+msgstr "Виробник"
#: TableWizard.xcu
msgctxt ""
@@ -8528,7 +8528,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Model"
-msgstr "Model"
+msgstr "Модель"
#: TableWizard.xcu
msgctxt ""
@@ -8537,7 +8537,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Model"
-msgstr "Model"
+msgstr "Модель"
#: TableWizard.xcu
msgctxt ""
@@ -8546,7 +8546,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ModelNumber"
-msgstr "ModelNumber"
+msgstr "НомерМоделі"
#: TableWizard.xcu
msgctxt ""
@@ -8555,7 +8555,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ModelNo"
-msgstr "ModelNo"
+msgstr "НомМоделі"
#: TableWizard.xcu
msgctxt ""
@@ -8564,7 +8564,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SerialNumber"
-msgstr "SerialNumber"
+msgstr "СерійнийНомер"
#: TableWizard.xcu
msgctxt ""
@@ -8573,7 +8573,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr "SerialNo"
+msgstr "СерійнийНом"
#: TableWizard.xcu
msgctxt ""
@@ -8582,7 +8582,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr "DatePurchased"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -8591,7 +8591,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr "DatePurch"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -8600,7 +8600,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlacePurchased"
-msgstr "PlacePurchased"
+msgstr "МісцеПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -8609,7 +8609,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlacePurch"
-msgstr "PlacePurch"
+msgstr "МісцПридб"
#: TableWizard.xcu
msgctxt ""
@@ -8618,7 +8618,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr "PurchasePrice"
+msgstr "ЦінаЗакупки"
#: TableWizard.xcu
msgctxt ""
@@ -8627,7 +8627,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr "PurchPrice"
+msgstr "ЦінаЗакуп"
#: TableWizard.xcu
msgctxt ""
@@ -8636,7 +8636,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AppraisedValue"
-msgstr "AppraisedValue"
+msgstr "ОцінювальнаВартість"
#: TableWizard.xcu
msgctxt ""
@@ -8645,7 +8645,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AppraisVal"
-msgstr "AppraisVal"
+msgstr "ОцінВарт"
#: TableWizard.xcu
msgctxt ""
@@ -8654,7 +8654,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Insured"
-msgstr "Insured"
+msgstr "Застраховано"
#: TableWizard.xcu
msgctxt ""
@@ -8663,7 +8663,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Insured"
-msgstr "Insured"
+msgstr "Застраховано"
#: TableWizard.xcu
msgctxt ""
@@ -8699,7 +8699,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RecipeID"
-msgstr "RecipeID"
+msgstr "КодРецепта"
#: TableWizard.xcu
msgctxt ""
@@ -8708,7 +8708,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RecipeID"
-msgstr "RecipeID"
+msgstr "КодРецепта"
#: TableWizard.xcu
msgctxt ""
@@ -8717,7 +8717,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Name"
-msgstr "Ім'я"
+msgstr "Назва"
#: TableWizard.xcu
msgctxt ""
@@ -8726,7 +8726,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Name"
-msgstr "Ім'я"
+msgstr "Назва"
#: TableWizard.xcu
msgctxt ""
@@ -8744,7 +8744,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr "Descrption"
+msgstr "Опис"
#: TableWizard.xcu
msgctxt ""
@@ -8771,7 +8771,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WhichMeal"
-msgstr "WhichMeal"
+msgstr "КолиЇсти"
#: TableWizard.xcu
msgctxt ""
@@ -8780,7 +8780,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WhichMeal"
-msgstr "WhichMeal"
+msgstr "КолиЇсти"
#: TableWizard.xcu
msgctxt ""
@@ -8789,7 +8789,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Vegetarian"
-msgstr "Вегетаріанець"
+msgstr "Вегетаріанське"
#: TableWizard.xcu
msgctxt ""
@@ -8798,7 +8798,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Vegetarian"
-msgstr "Вегетаріанець"
+msgstr "Вегетаріанське"
#: TableWizard.xcu
msgctxt ""
@@ -8807,7 +8807,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeToPrepare"
-msgstr "TimeToPrepare"
+msgstr "ЧасПриготування"
#: TableWizard.xcu
msgctxt ""
@@ -8816,7 +8816,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimePrepar"
-msgstr "TimePrepar"
+msgstr "ЧасПригот"
#: TableWizard.xcu
msgctxt ""
@@ -8825,7 +8825,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofServings"
-msgstr "NumberofServings"
+msgstr "КількістьПорцій"
#: TableWizard.xcu
msgctxt ""
@@ -8834,7 +8834,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NoofServng"
-msgstr "NoofServng"
+msgstr "КількПорц"
#: TableWizard.xcu
msgctxt ""
@@ -8843,7 +8843,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CaloriesPerServing"
-msgstr "CaloriesPerServing"
+msgstr "КалорійНаПорцію"
#: TableWizard.xcu
msgctxt ""
@@ -8852,7 +8852,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CalPerServ"
-msgstr "CalPerServ"
+msgstr "КалНаПорц"
#: TableWizard.xcu
msgctxt ""
@@ -8861,7 +8861,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NutritionalInformation"
-msgstr "NutritionalInformation"
+msgstr "ХарчоваЦінність"
#: TableWizard.xcu
msgctxt ""
@@ -8870,7 +8870,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NutriInfo"
-msgstr "NutriInfo"
+msgstr "ХарчЦінн"
#: TableWizard.xcu
msgctxt ""
@@ -8879,7 +8879,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Ingredients"
-msgstr "Ingredients"
+msgstr "Інгредієнти"
#: TableWizard.xcu
msgctxt ""
@@ -8888,7 +8888,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Ingredient"
-msgstr "Ingredient"
+msgstr "Інгредієнт"
#: TableWizard.xcu
msgctxt ""
@@ -8897,7 +8897,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Instructions"
-msgstr "Instructions"
+msgstr "Інструкції"
#: TableWizard.xcu
msgctxt ""
@@ -8906,7 +8906,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Instrction"
-msgstr "Instrction"
+msgstr "Інструкц"
#: TableWizard.xcu
msgctxt ""
@@ -8915,7 +8915,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Utensils"
-msgstr "Utensils"
+msgstr "Приладдя"
#: TableWizard.xcu
msgctxt ""
@@ -8924,7 +8924,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Utensils"
-msgstr "Utensils"
+msgstr "Приладдя"
#: TableWizard.xcu
msgctxt ""
@@ -8960,7 +8960,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlantID"
-msgstr "PlantID"
+msgstr "КодРослини"
#: TableWizard.xcu
msgctxt ""
@@ -8969,7 +8969,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlantID"
-msgstr "PlantID"
+msgstr "КодРослини"
#: TableWizard.xcu
msgctxt ""
@@ -8978,7 +8978,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CommonName"
-msgstr "CommonName"
+msgstr "ПоширенаНазва"
#: TableWizard.xcu
msgctxt ""
@@ -8987,7 +8987,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CommonName"
-msgstr "CommonName"
+msgstr "ПоширенаНазва"
#: TableWizard.xcu
msgctxt ""
@@ -8996,7 +8996,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Genus"
-msgstr "Genus"
+msgstr "Рід"
#: TableWizard.xcu
msgctxt ""
@@ -9005,7 +9005,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Genus"
-msgstr "Genus"
+msgstr "Рід"
#: TableWizard.xcu
msgctxt ""
@@ -9014,7 +9014,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Species"
-msgstr "Species"
+msgstr "Вид"
#: TableWizard.xcu
msgctxt ""
@@ -9023,7 +9023,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Species"
-msgstr "Species"
+msgstr "Вид"
#: TableWizard.xcu
msgctxt ""
@@ -9032,7 +9032,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Flowering"
-msgstr "Flowering"
+msgstr "Цвітіння"
#: TableWizard.xcu
msgctxt ""
@@ -9041,7 +9041,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Flowering"
-msgstr "Flowering"
+msgstr "Цвітіння"
#: TableWizard.xcu
msgctxt ""
@@ -9050,7 +9050,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LightPreference"
-msgstr "LightPreference"
+msgstr "БажанеОсвітлення"
#: TableWizard.xcu
msgctxt ""
@@ -9059,7 +9059,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LightPref"
-msgstr "LightPref"
+msgstr "БажОсвіт"
#: TableWizard.xcu
msgctxt ""
@@ -9068,7 +9068,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TemperaturePreference"
-msgstr "TemperaturePreference"
+msgstr "БажанаТемпература"
#: TableWizard.xcu
msgctxt ""
@@ -9077,7 +9077,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TempPref"
-msgstr "TempPref"
+msgstr "БажТемп"
#: TableWizard.xcu
msgctxt ""
@@ -9086,7 +9086,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FertilizeFrequency"
-msgstr "FertilizeFrequency"
+msgstr "ЧастотаВдобрення"
#: TableWizard.xcu
msgctxt ""
@@ -9095,7 +9095,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FertilFreq"
-msgstr "FertilFreq"
+msgstr "ЧастВдобр"
#: TableWizard.xcu
msgctxt ""
@@ -9104,7 +9104,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WateringFrequency"
-msgstr "WateringFrequency"
+msgstr "ЧастотаПоливу"
#: TableWizard.xcu
msgctxt ""
@@ -9113,7 +9113,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WaterFreq"
-msgstr "WaterFreq"
+msgstr "ЧастПолив"
#: TableWizard.xcu
msgctxt ""
@@ -9122,7 +9122,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr "DatePurchased"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -9131,7 +9131,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr "DatePurch"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -9140,7 +9140,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlacePurchased"
-msgstr "PlacePurchased"
+msgstr "МісцеПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -9149,7 +9149,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlacePurch"
-msgstr "PlacePurch"
+msgstr "МісцПридб"
#: TableWizard.xcu
msgctxt ""
@@ -9158,7 +9158,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePlanted"
-msgstr "DatePlanted"
+msgstr "ДатаПосадки"
#: TableWizard.xcu
msgctxt ""
@@ -9167,7 +9167,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatPlanted"
-msgstr "DatPlanted"
+msgstr "ДатПосад"
#: TableWizard.xcu
msgctxt ""
@@ -9176,7 +9176,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateRepotted"
-msgstr "DateRepotted"
+msgstr "ДатаПересадки"
#: TableWizard.xcu
msgctxt ""
@@ -9185,7 +9185,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatRepottd"
-msgstr "DatRepottd"
+msgstr "ДатПересад"
#: TableWizard.xcu
msgctxt ""
@@ -9194,7 +9194,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePruned"
-msgstr "DatePruned"
+msgstr "ДатаОбрізку"
#: TableWizard.xcu
msgctxt ""
@@ -9203,7 +9203,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePruned"
-msgstr "DatePruned"
+msgstr "ДатаОбрізку"
#: TableWizard.xcu
msgctxt ""
@@ -9212,7 +9212,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateWatered"
-msgstr "DateWatered"
+msgstr "ДатаПоливу"
#: TableWizard.xcu
msgctxt ""
@@ -9221,7 +9221,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateWaterd"
-msgstr "DateWaterd"
+msgstr "ДатаПолив"
#: TableWizard.xcu
msgctxt ""
@@ -9230,7 +9230,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -9239,7 +9239,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -9275,7 +9275,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhotoID"
-msgstr "PhotoID"
+msgstr "КодФотографії"
#: TableWizard.xcu
msgctxt ""
@@ -9284,7 +9284,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhotoID"
-msgstr "PhotoID"
+msgstr "КодФото"
#: TableWizard.xcu
msgctxt ""
@@ -9293,7 +9293,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilmID"
-msgstr "FilmID"
+msgstr "КодПлівки"
#: TableWizard.xcu
msgctxt ""
@@ -9302,7 +9302,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FilmID"
-msgstr "FilmID"
+msgstr "КодПлівки"
#: TableWizard.xcu
msgctxt ""
@@ -9311,7 +9311,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateTaken"
-msgstr "DateTaken"
+msgstr "ДатаЗнімання"
#: TableWizard.xcu
msgctxt ""
@@ -9320,7 +9320,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateTaken"
-msgstr "DateTaken"
+msgstr "ДатаЗнімання"
#: TableWizard.xcu
msgctxt ""
@@ -9329,7 +9329,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeTaken"
-msgstr "TimeTaken"
+msgstr "ЧасЗнімання"
#: TableWizard.xcu
msgctxt ""
@@ -9338,7 +9338,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimeTaken"
-msgstr "TimeTaken"
+msgstr "ЧасЗнімання"
#: TableWizard.xcu
msgctxt ""
@@ -9347,7 +9347,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PlaceTaken"
-msgstr "PlaceTaken"
+msgstr "МісцеЗнімання"
#: TableWizard.xcu
msgctxt ""
@@ -9356,7 +9356,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PlaceTaken"
-msgstr "PlaceTaken"
+msgstr "МісцеЗнімання"
#: TableWizard.xcu
msgctxt ""
@@ -9365,7 +9365,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LensUsed"
-msgstr "LensUsed"
+msgstr "Лінза"
#: TableWizard.xcu
msgctxt ""
@@ -9374,7 +9374,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LensUsed"
-msgstr "LensUsed"
+msgstr "Лінза"
#: TableWizard.xcu
msgctxt ""
@@ -9383,7 +9383,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Aperture"
-msgstr "Aperture"
+msgstr "Діафрагма"
#: TableWizard.xcu
msgctxt ""
@@ -9392,7 +9392,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Aperture"
-msgstr "Aperture"
+msgstr "Діафрагма"
#: TableWizard.xcu
msgctxt ""
@@ -9401,7 +9401,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShutterSpeed"
-msgstr "ShutterSpeed"
+msgstr "Витримка"
#: TableWizard.xcu
msgctxt ""
@@ -9410,7 +9410,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShutterSpd"
-msgstr "ShutterSpd"
+msgstr "Витримка"
#: TableWizard.xcu
msgctxt ""
@@ -9419,7 +9419,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilterUsed"
-msgstr "FilterUsed"
+msgstr "Фільтр"
#: TableWizard.xcu
msgctxt ""
@@ -9428,7 +9428,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FilterUsed"
-msgstr "FilterUsed"
+msgstr "Фільтр"
#: TableWizard.xcu
msgctxt ""
@@ -9437,7 +9437,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Flash"
-msgstr "Flash"
+msgstr "Спалах"
#: TableWizard.xcu
msgctxt ""
@@ -9446,7 +9446,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Flash"
-msgstr "Flash"
+msgstr "Спалах"
#: TableWizard.xcu
msgctxt ""
@@ -9491,7 +9491,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MiniatureFilms"
-msgstr "Мініплівки"
+msgstr "МініПлівки"
#: TableWizard.xcu
msgctxt ""
@@ -9500,7 +9500,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilmID"
-msgstr "FilmID"
+msgstr "КодПлівки"
#: TableWizard.xcu
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FilmID"
-msgstr "FilmID"
+msgstr "КодПлівки"
#: TableWizard.xcu
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Виріб"
#: TableWizard.xcu
msgctxt ""
@@ -9527,7 +9527,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Make"
-msgstr "Make"
+msgstr "Виріб"
#: TableWizard.xcu
msgctxt ""
@@ -9536,7 +9536,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photosensitivity"
-msgstr "Photosensitivity"
+msgstr "Світлочутливість"
#: TableWizard.xcu
msgctxt ""
@@ -9545,7 +9545,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photosensi"
-msgstr "Photosensi"
+msgstr "Світлочут"
#: TableWizard.xcu
msgctxt ""
@@ -9554,7 +9554,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberOfPhotos"
-msgstr "NumberOfPhotos"
+msgstr "КількістьФотографій"
#: TableWizard.xcu
msgctxt ""
@@ -9563,7 +9563,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NumPhotos"
-msgstr "NumPhotos"
+msgstr "КількФото"
#: TableWizard.xcu
msgctxt ""
@@ -9572,7 +9572,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ColorFilm"
-msgstr "ColorFilm"
+msgstr "КольороваПлівка"
#: TableWizard.xcu
msgctxt ""
@@ -9581,7 +9581,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ColorFilm"
-msgstr "ColorFilm"
+msgstr "КольороваПлівка"
#: TableWizard.xcu
msgctxt ""
@@ -9590,7 +9590,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FilmExpirationDate"
-msgstr "FilmExpirationDate"
+msgstr "ТермінЗберіганняПлівки"
#: TableWizard.xcu
msgctxt ""
@@ -9599,7 +9599,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FlmExpDate"
-msgstr "FlmExpDate"
+msgstr "ТермЗберігПлів"
#: TableWizard.xcu
msgctxt ""
@@ -9608,7 +9608,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateDeveloped"
-msgstr "DateDeveloped"
+msgstr "ДатаВиготовлення"
#: TableWizard.xcu
msgctxt ""
@@ -9617,7 +9617,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateDevelp"
-msgstr "DateDevelp"
+msgstr "ДатаВигот"
#: TableWizard.xcu
msgctxt ""
@@ -9626,7 +9626,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DevelopedBy"
-msgstr "DevelopedBy"
+msgstr "Виробник"
#: TableWizard.xcu
msgctxt ""
@@ -9635,7 +9635,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DevelopdBy"
-msgstr "DevelopdBy"
+msgstr "Виробник"
#: TableWizard.xcu
msgctxt ""
@@ -9644,7 +9644,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Camera"
-msgstr "Camera"
+msgstr "Камера"
#: TableWizard.xcu
msgctxt ""
@@ -9653,7 +9653,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Camera"
-msgstr "Camera"
+msgstr "Камера"
#: TableWizard.xcu
msgctxt ""
@@ -9689,7 +9689,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CollectionID"
-msgstr "CollectionID"
+msgstr "КодКолекції"
#: TableWizard.xcu
msgctxt ""
@@ -9698,7 +9698,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CollectnID"
-msgstr "CollectnID"
+msgstr "КодКолек"
#: TableWizard.xcu
msgctxt ""
@@ -9707,7 +9707,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MovieTitle"
-msgstr "MovieTitle"
+msgstr "НазваФільму"
#: TableWizard.xcu
msgctxt ""
@@ -9716,7 +9716,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MovieTitle"
-msgstr "MovieTitle"
+msgstr "НазваФільму"
#: TableWizard.xcu
msgctxt ""
@@ -9725,7 +9725,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
msgctxt ""
@@ -9734,7 +9734,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
msgctxt ""
@@ -9743,7 +9743,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Actor"
-msgstr "Actor"
+msgstr "Актор"
#: TableWizard.xcu
msgctxt ""
@@ -9752,7 +9752,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Actor"
-msgstr "Actor"
+msgstr "Актор"
#: TableWizard.xcu
msgctxt ""
@@ -9761,7 +9761,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Director"
-msgstr "Director"
+msgstr "Режисер"
#: TableWizard.xcu
msgctxt ""
@@ -9770,7 +9770,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Director"
-msgstr "Director"
+msgstr "Режисер"
#: TableWizard.xcu
msgctxt ""
@@ -9779,7 +9779,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Producer"
-msgstr "Producer"
+msgstr "Продюсер"
#: TableWizard.xcu
msgctxt ""
@@ -9788,7 +9788,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Producer"
-msgstr "Producer"
+msgstr "Продюсер"
#: TableWizard.xcu
msgctxt ""
@@ -9797,7 +9797,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReleaseYear"
-msgstr "ReleaseYear"
+msgstr "РікВиходу"
#: TableWizard.xcu
msgctxt ""
@@ -9806,7 +9806,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReleasYear"
-msgstr "ReleasYear"
+msgstr "РікВиходу"
#: TableWizard.xcu
msgctxt ""
@@ -9815,7 +9815,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рейтинг"
#: TableWizard.xcu
msgctxt ""
@@ -9824,7 +9824,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рейтинг"
#: TableWizard.xcu
msgctxt ""
@@ -9833,7 +9833,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Subject"
-msgstr "Subject"
+msgstr "Тема"
#: TableWizard.xcu
msgctxt ""
@@ -9842,7 +9842,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Subject"
-msgstr "Subject"
+msgstr "Тема"
#: TableWizard.xcu
msgctxt ""
@@ -9851,7 +9851,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Length"
-msgstr "Length"
+msgstr "Тривалість"
#: TableWizard.xcu
msgctxt ""
@@ -9860,7 +9860,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Length"
-msgstr "Length"
+msgstr "Тривалість"
#: TableWizard.xcu
msgctxt ""
@@ -9869,7 +9869,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateAcquired"
-msgstr "DateAcquired"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -9878,7 +9878,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateAcquir"
-msgstr "DateAcquir"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -9887,7 +9887,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasedAt"
-msgstr "PurchasedAt"
+msgstr "ПридбаноУ"
#: TableWizard.xcu
msgctxt ""
@@ -9896,7 +9896,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchaseAt"
-msgstr "PurchaseAt"
+msgstr "ПридбаноУ"
#: TableWizard.xcu
msgctxt ""
@@ -9905,7 +9905,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr "PurchasePrice"
+msgstr "ЦінаЗакупки"
#: TableWizard.xcu
msgctxt ""
@@ -9914,7 +9914,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr "PurchPrice"
+msgstr "ЦінаЗакуп"
#: TableWizard.xcu
msgctxt ""
@@ -9923,7 +9923,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Review"
-msgstr "Review"
+msgstr "Огляд"
#: TableWizard.xcu
msgctxt ""
@@ -9932,7 +9932,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Review"
-msgstr "Review"
+msgstr "Огляд"
#: TableWizard.xcu
msgctxt ""
@@ -9968,7 +9968,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CollectionID"
-msgstr "CollectionID"
+msgstr "КодКолекції"
#: TableWizard.xcu
msgctxt ""
@@ -9977,7 +9977,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CollectnID"
-msgstr "CollectnID"
+msgstr "КодКолек"
#: TableWizard.xcu
msgctxt ""
@@ -9986,7 +9986,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AlbumTitle"
-msgstr "AlbumTitle"
+msgstr "НазваАльбому"
#: TableWizard.xcu
msgctxt ""
@@ -9995,7 +9995,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AlbumTitle"
-msgstr "AlbumTitle"
+msgstr "НазваАльбому"
#: TableWizard.xcu
msgctxt ""
@@ -10004,7 +10004,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Artist"
-msgstr "Artist"
+msgstr "Виконавець"
#: TableWizard.xcu
msgctxt ""
@@ -10013,7 +10013,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Artist"
-msgstr "Artist"
+msgstr "Виконавець"
#: TableWizard.xcu
msgctxt ""
@@ -10022,7 +10022,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MusicCategoryID"
-msgstr "MusicCategoryID"
+msgstr "КодМузикальноїКатегорії"
#: TableWizard.xcu
msgctxt ""
@@ -10031,7 +10031,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MusicCatID"
-msgstr "MusicCatID"
+msgstr "КодМузКат"
#: TableWizard.xcu
msgctxt ""
@@ -10040,7 +10040,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RecordLabel"
-msgstr "RecordLabel"
+msgstr "СтудіяЗвукозапису"
#: TableWizard.xcu
msgctxt ""
@@ -10049,7 +10049,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RecordLabl"
-msgstr "RecordLabl"
+msgstr "СтудЗвукозап"
#: TableWizard.xcu
msgctxt ""
@@ -10058,7 +10058,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Producer"
-msgstr "Producer"
+msgstr "Продюсер"
#: TableWizard.xcu
msgctxt ""
@@ -10067,7 +10067,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Producer"
-msgstr "Producer"
+msgstr "Продюсер"
#: TableWizard.xcu
msgctxt ""
@@ -10076,7 +10076,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReleaseYear"
-msgstr "ReleaseYear"
+msgstr "РікВиходу"
#: TableWizard.xcu
msgctxt ""
@@ -10085,7 +10085,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReleasYear"
-msgstr "ReleasYear"
+msgstr "РікВиходу"
#: TableWizard.xcu
msgctxt ""
@@ -10094,7 +10094,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рейтинг"
#: TableWizard.xcu
msgctxt ""
@@ -10103,7 +10103,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рейтинг"
#: TableWizard.xcu
msgctxt ""
@@ -10112,7 +10112,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Format"
-msgstr "Format"
+msgstr "Формат"
#: TableWizard.xcu
msgctxt ""
@@ -10121,7 +10121,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Format"
-msgstr "Format"
+msgstr "Формат"
#: TableWizard.xcu
msgctxt ""
@@ -10130,7 +10130,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofTracks"
-msgstr "NumberofTracks"
+msgstr "КількістьКомпозицій"
#: TableWizard.xcu
msgctxt ""
@@ -10139,7 +10139,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NoofTracks"
-msgstr "NoofTracks"
+msgstr "КількКомп"
#: TableWizard.xcu
msgctxt ""
@@ -10148,7 +10148,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr "DatePurchased"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -10157,7 +10157,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr "DatePurch"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -10166,7 +10166,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasedAt"
-msgstr "PurchasedAt"
+msgstr "ПридбаноУ"
#: TableWizard.xcu
msgctxt ""
@@ -10175,7 +10175,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchaseAt"
-msgstr "PurchaseAt"
+msgstr "ПридбаноУ"
#: TableWizard.xcu
msgctxt ""
@@ -10184,7 +10184,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr "PurchasePrice"
+msgstr "ЦінаЗакупки"
#: TableWizard.xcu
msgctxt ""
@@ -10193,7 +10193,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr "PurchPrice"
+msgstr "ЦінаЗакуп"
#: TableWizard.xcu
msgctxt ""
@@ -10202,7 +10202,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Review"
-msgstr "Review"
+msgstr "Огляд"
#: TableWizard.xcu
msgctxt ""
@@ -10211,7 +10211,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Review"
-msgstr "Review"
+msgstr "Огляд"
#: TableWizard.xcu
msgctxt ""
@@ -10247,7 +10247,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "BookID"
-msgstr "BookID"
+msgstr "КодКниги"
#: TableWizard.xcu
msgctxt ""
@@ -10256,7 +10256,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "BookID"
-msgstr "BookID"
+msgstr "КодКниги"
#: TableWizard.xcu
msgctxt ""
@@ -10265,7 +10265,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Назва"
#: TableWizard.xcu
msgctxt ""
@@ -10274,7 +10274,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Title"
+msgstr "Назва"
#: TableWizard.xcu
msgctxt ""
@@ -10283,7 +10283,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
msgctxt ""
@@ -10292,7 +10292,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Genre"
-msgstr "Genre"
+msgstr "Жанр"
#: TableWizard.xcu
msgctxt ""
@@ -10301,7 +10301,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАвтора"
#: TableWizard.xcu
msgctxt ""
@@ -10310,7 +10310,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАвтора"
#: TableWizard.xcu
msgctxt ""
@@ -10319,7 +10319,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CopyrightYear"
-msgstr "CopyrightYear"
+msgstr "РікВидання"
#: TableWizard.xcu
msgctxt ""
@@ -10328,7 +10328,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CpyrightYr"
-msgstr "CpyrightYr"
+msgstr "РікВидан"
#: TableWizard.xcu
msgctxt ""
@@ -10337,7 +10337,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ISBNNumber"
-msgstr "ISBNNumber"
+msgstr "НомерISBN"
#: TableWizard.xcu
msgctxt ""
@@ -10346,7 +10346,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ISBNNumber"
-msgstr "ISBNNumber"
+msgstr "НомерISBN"
#: TableWizard.xcu
msgctxt ""
@@ -10355,7 +10355,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Publisher"
-msgstr "Publisher"
+msgstr "Видавництво"
#: TableWizard.xcu
msgctxt ""
@@ -10364,7 +10364,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Publisher"
-msgstr "Publisher"
+msgstr "Видавництво"
#: TableWizard.xcu
msgctxt ""
@@ -10373,7 +10373,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рейтинг"
#: TableWizard.xcu
msgctxt ""
@@ -10382,7 +10382,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Rating"
+msgstr "Рейтинг"
#: TableWizard.xcu
msgctxt ""
@@ -10391,7 +10391,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Translator"
-msgstr "Translator"
+msgstr "Перекладач"
#: TableWizard.xcu
msgctxt ""
@@ -10400,7 +10400,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Translator"
-msgstr "Translator"
+msgstr "Перекладач"
#: TableWizard.xcu
msgctxt ""
@@ -10409,7 +10409,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Pages"
-msgstr "Pages"
+msgstr "Сторінок"
#: TableWizard.xcu
msgctxt ""
@@ -10418,7 +10418,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Pages"
-msgstr "Pages"
+msgstr "Сторінок"
#: TableWizard.xcu
msgctxt ""
@@ -10427,7 +10427,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DatePurchased"
-msgstr "DatePurchased"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -10436,7 +10436,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatePurch"
-msgstr "DatePurch"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -10445,7 +10445,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasedAt"
-msgstr "PurchasedAt"
+msgstr "ПридбаноУ"
#: TableWizard.xcu
msgctxt ""
@@ -10454,7 +10454,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchaseAt"
-msgstr "PurchaseAt"
+msgstr "ПридбаноУ"
#: TableWizard.xcu
msgctxt ""
@@ -10463,7 +10463,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PurchasePrice"
-msgstr "PurchasePrice"
+msgstr "ЦінаЗакупки"
#: TableWizard.xcu
msgctxt ""
@@ -10472,7 +10472,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PurchPrice"
-msgstr "PurchPrice"
+msgstr "ЦінаЗакуп"
#: TableWizard.xcu
msgctxt ""
@@ -10481,7 +10481,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CoverType"
-msgstr "CoverType"
+msgstr "ТипПалітурки"
#: TableWizard.xcu
msgctxt ""
@@ -10490,7 +10490,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CoverType"
-msgstr "CoverType"
+msgstr "ТипПалітурки"
#: TableWizard.xcu
msgctxt ""
@@ -10499,7 +10499,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EditionNumber"
-msgstr "EditionNumber"
+msgstr "НомерВидання"
#: TableWizard.xcu
msgctxt ""
@@ -10508,7 +10508,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EditionNo"
-msgstr "EditionNo"
+msgstr "НомВидан"
#: TableWizard.xcu
msgctxt ""
@@ -10544,7 +10544,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАвтора"
#: TableWizard.xcu
msgctxt ""
@@ -10553,7 +10553,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AuthorID"
-msgstr "AuthorID"
+msgstr "КодАвтора"
#: TableWizard.xcu
msgctxt ""
@@ -10562,7 +10562,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -10571,7 +10571,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "Ім'я"
#: TableWizard.xcu
msgctxt ""
@@ -10580,7 +10580,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -10589,7 +10589,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "Прізвище"
#: TableWizard.xcu
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Nationality"
-msgstr "Nationality"
+msgstr "Національність"
#: TableWizard.xcu
msgctxt ""
@@ -10607,7 +10607,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Nationlity"
-msgstr "Nationlity"
+msgstr "Національн"
#: TableWizard.xcu
msgctxt ""
@@ -10616,7 +10616,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -10625,7 +10625,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Дата народження"
+msgstr "ДатаНародження"
#: TableWizard.xcu
msgctxt ""
@@ -10634,7 +10634,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthplace"
-msgstr "Birthplace"
+msgstr "МісцеНародження"
#: TableWizard.xcu
msgctxt ""
@@ -10643,7 +10643,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthplace"
-msgstr "Birthplace"
+msgstr "МісцеНародження"
#: TableWizard.xcu
msgctxt ""
@@ -10652,7 +10652,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateofDeath"
-msgstr "DateofDeath"
+msgstr "ДатаСмерті"
#: TableWizard.xcu
msgctxt ""
@@ -10661,7 +10661,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatofDeath"
-msgstr "DatofDeath"
+msgstr "ДатСмерті"
#: TableWizard.xcu
msgctxt ""
@@ -10670,7 +10670,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TrainingLocation"
-msgstr "TrainingLocation"
+msgstr "МісцеНавчання"
#: TableWizard.xcu
msgctxt ""
@@ -10679,7 +10679,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TraininLoc"
-msgstr "TraininLoc"
+msgstr "МісцНавч"
#: TableWizard.xcu
msgctxt ""
@@ -10688,7 +10688,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MajorInfluences"
-msgstr "MajorInfluences"
+msgstr "ГоловніВпливи"
#: TableWizard.xcu
msgctxt ""
@@ -10697,7 +10697,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MajrInflue"
-msgstr "MajrInflue"
+msgstr "ГлвніВплв"
#: TableWizard.xcu
msgctxt ""
@@ -10706,7 +10706,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -10715,7 +10715,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Photo"
-msgstr "Photo"
+msgstr "Фото"
#: TableWizard.xcu
msgctxt ""
@@ -10751,7 +10751,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountID"
-msgstr "AccountID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10760,7 +10760,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountID"
-msgstr "AccountID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10769,7 +10769,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountNumber"
-msgstr "AccountNumber"
+msgstr "НомерРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10778,7 +10778,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountNo"
-msgstr "AccountNo"
+msgstr "НомРахунк"
#: TableWizard.xcu
msgctxt ""
@@ -10787,7 +10787,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountName"
-msgstr "AccountName"
+msgstr "НазваРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10796,7 +10796,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AcountName"
-msgstr "AcountName"
+msgstr "НазвРахунк"
#: TableWizard.xcu
msgctxt ""
@@ -10805,7 +10805,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountTypeID"
-msgstr "AccountTypeID"
+msgstr "КодТипуРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10814,7 +10814,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccTypeID"
-msgstr "AccTypeID"
+msgstr "КодТипРах"
#: TableWizard.xcu
msgctxt ""
@@ -10823,7 +10823,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountType"
-msgstr "AccountType"
+msgstr "ТипРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10832,7 +10832,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountTyp"
-msgstr "AccountTyp"
+msgstr "ТипРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10850,7 +10850,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Descrption"
-msgstr "Descrption"
+msgstr "Опис"
#: TableWizard.xcu
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "InvestmentID"
-msgstr "InvestmentID"
+msgstr "КодІнвестиції"
#: TableWizard.xcu
msgctxt ""
@@ -10895,7 +10895,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "InvestmtID"
-msgstr "InvestmtID"
+msgstr "КодІнвест"
#: TableWizard.xcu
msgctxt ""
@@ -10904,7 +10904,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AccountID"
-msgstr "AccountID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10913,7 +10913,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AccountID"
-msgstr "AccountID"
+msgstr "КодРахунку"
#: TableWizard.xcu
msgctxt ""
@@ -10922,7 +10922,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecurityName"
-msgstr "SecurityName"
+msgstr "НазваЦінногоПаперу"
#: TableWizard.xcu
msgctxt ""
@@ -10931,7 +10931,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SecuriName"
-msgstr "SecuriName"
+msgstr "НазвЦінПап"
#: TableWizard.xcu
msgctxt ""
@@ -10940,7 +10940,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecuritySymbol"
-msgstr "SecuritySymbol"
+msgstr "СимволЦінногоПаперу"
#: TableWizard.xcu
msgctxt ""
@@ -10949,7 +10949,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SecuriSymb"
-msgstr "SecuriSymb"
+msgstr "СимвЦінПап"
#: TableWizard.xcu
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecurityType"
-msgstr "SecurityType"
+msgstr "ТипЦінногоПаперу"
#: TableWizard.xcu
msgctxt ""
@@ -10967,7 +10967,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SecuriType"
-msgstr "SecuriType"
+msgstr "ТипЦінПап"
#: TableWizard.xcu
msgctxt ""
@@ -10976,7 +10976,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SharesOwned"
-msgstr "SharesOwned"
+msgstr "ВласніАкції"
#: TableWizard.xcu
msgctxt ""
@@ -10985,7 +10985,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShareOwned"
-msgstr "ShareOwned"
+msgstr "ВласніАкції"
#: TableWizard.xcu
msgctxt ""
@@ -11012,7 +11012,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ExerciseLog"
-msgstr "Журнал_Тренувань"
+msgstr "ЖурналТренувань"
#: TableWizard.xcu
msgctxt ""
@@ -11021,7 +11021,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LogID"
-msgstr "LogID"
+msgstr "КодЗапису"
#: TableWizard.xcu
msgctxt ""
@@ -11030,7 +11030,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LogID"
-msgstr "LogID"
+msgstr "КодЗапису"
#: TableWizard.xcu
msgctxt ""
@@ -11039,7 +11039,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PersonID"
-msgstr "PersonID"
+msgstr "КодОсоби"
#: TableWizard.xcu
msgctxt ""
@@ -11048,7 +11048,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PersonID"
-msgstr "PersonID"
+msgstr "КодОсоби"
#: TableWizard.xcu
msgctxt ""
@@ -11057,7 +11057,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Activity"
-msgstr "Activity"
+msgstr "Активність"
#: TableWizard.xcu
msgctxt ""
@@ -11066,7 +11066,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Activity"
-msgstr "Activity"
+msgstr "Активність"
#: TableWizard.xcu
msgctxt ""
@@ -11075,7 +11075,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WorkoutDate"
-msgstr "WorkoutDate"
+msgstr "ДатаТренування"
#: TableWizard.xcu
msgctxt ""
@@ -11084,7 +11084,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WorkoutDat"
-msgstr "WorkoutDat"
+msgstr "ДатТрен"
#: TableWizard.xcu
msgctxt ""
@@ -11093,7 +11093,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ExerciseType"
-msgstr "ExerciseType"
+msgstr "ТипВправ"
#: TableWizard.xcu
msgctxt ""
@@ -11102,7 +11102,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ExercisTyp"
-msgstr "ExercisTyp"
+msgstr "ТипВправ"
#: TableWizard.xcu
msgctxt ""
@@ -11111,7 +11111,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TimeExercised"
-msgstr "TimeExercised"
+msgstr "ЧасТренування"
#: TableWizard.xcu
msgctxt ""
@@ -11120,7 +11120,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TimeExerci"
-msgstr "TimeExerci"
+msgstr "ЧасТрен"
#: TableWizard.xcu
msgctxt ""
@@ -11129,7 +11129,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DistanceTraveled"
-msgstr "DistanceTraveled"
+msgstr "ПройденийШлях"
#: TableWizard.xcu
msgctxt ""
@@ -11138,7 +11138,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DistTravel"
-msgstr "DistTravel"
+msgstr "ПройдШлях"
#: TableWizard.xcu
msgctxt ""
@@ -11147,7 +11147,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "RestingPulse"
-msgstr "RestingPulse"
+msgstr "ЗвичайнийПульс"
#: TableWizard.xcu
msgctxt ""
@@ -11156,7 +11156,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "RestngPuls"
-msgstr "RestngPuls"
+msgstr "ЗвичПульс"
#: TableWizard.xcu
msgctxt ""
@@ -11165,7 +11165,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MaximumPulse"
-msgstr "MaximumPulse"
+msgstr "МаксимальнийПульс"
#: TableWizard.xcu
msgctxt ""
@@ -11174,7 +11174,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MaxPulse"
-msgstr "MaxPulse"
+msgstr "МаксПульс"
#: TableWizard.xcu
msgctxt ""
@@ -11183,7 +11183,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CaloriesBurned"
-msgstr "CaloriesBurned"
+msgstr "СпаленіКалорії"
#: TableWizard.xcu
msgctxt ""
@@ -11192,7 +11192,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CalsBurned"
-msgstr "CalsBurned"
+msgstr "СпалКалор"
#: TableWizard.xcu
msgctxt ""
@@ -11201,7 +11201,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HoursSleep"
-msgstr "HoursSleep"
+msgstr "ГодиниСну"
#: TableWizard.xcu
msgctxt ""
@@ -11210,7 +11210,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "HoursSleep"
-msgstr "HoursSleep"
+msgstr "ГодиниСну"
#: TableWizard.xcu
msgctxt ""
@@ -11237,7 +11237,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DietLog"
-msgstr "Журнал_Дієти"
+msgstr "ЖурналДієти"
#: TableWizard.xcu
msgctxt ""
@@ -11246,7 +11246,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LogID"
-msgstr "LogID"
+msgstr "КодЗапису"
#: TableWizard.xcu
msgctxt ""
@@ -11255,7 +11255,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LogID"
-msgstr "LogID"
+msgstr "КодЗапису"
#: TableWizard.xcu
msgctxt ""
@@ -11264,7 +11264,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PersonID"
-msgstr "PersonID"
+msgstr "КодОсоби"
#: TableWizard.xcu
msgctxt ""
@@ -11273,7 +11273,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PersonID"
-msgstr "PersonID"
+msgstr "КодОсоби"
#: TableWizard.xcu
msgctxt ""
@@ -11282,7 +11282,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DietType"
-msgstr "DietType"
+msgstr "ТипДієти"
#: TableWizard.xcu
msgctxt ""
@@ -11291,7 +11291,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DietType"
-msgstr "DietType"
+msgstr "ТипДієти"
#: TableWizard.xcu
msgctxt ""
@@ -11300,7 +11300,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateAcquired"
-msgstr "DateAcquired"
+msgstr "ДатаПридбання"
#: TableWizard.xcu
msgctxt ""
@@ -11309,7 +11309,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateAcquir"
-msgstr "DateAcquir"
+msgstr "ДатаПридб"
#: TableWizard.xcu
msgctxt ""
@@ -11318,7 +11318,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "WhichMeal"
-msgstr "WhichMeal"
+msgstr "КолиЇсти"
#: TableWizard.xcu
msgctxt ""
@@ -11327,7 +11327,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "WhichMeal"
-msgstr "WhichMeal"
+msgstr "КолиЇсти"
#: TableWizard.xcu
msgctxt ""
@@ -11345,7 +11345,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "GrCarbohyd"
-msgstr "GrCarbohyd"
+msgstr "ГрВуглевод"
#: TableWizard.xcu
msgctxt ""
@@ -11354,7 +11354,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "GramsProtein"
-msgstr "GramsProtein"
+msgstr "ГрамПротеїнів"
#: TableWizard.xcu
msgctxt ""
@@ -11363,7 +11363,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "GrsProtein"
-msgstr "GrsProtein"
+msgstr "ГрПротеїн"
#: TableWizard.xcu
msgctxt ""
@@ -11372,7 +11372,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "GramsFat"
-msgstr "GramsFat"
+msgstr "ГрамЖирів"
#: TableWizard.xcu
msgctxt ""
@@ -11381,7 +11381,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "GramsFat"
-msgstr "GramsFat"
+msgstr "ГрамЖирів"
#: TableWizard.xcu
msgctxt ""
@@ -11390,7 +11390,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TotalCalories"
-msgstr "TotalCalories"
+msgstr "ВсьогоКалорій"
#: TableWizard.xcu
msgctxt ""
@@ -11399,7 +11399,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TotalCals"
-msgstr "TotalCals"
+msgstr "ВсьогКал"
#: TableWizard.xcu
msgctxt ""
@@ -11408,7 +11408,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MilligramsSodium"
-msgstr "MilligramsSodium"
+msgstr "МіліграмівНатрію"
#: TableWizard.xcu
msgctxt ""
@@ -11417,7 +11417,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MilligrSod"
-msgstr "MilligrSod"
+msgstr "МгНатрію"
#: TableWizard.xcu
msgctxt ""
@@ -11426,7 +11426,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Vitamins"
-msgstr "Vitamins"
+msgstr "Вітаміни"
#: TableWizard.xcu
msgctxt ""
@@ -11435,7 +11435,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Vitamins"
-msgstr "Vitamins"
+msgstr "Вітаміни"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po
index 2196641ada4..75f04c10772 100644
--- a/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/uk/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: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-03 11:36+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-19 14:12+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: translation@linux.org.ua\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496489777.000000\n"
+"X-POOTLE-MTIME: 1497881525.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -616,8 +616,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Вибір тем"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4021,6 +4021,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Вставка..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -7898,7 +8015,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Master D~esign..."
-msgstr "Д~изайн майстра слайдів…"
+msgstr "Вибір д~изайну слайдів…"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -14315,7 +14432,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame"
-msgstr "Фрейм"
+msgstr "Рамка"
#: GenericCommands.xcu
msgctxt ""
@@ -22687,7 +22804,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Slide Master Sorter/Pane"
-msgstr "Сортування взірців слайдів / панель"
+msgstr "Сортування зразків слайдів / панель"
#: ImpressWindowState.xcu
msgctxt ""
@@ -22696,7 +22813,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Slide Master Sorter/Pane (no selection)"
-msgstr "Сортування взірців слайдів/панель (без виділення)"
+msgstr "Сортування зразків слайдів/панель (без виділення)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -26697,15 +26814,6 @@ msgstr "~Властивості..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "О~б'єкт…"
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
@@ -29320,7 +29428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr ""
+msgstr "Маркований список"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Нумерований список"
#: WriterCommands.xcu
msgctxt ""
@@ -29338,7 +29446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman List"
-msgstr ""
+msgstr "Список з римськими цифрами"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/uk/sc/source/ui/src.po b/source/uk/sc/source/ui/src.po
index 2c7f15eea57..cb21f7112b2 100644
--- a/source/uk/sc/source/ui/src.po
+++ b/source/uk/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-13 14:12+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2701,7 +2701,7 @@ msgstr "Область переміщено з #1 до #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2710,11 +2710,6 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
-"Режим запису змін буде вимкнено.\n"
-"Всю накопичену інформацію про зміни буде втрачено.\n"
-"\n"
-"Вимкнути режим запису змін?\n"
-"\n"
#: globstr.src
msgctxt ""
@@ -2871,10 +2866,10 @@ msgstr "Вкладені масиви не підтримуються."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
-msgstr "Текст у колонки"
+msgstr ""
#: globstr.src
msgctxt ""
diff --git a/source/uk/sd/source/ui/app.po b/source/uk/sd/source/ui/app.po
index 87b54788faf..2d4778d68c0 100644
--- a/source/uk/sd/source/ui/app.po
+++ b/source/uk/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-31 11:50+0000\n"
+"PO-Revision-Date: 2017-06-12 07:28+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496231456.000000\n"
+"X-POOTLE-MTIME: 1497252494.000000\n"
#: res_bmp.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"STR_SLIDE_MASTER_MODE\n"
"string.text"
msgid "Slide Master"
-msgstr "Помічник слайдів"
+msgstr "Зразки слайдів"
#: strings.src
msgctxt ""
diff --git a/source/uk/sd/uiconfig/simpress/ui.po b/source/uk/sd/uiconfig/simpress/ui.po
index 2fbd84633bf..aa93eeace04 100644
--- a/source/uk/sd/uiconfig/simpress/ui.po
+++ b/source/uk/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-31 11:52+0000\n"
+"PO-Revision-Date: 2017-06-19 09:08+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: none\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496231524.000000\n"
+"X-POOTLE-MTIME: 1497863280.000000\n"
#: annotationmenu.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit Master..."
-msgstr ""
+msgstr "_Змінити зразок..."
#: currentmastermenu.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_elete Master"
-msgstr ""
+msgstr "_Видалити зразок"
#: currentmastermenu.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _Large Preview"
-msgstr ""
+msgstr "Показати _великий перегляд"
#: currentmastermenu.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show S_mall Preview"
-msgstr ""
+msgstr "Показати _малий перегляд"
#: customanimationeffecttab.ui
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Custom Slide Shows"
-msgstr "Звичайний показ слайдів"
+msgstr "Довільний показ слайдів"
#: customslideshows.ui
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Use custom slide show"
-msgstr "_Використовувати нетиповий показ слайдів"
+msgstr "_Використовувати довільний показ слайдів"
#: definecustomslideshow.ui
msgctxt ""
@@ -1076,7 +1076,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Define Custom Slide Show"
-msgstr "Вказати звичайний показ слайдів"
+msgstr "Визначити довільний показ слайдів"
#: definecustomslideshow.ui
msgctxt ""
@@ -2975,7 +2975,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Custom slide show:"
-msgstr "_Нетиповий показ слайдів:"
+msgstr "_Довільний показ слайдів:"
#: presentationdialog.ui
msgctxt ""
@@ -3173,7 +3173,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide name"
-msgstr "панель слайдів"
+msgstr "Назва слайда"
#: printeroptions.ui
msgctxt ""
@@ -4325,7 +4325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mouse Pointer as ~Pen"
-msgstr ""
+msgstr "Вказівник миші як _олівець"
#: slidecontextmenu.ui
msgctxt ""
diff --git a/source/uk/sfx2/source/view.po b/source/uk/sfx2/source/view.po
index 4349f90f6f1..7310785fe0f 100644
--- a/source/uk/sfx2/source/view.po
+++ b/source/uk/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-17 14:51+0000\n"
"Last-Translator: Андрій Бандура <andriykopanytsia@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -253,6 +253,14 @@ msgstr "Цей документ має нечинний підпис."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/uk/svtools/source/control.po b/source/uk/svtools/source/control.po
index c4c8835419f..bce0f8d88c7 100644
--- a/source/uk/svtools/source/control.po
+++ b/source/uk/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-08-14 08:01+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Чорний курсив"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/uk/svtools/source/misc.po b/source/uk/svtools/source/misc.po
index 008d0a9d812..13dc38c8061 100644
--- a/source/uk/svtools/source/misc.po
+++ b/source/uk/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-29 06:27+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,10 +3180,10 @@ msgstr "Беквел"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Кітуба"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Сібо"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/uk/sw/source/core/undo.po b/source/uk/sw/source/core/undo.po
index 62bc11970ac..5349ddbb5f0 100644
--- a/source/uk/sw/source/core/undo.po
+++ b/source/uk/sw/source/core/undo.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-04-24 06:16+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:14+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493014597.000000\n"
+"X-POOTLE-MTIME: 1497982455.000000\n"
#: undo.src
msgctxt ""
@@ -891,7 +891,7 @@ msgstr "розривів стовпчика"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
msgstr "Вставити $1"
@@ -899,7 +899,7 @@ msgstr "Вставити $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
msgstr "Видалити $1"
@@ -907,7 +907,7 @@ msgstr "Видалити $1"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
msgstr "Атрибути змінено"
@@ -915,7 +915,7 @@ msgstr "Атрибути змінено"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
msgstr "Таблицю змінено"
@@ -923,7 +923,7 @@ msgstr "Таблицю змінено"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
msgstr "Стиль змінено"
@@ -931,6 +931,46 @@ msgstr "Стиль змінено"
#: undo.src
msgctxt ""
"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Формат абзацу змінено"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr "Вставити рядок"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr "Видалити рядок"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr "Вставити комірку"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr "Видалити комірку"
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
"STR_N_REDLINES\n"
"string.text"
msgid "$1 changes"
diff --git a/source/uk/sw/source/uibase/docvw.po b/source/uk/sw/source/uibase/docvw.po
index d0510c4379b..92755d320a6 100644
--- a/source/uk/sw/source/uibase/docvw.po
+++ b/source/uk/sw/source/uibase/docvw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
-"PO-Revision-Date: 2016-02-25 13:59+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:15+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1456408759.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497982518.000000\n"
#: docvw.src
msgctxt ""
@@ -59,6 +59,46 @@ msgstr "Застосовані стилі абзаців "
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr "Формат абзацу змінено"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr "Рядок вставлено"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr "Рядок видалено"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr "Комірку вставлено"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr "Комірку видалено"
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/uk/sw/source/uibase/ribbar.po b/source/uk/sw/source/uibase/ribbar.po
index 502d5b72772..bb4fc707625 100644
--- a/source/uk/sw/source/uibase/ribbar.po
+++ b/source/uk/sw/source/uibase/ribbar.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-12-26 09:10+0000\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:15+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482743408.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497982540.000000\n"
#: inputwin.src
msgctxt ""
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Текст формули"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr "Текстова формула"
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/uk/sw/source/uibase/uiview.po b/source/uk/sw/source/uibase/uiview.po
index 34890893423..e2aa16f0a7c 100644
--- a/source/uk/sw/source/uibase/uiview.po
+++ b/source/uk/sw/source/uibase/uiview.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-03-12 07:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
+"PO-Revision-Date: 2017-06-20 18:16+0000\n"
+"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457766478.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497982602.000000\n"
#: view.src
msgctxt ""
@@ -139,6 +139,14 @@ msgstr "~Експорт первинного тексту..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr "~Експортувати копію джерела..."
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/uk/sw/uiconfig/swriter/ui.po b/source/uk/sw/uiconfig/swriter/ui.po
index ec82152bf9a..a72f10d97a7 100644
--- a/source/uk/sw/uiconfig/swriter/ui.po
+++ b/source/uk/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-06-05 21:19+0000\n"
-"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
+"PO-Revision-Date: 2017-06-19 17:59+0000\n"
+"Last-Translator: Михаїл Юрійович <Reyzi@mail.ru>\n"
"Language-Team: none\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1496697542.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497895140.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Company 2nd line:"
-msgstr "Організація (2-ий рядок):"
+msgstr "Компанія 2-ий рядок:"
#: businessdatapage.ui
msgctxt ""
@@ -1400,7 +1400,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Label text:"
-msgstr "Текст позначки:"
+msgstr "Текст етикетки:"
#: cardmediumpage.ui
msgctxt ""
@@ -4464,7 +4464,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Synchronize"
-msgstr "Синхронізувати "
+msgstr "Синхронізувати"
#: floatingsync.ui
msgctxt ""
@@ -4473,7 +4473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Synchronize Labels"
-msgstr "Синхронізувати підписи "
+msgstr "Синхронізувати позначки"
#: footendnotedialog.ui
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description:"
-msgstr ""
+msgstr "_Опис:"
#: frmaddpage.ui
msgctxt ""
@@ -7083,7 +7083,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Labels"
-msgstr "Позначки"
+msgstr "Етикетки"
#: labeldialog.ui
msgctxt ""
@@ -7110,7 +7110,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Labels"
-msgstr "Позначки"
+msgstr "Етикетки"
#: labeldialog.ui
msgctxt ""
@@ -7119,7 +7119,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Business Cards"
-msgstr "Візитки"
+msgstr "Візитні картки"
#: labeldialog.ui
msgctxt ""
@@ -7227,7 +7227,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_ows:"
-msgstr "_Рядки:"
+msgstr "_Рядків:"
#: labelformatpage.ui
msgctxt ""
@@ -7272,7 +7272,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Single label"
-msgstr "_Одна позначка"
+msgstr "_Одна на сторінку"
#: labeloptionspage.ui
msgctxt ""
@@ -7299,7 +7299,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Synchroni_ze contents"
-msgstr "_Синхронізувати зміст"
+msgstr "_Синхронізувати вміст"
#: labeloptionspage.ui
msgctxt ""
@@ -7317,7 +7317,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Setup..."
-msgstr "Установка…"
+msgstr "Налаштувати…"
#: labeloptionspage.ui
msgctxt ""
@@ -7929,7 +7929,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Comment..."
-msgstr ""
+msgstr "Змінити коментар..."
#: managechangessidebar.ui
msgctxt ""
@@ -7938,7 +7938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort By"
-msgstr ""
+msgstr "Упорядкувати за"
#: managechangessidebar.ui
msgctxt ""
@@ -7947,7 +7947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Action"
-msgstr ""
+msgstr "Дія"
#: managechangessidebar.ui
msgctxt ""
@@ -7956,7 +7956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Автор"
#: managechangessidebar.ui
msgctxt ""
@@ -7965,7 +7965,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Дата"
#: managechangessidebar.ui
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Коментар"
#: managechangessidebar.ui
msgctxt ""
@@ -7983,7 +7983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Position"
-msgstr ""
+msgstr "Позиція в документі"
#: mergeconnectdialog.ui
msgctxt ""
@@ -15335,7 +15335,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Save Label Format"
-msgstr "Зберегти формат позначки"
+msgstr "Зберегти формат етикетки"
#: savelabeldialog.ui
msgctxt ""
diff --git a/source/uk/xmlsecurity/uiconfig/ui.po b/source/uk/xmlsecurity/uiconfig/ui.po
index fd19ee78391..32ff7cfc038 100644
--- a/source/uk/xmlsecurity/uiconfig/ui.po
+++ b/source/uk/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-16 07:39+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-20 18:10+0000\n"
"Last-Translator: Olexandr Pylypchuk <pilipchukap@rambler.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492328347.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497982258.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -172,6 +172,15 @@ msgstr "Вилучити"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr "Запустити менеджер сертифікатів..."
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/uz/desktop/source/deployment/gui.po b/source/uz/desktop/source/deployment/gui.po
index 6753e125496..7bbc57769a8 100644
--- a/source/uz/desktop/source/deployment/gui.po
+++ b/source/uz/desktop/source/deployment/gui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 10:37+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467715056.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449865620.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -171,6 +171,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -182,6 +190,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po b/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po
index 2b28ef6cd01..d1e45f2cdb7 100644
--- a/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/uz/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 11:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -627,8 +627,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Mavzu tanlash"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4090,6 +4090,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -27037,15 +27154,6 @@ msgid "~Properties..."
msgstr "Xossalari"
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/uz/sc/source/ui/src.po b/source/uz/sc/source/ui/src.po
index 0647d51e01e..20d50b98e28 100644
--- a/source/uz/sc/source/ui/src.po
+++ b/source/uz/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 11:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2716,7 +2716,7 @@ msgstr "Oraliq #1 'dan #2 'ga koʻchirildi"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2884,7 +2884,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/uz/sfx2/source/view.po b/source/uz/sfx2/source/view.po
index 9033f7bce8b..f7f903d3a51 100644
--- a/source/uz/sfx2/source/view.po
+++ b/source/uz/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -239,6 +239,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/uz/svtools/source/control.po b/source/uz/svtools/source/control.po
index afb324f4e87..3ae8c41cd68 100644
--- a/source/uz/svtools/source/control.po
+++ b/source/uz/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,6 +292,110 @@ msgstr "Qora qiya"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/uz/svtools/source/misc.po b/source/uz/svtools/source/misc.po
index ab38f5ec731..853c29591ad 100644
--- a/source/uz/svtools/source/misc.po
+++ b/source/uz/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 13:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3191,9 +3191,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3921,6 +3921,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/uz/sw/source/core/undo.po b/source/uz/sw/source/core/undo.po
index 5f88b4c11e4..36516528487 100644
--- a/source/uz/sw/source/core/undo.po
+++ b/source/uz/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2015-05-14 05:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -894,42 +894,82 @@ msgstr "ustun ajratuvchisi"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "$1 ni qoʻyish"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "$1 ni olib tashlash"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributlar oʻzgardi"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Jadval oʻzgardi"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Uslub oʻzgardi"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/uz/sw/source/uibase/docvw.po b/source/uz/sw/source/uibase/docvw.po
index 94fc7d44550..0e7c0f23532 100644
--- a/source/uz/sw/source/uibase/docvw.po
+++ b/source/uz/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/uz/sw/source/uibase/ribbar.po b/source/uz/sw/source/uibase/ribbar.po
index acc728d8b70..11691f315e8 100644
--- a/source/uz/sw/source/uibase/ribbar.po
+++ b/source/uz/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 06:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/uz/sw/source/uibase/uiview.po b/source/uz/sw/source/uibase/uiview.po
index 734fc9035dc..69dc059f26f 100644
--- a/source/uz/sw/source/uibase/uiview.po
+++ b/source/uz/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/uz/xmlsecurity/uiconfig/ui.po b/source/uz/xmlsecurity/uiconfig/ui.po
index a91c3b1a4f0..074755756ad 100644
--- a/source/uz/xmlsecurity/uiconfig/ui.po
+++ b/source/uz/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-24 00:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/ve/desktop/source/deployment/gui.po b/source/ve/desktop/source/deployment/gui.po
index 4a36a00ab73..f30a96c40f6 100644
--- a/source/ve/desktop/source/deployment/gui.po
+++ b/source/ve/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-12-11 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -170,6 +170,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -181,6 +189,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po
index dabeaecd2d7..812f301d2ff 100644
--- a/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ve/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 11:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -636,8 +636,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Nangani Thero"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4152,6 +4152,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27429,15 +27546,6 @@ msgid "~Properties..."
msgstr "Vhuvha..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/ve/sc/source/ui/src.po b/source/ve/sc/source/ui/src.po
index 5e2cb1ba04c..e3b5a4a28e9 100644
--- a/source/ve/sc/source/ui/src.po
+++ b/source/ve/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2740,7 +2740,7 @@ msgstr "Mutevhe wo sudzuluwa u bva kha #1 u swika kha #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2908,7 +2908,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/ve/sfx2/source/view.po b/source/ve/sfx2/source/view.po
index 60df3c6c2e0..e36a111db0c 100644
--- a/source/ve/sfx2/source/view.po
+++ b/source/ve/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -237,6 +237,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/ve/svtools/source/control.po b/source/ve/svtools/source/control.po
index 9b1ef54e6ce..6d17aeb96c7 100644
--- a/source/ve/svtools/source/control.po
+++ b/source/ve/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 03:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,6 +293,110 @@ msgstr "Ḽeḓeretsendama Ntswu"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/ve/svtools/source/misc.po b/source/ve/svtools/source/misc.po
index b7bb6277074..5d0b2964361 100644
--- a/source/ve/svtools/source/misc.po
+++ b/source/ve/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3206,9 +3206,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3935,6 +3935,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/ve/sw/source/core/undo.po b/source/ve/sw/source/core/undo.po
index c09861c0cfe..0fd20d4a0d8 100644
--- a/source/ve/sw/source/core/undo.po
+++ b/source/ve/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 04:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -897,46 +897,84 @@ msgid "column break"
msgstr "u khauwa ha khoḽomu"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Longelani sa"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Thuthani #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Zwipiḓa zwo shandulwa"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Thebuḽu yo shandulwa"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Tshitaela tsho shandulwa"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/ve/sw/source/uibase/docvw.po b/source/ve/sw/source/uibase/docvw.po
index b5c1f274526..c66db8b6cd3 100644
--- a/source/ve/sw/source/uibase/docvw.po
+++ b/source/ve/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 20:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/ve/sw/source/uibase/ribbar.po b/source/ve/sw/source/uibase/ribbar.po
index 1fc76b790bb..7a6e23c5b4c 100644
--- a/source/ve/sw/source/uibase/ribbar.po
+++ b/source/ve/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 06:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/ve/sw/source/uibase/uiview.po b/source/ve/sw/source/uibase/uiview.po
index b0740f6479d..bd5fec34c1b 100644
--- a/source/ve/sw/source/uibase/uiview.po
+++ b/source/ve/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 20:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/ve/xmlsecurity/uiconfig/ui.po b/source/ve/xmlsecurity/uiconfig/ui.po
index a29cfef19c3..970ad67f7a0 100644
--- a/source/ve/xmlsecurity/uiconfig/ui.po
+++ b/source/ve/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-24 00:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/vec/desktop/source/deployment/gui.po b/source/vec/desktop/source/deployment/gui.po
index 01ab5ef41e4..222fd8f39d8 100644
--- a/source/vec/desktop/source/deployment/gui.po
+++ b/source/vec/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-03-29 16:27+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490804827.000000\n"
#: dp_gui_dialog.src
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po b/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po
index 4863dadcdcc..3c25d7a0714 100644
--- a/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/vec/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-06-06 05:46+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -617,8 +617,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Sełesiona tema"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4022,6 +4022,123 @@ msgctxt ""
msgid "~Insert..."
msgstr "~Insarisi..."
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
msgctxt ""
"CalcWindowState.xcu\n"
@@ -26702,15 +26819,6 @@ msgstr "~Propietà..."
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr "~Ojeto..."
-
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
diff --git a/source/vec/sc/source/ui/src.po b/source/vec/sc/source/ui/src.po
index 66ca2a1a201..1da6541e75b 100644
--- a/source/vec/sc/source/ui/src.po
+++ b/source/vec/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-06 05:47+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2017-06-14 05:46+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496728066.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1497419166.000000\n"
#: globstr.src
msgctxt ""
@@ -975,13 +975,12 @@ msgid "The destination range is not empty. Overwrite existing contents?"
msgstr "L'area de destinasion no ła ze mìa voda. Vuto sorascrìvarla?"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"STR_PIVOT_REMOVE_PIVOTCHART+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "There is at least one pivot chart associated with this pivot table. Should remove all or abort?"
-msgstr "A ghe ze almanco un diagrama dinàmego asosià co 'sta tabeła pivot. Vuto cavar via tuto o vuto intaronpare l'operasion?"
+msgstr "A ghe ze almanco un diagrama pivot asosià co 'sta tabeła pivot. Vuto cavar via tuto o vuto intaronpare l'operasion?"
#: globstr.src
msgctxt ""
@@ -997,7 +996,7 @@ msgctxt ""
"STR_PIVOT_TOTAL+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Total"
-msgstr ""
+msgstr "Totałe"
#: globstr.src
msgctxt ""
@@ -1203,7 +1202,7 @@ msgctxt ""
"STR_PIVOT_TABLE+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table"
-msgstr "Tabeła piłota"
+msgstr "Tabeła pivot"
#: globstr.src
msgctxt ""
@@ -1211,7 +1210,7 @@ msgctxt ""
"STR_FUN_TEXT_SUM+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Sum"
-msgstr ""
+msgstr "Soma"
#: globstr.src
msgctxt ""
@@ -1307,7 +1306,7 @@ msgctxt ""
"STR_PIVOT_NOTFOUND+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "No pivot table found at this position."
-msgstr "In 'sta pozision no ze mìa stà trovà njanca na tabeła piłota."
+msgstr "In 'sta pozision no ze mìa stà trovà nesuna tabeła pivot."
#: globstr.src
msgctxt ""
@@ -1863,7 +1862,7 @@ msgctxt ""
"STR_STYLENAME_STANDARD+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Predefinìo"
#: globstr.src
msgctxt ""
@@ -1965,7 +1964,7 @@ msgctxt ""
"STR_UNDO_RENAME_TAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Renòmina fojo"
#: globstr.src
msgctxt ""
@@ -2553,7 +2552,7 @@ msgctxt ""
"STR_PIVOT_STYLE_INNER+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table Value"
-msgstr "Vałor tabeła piłota"
+msgstr "Vałor tabeła pivot"
#: globstr.src
msgctxt ""
@@ -2561,7 +2560,7 @@ msgctxt ""
"STR_PIVOT_STYLE_RESULT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table Result"
-msgstr "Rezultado tabeła piłota"
+msgstr "Rezultado tabeła pivot"
#: globstr.src
msgctxt ""
@@ -2569,7 +2568,7 @@ msgctxt ""
"STR_PIVOT_STYLE_CATEGORY+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table Category"
-msgstr "Categorìa tabeła piłota"
+msgstr "Categorìa tabeła pivot"
#: globstr.src
msgctxt ""
@@ -2577,7 +2576,7 @@ msgctxt ""
"STR_PIVOT_STYLE_TITLE+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table Title"
-msgstr "Tìtoło tabeła piłota"
+msgstr "Tìtoło tabeła pivot"
#: globstr.src
msgctxt ""
@@ -2585,7 +2584,7 @@ msgctxt ""
"STR_PIVOT_STYLE_FIELDNAME+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table Field"
-msgstr "Canpo tabeła piłota"
+msgstr "Canpo tabeła pivot"
#: globstr.src
msgctxt ""
@@ -2593,7 +2592,7 @@ msgctxt ""
"STR_PIVOT_STYLE_TOP+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot Table Corner"
-msgstr "Àngoło tabeła piłota"
+msgstr "Àngoło tabeła pivot"
#: globstr.src
msgctxt ""
@@ -2702,7 +2701,7 @@ msgstr "Area movesta da #1 a #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2838,7 +2837,7 @@ msgctxt ""
"STR_ERR_DATAPILOT_INPUT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "You cannot change this part of the pivot table."
-msgstr "'Sta parte de ła tabeła piłota no ła pol mìa èsar modifegà."
+msgstr "'Sta parte de ła tabeła pivot no ła pol mìa èsar modifegà."
#: globstr.src
msgctxt ""
@@ -2867,7 +2866,7 @@ msgstr "I vetori incapsułà no i ze mìa suportà."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
@@ -3112,7 +3111,7 @@ msgctxt ""
"STR_ERR_DATAPILOTSOURCE+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Pivot table source data is invalid."
-msgstr "I dati de orìjine de ła tabeła piłota no i ze mìa vàłidi."
+msgstr "I dati de orìjine de ła tabeła pivot no i ze mìa vàłidi."
#: globstr.src
msgctxt ""
@@ -3152,7 +3151,7 @@ msgctxt ""
"STR_HEADER_NAME+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Name"
-msgstr ""
+msgstr "Nome"
#: globstr.src
msgctxt ""
@@ -3608,7 +3607,7 @@ msgctxt ""
"STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
-msgstr "No te pol miga insarir o ełimenar cełe cuando l'area intaresada ła se intèrsega co na tabeła piłota."
+msgstr "No te pol miga insarir o ełimenar cełe cuando l'area intaresà ła se intèrsega co na tabeła pivot."
#: globstr.src
msgctxt ""
@@ -3758,7 +3757,7 @@ msgctxt ""
"STR_CTRLCLICKHYPERLINK+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "%s-click to follow hyperlink:"
-msgstr ""
+msgstr "%s-click par seguir el cołegamento:"
#: globstr.src
msgctxt ""
@@ -3798,7 +3797,7 @@ msgctxt ""
"STR_UNDO_CONDFORMAT_LIST+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Conditional Formats"
-msgstr ""
+msgstr "Formati condisionałi"
#: globstr.src
msgctxt ""
@@ -3918,7 +3917,7 @@ msgctxt ""
"STR_TEXT+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Testo"
#: globstr.src
msgctxt ""
@@ -3926,7 +3925,7 @@ msgctxt ""
"STR_QUERY_PIVOTTABLE_DELTAB+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-msgstr ""
+msgstr "I foji sełesionà i ga rento dati de orijine de łe rełative tabełe pivot che i venjarà perdesti. Sito seguro de vołer ełiminar i foji sełesionà?"
#: globstr.src
msgctxt ""
@@ -3934,7 +3933,7 @@ msgctxt ""
"STR_ERR_NAME_INVALID_CELL_REF+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
-msgstr ""
+msgstr "Nome mìa vàłido. Refarimento a na ceła o a na area de cełe mìa parmesa."
#: scfuncs.src
msgctxt ""
@@ -4942,7 +4941,7 @@ msgctxt ""
"array\n"
"itemlist.text"
msgid "array"
-msgstr ""
+msgstr "matrise"
#: scfuncs.src
msgctxt ""
@@ -5518,7 +5517,7 @@ msgctxt ""
"Calculates the calendar week corresponding to the given date.\n"
"itemlist.text"
msgid "Calculates the calendar week corresponding to the given date."
-msgstr "El torna el nùmaro de ła setimana de na data espresa cofà nùmaro seriałe."
+msgstr "Càlcoła ła setimana de całendaro che corisponde a ła data spesifegà."
#: scfuncs.src
msgctxt ""
@@ -5594,6 +5593,8 @@ msgid ""
"Calculates the calendar week corresponding to the given date.\n"
"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
msgstr ""
+"El càlcoła ła setimana de całendaro che corisponde ła data spesifegà.\n"
+"'Sta funsion ła parmete soło l'interoparabiłità co %PRODUCTNAME 5.0 e varsion presedenti, e OpenOffice.org."
#: scfuncs.src
msgctxt ""
@@ -9850,7 +9851,7 @@ msgctxt ""
"Function\n"
"itemlist.text"
msgid "Function"
-msgstr ""
+msgstr "Funsion"
#: scfuncs.src
msgctxt ""
@@ -10232,6 +10233,8 @@ msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Stonda un nùmaro łontan da zero a'l mùltiplo pì pròsemo a pezo.\n"
+"'Sta funsion cuà ła eziste par garantir l'intaroparabiłità co Microsoft Excel 2007 o version pì vece."
#: scfuncs.src
msgctxt ""
@@ -10559,6 +10562,8 @@ msgid ""
"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Stonda un nùmaro verso el zero co'l mùltiplo pì visin posìbiłe a'l vałor asołuto.\n"
+"'Sta funsion ła ghe ze par l'interoparabiłità co Microsoft Excel 2007 e varsion presedenti."
#: scfuncs.src
msgctxt ""
@@ -20278,7 +20283,7 @@ msgctxt ""
"Extracts value(s) from a pivot table.\n"
"itemlist.text"
msgid "Extracts value(s) from a pivot table."
-msgstr "L'estrae i vałori da na tabeła piłota."
+msgstr "Estrae i vałori da na tabeła pivot."
#: scfuncs.src
msgctxt ""
@@ -20296,7 +20301,7 @@ msgctxt ""
"The name of the pivot table field to extract.\n"
"itemlist.text"
msgid "The name of the pivot table field to extract."
-msgstr "El nome de'l canpo de ła tabeła piłota da estrar."
+msgstr "El nome de'l canpo de ła tabeła pivot da estrar."
#: scfuncs.src
msgctxt ""
@@ -20305,7 +20310,7 @@ msgctxt ""
"Pivot Table\n"
"itemlist.text"
msgid "Pivot Table"
-msgstr "Tabeła piłota"
+msgstr "Tabeła pivot"
#: scfuncs.src
msgctxt ""
@@ -20314,7 +20319,7 @@ msgctxt ""
"A reference to a cell or range in the pivot table.\n"
"itemlist.text"
msgid "A reference to a cell or range in the pivot table."
-msgstr "Un refarimento a na ceła o a na area inte ła tabeła piłota."
+msgstr "Un refarimento a na ceła o a na area inte ła tabeła pivot."
#: scfuncs.src
msgctxt ""
@@ -21862,7 +21867,7 @@ msgctxt ""
"text\n"
"itemlist.text"
msgid "text"
-msgstr ""
+msgstr "testo"
#: scfuncs.src
msgctxt ""
@@ -22222,7 +22227,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Intiero pozitivo minor de 2^48."
#: scfuncs.src
msgctxt ""
@@ -22258,7 +22263,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Intiero pozitivo minor de 2^48."
#: scfuncs.src
msgctxt ""
@@ -22294,7 +22299,7 @@ msgctxt ""
"Positive integer less than 2^48.\n"
"itemlist.text"
msgid "Positive integer less than 2^48."
-msgstr ""
+msgstr "Intiero pozitivo minor de 2^48."
#: scfuncs.src
msgctxt ""
@@ -22870,7 +22875,7 @@ msgctxt ""
"value\n"
"itemlist.text"
msgid "value"
-msgstr ""
+msgstr "vałor"
#: scfuncs.src
msgctxt ""
@@ -22879,7 +22884,7 @@ msgctxt ""
"The number to be rounded.\n"
"itemlist.text"
msgid "The number to be rounded."
-msgstr ""
+msgstr "Nùmaro che se vol stondar."
#: scfuncs.src
msgctxt ""
@@ -22888,7 +22893,7 @@ msgctxt ""
"digits\n"
"itemlist.text"
msgid "digits"
-msgstr ""
+msgstr "sifre"
#: scfuncs.src
msgctxt ""
diff --git a/source/vec/sc/uiconfig/scalc/ui.po b/source/vec/sc/uiconfig/scalc/ui.po
index c6fe8692c63..71cb25d194d 100644
--- a/source/vec/sc/uiconfig/scalc/ui.po
+++ b/source/vec/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-23 05:22+0000\n"
+"PO-Revision-Date: 2017-06-14 05:49+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495516939.000000\n"
+"X-POOTLE-MTIME: 1497419359.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -3467,7 +3467,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Hyperlink"
-msgstr ""
+msgstr "Insarisi cofà cołegamento ipartestuałe"
#: dropmenu.ui
msgctxt ""
@@ -3476,7 +3476,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Link"
-msgstr ""
+msgstr "Insarisi cofà cołegamento"
#: dropmenu.ui
msgctxt ""
@@ -3485,7 +3485,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert as Copy"
-msgstr ""
+msgstr "Insarisi cofà copia"
#: erroralerttabpage.ui
msgctxt ""
@@ -6275,7 +6275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Testo"
#: notebookbar_groups.ui
msgctxt ""
@@ -7859,7 +7859,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Pivot Table Layout"
-msgstr "Strutura tabeła piłota"
+msgstr "Strutura tabeła pivot"
#: pivottablelayoutdialog.ui
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert columns"
-msgstr ""
+msgstr "Insarisi cołone"
#: protectsheetdlg.ui
msgctxt ""
@@ -8255,7 +8255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert rows"
-msgstr ""
+msgstr "Insarisi righe"
#: protectsheetdlg.ui
msgctxt ""
@@ -8264,7 +8264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete columns"
-msgstr ""
+msgstr "Ełìmina cołone"
#: protectsheetdlg.ui
msgctxt ""
@@ -8273,7 +8273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete rows"
-msgstr ""
+msgstr "Ełìmina righe"
#: queryrunstreamscriptdialog.ui
msgctxt ""
@@ -8948,7 +8948,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Ełìmina"
#: scenariomenu.ui
msgctxt ""
@@ -8957,7 +8957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Propietà..."
#: scgeneralpage.ui
msgctxt ""
diff --git a/source/vec/scaddins/source/analysis.po b/source/vec/scaddins/source/analysis.po
index 5e50b495a5a..34962ec6753 100644
--- a/source/vec/scaddins/source/analysis.po
+++ b/source/vec/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-13 07:40+0000\n"
+"PO-Revision-Date: 2017-06-14 05:26+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494661226.000000\n"
+"X-POOTLE-MTIME: 1497417970.000000\n"
#: analysis.src
msgctxt ""
@@ -198,7 +198,7 @@ msgid ""
"Returns the number of the calendar week in which the specified date occurs.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
msgstr ""
-"El restituise el nùmaro de ła setimana drio ła data spesifegà.\n"
+"El restituise el nùmaro de ła setimana de całendaro drio ła data spesifegà.\n"
"'Sta funsion ła eziste par garantir l'interoparabiłità co i veci documenti Microsoft Excel, par i novi documenti dòpara NÙM.SETIMANA."
#: analysis.src
diff --git a/source/vec/scaddins/source/datefunc.po b/source/vec/scaddins/source/datefunc.po
index 789a39802e5..5764e5cafa8 100644
--- a/source/vec/scaddins/source/datefunc.po
+++ b/source/vec/scaddins/source/datefunc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-10 15:24+0000\n"
+"PO-Revision-Date: 2017-06-14 05:23+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494429858.000000\n"
+"X-POOTLE-MTIME: 1497417822.000000\n"
#: datefunc.src
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.\n"
"itemlist.text"
msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks."
-msgstr "Tipo de càlcoło: Tipo = 0 el l'ìndega el travało de tenpo, Tipo = 1 el l'ìndega el nùmaro de ła setimana."
+msgstr "Tipo de càlcoło: Tipo = 0 l'ìndega el travało de tenpo, Tipo = 1 l'ìndega el nùmaro de ła setimana."
#: datefunc.src
msgctxt ""
diff --git a/source/vec/sd/source/core.po b/source/vec/sd/source/core.po
index 33165ac4a1d..c3b3c9b0e80 100644
--- a/source/vec/sd/source/core.po
+++ b/source/vec/sd/source/core.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-03-13 06:15+0000\n"
+"PO-Revision-Date: 2017-06-20 05:35+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1489385718.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497936915.000000\n"
#: glob.src
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"File format error found at $(ARG1)(row,col).\n"
"itemlist.text"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
+msgstr "Eror de formato de'l file in $(ARG1)(riga,cołona)."
#: glob.src
msgctxt ""
@@ -504,7 +504,7 @@ msgctxt ""
"Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col).\n"
"itemlist.text"
msgid "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col)."
-msgstr ""
+msgstr "Eror de formato descoverto inte'l file, inte'l soto-documento $(ARG1) a ła pozision $(ARG2)(riga,cołona)."
#: glob.src
msgctxt ""
diff --git a/source/vec/sd/source/ui/app.po b/source/vec/sd/source/ui/app.po
index 7cfbfec0c74..0dc52992c36 100644
--- a/source/vec/sd/source/ui/app.po
+++ b/source/vec/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-29 18:40+0200\n"
-"PO-Revision-Date: 2017-05-12 05:52+0000\n"
+"PO-Revision-Date: 2017-06-20 05:40+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494568378.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497937234.000000\n"
#: res_bmp.src
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"STR_HTMLEXP_SETGRAPHIC\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Imàjine"
#: strings.src
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"STR_DRAW_GRAF_TOOLBOX\n"
"string.text"
msgid "Image Object Bar"
-msgstr ""
+msgstr "Zbara ojeti imàjine"
#: strings.src
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"STR_UNDO_GRAFFILTER\n"
"string.text"
msgid "Image filter"
-msgstr ""
+msgstr "Filtro imàjine"
#: strings.src
msgctxt ""
@@ -2058,7 +2058,7 @@ msgctxt ""
"STR_GRAPHICS_STYLE_FAMILY\n"
"string.text"
msgid "Drawing Styles"
-msgstr ""
+msgstr "Stiłi dizenjo"
#: strings.src
msgctxt ""
@@ -2218,7 +2218,7 @@ msgctxt ""
"STR_OVERWRITE_WARNING\n"
"string.text"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
-msgstr ""
+msgstr "Ła carteła łocałe de destinasion '%FILENAME' no ła ze mìa voda. Racuanti file i podarìe venjer sorascrivesti. Vutu ndar vanti?"
#: toolbox.src
msgctxt ""
diff --git a/source/vec/sd/source/ui/view.po b/source/vec/sd/source/ui/view.po
index e1a595986d2..c9d620f33a4 100644
--- a/source/vec/sd/source/ui/view.po
+++ b/source/vec/sd/source/ui/view.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-03-28 05:36+0000\n"
+"PO-Revision-Date: 2017-06-20 05:42+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vec\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1490679417.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1497937349.000000\n"
#: DocumentRenderer.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_IMPRESS_PRINT_UI_GROUP_NAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr ""
+msgstr "%PRODUCTNAME %s"
#: DocumentRenderer.src
msgctxt ""
diff --git a/source/vec/sfx2/source/view.po b/source/vec/sfx2/source/view.po
index eb15a8c5304..4c480d50214 100644
--- a/source/vec/sfx2/source/view.po
+++ b/source/vec/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-04-27 15:38+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493307484.000000\n"
#: view.src
@@ -253,6 +253,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/vec/svtools/source/control.po b/source/vec/svtools/source/control.po
index 55117adc5f9..48b6646f98f 100644
--- a/source/vec/svtools/source/control.po
+++ b/source/vec/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-10-09 17:34+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,6 +291,110 @@ msgstr "Corsivo negro"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/vec/svtools/source/misc.po b/source/vec/svtools/source/misc.po
index c2c23f59f2e..5025515fa5f 100644
--- a/source/vec/svtools/source/misc.po
+++ b/source/vec/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-26 14:55+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1495810529.000000\n"
#: imagemgr.src
@@ -3180,10 +3180,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Xibe"
msgstr "Xibe"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/vec/sw/source/core/undo.po b/source/vec/sw/source/core/undo.po
index ed9cd8b1af1..b0f6cdb6254 100644
--- a/source/vec/sw/source/core/undo.po
+++ b/source/vec/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-04-27 15:18+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1493306321.000000\n"
#: undo.src
@@ -891,42 +891,82 @@ msgstr "intarusion de cołona"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Insarisi $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Ełìmina $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Atributi modifegài"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Tabeła modifegà"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Stiłe modifegà"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/vec/sw/source/uibase/docvw.po b/source/vec/sw/source/uibase/docvw.po
index 70a6740fb9f..7f9262a6e8a 100644
--- a/source/vec/sw/source/uibase/docvw.po
+++ b/source/vec/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-10-09 19:51+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr "Stiłi paràgrafo inpostai"
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/vec/sw/source/uibase/ribbar.po b/source/vec/sw/source/uibase/ribbar.po
index 590eb771af8..49ed18946ab 100644
--- a/source/vec/sw/source/uibase/ribbar.po
+++ b/source/vec/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-03-24 07:12+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr "Testo de ła fòrmuła"
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/vec/sw/source/uibase/uiview.po b/source/vec/sw/source/uibase/uiview.po
index 9b23f594d3c..dbff0de86f3 100644
--- a/source/vec/sw/source/uibase/uiview.po
+++ b/source/vec/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2017-01-25 06:26+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr "~Esporta testo sorjente..."
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/vec/xmlsecurity/uiconfig/ui.po b/source/vec/xmlsecurity/uiconfig/ui.po
index 34df7263582..8af5132c562 100644
--- a/source/vec/xmlsecurity/uiconfig/ui.po
+++ b/source/vec/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-10 15:38+0000\n"
"Last-Translator: VenetoABC <veneto.abc@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494430716.000000\n"
#: certgeneral.ui
@@ -172,6 +172,15 @@ msgstr "Cava via"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/vi/desktop/source/deployment/gui.po b/source/vi/desktop/source/deployment/gui.po
index f4742f97a17..d5cee026a01 100644
--- a/source/vi/desktop/source/deployment/gui.po
+++ b/source/vi/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 10:59+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2015-12-11 20:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: vi\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467716360.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1449867253.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -174,6 +174,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -185,6 +193,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/vi/helpcontent2/source/text/sbasic/shared.po b/source/vi/helpcontent2/source/text/sbasic/shared.po
index d05a5cca866..3f1f8628b03 100644
--- a/source/vi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/vi/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: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-12-20 22:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -483,10 +483,42 @@ msgstr ""
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
+"hd_id061420171139089682\n"
+"help.text"
+msgid "<variable id=\"functsyntax\">Syntax:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139087480\n"
+"help.text"
+msgid "<variable id=\"functvalue\">Return value:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139084157\n"
+"help.text"
+msgid "<variable id=\"functparameters\">Parameters:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id061420171139088233\n"
+"help.text"
+msgid "<variable id=\"functexample\">Example:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
"hd_id3152869\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr "<variable id=\"errorcode\">Mã lỗi</variable>"
+msgid "<variable id=\"errorcode\">Error codes:</variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -33040,6 +33072,798 @@ msgctxt ""
msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr "Hàm lúc chạy này trả về ngữ cảnh thành phần mặc định cần dùng, nếu có khởi tạo dịch vụ thông qua XmultiServiceFactory. Xem chương <item type=\"literal\">Professional UNO</item> (UNO chuyên nghiệp) trong <item type=\"literal\">Developer's Guide</item> (Sổ tay Nhà phát triển) ở địa chỉ <link href=\"http://api.openoffice.org\">api.openoffice.org</link> để tìm thêm thông tin."
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"tit\n"
+"help.text"
+msgid "DDB Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>DDB function</bookmark_value>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [Runtime - VBA]\">DDB Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the depreciation of an asset for a specified period using the arithmetic-declining method."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332738\n"
+"help.text"
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142331999\n"
+"help.text"
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338147\n"
+"help.text"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142338917\n"
+"help.text"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142335816\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id3145609\n"
+"help.text"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print ddb_yr1 ' returns 1,721.81 currency units."
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3149998\">DDB function in CALC</link>"
+msgstr ""
+
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"tit\n"
+"help.text"
+msgid "FV Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [Runtime - VBA]\">FV Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241668\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3151205\">FV function in CALC</link>"
+msgstr ""
+
+#: 03140001.xhp
+msgctxt ""
+"03140001.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"tit\n"
+"help.text"
+msgid "IPmt Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IPmt function</bookmark_value>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [Runtime - VBA]\">IPmt Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the periodic amortizement for an investment with regular payments and a constant interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Per</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730134582\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730144688\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730148520\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170730141431\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) is the due date for the periodic payments."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3149339\">IPMT function in CALC</link>"
+msgstr ""
+
+#: 03140002.xhp
+msgctxt ""
+"03140002.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"tit\n"
+"help.text"
+msgid "IRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>IRR function</bookmark_value>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [Runtime - VBA]\">IRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the internal rate of return for an investment."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>The array of values of the cash-flow. The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>Guess</emph> An initial estimate at what the IRR will be."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print irrValue ' returns 11.3321028236252 . The internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3153948\">IRR function in CALC</link>"
+msgstr ""
+
+#: 03140003.xhp
+msgctxt ""
+"03140003.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"tit\n"
+"help.text"
+msgid "MIRR Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MIRR function</bookmark_value>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [Runtime - VBA]\">MIRR Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the modified internal rate of return of a series of investments."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730135034\n"
+"help.text"
+msgid "<emph>Values(): </emph>An array of cash flows, representing a series of payments and income, where negative values are treated as payments and positive values are treated as income. This array must contain at least one negative and at least one positive value."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170513518949\n"
+"help.text"
+msgid "<emph>Investment</emph>: is the rate of interest of the investments (the negative values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170730137782\n"
+"help.text"
+msgid "<emph>ReinvestRate:</emph> the rate of interest of the reinvestment (the positive values of the array)."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061620170217548258\n"
+"help.text"
+msgid "Print mirrValue ' returns 94.16. The modified internal rate of return of the cash flow."
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp#bm_id3148974\">MIRR function in CALC</link>"
+msgstr ""
+
+#: 03140004.xhp
+msgctxt ""
+"03140004.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"tit\n"
+"help.text"
+msgid "NPer Function [Runtime - VBA]"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>NPer function</bookmark_value>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [Runtime - VBA]\">NPer Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Calculates the number of periods for a loan or investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170116474964\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id0614201701254487\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functvalue\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125448913\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017042024114\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420248911\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420246794\n"
+"help.text"
+msgid "<emph>PV</emph> is the (present) cash value of an investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061620170603217534\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value of the loan / investment."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170420241932\n"
+"help.text"
+msgid "<emph>Due</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id0614201704292615\n"
+"help.text"
+msgid "0 - the payment is due at the end of the period;"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170429263061\n"
+"help.text"
+msgid "1 - the payment is due at the beginning of the period."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"hd_id061420170125449765\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170142332315\n"
+"help.text"
+msgid "Print period ' returns -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp#bm_id3156435\">NPER function in CALC</link>"
+msgstr ""
+
+#: 03140005.xhp
+msgctxt ""
+"03140005.xhp\n"
+"par_id06142017015837916\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
diff --git a/source/vi/helpcontent2/source/text/shared/00.po b/source/vi/helpcontent2/source/text/shared/00.po
index c200fdc086f..8e4bd8c673d 100644
--- a/source/vi/helpcontent2/source/text/shared/00.po
+++ b/source/vi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 04:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9725,7 +9725,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Chapter Numbering - Position</emph> tab</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9749,7 +9749,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#: 00040500.xhp
diff --git a/source/vi/helpcontent2/source/text/shared/01.po b/source/vi/helpcontent2/source/text/shared/01.po
index f428e669f05..4b2df4ff168 100644
--- a/source/vi/helpcontent2/source/text/shared/01.po
+++ b/source/vi/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-07-07 00:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4805,8 +4805,8 @@ msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
-msgstr "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Chọn kiểu cho khổ văn bản hoặc kiểu lể bạn muốn sử dụng để phân chia tài liệu gốc thành những tài liệu nhỏ hơn.</ahelp> Mặc định những tài liệu mới sẽ đựơc tạo cho mỗi căn lề mức độ 1."
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgstr ""
#: 01160300.xhp
msgctxt ""
@@ -40469,8 +40469,8 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr "<ahelp hid=\".\">Đặt có nên xuất liên kết lưu của tài liệu Writer dưới dạng liên kết lưu PDF. Liên kết lưu được tạo cho mọi đoạn văn phác thảo (<emph>Công cụ > Đánh số Phác thảo</emph>) và cho mọi mục nhập mục lục cho đó bạn đã gán siêu liên kết trong tài liệu nguồn.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/shared/optionen.po b/source/vi/helpcontent2/source/text/shared/optionen.po
index d99859a84a7..28ecf6c82ae 100644
--- a/source/vi/helpcontent2/source/text/shared/optionen.po
+++ b/source/vi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 14:27+0200\n"
"PO-Revision-Date: 2016-07-07 00:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2277,7 +2277,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME let you to define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
+msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog.</ahelp></variable> Click <emph>OK</emph> to display the newly defined color in the <emph>New</emph> preview box of the <emph>Colors</emph> tab, where you can then decide if you want to add or replace the new color in the current color palette."
msgstr ""
#: 01010501.xhp
@@ -2285,7 +2285,15 @@ msgctxt ""
"01010501.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "Pick a Color Window"
+msgid "The Pick a Color Window"
+msgstr ""
+
+#: 01010501.xhp
+msgctxt ""
+"01010501.xhp\n"
+"par_id61884\n"
+"help.text"
+msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\"><caption id=\"alt_id34144\">Pick a Color window</caption></image>"
msgstr ""
#: 01010501.xhp
@@ -2301,7 +2309,7 @@ msgctxt ""
"01010501.xhp\n"
"par_id3148945\n"
"help.text"
-msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable are provided only to ease the input of color values using CMYK notation."
+msgid "The radio buttons select the color component of the color. This color component can be expressed in either RGB (Red, Green, Blue) or HSB (Hue, Saturation, Brightness) color models. The CMYK color model is not selectable and is provided only to ease the input of color values using CMYK notation."
msgstr ""
#: 01010501.xhp
diff --git a/source/vi/helpcontent2/source/text/swriter.po b/source/vi/helpcontent2/source/text/swriter.po
index f114adbbf07..baa964d3211 100644
--- a/source/vi/helpcontent2/source/text/swriter.po
+++ b/source/vi/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:17+0200\n"
"PO-Revision-Date: 2016-05-25 05:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1053,8 +1053,8 @@ msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Đánh số dàn bài\">Đánh số dàn bài</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
+msgstr ""
#: main0106.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/swriter/00.po b/source/vi/helpcontent2/source/text/swriter/00.po
index 65074b7f8d9..9afb9dfa611 100644
--- a/source/vi/helpcontent2/source/text/swriter/00.po
+++ b/source/vi/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-06-20 14:31+0200\n"
"PO-Revision-Date: 2016-05-25 05:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2253,24 +2253,24 @@ msgctxt ""
"00000406.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Outline Numbering</emph></variable>"
-msgstr "<variable id=\"kapitelnumerierung\">Chọn lệnh <emph>Công cụ > Đánh số Phác thảo</emph>.</variable>"
+msgid "<variable id=\"kapitelnumerierung\">Choose <emph>Tools - Chapter Numbering</emph></variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153530\n"
"help.text"
-msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Outline Numbering - Numbering</emph> tab </variable>"
-msgstr "<variable id=\"kapitelnumerierung1\">Chọn thẻ <emph>Công cụ > Đánh số Phác thảo > Đánh số</emph>.</variable>"
+msgid "<variable id=\"kapitelnumerierung1\">Choose <emph>Tools - Chapter Numbering - Numbering</emph> tab</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151321\n"
"help.text"
-msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format) </variable>"
-msgstr "<variable id=\"zeilennumerierung\">Chọn <emph>Công cụ - Đánh số dòng</emph> (không dùng cho định dạng HTML).</variable>"
+msgid "<variable id=\"zeilennumerierung\">Choose <emph>Tools - Line Numbering</emph> (not for HTML format)</variable>"
+msgstr ""
#: 00000406.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/swriter/01.po b/source/vi/helpcontent2/source/text/swriter/01.po
index 482a2a757a1..2459d6d7b41 100644
--- a/source/vi/helpcontent2/source/text/swriter/01.po
+++ b/source/vi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-06-20 14:37+0200\n"
"PO-Revision-Date: 2016-07-07 00:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1125,8 +1125,8 @@ msgctxt ""
"02110000.xhp\n"
"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_OUTLINES\">Nhấn vào con số <emph>1</emph> để xem chỉ mỗi tiêu đề cấp đầu trong cửa sổ <emph>Bộ điều hướng</emph>, hoặc (chẳng hạn) vào con số <emph>10</emph> để xem mọi tiêu đề.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
#: 02110000.xhp
msgctxt ""
@@ -5829,8 +5829,8 @@ msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Outline numbering\"><emph>Tools - Outline numbering</emph></link> are not displayed."
-msgstr "Nếu bạn chọn mục « Số thứ tự chương không có dấu tách » thì không hiển thị dấu tách được ghi rõ cho số thứ tự chương dưới <link href=\"text/swriter/01/06060000.xhp\" name=\"Công cụ > Đánh số chương\"><emph>Công cụ > Đánh số chương</emph></link>."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><emph>Tools - Chapter numbering</emph></link> are not displayed."
+msgstr ""
#: 04090001.xhp
msgctxt ""
@@ -11213,8 +11213,8 @@ msgctxt ""
"04120221.xhp\n"
"par_id3154567\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Outline Numbering</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Chèn tiêu đề chương đầy đủ, gồm có (nếu sẵn sàng) số thứ tự chương. Để gán số thứ tự chương cho một kiểu dáng tiêu đề, chọn mục trình đơn <emph>Công cụ > Đánh số Phác thảo</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
+msgstr ""
#: 04120221.xhp
msgctxt ""
@@ -21341,16 +21341,16 @@ msgctxt ""
"06060000.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Đánh số Phác thảo"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Đánh số Phác thảo"
+msgid "Chapter Numbering"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21365,24 +21365,24 @@ msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Outline numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Chức năng đánh số phác thảo được liên kết đến kiểu dáng đoạn văn. Mặc định là các kiểu dáng đoạn văn kiểu « Tiêu đề » (1-10) được gán cho những cấp số phác thảo tương ứng (1-10). Bạn vẫn còn có thể gán kiểu dáng đoạn văn khác cho mỗi cấp số phác thảo."
+msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Muốn có tiêu đề đánh số thì sử dụng lệnh trình đơn <emph>Công cụ > Đánh số Phác thảo</emph> để gán cách đánh số cho kiểu dáng đoạn văn. Trong trường hợp này, không sử dụng biểu tượng <emph>Đánh số</emph> trên thanh <emph>Định dạng</emph>."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Để tô sáng các số phác thảo được hiển thị trên màn hình, chọn lệnh <emph>Xem > Đánh dấu trường</emph>."
+msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View -</emph> <emph>Field Shadings</emph>."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21397,16 +21397,16 @@ msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads an outline number format. A saved outline number format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Lưu hay nạp một định dạng số phác thảo. Một định dạng số phác thảo đã lưu thì sẵn sàng cho mọi tài liệu văn bản</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter and outline number format. A saved outline number format is available to all text documents.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Format</emph> button is only available for outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
-msgstr "Nút <emph>Định dạng</emph> chỉ sẵn sàng để đánh số phác thảo. Đối với các kiểu dáng danh sách kiểu đánh số hay chấm điểm, hãy sửa đổi các Kiểu dáng Đánh số của đoạn văn."
+msgid "The <emph>Format</emph> button is only available for chapter and outline numbering. For numbered or bulleted list styles, modify the Numbering Styles of the paragraphs."
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21437,8 +21437,8 @@ msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Mở hộp thoại trong đó bạn có thể lưu thiết lập hiện thời cho cấp phác thảo đã chọn. Vậy bạn có thể nạp thiết lập này từ tài liệu khác.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -21493,8 +21493,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Nhấn vào cấp phác thảo mà bạn muốn sửa đổi, sau đó ghi rõ các tùy chọn đánh số cho cấp đó.</ahelp> Để áp dụng các tùy chọn đánh số, trừ cho kiểu dáng đoạn văn, cho mọi cấp, hãy nhấn vào nút « 1-10 »."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for the paragraph style, to all of the levels, click \"1-10\"."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -21525,8 +21525,8 @@ msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Chọn kiểu dáng đoạn văn mà bạn muốn gán cho cấp phác thảo đã chọn.</ahelp> Nhấn vào « Không có » thì không xác định cấp phác thảo đã chọn."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#: 06060100.xhp
msgctxt ""
@@ -25301,16 +25301,16 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"tit\n"
"help.text"
-msgid "New Address Block"
-msgstr "Khối địa chỉ mới"
+msgid "New Address Block / Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10542\n"
"help.text"
-msgid "New Address Block"
-msgstr "Khối địa chỉ mới"
+msgid "New Address Block or Edit Address Block"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25325,8 +25325,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "Address Elements"
-msgstr "Phần tử Địa chỉ"
+msgid "Address elements"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
@@ -25373,8 +25373,8 @@ msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN1057E\n"
"help.text"
-msgid "Drag address element to the field below"
-msgstr "Kéo phần tử địa chỉ sang trường bên dưới"
+msgid "Drag address elements here"
+msgstr ""
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/vi/helpcontent2/source/text/swriter/guide.po b/source/vi/helpcontent2/source/text/swriter/guide.po
index 2e505a3fe8d..a71c27d61ef 100644
--- a/source/vi/helpcontent2/source/text/swriter/guide.po
+++ b/source/vi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-18 00:24+0200\n"
+"POT-Creation-Date: 2017-06-20 14:50+0200\n"
"PO-Revision-Date: 2016-07-07 00:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -189,8 +189,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
-msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Bạn có thể di chuyển các tiêu đề và văn bản phụ lên và xuống trong tài liệu bằng cách sử dụng Bộ điều hướng. Cũng có thể nâng hay hạ cấp của tiêu đề. Để sử dụng tính năng này, định dạng các tiêu đề trong tài liệu theo một trong những kiểu dáng đoạn văn đã định sẵn. Để áp dụng kiểu dáng đoạn văn riêng cho một tiêu đề, chọn lệnh <emph>Công cụ > Đánh số Phác thảo</emph>, chọn kiểu dáng trong hộp <emph>Kiểu dáng Đoạn văn</emph>, sau đó nhấn-kép vào con số trong danh sách <emph>Cấp</emph>."
+msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Chapter Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -2901,15 +2901,15 @@ msgctxt ""
"chapter_numbering.xhp\n"
"tit\n"
"help.text"
-msgid "Outline Numbering"
-msgstr "Đánh số Phác thảo"
+msgid "Chapter Numbering"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"bm_id3147682\n"
"help.text"
-msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
+msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr ""
#: chapter_numbering.xhp
@@ -2917,16 +2917,16 @@ msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Outline Numbering\">Outline Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Đánh số Phác thảo\">Đánh số Phác thảo</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155605\n"
"help.text"
-msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the outline hierarchy."
-msgstr "Bạn có thể sửa đổi phân cấp tiêu đề, hoặc gán một cấp nào đó cho một kiểu dáng đoạn văn riêng. Cũng có thể thêm vào kiểu dáng đoạn tiêu đề khả năng đánh số các chương và phần. Mặc định là kiểu dáng đoạn văn « Tiêu đề 1 » nằm ở đầu của phân cấp phác thảo."
+msgid "You can modify the heading hierarchy or assign a level in the hierarchy to a custom paragraph style. You can also add chapter and section numbering to heading paragraph styles. By default, the \"Heading 1\" paragraph style is at the top of the chapter hierarchy."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2941,8 +2941,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Chọn mục <item type=\"menuitem\">Công cụ - Đánh số phác thảo</item>, rồi nhấn tab <item type=\"menuitem\">Đánh số</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107CE\n"
"help.text"
-msgid "To Remove Automatic Outline Numbering From a Heading Paragraph"
-msgstr "Để gỡ bỏ khả năng tự động đánh số khỏi một đoạn văn tiêu đề:"
+msgid "To Remove Automatic Chapter Numbering From a Heading Paragraph"
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -2997,8 +2997,8 @@ msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155571\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Outline Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Chọn mục <item type=\"menuitem\">Công cụ - Đánh số phác thảo</item>, rồi nhấn tab <item type=\"menuitem\">Đánh số</item> ."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr ""
#: chapter_numbering.xhp
msgctxt ""
@@ -6109,8 +6109,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3153414\n"
"help.text"
-msgid "Before you can insert chapter information into a header or footer, you must first set the outline numbering options for the paragraph style that you want to use for chapter titles."
-msgstr "Trước khi bạn có thể chèn thông tin chương vào đầu/chân trang, bạn cần phải đặt các tùy chọn đánh số phác thảo cho kiểu dáng đoạn văn bạn muốn sử dụng cho các tựa đề chương."
+msgid "Before you can insert chapter information into a header or footer, you must first set the chapter numbering options for the paragraph style that you want to use for chapter titles."
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -6125,8 +6125,8 @@ msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph>."
-msgstr "Chọn lệnh <emph>Công cụ > Đánh số Phác thảo</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgstr ""
#: header_with_chapter.xhp
msgctxt ""
@@ -7125,8 +7125,8 @@ msgctxt ""
"indices_enter.xhp\n"
"bm_id3149689\n"
"help.text"
-msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
-msgstr "<bookmark_value>chỉ mục; xác định mục nhập</bookmark_value><bookmark_value>mục lục; xác định mục nhập</bookmark_value><bookmark_value>mục nhập; xác định trong chỉ mục/mục lục</bookmark_value>"
+msgid "<bookmark_value>indexes; defining entries in</bookmark_value> <bookmark_value>tables of contents; defining entries in</bookmark_value> <bookmark_value>entries; defining in indexes/tables of contents</bookmark_value>"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7157,8 +7157,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3147409\n"
"help.text"
-msgid "Choose <emph>Insert - Table of Contents and Index - Index Entry</emph>, and do one of the following:"
-msgstr "Chọn lệnh <emph>Chèn > Chỉ mục và Bảng > Mục nhập</emph>, sau đó làm một của những hành động này:"
+msgid "Choose <item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item>, and do one of the following:"
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <emph>Tools - Outline Numbering</emph> and click the <emph>Numbering</emph> tab."
-msgstr "Chọn lệnh <emph>Công cụ > Đánh số Phác thảo</emph> và nhấn vào thẻ <emph>Đánh số</emph>."
+msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr ""
#: indices_enter.xhp
msgctxt ""
@@ -7837,8 +7837,8 @@ msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
-msgstr "Nếu bạn muốn dùng một kiểu dáng đoạn khác như một bảng mục lục, hãy chọn <item type=\"menuitem\">Kiểu dáng bổ sung</item> đánh dấu hộp kiểm trong vùng <item type=\"menuitem\">Tạo từ</item>, rồi nhấn (<item type=\"menuitem\">...</item>) nút kế sau hộp kiểm. Trong hộp thoại <item type=\"menuitem\">Gán kiểu dáng</item>, chọn kiểu dáng trong danh sách, rồi nhắp nút <item type=\"menuitem\">>></item> hoặc <item type=\"menuitem\"><<</item> để xác định cấp độ phác thảo cho kiểu dáng đoạn."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgstr ""
#: indices_toc.xhp
msgctxt ""
@@ -8013,7 +8013,7 @@ msgctxt ""
"indices_userdef.xhp\n"
"par_id3150720\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the <item type=\"menuitem\">Assign styles</item> button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
msgstr ""
#: insert_beforetable.xhp
@@ -9485,8 +9485,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"bm_id3149637\n"
"help.text"
-msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
-msgstr "<bookmark_value>đánh số; gỡ bỏ/gián đoạn</bookmark_value><bookmark_value>danh sách chấm điểm; gián đoạn</bookmark_value><bookmark_value>danh sách;gỡ bỏ/gián đoạn số thứ tự</bookmark_value><bookmark_value>xoá;số trong danh sách</bookmark_value><bookmark_value>gián đoạn danh sách đánh số</bookmark_value><bookmark_value>thay đổi;số đầu tiên trong danh sách</bookmark_value>"
+msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
@@ -9509,8 +9509,8 @@ msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Outline Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Nếu muốn đánh số tiêu đề, sử dụng lệnh trình đơn <emph>Công cụ > Đánh số Phác thảo</emph> để gán cách đánh số cho kiểu dáng đoạn văn. Trong trường hợp này, không sử dụng biểu tượng <emph>Đánh số</emph> trên thanh <emph>Định dạng</emph>."
+msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgstr ""
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po
index d6b8083f2c3..847f6181977 100644
--- a/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/vi/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -622,8 +622,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Chọn sắc thái"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4075,6 +4075,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26992,15 +27109,6 @@ msgid "~Properties..."
msgstr "Thuộc tính..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/vi/sc/source/ui/src.po b/source/vi/sc/source/ui/src.po
index d4f7896cdb9..d9700493b67 100644
--- a/source/vi/sc/source/ui/src.po
+++ b/source/vi/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2017-05-16 09:29+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2696,7 +2696,7 @@ msgstr "Phạm vi đã di chuyển từ #1 sang #2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2861,7 +2861,7 @@ msgstr "Không hỗ trợ mảng lồng nhau."
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/vi/sfx2/source/view.po b/source/vi/sfx2/source/view.po
index 25b6df251db..81f9d4c972d 100644
--- a/source/vi/sfx2/source/view.po
+++ b/source/vi/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -256,6 +256,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/vi/svtools/source/control.po b/source/vi/svtools/source/control.po
index d03460d6878..f10d791dec0 100644
--- a/source/vi/svtools/source/control.po
+++ b/source/vi/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.4\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 04:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Vietnamese <du-an-most@lists.hanoilug.org>\n"
@@ -291,6 +291,110 @@ msgstr "Đen nghiêng"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/vi/svtools/source/misc.po b/source/vi/svtools/source/misc.po
index e8699f53a6c..ebbde6c80a9 100644
--- a/source/vi/svtools/source/misc.po
+++ b/source/vi/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.4\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 14:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Vietnamese <du-an-most@lists.hanoilug.org>\n"
@@ -3182,10 +3182,10 @@ msgstr "Bekwel"
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
-msgstr "Kituba"
+msgid "Kituba (Congo)"
+msgstr ""
#: langtab.src
msgctxt ""
@@ -3912,6 +3912,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/vi/sw/source/core/undo.po b/source/vi/sw/source/core/undo.po
index 14ea008109a..331c025920e 100644
--- a/source/vi/sw/source/core/undo.po
+++ b/source/vi/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 04:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -892,42 +892,82 @@ msgstr "chỗ ngắt cột"
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Chèn $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Xoá $1"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Thuộc tính đã thay đổi"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Bảng đã thay đổi"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Kiểu đã thay đổi"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/vi/sw/source/uibase/docvw.po b/source/vi/sw/source/uibase/docvw.po
index dd3a72a55ac..fbe65e76470 100644
--- a/source/vi/sw/source/uibase/docvw.po
+++ b/source/vi/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -59,6 +59,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/vi/sw/source/uibase/ribbar.po b/source/vi/sw/source/uibase/ribbar.po
index 3f0f2802772..4f290ff78c6 100644
--- a/source/vi/sw/source/uibase/ribbar.po
+++ b/source/vi/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,6 +64,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/vi/sw/source/uibase/uiview.po b/source/vi/sw/source/uibase/uiview.po
index 6800e69f6ca..e5c64e4e6fd 100644
--- a/source/vi/sw/source/uibase/uiview.po
+++ b/source/vi/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -139,6 +139,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/vi/xmlsecurity/uiconfig/ui.po b/source/vi/xmlsecurity/uiconfig/ui.po
index 6b114f90747..4273f83c544 100644
--- a/source/vi/xmlsecurity/uiconfig/ui.po
+++ b/source/vi/xmlsecurity/uiconfig/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: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-24 00:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -172,6 +172,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/xh/desktop/source/deployment/gui.po b/source/xh/desktop/source/deployment/gui.po
index ffd02c3b0b7..b1b425793aa 100644
--- a/source/xh/desktop/source/deployment/gui.po
+++ b/source/xh/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-12-11 20:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -170,6 +170,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -181,6 +189,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po b/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po
index c2ef1b44bbc..ad03b312a09 100644
--- a/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/xh/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: 2017-06-06 20:00+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-07-05 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -635,8 +635,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:ChooseDesign\n"
"Label\n"
"value.text"
-msgid "Choose Themes"
-msgstr "Khetha Imixholo"
+msgid "Spreadsheet Theme"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -4151,6 +4151,123 @@ msgctxt ""
msgid "~Insert..."
msgstr ""
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Default&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Default"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Accent 3&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Accent 3"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 1&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 1"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Heading 2&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Heading 2"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Bad&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Bad"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Error&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Error"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Good&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Good"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Neutral&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Neutral"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Warning&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Warning"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Footnote&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Footnote"
+msgstr ""
+
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Popups..uno:StyleApply?Style:string=Note&amp;FamilyName:string=CellStyles\n"
+"Label\n"
+"value.text"
+msgid "Note"
+msgstr ""
+
#: CalcWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27441,15 +27558,6 @@ msgid "~Properties..."
msgstr "Inkcazelo Ngeempawu..."
#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
-"PopupLabel\n"
-"value.text"
-msgid "~Object..."
-msgstr ""
-
-#: WriterCommands.xcu
#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
diff --git a/source/xh/sc/source/ui/src.po b/source/xh/sc/source/ui/src.po
index 29c5519b8e6..684f9a47913 100644
--- a/source/xh/sc/source/ui/src.po
+++ b/source/xh/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-05 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2742,7 +2742,7 @@ msgstr "Uluhlu lususwe ukusuka ku-#1 ukuya ku-#2"
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_END_REDLINING\n"
+"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2911,7 +2911,7 @@ msgstr ""
#: globstr.src
msgctxt ""
"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS\n"
+"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
"string.text"
msgid "Text to Columns"
msgstr ""
diff --git a/source/xh/sfx2/source/view.po b/source/xh/sfx2/source/view.po
index 88df73dc7ab..e2f5696548c 100644
--- a/source/xh/sfx2/source/view.po
+++ b/source/xh/sfx2/source/view.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-07-20 11:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -236,6 +236,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SIGNATURE_INVALID\n"
+"string.text"
+msgid "The signature was valid, but the document has been modified"
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"STR_SIGNATURE_NOTVALIDATED\n"
"string.text"
msgid "The signature is OK, but the certificate could not be validated."
diff --git a/source/xh/svtools/source/control.po b/source/xh/svtools/source/control.po
index a5840ff1b80..d58826f74ff 100644
--- a/source/xh/svtools/source/control.po
+++ b/source/xh/svtools/source/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2015-06-26 04:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,6 +292,110 @@ msgstr "Isimbo SeItalic Esimnyama"
#: ctrltool.src
msgctxt ""
"ctrltool.src\n"
+"STR_SVT_STYLE_BOOK\n"
+"string.text"
+msgid "Book"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED\n"
+"string.text"
+msgid "Condensed"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD\n"
+"string.text"
+msgid "Condensed Bold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n"
+"string.text"
+msgid "Condensed Bold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n"
+"string.text"
+msgid "Condensed Bold Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_ITALIC\n"
+"string.text"
+msgid "Condensed Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_CONDENSED_OBLIQUE\n"
+"string.text"
+msgid "Condensed Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT\n"
+"string.text"
+msgid "ExtraLight"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_EXTRALIGHT_ITALIC\n"
+"string.text"
+msgid "ExtraLight Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_OBLIQUE\n"
+"string.text"
+msgid "Oblique"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD\n"
+"string.text"
+msgid "Semibold"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
+"STR_SVT_STYLE_SEMIBOLD_ITALIC\n"
+"string.text"
+msgid "Semibold Italic"
+msgstr ""
+
+#: ctrltool.src
+msgctxt ""
+"ctrltool.src\n"
"STR_SVT_FONTMAP_BOTH\n"
"string.text"
msgid "The same font will be used on both your printer and your screen."
diff --git a/source/xh/svtools/source/misc.po b/source/xh/svtools/source/misc.po
index 9d892612576..bc05b9485d9 100644
--- a/source/xh/svtools/source/misc.po
+++ b/source/xh/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-05-17 15:41+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-09 14:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3206,9 +3206,9 @@ msgstr ""
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
-"Kituba\n"
+"Kituba (Congo)\n"
"itemlist.text"
-msgid "Kituba"
+msgid "Kituba (Congo)"
msgstr ""
#: langtab.src
@@ -3935,6 +3935,15 @@ msgctxt ""
msgid "Xibe"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"Kituba (Democratic Republic of the Congo)\n"
+"itemlist.text"
+msgid "Kituba (Democratic Republic of the Congo)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/xh/sw/source/core/undo.po b/source/xh/sw/source/core/undo.po
index dc4ec2ad30f..d601d2d0638 100644
--- a/source/xh/sw/source/core/undo.po
+++ b/source/xh/sw/source/core/undo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-05-02 04:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -896,46 +896,84 @@ msgid "column break"
msgstr "unqumamiso loluhlu olwehlayo"
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_INSERT\n"
+"STR_UNDO_REDLINE_INSERT\n"
"string.text"
msgid "Insert $1"
-msgstr "Faka njenge"
+msgstr ""
#: undo.src
-#, fuzzy
msgctxt ""
"undo.src\n"
-"STR_REDLINE_DELETE\n"
+"STR_UNDO_REDLINE_DELETE\n"
"string.text"
msgid "Delete $1"
-msgstr "Cima #"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FORMAT\n"
+"STR_UNDO_REDLINE_FORMAT\n"
"string.text"
msgid "Attributes changed"
-msgstr "Iimpawu zoyelelwano ziguqukile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_TABLE\n"
+"STR_UNDO_REDLINE_TABLE\n"
"string.text"
msgid "Table changed"
-msgstr "Itheyibhile iguqukile"
+msgstr ""
#: undo.src
msgctxt ""
"undo.src\n"
-"STR_REDLINE_FMTCOLL\n"
+"STR_UNDO_REDLINE_FMTCOLL\n"
"string.text"
msgid "Style changed"
-msgstr "Isimbo siguqukile"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Insert Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Delete Row"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Insert Cell"
+msgstr ""
+
+#: undo.src
+msgctxt ""
+"undo.src\n"
+"STR_UNDO_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Delete Cell"
+msgstr ""
#: undo.src
msgctxt ""
diff --git a/source/xh/sw/source/uibase/docvw.po b/source/xh/sw/source/uibase/docvw.po
index 7597ea5b1fb..0b0cf0fe53d 100644
--- a/source/xh/sw/source/uibase/docvw.po
+++ b/source/xh/sw/source/uibase/docvw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 21:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,6 +58,46 @@ msgstr ""
#: docvw.src
msgctxt ""
"docvw.src\n"
+"STR_REDLINE_PARAGRAPH_FORMAT\n"
+"string.text"
+msgid "Paragraph formatting changed"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_INSERT\n"
+"string.text"
+msgid "Row Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_ROW_DELETE\n"
+"string.text"
+msgid "Row Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_INSERT\n"
+"string.text"
+msgid "Cell Inserted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
+"STR_REDLINE_TABLE_CELL_DELETE\n"
+"string.text"
+msgid "Cell Deleted"
+msgstr ""
+
+#: docvw.src
+msgctxt ""
+"docvw.src\n"
"STR_ENDNOTE\n"
"string.text"
msgid "Endnote: "
diff --git a/source/xh/sw/source/uibase/ribbar.po b/source/xh/sw/source/uibase/ribbar.po
index e33e7dc17fb..d2b20eb6801 100644
--- a/source/xh/sw/source/uibase/ribbar.po
+++ b/source/xh/sw/source/uibase/ribbar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2016-03-12 09:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -63,6 +63,14 @@ msgctxt ""
msgid "Formula Text"
msgstr ""
+#: inputwin.src
+msgctxt ""
+"inputwin.src\n"
+"STR_TBL_FORMULA\n"
+"string.text"
+msgid "Text Formula"
+msgstr ""
+
#: workctrl.src
msgctxt ""
"workctrl.src\n"
diff --git a/source/xh/sw/source/uibase/uiview.po b/source/xh/sw/source/uibase/uiview.po
index 5c98c2efb22..e27dc609b29 100644
--- a/source/xh/sw/source/uibase/uiview.po
+++ b/source/xh/sw/source/uibase/uiview.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n"
+"POT-Creation-Date: 2017-06-20 13:56+0200\n"
"PO-Revision-Date: 2014-11-19 21:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,6 +138,14 @@ msgstr ""
#: view.src
msgctxt ""
"view.src\n"
+"STR_SAVEACOPY_SRC\n"
+"string.text"
+msgid "~Export copy of source..."
+msgstr ""
+
+#: view.src
+msgctxt ""
+"view.src\n"
"RID_PVIEW_TOOLBOX\n"
"string.text"
msgid "Print Preview"
diff --git a/source/xh/xmlsecurity/uiconfig/ui.po b/source/xh/xmlsecurity/uiconfig/ui.po
index 121bfdd11b8..5e1af5641da 100644
--- a/source/xh/xmlsecurity/uiconfig/ui.po
+++ b/source/xh/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
"PO-Revision-Date: 2016-05-24 00:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
@@ -171,6 +171,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"start_certmanager\n"
+"label\n"
+"string.text"
+msgid "Start Certificate Manager..."
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"signed\n"
"label\n"
"string.text"
diff --git a/source/zh-CN/desktop/source/deployment/gui.po b/source/zh-CN/desktop/source/deployment/gui.po
index d4fb5e1b039..d2e888ce006 100644
--- a/source/zh-CN/desktop/source/deployment/gui.po
+++ b/source/zh-CN/desktop/source/deployment/gui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-05 11:41+0000\n"
+"POT-Creation-Date: 2017-06-20 13:55+0200\n"
+"PO-Revision-Date: 2016-05-02 04:54+0000\n"
"Last-Translator: 琨珑 锁 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467718906.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462164851.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -175,6 +175,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
"string.text"
msgid ""
@@ -189,6 +197,14 @@ msgstr ""
#: dp_gui_dialog.src
msgctxt ""
"dp_gui_dialog.src\n"
+"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
+"string.text"
+msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
+msgstr ""
+
+#: dp_gui_dialog.src
+msgctxt ""
+"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
"string.text"
msgid ""
diff --git a/source/zh-CN/editeng/source/items.po b/source/zh-CN/editeng/source/items.po
index cc2610bf717..9b1aa2650cb 100644
--- a/source/zh-CN/editeng/source/items.po
+++ b/source/zh-CN/editeng/source/items.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-23 03:02+0000\n"
-"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
+"PO-Revision-Date: 2017-06-20 05:28+0000\n"
+"Last-Translator: Voina i Mir <shanshandehongxing@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495508553.000000\n"
+"X-POOTLE-MTIME: 1497936536.000000\n"
#: page.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"RID_SVXITEMS_ITALIC_OBLIQUE\n"
"string.text"
msgid "Oblique italic"
-msgstr "倾斜体 (Oblique)"
+msgstr "Oblique 斜体"
#: svxitems.src
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"RID_SVXITEMS_WEIGHT_BLACK\n"
"string.text"
msgid "black"
-msgstr "黑色"
+msgstr "黑"
#: svxitems.src
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"RID_SVXITEMS_KERNING_CONDENSED\n"
"string.text"
msgid "Condensed "
-msgstr "狭窄"
+msgstr "紧缩"
#: svxitems.src
msgctxt ""
diff --git a/source/zh-CN/filter/source/config/fragments/filters.po b/source/zh-CN/filter/source/config/fragments/filters.po
index 1fed1c9bbcc..301ef3c4d21 100644
--- a/source/zh-CN/filter/source/config/fragments/filters.po
+++ b/source/zh-CN/filter/source/config/fragments/filters.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-19 07:27+0000\n"
-"Last-Translator: Voina i Mir <shanshandehongxing@outlook.com>\n"
+"PO-Revision-Date: 2017-06-09 02:52+0000\n"
+"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495178844.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496976760.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO Rowset XML"
#: AbiWord.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 1-4 and 95's"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4 以及 95 年代"
#: PublisherDocument.xcu
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "旧式 StarOffice 演示文稿"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
diff --git a/source/zh-CN/filter/source/config/fragments/types.po b/source/zh-CN/filter/source/config/fragments/types.po
index 784435c3ddc..14ae725135f 100644
--- a/source/zh-CN/filter/source/config/fragments/types.po
+++ b/source/zh-CN/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-06-06 20:00+0200\n"
-"PO-Revision-Date: 2017-05-19 07:28+0000\n"
+"PO-Revision-Date: 2017-06-09 02:53+0000\n"
"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495178888.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496976793.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "ADO Rowset XML"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML VBA"
-msgstr ""
+msgstr "Microsoft Word 2007-2013 XML VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/zh-CN/filter/uiconfig/ui.po b/source/zh-CN/filter/uiconfig/ui.po
index 3803b2af98c..e07938a0eb4 100644
--- a/source/zh-CN/filter/uiconfig/ui.po
+++ b/source/zh-CN/filter/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-19 07:29+0000\n"
-"Last-Translator: Voina i Mir <shanshandehongxing@outlook.com>\n"
+"PO-Revision-Date: 2017-06-09 02:55+0000\n"
+"Last-Translator: 锁琨珑 <suokunlong@126.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495178974.000000\n"
+"X-POOTLE-MTIME: 1496976902.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Selection/Selected sheet(s)"
-msgstr ""
+msgstr "选择/已选取的工作表(_S)"
#: pdfgeneralpage.ui
msgctxt ""
@@ -459,7 +459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use reference XObjects"
-msgstr ""
+msgstr "使用 reference XObjects"
#: pdfgeneralpage.ui
msgctxt ""
diff --git a/source/zh-CN/helpcontent2/source/text/sbasic/shared.po b/source/zh-CN/helpcontent2/source/text/sbasic/shared.po
index 10173eb7aa1..9450db6f2c2 100644
--- a/source/zh-CN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/zh-CN/helpcontent2/source/text/sbasic/shared.po